]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit '8fb4210ad8785c01fccf2fc59af6a6fa2892b6b2'
[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{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.
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{LINKLABEL}        ::= "[" @var{NAME} "]"
216 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
217 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
218 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
219 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
220 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
221 @end example
222
223 @section Notes on filtergraph escaping
224
225 Filtergraph description composition entails several levels of
226 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
227 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
228 information about the employed escaping procedure.
229
230 A first level escaping affects the content of each filter option
231 value, which may contain the special character @code{:} used to
232 separate values, or one of the escaping characters @code{\'}.
233
234 A second level escaping affects the whole filter description, which
235 may contain the escaping characters @code{\'} or the special
236 characters @code{[],;} used by the filtergraph description.
237
238 Finally, when you specify a filtergraph on a shell commandline, you
239 need to perform a third level escaping for the shell special
240 characters contained within it.
241
242 For example, consider the following string to be embedded in
243 the @ref{drawtext} filter description @option{text} value:
244 @example
245 this is a 'string': may contain one, or more, special characters
246 @end example
247
248 This string contains the @code{'} special escaping character, and the
249 @code{:} special character, so it needs to be escaped in this way:
250 @example
251 text=this is a \'string\'\: may contain one, or more, special characters
252 @end example
253
254 A second level of escaping is required when embedding the filter
255 description in a filtergraph description, in order to escape all the
256 filtergraph special characters. Thus the example above becomes:
257 @example
258 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
259 @end example
260 (note that in addition to the @code{\'} escaping special characters,
261 also @code{,} needs to be escaped).
262
263 Finally an additional level of escaping is needed when writing the
264 filtergraph description in a shell command, which depends on the
265 escaping rules of the adopted shell. For example, assuming that
266 @code{\} is special and needs to be escaped with another @code{\}, the
267 previous string will finally result in:
268 @example
269 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
270 @end example
271
272 @chapter Timeline editing
273
274 Some filters support a generic @option{enable} option. For the filters
275 supporting timeline editing, this option can be set to an expression which is
276 evaluated before sending a frame to the filter. If the evaluation is non-zero,
277 the filter will be enabled, otherwise the frame will be sent unchanged to the
278 next filter in the filtergraph.
279
280 The expression accepts the following values:
281 @table @samp
282 @item t
283 timestamp expressed in seconds, NAN if the input timestamp is unknown
284
285 @item n
286 sequential number of the input frame, starting from 0
287
288 @item pos
289 the position in the file of the input frame, NAN if unknown
290
291 @item w
292 @item h
293 width and height of the input frame if video
294 @end table
295
296 Additionally, these filters support an @option{enable} command that can be used
297 to re-define the expression.
298
299 Like any other filtering option, the @option{enable} option follows the same
300 rules.
301
302 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
303 minutes, and a @ref{curves} filter starting at 3 seconds:
304 @example
305 smartblur = enable='between(t,10,3*60)',
306 curves    = enable='gte(t,3)' : preset=cross_process
307 @end example
308
309 See @code{ffmpeg -filters} to view which filters have timeline support.
310
311 @c man end FILTERGRAPH DESCRIPTION
312
313 @chapter Audio Filters
314 @c man begin AUDIO FILTERS
315
316 When you configure your FFmpeg build, you can disable any of the
317 existing filters using @code{--disable-filters}.
318 The configure output will show the audio filters included in your
319 build.
320
321 Below is a description of the currently available audio filters.
322
323 @section acompressor
324
325 A compressor is mainly used to reduce the dynamic range of a signal.
326 Especially modern music is mostly compressed at a high ratio to
327 improve the overall loudness. It's done to get the highest attention
328 of a listener, "fatten" the sound and bring more "power" to the track.
329 If a signal is compressed too much it may sound dull or "dead"
330 afterwards or it may start to "pump" (which could be a powerful effect
331 but can also destroy a track completely).
332 The right compression is the key to reach a professional sound and is
333 the high art of mixing and mastering. Because of its complex settings
334 it may take a long time to get the right feeling for this kind of effect.
335
336 Compression is done by detecting the volume above a chosen level
337 @code{threshold} and dividing it by the factor set with @code{ratio}.
338 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
339 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
340 the signal would cause distortion of the waveform the reduction can be
341 levelled over the time. This is done by setting "Attack" and "Release".
342 @code{attack} determines how long the signal has to rise above the threshold
343 before any reduction will occur and @code{release} sets the time the signal
344 has to fall below the threshold to reduce the reduction again. Shorter signals
345 than the chosen attack time will be left untouched.
346 The overall reduction of the signal can be made up afterwards with the
347 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
348 raising the makeup to this level results in a signal twice as loud than the
349 source. To gain a softer entry in the compression the @code{knee} flattens the
350 hard edge at the threshold in the range of the chosen decibels.
351
352 The filter accepts the following options:
353
354 @table @option
355 @item level_in
356 Set input gain. Default is 1. Range is between 0.015625 and 64.
357
358 @item threshold
359 If a signal of second stream rises above this level it will affect the gain
360 reduction of the first stream.
361 By default it is 0.125. Range is between 0.00097563 and 1.
362
363 @item ratio
364 Set a ratio by which the signal is reduced. 1:2 means that if the level
365 rose 4dB above the threshold, it will be only 2dB above after the reduction.
366 Default is 2. Range is between 1 and 20.
367
368 @item attack
369 Amount of milliseconds the signal has to rise above the threshold before gain
370 reduction starts. Default is 20. Range is between 0.01 and 2000.
371
372 @item release
373 Amount of milliseconds the signal has to fall below the threshold before
374 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
375
376 @item makeup
377 Set the amount by how much signal will be amplified after processing.
378 Default is 2. Range is from 1 and 64.
379
380 @item knee
381 Curve the sharp knee around the threshold to enter gain reduction more softly.
382 Default is 2.82843. Range is between 1 and 8.
383
384 @item link
385 Choose if the @code{average} level between all channels of input stream
386 or the louder(@code{maximum}) channel of input stream affects the
387 reduction. Default is @code{average}.
388
389 @item detection
390 Should the exact signal be taken in case of @code{peak} or an RMS one in case
391 of @code{rms}. Default is @code{rms} which is mostly smoother.
392
393 @item mix
394 How much to use compressed signal in output. Default is 1.
395 Range is between 0 and 1.
396 @end table
397
398 @section acrossfade
399
400 Apply cross fade from one input audio stream to another input audio stream.
401 The cross fade is applied for specified duration near the end of first stream.
402
403 The filter accepts the following options:
404
405 @table @option
406 @item nb_samples, ns
407 Specify the number of samples for which the cross fade effect has to last.
408 At the end of the cross fade effect the first input audio will be completely
409 silent. Default is 44100.
410
411 @item duration, d
412 Specify the duration of the cross fade effect. See
413 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
414 for the accepted syntax.
415 By default the duration is determined by @var{nb_samples}.
416 If set this option is used instead of @var{nb_samples}.
417
418 @item overlap, o
419 Should first stream end overlap with second stream start. Default is enabled.
420
421 @item curve1
422 Set curve for cross fade transition for first stream.
423
424 @item curve2
425 Set curve for cross fade transition for second stream.
426
427 For description of available curve types see @ref{afade} filter description.
428 @end table
429
430 @subsection Examples
431
432 @itemize
433 @item
434 Cross fade from one input to another:
435 @example
436 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
437 @end example
438
439 @item
440 Cross fade from one input to another but without overlapping:
441 @example
442 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
443 @end example
444 @end itemize
445
446 @section acrusher
447
448 Reduce audio bit resolution.
449
450 This filter is bit crusher with enhanced functionality. A bit crusher
451 is used to audibly reduce number of bits an audio signal is sampled
452 with. This doesn't change the bit depth at all, it just produces the
453 effect. Material reduced in bit depth sounds more harsh and "digital".
454 This filter is able to even round to continuous values instead of discrete
455 bit depths.
456 Additionally it has a D/C offset which results in different crushing of
457 the lower and the upper half of the signal.
458 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
459
460 Another feature of this filter is the logarithmic mode.
461 This setting switches from linear distances between bits to logarithmic ones.
462 The result is a much more "natural" sounding crusher which doesn't gate low
463 signals for example. The human ear has a logarithmic perception, too
464 so this kind of crushing is much more pleasant.
465 Logarithmic crushing is also able to get anti-aliased.
466
467 The filter accepts the following options:
468
469 @table @option
470 @item level_in
471 Set level in.
472
473 @item level_out
474 Set level out.
475
476 @item bits
477 Set bit reduction.
478
479 @item mix
480 Set mixing amount.
481
482 @item mode
483 Can be linear: @code{lin} or logarithmic: @code{log}.
484
485 @item dc
486 Set DC.
487
488 @item aa
489 Set anti-aliasing.
490
491 @item samples
492 Set sample reduction.
493
494 @item lfo
495 Enable LFO. By default disabled.
496
497 @item lforange
498 Set LFO range.
499
500 @item lforate
501 Set LFO rate.
502 @end table
503
504 @section adelay
505
506 Delay one or more audio channels.
507
508 Samples in delayed channel are filled with silence.
509
510 The filter accepts the following option:
511
512 @table @option
513 @item delays
514 Set list of delays in milliseconds for each channel separated by '|'.
515 At least one delay greater than 0 should be provided.
516 Unused delays will be silently ignored. If number of given delays is
517 smaller than number of channels all remaining channels will not be delayed.
518 If you want to delay exact number of samples, append 'S' to number.
519 @end table
520
521 @subsection Examples
522
523 @itemize
524 @item
525 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
526 the second channel (and any other channels that may be present) unchanged.
527 @example
528 adelay=1500|0|500
529 @end example
530
531 @item
532 Delay second channel by 500 samples, the third channel by 700 samples and leave
533 the first channel (and any other channels that may be present) unchanged.
534 @example
535 adelay=0|500S|700S
536 @end example
537 @end itemize
538
539 @section aecho
540
541 Apply echoing to the input audio.
542
543 Echoes are reflected sound and can occur naturally amongst mountains
544 (and sometimes large buildings) when talking or shouting; digital echo
545 effects emulate this behaviour and are often used to help fill out the
546 sound of a single instrument or vocal. The time difference between the
547 original signal and the reflection is the @code{delay}, and the
548 loudness of the reflected signal is the @code{decay}.
549 Multiple echoes can have different delays and decays.
550
551 A description of the accepted parameters follows.
552
553 @table @option
554 @item in_gain
555 Set input gain of reflected signal. Default is @code{0.6}.
556
557 @item out_gain
558 Set output gain of reflected signal. Default is @code{0.3}.
559
560 @item delays
561 Set list of time intervals in milliseconds between original signal and reflections
562 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
563 Default is @code{1000}.
564
565 @item decays
566 Set list of loudnesses of reflected signals separated by '|'.
567 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
568 Default is @code{0.5}.
569 @end table
570
571 @subsection Examples
572
573 @itemize
574 @item
575 Make it sound as if there are twice as many instruments as are actually playing:
576 @example
577 aecho=0.8:0.88:60:0.4
578 @end example
579
580 @item
581 If delay is very short, then it sound like a (metallic) robot playing music:
582 @example
583 aecho=0.8:0.88:6:0.4
584 @end example
585
586 @item
587 A longer delay will sound like an open air concert in the mountains:
588 @example
589 aecho=0.8:0.9:1000:0.3
590 @end example
591
592 @item
593 Same as above but with one more mountain:
594 @example
595 aecho=0.8:0.9:1000|1800:0.3|0.25
596 @end example
597 @end itemize
598
599 @section aemphasis
600 Audio emphasis filter creates or restores material directly taken from LPs or
601 emphased CDs with different filter curves. E.g. to store music on vinyl the
602 signal has to be altered by a filter first to even out the disadvantages of
603 this recording medium.
604 Once the material is played back the inverse filter has to be applied to
605 restore the distortion of the frequency response.
606
607 The filter accepts the following options:
608
609 @table @option
610 @item level_in
611 Set input gain.
612
613 @item level_out
614 Set output gain.
615
616 @item mode
617 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
618 use @code{production} mode. Default is @code{reproduction} mode.
619
620 @item type
621 Set filter type. Selects medium. Can be one of the following:
622
623 @table @option
624 @item col
625 select Columbia.
626 @item emi
627 select EMI.
628 @item bsi
629 select BSI (78RPM).
630 @item riaa
631 select RIAA.
632 @item cd
633 select Compact Disc (CD).
634 @item 50fm
635 select 50µs (FM).
636 @item 75fm
637 select 75µs (FM).
638 @item 50kf
639 select 50µs (FM-KF).
640 @item 75kf
641 select 75µs (FM-KF).
642 @end table
643 @end table
644
645 @section aeval
646
647 Modify an audio signal according to the specified expressions.
648
649 This filter accepts one or more expressions (one for each channel),
650 which are evaluated and used to modify a corresponding audio signal.
651
652 It accepts the following parameters:
653
654 @table @option
655 @item exprs
656 Set the '|'-separated expressions list for each separate channel. If
657 the number of input channels is greater than the number of
658 expressions, the last specified expression is used for the remaining
659 output channels.
660
661 @item channel_layout, c
662 Set output channel layout. If not specified, the channel layout is
663 specified by the number of expressions. If set to @samp{same}, it will
664 use by default the same input channel layout.
665 @end table
666
667 Each expression in @var{exprs} can contain the following constants and functions:
668
669 @table @option
670 @item ch
671 channel number of the current expression
672
673 @item n
674 number of the evaluated sample, starting from 0
675
676 @item s
677 sample rate
678
679 @item t
680 time of the evaluated sample expressed in seconds
681
682 @item nb_in_channels
683 @item nb_out_channels
684 input and output number of channels
685
686 @item val(CH)
687 the value of input channel with number @var{CH}
688 @end table
689
690 Note: this filter is slow. For faster processing you should use a
691 dedicated filter.
692
693 @subsection Examples
694
695 @itemize
696 @item
697 Half volume:
698 @example
699 aeval=val(ch)/2:c=same
700 @end example
701
702 @item
703 Invert phase of the second channel:
704 @example
705 aeval=val(0)|-val(1)
706 @end example
707 @end itemize
708
709 @anchor{afade}
710 @section afade
711
712 Apply fade-in/out effect to input audio.
713
714 A description of the accepted parameters follows.
715
716 @table @option
717 @item type, t
718 Specify the effect type, can be either @code{in} for fade-in, or
719 @code{out} for a fade-out effect. Default is @code{in}.
720
721 @item start_sample, ss
722 Specify the number of the start sample for starting to apply the fade
723 effect. Default is 0.
724
725 @item nb_samples, ns
726 Specify the number of samples for which the fade effect has to last. At
727 the end of the fade-in effect the output audio will have the same
728 volume as the input audio, at the end of the fade-out transition
729 the output audio will be silence. Default is 44100.
730
731 @item start_time, st
732 Specify the start time of the fade effect. Default is 0.
733 The value must be specified as a time duration; see
734 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
735 for the accepted syntax.
736 If set this option is used instead of @var{start_sample}.
737
738 @item duration, d
739 Specify the duration of the fade effect. See
740 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
741 for the accepted syntax.
742 At the end of the fade-in effect the output audio will have the same
743 volume as the input audio, at the end of the fade-out transition
744 the output audio will be silence.
745 By default the duration is determined by @var{nb_samples}.
746 If set this option is used instead of @var{nb_samples}.
747
748 @item curve
749 Set curve for fade transition.
750
751 It accepts the following values:
752 @table @option
753 @item tri
754 select triangular, linear slope (default)
755 @item qsin
756 select quarter of sine wave
757 @item hsin
758 select half of sine wave
759 @item esin
760 select exponential sine wave
761 @item log
762 select logarithmic
763 @item ipar
764 select inverted parabola
765 @item qua
766 select quadratic
767 @item cub
768 select cubic
769 @item squ
770 select square root
771 @item cbr
772 select cubic root
773 @item par
774 select parabola
775 @item exp
776 select exponential
777 @item iqsin
778 select inverted quarter of sine wave
779 @item ihsin
780 select inverted half of sine wave
781 @item dese
782 select double-exponential seat
783 @item desi
784 select double-exponential sigmoid
785 @end table
786 @end table
787
788 @subsection Examples
789
790 @itemize
791 @item
792 Fade in first 15 seconds of audio:
793 @example
794 afade=t=in:ss=0:d=15
795 @end example
796
797 @item
798 Fade out last 25 seconds of a 900 seconds audio:
799 @example
800 afade=t=out:st=875:d=25
801 @end example
802 @end itemize
803
804 @section afftfilt
805 Apply arbitrary expressions to samples in frequency domain.
806
807 @table @option
808 @item real
809 Set frequency domain real expression for each separate channel separated
810 by '|'. Default is "1".
811 If the number of input channels is greater than the number of
812 expressions, the last specified expression is used for the remaining
813 output channels.
814
815 @item imag
816 Set frequency domain imaginary expression for each separate channel
817 separated by '|'. If not set, @var{real} option is used.
818
819 Each expression in @var{real} and @var{imag} can contain the following
820 constants:
821
822 @table @option
823 @item sr
824 sample rate
825
826 @item b
827 current frequency bin number
828
829 @item nb
830 number of available bins
831
832 @item ch
833 channel number of the current expression
834
835 @item chs
836 number of channels
837
838 @item pts
839 current frame pts
840 @end table
841
842 @item win_size
843 Set window size.
844
845 It accepts the following values:
846 @table @samp
847 @item w16
848 @item w32
849 @item w64
850 @item w128
851 @item w256
852 @item w512
853 @item w1024
854 @item w2048
855 @item w4096
856 @item w8192
857 @item w16384
858 @item w32768
859 @item w65536
860 @end table
861 Default is @code{w4096}
862
863 @item win_func
864 Set window function. Default is @code{hann}.
865
866 @item overlap
867 Set window overlap. If set to 1, the recommended overlap for selected
868 window function will be picked. Default is @code{0.75}.
869 @end table
870
871 @subsection Examples
872
873 @itemize
874 @item
875 Leave almost only low frequencies in audio:
876 @example
877 afftfilt="1-clip((b/nb)*b,0,1)"
878 @end example
879 @end itemize
880
881 @anchor{aformat}
882 @section aformat
883
884 Set output format constraints for the input audio. The framework will
885 negotiate the most appropriate format to minimize conversions.
886
887 It accepts the following parameters:
888 @table @option
889
890 @item sample_fmts
891 A '|'-separated list of requested sample formats.
892
893 @item sample_rates
894 A '|'-separated list of requested sample rates.
895
896 @item channel_layouts
897 A '|'-separated list of requested channel layouts.
898
899 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
900 for the required syntax.
901 @end table
902
903 If a parameter is omitted, all values are allowed.
904
905 Force the output to either unsigned 8-bit or signed 16-bit stereo
906 @example
907 aformat=sample_fmts=u8|s16:channel_layouts=stereo
908 @end example
909
910 @section agate
911
912 A gate is mainly used to reduce lower parts of a signal. This kind of signal
913 processing reduces disturbing noise between useful signals.
914
915 Gating is done by detecting the volume below a chosen level @var{threshold}
916 and dividing it by the factor set with @var{ratio}. The bottom of the noise
917 floor is set via @var{range}. Because an exact manipulation of the signal
918 would cause distortion of the waveform the reduction can be levelled over
919 time. This is done by setting @var{attack} and @var{release}.
920
921 @var{attack} determines how long the signal has to fall below the threshold
922 before any reduction will occur and @var{release} sets the time the signal
923 has to rise above the threshold to reduce the reduction again.
924 Shorter signals than the chosen attack time will be left untouched.
925
926 @table @option
927 @item level_in
928 Set input level before filtering.
929 Default is 1. Allowed range is from 0.015625 to 64.
930
931 @item range
932 Set the level of gain reduction when the signal is below the threshold.
933 Default is 0.06125. Allowed range is from 0 to 1.
934
935 @item threshold
936 If a signal rises above this level the gain reduction is released.
937 Default is 0.125. Allowed range is from 0 to 1.
938
939 @item ratio
940 Set a ratio by which the signal is reduced.
941 Default is 2. Allowed range is from 1 to 9000.
942
943 @item attack
944 Amount of milliseconds the signal has to rise above the threshold before gain
945 reduction stops.
946 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
947
948 @item release
949 Amount of milliseconds the signal has to fall below the threshold before the
950 reduction is increased again. Default is 250 milliseconds.
951 Allowed range is from 0.01 to 9000.
952
953 @item makeup
954 Set amount of amplification of signal after processing.
955 Default is 1. Allowed range is from 1 to 64.
956
957 @item knee
958 Curve the sharp knee around the threshold to enter gain reduction more softly.
959 Default is 2.828427125. Allowed range is from 1 to 8.
960
961 @item detection
962 Choose if exact signal should be taken for detection or an RMS like one.
963 Default is @code{rms}. Can be @code{peak} or @code{rms}.
964
965 @item link
966 Choose if the average level between all channels or the louder channel affects
967 the reduction.
968 Default is @code{average}. Can be @code{average} or @code{maximum}.
969 @end table
970
971 @section alimiter
972
973 The limiter prevents an input signal from rising over a desired threshold.
974 This limiter uses lookahead technology to prevent your signal from distorting.
975 It means that there is a small delay after the signal is processed. Keep in mind
976 that the delay it produces is the attack time you set.
977
978 The filter accepts the following options:
979
980 @table @option
981 @item level_in
982 Set input gain. Default is 1.
983
984 @item level_out
985 Set output gain. Default is 1.
986
987 @item limit
988 Don't let signals above this level pass the limiter. Default is 1.
989
990 @item attack
991 The limiter will reach its attenuation level in this amount of time in
992 milliseconds. Default is 5 milliseconds.
993
994 @item release
995 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
996 Default is 50 milliseconds.
997
998 @item asc
999 When gain reduction is always needed ASC takes care of releasing to an
1000 average reduction level rather than reaching a reduction of 0 in the release
1001 time.
1002
1003 @item asc_level
1004 Select how much the release time is affected by ASC, 0 means nearly no changes
1005 in release time while 1 produces higher release times.
1006
1007 @item level
1008 Auto level output signal. Default is enabled.
1009 This normalizes audio back to 0dB if enabled.
1010 @end table
1011
1012 Depending on picked setting it is recommended to upsample input 2x or 4x times
1013 with @ref{aresample} before applying this filter.
1014
1015 @section allpass
1016
1017 Apply a two-pole all-pass filter with central frequency (in Hz)
1018 @var{frequency}, and filter-width @var{width}.
1019 An all-pass filter changes the audio's frequency to phase relationship
1020 without changing its frequency to amplitude relationship.
1021
1022 The filter accepts the following options:
1023
1024 @table @option
1025 @item frequency, f
1026 Set frequency in Hz.
1027
1028 @item width_type
1029 Set method to specify band-width of filter.
1030 @table @option
1031 @item h
1032 Hz
1033 @item q
1034 Q-Factor
1035 @item o
1036 octave
1037 @item s
1038 slope
1039 @end table
1040
1041 @item width, w
1042 Specify the band-width of a filter in width_type units.
1043 @end table
1044
1045 @section aloop
1046
1047 Loop audio samples.
1048
1049 The filter accepts the following options:
1050
1051 @table @option
1052 @item loop
1053 Set the number of loops.
1054
1055 @item size
1056 Set maximal number of samples.
1057
1058 @item start
1059 Set first sample of loop.
1060 @end table
1061
1062 @anchor{amerge}
1063 @section amerge
1064
1065 Merge two or more audio streams into a single multi-channel stream.
1066
1067 The filter accepts the following options:
1068
1069 @table @option
1070
1071 @item inputs
1072 Set the number of inputs. Default is 2.
1073
1074 @end table
1075
1076 If the channel layouts of the inputs are disjoint, and therefore compatible,
1077 the channel layout of the output will be set accordingly and the channels
1078 will be reordered as necessary. If the channel layouts of the inputs are not
1079 disjoint, the output will have all the channels of the first input then all
1080 the channels of the second input, in that order, and the channel layout of
1081 the output will be the default value corresponding to the total number of
1082 channels.
1083
1084 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1085 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1086 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1087 first input, b1 is the first channel of the second input).
1088
1089 On the other hand, if both input are in stereo, the output channels will be
1090 in the default order: a1, a2, b1, b2, and the channel layout will be
1091 arbitrarily set to 4.0, which may or may not be the expected value.
1092
1093 All inputs must have the same sample rate, and format.
1094
1095 If inputs do not have the same duration, the output will stop with the
1096 shortest.
1097
1098 @subsection Examples
1099
1100 @itemize
1101 @item
1102 Merge two mono files into a stereo stream:
1103 @example
1104 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1105 @end example
1106
1107 @item
1108 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1109 @example
1110 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
1111 @end example
1112 @end itemize
1113
1114 @section amix
1115
1116 Mixes multiple audio inputs into a single output.
1117
1118 Note that this filter only supports float samples (the @var{amerge}
1119 and @var{pan} audio filters support many formats). If the @var{amix}
1120 input has integer samples then @ref{aresample} will be automatically
1121 inserted to perform the conversion to float samples.
1122
1123 For example
1124 @example
1125 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1126 @end example
1127 will mix 3 input audio streams to a single output with the same duration as the
1128 first input and a dropout transition time of 3 seconds.
1129
1130 It accepts the following parameters:
1131 @table @option
1132
1133 @item inputs
1134 The number of inputs. If unspecified, it defaults to 2.
1135
1136 @item duration
1137 How to determine the end-of-stream.
1138 @table @option
1139
1140 @item longest
1141 The duration of the longest input. (default)
1142
1143 @item shortest
1144 The duration of the shortest input.
1145
1146 @item first
1147 The duration of the first input.
1148
1149 @end table
1150
1151 @item dropout_transition
1152 The transition time, in seconds, for volume renormalization when an input
1153 stream ends. The default value is 2 seconds.
1154
1155 @end table
1156
1157 @section anequalizer
1158
1159 High-order parametric multiband equalizer for each channel.
1160
1161 It accepts the following parameters:
1162 @table @option
1163 @item params
1164
1165 This option string is in format:
1166 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1167 Each equalizer band is separated by '|'.
1168
1169 @table @option
1170 @item chn
1171 Set channel number to which equalization will be applied.
1172 If input doesn't have that channel the entry is ignored.
1173
1174 @item f
1175 Set central frequency for band.
1176 If input doesn't have that frequency the entry is ignored.
1177
1178 @item w
1179 Set band width in hertz.
1180
1181 @item g
1182 Set band gain in dB.
1183
1184 @item t
1185 Set filter type for band, optional, can be:
1186
1187 @table @samp
1188 @item 0
1189 Butterworth, this is default.
1190
1191 @item 1
1192 Chebyshev type 1.
1193
1194 @item 2
1195 Chebyshev type 2.
1196 @end table
1197 @end table
1198
1199 @item curves
1200 With this option activated frequency response of anequalizer is displayed
1201 in video stream.
1202
1203 @item size
1204 Set video stream size. Only useful if curves option is activated.
1205
1206 @item mgain
1207 Set max gain that will be displayed. Only useful if curves option is activated.
1208 Setting this to a reasonable value makes it possible to display gain which is derived from
1209 neighbour bands which are too close to each other and thus produce higher gain
1210 when both are activated.
1211
1212 @item fscale
1213 Set frequency scale used to draw frequency response in video output.
1214 Can be linear or logarithmic. Default is logarithmic.
1215
1216 @item colors
1217 Set color for each channel curve which is going to be displayed in video stream.
1218 This is list of color names separated by space or by '|'.
1219 Unrecognised or missing colors will be replaced by white color.
1220 @end table
1221
1222 @subsection Examples
1223
1224 @itemize
1225 @item
1226 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1227 for first 2 channels using Chebyshev type 1 filter:
1228 @example
1229 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1230 @end example
1231 @end itemize
1232
1233 @subsection Commands
1234
1235 This filter supports the following commands:
1236 @table @option
1237 @item change
1238 Alter existing filter parameters.
1239 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1240
1241 @var{fN} is existing filter number, starting from 0, if no such filter is available
1242 error is returned.
1243 @var{freq} set new frequency parameter.
1244 @var{width} set new width parameter in herz.
1245 @var{gain} set new gain parameter in dB.
1246
1247 Full filter invocation with asendcmd may look like this:
1248 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1249 @end table
1250
1251 @section anull
1252
1253 Pass the audio source unchanged to the output.
1254
1255 @section apad
1256
1257 Pad the end of an audio stream with silence.
1258
1259 This can be used together with @command{ffmpeg} @option{-shortest} to
1260 extend audio streams to the same length as the video stream.
1261
1262 A description of the accepted options follows.
1263
1264 @table @option
1265 @item packet_size
1266 Set silence packet size. Default value is 4096.
1267
1268 @item pad_len
1269 Set the number of samples of silence to add to the end. After the
1270 value is reached, the stream is terminated. This option is mutually
1271 exclusive with @option{whole_len}.
1272
1273 @item whole_len
1274 Set the minimum total number of samples in the output audio stream. If
1275 the value is longer than the input audio length, silence is added to
1276 the end, until the value is reached. This option is mutually exclusive
1277 with @option{pad_len}.
1278 @end table
1279
1280 If neither the @option{pad_len} nor the @option{whole_len} option is
1281 set, the filter will add silence to the end of the input stream
1282 indefinitely.
1283
1284 @subsection Examples
1285
1286 @itemize
1287 @item
1288 Add 1024 samples of silence to the end of the input:
1289 @example
1290 apad=pad_len=1024
1291 @end example
1292
1293 @item
1294 Make sure the audio output will contain at least 10000 samples, pad
1295 the input with silence if required:
1296 @example
1297 apad=whole_len=10000
1298 @end example
1299
1300 @item
1301 Use @command{ffmpeg} to pad the audio input with silence, so that the
1302 video stream will always result the shortest and will be converted
1303 until the end in the output file when using the @option{shortest}
1304 option:
1305 @example
1306 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1307 @end example
1308 @end itemize
1309
1310 @section aphaser
1311 Add a phasing effect to the input audio.
1312
1313 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1314 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1315
1316 A description of the accepted parameters follows.
1317
1318 @table @option
1319 @item in_gain
1320 Set input gain. Default is 0.4.
1321
1322 @item out_gain
1323 Set output gain. Default is 0.74
1324
1325 @item delay
1326 Set delay in milliseconds. Default is 3.0.
1327
1328 @item decay
1329 Set decay. Default is 0.4.
1330
1331 @item speed
1332 Set modulation speed in Hz. Default is 0.5.
1333
1334 @item type
1335 Set modulation type. Default is triangular.
1336
1337 It accepts the following values:
1338 @table @samp
1339 @item triangular, t
1340 @item sinusoidal, s
1341 @end table
1342 @end table
1343
1344 @section apulsator
1345
1346 Audio pulsator is something between an autopanner and a tremolo.
1347 But it can produce funny stereo effects as well. Pulsator changes the volume
1348 of the left and right channel based on a LFO (low frequency oscillator) with
1349 different waveforms and shifted phases.
1350 This filter have the ability to define an offset between left and right
1351 channel. An offset of 0 means that both LFO shapes match each other.
1352 The left and right channel are altered equally - a conventional tremolo.
1353 An offset of 50% means that the shape of the right channel is exactly shifted
1354 in phase (or moved backwards about half of the frequency) - pulsator acts as
1355 an autopanner. At 1 both curves match again. Every setting in between moves the
1356 phase shift gapless between all stages and produces some "bypassing" sounds with
1357 sine and triangle waveforms. The more you set the offset near 1 (starting from
1358 the 0.5) the faster the signal passes from the left to the right speaker.
1359
1360 The filter accepts the following options:
1361
1362 @table @option
1363 @item level_in
1364 Set input gain. By default it is 1. Range is [0.015625 - 64].
1365
1366 @item level_out
1367 Set output gain. By default it is 1. Range is [0.015625 - 64].
1368
1369 @item mode
1370 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1371 sawup or sawdown. Default is sine.
1372
1373 @item amount
1374 Set modulation. Define how much of original signal is affected by the LFO.
1375
1376 @item offset_l
1377 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1378
1379 @item offset_r
1380 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1381
1382 @item width
1383 Set pulse width. Default is 1. Allowed range is [0 - 2].
1384
1385 @item timing
1386 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1387
1388 @item bpm
1389 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1390 is set to bpm.
1391
1392 @item ms
1393 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1394 is set to ms.
1395
1396 @item hz
1397 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1398 if timing is set to hz.
1399 @end table
1400
1401 @anchor{aresample}
1402 @section aresample
1403
1404 Resample the input audio to the specified parameters, using the
1405 libswresample library. If none are specified then the filter will
1406 automatically convert between its input and output.
1407
1408 This filter is also able to stretch/squeeze the audio data to make it match
1409 the timestamps or to inject silence / cut out audio to make it match the
1410 timestamps, do a combination of both or do neither.
1411
1412 The filter accepts the syntax
1413 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1414 expresses a sample rate and @var{resampler_options} is a list of
1415 @var{key}=@var{value} pairs, separated by ":". See the
1416 @ref{Resampler Options,,the "Resampler Options" section in the
1417 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1418 for the complete list of supported options.
1419
1420 @subsection Examples
1421
1422 @itemize
1423 @item
1424 Resample the input audio to 44100Hz:
1425 @example
1426 aresample=44100
1427 @end example
1428
1429 @item
1430 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1431 samples per second compensation:
1432 @example
1433 aresample=async=1000
1434 @end example
1435 @end itemize
1436
1437 @section areverse
1438
1439 Reverse an audio clip.
1440
1441 Warning: This filter requires memory to buffer the entire clip, so trimming
1442 is suggested.
1443
1444 @subsection Examples
1445
1446 @itemize
1447 @item
1448 Take the first 5 seconds of a clip, and reverse it.
1449 @example
1450 atrim=end=5,areverse
1451 @end example
1452 @end itemize
1453
1454 @section asetnsamples
1455
1456 Set the number of samples per each output audio frame.
1457
1458 The last output packet may contain a different number of samples, as
1459 the filter will flush all the remaining samples when the input audio
1460 signals its end.
1461
1462 The filter accepts the following options:
1463
1464 @table @option
1465
1466 @item nb_out_samples, n
1467 Set the number of frames per each output audio frame. The number is
1468 intended as the number of samples @emph{per each channel}.
1469 Default value is 1024.
1470
1471 @item pad, p
1472 If set to 1, the filter will pad the last audio frame with zeroes, so
1473 that the last frame will contain the same number of samples as the
1474 previous ones. Default value is 1.
1475 @end table
1476
1477 For example, to set the number of per-frame samples to 1234 and
1478 disable padding for the last frame, use:
1479 @example
1480 asetnsamples=n=1234:p=0
1481 @end example
1482
1483 @section asetrate
1484
1485 Set the sample rate without altering the PCM data.
1486 This will result in a change of speed and pitch.
1487
1488 The filter accepts the following options:
1489
1490 @table @option
1491 @item sample_rate, r
1492 Set the output sample rate. Default is 44100 Hz.
1493 @end table
1494
1495 @section ashowinfo
1496
1497 Show a line containing various information for each input audio frame.
1498 The input audio is not modified.
1499
1500 The shown line contains a sequence of key/value pairs of the form
1501 @var{key}:@var{value}.
1502
1503 The following values are shown in the output:
1504
1505 @table @option
1506 @item n
1507 The (sequential) number of the input frame, starting from 0.
1508
1509 @item pts
1510 The presentation timestamp of the input frame, in time base units; the time base
1511 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1512
1513 @item pts_time
1514 The presentation timestamp of the input frame in seconds.
1515
1516 @item pos
1517 position of the frame in the input stream, -1 if this information in
1518 unavailable and/or meaningless (for example in case of synthetic audio)
1519
1520 @item fmt
1521 The sample format.
1522
1523 @item chlayout
1524 The channel layout.
1525
1526 @item rate
1527 The sample rate for the audio frame.
1528
1529 @item nb_samples
1530 The number of samples (per channel) in the frame.
1531
1532 @item checksum
1533 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1534 audio, the data is treated as if all the planes were concatenated.
1535
1536 @item plane_checksums
1537 A list of Adler-32 checksums for each data plane.
1538 @end table
1539
1540 @anchor{astats}
1541 @section astats
1542
1543 Display time domain statistical information about the audio channels.
1544 Statistics are calculated and displayed for each audio channel and,
1545 where applicable, an overall figure is also given.
1546
1547 It accepts the following option:
1548 @table @option
1549 @item length
1550 Short window length in seconds, used for peak and trough RMS measurement.
1551 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1552
1553 @item metadata
1554
1555 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1556 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1557 disabled.
1558
1559 Available keys for each channel are:
1560 DC_offset
1561 Min_level
1562 Max_level
1563 Min_difference
1564 Max_difference
1565 Mean_difference
1566 Peak_level
1567 RMS_peak
1568 RMS_trough
1569 Crest_factor
1570 Flat_factor
1571 Peak_count
1572 Bit_depth
1573
1574 and for Overall:
1575 DC_offset
1576 Min_level
1577 Max_level
1578 Min_difference
1579 Max_difference
1580 Mean_difference
1581 Peak_level
1582 RMS_level
1583 RMS_peak
1584 RMS_trough
1585 Flat_factor
1586 Peak_count
1587 Bit_depth
1588 Number_of_samples
1589
1590 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1591 this @code{lavfi.astats.Overall.Peak_count}.
1592
1593 For description what each key means read below.
1594
1595 @item reset
1596 Set number of frame after which stats are going to be recalculated.
1597 Default is disabled.
1598 @end table
1599
1600 A description of each shown parameter follows:
1601
1602 @table @option
1603 @item DC offset
1604 Mean amplitude displacement from zero.
1605
1606 @item Min level
1607 Minimal sample level.
1608
1609 @item Max level
1610 Maximal sample level.
1611
1612 @item Min difference
1613 Minimal difference between two consecutive samples.
1614
1615 @item Max difference
1616 Maximal difference between two consecutive samples.
1617
1618 @item Mean difference
1619 Mean difference between two consecutive samples.
1620 The average of each difference between two consecutive samples.
1621
1622 @item Peak level dB
1623 @item RMS level dB
1624 Standard peak and RMS level measured in dBFS.
1625
1626 @item RMS peak dB
1627 @item RMS trough dB
1628 Peak and trough values for RMS level measured over a short window.
1629
1630 @item Crest factor
1631 Standard ratio of peak to RMS level (note: not in dB).
1632
1633 @item Flat factor
1634 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1635 (i.e. either @var{Min level} or @var{Max level}).
1636
1637 @item Peak count
1638 Number of occasions (not the number of samples) that the signal attained either
1639 @var{Min level} or @var{Max level}.
1640
1641 @item Bit depth
1642 Overall bit depth of audio. Number of bits used for each sample.
1643 @end table
1644
1645 @section atempo
1646
1647 Adjust audio tempo.
1648
1649 The filter accepts exactly one parameter, the audio tempo. If not
1650 specified then the filter will assume nominal 1.0 tempo. Tempo must
1651 be in the [0.5, 2.0] range.
1652
1653 @subsection Examples
1654
1655 @itemize
1656 @item
1657 Slow down audio to 80% tempo:
1658 @example
1659 atempo=0.8
1660 @end example
1661
1662 @item
1663 To speed up audio to 125% tempo:
1664 @example
1665 atempo=1.25
1666 @end example
1667 @end itemize
1668
1669 @section atrim
1670
1671 Trim the input so that the output contains one continuous subpart of the input.
1672
1673 It accepts the following parameters:
1674 @table @option
1675 @item start
1676 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1677 sample with the timestamp @var{start} will be the first sample in the output.
1678
1679 @item end
1680 Specify time of the first audio sample that will be dropped, i.e. the
1681 audio sample immediately preceding the one with the timestamp @var{end} will be
1682 the last sample in the output.
1683
1684 @item start_pts
1685 Same as @var{start}, except this option sets the start timestamp in samples
1686 instead of seconds.
1687
1688 @item end_pts
1689 Same as @var{end}, except this option sets the end timestamp in samples instead
1690 of seconds.
1691
1692 @item duration
1693 The maximum duration of the output in seconds.
1694
1695 @item start_sample
1696 The number of the first sample that should be output.
1697
1698 @item end_sample
1699 The number of the first sample that should be dropped.
1700 @end table
1701
1702 @option{start}, @option{end}, and @option{duration} are expressed as time
1703 duration specifications; see
1704 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1705
1706 Note that the first two sets of the start/end options and the @option{duration}
1707 option look at the frame timestamp, while the _sample options simply count the
1708 samples that pass through the filter. So start/end_pts and start/end_sample will
1709 give different results when the timestamps are wrong, inexact or do not start at
1710 zero. Also note that this filter does not modify the timestamps. If you wish
1711 to have the output timestamps start at zero, insert the asetpts filter after the
1712 atrim filter.
1713
1714 If multiple start or end options are set, this filter tries to be greedy and
1715 keep all samples that match at least one of the specified constraints. To keep
1716 only the part that matches all the constraints at once, chain multiple atrim
1717 filters.
1718
1719 The defaults are such that all the input is kept. So it is possible to set e.g.
1720 just the end values to keep everything before the specified time.
1721
1722 Examples:
1723 @itemize
1724 @item
1725 Drop everything except the second minute of input:
1726 @example
1727 ffmpeg -i INPUT -af atrim=60:120
1728 @end example
1729
1730 @item
1731 Keep only the first 1000 samples:
1732 @example
1733 ffmpeg -i INPUT -af atrim=end_sample=1000
1734 @end example
1735
1736 @end itemize
1737
1738 @section bandpass
1739
1740 Apply a two-pole Butterworth band-pass filter with central
1741 frequency @var{frequency}, and (3dB-point) band-width width.
1742 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1743 instead of the default: constant 0dB peak gain.
1744 The filter roll off at 6dB per octave (20dB per decade).
1745
1746 The filter accepts the following options:
1747
1748 @table @option
1749 @item frequency, f
1750 Set the filter's central frequency. Default is @code{3000}.
1751
1752 @item csg
1753 Constant skirt gain if set to 1. Defaults to 0.
1754
1755 @item width_type
1756 Set method to specify band-width of filter.
1757 @table @option
1758 @item h
1759 Hz
1760 @item q
1761 Q-Factor
1762 @item o
1763 octave
1764 @item s
1765 slope
1766 @end table
1767
1768 @item width, w
1769 Specify the band-width of a filter in width_type units.
1770 @end table
1771
1772 @section bandreject
1773
1774 Apply a two-pole Butterworth band-reject filter with central
1775 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1776 The filter roll off at 6dB per octave (20dB per decade).
1777
1778 The filter accepts the following options:
1779
1780 @table @option
1781 @item frequency, f
1782 Set the filter's central frequency. Default is @code{3000}.
1783
1784 @item width_type
1785 Set method to specify band-width of filter.
1786 @table @option
1787 @item h
1788 Hz
1789 @item q
1790 Q-Factor
1791 @item o
1792 octave
1793 @item s
1794 slope
1795 @end table
1796
1797 @item width, w
1798 Specify the band-width of a filter in width_type units.
1799 @end table
1800
1801 @section bass
1802
1803 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1804 shelving filter with a response similar to that of a standard
1805 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1806
1807 The filter accepts the following options:
1808
1809 @table @option
1810 @item gain, g
1811 Give the gain at 0 Hz. Its useful range is about -20
1812 (for a large cut) to +20 (for a large boost).
1813 Beware of clipping when using a positive gain.
1814
1815 @item frequency, f
1816 Set the filter's central frequency and so can be used
1817 to extend or reduce the frequency range to be boosted or cut.
1818 The default value is @code{100} Hz.
1819
1820 @item width_type
1821 Set method to specify band-width of filter.
1822 @table @option
1823 @item h
1824 Hz
1825 @item q
1826 Q-Factor
1827 @item o
1828 octave
1829 @item s
1830 slope
1831 @end table
1832
1833 @item width, w
1834 Determine how steep is the filter's shelf transition.
1835 @end table
1836
1837 @section biquad
1838
1839 Apply a biquad IIR filter with the given coefficients.
1840 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1841 are the numerator and denominator coefficients respectively.
1842
1843 @section bs2b
1844 Bauer stereo to binaural transformation, which improves headphone listening of
1845 stereo audio records.
1846
1847 It accepts the following parameters:
1848 @table @option
1849
1850 @item profile
1851 Pre-defined crossfeed level.
1852 @table @option
1853
1854 @item default
1855 Default level (fcut=700, feed=50).
1856
1857 @item cmoy
1858 Chu Moy circuit (fcut=700, feed=60).
1859
1860 @item jmeier
1861 Jan Meier circuit (fcut=650, feed=95).
1862
1863 @end table
1864
1865 @item fcut
1866 Cut frequency (in Hz).
1867
1868 @item feed
1869 Feed level (in Hz).
1870
1871 @end table
1872
1873 @section channelmap
1874
1875 Remap input channels to new locations.
1876
1877 It accepts the following parameters:
1878 @table @option
1879 @item map
1880 Map channels from input to output. The argument is a '|'-separated list of
1881 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1882 @var{in_channel} form. @var{in_channel} can be either the name of the input
1883 channel (e.g. FL for front left) or its index in the input channel layout.
1884 @var{out_channel} is the name of the output channel or its index in the output
1885 channel layout. If @var{out_channel} is not given then it is implicitly an
1886 index, starting with zero and increasing by one for each mapping.
1887
1888 @item channel_layout
1889 The channel layout of the output stream.
1890 @end table
1891
1892 If no mapping is present, the filter will implicitly map input channels to
1893 output channels, preserving indices.
1894
1895 For example, assuming a 5.1+downmix input MOV file,
1896 @example
1897 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1898 @end example
1899 will create an output WAV file tagged as stereo from the downmix channels of
1900 the input.
1901
1902 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1903 @example
1904 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1905 @end example
1906
1907 @section channelsplit
1908
1909 Split each channel from an input audio stream into a separate output stream.
1910
1911 It accepts the following parameters:
1912 @table @option
1913 @item channel_layout
1914 The channel layout of the input stream. The default is "stereo".
1915 @end table
1916
1917 For example, assuming a stereo input MP3 file,
1918 @example
1919 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1920 @end example
1921 will create an output Matroska file with two audio streams, one containing only
1922 the left channel and the other the right channel.
1923
1924 Split a 5.1 WAV file into per-channel files:
1925 @example
1926 ffmpeg -i in.wav -filter_complex
1927 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1928 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1929 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1930 side_right.wav
1931 @end example
1932
1933 @section chorus
1934 Add a chorus effect to the audio.
1935
1936 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1937
1938 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1939 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1940 The modulation depth defines the range the modulated delay is played before or after
1941 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1942 sound tuned around the original one, like in a chorus where some vocals are slightly
1943 off key.
1944
1945 It accepts the following parameters:
1946 @table @option
1947 @item in_gain
1948 Set input gain. Default is 0.4.
1949
1950 @item out_gain
1951 Set output gain. Default is 0.4.
1952
1953 @item delays
1954 Set delays. A typical delay is around 40ms to 60ms.
1955
1956 @item decays
1957 Set decays.
1958
1959 @item speeds
1960 Set speeds.
1961
1962 @item depths
1963 Set depths.
1964 @end table
1965
1966 @subsection Examples
1967
1968 @itemize
1969 @item
1970 A single delay:
1971 @example
1972 chorus=0.7:0.9:55:0.4:0.25:2
1973 @end example
1974
1975 @item
1976 Two delays:
1977 @example
1978 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1979 @end example
1980
1981 @item
1982 Fuller sounding chorus with three delays:
1983 @example
1984 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
1985 @end example
1986 @end itemize
1987
1988 @section compand
1989 Compress or expand the audio's dynamic range.
1990
1991 It accepts the following parameters:
1992
1993 @table @option
1994
1995 @item attacks
1996 @item decays
1997 A list of times in seconds for each channel over which the instantaneous level
1998 of the input signal is averaged to determine its volume. @var{attacks} refers to
1999 increase of volume and @var{decays} refers to decrease of volume. For most
2000 situations, the attack time (response to the audio getting louder) should be
2001 shorter than the decay time, because the human ear is more sensitive to sudden
2002 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2003 a typical value for decay is 0.8 seconds.
2004 If specified number of attacks & decays is lower than number of channels, the last
2005 set attack/decay will be used for all remaining channels.
2006
2007 @item points
2008 A list of points for the transfer function, specified in dB relative to the
2009 maximum possible signal amplitude. Each key points list must be defined using
2010 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2011 @code{x0/y0 x1/y1 x2/y2 ....}
2012
2013 The input values must be in strictly increasing order but the transfer function
2014 does not have to be monotonically rising. The point @code{0/0} is assumed but
2015 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2016 function are @code{-70/-70|-60/-20}.
2017
2018 @item soft-knee
2019 Set the curve radius in dB for all joints. It defaults to 0.01.
2020
2021 @item gain
2022 Set the additional gain in dB to be applied at all points on the transfer
2023 function. This allows for easy adjustment of the overall gain.
2024 It defaults to 0.
2025
2026 @item volume
2027 Set an initial volume, in dB, to be assumed for each channel when filtering
2028 starts. This permits the user to supply a nominal level initially, so that, for
2029 example, a very large gain is not applied to initial signal levels before the
2030 companding has begun to operate. A typical value for audio which is initially
2031 quiet is -90 dB. It defaults to 0.
2032
2033 @item delay
2034 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2035 delayed before being fed to the volume adjuster. Specifying a delay
2036 approximately equal to the attack/decay times allows the filter to effectively
2037 operate in predictive rather than reactive mode. It defaults to 0.
2038
2039 @end table
2040
2041 @subsection Examples
2042
2043 @itemize
2044 @item
2045 Make music with both quiet and loud passages suitable for listening to in a
2046 noisy environment:
2047 @example
2048 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2049 @end example
2050
2051 Another example for audio with whisper and explosion parts:
2052 @example
2053 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2054 @end example
2055
2056 @item
2057 A noise gate for when the noise is at a lower level than the signal:
2058 @example
2059 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2060 @end example
2061
2062 @item
2063 Here is another noise gate, this time for when the noise is at a higher level
2064 than the signal (making it, in some ways, similar to squelch):
2065 @example
2066 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2067 @end example
2068
2069 @item
2070 2:1 compression starting at -6dB:
2071 @example
2072 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2073 @end example
2074
2075 @item
2076 2:1 compression starting at -9dB:
2077 @example
2078 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2079 @end example
2080
2081 @item
2082 2:1 compression starting at -12dB:
2083 @example
2084 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2085 @end example
2086
2087 @item
2088 2:1 compression starting at -18dB:
2089 @example
2090 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2091 @end example
2092
2093 @item
2094 3:1 compression starting at -15dB:
2095 @example
2096 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2097 @end example
2098
2099 @item
2100 Compressor/Gate:
2101 @example
2102 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2103 @end example
2104
2105 @item
2106 Expander:
2107 @example
2108 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
2109 @end example
2110
2111 @item
2112 Hard limiter at -6dB:
2113 @example
2114 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2115 @end example
2116
2117 @item
2118 Hard limiter at -12dB:
2119 @example
2120 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2121 @end example
2122
2123 @item
2124 Hard noise gate at -35 dB:
2125 @example
2126 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2127 @end example
2128
2129 @item
2130 Soft limiter:
2131 @example
2132 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2133 @end example
2134 @end itemize
2135
2136 @section compensationdelay
2137
2138 Compensation Delay Line is a metric based delay to compensate differing
2139 positions of microphones or speakers.
2140
2141 For example, you have recorded guitar with two microphones placed in
2142 different location. Because the front of sound wave has fixed speed in
2143 normal conditions, the phasing of microphones can vary and depends on
2144 their location and interposition. The best sound mix can be achieved when
2145 these microphones are in phase (synchronized). Note that distance of
2146 ~30 cm between microphones makes one microphone to capture signal in
2147 antiphase to another microphone. That makes the final mix sounding moody.
2148 This filter helps to solve phasing problems by adding different delays
2149 to each microphone track and make them synchronized.
2150
2151 The best result can be reached when you take one track as base and
2152 synchronize other tracks one by one with it.
2153 Remember that synchronization/delay tolerance depends on sample rate, too.
2154 Higher sample rates will give more tolerance.
2155
2156 It accepts the following parameters:
2157
2158 @table @option
2159 @item mm
2160 Set millimeters distance. This is compensation distance for fine tuning.
2161 Default is 0.
2162
2163 @item cm
2164 Set cm distance. This is compensation distance for tightening distance setup.
2165 Default is 0.
2166
2167 @item m
2168 Set meters distance. This is compensation distance for hard distance setup.
2169 Default is 0.
2170
2171 @item dry
2172 Set dry amount. Amount of unprocessed (dry) signal.
2173 Default is 0.
2174
2175 @item wet
2176 Set wet amount. Amount of processed (wet) signal.
2177 Default is 1.
2178
2179 @item temp
2180 Set temperature degree in Celsius. This is the temperature of the environment.
2181 Default is 20.
2182 @end table
2183
2184 @section crystalizer
2185 Simple algorithm to expand audio dynamic range.
2186
2187 The filter accepts the following options:
2188
2189 @table @option
2190 @item i
2191 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2192 (unchanged sound) to 10.0 (maximum effect).
2193
2194 @item c
2195 Enable clipping. By default is enabled.
2196 @end table
2197
2198 @section dcshift
2199 Apply a DC shift to the audio.
2200
2201 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2202 in the recording chain) from the audio. The effect of a DC offset is reduced
2203 headroom and hence volume. The @ref{astats} filter can be used to determine if
2204 a signal has a DC offset.
2205
2206 @table @option
2207 @item shift
2208 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2209 the audio.
2210
2211 @item limitergain
2212 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2213 used to prevent clipping.
2214 @end table
2215
2216 @section dynaudnorm
2217 Dynamic Audio Normalizer.
2218
2219 This filter applies a certain amount of gain to the input audio in order
2220 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2221 contrast to more "simple" normalization algorithms, the Dynamic Audio
2222 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2223 This allows for applying extra gain to the "quiet" sections of the audio
2224 while avoiding distortions or clipping the "loud" sections. In other words:
2225 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2226 sections, in the sense that the volume of each section is brought to the
2227 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2228 this goal *without* applying "dynamic range compressing". It will retain 100%
2229 of the dynamic range *within* each section of the audio file.
2230
2231 @table @option
2232 @item f
2233 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2234 Default is 500 milliseconds.
2235 The Dynamic Audio Normalizer processes the input audio in small chunks,
2236 referred to as frames. This is required, because a peak magnitude has no
2237 meaning for just a single sample value. Instead, we need to determine the
2238 peak magnitude for a contiguous sequence of sample values. While a "standard"
2239 normalizer would simply use the peak magnitude of the complete file, the
2240 Dynamic Audio Normalizer determines the peak magnitude individually for each
2241 frame. The length of a frame is specified in milliseconds. By default, the
2242 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2243 been found to give good results with most files.
2244 Note that the exact frame length, in number of samples, will be determined
2245 automatically, based on the sampling rate of the individual input audio file.
2246
2247 @item g
2248 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2249 number. Default is 31.
2250 Probably the most important parameter of the Dynamic Audio Normalizer is the
2251 @code{window size} of the Gaussian smoothing filter. The filter's window size
2252 is specified in frames, centered around the current frame. For the sake of
2253 simplicity, this must be an odd number. Consequently, the default value of 31
2254 takes into account the current frame, as well as the 15 preceding frames and
2255 the 15 subsequent frames. Using a larger window results in a stronger
2256 smoothing effect and thus in less gain variation, i.e. slower gain
2257 adaptation. Conversely, using a smaller window results in a weaker smoothing
2258 effect and thus in more gain variation, i.e. faster gain adaptation.
2259 In other words, the more you increase this value, the more the Dynamic Audio
2260 Normalizer will behave like a "traditional" normalization filter. On the
2261 contrary, the more you decrease this value, the more the Dynamic Audio
2262 Normalizer will behave like a dynamic range compressor.
2263
2264 @item p
2265 Set the target peak value. This specifies the highest permissible magnitude
2266 level for the normalized audio input. This filter will try to approach the
2267 target peak magnitude as closely as possible, but at the same time it also
2268 makes sure that the normalized signal will never exceed the peak magnitude.
2269 A frame's maximum local gain factor is imposed directly by the target peak
2270 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2271 It is not recommended to go above this value.
2272
2273 @item m
2274 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2275 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2276 factor for each input frame, i.e. the maximum gain factor that does not
2277 result in clipping or distortion. The maximum gain factor is determined by
2278 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2279 additionally bounds the frame's maximum gain factor by a predetermined
2280 (global) maximum gain factor. This is done in order to avoid excessive gain
2281 factors in "silent" or almost silent frames. By default, the maximum gain
2282 factor is 10.0, For most inputs the default value should be sufficient and
2283 it usually is not recommended to increase this value. Though, for input
2284 with an extremely low overall volume level, it may be necessary to allow even
2285 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2286 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2287 Instead, a "sigmoid" threshold function will be applied. This way, the
2288 gain factors will smoothly approach the threshold value, but never exceed that
2289 value.
2290
2291 @item r
2292 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2293 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2294 This means that the maximum local gain factor for each frame is defined
2295 (only) by the frame's highest magnitude sample. This way, the samples can
2296 be amplified as much as possible without exceeding the maximum signal
2297 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2298 Normalizer can also take into account the frame's root mean square,
2299 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2300 determine the power of a time-varying signal. It is therefore considered
2301 that the RMS is a better approximation of the "perceived loudness" than
2302 just looking at the signal's peak magnitude. Consequently, by adjusting all
2303 frames to a constant RMS value, a uniform "perceived loudness" can be
2304 established. If a target RMS value has been specified, a frame's local gain
2305 factor is defined as the factor that would result in exactly that RMS value.
2306 Note, however, that the maximum local gain factor is still restricted by the
2307 frame's highest magnitude sample, in order to prevent clipping.
2308
2309 @item n
2310 Enable channels coupling. By default is enabled.
2311 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2312 amount. This means the same gain factor will be applied to all channels, i.e.
2313 the maximum possible gain factor is determined by the "loudest" channel.
2314 However, in some recordings, it may happen that the volume of the different
2315 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2316 In this case, this option can be used to disable the channel coupling. This way,
2317 the gain factor will be determined independently for each channel, depending
2318 only on the individual channel's highest magnitude sample. This allows for
2319 harmonizing the volume of the different channels.
2320
2321 @item c
2322 Enable DC bias correction. By default is disabled.
2323 An audio signal (in the time domain) is a sequence of sample values.
2324 In the Dynamic Audio Normalizer these sample values are represented in the
2325 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2326 audio signal, or "waveform", should be centered around the zero point.
2327 That means if we calculate the mean value of all samples in a file, or in a
2328 single frame, then the result should be 0.0 or at least very close to that
2329 value. If, however, there is a significant deviation of the mean value from
2330 0.0, in either positive or negative direction, this is referred to as a
2331 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2332 Audio Normalizer provides optional DC bias correction.
2333 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2334 the mean value, or "DC correction" offset, of each input frame and subtract
2335 that value from all of the frame's sample values which ensures those samples
2336 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2337 boundaries, the DC correction offset values will be interpolated smoothly
2338 between neighbouring frames.
2339
2340 @item b
2341 Enable alternative boundary mode. By default is disabled.
2342 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2343 around each frame. This includes the preceding frames as well as the
2344 subsequent frames. However, for the "boundary" frames, located at the very
2345 beginning and at the very end of the audio file, not all neighbouring
2346 frames are available. In particular, for the first few frames in the audio
2347 file, the preceding frames are not known. And, similarly, for the last few
2348 frames in the audio file, the subsequent frames are not known. Thus, the
2349 question arises which gain factors should be assumed for the missing frames
2350 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2351 to deal with this situation. The default boundary mode assumes a gain factor
2352 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2353 "fade out" at the beginning and at the end of the input, respectively.
2354
2355 @item s
2356 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2357 By default, the Dynamic Audio Normalizer does not apply "traditional"
2358 compression. This means that signal peaks will not be pruned and thus the
2359 full dynamic range will be retained within each local neighbourhood. However,
2360 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2361 normalization algorithm with a more "traditional" compression.
2362 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2363 (thresholding) function. If (and only if) the compression feature is enabled,
2364 all input frames will be processed by a soft knee thresholding function prior
2365 to the actual normalization process. Put simply, the thresholding function is
2366 going to prune all samples whose magnitude exceeds a certain threshold value.
2367 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2368 value. Instead, the threshold value will be adjusted for each individual
2369 frame.
2370 In general, smaller parameters result in stronger compression, and vice versa.
2371 Values below 3.0 are not recommended, because audible distortion may appear.
2372 @end table
2373
2374 @section earwax
2375
2376 Make audio easier to listen to on headphones.
2377
2378 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2379 so that when listened to on headphones the stereo image is moved from
2380 inside your head (standard for headphones) to outside and in front of
2381 the listener (standard for speakers).
2382
2383 Ported from SoX.
2384
2385 @section equalizer
2386
2387 Apply a two-pole peaking equalisation (EQ) filter. With this
2388 filter, the signal-level at and around a selected frequency can
2389 be increased or decreased, whilst (unlike bandpass and bandreject
2390 filters) that at all other frequencies is unchanged.
2391
2392 In order to produce complex equalisation curves, this filter can
2393 be given several times, each with a different central frequency.
2394
2395 The filter accepts the following options:
2396
2397 @table @option
2398 @item frequency, f
2399 Set the filter's central frequency in Hz.
2400
2401 @item width_type
2402 Set method to specify band-width of filter.
2403 @table @option
2404 @item h
2405 Hz
2406 @item q
2407 Q-Factor
2408 @item o
2409 octave
2410 @item s
2411 slope
2412 @end table
2413
2414 @item width, w
2415 Specify the band-width of a filter in width_type units.
2416
2417 @item gain, g
2418 Set the required gain or attenuation in dB.
2419 Beware of clipping when using a positive gain.
2420 @end table
2421
2422 @subsection Examples
2423 @itemize
2424 @item
2425 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2426 @example
2427 equalizer=f=1000:width_type=h:width=200:g=-10
2428 @end example
2429
2430 @item
2431 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2432 @example
2433 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2434 @end example
2435 @end itemize
2436
2437 @section extrastereo
2438
2439 Linearly increases the difference between left and right channels which
2440 adds some sort of "live" effect to playback.
2441
2442 The filter accepts the following options:
2443
2444 @table @option
2445 @item m
2446 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2447 (average of both channels), with 1.0 sound will be unchanged, with
2448 -1.0 left and right channels will be swapped.
2449
2450 @item c
2451 Enable clipping. By default is enabled.
2452 @end table
2453
2454 @section firequalizer
2455 Apply FIR Equalization using arbitrary frequency response.
2456
2457 The filter accepts the following option:
2458
2459 @table @option
2460 @item gain
2461 Set gain curve equation (in dB). The expression can contain variables:
2462 @table @option
2463 @item f
2464 the evaluated frequency
2465 @item sr
2466 sample rate
2467 @item ch
2468 channel number, set to 0 when multichannels evaluation is disabled
2469 @item chid
2470 channel id, see libavutil/channel_layout.h, set to the first channel id when
2471 multichannels evaluation is disabled
2472 @item chs
2473 number of channels
2474 @item chlayout
2475 channel_layout, see libavutil/channel_layout.h
2476
2477 @end table
2478 and functions:
2479 @table @option
2480 @item gain_interpolate(f)
2481 interpolate gain on frequency f based on gain_entry
2482 @item cubic_interpolate(f)
2483 same as gain_interpolate, but smoother
2484 @end table
2485 This option is also available as command. Default is @code{gain_interpolate(f)}.
2486
2487 @item gain_entry
2488 Set gain entry for gain_interpolate function. The expression can
2489 contain functions:
2490 @table @option
2491 @item entry(f, g)
2492 store gain entry at frequency f with value g
2493 @end table
2494 This option is also available as command.
2495
2496 @item delay
2497 Set filter delay in seconds. Higher value means more accurate.
2498 Default is @code{0.01}.
2499
2500 @item accuracy
2501 Set filter accuracy in Hz. Lower value means more accurate.
2502 Default is @code{5}.
2503
2504 @item wfunc
2505 Set window function. Acceptable values are:
2506 @table @option
2507 @item rectangular
2508 rectangular window, useful when gain curve is already smooth
2509 @item hann
2510 hann window (default)
2511 @item hamming
2512 hamming window
2513 @item blackman
2514 blackman window
2515 @item nuttall3
2516 3-terms continuous 1st derivative nuttall window
2517 @item mnuttall3
2518 minimum 3-terms discontinuous nuttall window
2519 @item nuttall
2520 4-terms continuous 1st derivative nuttall window
2521 @item bnuttall
2522 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2523 @item bharris
2524 blackman-harris window
2525 @item tukey
2526 tukey window
2527 @end table
2528
2529 @item fixed
2530 If enabled, use fixed number of audio samples. This improves speed when
2531 filtering with large delay. Default is disabled.
2532
2533 @item multi
2534 Enable multichannels evaluation on gain. Default is disabled.
2535
2536 @item zero_phase
2537 Enable zero phase mode by subtracting timestamp to compensate delay.
2538 Default is disabled.
2539
2540 @item scale
2541 Set scale used by gain. Acceptable values are:
2542 @table @option
2543 @item linlin
2544 linear frequency, linear gain
2545 @item linlog
2546 linear frequency, logarithmic (in dB) gain (default)
2547 @item loglin
2548 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
2549 @item loglog
2550 logarithmic frequency, logarithmic gain
2551 @end table
2552
2553 @item dumpfile
2554 Set file for dumping, suitable for gnuplot.
2555
2556 @item dumpscale
2557 Set scale for dumpfile. Acceptable values are same with scale option.
2558 Default is linlog.
2559
2560 @item fft2
2561 Enable 2-channel convolution using complex FFT. This improves speed significantly.
2562 Default is disabled.
2563 @end table
2564
2565 @subsection Examples
2566 @itemize
2567 @item
2568 lowpass at 1000 Hz:
2569 @example
2570 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2571 @end example
2572 @item
2573 lowpass at 1000 Hz with gain_entry:
2574 @example
2575 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2576 @end example
2577 @item
2578 custom equalization:
2579 @example
2580 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2581 @end example
2582 @item
2583 higher delay with zero phase to compensate delay:
2584 @example
2585 firequalizer=delay=0.1:fixed=on:zero_phase=on
2586 @end example
2587 @item
2588 lowpass on left channel, highpass on right channel:
2589 @example
2590 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2591 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2592 @end example
2593 @end itemize
2594
2595 @section flanger
2596 Apply a flanging effect to the audio.
2597
2598 The filter accepts the following options:
2599
2600 @table @option
2601 @item delay
2602 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2603
2604 @item depth
2605 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2606
2607 @item regen
2608 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2609 Default value is 0.
2610
2611 @item width
2612 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2613 Default value is 71.
2614
2615 @item speed
2616 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2617
2618 @item shape
2619 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2620 Default value is @var{sinusoidal}.
2621
2622 @item phase
2623 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2624 Default value is 25.
2625
2626 @item interp
2627 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2628 Default is @var{linear}.
2629 @end table
2630
2631 @section hdcd
2632
2633 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
2634 embedded HDCD codes is expanded into a 20-bit PCM stream.
2635
2636 The filter supports the Peak Extend and Low-level Gain Adjustment features
2637 of HDCD, and detects the Transient Filter flag.
2638
2639 @example
2640 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
2641 @end example
2642
2643 When using the filter with wav, note the default encoding for wav is 16-bit,
2644 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
2645 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
2646 @example
2647 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
2648 ffmpeg -i HDCD16.wav -af hdcd -acodec pcm_s24le OUT24.wav
2649 @end example
2650
2651 The filter accepts the following options:
2652
2653 @table @option
2654 @item disable_autoconvert
2655 Disable any automatic format conversion or resampling in the filter graph.
2656
2657 @item process_stereo
2658 Process the stereo channels together. If target_gain does not match between
2659 channels, consider it invalid and use the last valid target_gain.
2660
2661 @item cdt_ms
2662 Set the code detect timer period in ms.
2663
2664 @item force_pe
2665 Always extend peaks above -3dBFS even if PE isn't signaled.
2666
2667 @item analyze_mode
2668 Replace audio with a solid tone and adjust the amplitude to signal some
2669 specific aspect of the decoding process. The output file can be loaded in
2670 an audio editor alongside the original to aid analysis.
2671
2672 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
2673
2674 Modes are:
2675 @table @samp
2676 @item 0, off
2677 Disabled
2678 @item 1, lle
2679 Gain adjustment level at each sample
2680 @item 2, pe
2681 Samples where peak extend occurs
2682 @item 3, cdt
2683 Samples where the code detect timer is active
2684 @item 4, tgm
2685 Samples where the target gain does not match between channels
2686 @end table
2687 @end table
2688
2689 @section highpass
2690
2691 Apply a high-pass filter with 3dB point frequency.
2692 The filter can be either single-pole, or double-pole (the default).
2693 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2694
2695 The filter accepts the following options:
2696
2697 @table @option
2698 @item frequency, f
2699 Set frequency in Hz. Default is 3000.
2700
2701 @item poles, p
2702 Set number of poles. Default is 2.
2703
2704 @item width_type
2705 Set method to specify band-width of filter.
2706 @table @option
2707 @item h
2708 Hz
2709 @item q
2710 Q-Factor
2711 @item o
2712 octave
2713 @item s
2714 slope
2715 @end table
2716
2717 @item width, w
2718 Specify the band-width of a filter in width_type units.
2719 Applies only to double-pole filter.
2720 The default is 0.707q and gives a Butterworth response.
2721 @end table
2722
2723 @section join
2724
2725 Join multiple input streams into one multi-channel stream.
2726
2727 It accepts the following parameters:
2728 @table @option
2729
2730 @item inputs
2731 The number of input streams. It defaults to 2.
2732
2733 @item channel_layout
2734 The desired output channel layout. It defaults to stereo.
2735
2736 @item map
2737 Map channels from inputs to output. The argument is a '|'-separated list of
2738 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2739 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2740 can be either the name of the input channel (e.g. FL for front left) or its
2741 index in the specified input stream. @var{out_channel} is the name of the output
2742 channel.
2743 @end table
2744
2745 The filter will attempt to guess the mappings when they are not specified
2746 explicitly. It does so by first trying to find an unused matching input channel
2747 and if that fails it picks the first unused input channel.
2748
2749 Join 3 inputs (with properly set channel layouts):
2750 @example
2751 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2752 @end example
2753
2754 Build a 5.1 output from 6 single-channel streams:
2755 @example
2756 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2757 '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'
2758 out
2759 @end example
2760
2761 @section ladspa
2762
2763 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2764
2765 To enable compilation of this filter you need to configure FFmpeg with
2766 @code{--enable-ladspa}.
2767
2768 @table @option
2769 @item file, f
2770 Specifies the name of LADSPA plugin library to load. If the environment
2771 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2772 each one of the directories specified by the colon separated list in
2773 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2774 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2775 @file{/usr/lib/ladspa/}.
2776
2777 @item plugin, p
2778 Specifies the plugin within the library. Some libraries contain only
2779 one plugin, but others contain many of them. If this is not set filter
2780 will list all available plugins within the specified library.
2781
2782 @item controls, c
2783 Set the '|' separated list of controls which are zero or more floating point
2784 values that determine the behavior of the loaded plugin (for example delay,
2785 threshold or gain).
2786 Controls need to be defined using the following syntax:
2787 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2788 @var{valuei} is the value set on the @var{i}-th control.
2789 Alternatively they can be also defined using the following syntax:
2790 @var{value0}|@var{value1}|@var{value2}|..., where
2791 @var{valuei} is the value set on the @var{i}-th control.
2792 If @option{controls} is set to @code{help}, all available controls and
2793 their valid ranges are printed.
2794
2795 @item sample_rate, s
2796 Specify the sample rate, default to 44100. Only used if plugin have
2797 zero inputs.
2798
2799 @item nb_samples, n
2800 Set the number of samples per channel per each output frame, default
2801 is 1024. Only used if plugin have zero inputs.
2802
2803 @item duration, d
2804 Set the minimum duration of the sourced audio. See
2805 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2806 for the accepted syntax.
2807 Note that the resulting duration may be greater than the specified duration,
2808 as the generated audio is always cut at the end of a complete frame.
2809 If not specified, or the expressed duration is negative, the audio is
2810 supposed to be generated forever.
2811 Only used if plugin have zero inputs.
2812
2813 @end table
2814
2815 @subsection Examples
2816
2817 @itemize
2818 @item
2819 List all available plugins within amp (LADSPA example plugin) library:
2820 @example
2821 ladspa=file=amp
2822 @end example
2823
2824 @item
2825 List all available controls and their valid ranges for @code{vcf_notch}
2826 plugin from @code{VCF} library:
2827 @example
2828 ladspa=f=vcf:p=vcf_notch:c=help
2829 @end example
2830
2831 @item
2832 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2833 plugin library:
2834 @example
2835 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2836 @end example
2837
2838 @item
2839 Add reverberation to the audio using TAP-plugins
2840 (Tom's Audio Processing plugins):
2841 @example
2842 ladspa=file=tap_reverb:tap_reverb
2843 @end example
2844
2845 @item
2846 Generate white noise, with 0.2 amplitude:
2847 @example
2848 ladspa=file=cmt:noise_source_white:c=c0=.2
2849 @end example
2850
2851 @item
2852 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2853 @code{C* Audio Plugin Suite} (CAPS) library:
2854 @example
2855 ladspa=file=caps:Click:c=c1=20'
2856 @end example
2857
2858 @item
2859 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2860 @example
2861 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2862 @end example
2863
2864 @item
2865 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2866 @code{SWH Plugins} collection:
2867 @example
2868 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2869 @end example
2870
2871 @item
2872 Attenuate low frequencies using Multiband EQ from Steve Harris
2873 @code{SWH Plugins} collection:
2874 @example
2875 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2876 @end example
2877 @end itemize
2878
2879 @subsection Commands
2880
2881 This filter supports the following commands:
2882 @table @option
2883 @item cN
2884 Modify the @var{N}-th control value.
2885
2886 If the specified value is not valid, it is ignored and prior one is kept.
2887 @end table
2888
2889 @section loudnorm
2890
2891 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
2892 Support for both single pass (livestreams, files) and double pass (files) modes.
2893 This algorithm can target IL, LRA, and maximum true peak.
2894
2895 The filter accepts the following options:
2896
2897 @table @option
2898 @item I, i
2899 Set integrated loudness target.
2900 Range is -70.0 - -5.0. Default value is -24.0.
2901
2902 @item LRA, lra
2903 Set loudness range target.
2904 Range is 1.0 - 20.0. Default value is 7.0.
2905
2906 @item TP, tp
2907 Set maximum true peak.
2908 Range is -9.0 - +0.0. Default value is -2.0.
2909
2910 @item measured_I, measured_i
2911 Measured IL of input file.
2912 Range is -99.0 - +0.0.
2913
2914 @item measured_LRA, measured_lra
2915 Measured LRA of input file.
2916 Range is  0.0 - 99.0.
2917
2918 @item measured_TP, measured_tp
2919 Measured true peak of input file.
2920 Range is  -99.0 - +99.0.
2921
2922 @item measured_thresh
2923 Measured threshold of input file.
2924 Range is -99.0 - +0.0.
2925
2926 @item offset
2927 Set offset gain. Gain is applied before the true-peak limiter.
2928 Range is  -99.0 - +99.0. Default is +0.0.
2929
2930 @item linear
2931 Normalize linearly if possible.
2932 measured_I, measured_LRA, measured_TP, and measured_thresh must also
2933 to be specified in order to use this mode.
2934 Options are true or false. Default is true.
2935
2936 @item dual_mono
2937 Treat mono input files as "dual-mono". If a mono file is intended for playback
2938 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
2939 If set to @code{true}, this option will compensate for this effect.
2940 Multi-channel input files are not affected by this option.
2941 Options are true or false. Default is false.
2942
2943 @item print_format
2944 Set print format for stats. Options are summary, json, or none.
2945 Default value is none.
2946 @end table
2947
2948 @section lowpass
2949
2950 Apply a low-pass filter with 3dB point frequency.
2951 The filter can be either single-pole or double-pole (the default).
2952 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2953
2954 The filter accepts the following options:
2955
2956 @table @option
2957 @item frequency, f
2958 Set frequency in Hz. Default is 500.
2959
2960 @item poles, p
2961 Set number of poles. Default is 2.
2962
2963 @item width_type
2964 Set method to specify band-width of filter.
2965 @table @option
2966 @item h
2967 Hz
2968 @item q
2969 Q-Factor
2970 @item o
2971 octave
2972 @item s
2973 slope
2974 @end table
2975
2976 @item width, w
2977 Specify the band-width of a filter in width_type units.
2978 Applies only to double-pole filter.
2979 The default is 0.707q and gives a Butterworth response.
2980 @end table
2981
2982 @anchor{pan}
2983 @section pan
2984
2985 Mix channels with specific gain levels. The filter accepts the output
2986 channel layout followed by a set of channels definitions.
2987
2988 This filter is also designed to efficiently remap the channels of an audio
2989 stream.
2990
2991 The filter accepts parameters of the form:
2992 "@var{l}|@var{outdef}|@var{outdef}|..."
2993
2994 @table @option
2995 @item l
2996 output channel layout or number of channels
2997
2998 @item outdef
2999 output channel specification, of the form:
3000 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
3001
3002 @item out_name
3003 output channel to define, either a channel name (FL, FR, etc.) or a channel
3004 number (c0, c1, etc.)
3005
3006 @item gain
3007 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3008
3009 @item in_name
3010 input channel to use, see out_name for details; it is not possible to mix
3011 named and numbered input channels
3012 @end table
3013
3014 If the `=' in a channel specification is replaced by `<', then the gains for
3015 that specification will be renormalized so that the total is 1, thus
3016 avoiding clipping noise.
3017
3018 @subsection Mixing examples
3019
3020 For example, if you want to down-mix from stereo to mono, but with a bigger
3021 factor for the left channel:
3022 @example
3023 pan=1c|c0=0.9*c0+0.1*c1
3024 @end example
3025
3026 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3027 7-channels surround:
3028 @example
3029 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3030 @end example
3031
3032 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3033 that should be preferred (see "-ac" option) unless you have very specific
3034 needs.
3035
3036 @subsection Remapping examples
3037
3038 The channel remapping will be effective if, and only if:
3039
3040 @itemize
3041 @item gain coefficients are zeroes or ones,
3042 @item only one input per channel output,
3043 @end itemize
3044
3045 If all these conditions are satisfied, the filter will notify the user ("Pure
3046 channel mapping detected"), and use an optimized and lossless method to do the
3047 remapping.
3048
3049 For example, if you have a 5.1 source and want a stereo audio stream by
3050 dropping the extra channels:
3051 @example
3052 pan="stereo| c0=FL | c1=FR"
3053 @end example
3054
3055 Given the same source, you can also switch front left and front right channels
3056 and keep the input channel layout:
3057 @example
3058 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3059 @end example
3060
3061 If the input is a stereo audio stream, you can mute the front left channel (and
3062 still keep the stereo channel layout) with:
3063 @example
3064 pan="stereo|c1=c1"
3065 @end example
3066
3067 Still with a stereo audio stream input, you can copy the right channel in both
3068 front left and right:
3069 @example
3070 pan="stereo| c0=FR | c1=FR"
3071 @end example
3072
3073 @section replaygain
3074
3075 ReplayGain scanner filter. This filter takes an audio stream as an input and
3076 outputs it unchanged.
3077 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3078
3079 @section resample
3080
3081 Convert the audio sample format, sample rate and channel layout. It is
3082 not meant to be used directly.
3083
3084 @section rubberband
3085 Apply time-stretching and pitch-shifting with librubberband.
3086
3087 The filter accepts the following options:
3088
3089 @table @option
3090 @item tempo
3091 Set tempo scale factor.
3092
3093 @item pitch
3094 Set pitch scale factor.
3095
3096 @item transients
3097 Set transients detector.
3098 Possible values are:
3099 @table @var
3100 @item crisp
3101 @item mixed
3102 @item smooth
3103 @end table
3104
3105 @item detector
3106 Set detector.
3107 Possible values are:
3108 @table @var
3109 @item compound
3110 @item percussive
3111 @item soft
3112 @end table
3113
3114 @item phase
3115 Set phase.
3116 Possible values are:
3117 @table @var
3118 @item laminar
3119 @item independent
3120 @end table
3121
3122 @item window
3123 Set processing window size.
3124 Possible values are:
3125 @table @var
3126 @item standard
3127 @item short
3128 @item long
3129 @end table
3130
3131 @item smoothing
3132 Set smoothing.
3133 Possible values are:
3134 @table @var
3135 @item off
3136 @item on
3137 @end table
3138
3139 @item formant
3140 Enable formant preservation when shift pitching.
3141 Possible values are:
3142 @table @var
3143 @item shifted
3144 @item preserved
3145 @end table
3146
3147 @item pitchq
3148 Set pitch quality.
3149 Possible values are:
3150 @table @var
3151 @item quality
3152 @item speed
3153 @item consistency
3154 @end table
3155
3156 @item channels
3157 Set channels.
3158 Possible values are:
3159 @table @var
3160 @item apart
3161 @item together
3162 @end table
3163 @end table
3164
3165 @section sidechaincompress
3166
3167 This filter acts like normal compressor but has the ability to compress
3168 detected signal using second input signal.
3169 It needs two input streams and returns one output stream.
3170 First input stream will be processed depending on second stream signal.
3171 The filtered signal then can be filtered with other filters in later stages of
3172 processing. See @ref{pan} and @ref{amerge} filter.
3173
3174 The filter accepts the following options:
3175
3176 @table @option
3177 @item level_in
3178 Set input gain. Default is 1. Range is between 0.015625 and 64.
3179
3180 @item threshold
3181 If a signal of second stream raises above this level it will affect the gain
3182 reduction of first stream.
3183 By default is 0.125. Range is between 0.00097563 and 1.
3184
3185 @item ratio
3186 Set a ratio about which the signal is reduced. 1:2 means that if the level
3187 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3188 Default is 2. Range is between 1 and 20.
3189
3190 @item attack
3191 Amount of milliseconds the signal has to rise above the threshold before gain
3192 reduction starts. Default is 20. Range is between 0.01 and 2000.
3193
3194 @item release
3195 Amount of milliseconds the signal has to fall below the threshold before
3196 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3197
3198 @item makeup
3199 Set the amount by how much signal will be amplified after processing.
3200 Default is 2. Range is from 1 and 64.
3201
3202 @item knee
3203 Curve the sharp knee around the threshold to enter gain reduction more softly.
3204 Default is 2.82843. Range is between 1 and 8.
3205
3206 @item link
3207 Choose if the @code{average} level between all channels of side-chain stream
3208 or the louder(@code{maximum}) channel of side-chain stream affects the
3209 reduction. Default is @code{average}.
3210
3211 @item detection
3212 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3213 of @code{rms}. Default is @code{rms} which is mainly smoother.
3214
3215 @item level_sc
3216 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3217
3218 @item mix
3219 How much to use compressed signal in output. Default is 1.
3220 Range is between 0 and 1.
3221 @end table
3222
3223 @subsection Examples
3224
3225 @itemize
3226 @item
3227 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3228 depending on the signal of 2nd input and later compressed signal to be
3229 merged with 2nd input:
3230 @example
3231 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3232 @end example
3233 @end itemize
3234
3235 @section sidechaingate
3236
3237 A sidechain gate acts like a normal (wideband) gate but has the ability to
3238 filter the detected signal before sending it to the gain reduction stage.
3239 Normally a gate uses the full range signal to detect a level above the
3240 threshold.
3241 For example: If you cut all lower frequencies from your sidechain signal
3242 the gate will decrease the volume of your track only if not enough highs
3243 appear. With this technique you are able to reduce the resonation of a
3244 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3245 guitar.
3246 It needs two input streams and returns one output stream.
3247 First input stream will be processed depending on second stream signal.
3248
3249 The filter accepts the following options:
3250
3251 @table @option
3252 @item level_in
3253 Set input level before filtering.
3254 Default is 1. Allowed range is from 0.015625 to 64.
3255
3256 @item range
3257 Set the level of gain reduction when the signal is below the threshold.
3258 Default is 0.06125. Allowed range is from 0 to 1.
3259
3260 @item threshold
3261 If a signal rises above this level the gain reduction is released.
3262 Default is 0.125. Allowed range is from 0 to 1.
3263
3264 @item ratio
3265 Set a ratio about which the signal is reduced.
3266 Default is 2. Allowed range is from 1 to 9000.
3267
3268 @item attack
3269 Amount of milliseconds the signal has to rise above the threshold before gain
3270 reduction stops.
3271 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3272
3273 @item release
3274 Amount of milliseconds the signal has to fall below the threshold before the
3275 reduction is increased again. Default is 250 milliseconds.
3276 Allowed range is from 0.01 to 9000.
3277
3278 @item makeup
3279 Set amount of amplification of signal after processing.
3280 Default is 1. Allowed range is from 1 to 64.
3281
3282 @item knee
3283 Curve the sharp knee around the threshold to enter gain reduction more softly.
3284 Default is 2.828427125. Allowed range is from 1 to 8.
3285
3286 @item detection
3287 Choose if exact signal should be taken for detection or an RMS like one.
3288 Default is rms. Can be peak or rms.
3289
3290 @item link
3291 Choose if the average level between all channels or the louder channel affects
3292 the reduction.
3293 Default is average. Can be average or maximum.
3294
3295 @item level_sc
3296 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3297 @end table
3298
3299 @section silencedetect
3300
3301 Detect silence in an audio stream.
3302
3303 This filter logs a message when it detects that the input audio volume is less
3304 or equal to a noise tolerance value for a duration greater or equal to the
3305 minimum detected noise duration.
3306
3307 The printed times and duration are expressed in seconds.
3308
3309 The filter accepts the following options:
3310
3311 @table @option
3312 @item duration, d
3313 Set silence duration until notification (default is 2 seconds).
3314
3315 @item noise, n
3316 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3317 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3318 @end table
3319
3320 @subsection Examples
3321
3322 @itemize
3323 @item
3324 Detect 5 seconds of silence with -50dB noise tolerance:
3325 @example
3326 silencedetect=n=-50dB:d=5
3327 @end example
3328
3329 @item
3330 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3331 tolerance in @file{silence.mp3}:
3332 @example
3333 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3334 @end example
3335 @end itemize
3336
3337 @section silenceremove
3338
3339 Remove silence from the beginning, middle or end of the audio.
3340
3341 The filter accepts the following options:
3342
3343 @table @option
3344 @item start_periods
3345 This value is used to indicate if audio should be trimmed at beginning of
3346 the audio. A value of zero indicates no silence should be trimmed from the
3347 beginning. When specifying a non-zero value, it trims audio up until it
3348 finds non-silence. Normally, when trimming silence from beginning of audio
3349 the @var{start_periods} will be @code{1} but it can be increased to higher
3350 values to trim all audio up to specific count of non-silence periods.
3351 Default value is @code{0}.
3352
3353 @item start_duration
3354 Specify the amount of time that non-silence must be detected before it stops
3355 trimming audio. By increasing the duration, bursts of noises can be treated
3356 as silence and trimmed off. Default value is @code{0}.
3357
3358 @item start_threshold
3359 This indicates what sample value should be treated as silence. For digital
3360 audio, a value of @code{0} may be fine but for audio recorded from analog,
3361 you may wish to increase the value to account for background noise.
3362 Can be specified in dB (in case "dB" is appended to the specified value)
3363 or amplitude ratio. Default value is @code{0}.
3364
3365 @item stop_periods
3366 Set the count for trimming silence from the end of audio.
3367 To remove silence from the middle of a file, specify a @var{stop_periods}
3368 that is negative. This value is then treated as a positive value and is
3369 used to indicate the effect should restart processing as specified by
3370 @var{start_periods}, making it suitable for removing periods of silence
3371 in the middle of the audio.
3372 Default value is @code{0}.
3373
3374 @item stop_duration
3375 Specify a duration of silence that must exist before audio is not copied any
3376 more. By specifying a higher duration, silence that is wanted can be left in
3377 the audio.
3378 Default value is @code{0}.
3379
3380 @item stop_threshold
3381 This is the same as @option{start_threshold} but for trimming silence from
3382 the end of audio.
3383 Can be specified in dB (in case "dB" is appended to the specified value)
3384 or amplitude ratio. Default value is @code{0}.
3385
3386 @item leave_silence
3387 This indicates that @var{stop_duration} length of audio should be left intact
3388 at the beginning of each period of silence.
3389 For example, if you want to remove long pauses between words but do not want
3390 to remove the pauses completely. Default value is @code{0}.
3391
3392 @item detection
3393 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3394 and works better with digital silence which is exactly 0.
3395 Default value is @code{rms}.
3396
3397 @item window
3398 Set ratio used to calculate size of window for detecting silence.
3399 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3400 @end table
3401
3402 @subsection Examples
3403
3404 @itemize
3405 @item
3406 The following example shows how this filter can be used to start a recording
3407 that does not contain the delay at the start which usually occurs between
3408 pressing the record button and the start of the performance:
3409 @example
3410 silenceremove=1:5:0.02
3411 @end example
3412
3413 @item
3414 Trim all silence encountered from beginning to end where there is more than 1
3415 second of silence in audio:
3416 @example
3417 silenceremove=0:0:0:-1:1:-90dB
3418 @end example
3419 @end itemize
3420
3421 @section sofalizer
3422
3423 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3424 loudspeakers around the user for binaural listening via headphones (audio
3425 formats up to 9 channels supported).
3426 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3427 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3428 Austrian Academy of Sciences.
3429
3430 To enable compilation of this filter you need to configure FFmpeg with
3431 @code{--enable-netcdf}.
3432
3433 The filter accepts the following options:
3434
3435 @table @option
3436 @item sofa
3437 Set the SOFA file used for rendering.
3438
3439 @item gain
3440 Set gain applied to audio. Value is in dB. Default is 0.
3441
3442 @item rotation
3443 Set rotation of virtual loudspeakers in deg. Default is 0.
3444
3445 @item elevation
3446 Set elevation of virtual speakers in deg. Default is 0.
3447
3448 @item radius
3449 Set distance in meters between loudspeakers and the listener with near-field
3450 HRTFs. Default is 1.
3451
3452 @item type
3453 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3454 processing audio in time domain which is slow.
3455 @var{freq} is processing audio in frequency domain which is fast.
3456 Default is @var{freq}.
3457
3458 @item speakers
3459 Set custom positions of virtual loudspeakers. Syntax for this option is:
3460 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3461 Each virtual loudspeaker is described with short channel name following with
3462 azimuth and elevation in degreees.
3463 Each virtual loudspeaker description is separated by '|'.
3464 For example to override front left and front right channel positions use:
3465 'speakers=FL 45 15|FR 345 15'.
3466 Descriptions with unrecognised channel names are ignored.
3467 @end table
3468
3469 @subsection Examples
3470
3471 @itemize
3472 @item
3473 Using ClubFritz6 sofa file:
3474 @example
3475 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3476 @end example
3477
3478 @item
3479 Using ClubFritz12 sofa file and bigger radius with small rotation:
3480 @example
3481 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3482 @end example
3483
3484 @item
3485 Similar as above but with custom speaker positions for front left, front right, back left and back right
3486 and also with custom gain:
3487 @example
3488 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
3489 @end example
3490 @end itemize
3491
3492 @section stereotools
3493
3494 This filter has some handy utilities to manage stereo signals, for converting
3495 M/S stereo recordings to L/R signal while having control over the parameters
3496 or spreading the stereo image of master track.
3497
3498 The filter accepts the following options:
3499
3500 @table @option
3501 @item level_in
3502 Set input level before filtering for both channels. Defaults is 1.
3503 Allowed range is from 0.015625 to 64.
3504
3505 @item level_out
3506 Set output level after filtering for both channels. Defaults is 1.
3507 Allowed range is from 0.015625 to 64.
3508
3509 @item balance_in
3510 Set input balance between both channels. Default is 0.
3511 Allowed range is from -1 to 1.
3512
3513 @item balance_out
3514 Set output balance between both channels. Default is 0.
3515 Allowed range is from -1 to 1.
3516
3517 @item softclip
3518 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3519 clipping. Disabled by default.
3520
3521 @item mutel
3522 Mute the left channel. Disabled by default.
3523
3524 @item muter
3525 Mute the right channel. Disabled by default.
3526
3527 @item phasel
3528 Change the phase of the left channel. Disabled by default.
3529
3530 @item phaser
3531 Change the phase of the right channel. Disabled by default.
3532
3533 @item mode
3534 Set stereo mode. Available values are:
3535
3536 @table @samp
3537 @item lr>lr
3538 Left/Right to Left/Right, this is default.
3539
3540 @item lr>ms
3541 Left/Right to Mid/Side.
3542
3543 @item ms>lr
3544 Mid/Side to Left/Right.
3545
3546 @item lr>ll
3547 Left/Right to Left/Left.
3548
3549 @item lr>rr
3550 Left/Right to Right/Right.
3551
3552 @item lr>l+r
3553 Left/Right to Left + Right.
3554
3555 @item lr>rl
3556 Left/Right to Right/Left.
3557 @end table
3558
3559 @item slev
3560 Set level of side signal. Default is 1.
3561 Allowed range is from 0.015625 to 64.
3562
3563 @item sbal
3564 Set balance of side signal. Default is 0.
3565 Allowed range is from -1 to 1.
3566
3567 @item mlev
3568 Set level of the middle signal. Default is 1.
3569 Allowed range is from 0.015625 to 64.
3570
3571 @item mpan
3572 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3573
3574 @item base
3575 Set stereo base between mono and inversed channels. Default is 0.
3576 Allowed range is from -1 to 1.
3577
3578 @item delay
3579 Set delay in milliseconds how much to delay left from right channel and
3580 vice versa. Default is 0. Allowed range is from -20 to 20.
3581
3582 @item sclevel
3583 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3584
3585 @item phase
3586 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3587 @end table
3588
3589 @subsection Examples
3590
3591 @itemize
3592 @item
3593 Apply karaoke like effect:
3594 @example
3595 stereotools=mlev=0.015625
3596 @end example
3597
3598 @item
3599 Convert M/S signal to L/R:
3600 @example
3601 "stereotools=mode=ms>lr"
3602 @end example
3603 @end itemize
3604
3605 @section stereowiden
3606
3607 This filter enhance the stereo effect by suppressing signal common to both
3608 channels and by delaying the signal of left into right and vice versa,
3609 thereby widening the stereo effect.
3610
3611 The filter accepts the following options:
3612
3613 @table @option
3614 @item delay
3615 Time in milliseconds of the delay of left signal into right and vice versa.
3616 Default is 20 milliseconds.
3617
3618 @item feedback
3619 Amount of gain in delayed signal into right and vice versa. Gives a delay
3620 effect of left signal in right output and vice versa which gives widening
3621 effect. Default is 0.3.
3622
3623 @item crossfeed
3624 Cross feed of left into right with inverted phase. This helps in suppressing
3625 the mono. If the value is 1 it will cancel all the signal common to both
3626 channels. Default is 0.3.
3627
3628 @item drymix
3629 Set level of input signal of original channel. Default is 0.8.
3630 @end table
3631
3632 @section treble
3633
3634 Boost or cut treble (upper) frequencies of the audio using a two-pole
3635 shelving filter with a response similar to that of a standard
3636 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3637
3638 The filter accepts the following options:
3639
3640 @table @option
3641 @item gain, g
3642 Give the gain at whichever is the lower of ~22 kHz and the
3643 Nyquist frequency. Its useful range is about -20 (for a large cut)
3644 to +20 (for a large boost). Beware of clipping when using a positive gain.
3645
3646 @item frequency, f
3647 Set the filter's central frequency and so can be used
3648 to extend or reduce the frequency range to be boosted or cut.
3649 The default value is @code{3000} Hz.
3650
3651 @item width_type
3652 Set method to specify band-width of filter.
3653 @table @option
3654 @item h
3655 Hz
3656 @item q
3657 Q-Factor
3658 @item o
3659 octave
3660 @item s
3661 slope
3662 @end table
3663
3664 @item width, w
3665 Determine how steep is the filter's shelf transition.
3666 @end table
3667
3668 @section tremolo
3669
3670 Sinusoidal amplitude modulation.
3671
3672 The filter accepts the following options:
3673
3674 @table @option
3675 @item f
3676 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3677 (20 Hz or lower) will result in a tremolo effect.
3678 This filter may also be used as a ring modulator by specifying
3679 a modulation frequency higher than 20 Hz.
3680 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3681
3682 @item d
3683 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3684 Default value is 0.5.
3685 @end table
3686
3687 @section vibrato
3688
3689 Sinusoidal phase modulation.
3690
3691 The filter accepts the following options:
3692
3693 @table @option
3694 @item f
3695 Modulation frequency in Hertz.
3696 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3697
3698 @item d
3699 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3700 Default value is 0.5.
3701 @end table
3702
3703 @section volume
3704
3705 Adjust the input audio volume.
3706
3707 It accepts the following parameters:
3708 @table @option
3709
3710 @item volume
3711 Set audio volume expression.
3712
3713 Output values are clipped to the maximum value.
3714
3715 The output audio volume is given by the relation:
3716 @example
3717 @var{output_volume} = @var{volume} * @var{input_volume}
3718 @end example
3719
3720 The default value for @var{volume} is "1.0".
3721
3722 @item precision
3723 This parameter represents the mathematical precision.
3724
3725 It determines which input sample formats will be allowed, which affects the
3726 precision of the volume scaling.
3727
3728 @table @option
3729 @item fixed
3730 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3731 @item float
3732 32-bit floating-point; this limits input sample format to FLT. (default)
3733 @item double
3734 64-bit floating-point; this limits input sample format to DBL.
3735 @end table
3736
3737 @item replaygain
3738 Choose the behaviour on encountering ReplayGain side data in input frames.
3739
3740 @table @option
3741 @item drop
3742 Remove ReplayGain side data, ignoring its contents (the default).
3743
3744 @item ignore
3745 Ignore ReplayGain side data, but leave it in the frame.
3746
3747 @item track
3748 Prefer the track gain, if present.
3749
3750 @item album
3751 Prefer the album gain, if present.
3752 @end table
3753
3754 @item replaygain_preamp
3755 Pre-amplification gain in dB to apply to the selected replaygain gain.
3756
3757 Default value for @var{replaygain_preamp} is 0.0.
3758
3759 @item eval
3760 Set when the volume expression is evaluated.
3761
3762 It accepts the following values:
3763 @table @samp
3764 @item once
3765 only evaluate expression once during the filter initialization, or
3766 when the @samp{volume} command is sent
3767
3768 @item frame
3769 evaluate expression for each incoming frame
3770 @end table
3771
3772 Default value is @samp{once}.
3773 @end table
3774
3775 The volume expression can contain the following parameters.
3776
3777 @table @option
3778 @item n
3779 frame number (starting at zero)
3780 @item nb_channels
3781 number of channels
3782 @item nb_consumed_samples
3783 number of samples consumed by the filter
3784 @item nb_samples
3785 number of samples in the current frame
3786 @item pos
3787 original frame position in the file
3788 @item pts
3789 frame PTS
3790 @item sample_rate
3791 sample rate
3792 @item startpts
3793 PTS at start of stream
3794 @item startt
3795 time at start of stream
3796 @item t
3797 frame time
3798 @item tb
3799 timestamp timebase
3800 @item volume
3801 last set volume value
3802 @end table
3803
3804 Note that when @option{eval} is set to @samp{once} only the
3805 @var{sample_rate} and @var{tb} variables are available, all other
3806 variables will evaluate to NAN.
3807
3808 @subsection Commands
3809
3810 This filter supports the following commands:
3811 @table @option
3812 @item volume
3813 Modify the volume expression.
3814 The command accepts the same syntax of the corresponding option.
3815
3816 If the specified expression is not valid, it is kept at its current
3817 value.
3818 @item replaygain_noclip
3819 Prevent clipping by limiting the gain applied.
3820
3821 Default value for @var{replaygain_noclip} is 1.
3822
3823 @end table
3824
3825 @subsection Examples
3826
3827 @itemize
3828 @item
3829 Halve the input audio volume:
3830 @example
3831 volume=volume=0.5
3832 volume=volume=1/2
3833 volume=volume=-6.0206dB
3834 @end example
3835
3836 In all the above example the named key for @option{volume} can be
3837 omitted, for example like in:
3838 @example
3839 volume=0.5
3840 @end example
3841
3842 @item
3843 Increase input audio power by 6 decibels using fixed-point precision:
3844 @example
3845 volume=volume=6dB:precision=fixed
3846 @end example
3847
3848 @item
3849 Fade volume after time 10 with an annihilation period of 5 seconds:
3850 @example
3851 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3852 @end example
3853 @end itemize
3854
3855 @section volumedetect
3856
3857 Detect the volume of the input video.
3858
3859 The filter has no parameters. The input is not modified. Statistics about
3860 the volume will be printed in the log when the input stream end is reached.
3861
3862 In particular it will show the mean volume (root mean square), maximum
3863 volume (on a per-sample basis), and the beginning of a histogram of the
3864 registered volume values (from the maximum value to a cumulated 1/1000 of
3865 the samples).
3866
3867 All volumes are in decibels relative to the maximum PCM value.
3868
3869 @subsection Examples
3870
3871 Here is an excerpt of the output:
3872 @example
3873 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3874 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3875 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3876 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3877 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3878 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3879 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3880 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3881 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3882 @end example
3883
3884 It means that:
3885 @itemize
3886 @item
3887 The mean square energy is approximately -27 dB, or 10^-2.7.
3888 @item
3889 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3890 @item
3891 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3892 @end itemize
3893
3894 In other words, raising the volume by +4 dB does not cause any clipping,
3895 raising it by +5 dB causes clipping for 6 samples, etc.
3896
3897 @c man end AUDIO FILTERS
3898
3899 @chapter Audio Sources
3900 @c man begin AUDIO SOURCES
3901
3902 Below is a description of the currently available audio sources.
3903
3904 @section abuffer
3905
3906 Buffer audio frames, and make them available to the filter chain.
3907
3908 This source is mainly intended for a programmatic use, in particular
3909 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3910
3911 It accepts the following parameters:
3912 @table @option
3913
3914 @item time_base
3915 The timebase which will be used for timestamps of submitted frames. It must be
3916 either a floating-point number or in @var{numerator}/@var{denominator} form.
3917
3918 @item sample_rate
3919 The sample rate of the incoming audio buffers.
3920
3921 @item sample_fmt
3922 The sample format of the incoming audio buffers.
3923 Either a sample format name or its corresponding integer representation from
3924 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3925
3926 @item channel_layout
3927 The channel layout of the incoming audio buffers.
3928 Either a channel layout name from channel_layout_map in
3929 @file{libavutil/channel_layout.c} or its corresponding integer representation
3930 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3931
3932 @item channels
3933 The number of channels of the incoming audio buffers.
3934 If both @var{channels} and @var{channel_layout} are specified, then they
3935 must be consistent.
3936
3937 @end table
3938
3939 @subsection Examples
3940
3941 @example
3942 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3943 @end example
3944
3945 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3946 Since the sample format with name "s16p" corresponds to the number
3947 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3948 equivalent to:
3949 @example
3950 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3951 @end example
3952
3953 @section aevalsrc
3954
3955 Generate an audio signal specified by an expression.
3956
3957 This source accepts in input one or more expressions (one for each
3958 channel), which are evaluated and used to generate a corresponding
3959 audio signal.
3960
3961 This source accepts the following options:
3962
3963 @table @option
3964 @item exprs
3965 Set the '|'-separated expressions list for each separate channel. In case the
3966 @option{channel_layout} option is not specified, the selected channel layout
3967 depends on the number of provided expressions. Otherwise the last
3968 specified expression is applied to the remaining output channels.
3969
3970 @item channel_layout, c
3971 Set the channel layout. The number of channels in the specified layout
3972 must be equal to the number of specified expressions.
3973
3974 @item duration, d
3975 Set the minimum duration of the sourced audio. See
3976 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3977 for the accepted syntax.
3978 Note that the resulting duration may be greater than the specified
3979 duration, as the generated audio is always cut at the end of a
3980 complete frame.
3981
3982 If not specified, or the expressed duration is negative, the audio is
3983 supposed to be generated forever.
3984
3985 @item nb_samples, n
3986 Set the number of samples per channel per each output frame,
3987 default to 1024.
3988
3989 @item sample_rate, s
3990 Specify the sample rate, default to 44100.
3991 @end table
3992
3993 Each expression in @var{exprs} can contain the following constants:
3994
3995 @table @option
3996 @item n
3997 number of the evaluated sample, starting from 0
3998
3999 @item t
4000 time of the evaluated sample expressed in seconds, starting from 0
4001
4002 @item s
4003 sample rate
4004
4005 @end table
4006
4007 @subsection Examples
4008
4009 @itemize
4010 @item
4011 Generate silence:
4012 @example
4013 aevalsrc=0
4014 @end example
4015
4016 @item
4017 Generate a sin signal with frequency of 440 Hz, set sample rate to
4018 8000 Hz:
4019 @example
4020 aevalsrc="sin(440*2*PI*t):s=8000"
4021 @end example
4022
4023 @item
4024 Generate a two channels signal, specify the channel layout (Front
4025 Center + Back Center) explicitly:
4026 @example
4027 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4028 @end example
4029
4030 @item
4031 Generate white noise:
4032 @example
4033 aevalsrc="-2+random(0)"
4034 @end example
4035
4036 @item
4037 Generate an amplitude modulated signal:
4038 @example
4039 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4040 @end example
4041
4042 @item
4043 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4044 @example
4045 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4046 @end example
4047
4048 @end itemize
4049
4050 @section anullsrc
4051
4052 The null audio source, return unprocessed audio frames. It is mainly useful
4053 as a template and to be employed in analysis / debugging tools, or as
4054 the source for filters which ignore the input data (for example the sox
4055 synth filter).
4056
4057 This source accepts the following options:
4058
4059 @table @option
4060
4061 @item channel_layout, cl
4062
4063 Specifies the channel layout, and can be either an integer or a string
4064 representing a channel layout. The default value of @var{channel_layout}
4065 is "stereo".
4066
4067 Check the channel_layout_map definition in
4068 @file{libavutil/channel_layout.c} for the mapping between strings and
4069 channel layout values.
4070
4071 @item sample_rate, r
4072 Specifies the sample rate, and defaults to 44100.
4073
4074 @item nb_samples, n
4075 Set the number of samples per requested frames.
4076
4077 @end table
4078
4079 @subsection Examples
4080
4081 @itemize
4082 @item
4083 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4084 @example
4085 anullsrc=r=48000:cl=4
4086 @end example
4087
4088 @item
4089 Do the same operation with a more obvious syntax:
4090 @example
4091 anullsrc=r=48000:cl=mono
4092 @end example
4093 @end itemize
4094
4095 All the parameters need to be explicitly defined.
4096
4097 @section flite
4098
4099 Synthesize a voice utterance using the libflite library.
4100
4101 To enable compilation of this filter you need to configure FFmpeg with
4102 @code{--enable-libflite}.
4103
4104 Note that the flite library is not thread-safe.
4105
4106 The filter accepts the following options:
4107
4108 @table @option
4109
4110 @item list_voices
4111 If set to 1, list the names of the available voices and exit
4112 immediately. Default value is 0.
4113
4114 @item nb_samples, n
4115 Set the maximum number of samples per frame. Default value is 512.
4116
4117 @item textfile
4118 Set the filename containing the text to speak.
4119
4120 @item text
4121 Set the text to speak.
4122
4123 @item voice, v
4124 Set the voice to use for the speech synthesis. Default value is
4125 @code{kal}. See also the @var{list_voices} option.
4126 @end table
4127
4128 @subsection Examples
4129
4130 @itemize
4131 @item
4132 Read from file @file{speech.txt}, and synthesize the text using the
4133 standard flite voice:
4134 @example
4135 flite=textfile=speech.txt
4136 @end example
4137
4138 @item
4139 Read the specified text selecting the @code{slt} voice:
4140 @example
4141 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4142 @end example
4143
4144 @item
4145 Input text to ffmpeg:
4146 @example
4147 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4148 @end example
4149
4150 @item
4151 Make @file{ffplay} speak the specified text, using @code{flite} and
4152 the @code{lavfi} device:
4153 @example
4154 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4155 @end example
4156 @end itemize
4157
4158 For more information about libflite, check:
4159 @url{http://www.speech.cs.cmu.edu/flite/}
4160
4161 @section anoisesrc
4162
4163 Generate a noise audio signal.
4164
4165 The filter accepts the following options:
4166
4167 @table @option
4168 @item sample_rate, r
4169 Specify the sample rate. Default value is 48000 Hz.
4170
4171 @item amplitude, a
4172 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4173 is 1.0.
4174
4175 @item duration, d
4176 Specify the duration of the generated audio stream. Not specifying this option
4177 results in noise with an infinite length.
4178
4179 @item color, colour, c
4180 Specify the color of noise. Available noise colors are white, pink, and brown.
4181 Default color is white.
4182
4183 @item seed, s
4184 Specify a value used to seed the PRNG.
4185
4186 @item nb_samples, n
4187 Set the number of samples per each output frame, default is 1024.
4188 @end table
4189
4190 @subsection Examples
4191
4192 @itemize
4193
4194 @item
4195 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4196 @example
4197 anoisesrc=d=60:c=pink:r=44100:a=0.5
4198 @end example
4199 @end itemize
4200
4201 @section sine
4202
4203 Generate an audio signal made of a sine wave with amplitude 1/8.
4204
4205 The audio signal is bit-exact.
4206
4207 The filter accepts the following options:
4208
4209 @table @option
4210
4211 @item frequency, f
4212 Set the carrier frequency. Default is 440 Hz.
4213
4214 @item beep_factor, b
4215 Enable a periodic beep every second with frequency @var{beep_factor} times
4216 the carrier frequency. Default is 0, meaning the beep is disabled.
4217
4218 @item sample_rate, r
4219 Specify the sample rate, default is 44100.
4220
4221 @item duration, d
4222 Specify the duration of the generated audio stream.
4223
4224 @item samples_per_frame
4225 Set the number of samples per output frame.
4226
4227 The expression can contain the following constants:
4228
4229 @table @option
4230 @item n
4231 The (sequential) number of the output audio frame, starting from 0.
4232
4233 @item pts
4234 The PTS (Presentation TimeStamp) of the output audio frame,
4235 expressed in @var{TB} units.
4236
4237 @item t
4238 The PTS of the output audio frame, expressed in seconds.
4239
4240 @item TB
4241 The timebase of the output audio frames.
4242 @end table
4243
4244 Default is @code{1024}.
4245 @end table
4246
4247 @subsection Examples
4248
4249 @itemize
4250
4251 @item
4252 Generate a simple 440 Hz sine wave:
4253 @example
4254 sine
4255 @end example
4256
4257 @item
4258 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4259 @example
4260 sine=220:4:d=5
4261 sine=f=220:b=4:d=5
4262 sine=frequency=220:beep_factor=4:duration=5
4263 @end example
4264
4265 @item
4266 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4267 pattern:
4268 @example
4269 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4270 @end example
4271 @end itemize
4272
4273 @c man end AUDIO SOURCES
4274
4275 @chapter Audio Sinks
4276 @c man begin AUDIO SINKS
4277
4278 Below is a description of the currently available audio sinks.
4279
4280 @section abuffersink
4281
4282 Buffer audio frames, and make them available to the end of filter chain.
4283
4284 This sink is mainly intended for programmatic use, in particular
4285 through the interface defined in @file{libavfilter/buffersink.h}
4286 or the options system.
4287
4288 It accepts a pointer to an AVABufferSinkContext structure, which
4289 defines the incoming buffers' formats, to be passed as the opaque
4290 parameter to @code{avfilter_init_filter} for initialization.
4291 @section anullsink
4292
4293 Null audio sink; do absolutely nothing with the input audio. It is
4294 mainly useful as a template and for use in analysis / debugging
4295 tools.
4296
4297 @c man end AUDIO SINKS
4298
4299 @chapter Video Filters
4300 @c man begin VIDEO FILTERS
4301
4302 When you configure your FFmpeg build, you can disable any of the
4303 existing filters using @code{--disable-filters}.
4304 The configure output will show the video filters included in your
4305 build.
4306
4307 Below is a description of the currently available video filters.
4308
4309 @section alphaextract
4310
4311 Extract the alpha component from the input as a grayscale video. This
4312 is especially useful with the @var{alphamerge} filter.
4313
4314 @section alphamerge
4315
4316 Add or replace the alpha component of the primary input with the
4317 grayscale value of a second input. This is intended for use with
4318 @var{alphaextract} to allow the transmission or storage of frame
4319 sequences that have alpha in a format that doesn't support an alpha
4320 channel.
4321
4322 For example, to reconstruct full frames from a normal YUV-encoded video
4323 and a separate video created with @var{alphaextract}, you might use:
4324 @example
4325 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4326 @end example
4327
4328 Since this filter is designed for reconstruction, it operates on frame
4329 sequences without considering timestamps, and terminates when either
4330 input reaches end of stream. This will cause problems if your encoding
4331 pipeline drops frames. If you're trying to apply an image as an
4332 overlay to a video stream, consider the @var{overlay} filter instead.
4333
4334 @section ass
4335
4336 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4337 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4338 Substation Alpha) subtitles files.
4339
4340 This filter accepts the following option in addition to the common options from
4341 the @ref{subtitles} filter:
4342
4343 @table @option
4344 @item shaping
4345 Set the shaping engine
4346
4347 Available values are:
4348 @table @samp
4349 @item auto
4350 The default libass shaping engine, which is the best available.
4351 @item simple
4352 Fast, font-agnostic shaper that can do only substitutions
4353 @item complex
4354 Slower shaper using OpenType for substitutions and positioning
4355 @end table
4356
4357 The default is @code{auto}.
4358 @end table
4359
4360 @section atadenoise
4361 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4362
4363 The filter accepts the following options:
4364
4365 @table @option
4366 @item 0a
4367 Set threshold A for 1st plane. Default is 0.02.
4368 Valid range is 0 to 0.3.
4369
4370 @item 0b
4371 Set threshold B for 1st plane. Default is 0.04.
4372 Valid range is 0 to 5.
4373
4374 @item 1a
4375 Set threshold A for 2nd plane. Default is 0.02.
4376 Valid range is 0 to 0.3.
4377
4378 @item 1b
4379 Set threshold B for 2nd plane. Default is 0.04.
4380 Valid range is 0 to 5.
4381
4382 @item 2a
4383 Set threshold A for 3rd plane. Default is 0.02.
4384 Valid range is 0 to 0.3.
4385
4386 @item 2b
4387 Set threshold B for 3rd plane. Default is 0.04.
4388 Valid range is 0 to 5.
4389
4390 Threshold A is designed to react on abrupt changes in the input signal and
4391 threshold B is designed to react on continuous changes in the input signal.
4392
4393 @item s
4394 Set number of frames filter will use for averaging. Default is 33. Must be odd
4395 number in range [5, 129].
4396
4397 @item p
4398 Set what planes of frame filter will use for averaging. Default is all.
4399 @end table
4400
4401 @section avgblur
4402
4403 Apply average blur filter.
4404
4405 The filter accepts the following options:
4406
4407 @table @option
4408 @item sizeX
4409 Set horizontal kernel size.
4410
4411 @item planes
4412 Set which planes to filter. By default all planes are filtered.
4413
4414 @item sizeY
4415 Set vertical kernel size, if zero it will be same as @code{sizeX}.
4416 Default is @code{0}.
4417 @end table
4418
4419 @section bbox
4420
4421 Compute the bounding box for the non-black pixels in the input frame
4422 luminance plane.
4423
4424 This filter computes the bounding box containing all the pixels with a
4425 luminance value greater than the minimum allowed value.
4426 The parameters describing the bounding box are printed on the filter
4427 log.
4428
4429 The filter accepts the following option:
4430
4431 @table @option
4432 @item min_val
4433 Set the minimal luminance value. Default is @code{16}.
4434 @end table
4435
4436 @section bitplanenoise
4437
4438 Show and measure bit plane noise.
4439
4440 The filter accepts the following options:
4441
4442 @table @option
4443 @item bitplane
4444 Set which plane to analyze. Default is @code{1}.
4445
4446 @item filter
4447 Filter out noisy pixels from @code{bitplane} set above.
4448 Default is disabled.
4449 @end table
4450
4451 @section blackdetect
4452
4453 Detect video intervals that are (almost) completely black. Can be
4454 useful to detect chapter transitions, commercials, or invalid
4455 recordings. Output lines contains the time for the start, end and
4456 duration of the detected black interval expressed in seconds.
4457
4458 In order to display the output lines, you need to set the loglevel at
4459 least to the AV_LOG_INFO value.
4460
4461 The filter accepts the following options:
4462
4463 @table @option
4464 @item black_min_duration, d
4465 Set the minimum detected black duration expressed in seconds. It must
4466 be a non-negative floating point number.
4467
4468 Default value is 2.0.
4469
4470 @item picture_black_ratio_th, pic_th
4471 Set the threshold for considering a picture "black".
4472 Express the minimum value for the ratio:
4473 @example
4474 @var{nb_black_pixels} / @var{nb_pixels}
4475 @end example
4476
4477 for which a picture is considered black.
4478 Default value is 0.98.
4479
4480 @item pixel_black_th, pix_th
4481 Set the threshold for considering a pixel "black".
4482
4483 The threshold expresses the maximum pixel luminance value for which a
4484 pixel is considered "black". The provided value is scaled according to
4485 the following equation:
4486 @example
4487 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4488 @end example
4489
4490 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4491 the input video format, the range is [0-255] for YUV full-range
4492 formats and [16-235] for YUV non full-range formats.
4493
4494 Default value is 0.10.
4495 @end table
4496
4497 The following example sets the maximum pixel threshold to the minimum
4498 value, and detects only black intervals of 2 or more seconds:
4499 @example
4500 blackdetect=d=2:pix_th=0.00
4501 @end example
4502
4503 @section blackframe
4504
4505 Detect frames that are (almost) completely black. Can be useful to
4506 detect chapter transitions or commercials. Output lines consist of
4507 the frame number of the detected frame, the percentage of blackness,
4508 the position in the file if known or -1 and the timestamp in seconds.
4509
4510 In order to display the output lines, you need to set the loglevel at
4511 least to the AV_LOG_INFO value.
4512
4513 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
4514 The value represents the percentage of pixels in the picture that
4515 are below the threshold value.
4516
4517 It accepts the following parameters:
4518
4519 @table @option
4520
4521 @item amount
4522 The percentage of the pixels that have to be below the threshold; it defaults to
4523 @code{98}.
4524
4525 @item threshold, thresh
4526 The threshold below which a pixel value is considered black; it defaults to
4527 @code{32}.
4528
4529 @end table
4530
4531 @section blend, tblend
4532
4533 Blend two video frames into each other.
4534
4535 The @code{blend} filter takes two input streams and outputs one
4536 stream, the first input is the "top" layer and second input is
4537 "bottom" layer.  By default, the output terminates when the longest input terminates.
4538
4539 The @code{tblend} (time blend) filter takes two consecutive frames
4540 from one single stream, and outputs the result obtained by blending
4541 the new frame on top of the old frame.
4542
4543 A description of the accepted options follows.
4544
4545 @table @option
4546 @item c0_mode
4547 @item c1_mode
4548 @item c2_mode
4549 @item c3_mode
4550 @item all_mode
4551 Set blend mode for specific pixel component or all pixel components in case
4552 of @var{all_mode}. Default value is @code{normal}.
4553
4554 Available values for component modes are:
4555 @table @samp
4556 @item addition
4557 @item addition128
4558 @item and
4559 @item average
4560 @item burn
4561 @item darken
4562 @item difference
4563 @item difference128
4564 @item divide
4565 @item dodge
4566 @item freeze
4567 @item exclusion
4568 @item glow
4569 @item hardlight
4570 @item hardmix
4571 @item heat
4572 @item lighten
4573 @item linearlight
4574 @item multiply
4575 @item multiply128
4576 @item negation
4577 @item normal
4578 @item or
4579 @item overlay
4580 @item phoenix
4581 @item pinlight
4582 @item reflect
4583 @item screen
4584 @item softlight
4585 @item subtract
4586 @item vividlight
4587 @item xor
4588 @end table
4589
4590 @item c0_opacity
4591 @item c1_opacity
4592 @item c2_opacity
4593 @item c3_opacity
4594 @item all_opacity
4595 Set blend opacity for specific pixel component or all pixel components in case
4596 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4597
4598 @item c0_expr
4599 @item c1_expr
4600 @item c2_expr
4601 @item c3_expr
4602 @item all_expr
4603 Set blend expression for specific pixel component or all pixel components in case
4604 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4605
4606 The expressions can use the following variables:
4607
4608 @table @option
4609 @item N
4610 The sequential number of the filtered frame, starting from @code{0}.
4611
4612 @item X
4613 @item Y
4614 the coordinates of the current sample
4615
4616 @item W
4617 @item H
4618 the width and height of currently filtered plane
4619
4620 @item SW
4621 @item SH
4622 Width and height scale depending on the currently filtered plane. It is the
4623 ratio between the corresponding luma plane number of pixels and the current
4624 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4625 @code{0.5,0.5} for chroma planes.
4626
4627 @item T
4628 Time of the current frame, expressed in seconds.
4629
4630 @item TOP, A
4631 Value of pixel component at current location for first video frame (top layer).
4632
4633 @item BOTTOM, B
4634 Value of pixel component at current location for second video frame (bottom layer).
4635 @end table
4636
4637 @item shortest
4638 Force termination when the shortest input terminates. Default is
4639 @code{0}. This option is only defined for the @code{blend} filter.
4640
4641 @item repeatlast
4642 Continue applying the last bottom frame after the end of the stream. A value of
4643 @code{0} disable the filter after the last frame of the bottom layer is reached.
4644 Default is @code{1}. This option is only defined for the @code{blend} filter.
4645 @end table
4646
4647 @subsection Examples
4648
4649 @itemize
4650 @item
4651 Apply transition from bottom layer to top layer in first 10 seconds:
4652 @example
4653 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4654 @end example
4655
4656 @item
4657 Apply 1x1 checkerboard effect:
4658 @example
4659 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4660 @end example
4661
4662 @item
4663 Apply uncover left effect:
4664 @example
4665 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4666 @end example
4667
4668 @item
4669 Apply uncover down effect:
4670 @example
4671 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4672 @end example
4673
4674 @item
4675 Apply uncover up-left effect:
4676 @example
4677 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4678 @end example
4679
4680 @item
4681 Split diagonally video and shows top and bottom layer on each side:
4682 @example
4683 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4684 @end example
4685
4686 @item
4687 Display differences between the current and the previous frame:
4688 @example
4689 tblend=all_mode=difference128
4690 @end example
4691 @end itemize
4692
4693 @section boxblur
4694
4695 Apply a boxblur algorithm to the input video.
4696
4697 It accepts the following parameters:
4698
4699 @table @option
4700
4701 @item luma_radius, lr
4702 @item luma_power, lp
4703 @item chroma_radius, cr
4704 @item chroma_power, cp
4705 @item alpha_radius, ar
4706 @item alpha_power, ap
4707
4708 @end table
4709
4710 A description of the accepted options follows.
4711
4712 @table @option
4713 @item luma_radius, lr
4714 @item chroma_radius, cr
4715 @item alpha_radius, ar
4716 Set an expression for the box radius in pixels used for blurring the
4717 corresponding input plane.
4718
4719 The radius value must be a non-negative number, and must not be
4720 greater than the value of the expression @code{min(w,h)/2} for the
4721 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4722 planes.
4723
4724 Default value for @option{luma_radius} is "2". If not specified,
4725 @option{chroma_radius} and @option{alpha_radius} default to the
4726 corresponding value set for @option{luma_radius}.
4727
4728 The expressions can contain the following constants:
4729 @table @option
4730 @item w
4731 @item h
4732 The input width and height in pixels.
4733
4734 @item cw
4735 @item ch
4736 The input chroma image width and height in pixels.
4737
4738 @item hsub
4739 @item vsub
4740 The horizontal and vertical chroma subsample values. For example, for the
4741 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4742 @end table
4743
4744 @item luma_power, lp
4745 @item chroma_power, cp
4746 @item alpha_power, ap
4747 Specify how many times the boxblur filter is applied to the
4748 corresponding plane.
4749
4750 Default value for @option{luma_power} is 2. If not specified,
4751 @option{chroma_power} and @option{alpha_power} default to the
4752 corresponding value set for @option{luma_power}.
4753
4754 A value of 0 will disable the effect.
4755 @end table
4756
4757 @subsection Examples
4758
4759 @itemize
4760 @item
4761 Apply a boxblur filter with the luma, chroma, and alpha radii
4762 set to 2:
4763 @example
4764 boxblur=luma_radius=2:luma_power=1
4765 boxblur=2:1
4766 @end example
4767
4768 @item
4769 Set the luma radius to 2, and alpha and chroma radius to 0:
4770 @example
4771 boxblur=2:1:cr=0:ar=0
4772 @end example
4773
4774 @item
4775 Set the luma and chroma radii to a fraction of the video dimension:
4776 @example
4777 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4778 @end example
4779 @end itemize
4780
4781 @section bwdif
4782
4783 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4784 Deinterlacing Filter").
4785
4786 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4787 interpolation algorithms.
4788 It accepts the following parameters:
4789
4790 @table @option
4791 @item mode
4792 The interlacing mode to adopt. It accepts one of the following values:
4793
4794 @table @option
4795 @item 0, send_frame
4796 Output one frame for each frame.
4797 @item 1, send_field
4798 Output one frame for each field.
4799 @end table
4800
4801 The default value is @code{send_field}.
4802
4803 @item parity
4804 The picture field parity assumed for the input interlaced video. It accepts one
4805 of the following values:
4806
4807 @table @option
4808 @item 0, tff
4809 Assume the top field is first.
4810 @item 1, bff
4811 Assume the bottom field is first.
4812 @item -1, auto
4813 Enable automatic detection of field parity.
4814 @end table
4815
4816 The default value is @code{auto}.
4817 If the interlacing is unknown or the decoder does not export this information,
4818 top field first will be assumed.
4819
4820 @item deint
4821 Specify which frames to deinterlace. Accept one of the following
4822 values:
4823
4824 @table @option
4825 @item 0, all
4826 Deinterlace all frames.
4827 @item 1, interlaced
4828 Only deinterlace frames marked as interlaced.
4829 @end table
4830
4831 The default value is @code{all}.
4832 @end table
4833
4834 @section chromakey
4835 YUV colorspace color/chroma keying.
4836
4837 The filter accepts the following options:
4838
4839 @table @option
4840 @item color
4841 The color which will be replaced with transparency.
4842
4843 @item similarity
4844 Similarity percentage with the key color.
4845
4846 0.01 matches only the exact key color, while 1.0 matches everything.
4847
4848 @item blend
4849 Blend percentage.
4850
4851 0.0 makes pixels either fully transparent, or not transparent at all.
4852
4853 Higher values result in semi-transparent pixels, with a higher transparency
4854 the more similar the pixels color is to the key color.
4855
4856 @item yuv
4857 Signals that the color passed is already in YUV instead of RGB.
4858
4859 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4860 This can be used to pass exact YUV values as hexadecimal numbers.
4861 @end table
4862
4863 @subsection Examples
4864
4865 @itemize
4866 @item
4867 Make every green pixel in the input image transparent:
4868 @example
4869 ffmpeg -i input.png -vf chromakey=green out.png
4870 @end example
4871
4872 @item
4873 Overlay a greenscreen-video on top of a static black background.
4874 @example
4875 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
4876 @end example
4877 @end itemize
4878
4879 @section ciescope
4880
4881 Display CIE color diagram with pixels overlaid onto it.
4882
4883 The filter accepts the following options:
4884
4885 @table @option
4886 @item system
4887 Set color system.
4888
4889 @table @samp
4890 @item ntsc, 470m
4891 @item ebu, 470bg
4892 @item smpte
4893 @item 240m
4894 @item apple
4895 @item widergb
4896 @item cie1931
4897 @item rec709, hdtv
4898 @item uhdtv, rec2020
4899 @end table
4900
4901 @item cie
4902 Set CIE system.
4903
4904 @table @samp
4905 @item xyy
4906 @item ucs
4907 @item luv
4908 @end table
4909
4910 @item gamuts
4911 Set what gamuts to draw.
4912
4913 See @code{system} option for available values.
4914
4915 @item size, s
4916 Set ciescope size, by default set to 512.
4917
4918 @item intensity, i
4919 Set intensity used to map input pixel values to CIE diagram.
4920
4921 @item contrast
4922 Set contrast used to draw tongue colors that are out of active color system gamut.
4923
4924 @item corrgamma
4925 Correct gamma displayed on scope, by default enabled.
4926
4927 @item showwhite
4928 Show white point on CIE diagram, by default disabled.
4929
4930 @item gamma
4931 Set input gamma. Used only with XYZ input color space.
4932 @end table
4933
4934 @section codecview
4935
4936 Visualize information exported by some codecs.
4937
4938 Some codecs can export information through frames using side-data or other
4939 means. For example, some MPEG based codecs export motion vectors through the
4940 @var{export_mvs} flag in the codec @option{flags2} option.
4941
4942 The filter accepts the following option:
4943
4944 @table @option
4945 @item mv
4946 Set motion vectors to visualize.
4947
4948 Available flags for @var{mv} are:
4949
4950 @table @samp
4951 @item pf
4952 forward predicted MVs of P-frames
4953 @item bf
4954 forward predicted MVs of B-frames
4955 @item bb
4956 backward predicted MVs of B-frames
4957 @end table
4958
4959 @item qp
4960 Display quantization parameters using the chroma planes.
4961
4962 @item mv_type, mvt
4963 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
4964
4965 Available flags for @var{mv_type} are:
4966
4967 @table @samp
4968 @item fp
4969 forward predicted MVs
4970 @item bp
4971 backward predicted MVs
4972 @end table
4973
4974 @item frame_type, ft
4975 Set frame type to visualize motion vectors of.
4976
4977 Available flags for @var{frame_type} are:
4978
4979 @table @samp
4980 @item if
4981 intra-coded frames (I-frames)
4982 @item pf
4983 predicted frames (P-frames)
4984 @item bf
4985 bi-directionally predicted frames (B-frames)
4986 @end table
4987 @end table
4988
4989 @subsection Examples
4990
4991 @itemize
4992 @item
4993 Visualize forward predicted MVs of all frames using @command{ffplay}:
4994 @example
4995 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
4996 @end example
4997
4998 @item
4999 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5000 @example
5001 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5002 @end example
5003 @end itemize
5004
5005 @section colorbalance
5006 Modify intensity of primary colors (red, green and blue) of input frames.
5007
5008 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5009 regions for the red-cyan, green-magenta or blue-yellow balance.
5010
5011 A positive adjustment value shifts the balance towards the primary color, a negative
5012 value towards the complementary color.
5013
5014 The filter accepts the following options:
5015
5016 @table @option
5017 @item rs
5018 @item gs
5019 @item bs
5020 Adjust red, green and blue shadows (darkest pixels).
5021
5022 @item rm
5023 @item gm
5024 @item bm
5025 Adjust red, green and blue midtones (medium pixels).
5026
5027 @item rh
5028 @item gh
5029 @item bh
5030 Adjust red, green and blue highlights (brightest pixels).
5031
5032 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5033 @end table
5034
5035 @subsection Examples
5036
5037 @itemize
5038 @item
5039 Add red color cast to shadows:
5040 @example
5041 colorbalance=rs=.3
5042 @end example
5043 @end itemize
5044
5045 @section colorkey
5046 RGB colorspace color keying.
5047
5048 The filter accepts the following options:
5049
5050 @table @option
5051 @item color
5052 The color which will be replaced with transparency.
5053
5054 @item similarity
5055 Similarity percentage with the key color.
5056
5057 0.01 matches only the exact key color, while 1.0 matches everything.
5058
5059 @item blend
5060 Blend percentage.
5061
5062 0.0 makes pixels either fully transparent, or not transparent at all.
5063
5064 Higher values result in semi-transparent pixels, with a higher transparency
5065 the more similar the pixels color is to the key color.
5066 @end table
5067
5068 @subsection Examples
5069
5070 @itemize
5071 @item
5072 Make every green pixel in the input image transparent:
5073 @example
5074 ffmpeg -i input.png -vf colorkey=green out.png
5075 @end example
5076
5077 @item
5078 Overlay a greenscreen-video on top of a static background image.
5079 @example
5080 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
5081 @end example
5082 @end itemize
5083
5084 @section colorlevels
5085
5086 Adjust video input frames using levels.
5087
5088 The filter accepts the following options:
5089
5090 @table @option
5091 @item rimin
5092 @item gimin
5093 @item bimin
5094 @item aimin
5095 Adjust red, green, blue and alpha input black point.
5096 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5097
5098 @item rimax
5099 @item gimax
5100 @item bimax
5101 @item aimax
5102 Adjust red, green, blue and alpha input white point.
5103 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5104
5105 Input levels are used to lighten highlights (bright tones), darken shadows
5106 (dark tones), change the balance of bright and dark tones.
5107
5108 @item romin
5109 @item gomin
5110 @item bomin
5111 @item aomin
5112 Adjust red, green, blue and alpha output black point.
5113 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5114
5115 @item romax
5116 @item gomax
5117 @item bomax
5118 @item aomax
5119 Adjust red, green, blue and alpha output white point.
5120 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5121
5122 Output levels allows manual selection of a constrained output level range.
5123 @end table
5124
5125 @subsection Examples
5126
5127 @itemize
5128 @item
5129 Make video output darker:
5130 @example
5131 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5132 @end example
5133
5134 @item
5135 Increase contrast:
5136 @example
5137 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5138 @end example
5139
5140 @item
5141 Make video output lighter:
5142 @example
5143 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5144 @end example
5145
5146 @item
5147 Increase brightness:
5148 @example
5149 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5150 @end example
5151 @end itemize
5152
5153 @section colorchannelmixer
5154
5155 Adjust video input frames by re-mixing color channels.
5156
5157 This filter modifies a color channel by adding the values associated to
5158 the other channels of the same pixels. For example if the value to
5159 modify is red, the output value will be:
5160 @example
5161 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5162 @end example
5163
5164 The filter accepts the following options:
5165
5166 @table @option
5167 @item rr
5168 @item rg
5169 @item rb
5170 @item ra
5171 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5172 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5173
5174 @item gr
5175 @item gg
5176 @item gb
5177 @item ga
5178 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5179 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5180
5181 @item br
5182 @item bg
5183 @item bb
5184 @item ba
5185 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5186 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5187
5188 @item ar
5189 @item ag
5190 @item ab
5191 @item aa
5192 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5193 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5194
5195 Allowed ranges for options are @code{[-2.0, 2.0]}.
5196 @end table
5197
5198 @subsection Examples
5199
5200 @itemize
5201 @item
5202 Convert source to grayscale:
5203 @example
5204 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5205 @end example
5206 @item
5207 Simulate sepia tones:
5208 @example
5209 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5210 @end example
5211 @end itemize
5212
5213 @section colormatrix
5214
5215 Convert color matrix.
5216
5217 The filter accepts the following options:
5218
5219 @table @option
5220 @item src
5221 @item dst
5222 Specify the source and destination color matrix. Both values must be
5223 specified.
5224
5225 The accepted values are:
5226 @table @samp
5227 @item bt709
5228 BT.709
5229
5230 @item fcc
5231 FCC
5232
5233 @item bt601
5234 BT.601
5235
5236 @item bt470
5237 BT.470
5238
5239 @item bt470bg
5240 BT.470BG
5241
5242 @item smpte170m
5243 SMPTE-170M
5244
5245 @item smpte240m
5246 SMPTE-240M
5247
5248 @item bt2020
5249 BT.2020
5250 @end table
5251 @end table
5252
5253 For example to convert from BT.601 to SMPTE-240M, use the command:
5254 @example
5255 colormatrix=bt601:smpte240m
5256 @end example
5257
5258 @section colorspace
5259
5260 Convert colorspace, transfer characteristics or color primaries.
5261 Input video needs to have an even size.
5262
5263 The filter accepts the following options:
5264
5265 @table @option
5266 @anchor{all}
5267 @item all
5268 Specify all color properties at once.
5269
5270 The accepted values are:
5271 @table @samp
5272 @item bt470m
5273 BT.470M
5274
5275 @item bt470bg
5276 BT.470BG
5277
5278 @item bt601-6-525
5279 BT.601-6 525
5280
5281 @item bt601-6-625
5282 BT.601-6 625
5283
5284 @item bt709
5285 BT.709
5286
5287 @item smpte170m
5288 SMPTE-170M
5289
5290 @item smpte240m
5291 SMPTE-240M
5292
5293 @item bt2020
5294 BT.2020
5295
5296 @end table
5297
5298 @anchor{space}
5299 @item space
5300 Specify output colorspace.
5301
5302 The accepted values are:
5303 @table @samp
5304 @item bt709
5305 BT.709
5306
5307 @item fcc
5308 FCC
5309
5310 @item bt470bg
5311 BT.470BG or BT.601-6 625
5312
5313 @item smpte170m
5314 SMPTE-170M or BT.601-6 525
5315
5316 @item smpte240m
5317 SMPTE-240M
5318
5319 @item ycgco
5320 YCgCo
5321
5322 @item bt2020ncl
5323 BT.2020 with non-constant luminance
5324
5325 @end table
5326
5327 @anchor{trc}
5328 @item trc
5329 Specify output transfer characteristics.
5330
5331 The accepted values are:
5332 @table @samp
5333 @item bt709
5334 BT.709
5335
5336 @item bt470m
5337 BT.470M
5338
5339 @item bt470bg
5340 BT.470BG
5341
5342 @item gamma22
5343 Constant gamma of 2.2
5344
5345 @item gamma28
5346 Constant gamma of 2.8
5347
5348 @item smpte170m
5349 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5350
5351 @item smpte240m
5352 SMPTE-240M
5353
5354 @item srgb
5355 SRGB
5356
5357 @item iec61966-2-1
5358 iec61966-2-1
5359
5360 @item iec61966-2-4
5361 iec61966-2-4
5362
5363 @item xvycc
5364 xvycc
5365
5366 @item bt2020-10
5367 BT.2020 for 10-bits content
5368
5369 @item bt2020-12
5370 BT.2020 for 12-bits content
5371
5372 @end table
5373
5374 @anchor{primaries}
5375 @item primaries
5376 Specify output color primaries.
5377
5378 The accepted values are:
5379 @table @samp
5380 @item bt709
5381 BT.709
5382
5383 @item bt470m
5384 BT.470M
5385
5386 @item bt470bg
5387 BT.470BG or BT.601-6 625
5388
5389 @item smpte170m
5390 SMPTE-170M or BT.601-6 525
5391
5392 @item smpte240m
5393 SMPTE-240M
5394
5395 @item film
5396 film
5397
5398 @item smpte431
5399 SMPTE-431
5400
5401 @item smpte432
5402 SMPTE-432
5403
5404 @item bt2020
5405 BT.2020
5406
5407 @end table
5408
5409 @anchor{range}
5410 @item range
5411 Specify output color range.
5412
5413 The accepted values are:
5414 @table @samp
5415 @item tv
5416 TV (restricted) range
5417
5418 @item mpeg
5419 MPEG (restricted) range
5420
5421 @item pc
5422 PC (full) range
5423
5424 @item jpeg
5425 JPEG (full) range
5426
5427 @end table
5428
5429 @item format
5430 Specify output color format.
5431
5432 The accepted values are:
5433 @table @samp
5434 @item yuv420p
5435 YUV 4:2:0 planar 8-bits
5436
5437 @item yuv420p10
5438 YUV 4:2:0 planar 10-bits
5439
5440 @item yuv420p12
5441 YUV 4:2:0 planar 12-bits
5442
5443 @item yuv422p
5444 YUV 4:2:2 planar 8-bits
5445
5446 @item yuv422p10
5447 YUV 4:2:2 planar 10-bits
5448
5449 @item yuv422p12
5450 YUV 4:2:2 planar 12-bits
5451
5452 @item yuv444p
5453 YUV 4:4:4 planar 8-bits
5454
5455 @item yuv444p10
5456 YUV 4:4:4 planar 10-bits
5457
5458 @item yuv444p12
5459 YUV 4:4:4 planar 12-bits
5460
5461 @end table
5462
5463 @item fast
5464 Do a fast conversion, which skips gamma/primary correction. This will take
5465 significantly less CPU, but will be mathematically incorrect. To get output
5466 compatible with that produced by the colormatrix filter, use fast=1.
5467
5468 @item dither
5469 Specify dithering mode.
5470
5471 The accepted values are:
5472 @table @samp
5473 @item none
5474 No dithering
5475
5476 @item fsb
5477 Floyd-Steinberg dithering
5478 @end table
5479
5480 @item wpadapt
5481 Whitepoint adaptation mode.
5482
5483 The accepted values are:
5484 @table @samp
5485 @item bradford
5486 Bradford whitepoint adaptation
5487
5488 @item vonkries
5489 von Kries whitepoint adaptation
5490
5491 @item identity
5492 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5493 @end table
5494
5495 @item iall
5496 Override all input properties at once. Same accepted values as @ref{all}.
5497
5498 @item ispace
5499 Override input colorspace. Same accepted values as @ref{space}.
5500
5501 @item iprimaries
5502 Override input color primaries. Same accepted values as @ref{primaries}.
5503
5504 @item itrc
5505 Override input transfer characteristics. Same accepted values as @ref{trc}.
5506
5507 @item irange
5508 Override input color range. Same accepted values as @ref{range}.
5509
5510 @end table
5511
5512 The filter converts the transfer characteristics, color space and color
5513 primaries to the specified user values. The output value, if not specified,
5514 is set to a default value based on the "all" property. If that property is
5515 also not specified, the filter will log an error. The output color range and
5516 format default to the same value as the input color range and format. The
5517 input transfer characteristics, color space, color primaries and color range
5518 should be set on the input data. If any of these are missing, the filter will
5519 log an error and no conversion will take place.
5520
5521 For example to convert the input to SMPTE-240M, use the command:
5522 @example
5523 colorspace=smpte240m
5524 @end example
5525
5526 @section convolution
5527
5528 Apply convolution 3x3 or 5x5 filter.
5529
5530 The filter accepts the following options:
5531
5532 @table @option
5533 @item 0m
5534 @item 1m
5535 @item 2m
5536 @item 3m
5537 Set matrix for each plane.
5538 Matrix is sequence of 9 or 25 signed integers.
5539
5540 @item 0rdiv
5541 @item 1rdiv
5542 @item 2rdiv
5543 @item 3rdiv
5544 Set multiplier for calculated value for each plane.
5545
5546 @item 0bias
5547 @item 1bias
5548 @item 2bias
5549 @item 3bias
5550 Set bias for each plane. This value is added to the result of the multiplication.
5551 Useful for making the overall image brighter or darker. Default is 0.0.
5552 @end table
5553
5554 @subsection Examples
5555
5556 @itemize
5557 @item
5558 Apply sharpen:
5559 @example
5560 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"
5561 @end example
5562
5563 @item
5564 Apply blur:
5565 @example
5566 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"
5567 @end example
5568
5569 @item
5570 Apply edge enhance:
5571 @example
5572 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"
5573 @end example
5574
5575 @item
5576 Apply edge detect:
5577 @example
5578 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"
5579 @end example
5580
5581 @item
5582 Apply emboss:
5583 @example
5584 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"
5585 @end example
5586 @end itemize
5587
5588 @section copy
5589
5590 Copy the input source unchanged to the output. This is mainly useful for
5591 testing purposes.
5592
5593 @anchor{coreimage}
5594 @section coreimage
5595 Video filtering on GPU using Apple's CoreImage API on OSX.
5596
5597 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5598 processed by video hardware. However, software-based OpenGL implementations
5599 exist which means there is no guarantee for hardware processing. It depends on
5600 the respective OSX.
5601
5602 There are many filters and image generators provided by Apple that come with a
5603 large variety of options. The filter has to be referenced by its name along
5604 with its options.
5605
5606 The coreimage filter accepts the following options:
5607 @table @option
5608 @item list_filters
5609 List all available filters and generators along with all their respective
5610 options as well as possible minimum and maximum values along with the default
5611 values.
5612 @example
5613 list_filters=true
5614 @end example
5615
5616 @item filter
5617 Specify all filters by their respective name and options.
5618 Use @var{list_filters} to determine all valid filter names and options.
5619 Numerical options are specified by a float value and are automatically clamped
5620 to their respective value range.  Vector and color options have to be specified
5621 by a list of space separated float values. Character escaping has to be done.
5622 A special option name @code{default} is available to use default options for a
5623 filter.
5624
5625 It is required to specify either @code{default} or at least one of the filter options.
5626 All omitted options are used with their default values.
5627 The syntax of the filter string is as follows:
5628 @example
5629 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5630 @end example
5631
5632 @item output_rect
5633 Specify a rectangle where the output of the filter chain is copied into the
5634 input image. It is given by a list of space separated float values:
5635 @example
5636 output_rect=x\ y\ width\ height
5637 @end example
5638 If not given, the output rectangle equals the dimensions of the input image.
5639 The output rectangle is automatically cropped at the borders of the input
5640 image. Negative values are valid for each component.
5641 @example
5642 output_rect=25\ 25\ 100\ 100
5643 @end example
5644 @end table
5645
5646 Several filters can be chained for successive processing without GPU-HOST
5647 transfers allowing for fast processing of complex filter chains.
5648 Currently, only filters with zero (generators) or exactly one (filters) input
5649 image and one output image are supported. Also, transition filters are not yet
5650 usable as intended.
5651
5652 Some filters generate output images with additional padding depending on the
5653 respective filter kernel. The padding is automatically removed to ensure the
5654 filter output has the same size as the input image.
5655
5656 For image generators, the size of the output image is determined by the
5657 previous output image of the filter chain or the input image of the whole
5658 filterchain, respectively. The generators do not use the pixel information of
5659 this image to generate their output. However, the generated output is
5660 blended onto this image, resulting in partial or complete coverage of the
5661 output image.
5662
5663 The @ref{coreimagesrc} video source can be used for generating input images
5664 which are directly fed into the filter chain. By using it, providing input
5665 images by another video source or an input video is not required.
5666
5667 @subsection Examples
5668
5669 @itemize
5670
5671 @item
5672 List all filters available:
5673 @example
5674 coreimage=list_filters=true
5675 @end example
5676
5677 @item
5678 Use the CIBoxBlur filter with default options to blur an image:
5679 @example
5680 coreimage=filter=CIBoxBlur@@default
5681 @end example
5682
5683 @item
5684 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5685 its center at 100x100 and a radius of 50 pixels:
5686 @example
5687 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5688 @end example
5689
5690 @item
5691 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5692 given as complete and escaped command-line for Apple's standard bash shell:
5693 @example
5694 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5695 @end example
5696 @end itemize
5697
5698 @section crop
5699
5700 Crop the input video to given dimensions.
5701
5702 It accepts the following parameters:
5703
5704 @table @option
5705 @item w, out_w
5706 The width of the output video. It defaults to @code{iw}.
5707 This expression is evaluated only once during the filter
5708 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5709
5710 @item h, out_h
5711 The height of the output video. It defaults to @code{ih}.
5712 This expression is evaluated only once during the filter
5713 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5714
5715 @item x
5716 The horizontal position, in the input video, of the left edge of the output
5717 video. It defaults to @code{(in_w-out_w)/2}.
5718 This expression is evaluated per-frame.
5719
5720 @item y
5721 The vertical position, in the input video, of the top edge of the output video.
5722 It defaults to @code{(in_h-out_h)/2}.
5723 This expression is evaluated per-frame.
5724
5725 @item keep_aspect
5726 If set to 1 will force the output display aspect ratio
5727 to be the same of the input, by changing the output sample aspect
5728 ratio. It defaults to 0.
5729
5730 @item exact
5731 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
5732 width/height/x/y as specified and will not be rounded to nearest smaller value.
5733 It defaults to 0.
5734 @end table
5735
5736 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5737 expressions containing the following constants:
5738
5739 @table @option
5740 @item x
5741 @item y
5742 The computed values for @var{x} and @var{y}. They are evaluated for
5743 each new frame.
5744
5745 @item in_w
5746 @item in_h
5747 The input width and height.
5748
5749 @item iw
5750 @item ih
5751 These are the same as @var{in_w} and @var{in_h}.
5752
5753 @item out_w
5754 @item out_h
5755 The output (cropped) width and height.
5756
5757 @item ow
5758 @item oh
5759 These are the same as @var{out_w} and @var{out_h}.
5760
5761 @item a
5762 same as @var{iw} / @var{ih}
5763
5764 @item sar
5765 input sample aspect ratio
5766
5767 @item dar
5768 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5769
5770 @item hsub
5771 @item vsub
5772 horizontal and vertical chroma subsample values. For example for the
5773 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5774
5775 @item n
5776 The number of the input frame, starting from 0.
5777
5778 @item pos
5779 the position in the file of the input frame, NAN if unknown
5780
5781 @item t
5782 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5783
5784 @end table
5785
5786 The expression for @var{out_w} may depend on the value of @var{out_h},
5787 and the expression for @var{out_h} may depend on @var{out_w}, but they
5788 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5789 evaluated after @var{out_w} and @var{out_h}.
5790
5791 The @var{x} and @var{y} parameters specify the expressions for the
5792 position of the top-left corner of the output (non-cropped) area. They
5793 are evaluated for each frame. If the evaluated value is not valid, it
5794 is approximated to the nearest valid value.
5795
5796 The expression for @var{x} may depend on @var{y}, and the expression
5797 for @var{y} may depend on @var{x}.
5798
5799 @subsection Examples
5800
5801 @itemize
5802 @item
5803 Crop area with size 100x100 at position (12,34).
5804 @example
5805 crop=100:100:12:34
5806 @end example
5807
5808 Using named options, the example above becomes:
5809 @example
5810 crop=w=100:h=100:x=12:y=34
5811 @end example
5812
5813 @item
5814 Crop the central input area with size 100x100:
5815 @example
5816 crop=100:100
5817 @end example
5818
5819 @item
5820 Crop the central input area with size 2/3 of the input video:
5821 @example
5822 crop=2/3*in_w:2/3*in_h
5823 @end example
5824
5825 @item
5826 Crop the input video central square:
5827 @example
5828 crop=out_w=in_h
5829 crop=in_h
5830 @end example
5831
5832 @item
5833 Delimit the rectangle with the top-left corner placed at position
5834 100:100 and the right-bottom corner corresponding to the right-bottom
5835 corner of the input image.
5836 @example
5837 crop=in_w-100:in_h-100:100:100
5838 @end example
5839
5840 @item
5841 Crop 10 pixels from the left and right borders, and 20 pixels from
5842 the top and bottom borders
5843 @example
5844 crop=in_w-2*10:in_h-2*20
5845 @end example
5846
5847 @item
5848 Keep only the bottom right quarter of the input image:
5849 @example
5850 crop=in_w/2:in_h/2:in_w/2:in_h/2
5851 @end example
5852
5853 @item
5854 Crop height for getting Greek harmony:
5855 @example
5856 crop=in_w:1/PHI*in_w
5857 @end example
5858
5859 @item
5860 Apply trembling effect:
5861 @example
5862 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)
5863 @end example
5864
5865 @item
5866 Apply erratic camera effect depending on timestamp:
5867 @example
5868 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)"
5869 @end example
5870
5871 @item
5872 Set x depending on the value of y:
5873 @example
5874 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5875 @end example
5876 @end itemize
5877
5878 @subsection Commands
5879
5880 This filter supports the following commands:
5881 @table @option
5882 @item w, out_w
5883 @item h, out_h
5884 @item x
5885 @item y
5886 Set width/height of the output video and the horizontal/vertical position
5887 in the input video.
5888 The command accepts the same syntax of the corresponding option.
5889
5890 If the specified expression is not valid, it is kept at its current
5891 value.
5892 @end table
5893
5894 @section cropdetect
5895
5896 Auto-detect the crop size.
5897
5898 It calculates the necessary cropping parameters and prints the
5899 recommended parameters via the logging system. The detected dimensions
5900 correspond to the non-black area of the input video.
5901
5902 It accepts the following parameters:
5903
5904 @table @option
5905
5906 @item limit
5907 Set higher black value threshold, which can be optionally specified
5908 from nothing (0) to everything (255 for 8-bit based formats). An intensity
5909 value greater to the set value is considered non-black. It defaults to 24.
5910 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5911 on the bitdepth of the pixel format.
5912
5913 @item round
5914 The value which the width/height should be divisible by. It defaults to
5915 16. The offset is automatically adjusted to center the video. Use 2 to
5916 get only even dimensions (needed for 4:2:2 video). 16 is best when
5917 encoding to most video codecs.
5918
5919 @item reset_count, reset
5920 Set the counter that determines after how many frames cropdetect will
5921 reset the previously detected largest video area and start over to
5922 detect the current optimal crop area. Default value is 0.
5923
5924 This can be useful when channel logos distort the video area. 0
5925 indicates 'never reset', and returns the largest area encountered during
5926 playback.
5927 @end table
5928
5929 @anchor{curves}
5930 @section curves
5931
5932 Apply color adjustments using curves.
5933
5934 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5935 component (red, green and blue) has its values defined by @var{N} key points
5936 tied from each other using a smooth curve. The x-axis represents the pixel
5937 values from the input frame, and the y-axis the new pixel values to be set for
5938 the output frame.
5939
5940 By default, a component curve is defined by the two points @var{(0;0)} and
5941 @var{(1;1)}. This creates a straight line where each original pixel value is
5942 "adjusted" to its own value, which means no change to the image.
5943
5944 The filter allows you to redefine these two points and add some more. A new
5945 curve (using a natural cubic spline interpolation) will be define to pass
5946 smoothly through all these new coordinates. The new defined points needs to be
5947 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5948 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5949 the vector spaces, the values will be clipped accordingly.
5950
5951 The filter accepts the following options:
5952
5953 @table @option
5954 @item preset
5955 Select one of the available color presets. This option can be used in addition
5956 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5957 options takes priority on the preset values.
5958 Available presets are:
5959 @table @samp
5960 @item none
5961 @item color_negative
5962 @item cross_process
5963 @item darker
5964 @item increase_contrast
5965 @item lighter
5966 @item linear_contrast
5967 @item medium_contrast
5968 @item negative
5969 @item strong_contrast
5970 @item vintage
5971 @end table
5972 Default is @code{none}.
5973 @item master, m
5974 Set the master key points. These points will define a second pass mapping. It
5975 is sometimes called a "luminance" or "value" mapping. It can be used with
5976 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5977 post-processing LUT.
5978 @item red, r
5979 Set the key points for the red component.
5980 @item green, g
5981 Set the key points for the green component.
5982 @item blue, b
5983 Set the key points for the blue component.
5984 @item all
5985 Set the key points for all components (not including master).
5986 Can be used in addition to the other key points component
5987 options. In this case, the unset component(s) will fallback on this
5988 @option{all} setting.
5989 @item psfile
5990 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5991 @item plot
5992 Save Gnuplot script of the curves in specified file.
5993 @end table
5994
5995 To avoid some filtergraph syntax conflicts, each key points list need to be
5996 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5997
5998 @subsection Examples
5999
6000 @itemize
6001 @item
6002 Increase slightly the middle level of blue:
6003 @example
6004 curves=blue='0/0 0.5/0.58 1/1'
6005 @end example
6006
6007 @item
6008 Vintage effect:
6009 @example
6010 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'
6011 @end example
6012 Here we obtain the following coordinates for each components:
6013 @table @var
6014 @item red
6015 @code{(0;0.11) (0.42;0.51) (1;0.95)}
6016 @item green
6017 @code{(0;0) (0.50;0.48) (1;1)}
6018 @item blue
6019 @code{(0;0.22) (0.49;0.44) (1;0.80)}
6020 @end table
6021
6022 @item
6023 The previous example can also be achieved with the associated built-in preset:
6024 @example
6025 curves=preset=vintage
6026 @end example
6027
6028 @item
6029 Or simply:
6030 @example
6031 curves=vintage
6032 @end example
6033
6034 @item
6035 Use a Photoshop preset and redefine the points of the green component:
6036 @example
6037 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
6038 @end example
6039
6040 @item
6041 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
6042 and @command{gnuplot}:
6043 @example
6044 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
6045 gnuplot -p /tmp/curves.plt
6046 @end example
6047 @end itemize
6048
6049 @section datascope
6050
6051 Video data analysis filter.
6052
6053 This filter shows hexadecimal pixel values of part of video.
6054
6055 The filter accepts the following options:
6056
6057 @table @option
6058 @item size, s
6059 Set output video size.
6060
6061 @item x
6062 Set x offset from where to pick pixels.
6063
6064 @item y
6065 Set y offset from where to pick pixels.
6066
6067 @item mode
6068 Set scope mode, can be one of the following:
6069 @table @samp
6070 @item mono
6071 Draw hexadecimal pixel values with white color on black background.
6072
6073 @item color
6074 Draw hexadecimal pixel values with input video pixel color on black
6075 background.
6076
6077 @item color2
6078 Draw hexadecimal pixel values on color background picked from input video,
6079 the text color is picked in such way so its always visible.
6080 @end table
6081
6082 @item axis
6083 Draw rows and columns numbers on left and top of video.
6084
6085 @item opacity
6086 Set background opacity.
6087 @end table
6088
6089 @section dctdnoiz
6090
6091 Denoise frames using 2D DCT (frequency domain filtering).
6092
6093 This filter is not designed for real time.
6094
6095 The filter accepts the following options:
6096
6097 @table @option
6098 @item sigma, s
6099 Set the noise sigma constant.
6100
6101 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6102 coefficient (absolute value) below this threshold with be dropped.
6103
6104 If you need a more advanced filtering, see @option{expr}.
6105
6106 Default is @code{0}.
6107
6108 @item overlap
6109 Set number overlapping pixels for each block. Since the filter can be slow, you
6110 may want to reduce this value, at the cost of a less effective filter and the
6111 risk of various artefacts.
6112
6113 If the overlapping value doesn't permit processing the whole input width or
6114 height, a warning will be displayed and according borders won't be denoised.
6115
6116 Default value is @var{blocksize}-1, which is the best possible setting.
6117
6118 @item expr, e
6119 Set the coefficient factor expression.
6120
6121 For each coefficient of a DCT block, this expression will be evaluated as a
6122 multiplier value for the coefficient.
6123
6124 If this is option is set, the @option{sigma} option will be ignored.
6125
6126 The absolute value of the coefficient can be accessed through the @var{c}
6127 variable.
6128
6129 @item n
6130 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6131 @var{blocksize}, which is the width and height of the processed blocks.
6132
6133 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6134 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6135 on the speed processing. Also, a larger block size does not necessarily means a
6136 better de-noising.
6137 @end table
6138
6139 @subsection Examples
6140
6141 Apply a denoise with a @option{sigma} of @code{4.5}:
6142 @example
6143 dctdnoiz=4.5
6144 @end example
6145
6146 The same operation can be achieved using the expression system:
6147 @example
6148 dctdnoiz=e='gte(c, 4.5*3)'
6149 @end example
6150
6151 Violent denoise using a block size of @code{16x16}:
6152 @example
6153 dctdnoiz=15:n=4
6154 @end example
6155
6156 @section deband
6157
6158 Remove banding artifacts from input video.
6159 It works by replacing banded pixels with average value of referenced pixels.
6160
6161 The filter accepts the following options:
6162
6163 @table @option
6164 @item 1thr
6165 @item 2thr
6166 @item 3thr
6167 @item 4thr
6168 Set banding detection threshold for each plane. Default is 0.02.
6169 Valid range is 0.00003 to 0.5.
6170 If difference between current pixel and reference pixel is less than threshold,
6171 it will be considered as banded.
6172
6173 @item range, r
6174 Banding detection range in pixels. Default is 16. If positive, random number
6175 in range 0 to set value will be used. If negative, exact absolute value
6176 will be used.
6177 The range defines square of four pixels around current pixel.
6178
6179 @item direction, d
6180 Set direction in radians from which four pixel will be compared. If positive,
6181 random direction from 0 to set direction will be picked. If negative, exact of
6182 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6183 will pick only pixels on same row and -PI/2 will pick only pixels on same
6184 column.
6185
6186 @item blur, b
6187 If enabled, current pixel is compared with average value of all four
6188 surrounding pixels. The default is enabled. If disabled current pixel is
6189 compared with all four surrounding pixels. The pixel is considered banded
6190 if only all four differences with surrounding pixels are less than threshold.
6191
6192 @item coupling, c
6193 If enabled, current pixel is changed if and only if all pixel components are banded,
6194 e.g. banding detection threshold is triggered for all color components.
6195 The default is disabled.
6196 @end table
6197
6198 @anchor{decimate}
6199 @section decimate
6200
6201 Drop duplicated frames at regular intervals.
6202
6203 The filter accepts the following options:
6204
6205 @table @option
6206 @item cycle
6207 Set the number of frames from which one will be dropped. Setting this to
6208 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6209 Default is @code{5}.
6210
6211 @item dupthresh
6212 Set the threshold for duplicate detection. If the difference metric for a frame
6213 is less than or equal to this value, then it is declared as duplicate. Default
6214 is @code{1.1}
6215
6216 @item scthresh
6217 Set scene change threshold. Default is @code{15}.
6218
6219 @item blockx
6220 @item blocky
6221 Set the size of the x and y-axis blocks used during metric calculations.
6222 Larger blocks give better noise suppression, but also give worse detection of
6223 small movements. Must be a power of two. Default is @code{32}.
6224
6225 @item ppsrc
6226 Mark main input as a pre-processed input and activate clean source input
6227 stream. This allows the input to be pre-processed with various filters to help
6228 the metrics calculation while keeping the frame selection lossless. When set to
6229 @code{1}, the first stream is for the pre-processed input, and the second
6230 stream is the clean source from where the kept frames are chosen. Default is
6231 @code{0}.
6232
6233 @item chroma
6234 Set whether or not chroma is considered in the metric calculations. Default is
6235 @code{1}.
6236 @end table
6237
6238 @section deflate
6239
6240 Apply deflate effect to the video.
6241
6242 This filter replaces the pixel by the local(3x3) average by taking into account
6243 only values lower than the pixel.
6244
6245 It accepts the following options:
6246
6247 @table @option
6248 @item threshold0
6249 @item threshold1
6250 @item threshold2
6251 @item threshold3
6252 Limit the maximum change for each plane, default is 65535.
6253 If 0, plane will remain unchanged.
6254 @end table
6255
6256 @section deflicker
6257
6258 Remove temporal frame luminance variations.
6259
6260 It accepts the following options:
6261
6262 @table @option
6263 @item size, s
6264 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
6265
6266 @item mode, m
6267 Set averaging mode to smooth temporal luminance variations.
6268
6269 Available values are:
6270 @table @samp
6271 @item am
6272 Arithmetic mean
6273
6274 @item gm
6275 Geometric mean
6276
6277 @item hm
6278 Harmonic mean
6279
6280 @item qm
6281 Quadratic mean
6282
6283 @item cm
6284 Cubic mean
6285
6286 @item pm
6287 Power mean
6288
6289 @item median
6290 Median
6291 @end table
6292 @end table
6293
6294 @section dejudder
6295
6296 Remove judder produced by partially interlaced telecined content.
6297
6298 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6299 source was partially telecined content then the output of @code{pullup,dejudder}
6300 will have a variable frame rate. May change the recorded frame rate of the
6301 container. Aside from that change, this filter will not affect constant frame
6302 rate video.
6303
6304 The option available in this filter is:
6305 @table @option
6306
6307 @item cycle
6308 Specify the length of the window over which the judder repeats.
6309
6310 Accepts any integer greater than 1. Useful values are:
6311 @table @samp
6312
6313 @item 4
6314 If the original was telecined from 24 to 30 fps (Film to NTSC).
6315
6316 @item 5
6317 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6318
6319 @item 20
6320 If a mixture of the two.
6321 @end table
6322
6323 The default is @samp{4}.
6324 @end table
6325
6326 @section delogo
6327
6328 Suppress a TV station logo by a simple interpolation of the surrounding
6329 pixels. Just set a rectangle covering the logo and watch it disappear
6330 (and sometimes something even uglier appear - your mileage may vary).
6331
6332 It accepts the following parameters:
6333 @table @option
6334
6335 @item x
6336 @item y
6337 Specify the top left corner coordinates of the logo. They must be
6338 specified.
6339
6340 @item w
6341 @item h
6342 Specify the width and height of the logo to clear. They must be
6343 specified.
6344
6345 @item band, t
6346 Specify the thickness of the fuzzy edge of the rectangle (added to
6347 @var{w} and @var{h}). The default value is 1. This option is
6348 deprecated, setting higher values should no longer be necessary and
6349 is not recommended.
6350
6351 @item show
6352 When set to 1, a green rectangle is drawn on the screen to simplify
6353 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6354 The default value is 0.
6355
6356 The rectangle is drawn on the outermost pixels which will be (partly)
6357 replaced with interpolated values. The values of the next pixels
6358 immediately outside this rectangle in each direction will be used to
6359 compute the interpolated pixel values inside the rectangle.
6360
6361 @end table
6362
6363 @subsection Examples
6364
6365 @itemize
6366 @item
6367 Set a rectangle covering the area with top left corner coordinates 0,0
6368 and size 100x77, and a band of size 10:
6369 @example
6370 delogo=x=0:y=0:w=100:h=77:band=10
6371 @end example
6372
6373 @end itemize
6374
6375 @section deshake
6376
6377 Attempt to fix small changes in horizontal and/or vertical shift. This
6378 filter helps remove camera shake from hand-holding a camera, bumping a
6379 tripod, moving on a vehicle, etc.
6380
6381 The filter accepts the following options:
6382
6383 @table @option
6384
6385 @item x
6386 @item y
6387 @item w
6388 @item h
6389 Specify a rectangular area where to limit the search for motion
6390 vectors.
6391 If desired the search for motion vectors can be limited to a
6392 rectangular area of the frame defined by its top left corner, width
6393 and height. These parameters have the same meaning as the drawbox
6394 filter which can be used to visualise the position of the bounding
6395 box.
6396
6397 This is useful when simultaneous movement of subjects within the frame
6398 might be confused for camera motion by the motion vector search.
6399
6400 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6401 then the full frame is used. This allows later options to be set
6402 without specifying the bounding box for the motion vector search.
6403
6404 Default - search the whole frame.
6405
6406 @item rx
6407 @item ry
6408 Specify the maximum extent of movement in x and y directions in the
6409 range 0-64 pixels. Default 16.
6410
6411 @item edge
6412 Specify how to generate pixels to fill blanks at the edge of the
6413 frame. Available values are:
6414 @table @samp
6415 @item blank, 0
6416 Fill zeroes at blank locations
6417 @item original, 1
6418 Original image at blank locations
6419 @item clamp, 2
6420 Extruded edge value at blank locations
6421 @item mirror, 3
6422 Mirrored edge at blank locations
6423 @end table
6424 Default value is @samp{mirror}.
6425
6426 @item blocksize
6427 Specify the blocksize to use for motion search. Range 4-128 pixels,
6428 default 8.
6429
6430 @item contrast
6431 Specify the contrast threshold for blocks. Only blocks with more than
6432 the specified contrast (difference between darkest and lightest
6433 pixels) will be considered. Range 1-255, default 125.
6434
6435 @item search
6436 Specify the search strategy. Available values are:
6437 @table @samp
6438 @item exhaustive, 0
6439 Set exhaustive search
6440 @item less, 1
6441 Set less exhaustive search.
6442 @end table
6443 Default value is @samp{exhaustive}.
6444
6445 @item filename
6446 If set then a detailed log of the motion search is written to the
6447 specified file.
6448
6449 @item opencl
6450 If set to 1, specify using OpenCL capabilities, only available if
6451 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6452
6453 @end table
6454
6455 @section detelecine
6456
6457 Apply an exact inverse of the telecine operation. It requires a predefined
6458 pattern specified using the pattern option which must be the same as that passed
6459 to the telecine filter.
6460
6461 This filter accepts the following options:
6462
6463 @table @option
6464 @item first_field
6465 @table @samp
6466 @item top, t
6467 top field first
6468 @item bottom, b
6469 bottom field first
6470 The default value is @code{top}.
6471 @end table
6472
6473 @item pattern
6474 A string of numbers representing the pulldown pattern you wish to apply.
6475 The default value is @code{23}.
6476
6477 @item start_frame
6478 A number representing position of the first frame with respect to the telecine
6479 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6480 @end table
6481
6482 @section dilation
6483
6484 Apply dilation effect to the video.
6485
6486 This filter replaces the pixel by the local(3x3) maximum.
6487
6488 It accepts the following options:
6489
6490 @table @option
6491 @item threshold0
6492 @item threshold1
6493 @item threshold2
6494 @item threshold3
6495 Limit the maximum change for each plane, default is 65535.
6496 If 0, plane will remain unchanged.
6497
6498 @item coordinates
6499 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6500 pixels are used.
6501
6502 Flags to local 3x3 coordinates maps like this:
6503
6504     1 2 3
6505     4   5
6506     6 7 8
6507 @end table
6508
6509 @section displace
6510
6511 Displace pixels as indicated by second and third input stream.
6512
6513 It takes three input streams and outputs one stream, the first input is the
6514 source, and second and third input are displacement maps.
6515
6516 The second input specifies how much to displace pixels along the
6517 x-axis, while the third input specifies how much to displace pixels
6518 along the y-axis.
6519 If one of displacement map streams terminates, last frame from that
6520 displacement map will be used.
6521
6522 Note that once generated, displacements maps can be reused over and over again.
6523
6524 A description of the accepted options follows.
6525
6526 @table @option
6527 @item edge
6528 Set displace behavior for pixels that are out of range.
6529
6530 Available values are:
6531 @table @samp
6532 @item blank
6533 Missing pixels are replaced by black pixels.
6534
6535 @item smear
6536 Adjacent pixels will spread out to replace missing pixels.
6537
6538 @item wrap
6539 Out of range pixels are wrapped so they point to pixels of other side.
6540 @end table
6541 Default is @samp{smear}.
6542
6543 @end table
6544
6545 @subsection Examples
6546
6547 @itemize
6548 @item
6549 Add ripple effect to rgb input of video size hd720:
6550 @example
6551 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
6552 @end example
6553
6554 @item
6555 Add wave effect to rgb input of video size hd720:
6556 @example
6557 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
6558 @end example
6559 @end itemize
6560
6561 @section drawbox
6562
6563 Draw a colored box on the input image.
6564
6565 It accepts the following parameters:
6566
6567 @table @option
6568 @item x
6569 @item y
6570 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6571
6572 @item width, w
6573 @item height, h
6574 The expressions which specify the width and height of the box; if 0 they are interpreted as
6575 the input width and height. It defaults to 0.
6576
6577 @item color, c
6578 Specify the color of the box to write. For the general syntax of this option,
6579 check the "Color" section in the ffmpeg-utils manual. If the special
6580 value @code{invert} is used, the box edge color is the same as the
6581 video with inverted luma.
6582
6583 @item thickness, t
6584 The expression which sets the thickness of the box edge. Default value is @code{3}.
6585
6586 See below for the list of accepted constants.
6587 @end table
6588
6589 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6590 following constants:
6591
6592 @table @option
6593 @item dar
6594 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6595
6596 @item hsub
6597 @item vsub
6598 horizontal and vertical chroma subsample values. For example for the
6599 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6600
6601 @item in_h, ih
6602 @item in_w, iw
6603 The input width and height.
6604
6605 @item sar
6606 The input sample aspect ratio.
6607
6608 @item x
6609 @item y
6610 The x and y offset coordinates where the box is drawn.
6611
6612 @item w
6613 @item h
6614 The width and height of the drawn box.
6615
6616 @item t
6617 The thickness of the drawn box.
6618
6619 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6620 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6621
6622 @end table
6623
6624 @subsection Examples
6625
6626 @itemize
6627 @item
6628 Draw a black box around the edge of the input image:
6629 @example
6630 drawbox
6631 @end example
6632
6633 @item
6634 Draw a box with color red and an opacity of 50%:
6635 @example
6636 drawbox=10:20:200:60:red@@0.5
6637 @end example
6638
6639 The previous example can be specified as:
6640 @example
6641 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6642 @end example
6643
6644 @item
6645 Fill the box with pink color:
6646 @example
6647 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6648 @end example
6649
6650 @item
6651 Draw a 2-pixel red 2.40:1 mask:
6652 @example
6653 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
6654 @end example
6655 @end itemize
6656
6657 @section drawgrid
6658
6659 Draw a grid on the input image.
6660
6661 It accepts the following parameters:
6662
6663 @table @option
6664 @item x
6665 @item y
6666 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6667
6668 @item width, w
6669 @item height, h
6670 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6671 input width and height, respectively, minus @code{thickness}, so image gets
6672 framed. Default to 0.
6673
6674 @item color, c
6675 Specify the color of the grid. For the general syntax of this option,
6676 check the "Color" section in the ffmpeg-utils manual. If the special
6677 value @code{invert} is used, the grid color is the same as the
6678 video with inverted luma.
6679
6680 @item thickness, t
6681 The expression which sets the thickness of the grid line. Default value is @code{1}.
6682
6683 See below for the list of accepted constants.
6684 @end table
6685
6686 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6687 following constants:
6688
6689 @table @option
6690 @item dar
6691 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6692
6693 @item hsub
6694 @item vsub
6695 horizontal and vertical chroma subsample values. For example for the
6696 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6697
6698 @item in_h, ih
6699 @item in_w, iw
6700 The input grid cell width and height.
6701
6702 @item sar
6703 The input sample aspect ratio.
6704
6705 @item x
6706 @item y
6707 The x and y coordinates of some point of grid intersection (meant to configure offset).
6708
6709 @item w
6710 @item h
6711 The width and height of the drawn cell.
6712
6713 @item t
6714 The thickness of the drawn cell.
6715
6716 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6717 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6718
6719 @end table
6720
6721 @subsection Examples
6722
6723 @itemize
6724 @item
6725 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6726 @example
6727 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6728 @end example
6729
6730 @item
6731 Draw a white 3x3 grid with an opacity of 50%:
6732 @example
6733 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6734 @end example
6735 @end itemize
6736
6737 @anchor{drawtext}
6738 @section drawtext
6739
6740 Draw a text string or text from a specified file on top of a video, using the
6741 libfreetype library.
6742
6743 To enable compilation of this filter, you need to configure FFmpeg with
6744 @code{--enable-libfreetype}.
6745 To enable default font fallback and the @var{font} option you need to
6746 configure FFmpeg with @code{--enable-libfontconfig}.
6747 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6748 @code{--enable-libfribidi}.
6749
6750 @subsection Syntax
6751
6752 It accepts the following parameters:
6753
6754 @table @option
6755
6756 @item box
6757 Used to draw a box around text using the background color.
6758 The value must be either 1 (enable) or 0 (disable).
6759 The default value of @var{box} is 0.
6760
6761 @item boxborderw
6762 Set the width of the border to be drawn around the box using @var{boxcolor}.
6763 The default value of @var{boxborderw} is 0.
6764
6765 @item boxcolor
6766 The color to be used for drawing box around text. For the syntax of this
6767 option, check the "Color" section in the ffmpeg-utils manual.
6768
6769 The default value of @var{boxcolor} is "white".
6770
6771 @item line_spacing
6772 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
6773 The default value of @var{line_spacing} is 0.
6774
6775 @item borderw
6776 Set the width of the border to be drawn around the text using @var{bordercolor}.
6777 The default value of @var{borderw} is 0.
6778
6779 @item bordercolor
6780 Set the color to be used for drawing border around text. For the syntax of this
6781 option, check the "Color" section in the ffmpeg-utils manual.
6782
6783 The default value of @var{bordercolor} is "black".
6784
6785 @item expansion
6786 Select how the @var{text} is expanded. Can be either @code{none},
6787 @code{strftime} (deprecated) or
6788 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6789 below for details.
6790
6791 @item basetime
6792 Set a start time for the count. Value is in microseconds. Only applied
6793 in the deprecated strftime expansion mode. To emulate in normal expansion
6794 mode use the @code{pts} function, supplying the start time (in seconds)
6795 as the second argument.
6796
6797 @item fix_bounds
6798 If true, check and fix text coords to avoid clipping.
6799
6800 @item fontcolor
6801 The color to be used for drawing fonts. For the syntax of this option, check
6802 the "Color" section in the ffmpeg-utils manual.
6803
6804 The default value of @var{fontcolor} is "black".
6805
6806 @item fontcolor_expr
6807 String which is expanded the same way as @var{text} to obtain dynamic
6808 @var{fontcolor} value. By default this option has empty value and is not
6809 processed. When this option is set, it overrides @var{fontcolor} option.
6810
6811 @item font
6812 The font family to be used for drawing text. By default Sans.
6813
6814 @item fontfile
6815 The font file to be used for drawing text. The path must be included.
6816 This parameter is mandatory if the fontconfig support is disabled.
6817
6818 @item alpha
6819 Draw the text applying alpha blending. The value can
6820 be a number between 0.0 and 1.0.
6821 The expression accepts the same variables @var{x, y} as well.
6822 The default value is 1.
6823 Please see @var{fontcolor_expr}.
6824
6825 @item fontsize
6826 The font size to be used for drawing text.
6827 The default value of @var{fontsize} is 16.
6828
6829 @item text_shaping
6830 If set to 1, attempt to shape the text (for example, reverse the order of
6831 right-to-left text and join Arabic characters) before drawing it.
6832 Otherwise, just draw the text exactly as given.
6833 By default 1 (if supported).
6834
6835 @item ft_load_flags
6836 The flags to be used for loading the fonts.
6837
6838 The flags map the corresponding flags supported by libfreetype, and are
6839 a combination of the following values:
6840 @table @var
6841 @item default
6842 @item no_scale
6843 @item no_hinting
6844 @item render
6845 @item no_bitmap
6846 @item vertical_layout
6847 @item force_autohint
6848 @item crop_bitmap
6849 @item pedantic
6850 @item ignore_global_advance_width
6851 @item no_recurse
6852 @item ignore_transform
6853 @item monochrome
6854 @item linear_design
6855 @item no_autohint
6856 @end table
6857
6858 Default value is "default".
6859
6860 For more information consult the documentation for the FT_LOAD_*
6861 libfreetype flags.
6862
6863 @item shadowcolor
6864 The color to be used for drawing a shadow behind the drawn text. For the
6865 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6866
6867 The default value of @var{shadowcolor} is "black".
6868
6869 @item shadowx
6870 @item shadowy
6871 The x and y offsets for the text shadow position with respect to the
6872 position of the text. They can be either positive or negative
6873 values. The default value for both is "0".
6874
6875 @item start_number
6876 The starting frame number for the n/frame_num variable. The default value
6877 is "0".
6878
6879 @item tabsize
6880 The size in number of spaces to use for rendering the tab.
6881 Default value is 4.
6882
6883 @item timecode
6884 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6885 format. It can be used with or without text parameter. @var{timecode_rate}
6886 option must be specified.
6887
6888 @item timecode_rate, rate, r
6889 Set the timecode frame rate (timecode only).
6890
6891 @item tc24hmax
6892 If set to 1, the output of the timecode option will wrap around at 24 hours.
6893 Default is 0 (disabled).
6894
6895 @item text
6896 The text string to be drawn. The text must be a sequence of UTF-8
6897 encoded characters.
6898 This parameter is mandatory if no file is specified with the parameter
6899 @var{textfile}.
6900
6901 @item textfile
6902 A text file containing text to be drawn. The text must be a sequence
6903 of UTF-8 encoded characters.
6904
6905 This parameter is mandatory if no text string is specified with the
6906 parameter @var{text}.
6907
6908 If both @var{text} and @var{textfile} are specified, an error is thrown.
6909
6910 @item reload
6911 If set to 1, the @var{textfile} will be reloaded before each frame.
6912 Be sure to update it atomically, or it may be read partially, or even fail.
6913
6914 @item x
6915 @item y
6916 The expressions which specify the offsets where text will be drawn
6917 within the video frame. They are relative to the top/left border of the
6918 output image.
6919
6920 The default value of @var{x} and @var{y} is "0".
6921
6922 See below for the list of accepted constants and functions.
6923 @end table
6924
6925 The parameters for @var{x} and @var{y} are expressions containing the
6926 following constants and functions:
6927
6928 @table @option
6929 @item dar
6930 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6931
6932 @item hsub
6933 @item vsub
6934 horizontal and vertical chroma subsample values. For example for the
6935 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6936
6937 @item line_h, lh
6938 the height of each text line
6939
6940 @item main_h, h, H
6941 the input height
6942
6943 @item main_w, w, W
6944 the input width
6945
6946 @item max_glyph_a, ascent
6947 the maximum distance from the baseline to the highest/upper grid
6948 coordinate used to place a glyph outline point, for all the rendered
6949 glyphs.
6950 It is a positive value, due to the grid's orientation with the Y axis
6951 upwards.
6952
6953 @item max_glyph_d, descent
6954 the maximum distance from the baseline to the lowest grid coordinate
6955 used to place a glyph outline point, for all the rendered glyphs.
6956 This is a negative value, due to the grid's orientation, with the Y axis
6957 upwards.
6958
6959 @item max_glyph_h
6960 maximum glyph height, that is the maximum height for all the glyphs
6961 contained in the rendered text, it is equivalent to @var{ascent} -
6962 @var{descent}.
6963
6964 @item max_glyph_w
6965 maximum glyph width, that is the maximum width for all the glyphs
6966 contained in the rendered text
6967
6968 @item n
6969 the number of input frame, starting from 0
6970
6971 @item rand(min, max)
6972 return a random number included between @var{min} and @var{max}
6973
6974 @item sar
6975 The input sample aspect ratio.
6976
6977 @item t
6978 timestamp expressed in seconds, NAN if the input timestamp is unknown
6979
6980 @item text_h, th
6981 the height of the rendered text
6982
6983 @item text_w, tw
6984 the width of the rendered text
6985
6986 @item x
6987 @item y
6988 the x and y offset coordinates where the text is drawn.
6989
6990 These parameters allow the @var{x} and @var{y} expressions to refer
6991 each other, so you can for example specify @code{y=x/dar}.
6992 @end table
6993
6994 @anchor{drawtext_expansion}
6995 @subsection Text expansion
6996
6997 If @option{expansion} is set to @code{strftime},
6998 the filter recognizes strftime() sequences in the provided text and
6999 expands them accordingly. Check the documentation of strftime(). This
7000 feature is deprecated.
7001
7002 If @option{expansion} is set to @code{none}, the text is printed verbatim.
7003
7004 If @option{expansion} is set to @code{normal} (which is the default),
7005 the following expansion mechanism is used.
7006
7007 The backslash character @samp{\}, followed by any character, always expands to
7008 the second character.
7009
7010 Sequences of the form @code{%@{...@}} are expanded. The text between the
7011 braces is a function name, possibly followed by arguments separated by ':'.
7012 If the arguments contain special characters or delimiters (':' or '@}'),
7013 they should be escaped.
7014
7015 Note that they probably must also be escaped as the value for the
7016 @option{text} option in the filter argument string and as the filter
7017 argument in the filtergraph description, and possibly also for the shell,
7018 that makes up to four levels of escaping; using a text file avoids these
7019 problems.
7020
7021 The following functions are available:
7022
7023 @table @command
7024
7025 @item expr, e
7026 The expression evaluation result.
7027
7028 It must take one argument specifying the expression to be evaluated,
7029 which accepts the same constants and functions as the @var{x} and
7030 @var{y} values. Note that not all constants should be used, for
7031 example the text size is not known when evaluating the expression, so
7032 the constants @var{text_w} and @var{text_h} will have an undefined
7033 value.
7034
7035 @item expr_int_format, eif
7036 Evaluate the expression's value and output as formatted integer.
7037
7038 The first argument is the expression to be evaluated, just as for the @var{expr} function.
7039 The second argument specifies the output format. Allowed values are @samp{x},
7040 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
7041 @code{printf} function.
7042 The third parameter is optional and sets the number of positions taken by the output.
7043 It can be used to add padding with zeros from the left.
7044
7045 @item gmtime
7046 The time at which the filter is running, expressed in UTC.
7047 It can accept an argument: a strftime() format string.
7048
7049 @item localtime
7050 The time at which the filter is running, expressed in the local time zone.
7051 It can accept an argument: a strftime() format string.
7052
7053 @item metadata
7054 Frame metadata. Takes one or two arguments.
7055
7056 The first argument is mandatory and specifies the metadata key.
7057
7058 The second argument is optional and specifies a default value, used when the
7059 metadata key is not found or empty.
7060
7061 @item n, frame_num
7062 The frame number, starting from 0.
7063
7064 @item pict_type
7065 A 1 character description of the current picture type.
7066
7067 @item pts
7068 The timestamp of the current frame.
7069 It can take up to three arguments.
7070
7071 The first argument is the format of the timestamp; it defaults to @code{flt}
7072 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
7073 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
7074 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
7075 @code{localtime} stands for the timestamp of the frame formatted as
7076 local time zone time.
7077
7078 The second argument is an offset added to the timestamp.
7079
7080 If the format is set to @code{localtime} or @code{gmtime},
7081 a third argument may be supplied: a strftime() format string.
7082 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
7083 @end table
7084
7085 @subsection Examples
7086
7087 @itemize
7088 @item
7089 Draw "Test Text" with font FreeSerif, using the default values for the
7090 optional parameters.
7091
7092 @example
7093 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
7094 @end example
7095
7096 @item
7097 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
7098 and y=50 (counting from the top-left corner of the screen), text is
7099 yellow with a red box around it. Both the text and the box have an
7100 opacity of 20%.
7101
7102 @example
7103 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
7104           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
7105 @end example
7106
7107 Note that the double quotes are not necessary if spaces are not used
7108 within the parameter list.
7109
7110 @item
7111 Show the text at the center of the video frame:
7112 @example
7113 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
7114 @end example
7115
7116 @item
7117 Show the text at a random position, switching to a new position every 30 seconds:
7118 @example
7119 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)"
7120 @end example
7121
7122 @item
7123 Show a text line sliding from right to left in the last row of the video
7124 frame. The file @file{LONG_LINE} is assumed to contain a single line
7125 with no newlines.
7126 @example
7127 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
7128 @end example
7129
7130 @item
7131 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
7132 @example
7133 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
7134 @end example
7135
7136 @item
7137 Draw a single green letter "g", at the center of the input video.
7138 The glyph baseline is placed at half screen height.
7139 @example
7140 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7141 @end example
7142
7143 @item
7144 Show text for 1 second every 3 seconds:
7145 @example
7146 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7147 @end example
7148
7149 @item
7150 Use fontconfig to set the font. Note that the colons need to be escaped.
7151 @example
7152 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7153 @end example
7154
7155 @item
7156 Print the date of a real-time encoding (see strftime(3)):
7157 @example
7158 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7159 @end example
7160
7161 @item
7162 Show text fading in and out (appearing/disappearing):
7163 @example
7164 #!/bin/sh
7165 DS=1.0 # display start
7166 DE=10.0 # display end
7167 FID=1.5 # fade in duration
7168 FOD=5 # fade out duration
7169 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 @}"
7170 @end example
7171
7172 @item
7173 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
7174 and the @option{fontsize} value are included in the @option{y} offset.
7175 @example
7176 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
7177 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
7178 @end example
7179
7180 @end itemize
7181
7182 For more information about libfreetype, check:
7183 @url{http://www.freetype.org/}.
7184
7185 For more information about fontconfig, check:
7186 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7187
7188 For more information about libfribidi, check:
7189 @url{http://fribidi.org/}.
7190
7191 @section edgedetect
7192
7193 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7194
7195 The filter accepts the following options:
7196
7197 @table @option
7198 @item low
7199 @item high
7200 Set low and high threshold values used by the Canny thresholding
7201 algorithm.
7202
7203 The high threshold selects the "strong" edge pixels, which are then
7204 connected through 8-connectivity with the "weak" edge pixels selected
7205 by the low threshold.
7206
7207 @var{low} and @var{high} threshold values must be chosen in the range
7208 [0,1], and @var{low} should be lesser or equal to @var{high}.
7209
7210 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7211 is @code{50/255}.
7212
7213 @item mode
7214 Define the drawing mode.
7215
7216 @table @samp
7217 @item wires
7218 Draw white/gray wires on black background.
7219
7220 @item colormix
7221 Mix the colors to create a paint/cartoon effect.
7222 @end table
7223
7224 Default value is @var{wires}.
7225 @end table
7226
7227 @subsection Examples
7228
7229 @itemize
7230 @item
7231 Standard edge detection with custom values for the hysteresis thresholding:
7232 @example
7233 edgedetect=low=0.1:high=0.4
7234 @end example
7235
7236 @item
7237 Painting effect without thresholding:
7238 @example
7239 edgedetect=mode=colormix:high=0
7240 @end example
7241 @end itemize
7242
7243 @section eq
7244 Set brightness, contrast, saturation and approximate gamma adjustment.
7245
7246 The filter accepts the following options:
7247
7248 @table @option
7249 @item contrast
7250 Set the contrast expression. The value must be a float value in range
7251 @code{-2.0} to @code{2.0}. The default value is "1".
7252
7253 @item brightness
7254 Set the brightness expression. The value must be a float value in
7255 range @code{-1.0} to @code{1.0}. The default value is "0".
7256
7257 @item saturation
7258 Set the saturation expression. The value must be a float in
7259 range @code{0.0} to @code{3.0}. The default value is "1".
7260
7261 @item gamma
7262 Set the gamma expression. The value must be a float in range
7263 @code{0.1} to @code{10.0}.  The default value is "1".
7264
7265 @item gamma_r
7266 Set the gamma expression for red. The value must be a float in
7267 range @code{0.1} to @code{10.0}. The default value is "1".
7268
7269 @item gamma_g
7270 Set the gamma expression for green. The value must be a float in range
7271 @code{0.1} to @code{10.0}. The default value is "1".
7272
7273 @item gamma_b
7274 Set the gamma expression for blue. The value must be a float in range
7275 @code{0.1} to @code{10.0}. The default value is "1".
7276
7277 @item gamma_weight
7278 Set the gamma weight expression. It can be used to reduce the effect
7279 of a high gamma value on bright image areas, e.g. keep them from
7280 getting overamplified and just plain white. The value must be a float
7281 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7282 gamma correction all the way down while @code{1.0} leaves it at its
7283 full strength. Default is "1".
7284
7285 @item eval
7286 Set when the expressions for brightness, contrast, saturation and
7287 gamma expressions are evaluated.
7288
7289 It accepts the following values:
7290 @table @samp
7291 @item init
7292 only evaluate expressions once during the filter initialization or
7293 when a command is processed
7294
7295 @item frame
7296 evaluate expressions for each incoming frame
7297 @end table
7298
7299 Default value is @samp{init}.
7300 @end table
7301
7302 The expressions accept the following parameters:
7303 @table @option
7304 @item n
7305 frame count of the input frame starting from 0
7306
7307 @item pos
7308 byte position of the corresponding packet in the input file, NAN if
7309 unspecified
7310
7311 @item r
7312 frame rate of the input video, NAN if the input frame rate is unknown
7313
7314 @item t
7315 timestamp expressed in seconds, NAN if the input timestamp is unknown
7316 @end table
7317
7318 @subsection Commands
7319 The filter supports the following commands:
7320
7321 @table @option
7322 @item contrast
7323 Set the contrast expression.
7324
7325 @item brightness
7326 Set the brightness expression.
7327
7328 @item saturation
7329 Set the saturation expression.
7330
7331 @item gamma
7332 Set the gamma expression.
7333
7334 @item gamma_r
7335 Set the gamma_r expression.
7336
7337 @item gamma_g
7338 Set gamma_g expression.
7339
7340 @item gamma_b
7341 Set gamma_b expression.
7342
7343 @item gamma_weight
7344 Set gamma_weight expression.
7345
7346 The command accepts the same syntax of the corresponding option.
7347
7348 If the specified expression is not valid, it is kept at its current
7349 value.
7350
7351 @end table
7352
7353 @section erosion
7354
7355 Apply erosion effect to the video.
7356
7357 This filter replaces the pixel by the local(3x3) minimum.
7358
7359 It accepts the following options:
7360
7361 @table @option
7362 @item threshold0
7363 @item threshold1
7364 @item threshold2
7365 @item threshold3
7366 Limit the maximum change for each plane, default is 65535.
7367 If 0, plane will remain unchanged.
7368
7369 @item coordinates
7370 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7371 pixels are used.
7372
7373 Flags to local 3x3 coordinates maps like this:
7374
7375     1 2 3
7376     4   5
7377     6 7 8
7378 @end table
7379
7380 @section extractplanes
7381
7382 Extract color channel components from input video stream into
7383 separate grayscale video streams.
7384
7385 The filter accepts the following option:
7386
7387 @table @option
7388 @item planes
7389 Set plane(s) to extract.
7390
7391 Available values for planes are:
7392 @table @samp
7393 @item y
7394 @item u
7395 @item v
7396 @item a
7397 @item r
7398 @item g
7399 @item b
7400 @end table
7401
7402 Choosing planes not available in the input will result in an error.
7403 That means you cannot select @code{r}, @code{g}, @code{b} planes
7404 with @code{y}, @code{u}, @code{v} planes at same time.
7405 @end table
7406
7407 @subsection Examples
7408
7409 @itemize
7410 @item
7411 Extract luma, u and v color channel component from input video frame
7412 into 3 grayscale outputs:
7413 @example
7414 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
7415 @end example
7416 @end itemize
7417
7418 @section elbg
7419
7420 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7421
7422 For each input image, the filter will compute the optimal mapping from
7423 the input to the output given the codebook length, that is the number
7424 of distinct output colors.
7425
7426 This filter accepts the following options.
7427
7428 @table @option
7429 @item codebook_length, l
7430 Set codebook length. The value must be a positive integer, and
7431 represents the number of distinct output colors. Default value is 256.
7432
7433 @item nb_steps, n
7434 Set the maximum number of iterations to apply for computing the optimal
7435 mapping. The higher the value the better the result and the higher the
7436 computation time. Default value is 1.
7437
7438 @item seed, s
7439 Set a random seed, must be an integer included between 0 and
7440 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7441 will try to use a good random seed on a best effort basis.
7442
7443 @item pal8
7444 Set pal8 output pixel format. This option does not work with codebook
7445 length greater than 256.
7446 @end table
7447
7448 @section fade
7449
7450 Apply a fade-in/out effect to the input video.
7451
7452 It accepts the following parameters:
7453
7454 @table @option
7455 @item type, t
7456 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7457 effect.
7458 Default is @code{in}.
7459
7460 @item start_frame, s
7461 Specify the number of the frame to start applying the fade
7462 effect at. Default is 0.
7463
7464 @item nb_frames, n
7465 The number of frames that the fade effect lasts. At the end of the
7466 fade-in effect, the output video will have the same intensity as the input video.
7467 At the end of the fade-out transition, the output video will be filled with the
7468 selected @option{color}.
7469 Default is 25.
7470
7471 @item alpha
7472 If set to 1, fade only alpha channel, if one exists on the input.
7473 Default value is 0.
7474
7475 @item start_time, st
7476 Specify the timestamp (in seconds) of the frame to start to apply the fade
7477 effect. If both start_frame and start_time are specified, the fade will start at
7478 whichever comes last.  Default is 0.
7479
7480 @item duration, d
7481 The number of seconds for which the fade effect has to last. At the end of the
7482 fade-in effect the output video will have the same intensity as the input video,
7483 at the end of the fade-out transition the output video will be filled with the
7484 selected @option{color}.
7485 If both duration and nb_frames are specified, duration is used. Default is 0
7486 (nb_frames is used by default).
7487
7488 @item color, c
7489 Specify the color of the fade. Default is "black".
7490 @end table
7491
7492 @subsection Examples
7493
7494 @itemize
7495 @item
7496 Fade in the first 30 frames of video:
7497 @example
7498 fade=in:0:30
7499 @end example
7500
7501 The command above is equivalent to:
7502 @example
7503 fade=t=in:s=0:n=30
7504 @end example
7505
7506 @item
7507 Fade out the last 45 frames of a 200-frame video:
7508 @example
7509 fade=out:155:45
7510 fade=type=out:start_frame=155:nb_frames=45
7511 @end example
7512
7513 @item
7514 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7515 @example
7516 fade=in:0:25, fade=out:975:25
7517 @end example
7518
7519 @item
7520 Make the first 5 frames yellow, then fade in from frame 5-24:
7521 @example
7522 fade=in:5:20:color=yellow
7523 @end example
7524
7525 @item
7526 Fade in alpha over first 25 frames of video:
7527 @example
7528 fade=in:0:25:alpha=1
7529 @end example
7530
7531 @item
7532 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7533 @example
7534 fade=t=in:st=5.5:d=0.5
7535 @end example
7536
7537 @end itemize
7538
7539 @section fftfilt
7540 Apply arbitrary expressions to samples in frequency domain
7541
7542 @table @option
7543 @item dc_Y
7544 Adjust the dc value (gain) of the luma plane of the image. The filter
7545 accepts an integer value in range @code{0} to @code{1000}. The default
7546 value is set to @code{0}.
7547
7548 @item dc_U
7549 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7550 filter accepts an integer value in range @code{0} to @code{1000}. The
7551 default value is set to @code{0}.
7552
7553 @item dc_V
7554 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7555 filter accepts an integer value in range @code{0} to @code{1000}. The
7556 default value is set to @code{0}.
7557
7558 @item weight_Y
7559 Set the frequency domain weight expression for the luma plane.
7560
7561 @item weight_U
7562 Set the frequency domain weight expression for the 1st chroma plane.
7563
7564 @item weight_V
7565 Set the frequency domain weight expression for the 2nd chroma plane.
7566
7567 The filter accepts the following variables:
7568 @item X
7569 @item Y
7570 The coordinates of the current sample.
7571
7572 @item W
7573 @item H
7574 The width and height of the image.
7575 @end table
7576
7577 @subsection Examples
7578
7579 @itemize
7580 @item
7581 High-pass:
7582 @example
7583 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7584 @end example
7585
7586 @item
7587 Low-pass:
7588 @example
7589 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7590 @end example
7591
7592 @item
7593 Sharpen:
7594 @example
7595 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7596 @end example
7597
7598 @item
7599 Blur:
7600 @example
7601 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7602 @end example
7603
7604 @end itemize
7605
7606 @section field
7607
7608 Extract a single field from an interlaced image using stride
7609 arithmetic to avoid wasting CPU time. The output frames are marked as
7610 non-interlaced.
7611
7612 The filter accepts the following options:
7613
7614 @table @option
7615 @item type
7616 Specify whether to extract the top (if the value is @code{0} or
7617 @code{top}) or the bottom field (if the value is @code{1} or
7618 @code{bottom}).
7619 @end table
7620
7621 @section fieldhint
7622
7623 Create new frames by copying the top and bottom fields from surrounding frames
7624 supplied as numbers by the hint file.
7625
7626 @table @option
7627 @item hint
7628 Set file containing hints: absolute/relative frame numbers.
7629
7630 There must be one line for each frame in a clip. Each line must contain two
7631 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7632 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7633 is current frame number for @code{absolute} mode or out of [-1, 1] range
7634 for @code{relative} mode. First number tells from which frame to pick up top
7635 field and second number tells from which frame to pick up bottom field.
7636
7637 If optionally followed by @code{+} output frame will be marked as interlaced,
7638 else if followed by @code{-} output frame will be marked as progressive, else
7639 it will be marked same as input frame.
7640 If line starts with @code{#} or @code{;} that line is skipped.
7641
7642 @item mode
7643 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7644 @end table
7645
7646 Example of first several lines of @code{hint} file for @code{relative} mode:
7647 @example
7648 0,0 - # first frame
7649 1,0 - # second frame, use third's frame top field and second's frame bottom field
7650 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7651 1,0 -
7652 0,0 -
7653 0,0 -
7654 1,0 -
7655 1,0 -
7656 1,0 -
7657 0,0 -
7658 0,0 -
7659 1,0 -
7660 1,0 -
7661 1,0 -
7662 0,0 -
7663 @end example
7664
7665 @section fieldmatch
7666
7667 Field matching filter for inverse telecine. It is meant to reconstruct the
7668 progressive frames from a telecined stream. The filter does not drop duplicated
7669 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7670 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7671
7672 The separation of the field matching and the decimation is notably motivated by
7673 the possibility of inserting a de-interlacing filter fallback between the two.
7674 If the source has mixed telecined and real interlaced content,
7675 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7676 But these remaining combed frames will be marked as interlaced, and thus can be
7677 de-interlaced by a later filter such as @ref{yadif} before decimation.
7678
7679 In addition to the various configuration options, @code{fieldmatch} can take an
7680 optional second stream, activated through the @option{ppsrc} option. If
7681 enabled, the frames reconstruction will be based on the fields and frames from
7682 this second stream. This allows the first input to be pre-processed in order to
7683 help the various algorithms of the filter, while keeping the output lossless
7684 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7685 or brightness/contrast adjustments can help.
7686
7687 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7688 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7689 which @code{fieldmatch} is based on. While the semantic and usage are very
7690 close, some behaviour and options names can differ.
7691
7692 The @ref{decimate} filter currently only works for constant frame rate input.
7693 If your input has mixed telecined (30fps) and progressive content with a lower
7694 framerate like 24fps use the following filterchain to produce the necessary cfr
7695 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7696
7697 The filter accepts the following options:
7698
7699 @table @option
7700 @item order
7701 Specify the assumed field order of the input stream. Available values are:
7702
7703 @table @samp
7704 @item auto
7705 Auto detect parity (use FFmpeg's internal parity value).
7706 @item bff
7707 Assume bottom field first.
7708 @item tff
7709 Assume top field first.
7710 @end table
7711
7712 Note that it is sometimes recommended not to trust the parity announced by the
7713 stream.
7714
7715 Default value is @var{auto}.
7716
7717 @item mode
7718 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7719 sense that it won't risk creating jerkiness due to duplicate frames when
7720 possible, but if there are bad edits or blended fields it will end up
7721 outputting combed frames when a good match might actually exist. On the other
7722 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7723 but will almost always find a good frame if there is one. The other values are
7724 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7725 jerkiness and creating duplicate frames versus finding good matches in sections
7726 with bad edits, orphaned fields, blended fields, etc.
7727
7728 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7729
7730 Available values are:
7731
7732 @table @samp
7733 @item pc
7734 2-way matching (p/c)
7735 @item pc_n
7736 2-way matching, and trying 3rd match if still combed (p/c + n)
7737 @item pc_u
7738 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7739 @item pc_n_ub
7740 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7741 still combed (p/c + n + u/b)
7742 @item pcn
7743 3-way matching (p/c/n)
7744 @item pcn_ub
7745 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7746 detected as combed (p/c/n + u/b)
7747 @end table
7748
7749 The parenthesis at the end indicate the matches that would be used for that
7750 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7751 @var{top}).
7752
7753 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7754 the slowest.
7755
7756 Default value is @var{pc_n}.
7757
7758 @item ppsrc
7759 Mark the main input stream as a pre-processed input, and enable the secondary
7760 input stream as the clean source to pick the fields from. See the filter
7761 introduction for more details. It is similar to the @option{clip2} feature from
7762 VFM/TFM.
7763
7764 Default value is @code{0} (disabled).
7765
7766 @item field
7767 Set the field to match from. It is recommended to set this to the same value as
7768 @option{order} unless you experience matching failures with that setting. In
7769 certain circumstances changing the field that is used to match from can have a
7770 large impact on matching performance. Available values are:
7771
7772 @table @samp
7773 @item auto
7774 Automatic (same value as @option{order}).
7775 @item bottom
7776 Match from the bottom field.
7777 @item top
7778 Match from the top field.
7779 @end table
7780
7781 Default value is @var{auto}.
7782
7783 @item mchroma
7784 Set whether or not chroma is included during the match comparisons. In most
7785 cases it is recommended to leave this enabled. You should set this to @code{0}
7786 only if your clip has bad chroma problems such as heavy rainbowing or other
7787 artifacts. Setting this to @code{0} could also be used to speed things up at
7788 the cost of some accuracy.
7789
7790 Default value is @code{1}.
7791
7792 @item y0
7793 @item y1
7794 These define an exclusion band which excludes the lines between @option{y0} and
7795 @option{y1} from being included in the field matching decision. An exclusion
7796 band can be used to ignore subtitles, a logo, or other things that may
7797 interfere with the matching. @option{y0} sets the starting scan line and
7798 @option{y1} sets the ending line; all lines in between @option{y0} and
7799 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7800 @option{y0} and @option{y1} to the same value will disable the feature.
7801 @option{y0} and @option{y1} defaults to @code{0}.
7802
7803 @item scthresh
7804 Set the scene change detection threshold as a percentage of maximum change on
7805 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7806 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7807 @option{scthresh} is @code{[0.0, 100.0]}.
7808
7809 Default value is @code{12.0}.
7810
7811 @item combmatch
7812 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7813 account the combed scores of matches when deciding what match to use as the
7814 final match. Available values are:
7815
7816 @table @samp
7817 @item none
7818 No final matching based on combed scores.
7819 @item sc
7820 Combed scores are only used when a scene change is detected.
7821 @item full
7822 Use combed scores all the time.
7823 @end table
7824
7825 Default is @var{sc}.
7826
7827 @item combdbg
7828 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7829 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7830 Available values are:
7831
7832 @table @samp
7833 @item none
7834 No forced calculation.
7835 @item pcn
7836 Force p/c/n calculations.
7837 @item pcnub
7838 Force p/c/n/u/b calculations.
7839 @end table
7840
7841 Default value is @var{none}.
7842
7843 @item cthresh
7844 This is the area combing threshold used for combed frame detection. This
7845 essentially controls how "strong" or "visible" combing must be to be detected.
7846 Larger values mean combing must be more visible and smaller values mean combing
7847 can be less visible or strong and still be detected. Valid settings are from
7848 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7849 be detected as combed). This is basically a pixel difference value. A good
7850 range is @code{[8, 12]}.
7851
7852 Default value is @code{9}.
7853
7854 @item chroma
7855 Sets whether or not chroma is considered in the combed frame decision.  Only
7856 disable this if your source has chroma problems (rainbowing, etc.) that are
7857 causing problems for the combed frame detection with chroma enabled. Actually,
7858 using @option{chroma}=@var{0} is usually more reliable, except for the case
7859 where there is chroma only combing in the source.
7860
7861 Default value is @code{0}.
7862
7863 @item blockx
7864 @item blocky
7865 Respectively set the x-axis and y-axis size of the window used during combed
7866 frame detection. This has to do with the size of the area in which
7867 @option{combpel} pixels are required to be detected as combed for a frame to be
7868 declared combed. See the @option{combpel} parameter description for more info.
7869 Possible values are any number that is a power of 2 starting at 4 and going up
7870 to 512.
7871
7872 Default value is @code{16}.
7873
7874 @item combpel
7875 The number of combed pixels inside any of the @option{blocky} by
7876 @option{blockx} size blocks on the frame for the frame to be detected as
7877 combed. While @option{cthresh} controls how "visible" the combing must be, this
7878 setting controls "how much" combing there must be in any localized area (a
7879 window defined by the @option{blockx} and @option{blocky} settings) on the
7880 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7881 which point no frames will ever be detected as combed). This setting is known
7882 as @option{MI} in TFM/VFM vocabulary.
7883
7884 Default value is @code{80}.
7885 @end table
7886
7887 @anchor{p/c/n/u/b meaning}
7888 @subsection p/c/n/u/b meaning
7889
7890 @subsubsection p/c/n
7891
7892 We assume the following telecined stream:
7893
7894 @example
7895 Top fields:     1 2 2 3 4
7896 Bottom fields:  1 2 3 4 4
7897 @end example
7898
7899 The numbers correspond to the progressive frame the fields relate to. Here, the
7900 first two frames are progressive, the 3rd and 4th are combed, and so on.
7901
7902 When @code{fieldmatch} is configured to run a matching from bottom
7903 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7904
7905 @example
7906 Input stream:
7907                 T     1 2 2 3 4
7908                 B     1 2 3 4 4   <-- matching reference
7909
7910 Matches:              c c n n c
7911
7912 Output stream:
7913                 T     1 2 3 4 4
7914                 B     1 2 3 4 4
7915 @end example
7916
7917 As a result of the field matching, we can see that some frames get duplicated.
7918 To perform a complete inverse telecine, you need to rely on a decimation filter
7919 after this operation. See for instance the @ref{decimate} filter.
7920
7921 The same operation now matching from top fields (@option{field}=@var{top})
7922 looks like this:
7923
7924 @example
7925 Input stream:
7926                 T     1 2 2 3 4   <-- matching reference
7927                 B     1 2 3 4 4
7928
7929 Matches:              c c p p c
7930
7931 Output stream:
7932                 T     1 2 2 3 4
7933                 B     1 2 2 3 4
7934 @end example
7935
7936 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7937 basically, they refer to the frame and field of the opposite parity:
7938
7939 @itemize
7940 @item @var{p} matches the field of the opposite parity in the previous frame
7941 @item @var{c} matches the field of the opposite parity in the current frame
7942 @item @var{n} matches the field of the opposite parity in the next frame
7943 @end itemize
7944
7945 @subsubsection u/b
7946
7947 The @var{u} and @var{b} matching are a bit special in the sense that they match
7948 from the opposite parity flag. In the following examples, we assume that we are
7949 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7950 'x' is placed above and below each matched fields.
7951
7952 With bottom matching (@option{field}=@var{bottom}):
7953 @example
7954 Match:           c         p           n          b          u
7955
7956                  x       x               x        x          x
7957   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7958   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7959                  x         x           x        x              x
7960
7961 Output frames:
7962                  2          1          2          2          2
7963                  2          2          2          1          3
7964 @end example
7965
7966 With top matching (@option{field}=@var{top}):
7967 @example
7968 Match:           c         p           n          b          u
7969
7970                  x         x           x        x              x
7971   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7972   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7973                  x       x               x        x          x
7974
7975 Output frames:
7976                  2          2          2          1          2
7977                  2          1          3          2          2
7978 @end example
7979
7980 @subsection Examples
7981
7982 Simple IVTC of a top field first telecined stream:
7983 @example
7984 fieldmatch=order=tff:combmatch=none, decimate
7985 @end example
7986
7987 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7988 @example
7989 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7990 @end example
7991
7992 @section fieldorder
7993
7994 Transform the field order of the input video.
7995
7996 It accepts the following parameters:
7997
7998 @table @option
7999
8000 @item order
8001 The output field order. Valid values are @var{tff} for top field first or @var{bff}
8002 for bottom field first.
8003 @end table
8004
8005 The default value is @samp{tff}.
8006
8007 The transformation is done by shifting the picture content up or down
8008 by one line, and filling the remaining line with appropriate picture content.
8009 This method is consistent with most broadcast field order converters.
8010
8011 If the input video is not flagged as being interlaced, or it is already
8012 flagged as being of the required output field order, then this filter does
8013 not alter the incoming video.
8014
8015 It is very useful when converting to or from PAL DV material,
8016 which is bottom field first.
8017
8018 For example:
8019 @example
8020 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
8021 @end example
8022
8023 @section fifo, afifo
8024
8025 Buffer input images and send them when they are requested.
8026
8027 It is mainly useful when auto-inserted by the libavfilter
8028 framework.
8029
8030 It does not take parameters.
8031
8032 @section find_rect
8033
8034 Find a rectangular object
8035
8036 It accepts the following options:
8037
8038 @table @option
8039 @item object
8040 Filepath of the object image, needs to be in gray8.
8041
8042 @item threshold
8043 Detection threshold, default is 0.5.
8044
8045 @item mipmaps
8046 Number of mipmaps, default is 3.
8047
8048 @item xmin, ymin, xmax, ymax
8049 Specifies the rectangle in which to search.
8050 @end table
8051
8052 @subsection Examples
8053
8054 @itemize
8055 @item
8056 Generate a representative palette of a given video using @command{ffmpeg}:
8057 @example
8058 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8059 @end example
8060 @end itemize
8061
8062 @section cover_rect
8063
8064 Cover a rectangular object
8065
8066 It accepts the following options:
8067
8068 @table @option
8069 @item cover
8070 Filepath of the optional cover image, needs to be in yuv420.
8071
8072 @item mode
8073 Set covering mode.
8074
8075 It accepts the following values:
8076 @table @samp
8077 @item cover
8078 cover it by the supplied image
8079 @item blur
8080 cover it by interpolating the surrounding pixels
8081 @end table
8082
8083 Default value is @var{blur}.
8084 @end table
8085
8086 @subsection Examples
8087
8088 @itemize
8089 @item
8090 Generate a representative palette of a given video using @command{ffmpeg}:
8091 @example
8092 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8093 @end example
8094 @end itemize
8095
8096 @anchor{format}
8097 @section format
8098
8099 Convert the input video to one of the specified pixel formats.
8100 Libavfilter will try to pick one that is suitable as input to
8101 the next filter.
8102
8103 It accepts the following parameters:
8104 @table @option
8105
8106 @item pix_fmts
8107 A '|'-separated list of pixel format names, such as
8108 "pix_fmts=yuv420p|monow|rgb24".
8109
8110 @end table
8111
8112 @subsection Examples
8113
8114 @itemize
8115 @item
8116 Convert the input video to the @var{yuv420p} format
8117 @example
8118 format=pix_fmts=yuv420p
8119 @end example
8120
8121 Convert the input video to any of the formats in the list
8122 @example
8123 format=pix_fmts=yuv420p|yuv444p|yuv410p
8124 @end example
8125 @end itemize
8126
8127 @anchor{fps}
8128 @section fps
8129
8130 Convert the video to specified constant frame rate by duplicating or dropping
8131 frames as necessary.
8132
8133 It accepts the following parameters:
8134 @table @option
8135
8136 @item fps
8137 The desired output frame rate. The default is @code{25}.
8138
8139 @item round
8140 Rounding method.
8141
8142 Possible values are:
8143 @table @option
8144 @item zero
8145 zero round towards 0
8146 @item inf
8147 round away from 0
8148 @item down
8149 round towards -infinity
8150 @item up
8151 round towards +infinity
8152 @item near
8153 round to nearest
8154 @end table
8155 The default is @code{near}.
8156
8157 @item start_time
8158 Assume the first PTS should be the given value, in seconds. This allows for
8159 padding/trimming at the start of stream. By default, no assumption is made
8160 about the first frame's expected PTS, so no padding or trimming is done.
8161 For example, this could be set to 0 to pad the beginning with duplicates of
8162 the first frame if a video stream starts after the audio stream or to trim any
8163 frames with a negative PTS.
8164
8165 @end table
8166
8167 Alternatively, the options can be specified as a flat string:
8168 @var{fps}[:@var{round}].
8169
8170 See also the @ref{setpts} filter.
8171
8172 @subsection Examples
8173
8174 @itemize
8175 @item
8176 A typical usage in order to set the fps to 25:
8177 @example
8178 fps=fps=25
8179 @end example
8180
8181 @item
8182 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8183 @example
8184 fps=fps=film:round=near
8185 @end example
8186 @end itemize
8187
8188 @section framepack
8189
8190 Pack two different video streams into a stereoscopic video, setting proper
8191 metadata on supported codecs. The two views should have the same size and
8192 framerate and processing will stop when the shorter video ends. Please note
8193 that you may conveniently adjust view properties with the @ref{scale} and
8194 @ref{fps} filters.
8195
8196 It accepts the following parameters:
8197 @table @option
8198
8199 @item format
8200 The desired packing format. Supported values are:
8201
8202 @table @option
8203
8204 @item sbs
8205 The views are next to each other (default).
8206
8207 @item tab
8208 The views are on top of each other.
8209
8210 @item lines
8211 The views are packed by line.
8212
8213 @item columns
8214 The views are packed by column.
8215
8216 @item frameseq
8217 The views are temporally interleaved.
8218
8219 @end table
8220
8221 @end table
8222
8223 Some examples:
8224
8225 @example
8226 # Convert left and right views into a frame-sequential video
8227 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8228
8229 # Convert views into a side-by-side video with the same output resolution as the input
8230 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
8231 @end example
8232
8233 @section framerate
8234
8235 Change the frame rate by interpolating new video output frames from the source
8236 frames.
8237
8238 This filter is not designed to function correctly with interlaced media. If
8239 you wish to change the frame rate of interlaced media then you are required
8240 to deinterlace before this filter and re-interlace after this filter.
8241
8242 A description of the accepted options follows.
8243
8244 @table @option
8245 @item fps
8246 Specify the output frames per second. This option can also be specified
8247 as a value alone. The default is @code{50}.
8248
8249 @item interp_start
8250 Specify the start of a range where the output frame will be created as a
8251 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8252 the default is @code{15}.
8253
8254 @item interp_end
8255 Specify the end of a range where the output frame will be created as a
8256 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8257 the default is @code{240}.
8258
8259 @item scene
8260 Specify the level at which a scene change is detected as a value between
8261 0 and 100 to indicate a new scene; a low value reflects a low
8262 probability for the current frame to introduce a new scene, while a higher
8263 value means the current frame is more likely to be one.
8264 The default is @code{7}.
8265
8266 @item flags
8267 Specify flags influencing the filter process.
8268
8269 Available value for @var{flags} is:
8270
8271 @table @option
8272 @item scene_change_detect, scd
8273 Enable scene change detection using the value of the option @var{scene}.
8274 This flag is enabled by default.
8275 @end table
8276 @end table
8277
8278 @section framestep
8279
8280 Select one frame every N-th frame.
8281
8282 This filter accepts the following option:
8283 @table @option
8284 @item step
8285 Select frame after every @code{step} frames.
8286 Allowed values are positive integers higher than 0. Default value is @code{1}.
8287 @end table
8288
8289 @anchor{frei0r}
8290 @section frei0r
8291
8292 Apply a frei0r effect to the input video.
8293
8294 To enable the compilation of this filter, you need to install the frei0r
8295 header and configure FFmpeg with @code{--enable-frei0r}.
8296
8297 It accepts the following parameters:
8298
8299 @table @option
8300
8301 @item filter_name
8302 The name of the frei0r effect to load. If the environment variable
8303 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8304 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8305 Otherwise, the standard frei0r paths are searched, in this order:
8306 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8307 @file{/usr/lib/frei0r-1/}.
8308
8309 @item filter_params
8310 A '|'-separated list of parameters to pass to the frei0r effect.
8311
8312 @end table
8313
8314 A frei0r effect parameter can be a boolean (its value is either
8315 "y" or "n"), a double, a color (specified as
8316 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8317 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8318 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8319 @var{X} and @var{Y} are floating point numbers) and/or a string.
8320
8321 The number and types of parameters depend on the loaded effect. If an
8322 effect parameter is not specified, the default value is set.
8323
8324 @subsection Examples
8325
8326 @itemize
8327 @item
8328 Apply the distort0r effect, setting the first two double parameters:
8329 @example
8330 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8331 @end example
8332
8333 @item
8334 Apply the colordistance effect, taking a color as the first parameter:
8335 @example
8336 frei0r=colordistance:0.2/0.3/0.4
8337 frei0r=colordistance:violet
8338 frei0r=colordistance:0x112233
8339 @end example
8340
8341 @item
8342 Apply the perspective effect, specifying the top left and top right image
8343 positions:
8344 @example
8345 frei0r=perspective:0.2/0.2|0.8/0.2
8346 @end example
8347 @end itemize
8348
8349 For more information, see
8350 @url{http://frei0r.dyne.org}
8351
8352 @section fspp
8353
8354 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8355
8356 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8357 processing filter, one of them is performed once per block, not per pixel.
8358 This allows for much higher speed.
8359
8360 The filter accepts the following options:
8361
8362 @table @option
8363 @item quality
8364 Set quality. This option defines the number of levels for averaging. It accepts
8365 an integer in the range 4-5. Default value is @code{4}.
8366
8367 @item qp
8368 Force a constant quantization parameter. It accepts an integer in range 0-63.
8369 If not set, the filter will use the QP from the video stream (if available).
8370
8371 @item strength
8372 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8373 more details but also more artifacts, while higher values make the image smoother
8374 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8375
8376 @item use_bframe_qp
8377 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8378 option may cause flicker since the B-Frames have often larger QP. Default is
8379 @code{0} (not enabled).
8380
8381 @end table
8382
8383 @section gblur
8384
8385 Apply Gaussian blur filter.
8386
8387 The filter accepts the following options:
8388
8389 @table @option
8390 @item sigma
8391 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
8392
8393 @item steps
8394 Set number of steps for Gaussian approximation. Defauls is @code{1}.
8395
8396 @item planes
8397 Set which planes to filter. By default all planes are filtered.
8398
8399 @item sigmaV
8400 Set vertical sigma, if negative it will be same as @code{sigma}.
8401 Default is @code{-1}.
8402 @end table
8403
8404 @section geq
8405
8406 The filter accepts the following options:
8407
8408 @table @option
8409 @item lum_expr, lum
8410 Set the luminance expression.
8411 @item cb_expr, cb
8412 Set the chrominance blue expression.
8413 @item cr_expr, cr
8414 Set the chrominance red expression.
8415 @item alpha_expr, a
8416 Set the alpha expression.
8417 @item red_expr, r
8418 Set the red expression.
8419 @item green_expr, g
8420 Set the green expression.
8421 @item blue_expr, b
8422 Set the blue expression.
8423 @end table
8424
8425 The colorspace is selected according to the specified options. If one
8426 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8427 options is specified, the filter will automatically select a YCbCr
8428 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8429 @option{blue_expr} options is specified, it will select an RGB
8430 colorspace.
8431
8432 If one of the chrominance expression is not defined, it falls back on the other
8433 one. If no alpha expression is specified it will evaluate to opaque value.
8434 If none of chrominance expressions are specified, they will evaluate
8435 to the luminance expression.
8436
8437 The expressions can use the following variables and functions:
8438
8439 @table @option
8440 @item N
8441 The sequential number of the filtered frame, starting from @code{0}.
8442
8443 @item X
8444 @item Y
8445 The coordinates of the current sample.
8446
8447 @item W
8448 @item H
8449 The width and height of the image.
8450
8451 @item SW
8452 @item SH
8453 Width and height scale depending on the currently filtered plane. It is the
8454 ratio between the corresponding luma plane number of pixels and the current
8455 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8456 @code{0.5,0.5} for chroma planes.
8457
8458 @item T
8459 Time of the current frame, expressed in seconds.
8460
8461 @item p(x, y)
8462 Return the value of the pixel at location (@var{x},@var{y}) of the current
8463 plane.
8464
8465 @item lum(x, y)
8466 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8467 plane.
8468
8469 @item cb(x, y)
8470 Return the value of the pixel at location (@var{x},@var{y}) of the
8471 blue-difference chroma plane. Return 0 if there is no such plane.
8472
8473 @item cr(x, y)
8474 Return the value of the pixel at location (@var{x},@var{y}) of the
8475 red-difference chroma plane. Return 0 if there is no such plane.
8476
8477 @item r(x, y)
8478 @item g(x, y)
8479 @item b(x, y)
8480 Return the value of the pixel at location (@var{x},@var{y}) of the
8481 red/green/blue component. Return 0 if there is no such component.
8482
8483 @item alpha(x, y)
8484 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8485 plane. Return 0 if there is no such plane.
8486 @end table
8487
8488 For functions, if @var{x} and @var{y} are outside the area, the value will be
8489 automatically clipped to the closer edge.
8490
8491 @subsection Examples
8492
8493 @itemize
8494 @item
8495 Flip the image horizontally:
8496 @example
8497 geq=p(W-X\,Y)
8498 @end example
8499
8500 @item
8501 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8502 wavelength of 100 pixels:
8503 @example
8504 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8505 @end example
8506
8507 @item
8508 Generate a fancy enigmatic moving light:
8509 @example
8510 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
8511 @end example
8512
8513 @item
8514 Generate a quick emboss effect:
8515 @example
8516 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8517 @end example
8518
8519 @item
8520 Modify RGB components depending on pixel position:
8521 @example
8522 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8523 @end example
8524
8525 @item
8526 Create a radial gradient that is the same size as the input (also see
8527 the @ref{vignette} filter):
8528 @example
8529 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8530 @end example
8531 @end itemize
8532
8533 @section gradfun
8534
8535 Fix the banding artifacts that are sometimes introduced into nearly flat
8536 regions by truncation to 8-bit color depth.
8537 Interpolate the gradients that should go where the bands are, and
8538 dither them.
8539
8540 It is designed for playback only.  Do not use it prior to
8541 lossy compression, because compression tends to lose the dither and
8542 bring back the bands.
8543
8544 It accepts the following parameters:
8545
8546 @table @option
8547
8548 @item strength
8549 The maximum amount by which the filter will change any one pixel. This is also
8550 the threshold for detecting nearly flat regions. Acceptable values range from
8551 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8552 valid range.
8553
8554 @item radius
8555 The neighborhood to fit the gradient to. A larger radius makes for smoother
8556 gradients, but also prevents the filter from modifying the pixels near detailed
8557 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8558 values will be clipped to the valid range.
8559
8560 @end table
8561
8562 Alternatively, the options can be specified as a flat string:
8563 @var{strength}[:@var{radius}]
8564
8565 @subsection Examples
8566
8567 @itemize
8568 @item
8569 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8570 @example
8571 gradfun=3.5:8
8572 @end example
8573
8574 @item
8575 Specify radius, omitting the strength (which will fall-back to the default
8576 value):
8577 @example
8578 gradfun=radius=8
8579 @end example
8580
8581 @end itemize
8582
8583 @anchor{haldclut}
8584 @section haldclut
8585
8586 Apply a Hald CLUT to a video stream.
8587
8588 First input is the video stream to process, and second one is the Hald CLUT.
8589 The Hald CLUT input can be a simple picture or a complete video stream.
8590
8591 The filter accepts the following options:
8592
8593 @table @option
8594 @item shortest
8595 Force termination when the shortest input terminates. Default is @code{0}.
8596 @item repeatlast
8597 Continue applying the last CLUT after the end of the stream. A value of
8598 @code{0} disable the filter after the last frame of the CLUT is reached.
8599 Default is @code{1}.
8600 @end table
8601
8602 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8603 filters share the same internals).
8604
8605 More information about the Hald CLUT can be found on Eskil Steenberg's website
8606 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8607
8608 @subsection Workflow examples
8609
8610 @subsubsection Hald CLUT video stream
8611
8612 Generate an identity Hald CLUT stream altered with various effects:
8613 @example
8614 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
8615 @end example
8616
8617 Note: make sure you use a lossless codec.
8618
8619 Then use it with @code{haldclut} to apply it on some random stream:
8620 @example
8621 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8622 @end example
8623
8624 The Hald CLUT will be applied to the 10 first seconds (duration of
8625 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8626 to the remaining frames of the @code{mandelbrot} stream.
8627
8628 @subsubsection Hald CLUT with preview
8629
8630 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8631 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8632 biggest possible square starting at the top left of the picture. The remaining
8633 padding pixels (bottom or right) will be ignored. This area can be used to add
8634 a preview of the Hald CLUT.
8635
8636 Typically, the following generated Hald CLUT will be supported by the
8637 @code{haldclut} filter:
8638
8639 @example
8640 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8641    pad=iw+320 [padded_clut];
8642    smptebars=s=320x256, split [a][b];
8643    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8644    [main][b] overlay=W-320" -frames:v 1 clut.png
8645 @end example
8646
8647 It contains the original and a preview of the effect of the CLUT: SMPTE color
8648 bars are displayed on the right-top, and below the same color bars processed by
8649 the color changes.
8650
8651 Then, the effect of this Hald CLUT can be visualized with:
8652 @example
8653 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8654 @end example
8655
8656 @section hflip
8657
8658 Flip the input video horizontally.
8659
8660 For example, to horizontally flip the input video with @command{ffmpeg}:
8661 @example
8662 ffmpeg -i in.avi -vf "hflip" out.avi
8663 @end example
8664
8665 @section histeq
8666 This filter applies a global color histogram equalization on a
8667 per-frame basis.
8668
8669 It can be used to correct video that has a compressed range of pixel
8670 intensities.  The filter redistributes the pixel intensities to
8671 equalize their distribution across the intensity range. It may be
8672 viewed as an "automatically adjusting contrast filter". This filter is
8673 useful only for correcting degraded or poorly captured source
8674 video.
8675
8676 The filter accepts the following options:
8677
8678 @table @option
8679 @item strength
8680 Determine the amount of equalization to be applied.  As the strength
8681 is reduced, the distribution of pixel intensities more-and-more
8682 approaches that of the input frame. The value must be a float number
8683 in the range [0,1] and defaults to 0.200.
8684
8685 @item intensity
8686 Set the maximum intensity that can generated and scale the output
8687 values appropriately.  The strength should be set as desired and then
8688 the intensity can be limited if needed to avoid washing-out. The value
8689 must be a float number in the range [0,1] and defaults to 0.210.
8690
8691 @item antibanding
8692 Set the antibanding level. If enabled the filter will randomly vary
8693 the luminance of output pixels by a small amount to avoid banding of
8694 the histogram. Possible values are @code{none}, @code{weak} or
8695 @code{strong}. It defaults to @code{none}.
8696 @end table
8697
8698 @section histogram
8699
8700 Compute and draw a color distribution histogram for the input video.
8701
8702 The computed histogram is a representation of the color component
8703 distribution in an image.
8704
8705 Standard histogram displays the color components distribution in an image.
8706 Displays color graph for each color component. Shows distribution of
8707 the Y, U, V, A or R, G, B components, depending on input format, in the
8708 current frame. Below each graph a color component scale meter is shown.
8709
8710 The filter accepts the following options:
8711
8712 @table @option
8713 @item level_height
8714 Set height of level. Default value is @code{200}.
8715 Allowed range is [50, 2048].
8716
8717 @item scale_height
8718 Set height of color scale. Default value is @code{12}.
8719 Allowed range is [0, 40].
8720
8721 @item display_mode
8722 Set display mode.
8723 It accepts the following values:
8724 @table @samp
8725 @item parade
8726 Per color component graphs are placed below each other.
8727
8728 @item overlay
8729 Presents information identical to that in the @code{parade}, except
8730 that the graphs representing color components are superimposed directly
8731 over one another.
8732 @end table
8733 Default is @code{parade}.
8734
8735 @item levels_mode
8736 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8737 Default is @code{linear}.
8738
8739 @item components
8740 Set what color components to display.
8741 Default is @code{7}.
8742
8743 @item fgopacity
8744 Set foreground opacity. Default is @code{0.7}.
8745
8746 @item bgopacity
8747 Set background opacity. Default is @code{0.5}.
8748 @end table
8749
8750 @subsection Examples
8751
8752 @itemize
8753
8754 @item
8755 Calculate and draw histogram:
8756 @example
8757 ffplay -i input -vf histogram
8758 @end example
8759
8760 @end itemize
8761
8762 @anchor{hqdn3d}
8763 @section hqdn3d
8764
8765 This is a high precision/quality 3d denoise filter. It aims to reduce
8766 image noise, producing smooth images and making still images really
8767 still. It should enhance compressibility.
8768
8769 It accepts the following optional parameters:
8770
8771 @table @option
8772 @item luma_spatial
8773 A non-negative floating point number which specifies spatial luma strength.
8774 It defaults to 4.0.
8775
8776 @item chroma_spatial
8777 A non-negative floating point number which specifies spatial chroma strength.
8778 It defaults to 3.0*@var{luma_spatial}/4.0.
8779
8780 @item luma_tmp
8781 A floating point number which specifies luma temporal strength. It defaults to
8782 6.0*@var{luma_spatial}/4.0.
8783
8784 @item chroma_tmp
8785 A floating point number which specifies chroma temporal strength. It defaults to
8786 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8787 @end table
8788
8789 @anchor{hwupload_cuda}
8790 @section hwupload_cuda
8791
8792 Upload system memory frames to a CUDA device.
8793
8794 It accepts the following optional parameters:
8795
8796 @table @option
8797 @item device
8798 The number of the CUDA device to use
8799 @end table
8800
8801 @section hqx
8802
8803 Apply a high-quality magnification filter designed for pixel art. This filter
8804 was originally created by Maxim Stepin.
8805
8806 It accepts the following option:
8807
8808 @table @option
8809 @item n
8810 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8811 @code{hq3x} and @code{4} for @code{hq4x}.
8812 Default is @code{3}.
8813 @end table
8814
8815 @section hstack
8816 Stack input videos horizontally.
8817
8818 All streams must be of same pixel format and of same height.
8819
8820 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8821 to create same output.
8822
8823 The filter accept the following option:
8824
8825 @table @option
8826 @item inputs
8827 Set number of input streams. Default is 2.
8828
8829 @item shortest
8830 If set to 1, force the output to terminate when the shortest input
8831 terminates. Default value is 0.
8832 @end table
8833
8834 @section hue
8835
8836 Modify the hue and/or the saturation of the input.
8837
8838 It accepts the following parameters:
8839
8840 @table @option
8841 @item h
8842 Specify the hue angle as a number of degrees. It accepts an expression,
8843 and defaults to "0".
8844
8845 @item s
8846 Specify the saturation in the [-10,10] range. It accepts an expression and
8847 defaults to "1".
8848
8849 @item H
8850 Specify the hue angle as a number of radians. It accepts an
8851 expression, and defaults to "0".
8852
8853 @item b
8854 Specify the brightness in the [-10,10] range. It accepts an expression and
8855 defaults to "0".
8856 @end table
8857
8858 @option{h} and @option{H} are mutually exclusive, and can't be
8859 specified at the same time.
8860
8861 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8862 expressions containing the following constants:
8863
8864 @table @option
8865 @item n
8866 frame count of the input frame starting from 0
8867
8868 @item pts
8869 presentation timestamp of the input frame expressed in time base units
8870
8871 @item r
8872 frame rate of the input video, NAN if the input frame rate is unknown
8873
8874 @item t
8875 timestamp expressed in seconds, NAN if the input timestamp is unknown
8876
8877 @item tb
8878 time base of the input video
8879 @end table
8880
8881 @subsection Examples
8882
8883 @itemize
8884 @item
8885 Set the hue to 90 degrees and the saturation to 1.0:
8886 @example
8887 hue=h=90:s=1
8888 @end example
8889
8890 @item
8891 Same command but expressing the hue in radians:
8892 @example
8893 hue=H=PI/2:s=1
8894 @end example
8895
8896 @item
8897 Rotate hue and make the saturation swing between 0
8898 and 2 over a period of 1 second:
8899 @example
8900 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8901 @end example
8902
8903 @item
8904 Apply a 3 seconds saturation fade-in effect starting at 0:
8905 @example
8906 hue="s=min(t/3\,1)"
8907 @end example
8908
8909 The general fade-in expression can be written as:
8910 @example
8911 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8912 @end example
8913
8914 @item
8915 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8916 @example
8917 hue="s=max(0\, min(1\, (8-t)/3))"
8918 @end example
8919
8920 The general fade-out expression can be written as:
8921 @example
8922 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8923 @end example
8924
8925 @end itemize
8926
8927 @subsection Commands
8928
8929 This filter supports the following commands:
8930 @table @option
8931 @item b
8932 @item s
8933 @item h
8934 @item H
8935 Modify the hue and/or the saturation and/or brightness of the input video.
8936 The command accepts the same syntax of the corresponding option.
8937
8938 If the specified expression is not valid, it is kept at its current
8939 value.
8940 @end table
8941
8942 @section hysteresis
8943
8944 Grow first stream into second stream by connecting components.
8945 This makes it possible to build more robust edge masks.
8946
8947 This filter accepts the following options:
8948
8949 @table @option
8950 @item planes
8951 Set which planes will be processed as bitmap, unprocessed planes will be
8952 copied from first stream.
8953 By default value 0xf, all planes will be processed.
8954
8955 @item threshold
8956 Set threshold which is used in filtering. If pixel component value is higher than
8957 this value filter algorithm for connecting components is activated.
8958 By default value is 0.
8959 @end table
8960
8961 @section idet
8962
8963 Detect video interlacing type.
8964
8965 This filter tries to detect if the input frames are interlaced, progressive,
8966 top or bottom field first. It will also try to detect fields that are
8967 repeated between adjacent frames (a sign of telecine).
8968
8969 Single frame detection considers only immediately adjacent frames when classifying each frame.
8970 Multiple frame detection incorporates the classification history of previous frames.
8971
8972 The filter will log these metadata values:
8973
8974 @table @option
8975 @item single.current_frame
8976 Detected type of current frame using single-frame detection. One of:
8977 ``tff'' (top field first), ``bff'' (bottom field first),
8978 ``progressive'', or ``undetermined''
8979
8980 @item single.tff
8981 Cumulative number of frames detected as top field first using single-frame detection.
8982
8983 @item multiple.tff
8984 Cumulative number of frames detected as top field first using multiple-frame detection.
8985
8986 @item single.bff
8987 Cumulative number of frames detected as bottom field first using single-frame detection.
8988
8989 @item multiple.current_frame
8990 Detected type of current frame using multiple-frame detection. One of:
8991 ``tff'' (top field first), ``bff'' (bottom field first),
8992 ``progressive'', or ``undetermined''
8993
8994 @item multiple.bff
8995 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8996
8997 @item single.progressive
8998 Cumulative number of frames detected as progressive using single-frame detection.
8999
9000 @item multiple.progressive
9001 Cumulative number of frames detected as progressive using multiple-frame detection.
9002
9003 @item single.undetermined
9004 Cumulative number of frames that could not be classified using single-frame detection.
9005
9006 @item multiple.undetermined
9007 Cumulative number of frames that could not be classified using multiple-frame detection.
9008
9009 @item repeated.current_frame
9010 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
9011
9012 @item repeated.neither
9013 Cumulative number of frames with no repeated field.
9014
9015 @item repeated.top
9016 Cumulative number of frames with the top field repeated from the previous frame's top field.
9017
9018 @item repeated.bottom
9019 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
9020 @end table
9021
9022 The filter accepts the following options:
9023
9024 @table @option
9025 @item intl_thres
9026 Set interlacing threshold.
9027 @item prog_thres
9028 Set progressive threshold.
9029 @item rep_thres
9030 Threshold for repeated field detection.
9031 @item half_life
9032 Number of frames after which a given frame's contribution to the
9033 statistics is halved (i.e., it contributes only 0.5 to its
9034 classification). The default of 0 means that all frames seen are given
9035 full weight of 1.0 forever.
9036 @item analyze_interlaced_flag
9037 When this is not 0 then idet will use the specified number of frames to determine
9038 if the interlaced flag is accurate, it will not count undetermined frames.
9039 If the flag is found to be accurate it will be used without any further
9040 computations, if it is found to be inaccurate it will be cleared without any
9041 further computations. This allows inserting the idet filter as a low computational
9042 method to clean up the interlaced flag
9043 @end table
9044
9045 @section il
9046
9047 Deinterleave or interleave fields.
9048
9049 This filter allows one to process interlaced images fields without
9050 deinterlacing them. Deinterleaving splits the input frame into 2
9051 fields (so called half pictures). Odd lines are moved to the top
9052 half of the output image, even lines to the bottom half.
9053 You can process (filter) them independently and then re-interleave them.
9054
9055 The filter accepts the following options:
9056
9057 @table @option
9058 @item luma_mode, l
9059 @item chroma_mode, c
9060 @item alpha_mode, a
9061 Available values for @var{luma_mode}, @var{chroma_mode} and
9062 @var{alpha_mode} are:
9063
9064 @table @samp
9065 @item none
9066 Do nothing.
9067
9068 @item deinterleave, d
9069 Deinterleave fields, placing one above the other.
9070
9071 @item interleave, i
9072 Interleave fields. Reverse the effect of deinterleaving.
9073 @end table
9074 Default value is @code{none}.
9075
9076 @item luma_swap, ls
9077 @item chroma_swap, cs
9078 @item alpha_swap, as
9079 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
9080 @end table
9081
9082 @section inflate
9083
9084 Apply inflate effect to the video.
9085
9086 This filter replaces the pixel by the local(3x3) average by taking into account
9087 only values higher than the pixel.
9088
9089 It accepts the following options:
9090
9091 @table @option
9092 @item threshold0
9093 @item threshold1
9094 @item threshold2
9095 @item threshold3
9096 Limit the maximum change for each plane, default is 65535.
9097 If 0, plane will remain unchanged.
9098 @end table
9099
9100 @section interlace
9101
9102 Simple interlacing filter from progressive contents. This interleaves upper (or
9103 lower) lines from odd frames with lower (or upper) lines from even frames,
9104 halving the frame rate and preserving image height.
9105
9106 @example
9107    Original        Original             New Frame
9108    Frame 'j'      Frame 'j+1'             (tff)
9109   ==========      ===========       ==================
9110     Line 0  -------------------->    Frame 'j' Line 0
9111     Line 1          Line 1  ---->   Frame 'j+1' Line 1
9112     Line 2 --------------------->    Frame 'j' Line 2
9113     Line 3          Line 3  ---->   Frame 'j+1' Line 3
9114      ...             ...                   ...
9115 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
9116 @end example
9117
9118 It accepts the following optional parameters:
9119
9120 @table @option
9121 @item scan
9122 This determines whether the interlaced frame is taken from the even
9123 (tff - default) or odd (bff) lines of the progressive frame.
9124
9125 @item lowpass
9126 Enable (default) or disable the vertical lowpass filter to avoid twitter
9127 interlacing and reduce moire patterns.
9128 @end table
9129
9130 @section kerndeint
9131
9132 Deinterlace input video by applying Donald Graft's adaptive kernel
9133 deinterling. Work on interlaced parts of a video to produce
9134 progressive frames.
9135
9136 The description of the accepted parameters follows.
9137
9138 @table @option
9139 @item thresh
9140 Set the threshold which affects the filter's tolerance when
9141 determining if a pixel line must be processed. It must be an integer
9142 in the range [0,255] and defaults to 10. A value of 0 will result in
9143 applying the process on every pixels.
9144
9145 @item map
9146 Paint pixels exceeding the threshold value to white if set to 1.
9147 Default is 0.
9148
9149 @item order
9150 Set the fields order. Swap fields if set to 1, leave fields alone if
9151 0. Default is 0.
9152
9153 @item sharp
9154 Enable additional sharpening if set to 1. Default is 0.
9155
9156 @item twoway
9157 Enable twoway sharpening if set to 1. Default is 0.
9158 @end table
9159
9160 @subsection Examples
9161
9162 @itemize
9163 @item
9164 Apply default values:
9165 @example
9166 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9167 @end example
9168
9169 @item
9170 Enable additional sharpening:
9171 @example
9172 kerndeint=sharp=1
9173 @end example
9174
9175 @item
9176 Paint processed pixels in white:
9177 @example
9178 kerndeint=map=1
9179 @end example
9180 @end itemize
9181
9182 @section lenscorrection
9183
9184 Correct radial lens distortion
9185
9186 This filter can be used to correct for radial distortion as can result from the use
9187 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9188 one can use tools available for example as part of opencv or simply trial-and-error.
9189 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9190 and extract the k1 and k2 coefficients from the resulting matrix.
9191
9192 Note that effectively the same filter is available in the open-source tools Krita and
9193 Digikam from the KDE project.
9194
9195 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9196 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9197 brightness distribution, so you may want to use both filters together in certain
9198 cases, though you will have to take care of ordering, i.e. whether vignetting should
9199 be applied before or after lens correction.
9200
9201 @subsection Options
9202
9203 The filter accepts the following options:
9204
9205 @table @option
9206 @item cx
9207 Relative x-coordinate of the focal point of the image, and thereby the center of the
9208 distortion. This value has a range [0,1] and is expressed as fractions of the image
9209 width.
9210 @item cy
9211 Relative y-coordinate of the focal point of the image, and thereby the center of the
9212 distortion. This value has a range [0,1] and is expressed as fractions of the image
9213 height.
9214 @item k1
9215 Coefficient of the quadratic correction term. 0.5 means no correction.
9216 @item k2
9217 Coefficient of the double quadratic correction term. 0.5 means no correction.
9218 @end table
9219
9220 The formula that generates the correction is:
9221
9222 @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)
9223
9224 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9225 distances from the focal point in the source and target images, respectively.
9226
9227 @section loop
9228
9229 Loop video frames.
9230
9231 The filter accepts the following options:
9232
9233 @table @option
9234 @item loop
9235 Set the number of loops.
9236
9237 @item size
9238 Set maximal size in number of frames.
9239
9240 @item start
9241 Set first frame of loop.
9242 @end table
9243
9244 @anchor{lut3d}
9245 @section lut3d
9246
9247 Apply a 3D LUT to an input video.
9248
9249 The filter accepts the following options:
9250
9251 @table @option
9252 @item file
9253 Set the 3D LUT file name.
9254
9255 Currently supported formats:
9256 @table @samp
9257 @item 3dl
9258 AfterEffects
9259 @item cube
9260 Iridas
9261 @item dat
9262 DaVinci
9263 @item m3d
9264 Pandora
9265 @end table
9266 @item interp
9267 Select interpolation mode.
9268
9269 Available values are:
9270
9271 @table @samp
9272 @item nearest
9273 Use values from the nearest defined point.
9274 @item trilinear
9275 Interpolate values using the 8 points defining a cube.
9276 @item tetrahedral
9277 Interpolate values using a tetrahedron.
9278 @end table
9279 @end table
9280
9281 @section lut, lutrgb, lutyuv
9282
9283 Compute a look-up table for binding each pixel component input value
9284 to an output value, and apply it to the input video.
9285
9286 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9287 to an RGB input video.
9288
9289 These filters accept the following parameters:
9290 @table @option
9291 @item c0
9292 set first pixel component expression
9293 @item c1
9294 set second pixel component expression
9295 @item c2
9296 set third pixel component expression
9297 @item c3
9298 set fourth pixel component expression, corresponds to the alpha component
9299
9300 @item r
9301 set red component expression
9302 @item g
9303 set green component expression
9304 @item b
9305 set blue component expression
9306 @item a
9307 alpha component expression
9308
9309 @item y
9310 set Y/luminance component expression
9311 @item u
9312 set U/Cb component expression
9313 @item v
9314 set V/Cr component expression
9315 @end table
9316
9317 Each of them specifies the expression to use for computing the lookup table for
9318 the corresponding pixel component values.
9319
9320 The exact component associated to each of the @var{c*} options depends on the
9321 format in input.
9322
9323 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9324 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9325
9326 The expressions can contain the following constants and functions:
9327
9328 @table @option
9329 @item w
9330 @item h
9331 The input width and height.
9332
9333 @item val
9334 The input value for the pixel component.
9335
9336 @item clipval
9337 The input value, clipped to the @var{minval}-@var{maxval} range.
9338
9339 @item maxval
9340 The maximum value for the pixel component.
9341
9342 @item minval
9343 The minimum value for the pixel component.
9344
9345 @item negval
9346 The negated value for the pixel component value, clipped to the
9347 @var{minval}-@var{maxval} range; it corresponds to the expression
9348 "maxval-clipval+minval".
9349
9350 @item clip(val)
9351 The computed value in @var{val}, clipped to the
9352 @var{minval}-@var{maxval} range.
9353
9354 @item gammaval(gamma)
9355 The computed gamma correction value of the pixel component value,
9356 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9357 expression
9358 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9359
9360 @end table
9361
9362 All expressions default to "val".
9363
9364 @subsection Examples
9365
9366 @itemize
9367 @item
9368 Negate input video:
9369 @example
9370 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9371 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9372 @end example
9373
9374 The above is the same as:
9375 @example
9376 lutrgb="r=negval:g=negval:b=negval"
9377 lutyuv="y=negval:u=negval:v=negval"
9378 @end example
9379
9380 @item
9381 Negate luminance:
9382 @example
9383 lutyuv=y=negval
9384 @end example
9385
9386 @item
9387 Remove chroma components, turning the video into a graytone image:
9388 @example
9389 lutyuv="u=128:v=128"
9390 @end example
9391
9392 @item
9393 Apply a luma burning effect:
9394 @example
9395 lutyuv="y=2*val"
9396 @end example
9397
9398 @item
9399 Remove green and blue components:
9400 @example
9401 lutrgb="g=0:b=0"
9402 @end example
9403
9404 @item
9405 Set a constant alpha channel value on input:
9406 @example
9407 format=rgba,lutrgb=a="maxval-minval/2"
9408 @end example
9409
9410 @item
9411 Correct luminance gamma by a factor of 0.5:
9412 @example
9413 lutyuv=y=gammaval(0.5)
9414 @end example
9415
9416 @item
9417 Discard least significant bits of luma:
9418 @example
9419 lutyuv=y='bitand(val, 128+64+32)'
9420 @end example
9421
9422 @item
9423 Technicolor like effect:
9424 @example
9425 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9426 @end example
9427 @end itemize
9428
9429 @section lut2
9430
9431 Compute and apply a lookup table from two video inputs.
9432
9433 This filter accepts the following parameters:
9434 @table @option
9435 @item c0
9436 set first pixel component expression
9437 @item c1
9438 set second pixel component expression
9439 @item c2
9440 set third pixel component expression
9441 @item c3
9442 set fourth pixel component expression, corresponds to the alpha component
9443 @end table
9444
9445 Each of them specifies the expression to use for computing the lookup table for
9446 the corresponding pixel component values.
9447
9448 The exact component associated to each of the @var{c*} options depends on the
9449 format in inputs.
9450
9451 The expressions can contain the following constants:
9452
9453 @table @option
9454 @item w
9455 @item h
9456 The input width and height.
9457
9458 @item x
9459 The first input value for the pixel component.
9460
9461 @item y
9462 The second input value for the pixel component.
9463
9464 @item bdx
9465 The first input video bit depth.
9466
9467 @item bdy
9468 The second input video bit depth.
9469 @end table
9470
9471 All expressions default to "x".
9472
9473 @subsection Examples
9474
9475 @itemize
9476 @item
9477 Highlight differences between two RGB video streams:
9478 @example
9479 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)'
9480 @end example
9481
9482 @item
9483 Highlight differences between two YUV video streams:
9484 @example
9485 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)'
9486 @end example
9487 @end itemize
9488
9489 @section maskedclamp
9490
9491 Clamp the first input stream with the second input and third input stream.
9492
9493 Returns the value of first stream to be between second input
9494 stream - @code{undershoot} and third input stream + @code{overshoot}.
9495
9496 This filter accepts the following options:
9497 @table @option
9498 @item undershoot
9499 Default value is @code{0}.
9500
9501 @item overshoot
9502 Default value is @code{0}.
9503
9504 @item planes
9505 Set which planes will be processed as bitmap, unprocessed planes will be
9506 copied from first stream.
9507 By default value 0xf, all planes will be processed.
9508 @end table
9509
9510 @section maskedmerge
9511
9512 Merge the first input stream with the second input stream using per pixel
9513 weights in the third input stream.
9514
9515 A value of 0 in the third stream pixel component means that pixel component
9516 from first stream is returned unchanged, while maximum value (eg. 255 for
9517 8-bit videos) means that pixel component from second stream is returned
9518 unchanged. Intermediate values define the amount of merging between both
9519 input stream's pixel components.
9520
9521 This filter accepts the following options:
9522 @table @option
9523 @item planes
9524 Set which planes will be processed as bitmap, unprocessed planes will be
9525 copied from first stream.
9526 By default value 0xf, all planes will be processed.
9527 @end table
9528
9529 @section mcdeint
9530
9531 Apply motion-compensation deinterlacing.
9532
9533 It needs one field per frame as input and must thus be used together
9534 with yadif=1/3 or equivalent.
9535
9536 This filter accepts the following options:
9537 @table @option
9538 @item mode
9539 Set the deinterlacing mode.
9540
9541 It accepts one of the following values:
9542 @table @samp
9543 @item fast
9544 @item medium
9545 @item slow
9546 use iterative motion estimation
9547 @item extra_slow
9548 like @samp{slow}, but use multiple reference frames.
9549 @end table
9550 Default value is @samp{fast}.
9551
9552 @item parity
9553 Set the picture field parity assumed for the input video. It must be
9554 one of the following values:
9555
9556 @table @samp
9557 @item 0, tff
9558 assume top field first
9559 @item 1, bff
9560 assume bottom field first
9561 @end table
9562
9563 Default value is @samp{bff}.
9564
9565 @item qp
9566 Set per-block quantization parameter (QP) used by the internal
9567 encoder.
9568
9569 Higher values should result in a smoother motion vector field but less
9570 optimal individual vectors. Default value is 1.
9571 @end table
9572
9573 @section mergeplanes
9574
9575 Merge color channel components from several video streams.
9576
9577 The filter accepts up to 4 input streams, and merge selected input
9578 planes to the output video.
9579
9580 This filter accepts the following options:
9581 @table @option
9582 @item mapping
9583 Set input to output plane mapping. Default is @code{0}.
9584
9585 The mappings is specified as a bitmap. It should be specified as a
9586 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9587 mapping for the first plane of the output stream. 'A' sets the number of
9588 the input stream to use (from 0 to 3), and 'a' the plane number of the
9589 corresponding input to use (from 0 to 3). The rest of the mappings is
9590 similar, 'Bb' describes the mapping for the output stream second
9591 plane, 'Cc' describes the mapping for the output stream third plane and
9592 'Dd' describes the mapping for the output stream fourth plane.
9593
9594 @item format
9595 Set output pixel format. Default is @code{yuva444p}.
9596 @end table
9597
9598 @subsection Examples
9599
9600 @itemize
9601 @item
9602 Merge three gray video streams of same width and height into single video stream:
9603 @example
9604 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9605 @end example
9606
9607 @item
9608 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9609 @example
9610 [a0][a1]mergeplanes=0x00010210:yuva444p
9611 @end example
9612
9613 @item
9614 Swap Y and A plane in yuva444p stream:
9615 @example
9616 format=yuva444p,mergeplanes=0x03010200:yuva444p
9617 @end example
9618
9619 @item
9620 Swap U and V plane in yuv420p stream:
9621 @example
9622 format=yuv420p,mergeplanes=0x000201:yuv420p
9623 @end example
9624
9625 @item
9626 Cast a rgb24 clip to yuv444p:
9627 @example
9628 format=rgb24,mergeplanes=0x000102:yuv444p
9629 @end example
9630 @end itemize
9631
9632 @section mestimate
9633
9634 Estimate and export motion vectors using block matching algorithms.
9635 Motion vectors are stored in frame side data to be used by other filters.
9636
9637 This filter accepts the following options:
9638 @table @option
9639 @item method
9640 Specify the motion estimation method. Accepts one of the following values:
9641
9642 @table @samp
9643 @item esa
9644 Exhaustive search algorithm.
9645 @item tss
9646 Three step search algorithm.
9647 @item tdls
9648 Two dimensional logarithmic search algorithm.
9649 @item ntss
9650 New three step search algorithm.
9651 @item fss
9652 Four step search algorithm.
9653 @item ds
9654 Diamond search algorithm.
9655 @item hexbs
9656 Hexagon-based search algorithm.
9657 @item epzs
9658 Enhanced predictive zonal search algorithm.
9659 @item umh
9660 Uneven multi-hexagon search algorithm.
9661 @end table
9662 Default value is @samp{esa}.
9663
9664 @item mb_size
9665 Macroblock size. Default @code{16}.
9666
9667 @item search_param
9668 Search parameter. Default @code{7}.
9669 @end table
9670
9671 @section midequalizer
9672
9673 Apply Midway Image Equalization effect using two video streams.
9674
9675 Midway Image Equalization adjusts a pair of images to have the same
9676 histogram, while maintaining their dynamics as much as possible. It's
9677 useful for e.g. matching exposures from a pair of stereo cameras.
9678
9679 This filter has two inputs and one output, which must be of same pixel format, but
9680 may be of different sizes. The output of filter is first input adjusted with
9681 midway histogram of both inputs.
9682
9683 This filter accepts the following option:
9684
9685 @table @option
9686 @item planes
9687 Set which planes to process. Default is @code{15}, which is all available planes.
9688 @end table
9689
9690 @section minterpolate
9691
9692 Convert the video to specified frame rate using motion interpolation.
9693
9694 This filter accepts the following options:
9695 @table @option
9696 @item fps
9697 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}.
9698
9699 @item mi_mode
9700 Motion interpolation mode. Following values are accepted:
9701 @table @samp
9702 @item dup
9703 Duplicate previous or next frame for interpolating new ones.
9704 @item blend
9705 Blend source frames. Interpolated frame is mean of previous and next frames.
9706 @item mci
9707 Motion compensated interpolation. Following options are effective when this mode is selected:
9708
9709 @table @samp
9710 @item mc_mode
9711 Motion compensation mode. Following values are accepted:
9712 @table @samp
9713 @item obmc
9714 Overlapped block motion compensation.
9715 @item aobmc
9716 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
9717 @end table
9718 Default mode is @samp{obmc}.
9719
9720 @item me_mode
9721 Motion estimation mode. Following values are accepted:
9722 @table @samp
9723 @item bidir
9724 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
9725 @item bilat
9726 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
9727 @end table
9728 Default mode is @samp{bilat}.
9729
9730 @item me
9731 The algorithm to be used for motion estimation. Following values are accepted:
9732 @table @samp
9733 @item esa
9734 Exhaustive search algorithm.
9735 @item tss
9736 Three step search algorithm.
9737 @item tdls
9738 Two dimensional logarithmic search algorithm.
9739 @item ntss
9740 New three step search algorithm.
9741 @item fss
9742 Four step search algorithm.
9743 @item ds
9744 Diamond search algorithm.
9745 @item hexbs
9746 Hexagon-based search algorithm.
9747 @item epzs
9748 Enhanced predictive zonal search algorithm.
9749 @item umh
9750 Uneven multi-hexagon search algorithm.
9751 @end table
9752 Default algorithm is @samp{epzs}.
9753
9754 @item mb_size
9755 Macroblock size. Default @code{16}.
9756
9757 @item search_param
9758 Motion estimation search parameter. Default @code{32}.
9759
9760 @item vsbmc
9761 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).
9762 @end table
9763 @end table
9764
9765 @item scd
9766 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:
9767 @table @samp
9768 @item none
9769 Disable scene change detection.
9770 @item fdiff
9771 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
9772 @end table
9773 Default method is @samp{fdiff}.
9774
9775 @item scd_threshold
9776 Scene change detection threshold. Default is @code{5.0}.
9777 @end table
9778
9779 @section mpdecimate
9780
9781 Drop frames that do not differ greatly from the previous frame in
9782 order to reduce frame rate.
9783
9784 The main use of this filter is for very-low-bitrate encoding
9785 (e.g. streaming over dialup modem), but it could in theory be used for
9786 fixing movies that were inverse-telecined incorrectly.
9787
9788 A description of the accepted options follows.
9789
9790 @table @option
9791 @item max
9792 Set the maximum number of consecutive frames which can be dropped (if
9793 positive), or the minimum interval between dropped frames (if
9794 negative). If the value is 0, the frame is dropped unregarding the
9795 number of previous sequentially dropped frames.
9796
9797 Default value is 0.
9798
9799 @item hi
9800 @item lo
9801 @item frac
9802 Set the dropping threshold values.
9803
9804 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9805 represent actual pixel value differences, so a threshold of 64
9806 corresponds to 1 unit of difference for each pixel, or the same spread
9807 out differently over the block.
9808
9809 A frame is a candidate for dropping if no 8x8 blocks differ by more
9810 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9811 meaning the whole image) differ by more than a threshold of @option{lo}.
9812
9813 Default value for @option{hi} is 64*12, default value for @option{lo} is
9814 64*5, and default value for @option{frac} is 0.33.
9815 @end table
9816
9817
9818 @section negate
9819
9820 Negate input video.
9821
9822 It accepts an integer in input; if non-zero it negates the
9823 alpha component (if available). The default value in input is 0.
9824
9825 @section nlmeans
9826
9827 Denoise frames using Non-Local Means algorithm.
9828
9829 Each pixel is adjusted by looking for other pixels with similar contexts. This
9830 context similarity is defined by comparing their surrounding patches of size
9831 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
9832 around the pixel.
9833
9834 Note that the research area defines centers for patches, which means some
9835 patches will be made of pixels outside that research area.
9836
9837 The filter accepts the following options.
9838
9839 @table @option
9840 @item s
9841 Set denoising strength.
9842
9843 @item p
9844 Set patch size.
9845
9846 @item pc
9847 Same as @option{p} but for chroma planes.
9848
9849 The default value is @var{0} and means automatic.
9850
9851 @item r
9852 Set research size.
9853
9854 @item rc
9855 Same as @option{r} but for chroma planes.
9856
9857 The default value is @var{0} and means automatic.
9858 @end table
9859
9860 @section nnedi
9861
9862 Deinterlace video using neural network edge directed interpolation.
9863
9864 This filter accepts the following options:
9865
9866 @table @option
9867 @item weights
9868 Mandatory option, without binary file filter can not work.
9869 Currently file can be found here:
9870 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9871
9872 @item deint
9873 Set which frames to deinterlace, by default it is @code{all}.
9874 Can be @code{all} or @code{interlaced}.
9875
9876 @item field
9877 Set mode of operation.
9878
9879 Can be one of the following:
9880
9881 @table @samp
9882 @item af
9883 Use frame flags, both fields.
9884 @item a
9885 Use frame flags, single field.
9886 @item t
9887 Use top field only.
9888 @item b
9889 Use bottom field only.
9890 @item tf
9891 Use both fields, top first.
9892 @item bf
9893 Use both fields, bottom first.
9894 @end table
9895
9896 @item planes
9897 Set which planes to process, by default filter process all frames.
9898
9899 @item nsize
9900 Set size of local neighborhood around each pixel, used by the predictor neural
9901 network.
9902
9903 Can be one of the following:
9904
9905 @table @samp
9906 @item s8x6
9907 @item s16x6
9908 @item s32x6
9909 @item s48x6
9910 @item s8x4
9911 @item s16x4
9912 @item s32x4
9913 @end table
9914
9915 @item nns
9916 Set the number of neurons in predicctor neural network.
9917 Can be one of the following:
9918
9919 @table @samp
9920 @item n16
9921 @item n32
9922 @item n64
9923 @item n128
9924 @item n256
9925 @end table
9926
9927 @item qual
9928 Controls the number of different neural network predictions that are blended
9929 together to compute the final output value. Can be @code{fast}, default or
9930 @code{slow}.
9931
9932 @item etype
9933 Set which set of weights to use in the predictor.
9934 Can be one of the following:
9935
9936 @table @samp
9937 @item a
9938 weights trained to minimize absolute error
9939 @item s
9940 weights trained to minimize squared error
9941 @end table
9942
9943 @item pscrn
9944 Controls whether or not the prescreener neural network is used to decide
9945 which pixels should be processed by the predictor neural network and which
9946 can be handled by simple cubic interpolation.
9947 The prescreener is trained to know whether cubic interpolation will be
9948 sufficient for a pixel or whether it should be predicted by the predictor nn.
9949 The computational complexity of the prescreener nn is much less than that of
9950 the predictor nn. Since most pixels can be handled by cubic interpolation,
9951 using the prescreener generally results in much faster processing.
9952 The prescreener is pretty accurate, so the difference between using it and not
9953 using it is almost always unnoticeable.
9954
9955 Can be one of the following:
9956
9957 @table @samp
9958 @item none
9959 @item original
9960 @item new
9961 @end table
9962
9963 Default is @code{new}.
9964
9965 @item fapprox
9966 Set various debugging flags.
9967 @end table
9968
9969 @section noformat
9970
9971 Force libavfilter not to use any of the specified pixel formats for the
9972 input to the next filter.
9973
9974 It accepts the following parameters:
9975 @table @option
9976
9977 @item pix_fmts
9978 A '|'-separated list of pixel format names, such as
9979 apix_fmts=yuv420p|monow|rgb24".
9980
9981 @end table
9982
9983 @subsection Examples
9984
9985 @itemize
9986 @item
9987 Force libavfilter to use a format different from @var{yuv420p} for the
9988 input to the vflip filter:
9989 @example
9990 noformat=pix_fmts=yuv420p,vflip
9991 @end example
9992
9993 @item
9994 Convert the input video to any of the formats not contained in the list:
9995 @example
9996 noformat=yuv420p|yuv444p|yuv410p
9997 @end example
9998 @end itemize
9999
10000 @section noise
10001
10002 Add noise on video input frame.
10003
10004 The filter accepts the following options:
10005
10006 @table @option
10007 @item all_seed
10008 @item c0_seed
10009 @item c1_seed
10010 @item c2_seed
10011 @item c3_seed
10012 Set noise seed for specific pixel component or all pixel components in case
10013 of @var{all_seed}. Default value is @code{123457}.
10014
10015 @item all_strength, alls
10016 @item c0_strength, c0s
10017 @item c1_strength, c1s
10018 @item c2_strength, c2s
10019 @item c3_strength, c3s
10020 Set noise strength for specific pixel component or all pixel components in case
10021 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
10022
10023 @item all_flags, allf
10024 @item c0_flags, c0f
10025 @item c1_flags, c1f
10026 @item c2_flags, c2f
10027 @item c3_flags, c3f
10028 Set pixel component flags or set flags for all components if @var{all_flags}.
10029 Available values for component flags are:
10030 @table @samp
10031 @item a
10032 averaged temporal noise (smoother)
10033 @item p
10034 mix random noise with a (semi)regular pattern
10035 @item t
10036 temporal noise (noise pattern changes between frames)
10037 @item u
10038 uniform noise (gaussian otherwise)
10039 @end table
10040 @end table
10041
10042 @subsection Examples
10043
10044 Add temporal and uniform noise to input video:
10045 @example
10046 noise=alls=20:allf=t+u
10047 @end example
10048
10049 @section null
10050
10051 Pass the video source unchanged to the output.
10052
10053 @section ocr
10054 Optical Character Recognition
10055
10056 This filter uses Tesseract for optical character recognition.
10057
10058 It accepts the following options:
10059
10060 @table @option
10061 @item datapath
10062 Set datapath to tesseract data. Default is to use whatever was
10063 set at installation.
10064
10065 @item language
10066 Set language, default is "eng".
10067
10068 @item whitelist
10069 Set character whitelist.
10070
10071 @item blacklist
10072 Set character blacklist.
10073 @end table
10074
10075 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
10076
10077 @section ocv
10078
10079 Apply a video transform using libopencv.
10080
10081 To enable this filter, install the libopencv library and headers and
10082 configure FFmpeg with @code{--enable-libopencv}.
10083
10084 It accepts the following parameters:
10085
10086 @table @option
10087
10088 @item filter_name
10089 The name of the libopencv filter to apply.
10090
10091 @item filter_params
10092 The parameters to pass to the libopencv filter. If not specified, the default
10093 values are assumed.
10094
10095 @end table
10096
10097 Refer to the official libopencv documentation for more precise
10098 information:
10099 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
10100
10101 Several libopencv filters are supported; see the following subsections.
10102
10103 @anchor{dilate}
10104 @subsection dilate
10105
10106 Dilate an image by using a specific structuring element.
10107 It corresponds to the libopencv function @code{cvDilate}.
10108
10109 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
10110
10111 @var{struct_el} represents a structuring element, and has the syntax:
10112 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
10113
10114 @var{cols} and @var{rows} represent the number of columns and rows of
10115 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
10116 point, and @var{shape} the shape for the structuring element. @var{shape}
10117 must be "rect", "cross", "ellipse", or "custom".
10118
10119 If the value for @var{shape} is "custom", it must be followed by a
10120 string of the form "=@var{filename}". The file with name
10121 @var{filename} is assumed to represent a binary image, with each
10122 printable character corresponding to a bright pixel. When a custom
10123 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
10124 or columns and rows of the read file are assumed instead.
10125
10126 The default value for @var{struct_el} is "3x3+0x0/rect".
10127
10128 @var{nb_iterations} specifies the number of times the transform is
10129 applied to the image, and defaults to 1.
10130
10131 Some examples:
10132 @example
10133 # Use the default values
10134 ocv=dilate
10135
10136 # Dilate using a structuring element with a 5x5 cross, iterating two times
10137 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
10138
10139 # Read the shape from the file diamond.shape, iterating two times.
10140 # The file diamond.shape may contain a pattern of characters like this
10141 #   *
10142 #  ***
10143 # *****
10144 #  ***
10145 #   *
10146 # The specified columns and rows are ignored
10147 # but the anchor point coordinates are not
10148 ocv=dilate:0x0+2x2/custom=diamond.shape|2
10149 @end example
10150
10151 @subsection erode
10152
10153 Erode an image by using a specific structuring element.
10154 It corresponds to the libopencv function @code{cvErode}.
10155
10156 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
10157 with the same syntax and semantics as the @ref{dilate} filter.
10158
10159 @subsection smooth
10160
10161 Smooth the input video.
10162
10163 The filter takes the following parameters:
10164 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
10165
10166 @var{type} is the type of smooth filter to apply, and must be one of
10167 the following values: "blur", "blur_no_scale", "median", "gaussian",
10168 or "bilateral". The default value is "gaussian".
10169
10170 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
10171 depend on the smooth type. @var{param1} and
10172 @var{param2} accept integer positive values or 0. @var{param3} and
10173 @var{param4} accept floating point values.
10174
10175 The default value for @var{param1} is 3. The default value for the
10176 other parameters is 0.
10177
10178 These parameters correspond to the parameters assigned to the
10179 libopencv function @code{cvSmooth}.
10180
10181 @anchor{overlay}
10182 @section overlay
10183
10184 Overlay one video on top of another.
10185
10186 It takes two inputs and has one output. The first input is the "main"
10187 video on which the second input is overlaid.
10188
10189 It accepts the following parameters:
10190
10191 A description of the accepted options follows.
10192
10193 @table @option
10194 @item x
10195 @item y
10196 Set the expression for the x and y coordinates of the overlaid video
10197 on the main video. Default value is "0" for both expressions. In case
10198 the expression is invalid, it is set to a huge value (meaning that the
10199 overlay will not be displayed within the output visible area).
10200
10201 @item eof_action
10202 The action to take when EOF is encountered on the secondary input; it accepts
10203 one of the following values:
10204
10205 @table @option
10206 @item repeat
10207 Repeat the last frame (the default).
10208 @item endall
10209 End both streams.
10210 @item pass
10211 Pass the main input through.
10212 @end table
10213
10214 @item eval
10215 Set when the expressions for @option{x}, and @option{y} are evaluated.
10216
10217 It accepts the following values:
10218 @table @samp
10219 @item init
10220 only evaluate expressions once during the filter initialization or
10221 when a command is processed
10222
10223 @item frame
10224 evaluate expressions for each incoming frame
10225 @end table
10226
10227 Default value is @samp{frame}.
10228
10229 @item shortest
10230 If set to 1, force the output to terminate when the shortest input
10231 terminates. Default value is 0.
10232
10233 @item format
10234 Set the format for the output video.
10235
10236 It accepts the following values:
10237 @table @samp
10238 @item yuv420
10239 force YUV420 output
10240
10241 @item yuv422
10242 force YUV422 output
10243
10244 @item yuv444
10245 force YUV444 output
10246
10247 @item rgb
10248 force packed RGB output
10249
10250 @item gbrp
10251 force planar RGB output
10252 @end table
10253
10254 Default value is @samp{yuv420}.
10255
10256 @item rgb @emph{(deprecated)}
10257 If set to 1, force the filter to accept inputs in the RGB
10258 color space. Default value is 0. This option is deprecated, use
10259 @option{format} instead.
10260
10261 @item repeatlast
10262 If set to 1, force the filter to draw the last overlay frame over the
10263 main input until the end of the stream. A value of 0 disables this
10264 behavior. Default value is 1.
10265 @end table
10266
10267 The @option{x}, and @option{y} expressions can contain the following
10268 parameters.
10269
10270 @table @option
10271 @item main_w, W
10272 @item main_h, H
10273 The main input width and height.
10274
10275 @item overlay_w, w
10276 @item overlay_h, h
10277 The overlay input width and height.
10278
10279 @item x
10280 @item y
10281 The computed values for @var{x} and @var{y}. They are evaluated for
10282 each new frame.
10283
10284 @item hsub
10285 @item vsub
10286 horizontal and vertical chroma subsample values of the output
10287 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
10288 @var{vsub} is 1.
10289
10290 @item n
10291 the number of input frame, starting from 0
10292
10293 @item pos
10294 the position in the file of the input frame, NAN if unknown
10295
10296 @item t
10297 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
10298
10299 @end table
10300
10301 Note that the @var{n}, @var{pos}, @var{t} variables are available only
10302 when evaluation is done @emph{per frame}, and will evaluate to NAN
10303 when @option{eval} is set to @samp{init}.
10304
10305 Be aware that frames are taken from each input video in timestamp
10306 order, hence, if their initial timestamps differ, it is a good idea
10307 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
10308 have them begin in the same zero timestamp, as the example for
10309 the @var{movie} filter does.
10310
10311 You can chain together more overlays but you should test the
10312 efficiency of such approach.
10313
10314 @subsection Commands
10315
10316 This filter supports the following commands:
10317 @table @option
10318 @item x
10319 @item y
10320 Modify the x and y of the overlay input.
10321 The command accepts the same syntax of the corresponding option.
10322
10323 If the specified expression is not valid, it is kept at its current
10324 value.
10325 @end table
10326
10327 @subsection Examples
10328
10329 @itemize
10330 @item
10331 Draw the overlay at 10 pixels from the bottom right corner of the main
10332 video:
10333 @example
10334 overlay=main_w-overlay_w-10:main_h-overlay_h-10
10335 @end example
10336
10337 Using named options the example above becomes:
10338 @example
10339 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
10340 @end example
10341
10342 @item
10343 Insert a transparent PNG logo in the bottom left corner of the input,
10344 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
10345 @example
10346 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
10347 @end example
10348
10349 @item
10350 Insert 2 different transparent PNG logos (second logo on bottom
10351 right corner) using the @command{ffmpeg} tool:
10352 @example
10353 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
10354 @end example
10355
10356 @item
10357 Add a transparent color layer on top of the main video; @code{WxH}
10358 must specify the size of the main input to the overlay filter:
10359 @example
10360 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
10361 @end example
10362
10363 @item
10364 Play an original video and a filtered version (here with the deshake
10365 filter) side by side using the @command{ffplay} tool:
10366 @example
10367 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
10368 @end example
10369
10370 The above command is the same as:
10371 @example
10372 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
10373 @end example
10374
10375 @item
10376 Make a sliding overlay appearing from the left to the right top part of the
10377 screen starting since time 2:
10378 @example
10379 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
10380 @end example
10381
10382 @item
10383 Compose output by putting two input videos side to side:
10384 @example
10385 ffmpeg -i left.avi -i right.avi -filter_complex "
10386 nullsrc=size=200x100 [background];
10387 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
10388 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
10389 [background][left]       overlay=shortest=1       [background+left];
10390 [background+left][right] overlay=shortest=1:x=100 [left+right]
10391 "
10392 @end example
10393
10394 @item
10395 Mask 10-20 seconds of a video by applying the delogo filter to a section
10396 @example
10397 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
10398 -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]'
10399 masked.avi
10400 @end example
10401
10402 @item
10403 Chain several overlays in cascade:
10404 @example
10405 nullsrc=s=200x200 [bg];
10406 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
10407 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
10408 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
10409 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
10410 [in3] null,       [mid2] overlay=100:100 [out0]
10411 @end example
10412
10413 @end itemize
10414
10415 @section owdenoise
10416
10417 Apply Overcomplete Wavelet denoiser.
10418
10419 The filter accepts the following options:
10420
10421 @table @option
10422 @item depth
10423 Set depth.
10424
10425 Larger depth values will denoise lower frequency components more, but
10426 slow down filtering.
10427
10428 Must be an int in the range 8-16, default is @code{8}.
10429
10430 @item luma_strength, ls
10431 Set luma strength.
10432
10433 Must be a double value in the range 0-1000, default is @code{1.0}.
10434
10435 @item chroma_strength, cs
10436 Set chroma strength.
10437
10438 Must be a double value in the range 0-1000, default is @code{1.0}.
10439 @end table
10440
10441 @anchor{pad}
10442 @section pad
10443
10444 Add paddings to the input image, and place the original input at the
10445 provided @var{x}, @var{y} coordinates.
10446
10447 It accepts the following parameters:
10448
10449 @table @option
10450 @item width, w
10451 @item height, h
10452 Specify an expression for the size of the output image with the
10453 paddings added. If the value for @var{width} or @var{height} is 0, the
10454 corresponding input size is used for the output.
10455
10456 The @var{width} expression can reference the value set by the
10457 @var{height} expression, and vice versa.
10458
10459 The default value of @var{width} and @var{height} is 0.
10460
10461 @item x
10462 @item y
10463 Specify the offsets to place the input image at within the padded area,
10464 with respect to the top/left border of the output image.
10465
10466 The @var{x} expression can reference the value set by the @var{y}
10467 expression, and vice versa.
10468
10469 The default value of @var{x} and @var{y} is 0.
10470
10471 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
10472 so the input image is centered on the padded area.
10473
10474 @item color
10475 Specify the color of the padded area. For the syntax of this option,
10476 check the "Color" section in the ffmpeg-utils manual.
10477
10478 The default value of @var{color} is "black".
10479
10480 @item eval
10481 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
10482
10483 It accepts the following values:
10484
10485 @table @samp
10486 @item init
10487 Only evaluate expressions once during the filter initialization or when
10488 a command is processed.
10489
10490 @item frame
10491 Evaluate expressions for each incoming frame.
10492
10493 @end table
10494
10495 Default value is @samp{init}.
10496
10497 @item aspect
10498 Pad to aspect instead to a resolution.
10499
10500 @end table
10501
10502 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10503 options are expressions containing the following constants:
10504
10505 @table @option
10506 @item in_w
10507 @item in_h
10508 The input video width and height.
10509
10510 @item iw
10511 @item ih
10512 These are the same as @var{in_w} and @var{in_h}.
10513
10514 @item out_w
10515 @item out_h
10516 The output width and height (the size of the padded area), as
10517 specified by the @var{width} and @var{height} expressions.
10518
10519 @item ow
10520 @item oh
10521 These are the same as @var{out_w} and @var{out_h}.
10522
10523 @item x
10524 @item y
10525 The x and y offsets as specified by the @var{x} and @var{y}
10526 expressions, or NAN if not yet specified.
10527
10528 @item a
10529 same as @var{iw} / @var{ih}
10530
10531 @item sar
10532 input sample aspect ratio
10533
10534 @item dar
10535 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10536
10537 @item hsub
10538 @item vsub
10539 The horizontal and vertical chroma subsample values. For example for the
10540 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10541 @end table
10542
10543 @subsection Examples
10544
10545 @itemize
10546 @item
10547 Add paddings with the color "violet" to the input video. The output video
10548 size is 640x480, and the top-left corner of the input video is placed at
10549 column 0, row 40
10550 @example
10551 pad=640:480:0:40:violet
10552 @end example
10553
10554 The example above is equivalent to the following command:
10555 @example
10556 pad=width=640:height=480:x=0:y=40:color=violet
10557 @end example
10558
10559 @item
10560 Pad the input to get an output with dimensions increased by 3/2,
10561 and put the input video at the center of the padded area:
10562 @example
10563 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10564 @end example
10565
10566 @item
10567 Pad the input to get a squared output with size equal to the maximum
10568 value between the input width and height, and put the input video at
10569 the center of the padded area:
10570 @example
10571 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10572 @end example
10573
10574 @item
10575 Pad the input to get a final w/h ratio of 16:9:
10576 @example
10577 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10578 @end example
10579
10580 @item
10581 In case of anamorphic video, in order to set the output display aspect
10582 correctly, it is necessary to use @var{sar} in the expression,
10583 according to the relation:
10584 @example
10585 (ih * X / ih) * sar = output_dar
10586 X = output_dar / sar
10587 @end example
10588
10589 Thus the previous example needs to be modified to:
10590 @example
10591 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10592 @end example
10593
10594 @item
10595 Double the output size and put the input video in the bottom-right
10596 corner of the output padded area:
10597 @example
10598 pad="2*iw:2*ih:ow-iw:oh-ih"
10599 @end example
10600 @end itemize
10601
10602 @anchor{palettegen}
10603 @section palettegen
10604
10605 Generate one palette for a whole video stream.
10606
10607 It accepts the following options:
10608
10609 @table @option
10610 @item max_colors
10611 Set the maximum number of colors to quantize in the palette.
10612 Note: the palette will still contain 256 colors; the unused palette entries
10613 will be black.
10614
10615 @item reserve_transparent
10616 Create a palette of 255 colors maximum and reserve the last one for
10617 transparency. Reserving the transparency color is useful for GIF optimization.
10618 If not set, the maximum of colors in the palette will be 256. You probably want
10619 to disable this option for a standalone image.
10620 Set by default.
10621
10622 @item stats_mode
10623 Set statistics mode.
10624
10625 It accepts the following values:
10626 @table @samp
10627 @item full
10628 Compute full frame histograms.
10629 @item diff
10630 Compute histograms only for the part that differs from previous frame. This
10631 might be relevant to give more importance to the moving part of your input if
10632 the background is static.
10633 @item single
10634 Compute new histogram for each frame.
10635 @end table
10636
10637 Default value is @var{full}.
10638 @end table
10639
10640 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10641 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10642 color quantization of the palette. This information is also visible at
10643 @var{info} logging level.
10644
10645 @subsection Examples
10646
10647 @itemize
10648 @item
10649 Generate a representative palette of a given video using @command{ffmpeg}:
10650 @example
10651 ffmpeg -i input.mkv -vf palettegen palette.png
10652 @end example
10653 @end itemize
10654
10655 @section paletteuse
10656
10657 Use a palette to downsample an input video stream.
10658
10659 The filter takes two inputs: one video stream and a palette. The palette must
10660 be a 256 pixels image.
10661
10662 It accepts the following options:
10663
10664 @table @option
10665 @item dither
10666 Select dithering mode. Available algorithms are:
10667 @table @samp
10668 @item bayer
10669 Ordered 8x8 bayer dithering (deterministic)
10670 @item heckbert
10671 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10672 Note: this dithering is sometimes considered "wrong" and is included as a
10673 reference.
10674 @item floyd_steinberg
10675 Floyd and Steingberg dithering (error diffusion)
10676 @item sierra2
10677 Frankie Sierra dithering v2 (error diffusion)
10678 @item sierra2_4a
10679 Frankie Sierra dithering v2 "Lite" (error diffusion)
10680 @end table
10681
10682 Default is @var{sierra2_4a}.
10683
10684 @item bayer_scale
10685 When @var{bayer} dithering is selected, this option defines the scale of the
10686 pattern (how much the crosshatch pattern is visible). A low value means more
10687 visible pattern for less banding, and higher value means less visible pattern
10688 at the cost of more banding.
10689
10690 The option must be an integer value in the range [0,5]. Default is @var{2}.
10691
10692 @item diff_mode
10693 If set, define the zone to process
10694
10695 @table @samp
10696 @item rectangle
10697 Only the changing rectangle will be reprocessed. This is similar to GIF
10698 cropping/offsetting compression mechanism. This option can be useful for speed
10699 if only a part of the image is changing, and has use cases such as limiting the
10700 scope of the error diffusal @option{dither} to the rectangle that bounds the
10701 moving scene (it leads to more deterministic output if the scene doesn't change
10702 much, and as a result less moving noise and better GIF compression).
10703 @end table
10704
10705 Default is @var{none}.
10706
10707 @item new
10708 Take new palette for each output frame.
10709 @end table
10710
10711 @subsection Examples
10712
10713 @itemize
10714 @item
10715 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10716 using @command{ffmpeg}:
10717 @example
10718 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10719 @end example
10720 @end itemize
10721
10722 @section perspective
10723
10724 Correct perspective of video not recorded perpendicular to the screen.
10725
10726 A description of the accepted parameters follows.
10727
10728 @table @option
10729 @item x0
10730 @item y0
10731 @item x1
10732 @item y1
10733 @item x2
10734 @item y2
10735 @item x3
10736 @item y3
10737 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10738 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10739 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10740 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10741 then the corners of the source will be sent to the specified coordinates.
10742
10743 The expressions can use the following variables:
10744
10745 @table @option
10746 @item W
10747 @item H
10748 the width and height of video frame.
10749 @item in
10750 Input frame count.
10751 @item on
10752 Output frame count.
10753 @end table
10754
10755 @item interpolation
10756 Set interpolation for perspective correction.
10757
10758 It accepts the following values:
10759 @table @samp
10760 @item linear
10761 @item cubic
10762 @end table
10763
10764 Default value is @samp{linear}.
10765
10766 @item sense
10767 Set interpretation of coordinate options.
10768
10769 It accepts the following values:
10770 @table @samp
10771 @item 0, source
10772
10773 Send point in the source specified by the given coordinates to
10774 the corners of the destination.
10775
10776 @item 1, destination
10777
10778 Send the corners of the source to the point in the destination specified
10779 by the given coordinates.
10780
10781 Default value is @samp{source}.
10782 @end table
10783
10784 @item eval
10785 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10786
10787 It accepts the following values:
10788 @table @samp
10789 @item init
10790 only evaluate expressions once during the filter initialization or
10791 when a command is processed
10792
10793 @item frame
10794 evaluate expressions for each incoming frame
10795 @end table
10796
10797 Default value is @samp{init}.
10798 @end table
10799
10800 @section phase
10801
10802 Delay interlaced video by one field time so that the field order changes.
10803
10804 The intended use is to fix PAL movies that have been captured with the
10805 opposite field order to the film-to-video transfer.
10806
10807 A description of the accepted parameters follows.
10808
10809 @table @option
10810 @item mode
10811 Set phase mode.
10812
10813 It accepts the following values:
10814 @table @samp
10815 @item t
10816 Capture field order top-first, transfer bottom-first.
10817 Filter will delay the bottom field.
10818
10819 @item b
10820 Capture field order bottom-first, transfer top-first.
10821 Filter will delay the top field.
10822
10823 @item p
10824 Capture and transfer with the same field order. This mode only exists
10825 for the documentation of the other options to refer to, but if you
10826 actually select it, the filter will faithfully do nothing.
10827
10828 @item a
10829 Capture field order determined automatically by field flags, transfer
10830 opposite.
10831 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10832 basis using field flags. If no field information is available,
10833 then this works just like @samp{u}.
10834
10835 @item u
10836 Capture unknown or varying, transfer opposite.
10837 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10838 analyzing the images and selecting the alternative that produces best
10839 match between the fields.
10840
10841 @item T
10842 Capture top-first, transfer unknown or varying.
10843 Filter selects among @samp{t} and @samp{p} using image analysis.
10844
10845 @item B
10846 Capture bottom-first, transfer unknown or varying.
10847 Filter selects among @samp{b} and @samp{p} using image analysis.
10848
10849 @item A
10850 Capture determined by field flags, transfer unknown or varying.
10851 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10852 image analysis. If no field information is available, then this works just
10853 like @samp{U}. This is the default mode.
10854
10855 @item U
10856 Both capture and transfer unknown or varying.
10857 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10858 @end table
10859 @end table
10860
10861 @section pixdesctest
10862
10863 Pixel format descriptor test filter, mainly useful for internal
10864 testing. The output video should be equal to the input video.
10865
10866 For example:
10867 @example
10868 format=monow, pixdesctest
10869 @end example
10870
10871 can be used to test the monowhite pixel format descriptor definition.
10872
10873 @section pp
10874
10875 Enable the specified chain of postprocessing subfilters using libpostproc. This
10876 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10877 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10878 Each subfilter and some options have a short and a long name that can be used
10879 interchangeably, i.e. dr/dering are the same.
10880
10881 The filters accept the following options:
10882
10883 @table @option
10884 @item subfilters
10885 Set postprocessing subfilters string.
10886 @end table
10887
10888 All subfilters share common options to determine their scope:
10889
10890 @table @option
10891 @item a/autoq
10892 Honor the quality commands for this subfilter.
10893
10894 @item c/chrom
10895 Do chrominance filtering, too (default).
10896
10897 @item y/nochrom
10898 Do luminance filtering only (no chrominance).
10899
10900 @item n/noluma
10901 Do chrominance filtering only (no luminance).
10902 @end table
10903
10904 These options can be appended after the subfilter name, separated by a '|'.
10905
10906 Available subfilters are:
10907
10908 @table @option
10909 @item hb/hdeblock[|difference[|flatness]]
10910 Horizontal deblocking filter
10911 @table @option
10912 @item difference
10913 Difference factor where higher values mean more deblocking (default: @code{32}).
10914 @item flatness
10915 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10916 @end table
10917
10918 @item vb/vdeblock[|difference[|flatness]]
10919 Vertical deblocking filter
10920 @table @option
10921 @item difference
10922 Difference factor where higher values mean more deblocking (default: @code{32}).
10923 @item flatness
10924 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10925 @end table
10926
10927 @item ha/hadeblock[|difference[|flatness]]
10928 Accurate horizontal deblocking filter
10929 @table @option
10930 @item difference
10931 Difference factor where higher values mean more deblocking (default: @code{32}).
10932 @item flatness
10933 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10934 @end table
10935
10936 @item va/vadeblock[|difference[|flatness]]
10937 Accurate vertical deblocking filter
10938 @table @option
10939 @item difference
10940 Difference factor where higher values mean more deblocking (default: @code{32}).
10941 @item flatness
10942 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10943 @end table
10944 @end table
10945
10946 The horizontal and vertical deblocking filters share the difference and
10947 flatness values so you cannot set different horizontal and vertical
10948 thresholds.
10949
10950 @table @option
10951 @item h1/x1hdeblock
10952 Experimental horizontal deblocking filter
10953
10954 @item v1/x1vdeblock
10955 Experimental vertical deblocking filter
10956
10957 @item dr/dering
10958 Deringing filter
10959
10960 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10961 @table @option
10962 @item threshold1
10963 larger -> stronger filtering
10964 @item threshold2
10965 larger -> stronger filtering
10966 @item threshold3
10967 larger -> stronger filtering
10968 @end table
10969
10970 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10971 @table @option
10972 @item f/fullyrange
10973 Stretch luminance to @code{0-255}.
10974 @end table
10975
10976 @item lb/linblenddeint
10977 Linear blend deinterlacing filter that deinterlaces the given block by
10978 filtering all lines with a @code{(1 2 1)} filter.
10979
10980 @item li/linipoldeint
10981 Linear interpolating deinterlacing filter that deinterlaces the given block by
10982 linearly interpolating every second line.
10983
10984 @item ci/cubicipoldeint
10985 Cubic interpolating deinterlacing filter deinterlaces the given block by
10986 cubically interpolating every second line.
10987
10988 @item md/mediandeint
10989 Median deinterlacing filter that deinterlaces the given block by applying a
10990 median filter to every second line.
10991
10992 @item fd/ffmpegdeint
10993 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10994 second line with a @code{(-1 4 2 4 -1)} filter.
10995
10996 @item l5/lowpass5
10997 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10998 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10999
11000 @item fq/forceQuant[|quantizer]
11001 Overrides the quantizer table from the input with the constant quantizer you
11002 specify.
11003 @table @option
11004 @item quantizer
11005 Quantizer to use
11006 @end table
11007
11008 @item de/default
11009 Default pp filter combination (@code{hb|a,vb|a,dr|a})
11010
11011 @item fa/fast
11012 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
11013
11014 @item ac
11015 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
11016 @end table
11017
11018 @subsection Examples
11019
11020 @itemize
11021 @item
11022 Apply horizontal and vertical deblocking, deringing and automatic
11023 brightness/contrast:
11024 @example
11025 pp=hb/vb/dr/al
11026 @end example
11027
11028 @item
11029 Apply default filters without brightness/contrast correction:
11030 @example
11031 pp=de/-al
11032 @end example
11033
11034 @item
11035 Apply default filters and temporal denoiser:
11036 @example
11037 pp=default/tmpnoise|1|2|3
11038 @end example
11039
11040 @item
11041 Apply deblocking on luminance only, and switch vertical deblocking on or off
11042 automatically depending on available CPU time:
11043 @example
11044 pp=hb|y/vb|a
11045 @end example
11046 @end itemize
11047
11048 @section pp7
11049 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
11050 similar to spp = 6 with 7 point DCT, where only the center sample is
11051 used after IDCT.
11052
11053 The filter accepts the following options:
11054
11055 @table @option
11056 @item qp
11057 Force a constant quantization parameter. It accepts an integer in range
11058 0 to 63. If not set, the filter will use the QP from the video stream
11059 (if available).
11060
11061 @item mode
11062 Set thresholding mode. Available modes are:
11063
11064 @table @samp
11065 @item hard
11066 Set hard thresholding.
11067 @item soft
11068 Set soft thresholding (better de-ringing effect, but likely blurrier).
11069 @item medium
11070 Set medium thresholding (good results, default).
11071 @end table
11072 @end table
11073
11074 @section premultiply
11075 Apply alpha premultiply effect to input video stream using first plane
11076 of second stream as alpha.
11077
11078 Both streams must have same dimensions and same pixel format.
11079
11080 @section prewitt
11081 Apply prewitt operator to input video stream.
11082
11083 The filter accepts the following option:
11084
11085 @table @option
11086 @item planes
11087 Set which planes will be processed, unprocessed planes will be copied.
11088 By default value 0xf, all planes will be processed.
11089
11090 @item scale
11091 Set value which will be multiplied with filtered result.
11092
11093 @item delta
11094 Set value which will be added to filtered result.
11095 @end table
11096
11097 @section psnr
11098
11099 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
11100 Ratio) between two input videos.
11101
11102 This filter takes in input two input videos, the first input is
11103 considered the "main" source and is passed unchanged to the
11104 output. The second input is used as a "reference" video for computing
11105 the PSNR.
11106
11107 Both video inputs must have the same resolution and pixel format for
11108 this filter to work correctly. Also it assumes that both inputs
11109 have the same number of frames, which are compared one by one.
11110
11111 The obtained average PSNR is printed through the logging system.
11112
11113 The filter stores the accumulated MSE (mean squared error) of each
11114 frame, and at the end of the processing it is averaged across all frames
11115 equally, and the following formula is applied to obtain the PSNR:
11116
11117 @example
11118 PSNR = 10*log10(MAX^2/MSE)
11119 @end example
11120
11121 Where MAX is the average of the maximum values of each component of the
11122 image.
11123
11124 The description of the accepted parameters follows.
11125
11126 @table @option
11127 @item stats_file, f
11128 If specified the filter will use the named file to save the PSNR of
11129 each individual frame. When filename equals "-" the data is sent to
11130 standard output.
11131
11132 @item stats_version
11133 Specifies which version of the stats file format to use. Details of
11134 each format are written below.
11135 Default value is 1.
11136
11137 @item stats_add_max
11138 Determines whether the max value is output to the stats log.
11139 Default value is 0.
11140 Requires stats_version >= 2. If this is set and stats_version < 2,
11141 the filter will return an error.
11142 @end table
11143
11144 The file printed if @var{stats_file} is selected, contains a sequence of
11145 key/value pairs of the form @var{key}:@var{value} for each compared
11146 couple of frames.
11147
11148 If a @var{stats_version} greater than 1 is specified, a header line precedes
11149 the list of per-frame-pair stats, with key value pairs following the frame
11150 format with the following parameters:
11151
11152 @table @option
11153 @item psnr_log_version
11154 The version of the log file format. Will match @var{stats_version}.
11155
11156 @item fields
11157 A comma separated list of the per-frame-pair parameters included in
11158 the log.
11159 @end table
11160
11161 A description of each shown per-frame-pair parameter follows:
11162
11163 @table @option
11164 @item n
11165 sequential number of the input frame, starting from 1
11166
11167 @item mse_avg
11168 Mean Square Error pixel-by-pixel average difference of the compared
11169 frames, averaged over all the image components.
11170
11171 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
11172 Mean Square Error pixel-by-pixel average difference of the compared
11173 frames for the component specified by the suffix.
11174
11175 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
11176 Peak Signal to Noise ratio of the compared frames for the component
11177 specified by the suffix.
11178
11179 @item max_avg, max_y, max_u, max_v
11180 Maximum allowed value for each channel, and average over all
11181 channels.
11182 @end table
11183
11184 For example:
11185 @example
11186 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
11187 [main][ref] psnr="stats_file=stats.log" [out]
11188 @end example
11189
11190 On this example the input file being processed is compared with the
11191 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
11192 is stored in @file{stats.log}.
11193
11194 @anchor{pullup}
11195 @section pullup
11196
11197 Pulldown reversal (inverse telecine) filter, capable of handling mixed
11198 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
11199 content.
11200
11201 The pullup filter is designed to take advantage of future context in making
11202 its decisions. This filter is stateless in the sense that it does not lock
11203 onto a pattern to follow, but it instead looks forward to the following
11204 fields in order to identify matches and rebuild progressive frames.
11205
11206 To produce content with an even framerate, insert the fps filter after
11207 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
11208 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
11209
11210 The filter accepts the following options:
11211
11212 @table @option
11213 @item jl
11214 @item jr
11215 @item jt
11216 @item jb
11217 These options set the amount of "junk" to ignore at the left, right, top, and
11218 bottom of the image, respectively. Left and right are in units of 8 pixels,
11219 while top and bottom are in units of 2 lines.
11220 The default is 8 pixels on each side.
11221
11222 @item sb
11223 Set the strict breaks. Setting this option to 1 will reduce the chances of
11224 filter generating an occasional mismatched frame, but it may also cause an
11225 excessive number of frames to be dropped during high motion sequences.
11226 Conversely, setting it to -1 will make filter match fields more easily.
11227 This may help processing of video where there is slight blurring between
11228 the fields, but may also cause there to be interlaced frames in the output.
11229 Default value is @code{0}.
11230
11231 @item mp
11232 Set the metric plane to use. It accepts the following values:
11233 @table @samp
11234 @item l
11235 Use luma plane.
11236
11237 @item u
11238 Use chroma blue plane.
11239
11240 @item v
11241 Use chroma red plane.
11242 @end table
11243
11244 This option may be set to use chroma plane instead of the default luma plane
11245 for doing filter's computations. This may improve accuracy on very clean
11246 source material, but more likely will decrease accuracy, especially if there
11247 is chroma noise (rainbow effect) or any grayscale video.
11248 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
11249 load and make pullup usable in realtime on slow machines.
11250 @end table
11251
11252 For best results (without duplicated frames in the output file) it is
11253 necessary to change the output frame rate. For example, to inverse
11254 telecine NTSC input:
11255 @example
11256 ffmpeg -i input -vf pullup -r 24000/1001 ...
11257 @end example
11258
11259 @section qp
11260
11261 Change video quantization parameters (QP).
11262
11263 The filter accepts the following option:
11264
11265 @table @option
11266 @item qp
11267 Set expression for quantization parameter.
11268 @end table
11269
11270 The expression is evaluated through the eval API and can contain, among others,
11271 the following constants:
11272
11273 @table @var
11274 @item known
11275 1 if index is not 129, 0 otherwise.
11276
11277 @item qp
11278 Sequentional index starting from -129 to 128.
11279 @end table
11280
11281 @subsection Examples
11282
11283 @itemize
11284 @item
11285 Some equation like:
11286 @example
11287 qp=2+2*sin(PI*qp)
11288 @end example
11289 @end itemize
11290
11291 @section random
11292
11293 Flush video frames from internal cache of frames into a random order.
11294 No frame is discarded.
11295 Inspired by @ref{frei0r} nervous filter.
11296
11297 @table @option
11298 @item frames
11299 Set size in number of frames of internal cache, in range from @code{2} to
11300 @code{512}. Default is @code{30}.
11301
11302 @item seed
11303 Set seed for random number generator, must be an integer included between
11304 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
11305 less than @code{0}, the filter will try to use a good random seed on a
11306 best effort basis.
11307 @end table
11308
11309 @section readeia608
11310
11311 Read closed captioning (EIA-608) information from the top lines of a video frame.
11312
11313 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
11314 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
11315 with EIA-608 data (starting from 0). A description of each metadata value follows:
11316
11317 @table @option
11318 @item lavfi.readeia608.X.cc
11319 The two bytes stored as EIA-608 data (printed in hexadecimal).
11320
11321 @item lavfi.readeia608.X.line
11322 The number of the line on which the EIA-608 data was identified and read.
11323 @end table
11324
11325 This filter accepts the following options:
11326
11327 @table @option
11328 @item scan_min
11329 Set the line to start scanning for EIA-608 data. Default is @code{0}.
11330
11331 @item scan_max
11332 Set the line to end scanning for EIA-608 data. Default is @code{29}.
11333
11334 @item mac
11335 Set minimal acceptable amplitude change for sync codes detection.
11336 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
11337
11338 @item spw
11339 Set the ratio of width reserved for sync code detection.
11340 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
11341
11342 @item mhd
11343 Set the max peaks height difference for sync code detection.
11344 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11345
11346 @item mpd
11347 Set max peaks period difference for sync code detection.
11348 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11349
11350 @item msd
11351 Set the first two max start code bits differences.
11352 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
11353
11354 @item bhd
11355 Set the minimum ratio of bits height compared to 3rd start code bit.
11356 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
11357
11358 @item th_w
11359 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
11360
11361 @item th_b
11362 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
11363
11364 @item chp
11365 Enable checking the parity bit. In the event of a parity error, the filter will output
11366 @code{0x00} for that character. Default is false.
11367 @end table
11368
11369 @subsection Examples
11370
11371 @itemize
11372 @item
11373 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
11374 @example
11375 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
11376 @end example
11377 @end itemize
11378
11379 @section readvitc
11380
11381 Read vertical interval timecode (VITC) information from the top lines of a
11382 video frame.
11383
11384 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
11385 timecode value, if a valid timecode has been detected. Further metadata key
11386 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
11387 timecode data has been found or not.
11388
11389 This filter accepts the following options:
11390
11391 @table @option
11392 @item scan_max
11393 Set the maximum number of lines to scan for VITC data. If the value is set to
11394 @code{-1} the full video frame is scanned. Default is @code{45}.
11395
11396 @item thr_b
11397 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
11398 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
11399
11400 @item thr_w
11401 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
11402 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
11403 @end table
11404
11405 @subsection Examples
11406
11407 @itemize
11408 @item
11409 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
11410 draw @code{--:--:--:--} as a placeholder:
11411 @example
11412 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
11413 @end example
11414 @end itemize
11415
11416 @section remap
11417
11418 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
11419
11420 Destination pixel at position (X, Y) will be picked from source (x, y) position
11421 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
11422 value for pixel will be used for destination pixel.
11423
11424 Xmap and Ymap input video streams must be of same dimensions. Output video stream
11425 will have Xmap/Ymap video stream dimensions.
11426 Xmap and Ymap input video streams are 16bit depth, single channel.
11427
11428 @section removegrain
11429
11430 The removegrain filter is a spatial denoiser for progressive video.
11431
11432 @table @option
11433 @item m0
11434 Set mode for the first plane.
11435
11436 @item m1
11437 Set mode for the second plane.
11438
11439 @item m2
11440 Set mode for the third plane.
11441
11442 @item m3
11443 Set mode for the fourth plane.
11444 @end table
11445
11446 Range of mode is from 0 to 24. Description of each mode follows:
11447
11448 @table @var
11449 @item 0
11450 Leave input plane unchanged. Default.
11451
11452 @item 1
11453 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
11454
11455 @item 2
11456 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
11457
11458 @item 3
11459 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
11460
11461 @item 4
11462 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
11463 This is equivalent to a median filter.
11464
11465 @item 5
11466 Line-sensitive clipping giving the minimal change.
11467
11468 @item 6
11469 Line-sensitive clipping, intermediate.
11470
11471 @item 7
11472 Line-sensitive clipping, intermediate.
11473
11474 @item 8
11475 Line-sensitive clipping, intermediate.
11476
11477 @item 9
11478 Line-sensitive clipping on a line where the neighbours pixels are the closest.
11479
11480 @item 10
11481 Replaces the target pixel with the closest neighbour.
11482
11483 @item 11
11484 [1 2 1] horizontal and vertical kernel blur.
11485
11486 @item 12
11487 Same as mode 11.
11488
11489 @item 13
11490 Bob mode, interpolates top field from the line where the neighbours
11491 pixels are the closest.
11492
11493 @item 14
11494 Bob mode, interpolates bottom field from the line where the neighbours
11495 pixels are the closest.
11496
11497 @item 15
11498 Bob mode, interpolates top field. Same as 13 but with a more complicated
11499 interpolation formula.
11500
11501 @item 16
11502 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
11503 interpolation formula.
11504
11505 @item 17
11506 Clips the pixel with the minimum and maximum of respectively the maximum and
11507 minimum of each pair of opposite neighbour pixels.
11508
11509 @item 18
11510 Line-sensitive clipping using opposite neighbours whose greatest distance from
11511 the current pixel is minimal.
11512
11513 @item 19
11514 Replaces the pixel with the average of its 8 neighbours.
11515
11516 @item 20
11517 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
11518
11519 @item 21
11520 Clips pixels using the averages of opposite neighbour.
11521
11522 @item 22
11523 Same as mode 21 but simpler and faster.
11524
11525 @item 23
11526 Small edge and halo removal, but reputed useless.
11527
11528 @item 24
11529 Similar as 23.
11530 @end table
11531
11532 @section removelogo
11533
11534 Suppress a TV station logo, using an image file to determine which
11535 pixels comprise the logo. It works by filling in the pixels that
11536 comprise the logo with neighboring pixels.
11537
11538 The filter accepts the following options:
11539
11540 @table @option
11541 @item filename, f
11542 Set the filter bitmap file, which can be any image format supported by
11543 libavformat. The width and height of the image file must match those of the
11544 video stream being processed.
11545 @end table
11546
11547 Pixels in the provided bitmap image with a value of zero are not
11548 considered part of the logo, non-zero pixels are considered part of
11549 the logo. If you use white (255) for the logo and black (0) for the
11550 rest, you will be safe. For making the filter bitmap, it is
11551 recommended to take a screen capture of a black frame with the logo
11552 visible, and then using a threshold filter followed by the erode
11553 filter once or twice.
11554
11555 If needed, little splotches can be fixed manually. Remember that if
11556 logo pixels are not covered, the filter quality will be much
11557 reduced. Marking too many pixels as part of the logo does not hurt as
11558 much, but it will increase the amount of blurring needed to cover over
11559 the image and will destroy more information than necessary, and extra
11560 pixels will slow things down on a large logo.
11561
11562 @section repeatfields
11563
11564 This filter uses the repeat_field flag from the Video ES headers and hard repeats
11565 fields based on its value.
11566
11567 @section reverse
11568
11569 Reverse a video clip.
11570
11571 Warning: This filter requires memory to buffer the entire clip, so trimming
11572 is suggested.
11573
11574 @subsection Examples
11575
11576 @itemize
11577 @item
11578 Take the first 5 seconds of a clip, and reverse it.
11579 @example
11580 trim=end=5,reverse
11581 @end example
11582 @end itemize
11583
11584 @section rotate
11585
11586 Rotate video by an arbitrary angle expressed in radians.
11587
11588 The filter accepts the following options:
11589
11590 A description of the optional parameters follows.
11591 @table @option
11592 @item angle, a
11593 Set an expression for the angle by which to rotate the input video
11594 clockwise, expressed as a number of radians. A negative value will
11595 result in a counter-clockwise rotation. By default it is set to "0".
11596
11597 This expression is evaluated for each frame.
11598
11599 @item out_w, ow
11600 Set the output width expression, default value is "iw".
11601 This expression is evaluated just once during configuration.
11602
11603 @item out_h, oh
11604 Set the output height expression, default value is "ih".
11605 This expression is evaluated just once during configuration.
11606
11607 @item bilinear
11608 Enable bilinear interpolation if set to 1, a value of 0 disables
11609 it. Default value is 1.
11610
11611 @item fillcolor, c
11612 Set the color used to fill the output area not covered by the rotated
11613 image. For the general syntax of this option, check the "Color" section in the
11614 ffmpeg-utils manual. If the special value "none" is selected then no
11615 background is printed (useful for example if the background is never shown).
11616
11617 Default value is "black".
11618 @end table
11619
11620 The expressions for the angle and the output size can contain the
11621 following constants and functions:
11622
11623 @table @option
11624 @item n
11625 sequential number of the input frame, starting from 0. It is always NAN
11626 before the first frame is filtered.
11627
11628 @item t
11629 time in seconds of the input frame, it is set to 0 when the filter is
11630 configured. It is always NAN before the first frame is filtered.
11631
11632 @item hsub
11633 @item vsub
11634 horizontal and vertical chroma subsample values. For example for the
11635 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11636
11637 @item in_w, iw
11638 @item in_h, ih
11639 the input video width and height
11640
11641 @item out_w, ow
11642 @item out_h, oh
11643 the output width and height, that is the size of the padded area as
11644 specified by the @var{width} and @var{height} expressions
11645
11646 @item rotw(a)
11647 @item roth(a)
11648 the minimal width/height required for completely containing the input
11649 video rotated by @var{a} radians.
11650
11651 These are only available when computing the @option{out_w} and
11652 @option{out_h} expressions.
11653 @end table
11654
11655 @subsection Examples
11656
11657 @itemize
11658 @item
11659 Rotate the input by PI/6 radians clockwise:
11660 @example
11661 rotate=PI/6
11662 @end example
11663
11664 @item
11665 Rotate the input by PI/6 radians counter-clockwise:
11666 @example
11667 rotate=-PI/6
11668 @end example
11669
11670 @item
11671 Rotate the input by 45 degrees clockwise:
11672 @example
11673 rotate=45*PI/180
11674 @end example
11675
11676 @item
11677 Apply a constant rotation with period T, starting from an angle of PI/3:
11678 @example
11679 rotate=PI/3+2*PI*t/T
11680 @end example
11681
11682 @item
11683 Make the input video rotation oscillating with a period of T
11684 seconds and an amplitude of A radians:
11685 @example
11686 rotate=A*sin(2*PI/T*t)
11687 @end example
11688
11689 @item
11690 Rotate the video, output size is chosen so that the whole rotating
11691 input video is always completely contained in the output:
11692 @example
11693 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11694 @end example
11695
11696 @item
11697 Rotate the video, reduce the output size so that no background is ever
11698 shown:
11699 @example
11700 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11701 @end example
11702 @end itemize
11703
11704 @subsection Commands
11705
11706 The filter supports the following commands:
11707
11708 @table @option
11709 @item a, angle
11710 Set the angle expression.
11711 The command accepts the same syntax of the corresponding option.
11712
11713 If the specified expression is not valid, it is kept at its current
11714 value.
11715 @end table
11716
11717 @section sab
11718
11719 Apply Shape Adaptive Blur.
11720
11721 The filter accepts the following options:
11722
11723 @table @option
11724 @item luma_radius, lr
11725 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11726 value is 1.0. A greater value will result in a more blurred image, and
11727 in slower processing.
11728
11729 @item luma_pre_filter_radius, lpfr
11730 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11731 value is 1.0.
11732
11733 @item luma_strength, ls
11734 Set luma maximum difference between pixels to still be considered, must
11735 be a value in the 0.1-100.0 range, default value is 1.0.
11736
11737 @item chroma_radius, cr
11738 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11739 greater value will result in a more blurred image, and in slower
11740 processing.
11741
11742 @item chroma_pre_filter_radius, cpfr
11743 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11744
11745 @item chroma_strength, cs
11746 Set chroma maximum difference between pixels to still be considered,
11747 must be a value in the -0.9-100.0 range.
11748 @end table
11749
11750 Each chroma option value, if not explicitly specified, is set to the
11751 corresponding luma option value.
11752
11753 @anchor{scale}
11754 @section scale
11755
11756 Scale (resize) the input video, using the libswscale library.
11757
11758 The scale filter forces the output display aspect ratio to be the same
11759 of the input, by changing the output sample aspect ratio.
11760
11761 If the input image format is different from the format requested by
11762 the next filter, the scale filter will convert the input to the
11763 requested format.
11764
11765 @subsection Options
11766 The filter accepts the following options, or any of the options
11767 supported by the libswscale scaler.
11768
11769 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11770 the complete list of scaler options.
11771
11772 @table @option
11773 @item width, w
11774 @item height, h
11775 Set the output video dimension expression. Default value is the input
11776 dimension.
11777
11778 If the value is 0, the input width is used for the output.
11779
11780 If one of the values is -1, the scale filter will use a value that
11781 maintains the aspect ratio of the input image, calculated from the
11782 other specified dimension. If both of them are -1, the input size is
11783 used
11784
11785 If one of the values is -n with n > 1, the scale filter will also use a value
11786 that maintains the aspect ratio of the input image, calculated from the other
11787 specified dimension. After that it will, however, make sure that the calculated
11788 dimension is divisible by n and adjust the value if necessary.
11789
11790 See below for the list of accepted constants for use in the dimension
11791 expression.
11792
11793 @item eval
11794 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11795
11796 @table @samp
11797 @item init
11798 Only evaluate expressions once during the filter initialization or when a command is processed.
11799
11800 @item frame
11801 Evaluate expressions for each incoming frame.
11802
11803 @end table
11804
11805 Default value is @samp{init}.
11806
11807
11808 @item interl
11809 Set the interlacing mode. It accepts the following values:
11810
11811 @table @samp
11812 @item 1
11813 Force interlaced aware scaling.
11814
11815 @item 0
11816 Do not apply interlaced scaling.
11817
11818 @item -1
11819 Select interlaced aware scaling depending on whether the source frames
11820 are flagged as interlaced or not.
11821 @end table
11822
11823 Default value is @samp{0}.
11824
11825 @item flags
11826 Set libswscale scaling flags. See
11827 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11828 complete list of values. If not explicitly specified the filter applies
11829 the default flags.
11830
11831
11832 @item param0, param1
11833 Set libswscale input parameters for scaling algorithms that need them. See
11834 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11835 complete documentation. If not explicitly specified the filter applies
11836 empty parameters.
11837
11838
11839
11840 @item size, s
11841 Set the video size. For the syntax of this option, check the
11842 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11843
11844 @item in_color_matrix
11845 @item out_color_matrix
11846 Set in/output YCbCr color space type.
11847
11848 This allows the autodetected value to be overridden as well as allows forcing
11849 a specific value used for the output and encoder.
11850
11851 If not specified, the color space type depends on the pixel format.
11852
11853 Possible values:
11854
11855 @table @samp
11856 @item auto
11857 Choose automatically.
11858
11859 @item bt709
11860 Format conforming to International Telecommunication Union (ITU)
11861 Recommendation BT.709.
11862
11863 @item fcc
11864 Set color space conforming to the United States Federal Communications
11865 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11866
11867 @item bt601
11868 Set color space conforming to:
11869
11870 @itemize
11871 @item
11872 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11873
11874 @item
11875 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11876
11877 @item
11878 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11879
11880 @end itemize
11881
11882 @item smpte240m
11883 Set color space conforming to SMPTE ST 240:1999.
11884 @end table
11885
11886 @item in_range
11887 @item out_range
11888 Set in/output YCbCr sample range.
11889
11890 This allows the autodetected value to be overridden as well as allows forcing
11891 a specific value used for the output and encoder. If not specified, the
11892 range depends on the pixel format. Possible values:
11893
11894 @table @samp
11895 @item auto
11896 Choose automatically.
11897
11898 @item jpeg/full/pc
11899 Set full range (0-255 in case of 8-bit luma).
11900
11901 @item mpeg/tv
11902 Set "MPEG" range (16-235 in case of 8-bit luma).
11903 @end table
11904
11905 @item force_original_aspect_ratio
11906 Enable decreasing or increasing output video width or height if necessary to
11907 keep the original aspect ratio. Possible values:
11908
11909 @table @samp
11910 @item disable
11911 Scale the video as specified and disable this feature.
11912
11913 @item decrease
11914 The output video dimensions will automatically be decreased if needed.
11915
11916 @item increase
11917 The output video dimensions will automatically be increased if needed.
11918
11919 @end table
11920
11921 One useful instance of this option is that when you know a specific device's
11922 maximum allowed resolution, you can use this to limit the output video to
11923 that, while retaining the aspect ratio. For example, device A allows
11924 1280x720 playback, and your video is 1920x800. Using this option (set it to
11925 decrease) and specifying 1280x720 to the command line makes the output
11926 1280x533.
11927
11928 Please note that this is a different thing than specifying -1 for @option{w}
11929 or @option{h}, you still need to specify the output resolution for this option
11930 to work.
11931
11932 @end table
11933
11934 The values of the @option{w} and @option{h} options are expressions
11935 containing the following constants:
11936
11937 @table @var
11938 @item in_w
11939 @item in_h
11940 The input width and height
11941
11942 @item iw
11943 @item ih
11944 These are the same as @var{in_w} and @var{in_h}.
11945
11946 @item out_w
11947 @item out_h
11948 The output (scaled) width and height
11949
11950 @item ow
11951 @item oh
11952 These are the same as @var{out_w} and @var{out_h}
11953
11954 @item a
11955 The same as @var{iw} / @var{ih}
11956
11957 @item sar
11958 input sample aspect ratio
11959
11960 @item dar
11961 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11962
11963 @item hsub
11964 @item vsub
11965 horizontal and vertical input chroma subsample values. For example for the
11966 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11967
11968 @item ohsub
11969 @item ovsub
11970 horizontal and vertical output chroma subsample values. For example for the
11971 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11972 @end table
11973
11974 @subsection Examples
11975
11976 @itemize
11977 @item
11978 Scale the input video to a size of 200x100
11979 @example
11980 scale=w=200:h=100
11981 @end example
11982
11983 This is equivalent to:
11984 @example
11985 scale=200:100
11986 @end example
11987
11988 or:
11989 @example
11990 scale=200x100
11991 @end example
11992
11993 @item
11994 Specify a size abbreviation for the output size:
11995 @example
11996 scale=qcif
11997 @end example
11998
11999 which can also be written as:
12000 @example
12001 scale=size=qcif
12002 @end example
12003
12004 @item
12005 Scale the input to 2x:
12006 @example
12007 scale=w=2*iw:h=2*ih
12008 @end example
12009
12010 @item
12011 The above is the same as:
12012 @example
12013 scale=2*in_w:2*in_h
12014 @end example
12015
12016 @item
12017 Scale the input to 2x with forced interlaced scaling:
12018 @example
12019 scale=2*iw:2*ih:interl=1
12020 @end example
12021
12022 @item
12023 Scale the input to half size:
12024 @example
12025 scale=w=iw/2:h=ih/2
12026 @end example
12027
12028 @item
12029 Increase the width, and set the height to the same size:
12030 @example
12031 scale=3/2*iw:ow
12032 @end example
12033
12034 @item
12035 Seek Greek harmony:
12036 @example
12037 scale=iw:1/PHI*iw
12038 scale=ih*PHI:ih
12039 @end example
12040
12041 @item
12042 Increase the height, and set the width to 3/2 of the height:
12043 @example
12044 scale=w=3/2*oh:h=3/5*ih
12045 @end example
12046
12047 @item
12048 Increase the size, making the size a multiple of the chroma
12049 subsample values:
12050 @example
12051 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
12052 @end example
12053
12054 @item
12055 Increase the width to a maximum of 500 pixels,
12056 keeping the same aspect ratio as the input:
12057 @example
12058 scale=w='min(500\, iw*3/2):h=-1'
12059 @end example
12060 @end itemize
12061
12062 @subsection Commands
12063
12064 This filter supports the following commands:
12065 @table @option
12066 @item width, w
12067 @item height, h
12068 Set the output video dimension expression.
12069 The command accepts the same syntax of the corresponding option.
12070
12071 If the specified expression is not valid, it is kept at its current
12072 value.
12073 @end table
12074
12075 @section scale_npp
12076
12077 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
12078 format conversion on CUDA video frames. Setting the output width and height
12079 works in the same way as for the @var{scale} filter.
12080
12081 The following additional options are accepted:
12082 @table @option
12083 @item format
12084 The pixel format of the output CUDA frames. If set to the string "same" (the
12085 default), the input format will be kept. Note that automatic format negotiation
12086 and conversion is not yet supported for hardware frames
12087
12088 @item interp_algo
12089 The interpolation algorithm used for resizing. One of the following:
12090 @table @option
12091 @item nn
12092 Nearest neighbour.
12093
12094 @item linear
12095 @item cubic
12096 @item cubic2p_bspline
12097 2-parameter cubic (B=1, C=0)
12098
12099 @item cubic2p_catmullrom
12100 2-parameter cubic (B=0, C=1/2)
12101
12102 @item cubic2p_b05c03
12103 2-parameter cubic (B=1/2, C=3/10)
12104
12105 @item super
12106 Supersampling
12107
12108 @item lanczos
12109 @end table
12110
12111 @end table
12112
12113 @section scale2ref
12114
12115 Scale (resize) the input video, based on a reference video.
12116
12117 See the scale filter for available options, scale2ref supports the same but
12118 uses the reference video instead of the main input as basis.
12119
12120 @subsection Examples
12121
12122 @itemize
12123 @item
12124 Scale a subtitle stream to match the main video in size before overlaying
12125 @example
12126 'scale2ref[b][a];[a][b]overlay'
12127 @end example
12128 @end itemize
12129
12130 @anchor{selectivecolor}
12131 @section selectivecolor
12132
12133 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
12134 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
12135 by the "purity" of the color (that is, how saturated it already is).
12136
12137 This filter is similar to the Adobe Photoshop Selective Color tool.
12138
12139 The filter accepts the following options:
12140
12141 @table @option
12142 @item correction_method
12143 Select color correction method.
12144
12145 Available values are:
12146 @table @samp
12147 @item absolute
12148 Specified adjustments are applied "as-is" (added/subtracted to original pixel
12149 component value).
12150 @item relative
12151 Specified adjustments are relative to the original component value.
12152 @end table
12153 Default is @code{absolute}.
12154 @item reds
12155 Adjustments for red pixels (pixels where the red component is the maximum)
12156 @item yellows
12157 Adjustments for yellow pixels (pixels where the blue component is the minimum)
12158 @item greens
12159 Adjustments for green pixels (pixels where the green component is the maximum)
12160 @item cyans
12161 Adjustments for cyan pixels (pixels where the red component is the minimum)
12162 @item blues
12163 Adjustments for blue pixels (pixels where the blue component is the maximum)
12164 @item magentas
12165 Adjustments for magenta pixels (pixels where the green component is the minimum)
12166 @item whites
12167 Adjustments for white pixels (pixels where all components are greater than 128)
12168 @item neutrals
12169 Adjustments for all pixels except pure black and pure white
12170 @item blacks
12171 Adjustments for black pixels (pixels where all components are lesser than 128)
12172 @item psfile
12173 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
12174 @end table
12175
12176 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
12177 4 space separated floating point adjustment values in the [-1,1] range,
12178 respectively to adjust the amount of cyan, magenta, yellow and black for the
12179 pixels of its range.
12180
12181 @subsection Examples
12182
12183 @itemize
12184 @item
12185 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
12186 increase magenta by 27% in blue areas:
12187 @example
12188 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
12189 @end example
12190
12191 @item
12192 Use a Photoshop selective color preset:
12193 @example
12194 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
12195 @end example
12196 @end itemize
12197
12198 @anchor{separatefields}
12199 @section separatefields
12200
12201 The @code{separatefields} takes a frame-based video input and splits
12202 each frame into its components fields, producing a new half height clip
12203 with twice the frame rate and twice the frame count.
12204
12205 This filter use field-dominance information in frame to decide which
12206 of each pair of fields to place first in the output.
12207 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
12208
12209 @section setdar, setsar
12210
12211 The @code{setdar} filter sets the Display Aspect Ratio for the filter
12212 output video.
12213
12214 This is done by changing the specified Sample (aka Pixel) Aspect
12215 Ratio, according to the following equation:
12216 @example
12217 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
12218 @end example
12219
12220 Keep in mind that the @code{setdar} filter does not modify the pixel
12221 dimensions of the video frame. Also, the display aspect ratio set by
12222 this filter may be changed by later filters in the filterchain,
12223 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
12224 applied.
12225
12226 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
12227 the filter output video.
12228
12229 Note that as a consequence of the application of this filter, the
12230 output display aspect ratio will change according to the equation
12231 above.
12232
12233 Keep in mind that the sample aspect ratio set by the @code{setsar}
12234 filter may be changed by later filters in the filterchain, e.g. if
12235 another "setsar" or a "setdar" filter is applied.
12236
12237 It accepts the following parameters:
12238
12239 @table @option
12240 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
12241 Set the aspect ratio used by the filter.
12242
12243 The parameter can be a floating point number string, an expression, or
12244 a string of the form @var{num}:@var{den}, where @var{num} and
12245 @var{den} are the numerator and denominator of the aspect ratio. If
12246 the parameter is not specified, it is assumed the value "0".
12247 In case the form "@var{num}:@var{den}" is used, the @code{:} character
12248 should be escaped.
12249
12250 @item max
12251 Set the maximum integer value to use for expressing numerator and
12252 denominator when reducing the expressed aspect ratio to a rational.
12253 Default value is @code{100}.
12254
12255 @end table
12256
12257 The parameter @var{sar} is an expression containing
12258 the following constants:
12259
12260 @table @option
12261 @item E, PI, PHI
12262 These are approximated values for the mathematical constants e
12263 (Euler's number), pi (Greek pi), and phi (the golden ratio).
12264
12265 @item w, h
12266 The input width and height.
12267
12268 @item a
12269 These are the same as @var{w} / @var{h}.
12270
12271 @item sar
12272 The input sample aspect ratio.
12273
12274 @item dar
12275 The input display aspect ratio. It is the same as
12276 (@var{w} / @var{h}) * @var{sar}.
12277
12278 @item hsub, vsub
12279 Horizontal and vertical chroma subsample values. For example, for the
12280 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12281 @end table
12282
12283 @subsection Examples
12284
12285 @itemize
12286
12287 @item
12288 To change the display aspect ratio to 16:9, specify one of the following:
12289 @example
12290 setdar=dar=1.77777
12291 setdar=dar=16/9
12292 @end example
12293
12294 @item
12295 To change the sample aspect ratio to 10:11, specify:
12296 @example
12297 setsar=sar=10/11
12298 @end example
12299
12300 @item
12301 To set a display aspect ratio of 16:9, and specify a maximum integer value of
12302 1000 in the aspect ratio reduction, use the command:
12303 @example
12304 setdar=ratio=16/9:max=1000
12305 @end example
12306
12307 @end itemize
12308
12309 @anchor{setfield}
12310 @section setfield
12311
12312 Force field for the output video frame.
12313
12314 The @code{setfield} filter marks the interlace type field for the
12315 output frames. It does not change the input frame, but only sets the
12316 corresponding property, which affects how the frame is treated by
12317 following filters (e.g. @code{fieldorder} or @code{yadif}).
12318
12319 The filter accepts the following options:
12320
12321 @table @option
12322
12323 @item mode
12324 Available values are:
12325
12326 @table @samp
12327 @item auto
12328 Keep the same field property.
12329
12330 @item bff
12331 Mark the frame as bottom-field-first.
12332
12333 @item tff
12334 Mark the frame as top-field-first.
12335
12336 @item prog
12337 Mark the frame as progressive.
12338 @end table
12339 @end table
12340
12341 @section showinfo
12342
12343 Show a line containing various information for each input video frame.
12344 The input video is not modified.
12345
12346 The shown line contains a sequence of key/value pairs of the form
12347 @var{key}:@var{value}.
12348
12349 The following values are shown in the output:
12350
12351 @table @option
12352 @item n
12353 The (sequential) number of the input frame, starting from 0.
12354
12355 @item pts
12356 The Presentation TimeStamp of the input frame, expressed as a number of
12357 time base units. The time base unit depends on the filter input pad.
12358
12359 @item pts_time
12360 The Presentation TimeStamp of the input frame, expressed as a number of
12361 seconds.
12362
12363 @item pos
12364 The position of the frame in the input stream, or -1 if this information is
12365 unavailable and/or meaningless (for example in case of synthetic video).
12366
12367 @item fmt
12368 The pixel format name.
12369
12370 @item sar
12371 The sample aspect ratio of the input frame, expressed in the form
12372 @var{num}/@var{den}.
12373
12374 @item s
12375 The size of the input frame. For the syntax of this option, check the
12376 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12377
12378 @item i
12379 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
12380 for bottom field first).
12381
12382 @item iskey
12383 This is 1 if the frame is a key frame, 0 otherwise.
12384
12385 @item type
12386 The picture type of the input frame ("I" for an I-frame, "P" for a
12387 P-frame, "B" for a B-frame, or "?" for an unknown type).
12388 Also refer to the documentation of the @code{AVPictureType} enum and of
12389 the @code{av_get_picture_type_char} function defined in
12390 @file{libavutil/avutil.h}.
12391
12392 @item checksum
12393 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
12394
12395 @item plane_checksum
12396 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
12397 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
12398 @end table
12399
12400 @section showpalette
12401
12402 Displays the 256 colors palette of each frame. This filter is only relevant for
12403 @var{pal8} pixel format frames.
12404
12405 It accepts the following option:
12406
12407 @table @option
12408 @item s
12409 Set the size of the box used to represent one palette color entry. Default is
12410 @code{30} (for a @code{30x30} pixel box).
12411 @end table
12412
12413 @section shuffleframes
12414
12415 Reorder and/or duplicate and/or drop video frames.
12416
12417 It accepts the following parameters:
12418
12419 @table @option
12420 @item mapping
12421 Set the destination indexes of input frames.
12422 This is space or '|' separated list of indexes that maps input frames to output
12423 frames. Number of indexes also sets maximal value that each index may have.
12424 '-1' index have special meaning and that is to drop frame.
12425 @end table
12426
12427 The first frame has the index 0. The default is to keep the input unchanged.
12428
12429 @subsection Examples
12430
12431 @itemize
12432 @item
12433 Swap second and third frame of every three frames of the input:
12434 @example
12435 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
12436 @end example
12437
12438 @item
12439 Swap 10th and 1st frame of every ten frames of the input:
12440 @example
12441 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
12442 @end example
12443 @end itemize
12444
12445 @section shuffleplanes
12446
12447 Reorder and/or duplicate video planes.
12448
12449 It accepts the following parameters:
12450
12451 @table @option
12452
12453 @item map0
12454 The index of the input plane to be used as the first output plane.
12455
12456 @item map1
12457 The index of the input plane to be used as the second output plane.
12458
12459 @item map2
12460 The index of the input plane to be used as the third output plane.
12461
12462 @item map3
12463 The index of the input plane to be used as the fourth output plane.
12464
12465 @end table
12466
12467 The first plane has the index 0. The default is to keep the input unchanged.
12468
12469 @subsection Examples
12470
12471 @itemize
12472 @item
12473 Swap the second and third planes of the input:
12474 @example
12475 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
12476 @end example
12477 @end itemize
12478
12479 @anchor{signalstats}
12480 @section signalstats
12481 Evaluate various visual metrics that assist in determining issues associated
12482 with the digitization of analog video media.
12483
12484 By default the filter will log these metadata values:
12485
12486 @table @option
12487 @item YMIN
12488 Display the minimal Y value contained within the input frame. Expressed in
12489 range of [0-255].
12490
12491 @item YLOW
12492 Display the Y value at the 10% percentile within the input frame. Expressed in
12493 range of [0-255].
12494
12495 @item YAVG
12496 Display the average Y value within the input frame. Expressed in range of
12497 [0-255].
12498
12499 @item YHIGH
12500 Display the Y value at the 90% percentile within the input frame. Expressed in
12501 range of [0-255].
12502
12503 @item YMAX
12504 Display the maximum Y value contained within the input frame. Expressed in
12505 range of [0-255].
12506
12507 @item UMIN
12508 Display the minimal U value contained within the input frame. Expressed in
12509 range of [0-255].
12510
12511 @item ULOW
12512 Display the U value at the 10% percentile within the input frame. Expressed in
12513 range of [0-255].
12514
12515 @item UAVG
12516 Display the average U value within the input frame. Expressed in range of
12517 [0-255].
12518
12519 @item UHIGH
12520 Display the U value at the 90% percentile within the input frame. Expressed in
12521 range of [0-255].
12522
12523 @item UMAX
12524 Display the maximum U value contained within the input frame. Expressed in
12525 range of [0-255].
12526
12527 @item VMIN
12528 Display the minimal V value contained within the input frame. Expressed in
12529 range of [0-255].
12530
12531 @item VLOW
12532 Display the V value at the 10% percentile within the input frame. Expressed in
12533 range of [0-255].
12534
12535 @item VAVG
12536 Display the average V value within the input frame. Expressed in range of
12537 [0-255].
12538
12539 @item VHIGH
12540 Display the V value at the 90% percentile within the input frame. Expressed in
12541 range of [0-255].
12542
12543 @item VMAX
12544 Display the maximum V value contained within the input frame. Expressed in
12545 range of [0-255].
12546
12547 @item SATMIN
12548 Display the minimal saturation value contained within the input frame.
12549 Expressed in range of [0-~181.02].
12550
12551 @item SATLOW
12552 Display the saturation value at the 10% percentile within the input frame.
12553 Expressed in range of [0-~181.02].
12554
12555 @item SATAVG
12556 Display the average saturation value within the input frame. Expressed in range
12557 of [0-~181.02].
12558
12559 @item SATHIGH
12560 Display the saturation value at the 90% percentile within the input frame.
12561 Expressed in range of [0-~181.02].
12562
12563 @item SATMAX
12564 Display the maximum saturation value contained within the input frame.
12565 Expressed in range of [0-~181.02].
12566
12567 @item HUEMED
12568 Display the median value for hue within the input frame. Expressed in range of
12569 [0-360].
12570
12571 @item HUEAVG
12572 Display the average value for hue within the input frame. Expressed in range of
12573 [0-360].
12574
12575 @item YDIF
12576 Display the average of sample value difference between all values of the Y
12577 plane in the current frame and corresponding values of the previous input frame.
12578 Expressed in range of [0-255].
12579
12580 @item UDIF
12581 Display the average of sample value difference between all values of the U
12582 plane in the current frame and corresponding values of the previous input frame.
12583 Expressed in range of [0-255].
12584
12585 @item VDIF
12586 Display the average of sample value difference between all values of the V
12587 plane in the current frame and corresponding values of the previous input frame.
12588 Expressed in range of [0-255].
12589
12590 @item YBITDEPTH
12591 Display bit depth of Y plane in current frame.
12592 Expressed in range of [0-16].
12593
12594 @item UBITDEPTH
12595 Display bit depth of U plane in current frame.
12596 Expressed in range of [0-16].
12597
12598 @item VBITDEPTH
12599 Display bit depth of V plane in current frame.
12600 Expressed in range of [0-16].
12601 @end table
12602
12603 The filter accepts the following options:
12604
12605 @table @option
12606 @item stat
12607 @item out
12608
12609 @option{stat} specify an additional form of image analysis.
12610 @option{out} output video with the specified type of pixel highlighted.
12611
12612 Both options accept the following values:
12613
12614 @table @samp
12615 @item tout
12616 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
12617 unlike the neighboring pixels of the same field. Examples of temporal outliers
12618 include the results of video dropouts, head clogs, or tape tracking issues.
12619
12620 @item vrep
12621 Identify @var{vertical line repetition}. Vertical line repetition includes
12622 similar rows of pixels within a frame. In born-digital video vertical line
12623 repetition is common, but this pattern is uncommon in video digitized from an
12624 analog source. When it occurs in video that results from the digitization of an
12625 analog source it can indicate concealment from a dropout compensator.
12626
12627 @item brng
12628 Identify pixels that fall outside of legal broadcast range.
12629 @end table
12630
12631 @item color, c
12632 Set the highlight color for the @option{out} option. The default color is
12633 yellow.
12634 @end table
12635
12636 @subsection Examples
12637
12638 @itemize
12639 @item
12640 Output data of various video metrics:
12641 @example
12642 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
12643 @end example
12644
12645 @item
12646 Output specific data about the minimum and maximum values of the Y plane per frame:
12647 @example
12648 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
12649 @end example
12650
12651 @item
12652 Playback video while highlighting pixels that are outside of broadcast range in red.
12653 @example
12654 ffplay example.mov -vf signalstats="out=brng:color=red"
12655 @end example
12656
12657 @item
12658 Playback video with signalstats metadata drawn over the frame.
12659 @example
12660 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12661 @end example
12662
12663 The contents of signalstat_drawtext.txt used in the command are:
12664 @example
12665 time %@{pts:hms@}
12666 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12667 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12668 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12669 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12670
12671 @end example
12672 @end itemize
12673
12674 @anchor{signature}
12675 @section signature
12676
12677 Calculates the MPEG-7 Video Signature. The filter can handle more than one
12678 input. In this case the matching between the inputs can be calculated additionally.
12679 The filter always passes through the first input. The signature of each stream can
12680 be written into a file.
12681
12682 It accepts the following options:
12683
12684 @table @option
12685 @item detectmode
12686 Enable or disable the matching process.
12687
12688 Available values are:
12689
12690 @table @samp
12691 @item off
12692 Disable the calculation of a matching (default).
12693 @item full
12694 Calculate the matching for the whole video and output whether the whole video
12695 matches or only parts.
12696 @item fast
12697 Calculate only until a matching is found or the video ends. Should be faster in
12698 some cases.
12699 @end table
12700
12701 @item nb_inputs
12702 Set the number of inputs. The option value must be a non negative integer.
12703 Default value is 1.
12704
12705 @item filename
12706 Set the path to which the output is written. If there is more than one input,
12707 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
12708 integer), that will be replaced with the input number. If no filename is
12709 specified, no output will be written. This is the default.
12710
12711 @item format
12712 Choose the output format.
12713
12714 Available values are:
12715
12716 @table @samp
12717 @item binary
12718 Use the specified binary representation (default).
12719 @item xml
12720 Use the specified xml representation.
12721 @end table
12722
12723 @item th_d
12724 Set threshold to detect one word as similar. The option value must be an integer
12725 greater than zero. The default value is 9000.
12726
12727 @item th_dc
12728 Set threshold to detect all words as similar. The option value must be an integer
12729 greater than zero. The default value is 60000.
12730
12731 @item th_xh
12732 Set threshold to detect frames as similar. The option value must be an integer
12733 greater than zero. The default value is 116.
12734
12735 @item th_di
12736 Set the minimum length of a sequence in frames to recognize it as matching
12737 sequence. The option value must be a non negative integer value.
12738 The default value is 0.
12739
12740 @item th_it
12741 Set the minimum relation, that matching frames to all frames must have.
12742 The option value must be a double value between 0 and 1. The default value is 0.5.
12743 @end table
12744
12745 @subsection Examples
12746
12747 @itemize
12748 @item
12749 To calculate the signature of an input video and store it in signature.bin:
12750 @example
12751 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
12752 @end example
12753
12754 @item
12755 To detect whether two videos match and store the signatures in XML format in
12756 signature0.xml and signature1.xml:
12757 @example
12758 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 -
12759 @end example
12760
12761 @end itemize
12762
12763 @anchor{smartblur}
12764 @section smartblur
12765
12766 Blur the input video without impacting the outlines.
12767
12768 It accepts the following options:
12769
12770 @table @option
12771 @item luma_radius, lr
12772 Set the luma radius. The option value must be a float number in
12773 the range [0.1,5.0] that specifies the variance of the gaussian filter
12774 used to blur the image (slower if larger). Default value is 1.0.
12775
12776 @item luma_strength, ls
12777 Set the luma strength. The option value must be a float number
12778 in the range [-1.0,1.0] that configures the blurring. A value included
12779 in [0.0,1.0] will blur the image whereas a value included in
12780 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12781
12782 @item luma_threshold, lt
12783 Set the luma threshold used as a coefficient to determine
12784 whether a pixel should be blurred or not. The option value must be an
12785 integer in the range [-30,30]. A value of 0 will filter all the image,
12786 a value included in [0,30] will filter flat areas and a value included
12787 in [-30,0] will filter edges. Default value is 0.
12788
12789 @item chroma_radius, cr
12790 Set the chroma radius. The option value must be a float number in
12791 the range [0.1,5.0] that specifies the variance of the gaussian filter
12792 used to blur the image (slower if larger). Default value is @option{luma_radius}.
12793
12794 @item chroma_strength, cs
12795 Set the chroma strength. The option value must be a float number
12796 in the range [-1.0,1.0] that configures the blurring. A value included
12797 in [0.0,1.0] will blur the image whereas a value included in
12798 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
12799
12800 @item chroma_threshold, ct
12801 Set the chroma threshold used as a coefficient to determine
12802 whether a pixel should be blurred or not. The option value must be an
12803 integer in the range [-30,30]. A value of 0 will filter all the image,
12804 a value included in [0,30] will filter flat areas and a value included
12805 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
12806 @end table
12807
12808 If a chroma option is not explicitly set, the corresponding luma value
12809 is set.
12810
12811 @section ssim
12812
12813 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12814
12815 This filter takes in input two input videos, the first input is
12816 considered the "main" source and is passed unchanged to the
12817 output. The second input is used as a "reference" video for computing
12818 the SSIM.
12819
12820 Both video inputs must have the same resolution and pixel format for
12821 this filter to work correctly. Also it assumes that both inputs
12822 have the same number of frames, which are compared one by one.
12823
12824 The filter stores the calculated SSIM of each frame.
12825
12826 The description of the accepted parameters follows.
12827
12828 @table @option
12829 @item stats_file, f
12830 If specified the filter will use the named file to save the SSIM of
12831 each individual frame. When filename equals "-" the data is sent to
12832 standard output.
12833 @end table
12834
12835 The file printed if @var{stats_file} is selected, contains a sequence of
12836 key/value pairs of the form @var{key}:@var{value} for each compared
12837 couple of frames.
12838
12839 A description of each shown parameter follows:
12840
12841 @table @option
12842 @item n
12843 sequential number of the input frame, starting from 1
12844
12845 @item Y, U, V, R, G, B
12846 SSIM of the compared frames for the component specified by the suffix.
12847
12848 @item All
12849 SSIM of the compared frames for the whole frame.
12850
12851 @item dB
12852 Same as above but in dB representation.
12853 @end table
12854
12855 For example:
12856 @example
12857 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12858 [main][ref] ssim="stats_file=stats.log" [out]
12859 @end example
12860
12861 On this example the input file being processed is compared with the
12862 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12863 is stored in @file{stats.log}.
12864
12865 Another example with both psnr and ssim at same time:
12866 @example
12867 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12868 @end example
12869
12870 @section stereo3d
12871
12872 Convert between different stereoscopic image formats.
12873
12874 The filters accept the following options:
12875
12876 @table @option
12877 @item in
12878 Set stereoscopic image format of input.
12879
12880 Available values for input image formats are:
12881 @table @samp
12882 @item sbsl
12883 side by side parallel (left eye left, right eye right)
12884
12885 @item sbsr
12886 side by side crosseye (right eye left, left eye right)
12887
12888 @item sbs2l
12889 side by side parallel with half width resolution
12890 (left eye left, right eye right)
12891
12892 @item sbs2r
12893 side by side crosseye with half width resolution
12894 (right eye left, left eye right)
12895
12896 @item abl
12897 above-below (left eye above, right eye below)
12898
12899 @item abr
12900 above-below (right eye above, left eye below)
12901
12902 @item ab2l
12903 above-below with half height resolution
12904 (left eye above, right eye below)
12905
12906 @item ab2r
12907 above-below with half height resolution
12908 (right eye above, left eye below)
12909
12910 @item al
12911 alternating frames (left eye first, right eye second)
12912
12913 @item ar
12914 alternating frames (right eye first, left eye second)
12915
12916 @item irl
12917 interleaved rows (left eye has top row, right eye starts on next row)
12918
12919 @item irr
12920 interleaved rows (right eye has top row, left eye starts on next row)
12921
12922 @item icl
12923 interleaved columns, left eye first
12924
12925 @item icr
12926 interleaved columns, right eye first
12927
12928 Default value is @samp{sbsl}.
12929 @end table
12930
12931 @item out
12932 Set stereoscopic image format of output.
12933
12934 @table @samp
12935 @item sbsl
12936 side by side parallel (left eye left, right eye right)
12937
12938 @item sbsr
12939 side by side crosseye (right eye left, left eye right)
12940
12941 @item sbs2l
12942 side by side parallel with half width resolution
12943 (left eye left, right eye right)
12944
12945 @item sbs2r
12946 side by side crosseye with half width resolution
12947 (right eye left, left eye right)
12948
12949 @item abl
12950 above-below (left eye above, right eye below)
12951
12952 @item abr
12953 above-below (right eye above, left eye below)
12954
12955 @item ab2l
12956 above-below with half height resolution
12957 (left eye above, right eye below)
12958
12959 @item ab2r
12960 above-below with half height resolution
12961 (right eye above, left eye below)
12962
12963 @item al
12964 alternating frames (left eye first, right eye second)
12965
12966 @item ar
12967 alternating frames (right eye first, left eye second)
12968
12969 @item irl
12970 interleaved rows (left eye has top row, right eye starts on next row)
12971
12972 @item irr
12973 interleaved rows (right eye has top row, left eye starts on next row)
12974
12975 @item arbg
12976 anaglyph red/blue gray
12977 (red filter on left eye, blue filter on right eye)
12978
12979 @item argg
12980 anaglyph red/green gray
12981 (red filter on left eye, green filter on right eye)
12982
12983 @item arcg
12984 anaglyph red/cyan gray
12985 (red filter on left eye, cyan filter on right eye)
12986
12987 @item arch
12988 anaglyph red/cyan half colored
12989 (red filter on left eye, cyan filter on right eye)
12990
12991 @item arcc
12992 anaglyph red/cyan color
12993 (red filter on left eye, cyan filter on right eye)
12994
12995 @item arcd
12996 anaglyph red/cyan color optimized with the least squares projection of dubois
12997 (red filter on left eye, cyan filter on right eye)
12998
12999 @item agmg
13000 anaglyph green/magenta gray
13001 (green filter on left eye, magenta filter on right eye)
13002
13003 @item agmh
13004 anaglyph green/magenta half colored
13005 (green filter on left eye, magenta filter on right eye)
13006
13007 @item agmc
13008 anaglyph green/magenta colored
13009 (green filter on left eye, magenta filter on right eye)
13010
13011 @item agmd
13012 anaglyph green/magenta color optimized with the least squares projection of dubois
13013 (green filter on left eye, magenta filter on right eye)
13014
13015 @item aybg
13016 anaglyph yellow/blue gray
13017 (yellow filter on left eye, blue filter on right eye)
13018
13019 @item aybh
13020 anaglyph yellow/blue half colored
13021 (yellow filter on left eye, blue filter on right eye)
13022
13023 @item aybc
13024 anaglyph yellow/blue colored
13025 (yellow filter on left eye, blue filter on right eye)
13026
13027 @item aybd
13028 anaglyph yellow/blue color optimized with the least squares projection of dubois
13029 (yellow filter on left eye, blue filter on right eye)
13030
13031 @item ml
13032 mono output (left eye only)
13033
13034 @item mr
13035 mono output (right eye only)
13036
13037 @item chl
13038 checkerboard, left eye first
13039
13040 @item chr
13041 checkerboard, right eye first
13042
13043 @item icl
13044 interleaved columns, left eye first
13045
13046 @item icr
13047 interleaved columns, right eye first
13048
13049 @item hdmi
13050 HDMI frame pack
13051 @end table
13052
13053 Default value is @samp{arcd}.
13054 @end table
13055
13056 @subsection Examples
13057
13058 @itemize
13059 @item
13060 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
13061 @example
13062 stereo3d=sbsl:aybd
13063 @end example
13064
13065 @item
13066 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
13067 @example
13068 stereo3d=abl:sbsr
13069 @end example
13070 @end itemize
13071
13072 @section streamselect, astreamselect
13073 Select video or audio streams.
13074
13075 The filter accepts the following options:
13076
13077 @table @option
13078 @item inputs
13079 Set number of inputs. Default is 2.
13080
13081 @item map
13082 Set input indexes to remap to outputs.
13083 @end table
13084
13085 @subsection Commands
13086
13087 The @code{streamselect} and @code{astreamselect} filter supports the following
13088 commands:
13089
13090 @table @option
13091 @item map
13092 Set input indexes to remap to outputs.
13093 @end table
13094
13095 @subsection Examples
13096
13097 @itemize
13098 @item
13099 Select first 5 seconds 1st stream and rest of time 2nd stream:
13100 @example
13101 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
13102 @end example
13103
13104 @item
13105 Same as above, but for audio:
13106 @example
13107 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
13108 @end example
13109 @end itemize
13110
13111 @section sobel
13112 Apply sobel operator to input video stream.
13113
13114 The filter accepts the following option:
13115
13116 @table @option
13117 @item planes
13118 Set which planes will be processed, unprocessed planes will be copied.
13119 By default value 0xf, all planes will be processed.
13120
13121 @item scale
13122 Set value which will be multiplied with filtered result.
13123
13124 @item delta
13125 Set value which will be added to filtered result.
13126 @end table
13127
13128 @anchor{spp}
13129 @section spp
13130
13131 Apply a simple postprocessing filter that compresses and decompresses the image
13132 at several (or - in the case of @option{quality} level @code{6} - all) shifts
13133 and average the results.
13134
13135 The filter accepts the following options:
13136
13137 @table @option
13138 @item quality
13139 Set quality. This option defines the number of levels for averaging. It accepts
13140 an integer in the range 0-6. If set to @code{0}, the filter will have no
13141 effect. A value of @code{6} means the higher quality. For each increment of
13142 that value the speed drops by a factor of approximately 2.  Default value is
13143 @code{3}.
13144
13145 @item qp
13146 Force a constant quantization parameter. If not set, the filter will use the QP
13147 from the video stream (if available).
13148
13149 @item mode
13150 Set thresholding mode. Available modes are:
13151
13152 @table @samp
13153 @item hard
13154 Set hard thresholding (default).
13155 @item soft
13156 Set soft thresholding (better de-ringing effect, but likely blurrier).
13157 @end table
13158
13159 @item use_bframe_qp
13160 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
13161 option may cause flicker since the B-Frames have often larger QP. Default is
13162 @code{0} (not enabled).
13163 @end table
13164
13165 @anchor{subtitles}
13166 @section subtitles
13167
13168 Draw subtitles on top of input video using the libass library.
13169
13170 To enable compilation of this filter you need to configure FFmpeg with
13171 @code{--enable-libass}. This filter also requires a build with libavcodec and
13172 libavformat to convert the passed subtitles file to ASS (Advanced Substation
13173 Alpha) subtitles format.
13174
13175 The filter accepts the following options:
13176
13177 @table @option
13178 @item filename, f
13179 Set the filename of the subtitle file to read. It must be specified.
13180
13181 @item original_size
13182 Specify the size of the original video, the video for which the ASS file
13183 was composed. For the syntax of this option, check the
13184 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13185 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
13186 correctly scale the fonts if the aspect ratio has been changed.
13187
13188 @item fontsdir
13189 Set a directory path containing fonts that can be used by the filter.
13190 These fonts will be used in addition to whatever the font provider uses.
13191
13192 @item charenc
13193 Set subtitles input character encoding. @code{subtitles} filter only. Only
13194 useful if not UTF-8.
13195
13196 @item stream_index, si
13197 Set subtitles stream index. @code{subtitles} filter only.
13198
13199 @item force_style
13200 Override default style or script info parameters of the subtitles. It accepts a
13201 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
13202 @end table
13203
13204 If the first key is not specified, it is assumed that the first value
13205 specifies the @option{filename}.
13206
13207 For example, to render the file @file{sub.srt} on top of the input
13208 video, use the command:
13209 @example
13210 subtitles=sub.srt
13211 @end example
13212
13213 which is equivalent to:
13214 @example
13215 subtitles=filename=sub.srt
13216 @end example
13217
13218 To render the default subtitles stream from file @file{video.mkv}, use:
13219 @example
13220 subtitles=video.mkv
13221 @end example
13222
13223 To render the second subtitles stream from that file, use:
13224 @example
13225 subtitles=video.mkv:si=1
13226 @end example
13227
13228 To make the subtitles stream from @file{sub.srt} appear in transparent green
13229 @code{DejaVu Serif}, use:
13230 @example
13231 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
13232 @end example
13233
13234 @section super2xsai
13235
13236 Scale the input by 2x and smooth using the Super2xSaI (Scale and
13237 Interpolate) pixel art scaling algorithm.
13238
13239 Useful for enlarging pixel art images without reducing sharpness.
13240
13241 @section swaprect
13242
13243 Swap two rectangular objects in video.
13244
13245 This filter accepts the following options:
13246
13247 @table @option
13248 @item w
13249 Set object width.
13250
13251 @item h
13252 Set object height.
13253
13254 @item x1
13255 Set 1st rect x coordinate.
13256
13257 @item y1
13258 Set 1st rect y coordinate.
13259
13260 @item x2
13261 Set 2nd rect x coordinate.
13262
13263 @item y2
13264 Set 2nd rect y coordinate.
13265
13266 All expressions are evaluated once for each frame.
13267 @end table
13268
13269 The all options are expressions containing the following constants:
13270
13271 @table @option
13272 @item w
13273 @item h
13274 The input width and height.
13275
13276 @item a
13277 same as @var{w} / @var{h}
13278
13279 @item sar
13280 input sample aspect ratio
13281
13282 @item dar
13283 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
13284
13285 @item n
13286 The number of the input frame, starting from 0.
13287
13288 @item t
13289 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
13290
13291 @item pos
13292 the position in the file of the input frame, NAN if unknown
13293 @end table
13294
13295 @section swapuv
13296 Swap U & V plane.
13297
13298 @section telecine
13299
13300 Apply telecine process to the video.
13301
13302 This filter accepts the following options:
13303
13304 @table @option
13305 @item first_field
13306 @table @samp
13307 @item top, t
13308 top field first
13309 @item bottom, b
13310 bottom field first
13311 The default value is @code{top}.
13312 @end table
13313
13314 @item pattern
13315 A string of numbers representing the pulldown pattern you wish to apply.
13316 The default value is @code{23}.
13317 @end table
13318
13319 @example
13320 Some typical patterns:
13321
13322 NTSC output (30i):
13323 27.5p: 32222
13324 24p: 23 (classic)
13325 24p: 2332 (preferred)
13326 20p: 33
13327 18p: 334
13328 16p: 3444
13329
13330 PAL output (25i):
13331 27.5p: 12222
13332 24p: 222222222223 ("Euro pulldown")
13333 16.67p: 33
13334 16p: 33333334
13335 @end example
13336
13337 @section threshold
13338
13339 Apply threshold effect to video stream.
13340
13341 This filter needs four video streams to perform thresholding.
13342 First stream is stream we are filtering.
13343 Second stream is holding threshold values, third stream is holding min values,
13344 and last, fourth stream is holding max values.
13345
13346 The filter accepts the following option:
13347
13348 @table @option
13349 @item planes
13350 Set which planes will be processed, unprocessed planes will be copied.
13351 By default value 0xf, all planes will be processed.
13352 @end table
13353
13354 For example if first stream pixel's component value is less then threshold value
13355 of pixel component from 2nd threshold stream, third stream value will picked,
13356 otherwise fourth stream pixel component value will be picked.
13357
13358 Using color source filter one can perform various types of thresholding:
13359
13360 @subsection Examples
13361
13362 @itemize
13363 @item
13364 Binary threshold, using gray color as threshold:
13365 @example
13366 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
13367 @end example
13368
13369 @item
13370 Inverted binary threshold, using gray color as threshold:
13371 @example
13372 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
13373 @end example
13374
13375 @item
13376 Truncate binary threshold, using gray color as threshold:
13377 @example
13378 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
13379 @end example
13380
13381 @item
13382 Threshold to zero, using gray color as threshold:
13383 @example
13384 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
13385 @end example
13386
13387 @item
13388 Inverted threshold to zero, using gray color as threshold:
13389 @example
13390 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
13391 @end example
13392 @end itemize
13393
13394 @section thumbnail
13395 Select the most representative frame in a given sequence of consecutive frames.
13396
13397 The filter accepts the following options:
13398
13399 @table @option
13400 @item n
13401 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
13402 will pick one of them, and then handle the next batch of @var{n} frames until
13403 the end. Default is @code{100}.
13404 @end table
13405
13406 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
13407 value will result in a higher memory usage, so a high value is not recommended.
13408
13409 @subsection Examples
13410
13411 @itemize
13412 @item
13413 Extract one picture each 50 frames:
13414 @example
13415 thumbnail=50
13416 @end example
13417
13418 @item
13419 Complete example of a thumbnail creation with @command{ffmpeg}:
13420 @example
13421 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
13422 @end example
13423 @end itemize
13424
13425 @section tile
13426
13427 Tile several successive frames together.
13428
13429 The filter accepts the following options:
13430
13431 @table @option
13432
13433 @item layout
13434 Set the grid size (i.e. the number of lines and columns). For the syntax of
13435 this option, check the
13436 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13437
13438 @item nb_frames
13439 Set the maximum number of frames to render in the given area. It must be less
13440 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
13441 the area will be used.
13442
13443 @item margin
13444 Set the outer border margin in pixels.
13445
13446 @item padding
13447 Set the inner border thickness (i.e. the number of pixels between frames). For
13448 more advanced padding options (such as having different values for the edges),
13449 refer to the pad video filter.
13450
13451 @item color
13452 Specify the color of the unused area. For the syntax of this option, check the
13453 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
13454 is "black".
13455 @end table
13456
13457 @subsection Examples
13458
13459 @itemize
13460 @item
13461 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
13462 @example
13463 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
13464 @end example
13465 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
13466 duplicating each output frame to accommodate the originally detected frame
13467 rate.
13468
13469 @item
13470 Display @code{5} pictures in an area of @code{3x2} frames,
13471 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
13472 mixed flat and named options:
13473 @example
13474 tile=3x2:nb_frames=5:padding=7:margin=2
13475 @end example
13476 @end itemize
13477
13478 @section tinterlace
13479
13480 Perform various types of temporal field interlacing.
13481
13482 Frames are counted starting from 1, so the first input frame is
13483 considered odd.
13484
13485 The filter accepts the following options:
13486
13487 @table @option
13488
13489 @item mode
13490 Specify the mode of the interlacing. This option can also be specified
13491 as a value alone. See below for a list of values for this option.
13492
13493 Available values are:
13494
13495 @table @samp
13496 @item merge, 0
13497 Move odd frames into the upper field, even into the lower field,
13498 generating a double height frame at half frame rate.
13499 @example
13500  ------> time
13501 Input:
13502 Frame 1         Frame 2         Frame 3         Frame 4
13503
13504 11111           22222           33333           44444
13505 11111           22222           33333           44444
13506 11111           22222           33333           44444
13507 11111           22222           33333           44444
13508
13509 Output:
13510 11111                           33333
13511 22222                           44444
13512 11111                           33333
13513 22222                           44444
13514 11111                           33333
13515 22222                           44444
13516 11111                           33333
13517 22222                           44444
13518 @end example
13519
13520 @item drop_even, 1
13521 Only output odd frames, even frames are dropped, generating a frame with
13522 unchanged height at half frame rate.
13523
13524 @example
13525  ------> time
13526 Input:
13527 Frame 1         Frame 2         Frame 3         Frame 4
13528
13529 11111           22222           33333           44444
13530 11111           22222           33333           44444
13531 11111           22222           33333           44444
13532 11111           22222           33333           44444
13533
13534 Output:
13535 11111                           33333
13536 11111                           33333
13537 11111                           33333
13538 11111                           33333
13539 @end example
13540
13541 @item drop_odd, 2
13542 Only output even frames, odd frames are dropped, generating a frame with
13543 unchanged height at half frame rate.
13544
13545 @example
13546  ------> time
13547 Input:
13548 Frame 1         Frame 2         Frame 3         Frame 4
13549
13550 11111           22222           33333           44444
13551 11111           22222           33333           44444
13552 11111           22222           33333           44444
13553 11111           22222           33333           44444
13554
13555 Output:
13556                 22222                           44444
13557                 22222                           44444
13558                 22222                           44444
13559                 22222                           44444
13560 @end example
13561
13562 @item pad, 3
13563 Expand each frame to full height, but pad alternate lines with black,
13564 generating a frame with double height at the same input frame rate.
13565
13566 @example
13567  ------> time
13568 Input:
13569 Frame 1         Frame 2         Frame 3         Frame 4
13570
13571 11111           22222           33333           44444
13572 11111           22222           33333           44444
13573 11111           22222           33333           44444
13574 11111           22222           33333           44444
13575
13576 Output:
13577 11111           .....           33333           .....
13578 .....           22222           .....           44444
13579 11111           .....           33333           .....
13580 .....           22222           .....           44444
13581 11111           .....           33333           .....
13582 .....           22222           .....           44444
13583 11111           .....           33333           .....
13584 .....           22222           .....           44444
13585 @end example
13586
13587
13588 @item interleave_top, 4
13589 Interleave the upper field from odd frames with the lower field from
13590 even frames, generating a frame with unchanged height at half frame rate.
13591
13592 @example
13593  ------> time
13594 Input:
13595 Frame 1         Frame 2         Frame 3         Frame 4
13596
13597 11111<-         22222           33333<-         44444
13598 11111           22222<-         33333           44444<-
13599 11111<-         22222           33333<-         44444
13600 11111           22222<-         33333           44444<-
13601
13602 Output:
13603 11111                           33333
13604 22222                           44444
13605 11111                           33333
13606 22222                           44444
13607 @end example
13608
13609
13610 @item interleave_bottom, 5
13611 Interleave the lower field from odd frames with the upper field from
13612 even frames, generating a frame with unchanged height at half frame rate.
13613
13614 @example
13615  ------> time
13616 Input:
13617 Frame 1         Frame 2         Frame 3         Frame 4
13618
13619 11111           22222<-         33333           44444<-
13620 11111<-         22222           33333<-         44444
13621 11111           22222<-         33333           44444<-
13622 11111<-         22222           33333<-         44444
13623
13624 Output:
13625 22222                           44444
13626 11111                           33333
13627 22222                           44444
13628 11111                           33333
13629 @end example
13630
13631
13632 @item interlacex2, 6
13633 Double frame rate with unchanged height. Frames are inserted each
13634 containing the second temporal field from the previous input frame and
13635 the first temporal field from the next input frame. This mode relies on
13636 the top_field_first flag. Useful for interlaced video displays with no
13637 field synchronisation.
13638
13639 @example
13640  ------> time
13641 Input:
13642 Frame 1         Frame 2         Frame 3         Frame 4
13643
13644 11111           22222           33333           44444
13645  11111           22222           33333           44444
13646 11111           22222           33333           44444
13647  11111           22222           33333           44444
13648
13649 Output:
13650 11111   22222   22222   33333   33333   44444   44444
13651  11111   11111   22222   22222   33333   33333   44444
13652 11111   22222   22222   33333   33333   44444   44444
13653  11111   11111   22222   22222   33333   33333   44444
13654 @end example
13655
13656
13657 @item mergex2, 7
13658 Move odd frames into the upper field, even into the lower field,
13659 generating a double height frame at same frame rate.
13660
13661 @example
13662  ------> time
13663 Input:
13664 Frame 1         Frame 2         Frame 3         Frame 4
13665
13666 11111           22222           33333           44444
13667 11111           22222           33333           44444
13668 11111           22222           33333           44444
13669 11111           22222           33333           44444
13670
13671 Output:
13672 11111           33333           33333           55555
13673 22222           22222           44444           44444
13674 11111           33333           33333           55555
13675 22222           22222           44444           44444
13676 11111           33333           33333           55555
13677 22222           22222           44444           44444
13678 11111           33333           33333           55555
13679 22222           22222           44444           44444
13680 @end example
13681
13682 @end table
13683
13684 Numeric values are deprecated but are accepted for backward
13685 compatibility reasons.
13686
13687 Default mode is @code{merge}.
13688
13689 @item flags
13690 Specify flags influencing the filter process.
13691
13692 Available value for @var{flags} is:
13693
13694 @table @option
13695 @item low_pass_filter, vlfp
13696 Enable vertical low-pass filtering in the filter.
13697 Vertical low-pass filtering is required when creating an interlaced
13698 destination from a progressive source which contains high-frequency
13699 vertical detail. Filtering will reduce interlace 'twitter' and Moire
13700 patterning.
13701
13702 Vertical low-pass filtering can only be enabled for @option{mode}
13703 @var{interleave_top} and @var{interleave_bottom}.
13704
13705 @end table
13706 @end table
13707
13708 @section transpose
13709
13710 Transpose rows with columns in the input video and optionally flip it.
13711
13712 It accepts the following parameters:
13713
13714 @table @option
13715
13716 @item dir
13717 Specify the transposition direction.
13718
13719 Can assume the following values:
13720 @table @samp
13721 @item 0, 4, cclock_flip
13722 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
13723 @example
13724 L.R     L.l
13725 . . ->  . .
13726 l.r     R.r
13727 @end example
13728
13729 @item 1, 5, clock
13730 Rotate by 90 degrees clockwise, that is:
13731 @example
13732 L.R     l.L
13733 . . ->  . .
13734 l.r     r.R
13735 @end example
13736
13737 @item 2, 6, cclock
13738 Rotate by 90 degrees counterclockwise, that is:
13739 @example
13740 L.R     R.r
13741 . . ->  . .
13742 l.r     L.l
13743 @end example
13744
13745 @item 3, 7, clock_flip
13746 Rotate by 90 degrees clockwise and vertically flip, that is:
13747 @example
13748 L.R     r.R
13749 . . ->  . .
13750 l.r     l.L
13751 @end example
13752 @end table
13753
13754 For values between 4-7, the transposition is only done if the input
13755 video geometry is portrait and not landscape. These values are
13756 deprecated, the @code{passthrough} option should be used instead.
13757
13758 Numerical values are deprecated, and should be dropped in favor of
13759 symbolic constants.
13760
13761 @item passthrough
13762 Do not apply the transposition if the input geometry matches the one
13763 specified by the specified value. It accepts the following values:
13764 @table @samp
13765 @item none
13766 Always apply transposition.
13767 @item portrait
13768 Preserve portrait geometry (when @var{height} >= @var{width}).
13769 @item landscape
13770 Preserve landscape geometry (when @var{width} >= @var{height}).
13771 @end table
13772
13773 Default value is @code{none}.
13774 @end table
13775
13776 For example to rotate by 90 degrees clockwise and preserve portrait
13777 layout:
13778 @example
13779 transpose=dir=1:passthrough=portrait
13780 @end example
13781
13782 The command above can also be specified as:
13783 @example
13784 transpose=1:portrait
13785 @end example
13786
13787 @section trim
13788 Trim the input so that the output contains one continuous subpart of the input.
13789
13790 It accepts the following parameters:
13791 @table @option
13792 @item start
13793 Specify the time of the start of the kept section, i.e. the frame with the
13794 timestamp @var{start} will be the first frame in the output.
13795
13796 @item end
13797 Specify the time of the first frame that will be dropped, i.e. the frame
13798 immediately preceding the one with the timestamp @var{end} will be the last
13799 frame in the output.
13800
13801 @item start_pts
13802 This is the same as @var{start}, except this option sets the start timestamp
13803 in timebase units instead of seconds.
13804
13805 @item end_pts
13806 This is the same as @var{end}, except this option sets the end timestamp
13807 in timebase units instead of seconds.
13808
13809 @item duration
13810 The maximum duration of the output in seconds.
13811
13812 @item start_frame
13813 The number of the first frame that should be passed to the output.
13814
13815 @item end_frame
13816 The number of the first frame that should be dropped.
13817 @end table
13818
13819 @option{start}, @option{end}, and @option{duration} are expressed as time
13820 duration specifications; see
13821 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13822 for the accepted syntax.
13823
13824 Note that the first two sets of the start/end options and the @option{duration}
13825 option look at the frame timestamp, while the _frame variants simply count the
13826 frames that pass through the filter. Also note that this filter does not modify
13827 the timestamps. If you wish for the output timestamps to start at zero, insert a
13828 setpts filter after the trim filter.
13829
13830 If multiple start or end options are set, this filter tries to be greedy and
13831 keep all the frames that match at least one of the specified constraints. To keep
13832 only the part that matches all the constraints at once, chain multiple trim
13833 filters.
13834
13835 The defaults are such that all the input is kept. So it is possible to set e.g.
13836 just the end values to keep everything before the specified time.
13837
13838 Examples:
13839 @itemize
13840 @item
13841 Drop everything except the second minute of input:
13842 @example
13843 ffmpeg -i INPUT -vf trim=60:120
13844 @end example
13845
13846 @item
13847 Keep only the first second:
13848 @example
13849 ffmpeg -i INPUT -vf trim=duration=1
13850 @end example
13851
13852 @end itemize
13853
13854
13855 @anchor{unsharp}
13856 @section unsharp
13857
13858 Sharpen or blur the input video.
13859
13860 It accepts the following parameters:
13861
13862 @table @option
13863 @item luma_msize_x, lx
13864 Set the luma matrix horizontal size. It must be an odd integer between
13865 3 and 23. The default value is 5.
13866
13867 @item luma_msize_y, ly
13868 Set the luma matrix vertical size. It must be an odd integer between 3
13869 and 23. The default value is 5.
13870
13871 @item luma_amount, la
13872 Set the luma effect strength. It must be a floating point number, reasonable
13873 values lay between -1.5 and 1.5.
13874
13875 Negative values will blur the input video, while positive values will
13876 sharpen it, a value of zero will disable the effect.
13877
13878 Default value is 1.0.
13879
13880 @item chroma_msize_x, cx
13881 Set the chroma matrix horizontal size. It must be an odd integer
13882 between 3 and 23. The default value is 5.
13883
13884 @item chroma_msize_y, cy
13885 Set the chroma matrix vertical size. It must be an odd integer
13886 between 3 and 23. The default value is 5.
13887
13888 @item chroma_amount, ca
13889 Set the chroma effect strength. It must be a floating point number, reasonable
13890 values lay between -1.5 and 1.5.
13891
13892 Negative values will blur the input video, while positive values will
13893 sharpen it, a value of zero will disable the effect.
13894
13895 Default value is 0.0.
13896
13897 @item opencl
13898 If set to 1, specify using OpenCL capabilities, only available if
13899 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
13900
13901 @end table
13902
13903 All parameters are optional and default to the equivalent of the
13904 string '5:5:1.0:5:5:0.0'.
13905
13906 @subsection Examples
13907
13908 @itemize
13909 @item
13910 Apply strong luma sharpen effect:
13911 @example
13912 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13913 @end example
13914
13915 @item
13916 Apply a strong blur of both luma and chroma parameters:
13917 @example
13918 unsharp=7:7:-2:7:7:-2
13919 @end example
13920 @end itemize
13921
13922 @section uspp
13923
13924 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13925 the image at several (or - in the case of @option{quality} level @code{8} - all)
13926 shifts and average the results.
13927
13928 The way this differs from the behavior of spp is that uspp actually encodes &
13929 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13930 DCT similar to MJPEG.
13931
13932 The filter accepts the following options:
13933
13934 @table @option
13935 @item quality
13936 Set quality. This option defines the number of levels for averaging. It accepts
13937 an integer in the range 0-8. If set to @code{0}, the filter will have no
13938 effect. A value of @code{8} means the higher quality. For each increment of
13939 that value the speed drops by a factor of approximately 2.  Default value is
13940 @code{3}.
13941
13942 @item qp
13943 Force a constant quantization parameter. If not set, the filter will use the QP
13944 from the video stream (if available).
13945 @end table
13946
13947 @section vaguedenoiser
13948
13949 Apply a wavelet based denoiser.
13950
13951 It transforms each frame from the video input into the wavelet domain,
13952 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
13953 the obtained coefficients. It does an inverse wavelet transform after.
13954 Due to wavelet properties, it should give a nice smoothed result, and
13955 reduced noise, without blurring picture features.
13956
13957 This filter accepts the following options:
13958
13959 @table @option
13960 @item threshold
13961 The filtering strength. The higher, the more filtered the video will be.
13962 Hard thresholding can use a higher threshold than soft thresholding
13963 before the video looks overfiltered.
13964
13965 @item method
13966 The filtering method the filter will use.
13967
13968 It accepts the following values:
13969 @table @samp
13970 @item hard
13971 All values under the threshold will be zeroed.
13972
13973 @item soft
13974 All values under the threshold will be zeroed. All values above will be
13975 reduced by the threshold.
13976
13977 @item garrote
13978 Scales or nullifies coefficients - intermediary between (more) soft and
13979 (less) hard thresholding.
13980 @end table
13981
13982 @item nsteps
13983 Number of times, the wavelet will decompose the picture. Picture can't
13984 be decomposed beyond a particular point (typically, 8 for a 640x480
13985 frame - as 2^9 = 512 > 480)
13986
13987 @item percent
13988 Partial of full denoising (limited coefficients shrinking), from 0 to 100.
13989
13990 @item planes
13991 A list of the planes to process. By default all planes are processed.
13992 @end table
13993
13994 @section vectorscope
13995
13996 Display 2 color component values in the two dimensional graph (which is called
13997 a vectorscope).
13998
13999 This filter accepts the following options:
14000
14001 @table @option
14002 @item mode, m
14003 Set vectorscope mode.
14004
14005 It accepts the following values:
14006 @table @samp
14007 @item gray
14008 Gray values are displayed on graph, higher brightness means more pixels have
14009 same component color value on location in graph. This is the default mode.
14010
14011 @item color
14012 Gray values are displayed on graph. Surrounding pixels values which are not
14013 present in video frame are drawn in gradient of 2 color components which are
14014 set by option @code{x} and @code{y}. The 3rd color component is static.
14015
14016 @item color2
14017 Actual color components values present in video frame are displayed on graph.
14018
14019 @item color3
14020 Similar as color2 but higher frequency of same values @code{x} and @code{y}
14021 on graph increases value of another color component, which is luminance by
14022 default values of @code{x} and @code{y}.
14023
14024 @item color4
14025 Actual colors present in video frame are displayed on graph. If two different
14026 colors map to same position on graph then color with higher value of component
14027 not present in graph is picked.
14028
14029 @item color5
14030 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
14031 component picked from radial gradient.
14032 @end table
14033
14034 @item x
14035 Set which color component will be represented on X-axis. Default is @code{1}.
14036
14037 @item y
14038 Set which color component will be represented on Y-axis. Default is @code{2}.
14039
14040 @item intensity, i
14041 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
14042 of color component which represents frequency of (X, Y) location in graph.
14043
14044 @item envelope, e
14045 @table @samp
14046 @item none
14047 No envelope, this is default.
14048
14049 @item instant
14050 Instant envelope, even darkest single pixel will be clearly highlighted.
14051
14052 @item peak
14053 Hold maximum and minimum values presented in graph over time. This way you
14054 can still spot out of range values without constantly looking at vectorscope.
14055
14056 @item peak+instant
14057 Peak and instant envelope combined together.
14058 @end table
14059
14060 @item graticule, g
14061 Set what kind of graticule to draw.
14062 @table @samp
14063 @item none
14064 @item green
14065 @item color
14066 @end table
14067
14068 @item opacity, o
14069 Set graticule opacity.
14070
14071 @item flags, f
14072 Set graticule flags.
14073
14074 @table @samp
14075 @item white
14076 Draw graticule for white point.
14077
14078 @item black
14079 Draw graticule for black point.
14080
14081 @item name
14082 Draw color points short names.
14083 @end table
14084
14085 @item bgopacity, b
14086 Set background opacity.
14087
14088 @item lthreshold, l
14089 Set low threshold for color component not represented on X or Y axis.
14090 Values lower than this value will be ignored. Default is 0.
14091 Note this value is multiplied with actual max possible value one pixel component
14092 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
14093 is 0.1 * 255 = 25.
14094
14095 @item hthreshold, h
14096 Set high threshold for color component not represented on X or Y axis.
14097 Values higher than this value will be ignored. Default is 1.
14098 Note this value is multiplied with actual max possible value one pixel component
14099 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
14100 is 0.9 * 255 = 230.
14101
14102 @item colorspace, c
14103 Set what kind of colorspace to use when drawing graticule.
14104 @table @samp
14105 @item auto
14106 @item 601
14107 @item 709
14108 @end table
14109 Default is auto.
14110 @end table
14111
14112 @anchor{vidstabdetect}
14113 @section vidstabdetect
14114
14115 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
14116 @ref{vidstabtransform} for pass 2.
14117
14118 This filter generates a file with relative translation and rotation
14119 transform information about subsequent frames, which is then used by
14120 the @ref{vidstabtransform} filter.
14121
14122 To enable compilation of this filter you need to configure FFmpeg with
14123 @code{--enable-libvidstab}.
14124
14125 This filter accepts the following options:
14126
14127 @table @option
14128 @item result
14129 Set the path to the file used to write the transforms information.
14130 Default value is @file{transforms.trf}.
14131
14132 @item shakiness
14133 Set how shaky the video is and how quick the camera is. It accepts an
14134 integer in the range 1-10, a value of 1 means little shakiness, a
14135 value of 10 means strong shakiness. Default value is 5.
14136
14137 @item accuracy
14138 Set the accuracy of the detection process. It must be a value in the
14139 range 1-15. A value of 1 means low accuracy, a value of 15 means high
14140 accuracy. Default value is 15.
14141
14142 @item stepsize
14143 Set stepsize of the search process. The region around minimum is
14144 scanned with 1 pixel resolution. Default value is 6.
14145
14146 @item mincontrast
14147 Set minimum contrast. Below this value a local measurement field is
14148 discarded. Must be a floating point value in the range 0-1. Default
14149 value is 0.3.
14150
14151 @item tripod
14152 Set reference frame number for tripod mode.
14153
14154 If enabled, the motion of the frames is compared to a reference frame
14155 in the filtered stream, identified by the specified number. The idea
14156 is to compensate all movements in a more-or-less static scene and keep
14157 the camera view absolutely still.
14158
14159 If set to 0, it is disabled. The frames are counted starting from 1.
14160
14161 @item show
14162 Show fields and transforms in the resulting frames. It accepts an
14163 integer in the range 0-2. Default value is 0, which disables any
14164 visualization.
14165 @end table
14166
14167 @subsection Examples
14168
14169 @itemize
14170 @item
14171 Use default values:
14172 @example
14173 vidstabdetect
14174 @end example
14175
14176 @item
14177 Analyze strongly shaky movie and put the results in file
14178 @file{mytransforms.trf}:
14179 @example
14180 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
14181 @end example
14182
14183 @item
14184 Visualize the result of internal transformations in the resulting
14185 video:
14186 @example
14187 vidstabdetect=show=1
14188 @end example
14189
14190 @item
14191 Analyze a video with medium shakiness using @command{ffmpeg}:
14192 @example
14193 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
14194 @end example
14195 @end itemize
14196
14197 @anchor{vidstabtransform}
14198 @section vidstabtransform
14199
14200 Video stabilization/deshaking: pass 2 of 2,
14201 see @ref{vidstabdetect} for pass 1.
14202
14203 Read a file with transform information for each frame and
14204 apply/compensate them. Together with the @ref{vidstabdetect}
14205 filter this can be used to deshake videos. See also
14206 @url{http://public.hronopik.de/vid.stab}. It is important to also use
14207 the @ref{unsharp} filter, see below.
14208
14209 To enable compilation of this filter you need to configure FFmpeg with
14210 @code{--enable-libvidstab}.
14211
14212 @subsection Options
14213
14214 @table @option
14215 @item input
14216 Set path to the file used to read the transforms. Default value is
14217 @file{transforms.trf}.
14218
14219 @item smoothing
14220 Set the number of frames (value*2 + 1) used for lowpass filtering the
14221 camera movements. Default value is 10.
14222
14223 For example a number of 10 means that 21 frames are used (10 in the
14224 past and 10 in the future) to smoothen the motion in the video. A
14225 larger value leads to a smoother video, but limits the acceleration of
14226 the camera (pan/tilt movements). 0 is a special case where a static
14227 camera is simulated.
14228
14229 @item optalgo
14230 Set the camera path optimization algorithm.
14231
14232 Accepted values are:
14233 @table @samp
14234 @item gauss
14235 gaussian kernel low-pass filter on camera motion (default)
14236 @item avg
14237 averaging on transformations
14238 @end table
14239
14240 @item maxshift
14241 Set maximal number of pixels to translate frames. Default value is -1,
14242 meaning no limit.
14243
14244 @item maxangle
14245 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
14246 value is -1, meaning no limit.
14247
14248 @item crop
14249 Specify how to deal with borders that may be visible due to movement
14250 compensation.
14251
14252 Available values are:
14253 @table @samp
14254 @item keep
14255 keep image information from previous frame (default)
14256 @item black
14257 fill the border black
14258 @end table
14259
14260 @item invert
14261 Invert transforms if set to 1. Default value is 0.
14262
14263 @item relative
14264 Consider transforms as relative to previous frame if set to 1,
14265 absolute if set to 0. Default value is 0.
14266
14267 @item zoom
14268 Set percentage to zoom. A positive value will result in a zoom-in
14269 effect, a negative value in a zoom-out effect. Default value is 0 (no
14270 zoom).
14271
14272 @item optzoom
14273 Set optimal zooming to avoid borders.
14274
14275 Accepted values are:
14276 @table @samp
14277 @item 0
14278 disabled
14279 @item 1
14280 optimal static zoom value is determined (only very strong movements
14281 will lead to visible borders) (default)
14282 @item 2
14283 optimal adaptive zoom value is determined (no borders will be
14284 visible), see @option{zoomspeed}
14285 @end table
14286
14287 Note that the value given at zoom is added to the one calculated here.
14288
14289 @item zoomspeed
14290 Set percent to zoom maximally each frame (enabled when
14291 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
14292 0.25.
14293
14294 @item interpol
14295 Specify type of interpolation.
14296
14297 Available values are:
14298 @table @samp
14299 @item no
14300 no interpolation
14301 @item linear
14302 linear only horizontal
14303 @item bilinear
14304 linear in both directions (default)
14305 @item bicubic
14306 cubic in both directions (slow)
14307 @end table
14308
14309 @item tripod
14310 Enable virtual tripod mode if set to 1, which is equivalent to
14311 @code{relative=0:smoothing=0}. Default value is 0.
14312
14313 Use also @code{tripod} option of @ref{vidstabdetect}.
14314
14315 @item debug
14316 Increase log verbosity if set to 1. Also the detected global motions
14317 are written to the temporary file @file{global_motions.trf}. Default
14318 value is 0.
14319 @end table
14320
14321 @subsection Examples
14322
14323 @itemize
14324 @item
14325 Use @command{ffmpeg} for a typical stabilization with default values:
14326 @example
14327 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
14328 @end example
14329
14330 Note the use of the @ref{unsharp} filter which is always recommended.
14331
14332 @item
14333 Zoom in a bit more and load transform data from a given file:
14334 @example
14335 vidstabtransform=zoom=5:input="mytransforms.trf"
14336 @end example
14337
14338 @item
14339 Smoothen the video even more:
14340 @example
14341 vidstabtransform=smoothing=30
14342 @end example
14343 @end itemize
14344
14345 @section vflip
14346
14347 Flip the input video vertically.
14348
14349 For example, to vertically flip a video with @command{ffmpeg}:
14350 @example
14351 ffmpeg -i in.avi -vf "vflip" out.avi
14352 @end example
14353
14354 @anchor{vignette}
14355 @section vignette
14356
14357 Make or reverse a natural vignetting effect.
14358
14359 The filter accepts the following options:
14360
14361 @table @option
14362 @item angle, a
14363 Set lens angle expression as a number of radians.
14364
14365 The value is clipped in the @code{[0,PI/2]} range.
14366
14367 Default value: @code{"PI/5"}
14368
14369 @item x0
14370 @item y0
14371 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
14372 by default.
14373
14374 @item mode
14375 Set forward/backward mode.
14376
14377 Available modes are:
14378 @table @samp
14379 @item forward
14380 The larger the distance from the central point, the darker the image becomes.
14381
14382 @item backward
14383 The larger the distance from the central point, the brighter the image becomes.
14384 This can be used to reverse a vignette effect, though there is no automatic
14385 detection to extract the lens @option{angle} and other settings (yet). It can
14386 also be used to create a burning effect.
14387 @end table
14388
14389 Default value is @samp{forward}.
14390
14391 @item eval
14392 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
14393
14394 It accepts the following values:
14395 @table @samp
14396 @item init
14397 Evaluate expressions only once during the filter initialization.
14398
14399 @item frame
14400 Evaluate expressions for each incoming frame. This is way slower than the
14401 @samp{init} mode since it requires all the scalers to be re-computed, but it
14402 allows advanced dynamic expressions.
14403 @end table
14404
14405 Default value is @samp{init}.
14406
14407 @item dither
14408 Set dithering to reduce the circular banding effects. Default is @code{1}
14409 (enabled).
14410
14411 @item aspect
14412 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
14413 Setting this value to the SAR of the input will make a rectangular vignetting
14414 following the dimensions of the video.
14415
14416 Default is @code{1/1}.
14417 @end table
14418
14419 @subsection Expressions
14420
14421 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
14422 following parameters.
14423
14424 @table @option
14425 @item w
14426 @item h
14427 input width and height
14428
14429 @item n
14430 the number of input frame, starting from 0
14431
14432 @item pts
14433 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
14434 @var{TB} units, NAN if undefined
14435
14436 @item r
14437 frame rate of the input video, NAN if the input frame rate is unknown
14438
14439 @item t
14440 the PTS (Presentation TimeStamp) of the filtered video frame,
14441 expressed in seconds, NAN if undefined
14442
14443 @item tb
14444 time base of the input video
14445 @end table
14446
14447
14448 @subsection Examples
14449
14450 @itemize
14451 @item
14452 Apply simple strong vignetting effect:
14453 @example
14454 vignette=PI/4
14455 @end example
14456
14457 @item
14458 Make a flickering vignetting:
14459 @example
14460 vignette='PI/4+random(1)*PI/50':eval=frame
14461 @end example
14462
14463 @end itemize
14464
14465 @section vstack
14466 Stack input videos vertically.
14467
14468 All streams must be of same pixel format and of same width.
14469
14470 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
14471 to create same output.
14472
14473 The filter accept the following option:
14474
14475 @table @option
14476 @item inputs
14477 Set number of input streams. Default is 2.
14478
14479 @item shortest
14480 If set to 1, force the output to terminate when the shortest input
14481 terminates. Default value is 0.
14482 @end table
14483
14484 @section w3fdif
14485
14486 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
14487 Deinterlacing Filter").
14488
14489 Based on the process described by Martin Weston for BBC R&D, and
14490 implemented based on the de-interlace algorithm written by Jim
14491 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
14492 uses filter coefficients calculated by BBC R&D.
14493
14494 There are two sets of filter coefficients, so called "simple":
14495 and "complex". Which set of filter coefficients is used can
14496 be set by passing an optional parameter:
14497
14498 @table @option
14499 @item filter
14500 Set the interlacing filter coefficients. Accepts one of the following values:
14501
14502 @table @samp
14503 @item simple
14504 Simple filter coefficient set.
14505 @item complex
14506 More-complex filter coefficient set.
14507 @end table
14508 Default value is @samp{complex}.
14509
14510 @item deint
14511 Specify which frames to deinterlace. Accept one of the following values:
14512
14513 @table @samp
14514 @item all
14515 Deinterlace all frames,
14516 @item interlaced
14517 Only deinterlace frames marked as interlaced.
14518 @end table
14519
14520 Default value is @samp{all}.
14521 @end table
14522
14523 @section waveform
14524 Video waveform monitor.
14525
14526 The waveform monitor plots color component intensity. By default luminance
14527 only. Each column of the waveform corresponds to a column of pixels in the
14528 source video.
14529
14530 It accepts the following options:
14531
14532 @table @option
14533 @item mode, m
14534 Can be either @code{row}, or @code{column}. Default is @code{column}.
14535 In row mode, the graph on the left side represents color component value 0 and
14536 the right side represents value = 255. In column mode, the top side represents
14537 color component value = 0 and bottom side represents value = 255.
14538
14539 @item intensity, i
14540 Set intensity. Smaller values are useful to find out how many values of the same
14541 luminance are distributed across input rows/columns.
14542 Default value is @code{0.04}. Allowed range is [0, 1].
14543
14544 @item mirror, r
14545 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
14546 In mirrored mode, higher values will be represented on the left
14547 side for @code{row} mode and at the top for @code{column} mode. Default is
14548 @code{1} (mirrored).
14549
14550 @item display, d
14551 Set display mode.
14552 It accepts the following values:
14553 @table @samp
14554 @item overlay
14555 Presents information identical to that in the @code{parade}, except
14556 that the graphs representing color components are superimposed directly
14557 over one another.
14558
14559 This display mode makes it easier to spot relative differences or similarities
14560 in overlapping areas of the color components that are supposed to be identical,
14561 such as neutral whites, grays, or blacks.
14562
14563 @item stack
14564 Display separate graph for the color components side by side in
14565 @code{row} mode or one below the other in @code{column} mode.
14566
14567 @item parade
14568 Display separate graph for the color components side by side in
14569 @code{column} mode or one below the other in @code{row} mode.
14570
14571 Using this display mode makes it easy to spot color casts in the highlights
14572 and shadows of an image, by comparing the contours of the top and the bottom
14573 graphs of each waveform. Since whites, grays, and blacks are characterized
14574 by exactly equal amounts of red, green, and blue, neutral areas of the picture
14575 should display three waveforms of roughly equal width/height. If not, the
14576 correction is easy to perform by making level adjustments the three waveforms.
14577 @end table
14578 Default is @code{stack}.
14579
14580 @item components, c
14581 Set which color components to display. Default is 1, which means only luminance
14582 or red color component if input is in RGB colorspace. If is set for example to
14583 7 it will display all 3 (if) available color components.
14584
14585 @item envelope, e
14586 @table @samp
14587 @item none
14588 No envelope, this is default.
14589
14590 @item instant
14591 Instant envelope, minimum and maximum values presented in graph will be easily
14592 visible even with small @code{step} value.
14593
14594 @item peak
14595 Hold minimum and maximum values presented in graph across time. This way you
14596 can still spot out of range values without constantly looking at waveforms.
14597
14598 @item peak+instant
14599 Peak and instant envelope combined together.
14600 @end table
14601
14602 @item filter, f
14603 @table @samp
14604 @item lowpass
14605 No filtering, this is default.
14606
14607 @item flat
14608 Luma and chroma combined together.
14609
14610 @item aflat
14611 Similar as above, but shows difference between blue and red chroma.
14612
14613 @item chroma
14614 Displays only chroma.
14615
14616 @item color
14617 Displays actual color value on waveform.
14618
14619 @item acolor
14620 Similar as above, but with luma showing frequency of chroma values.
14621 @end table
14622
14623 @item graticule, g
14624 Set which graticule to display.
14625
14626 @table @samp
14627 @item none
14628 Do not display graticule.
14629
14630 @item green
14631 Display green graticule showing legal broadcast ranges.
14632 @end table
14633
14634 @item opacity, o
14635 Set graticule opacity.
14636
14637 @item flags, fl
14638 Set graticule flags.
14639
14640 @table @samp
14641 @item numbers
14642 Draw numbers above lines. By default enabled.
14643
14644 @item dots
14645 Draw dots instead of lines.
14646 @end table
14647
14648 @item scale, s
14649 Set scale used for displaying graticule.
14650
14651 @table @samp
14652 @item digital
14653 @item millivolts
14654 @item ire
14655 @end table
14656 Default is digital.
14657
14658 @item bgopacity, b
14659 Set background opacity.
14660 @end table
14661
14662 @section weave, doubleweave
14663
14664 The @code{weave} takes a field-based video input and join
14665 each two sequential fields into single frame, producing a new double
14666 height clip with half the frame rate and half the frame count.
14667
14668 The @code{doubleweave} works same as @code{weave} but without
14669 halving frame rate and frame count.
14670
14671 It accepts the following option:
14672
14673 @table @option
14674 @item first_field
14675 Set first field. Available values are:
14676
14677 @table @samp
14678 @item top, t
14679 Set the frame as top-field-first.
14680
14681 @item bottom, b
14682 Set the frame as bottom-field-first.
14683 @end table
14684 @end table
14685
14686 @subsection Examples
14687
14688 @itemize
14689 @item
14690 Interlace video using @ref{select} and @ref{separatefields} filter:
14691 @example
14692 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
14693 @end example
14694 @end itemize
14695
14696 @section xbr
14697 Apply the xBR high-quality magnification filter which is designed for pixel
14698 art. It follows a set of edge-detection rules, see
14699 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
14700
14701 It accepts the following option:
14702
14703 @table @option
14704 @item n
14705 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
14706 @code{3xBR} and @code{4} for @code{4xBR}.
14707 Default is @code{3}.
14708 @end table
14709
14710 @anchor{yadif}
14711 @section yadif
14712
14713 Deinterlace the input video ("yadif" means "yet another deinterlacing
14714 filter").
14715
14716 It accepts the following parameters:
14717
14718
14719 @table @option
14720
14721 @item mode
14722 The interlacing mode to adopt. It accepts one of the following values:
14723
14724 @table @option
14725 @item 0, send_frame
14726 Output one frame for each frame.
14727 @item 1, send_field
14728 Output one frame for each field.
14729 @item 2, send_frame_nospatial
14730 Like @code{send_frame}, but it skips the spatial interlacing check.
14731 @item 3, send_field_nospatial
14732 Like @code{send_field}, but it skips the spatial interlacing check.
14733 @end table
14734
14735 The default value is @code{send_frame}.
14736
14737 @item parity
14738 The picture field parity assumed for the input interlaced video. It accepts one
14739 of the following values:
14740
14741 @table @option
14742 @item 0, tff
14743 Assume the top field is first.
14744 @item 1, bff
14745 Assume the bottom field is first.
14746 @item -1, auto
14747 Enable automatic detection of field parity.
14748 @end table
14749
14750 The default value is @code{auto}.
14751 If the interlacing is unknown or the decoder does not export this information,
14752 top field first will be assumed.
14753
14754 @item deint
14755 Specify which frames to deinterlace. Accept one of the following
14756 values:
14757
14758 @table @option
14759 @item 0, all
14760 Deinterlace all frames.
14761 @item 1, interlaced
14762 Only deinterlace frames marked as interlaced.
14763 @end table
14764
14765 The default value is @code{all}.
14766 @end table
14767
14768 @section zoompan
14769
14770 Apply Zoom & Pan effect.
14771
14772 This filter accepts the following options:
14773
14774 @table @option
14775 @item zoom, z
14776 Set the zoom expression. Default is 1.
14777
14778 @item x
14779 @item y
14780 Set the x and y expression. Default is 0.
14781
14782 @item d
14783 Set the duration expression in number of frames.
14784 This sets for how many number of frames effect will last for
14785 single input image.
14786
14787 @item s
14788 Set the output image size, default is 'hd720'.
14789
14790 @item fps
14791 Set the output frame rate, default is '25'.
14792 @end table
14793
14794 Each expression can contain the following constants:
14795
14796 @table @option
14797 @item in_w, iw
14798 Input width.
14799
14800 @item in_h, ih
14801 Input height.
14802
14803 @item out_w, ow
14804 Output width.
14805
14806 @item out_h, oh
14807 Output height.
14808
14809 @item in
14810 Input frame count.
14811
14812 @item on
14813 Output frame count.
14814
14815 @item x
14816 @item y
14817 Last calculated 'x' and 'y' position from 'x' and 'y' expression
14818 for current input frame.
14819
14820 @item px
14821 @item py
14822 'x' and 'y' of last output frame of previous input frame or 0 when there was
14823 not yet such frame (first input frame).
14824
14825 @item zoom
14826 Last calculated zoom from 'z' expression for current input frame.
14827
14828 @item pzoom
14829 Last calculated zoom of last output frame of previous input frame.
14830
14831 @item duration
14832 Number of output frames for current input frame. Calculated from 'd' expression
14833 for each input frame.
14834
14835 @item pduration
14836 number of output frames created for previous input frame
14837
14838 @item a
14839 Rational number: input width / input height
14840
14841 @item sar
14842 sample aspect ratio
14843
14844 @item dar
14845 display aspect ratio
14846
14847 @end table
14848
14849 @subsection Examples
14850
14851 @itemize
14852 @item
14853 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
14854 @example
14855 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
14856 @end example
14857
14858 @item
14859 Zoom-in up to 1.5 and pan always at center of picture:
14860 @example
14861 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14862 @end example
14863
14864 @item
14865 Same as above but without pausing:
14866 @example
14867 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14868 @end example
14869 @end itemize
14870
14871 @section zscale
14872 Scale (resize) the input video, using the z.lib library:
14873 https://github.com/sekrit-twc/zimg.
14874
14875 The zscale filter forces the output display aspect ratio to be the same
14876 as the input, by changing the output sample aspect ratio.
14877
14878 If the input image format is different from the format requested by
14879 the next filter, the zscale filter will convert the input to the
14880 requested format.
14881
14882 @subsection Options
14883 The filter accepts the following options.
14884
14885 @table @option
14886 @item width, w
14887 @item height, h
14888 Set the output video dimension expression. Default value is the input
14889 dimension.
14890
14891 If the @var{width} or @var{w} is 0, the input width is used for the output.
14892 If the @var{height} or @var{h} is 0, the input height is used for the output.
14893
14894 If one of the values is -1, the zscale filter will use a value that
14895 maintains the aspect ratio of the input image, calculated from the
14896 other specified dimension. If both of them are -1, the input size is
14897 used
14898
14899 If one of the values is -n with n > 1, the zscale filter will also use a value
14900 that maintains the aspect ratio of the input image, calculated from the other
14901 specified dimension. After that it will, however, make sure that the calculated
14902 dimension is divisible by n and adjust the value if necessary.
14903
14904 See below for the list of accepted constants for use in the dimension
14905 expression.
14906
14907 @item size, s
14908 Set the video size. For the syntax of this option, check the
14909 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14910
14911 @item dither, d
14912 Set the dither type.
14913
14914 Possible values are:
14915 @table @var
14916 @item none
14917 @item ordered
14918 @item random
14919 @item error_diffusion
14920 @end table
14921
14922 Default is none.
14923
14924 @item filter, f
14925 Set the resize filter type.
14926
14927 Possible values are:
14928 @table @var
14929 @item point
14930 @item bilinear
14931 @item bicubic
14932 @item spline16
14933 @item spline36
14934 @item lanczos
14935 @end table
14936
14937 Default is bilinear.
14938
14939 @item range, r
14940 Set the color range.
14941
14942 Possible values are:
14943 @table @var
14944 @item input
14945 @item limited
14946 @item full
14947 @end table
14948
14949 Default is same as input.
14950
14951 @item primaries, p
14952 Set the color primaries.
14953
14954 Possible values are:
14955 @table @var
14956 @item input
14957 @item 709
14958 @item unspecified
14959 @item 170m
14960 @item 240m
14961 @item 2020
14962 @end table
14963
14964 Default is same as input.
14965
14966 @item transfer, t
14967 Set the transfer characteristics.
14968
14969 Possible values are:
14970 @table @var
14971 @item input
14972 @item 709
14973 @item unspecified
14974 @item 601
14975 @item linear
14976 @item 2020_10
14977 @item 2020_12
14978 @item smpte2084
14979 @item iec61966-2-1
14980 @item arib-std-b67
14981 @end table
14982
14983 Default is same as input.
14984
14985 @item matrix, m
14986 Set the colorspace matrix.
14987
14988 Possible value are:
14989 @table @var
14990 @item input
14991 @item 709
14992 @item unspecified
14993 @item 470bg
14994 @item 170m
14995 @item 2020_ncl
14996 @item 2020_cl
14997 @end table
14998
14999 Default is same as input.
15000
15001 @item rangein, rin
15002 Set the input color range.
15003
15004 Possible values are:
15005 @table @var
15006 @item input
15007 @item limited
15008 @item full
15009 @end table
15010
15011 Default is same as input.
15012
15013 @item primariesin, pin
15014 Set the input color primaries.
15015
15016 Possible values are:
15017 @table @var
15018 @item input
15019 @item 709
15020 @item unspecified
15021 @item 170m
15022 @item 240m
15023 @item 2020
15024 @end table
15025
15026 Default is same as input.
15027
15028 @item transferin, tin
15029 Set the input transfer characteristics.
15030
15031 Possible values are:
15032 @table @var
15033 @item input
15034 @item 709
15035 @item unspecified
15036 @item 601
15037 @item linear
15038 @item 2020_10
15039 @item 2020_12
15040 @end table
15041
15042 Default is same as input.
15043
15044 @item matrixin, min
15045 Set the input colorspace matrix.
15046
15047 Possible value are:
15048 @table @var
15049 @item input
15050 @item 709
15051 @item unspecified
15052 @item 470bg
15053 @item 170m
15054 @item 2020_ncl
15055 @item 2020_cl
15056 @end table
15057
15058 @item chromal, c
15059 Set the output chroma location.
15060
15061 Possible values are:
15062 @table @var
15063 @item input
15064 @item left
15065 @item center
15066 @item topleft
15067 @item top
15068 @item bottomleft
15069 @item bottom
15070 @end table
15071
15072 @item chromalin, cin
15073 Set the input chroma location.
15074
15075 Possible values are:
15076 @table @var
15077 @item input
15078 @item left
15079 @item center
15080 @item topleft
15081 @item top
15082 @item bottomleft
15083 @item bottom
15084 @end table
15085
15086 @item npl
15087 Set the nominal peak luminance.
15088 @end table
15089
15090 The values of the @option{w} and @option{h} options are expressions
15091 containing the following constants:
15092
15093 @table @var
15094 @item in_w
15095 @item in_h
15096 The input width and height
15097
15098 @item iw
15099 @item ih
15100 These are the same as @var{in_w} and @var{in_h}.
15101
15102 @item out_w
15103 @item out_h
15104 The output (scaled) width and height
15105
15106 @item ow
15107 @item oh
15108 These are the same as @var{out_w} and @var{out_h}
15109
15110 @item a
15111 The same as @var{iw} / @var{ih}
15112
15113 @item sar
15114 input sample aspect ratio
15115
15116 @item dar
15117 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
15118
15119 @item hsub
15120 @item vsub
15121 horizontal and vertical input chroma subsample values. For example for the
15122 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15123
15124 @item ohsub
15125 @item ovsub
15126 horizontal and vertical output chroma subsample values. For example for the
15127 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15128 @end table
15129
15130 @table @option
15131 @end table
15132
15133 @c man end VIDEO FILTERS
15134
15135 @chapter Video Sources
15136 @c man begin VIDEO SOURCES
15137
15138 Below is a description of the currently available video sources.
15139
15140 @section buffer
15141
15142 Buffer video frames, and make them available to the filter chain.
15143
15144 This source is mainly intended for a programmatic use, in particular
15145 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
15146
15147 It accepts the following parameters:
15148
15149 @table @option
15150
15151 @item video_size
15152 Specify the size (width and height) of the buffered video frames. For the
15153 syntax of this option, check the
15154 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15155
15156 @item width
15157 The input video width.
15158
15159 @item height
15160 The input video height.
15161
15162 @item pix_fmt
15163 A string representing the pixel format of the buffered video frames.
15164 It may be a number corresponding to a pixel format, or a pixel format
15165 name.
15166
15167 @item time_base
15168 Specify the timebase assumed by the timestamps of the buffered frames.
15169
15170 @item frame_rate
15171 Specify the frame rate expected for the video stream.
15172
15173 @item pixel_aspect, sar
15174 The sample (pixel) aspect ratio of the input video.
15175
15176 @item sws_param
15177 Specify the optional parameters to be used for the scale filter which
15178 is automatically inserted when an input change is detected in the
15179 input size or format.
15180
15181 @item hw_frames_ctx
15182 When using a hardware pixel format, this should be a reference to an
15183 AVHWFramesContext describing input frames.
15184 @end table
15185
15186 For example:
15187 @example
15188 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
15189 @end example
15190
15191 will instruct the source to accept video frames with size 320x240 and
15192 with format "yuv410p", assuming 1/24 as the timestamps timebase and
15193 square pixels (1:1 sample aspect ratio).
15194 Since the pixel format with name "yuv410p" corresponds to the number 6
15195 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
15196 this example corresponds to:
15197 @example
15198 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
15199 @end example
15200
15201 Alternatively, the options can be specified as a flat string, but this
15202 syntax is deprecated:
15203
15204 @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}]
15205
15206 @section cellauto
15207
15208 Create a pattern generated by an elementary cellular automaton.
15209
15210 The initial state of the cellular automaton can be defined through the
15211 @option{filename} and @option{pattern} options. If such options are
15212 not specified an initial state is created randomly.
15213
15214 At each new frame a new row in the video is filled with the result of
15215 the cellular automaton next generation. The behavior when the whole
15216 frame is filled is defined by the @option{scroll} option.
15217
15218 This source accepts the following options:
15219
15220 @table @option
15221 @item filename, f
15222 Read the initial cellular automaton state, i.e. the starting row, from
15223 the specified file.
15224 In the file, each non-whitespace character is considered an alive
15225 cell, a newline will terminate the row, and further characters in the
15226 file will be ignored.
15227
15228 @item pattern, p
15229 Read the initial cellular automaton state, i.e. the starting row, from
15230 the specified string.
15231
15232 Each non-whitespace character in the string is considered an alive
15233 cell, a newline will terminate the row, and further characters in the
15234 string will be ignored.
15235
15236 @item rate, r
15237 Set the video rate, that is the number of frames generated per second.
15238 Default is 25.
15239
15240 @item random_fill_ratio, ratio
15241 Set the random fill ratio for the initial cellular automaton row. It
15242 is a floating point number value ranging from 0 to 1, defaults to
15243 1/PHI.
15244
15245 This option is ignored when a file or a pattern is specified.
15246
15247 @item random_seed, seed
15248 Set the seed for filling randomly the initial row, must be an integer
15249 included between 0 and UINT32_MAX. If not specified, or if explicitly
15250 set to -1, the filter will try to use a good random seed on a best
15251 effort basis.
15252
15253 @item rule
15254 Set the cellular automaton rule, it is a number ranging from 0 to 255.
15255 Default value is 110.
15256
15257 @item size, s
15258 Set the size of the output video. For the syntax of this option, check the
15259 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15260
15261 If @option{filename} or @option{pattern} is specified, the size is set
15262 by default to the width of the specified initial state row, and the
15263 height is set to @var{width} * PHI.
15264
15265 If @option{size} is set, it must contain the width of the specified
15266 pattern string, and the specified pattern will be centered in the
15267 larger row.
15268
15269 If a filename or a pattern string is not specified, the size value
15270 defaults to "320x518" (used for a randomly generated initial state).
15271
15272 @item scroll
15273 If set to 1, scroll the output upward when all the rows in the output
15274 have been already filled. If set to 0, the new generated row will be
15275 written over the top row just after the bottom row is filled.
15276 Defaults to 1.
15277
15278 @item start_full, full
15279 If set to 1, completely fill the output with generated rows before
15280 outputting the first frame.
15281 This is the default behavior, for disabling set the value to 0.
15282
15283 @item stitch
15284 If set to 1, stitch the left and right row edges together.
15285 This is the default behavior, for disabling set the value to 0.
15286 @end table
15287
15288 @subsection Examples
15289
15290 @itemize
15291 @item
15292 Read the initial state from @file{pattern}, and specify an output of
15293 size 200x400.
15294 @example
15295 cellauto=f=pattern:s=200x400
15296 @end example
15297
15298 @item
15299 Generate a random initial row with a width of 200 cells, with a fill
15300 ratio of 2/3:
15301 @example
15302 cellauto=ratio=2/3:s=200x200
15303 @end example
15304
15305 @item
15306 Create a pattern generated by rule 18 starting by a single alive cell
15307 centered on an initial row with width 100:
15308 @example
15309 cellauto=p=@@:s=100x400:full=0:rule=18
15310 @end example
15311
15312 @item
15313 Specify a more elaborated initial pattern:
15314 @example
15315 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
15316 @end example
15317
15318 @end itemize
15319
15320 @anchor{coreimagesrc}
15321 @section coreimagesrc
15322 Video source generated on GPU using Apple's CoreImage API on OSX.
15323
15324 This video source is a specialized version of the @ref{coreimage} video filter.
15325 Use a core image generator at the beginning of the applied filterchain to
15326 generate the content.
15327
15328 The coreimagesrc video source accepts the following options:
15329 @table @option
15330 @item list_generators
15331 List all available generators along with all their respective options as well as
15332 possible minimum and maximum values along with the default values.
15333 @example
15334 list_generators=true
15335 @end example
15336
15337 @item size, s
15338 Specify the size of the sourced video. For the syntax of this option, check the
15339 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15340 The default value is @code{320x240}.
15341
15342 @item rate, r
15343 Specify the frame rate of the sourced video, as the number of frames
15344 generated per second. It has to be a string in the format
15345 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15346 number or a valid video frame rate abbreviation. The default value is
15347 "25".
15348
15349 @item sar
15350 Set the sample aspect ratio of the sourced video.
15351
15352 @item duration, d
15353 Set the duration of the sourced video. See
15354 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15355 for the accepted syntax.
15356
15357 If not specified, or the expressed duration is negative, the video is
15358 supposed to be generated forever.
15359 @end table
15360
15361 Additionally, all options of the @ref{coreimage} video filter are accepted.
15362 A complete filterchain can be used for further processing of the
15363 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
15364 and examples for details.
15365
15366 @subsection Examples
15367
15368 @itemize
15369
15370 @item
15371 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
15372 given as complete and escaped command-line for Apple's standard bash shell:
15373 @example
15374 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
15375 @end example
15376 This example is equivalent to the QRCode example of @ref{coreimage} without the
15377 need for a nullsrc video source.
15378 @end itemize
15379
15380
15381 @section mandelbrot
15382
15383 Generate a Mandelbrot set fractal, and progressively zoom towards the
15384 point specified with @var{start_x} and @var{start_y}.
15385
15386 This source accepts the following options:
15387
15388 @table @option
15389
15390 @item end_pts
15391 Set the terminal pts value. Default value is 400.
15392
15393 @item end_scale
15394 Set the terminal scale value.
15395 Must be a floating point value. Default value is 0.3.
15396
15397 @item inner
15398 Set the inner coloring mode, that is the algorithm used to draw the
15399 Mandelbrot fractal internal region.
15400
15401 It shall assume one of the following values:
15402 @table @option
15403 @item black
15404 Set black mode.
15405 @item convergence
15406 Show time until convergence.
15407 @item mincol
15408 Set color based on point closest to the origin of the iterations.
15409 @item period
15410 Set period mode.
15411 @end table
15412
15413 Default value is @var{mincol}.
15414
15415 @item bailout
15416 Set the bailout value. Default value is 10.0.
15417
15418 @item maxiter
15419 Set the maximum of iterations performed by the rendering
15420 algorithm. Default value is 7189.
15421
15422 @item outer
15423 Set outer coloring mode.
15424 It shall assume one of following values:
15425 @table @option
15426 @item iteration_count
15427 Set iteration cound mode.
15428 @item normalized_iteration_count
15429 set normalized iteration count mode.
15430 @end table
15431 Default value is @var{normalized_iteration_count}.
15432
15433 @item rate, r
15434 Set frame rate, expressed as number of frames per second. Default
15435 value is "25".
15436
15437 @item size, s
15438 Set frame size. For the syntax of this option, check the "Video
15439 size" section in the ffmpeg-utils manual. Default value is "640x480".
15440
15441 @item start_scale
15442 Set the initial scale value. Default value is 3.0.
15443
15444 @item start_x
15445 Set the initial x position. Must be a floating point value between
15446 -100 and 100. Default value is -0.743643887037158704752191506114774.
15447
15448 @item start_y
15449 Set the initial y position. Must be a floating point value between
15450 -100 and 100. Default value is -0.131825904205311970493132056385139.
15451 @end table
15452
15453 @section mptestsrc
15454
15455 Generate various test patterns, as generated by the MPlayer test filter.
15456
15457 The size of the generated video is fixed, and is 256x256.
15458 This source is useful in particular for testing encoding features.
15459
15460 This source accepts the following options:
15461
15462 @table @option
15463
15464 @item rate, r
15465 Specify the frame rate of the sourced video, as the number of frames
15466 generated per second. It has to be a string in the format
15467 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15468 number or a valid video frame rate abbreviation. The default value is
15469 "25".
15470
15471 @item duration, d
15472 Set the duration of the sourced video. See
15473 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15474 for the accepted syntax.
15475
15476 If not specified, or the expressed duration is negative, the video is
15477 supposed to be generated forever.
15478
15479 @item test, t
15480
15481 Set the number or the name of the test to perform. Supported tests are:
15482 @table @option
15483 @item dc_luma
15484 @item dc_chroma
15485 @item freq_luma
15486 @item freq_chroma
15487 @item amp_luma
15488 @item amp_chroma
15489 @item cbp
15490 @item mv
15491 @item ring1
15492 @item ring2
15493 @item all
15494
15495 @end table
15496
15497 Default value is "all", which will cycle through the list of all tests.
15498 @end table
15499
15500 Some examples:
15501 @example
15502 mptestsrc=t=dc_luma
15503 @end example
15504
15505 will generate a "dc_luma" test pattern.
15506
15507 @section frei0r_src
15508
15509 Provide a frei0r source.
15510
15511 To enable compilation of this filter you need to install the frei0r
15512 header and configure FFmpeg with @code{--enable-frei0r}.
15513
15514 This source accepts the following parameters:
15515
15516 @table @option
15517
15518 @item size
15519 The size of the video to generate. For the syntax of this option, check the
15520 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15521
15522 @item framerate
15523 The framerate of the generated video. It may be a string of the form
15524 @var{num}/@var{den} or a frame rate abbreviation.
15525
15526 @item filter_name
15527 The name to the frei0r source to load. For more information regarding frei0r and
15528 how to set the parameters, read the @ref{frei0r} section in the video filters
15529 documentation.
15530
15531 @item filter_params
15532 A '|'-separated list of parameters to pass to the frei0r source.
15533
15534 @end table
15535
15536 For example, to generate a frei0r partik0l source with size 200x200
15537 and frame rate 10 which is overlaid on the overlay filter main input:
15538 @example
15539 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
15540 @end example
15541
15542 @section life
15543
15544 Generate a life pattern.
15545
15546 This source is based on a generalization of John Conway's life game.
15547
15548 The sourced input represents a life grid, each pixel represents a cell
15549 which can be in one of two possible states, alive or dead. Every cell
15550 interacts with its eight neighbours, which are the cells that are
15551 horizontally, vertically, or diagonally adjacent.
15552
15553 At each interaction the grid evolves according to the adopted rule,
15554 which specifies the number of neighbor alive cells which will make a
15555 cell stay alive or born. The @option{rule} option allows one to specify
15556 the rule to adopt.
15557
15558 This source accepts the following options:
15559
15560 @table @option
15561 @item filename, f
15562 Set the file from which to read the initial grid state. In the file,
15563 each non-whitespace character is considered an alive cell, and newline
15564 is used to delimit the end of each row.
15565
15566 If this option is not specified, the initial grid is generated
15567 randomly.
15568
15569 @item rate, r
15570 Set the video rate, that is the number of frames generated per second.
15571 Default is 25.
15572
15573 @item random_fill_ratio, ratio
15574 Set the random fill ratio for the initial random grid. It is a
15575 floating point number value ranging from 0 to 1, defaults to 1/PHI.
15576 It is ignored when a file is specified.
15577
15578 @item random_seed, seed
15579 Set the seed for filling the initial random grid, must be an integer
15580 included between 0 and UINT32_MAX. If not specified, or if explicitly
15581 set to -1, the filter will try to use a good random seed on a best
15582 effort basis.
15583
15584 @item rule
15585 Set the life rule.
15586
15587 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
15588 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
15589 @var{NS} specifies the number of alive neighbor cells which make a
15590 live cell stay alive, and @var{NB} the number of alive neighbor cells
15591 which make a dead cell to become alive (i.e. to "born").
15592 "s" and "b" can be used in place of "S" and "B", respectively.
15593
15594 Alternatively a rule can be specified by an 18-bits integer. The 9
15595 high order bits are used to encode the next cell state if it is alive
15596 for each number of neighbor alive cells, the low order bits specify
15597 the rule for "borning" new cells. Higher order bits encode for an
15598 higher number of neighbor cells.
15599 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
15600 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
15601
15602 Default value is "S23/B3", which is the original Conway's game of life
15603 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
15604 cells, and will born a new cell if there are three alive cells around
15605 a dead cell.
15606
15607 @item size, s
15608 Set the size of the output video. For the syntax of this option, check the
15609 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15610
15611 If @option{filename} is specified, the size is set by default to the
15612 same size of the input file. If @option{size} is set, it must contain
15613 the size specified in the input file, and the initial grid defined in
15614 that file is centered in the larger resulting area.
15615
15616 If a filename is not specified, the size value defaults to "320x240"
15617 (used for a randomly generated initial grid).
15618
15619 @item stitch
15620 If set to 1, stitch the left and right grid edges together, and the
15621 top and bottom edges also. Defaults to 1.
15622
15623 @item mold
15624 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
15625 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
15626 value from 0 to 255.
15627
15628 @item life_color
15629 Set the color of living (or new born) cells.
15630
15631 @item death_color
15632 Set the color of dead cells. If @option{mold} is set, this is the first color
15633 used to represent a dead cell.
15634
15635 @item mold_color
15636 Set mold color, for definitely dead and moldy cells.
15637
15638 For the syntax of these 3 color options, check the "Color" section in the
15639 ffmpeg-utils manual.
15640 @end table
15641
15642 @subsection Examples
15643
15644 @itemize
15645 @item
15646 Read a grid from @file{pattern}, and center it on a grid of size
15647 300x300 pixels:
15648 @example
15649 life=f=pattern:s=300x300
15650 @end example
15651
15652 @item
15653 Generate a random grid of size 200x200, with a fill ratio of 2/3:
15654 @example
15655 life=ratio=2/3:s=200x200
15656 @end example
15657
15658 @item
15659 Specify a custom rule for evolving a randomly generated grid:
15660 @example
15661 life=rule=S14/B34
15662 @end example
15663
15664 @item
15665 Full example with slow death effect (mold) using @command{ffplay}:
15666 @example
15667 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
15668 @end example
15669 @end itemize
15670
15671 @anchor{allrgb}
15672 @anchor{allyuv}
15673 @anchor{color}
15674 @anchor{haldclutsrc}
15675 @anchor{nullsrc}
15676 @anchor{rgbtestsrc}
15677 @anchor{smptebars}
15678 @anchor{smptehdbars}
15679 @anchor{testsrc}
15680 @anchor{testsrc2}
15681 @anchor{yuvtestsrc}
15682 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
15683
15684 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
15685
15686 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
15687
15688 The @code{color} source provides an uniformly colored input.
15689
15690 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
15691 @ref{haldclut} filter.
15692
15693 The @code{nullsrc} source returns unprocessed video frames. It is
15694 mainly useful to be employed in analysis / debugging tools, or as the
15695 source for filters which ignore the input data.
15696
15697 The @code{rgbtestsrc} source generates an RGB test pattern useful for
15698 detecting RGB vs BGR issues. You should see a red, green and blue
15699 stripe from top to bottom.
15700
15701 The @code{smptebars} source generates a color bars pattern, based on
15702 the SMPTE Engineering Guideline EG 1-1990.
15703
15704 The @code{smptehdbars} source generates a color bars pattern, based on
15705 the SMPTE RP 219-2002.
15706
15707 The @code{testsrc} source generates a test video pattern, showing a
15708 color pattern, a scrolling gradient and a timestamp. This is mainly
15709 intended for testing purposes.
15710
15711 The @code{testsrc2} source is similar to testsrc, but supports more
15712 pixel formats instead of just @code{rgb24}. This allows using it as an
15713 input for other tests without requiring a format conversion.
15714
15715 The @code{yuvtestsrc} source generates an YUV test pattern. You should
15716 see a y, cb and cr stripe from top to bottom.
15717
15718 The sources accept the following parameters:
15719
15720 @table @option
15721
15722 @item color, c
15723 Specify the color of the source, only available in the @code{color}
15724 source. For the syntax of this option, check the "Color" section in the
15725 ffmpeg-utils manual.
15726
15727 @item level
15728 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
15729 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
15730 pixels to be used as identity matrix for 3D lookup tables. Each component is
15731 coded on a @code{1/(N*N)} scale.
15732
15733 @item size, s
15734 Specify the size of the sourced video. For the syntax of this option, check the
15735 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15736 The default value is @code{320x240}.
15737
15738 This option is not available with the @code{haldclutsrc} filter.
15739
15740 @item rate, r
15741 Specify the frame rate of the sourced video, as the number of frames
15742 generated per second. It has to be a string in the format
15743 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15744 number or a valid video frame rate abbreviation. The default value is
15745 "25".
15746
15747 @item sar
15748 Set the sample aspect ratio of the sourced video.
15749
15750 @item duration, d
15751 Set the duration of the sourced video. See
15752 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15753 for the accepted syntax.
15754
15755 If not specified, or the expressed duration is negative, the video is
15756 supposed to be generated forever.
15757
15758 @item decimals, n
15759 Set the number of decimals to show in the timestamp, only available in the
15760 @code{testsrc} source.
15761
15762 The displayed timestamp value will correspond to the original
15763 timestamp value multiplied by the power of 10 of the specified
15764 value. Default value is 0.
15765 @end table
15766
15767 For example the following:
15768 @example
15769 testsrc=duration=5.3:size=qcif:rate=10
15770 @end example
15771
15772 will generate a video with a duration of 5.3 seconds, with size
15773 176x144 and a frame rate of 10 frames per second.
15774
15775 The following graph description will generate a red source
15776 with an opacity of 0.2, with size "qcif" and a frame rate of 10
15777 frames per second.
15778 @example
15779 color=c=red@@0.2:s=qcif:r=10
15780 @end example
15781
15782 If the input content is to be ignored, @code{nullsrc} can be used. The
15783 following command generates noise in the luminance plane by employing
15784 the @code{geq} filter:
15785 @example
15786 nullsrc=s=256x256, geq=random(1)*255:128:128
15787 @end example
15788
15789 @subsection Commands
15790
15791 The @code{color} source supports the following commands:
15792
15793 @table @option
15794 @item c, color
15795 Set the color of the created image. Accepts the same syntax of the
15796 corresponding @option{color} option.
15797 @end table
15798
15799 @c man end VIDEO SOURCES
15800
15801 @chapter Video Sinks
15802 @c man begin VIDEO SINKS
15803
15804 Below is a description of the currently available video sinks.
15805
15806 @section buffersink
15807
15808 Buffer video frames, and make them available to the end of the filter
15809 graph.
15810
15811 This sink is mainly intended for programmatic use, in particular
15812 through the interface defined in @file{libavfilter/buffersink.h}
15813 or the options system.
15814
15815 It accepts a pointer to an AVBufferSinkContext structure, which
15816 defines the incoming buffers' formats, to be passed as the opaque
15817 parameter to @code{avfilter_init_filter} for initialization.
15818
15819 @section nullsink
15820
15821 Null video sink: do absolutely nothing with the input video. It is
15822 mainly useful as a template and for use in analysis / debugging
15823 tools.
15824
15825 @c man end VIDEO SINKS
15826
15827 @chapter Multimedia Filters
15828 @c man begin MULTIMEDIA FILTERS
15829
15830 Below is a description of the currently available multimedia filters.
15831
15832 @section abitscope
15833
15834 Convert input audio to a video output, displaying the audio bit scope.
15835
15836 The filter accepts the following options:
15837
15838 @table @option
15839 @item rate, r
15840 Set frame rate, expressed as number of frames per second. Default
15841 value is "25".
15842
15843 @item size, s
15844 Specify the video size for the output. For the syntax of this option, check the
15845 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15846 Default value is @code{1024x256}.
15847
15848 @item colors
15849 Specify list of colors separated by space or by '|' which will be used to
15850 draw channels. Unrecognized or missing colors will be replaced
15851 by white color.
15852 @end table
15853
15854 @section ahistogram
15855
15856 Convert input audio to a video output, displaying the volume histogram.
15857
15858 The filter accepts the following options:
15859
15860 @table @option
15861 @item dmode
15862 Specify how histogram is calculated.
15863
15864 It accepts the following values:
15865 @table @samp
15866 @item single
15867 Use single histogram for all channels.
15868 @item separate
15869 Use separate histogram for each channel.
15870 @end table
15871 Default is @code{single}.
15872
15873 @item rate, r
15874 Set frame rate, expressed as number of frames per second. Default
15875 value is "25".
15876
15877 @item size, s
15878 Specify the video size for the output. For the syntax of this option, check the
15879 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15880 Default value is @code{hd720}.
15881
15882 @item scale
15883 Set display scale.
15884
15885 It accepts the following values:
15886 @table @samp
15887 @item log
15888 logarithmic
15889 @item sqrt
15890 square root
15891 @item cbrt
15892 cubic root
15893 @item lin
15894 linear
15895 @item rlog
15896 reverse logarithmic
15897 @end table
15898 Default is @code{log}.
15899
15900 @item ascale
15901 Set amplitude scale.
15902
15903 It accepts the following values:
15904 @table @samp
15905 @item log
15906 logarithmic
15907 @item lin
15908 linear
15909 @end table
15910 Default is @code{log}.
15911
15912 @item acount
15913 Set how much frames to accumulate in histogram.
15914 Defauls is 1. Setting this to -1 accumulates all frames.
15915
15916 @item rheight
15917 Set histogram ratio of window height.
15918
15919 @item slide
15920 Set sonogram sliding.
15921
15922 It accepts the following values:
15923 @table @samp
15924 @item replace
15925 replace old rows with new ones.
15926 @item scroll
15927 scroll from top to bottom.
15928 @end table
15929 Default is @code{replace}.
15930 @end table
15931
15932 @section aphasemeter
15933
15934 Convert input audio to a video output, displaying the audio phase.
15935
15936 The filter accepts the following options:
15937
15938 @table @option
15939 @item rate, r
15940 Set the output frame rate. Default value is @code{25}.
15941
15942 @item size, s
15943 Set the video size for the output. For the syntax of this option, check the
15944 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15945 Default value is @code{800x400}.
15946
15947 @item rc
15948 @item gc
15949 @item bc
15950 Specify the red, green, blue contrast. Default values are @code{2},
15951 @code{7} and @code{1}.
15952 Allowed range is @code{[0, 255]}.
15953
15954 @item mpc
15955 Set color which will be used for drawing median phase. If color is
15956 @code{none} which is default, no median phase value will be drawn.
15957
15958 @item video
15959 Enable video output. Default is enabled.
15960 @end table
15961
15962 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
15963 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
15964 The @code{-1} means left and right channels are completely out of phase and
15965 @code{1} means channels are in phase.
15966
15967 @section avectorscope
15968
15969 Convert input audio to a video output, representing the audio vector
15970 scope.
15971
15972 The filter is used to measure the difference between channels of stereo
15973 audio stream. A monoaural signal, consisting of identical left and right
15974 signal, results in straight vertical line. Any stereo separation is visible
15975 as a deviation from this line, creating a Lissajous figure.
15976 If the straight (or deviation from it) but horizontal line appears this
15977 indicates that the left and right channels are out of phase.
15978
15979 The filter accepts the following options:
15980
15981 @table @option
15982 @item mode, m
15983 Set the vectorscope mode.
15984
15985 Available values are:
15986 @table @samp
15987 @item lissajous
15988 Lissajous rotated by 45 degrees.
15989
15990 @item lissajous_xy
15991 Same as above but not rotated.
15992
15993 @item polar
15994 Shape resembling half of circle.
15995 @end table
15996
15997 Default value is @samp{lissajous}.
15998
15999 @item size, s
16000 Set the video size for the output. For the syntax of this option, check the
16001 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16002 Default value is @code{400x400}.
16003
16004 @item rate, r
16005 Set the output frame rate. Default value is @code{25}.
16006
16007 @item rc
16008 @item gc
16009 @item bc
16010 @item ac
16011 Specify the red, green, blue and alpha contrast. Default values are @code{40},
16012 @code{160}, @code{80} and @code{255}.
16013 Allowed range is @code{[0, 255]}.
16014
16015 @item rf
16016 @item gf
16017 @item bf
16018 @item af
16019 Specify the red, green, blue and alpha fade. Default values are @code{15},
16020 @code{10}, @code{5} and @code{5}.
16021 Allowed range is @code{[0, 255]}.
16022
16023 @item zoom
16024 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
16025
16026 @item draw
16027 Set the vectorscope drawing mode.
16028
16029 Available values are:
16030 @table @samp
16031 @item dot
16032 Draw dot for each sample.
16033
16034 @item line
16035 Draw line between previous and current sample.
16036 @end table
16037
16038 Default value is @samp{dot}.
16039
16040 @item scale
16041 Specify amplitude scale of audio samples.
16042
16043 Available values are:
16044 @table @samp
16045 @item lin
16046 Linear.
16047
16048 @item sqrt
16049 Square root.
16050
16051 @item cbrt
16052 Cubic root.
16053
16054 @item log
16055 Logarithmic.
16056 @end table
16057
16058 @end table
16059
16060 @subsection Examples
16061
16062 @itemize
16063 @item
16064 Complete example using @command{ffplay}:
16065 @example
16066 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16067              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
16068 @end example
16069 @end itemize
16070
16071 @section bench, abench
16072
16073 Benchmark part of a filtergraph.
16074
16075 The filter accepts the following options:
16076
16077 @table @option
16078 @item action
16079 Start or stop a timer.
16080
16081 Available values are:
16082 @table @samp
16083 @item start
16084 Get the current time, set it as frame metadata (using the key
16085 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
16086
16087 @item stop
16088 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
16089 the input frame metadata to get the time difference. Time difference, average,
16090 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
16091 @code{min}) are then printed. The timestamps are expressed in seconds.
16092 @end table
16093 @end table
16094
16095 @subsection Examples
16096
16097 @itemize
16098 @item
16099 Benchmark @ref{selectivecolor} filter:
16100 @example
16101 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
16102 @end example
16103 @end itemize
16104
16105 @section concat
16106
16107 Concatenate audio and video streams, joining them together one after the
16108 other.
16109
16110 The filter works on segments of synchronized video and audio streams. All
16111 segments must have the same number of streams of each type, and that will
16112 also be the number of streams at output.
16113
16114 The filter accepts the following options:
16115
16116 @table @option
16117
16118 @item n
16119 Set the number of segments. Default is 2.
16120
16121 @item v
16122 Set the number of output video streams, that is also the number of video
16123 streams in each segment. Default is 1.
16124
16125 @item a
16126 Set the number of output audio streams, that is also the number of audio
16127 streams in each segment. Default is 0.
16128
16129 @item unsafe
16130 Activate unsafe mode: do not fail if segments have a different format.
16131
16132 @end table
16133
16134 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
16135 @var{a} audio outputs.
16136
16137 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
16138 segment, in the same order as the outputs, then the inputs for the second
16139 segment, etc.
16140
16141 Related streams do not always have exactly the same duration, for various
16142 reasons including codec frame size or sloppy authoring. For that reason,
16143 related synchronized streams (e.g. a video and its audio track) should be
16144 concatenated at once. The concat filter will use the duration of the longest
16145 stream in each segment (except the last one), and if necessary pad shorter
16146 audio streams with silence.
16147
16148 For this filter to work correctly, all segments must start at timestamp 0.
16149
16150 All corresponding streams must have the same parameters in all segments; the
16151 filtering system will automatically select a common pixel format for video
16152 streams, and a common sample format, sample rate and channel layout for
16153 audio streams, but other settings, such as resolution, must be converted
16154 explicitly by the user.
16155
16156 Different frame rates are acceptable but will result in variable frame rate
16157 at output; be sure to configure the output file to handle it.
16158
16159 @subsection Examples
16160
16161 @itemize
16162 @item
16163 Concatenate an opening, an episode and an ending, all in bilingual version
16164 (video in stream 0, audio in streams 1 and 2):
16165 @example
16166 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
16167   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
16168    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
16169   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
16170 @end example
16171
16172 @item
16173 Concatenate two parts, handling audio and video separately, using the
16174 (a)movie sources, and adjusting the resolution:
16175 @example
16176 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
16177 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
16178 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
16179 @end example
16180 Note that a desync will happen at the stitch if the audio and video streams
16181 do not have exactly the same duration in the first file.
16182
16183 @end itemize
16184
16185 @section drawgraph, adrawgraph
16186
16187 Draw a graph using input video or audio metadata.
16188
16189 It accepts the following parameters:
16190
16191 @table @option
16192 @item m1
16193 Set 1st frame metadata key from which metadata values will be used to draw a graph.
16194
16195 @item fg1
16196 Set 1st foreground color expression.
16197
16198 @item m2
16199 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
16200
16201 @item fg2
16202 Set 2nd foreground color expression.
16203
16204 @item m3
16205 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
16206
16207 @item fg3
16208 Set 3rd foreground color expression.
16209
16210 @item m4
16211 Set 4th frame metadata key from which metadata values will be used to draw a graph.
16212
16213 @item fg4
16214 Set 4th foreground color expression.
16215
16216 @item min
16217 Set minimal value of metadata value.
16218
16219 @item max
16220 Set maximal value of metadata value.
16221
16222 @item bg
16223 Set graph background color. Default is white.
16224
16225 @item mode
16226 Set graph mode.
16227
16228 Available values for mode is:
16229 @table @samp
16230 @item bar
16231 @item dot
16232 @item line
16233 @end table
16234
16235 Default is @code{line}.
16236
16237 @item slide
16238 Set slide mode.
16239
16240 Available values for slide is:
16241 @table @samp
16242 @item frame
16243 Draw new frame when right border is reached.
16244
16245 @item replace
16246 Replace old columns with new ones.
16247
16248 @item scroll
16249 Scroll from right to left.
16250
16251 @item rscroll
16252 Scroll from left to right.
16253
16254 @item picture
16255 Draw single picture.
16256 @end table
16257
16258 Default is @code{frame}.
16259
16260 @item size
16261 Set size of graph video. For the syntax of this option, check the
16262 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16263 The default value is @code{900x256}.
16264
16265 The foreground color expressions can use the following variables:
16266 @table @option
16267 @item MIN
16268 Minimal value of metadata value.
16269
16270 @item MAX
16271 Maximal value of metadata value.
16272
16273 @item VAL
16274 Current metadata key value.
16275 @end table
16276
16277 The color is defined as 0xAABBGGRR.
16278 @end table
16279
16280 Example using metadata from @ref{signalstats} filter:
16281 @example
16282 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
16283 @end example
16284
16285 Example using metadata from @ref{ebur128} filter:
16286 @example
16287 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
16288 @end example
16289
16290 @anchor{ebur128}
16291 @section ebur128
16292
16293 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
16294 it unchanged. By default, it logs a message at a frequency of 10Hz with the
16295 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
16296 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
16297
16298 The filter also has a video output (see the @var{video} option) with a real
16299 time graph to observe the loudness evolution. The graphic contains the logged
16300 message mentioned above, so it is not printed anymore when this option is set,
16301 unless the verbose logging is set. The main graphing area contains the
16302 short-term loudness (3 seconds of analysis), and the gauge on the right is for
16303 the momentary loudness (400 milliseconds).
16304
16305 More information about the Loudness Recommendation EBU R128 on
16306 @url{http://tech.ebu.ch/loudness}.
16307
16308 The filter accepts the following options:
16309
16310 @table @option
16311
16312 @item video
16313 Activate the video output. The audio stream is passed unchanged whether this
16314 option is set or no. The video stream will be the first output stream if
16315 activated. Default is @code{0}.
16316
16317 @item size
16318 Set the video size. This option is for video only. For the syntax of this
16319 option, check the
16320 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16321 Default and minimum resolution is @code{640x480}.
16322
16323 @item meter
16324 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
16325 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
16326 other integer value between this range is allowed.
16327
16328 @item metadata
16329 Set metadata injection. If set to @code{1}, the audio input will be segmented
16330 into 100ms output frames, each of them containing various loudness information
16331 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
16332
16333 Default is @code{0}.
16334
16335 @item framelog
16336 Force the frame logging level.
16337
16338 Available values are:
16339 @table @samp
16340 @item info
16341 information logging level
16342 @item verbose
16343 verbose logging level
16344 @end table
16345
16346 By default, the logging level is set to @var{info}. If the @option{video} or
16347 the @option{metadata} options are set, it switches to @var{verbose}.
16348
16349 @item peak
16350 Set peak mode(s).
16351
16352 Available modes can be cumulated (the option is a @code{flag} type). Possible
16353 values are:
16354 @table @samp
16355 @item none
16356 Disable any peak mode (default).
16357 @item sample
16358 Enable sample-peak mode.
16359
16360 Simple peak mode looking for the higher sample value. It logs a message
16361 for sample-peak (identified by @code{SPK}).
16362 @item true
16363 Enable true-peak mode.
16364
16365 If enabled, the peak lookup is done on an over-sampled version of the input
16366 stream for better peak accuracy. It logs a message for true-peak.
16367 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
16368 This mode requires a build with @code{libswresample}.
16369 @end table
16370
16371 @item dualmono
16372 Treat mono input files as "dual mono". If a mono file is intended for playback
16373 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
16374 If set to @code{true}, this option will compensate for this effect.
16375 Multi-channel input files are not affected by this option.
16376
16377 @item panlaw
16378 Set a specific pan law to be used for the measurement of dual mono files.
16379 This parameter is optional, and has a default value of -3.01dB.
16380 @end table
16381
16382 @subsection Examples
16383
16384 @itemize
16385 @item
16386 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
16387 @example
16388 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
16389 @end example
16390
16391 @item
16392 Run an analysis with @command{ffmpeg}:
16393 @example
16394 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
16395 @end example
16396 @end itemize
16397
16398 @section interleave, ainterleave
16399
16400 Temporally interleave frames from several inputs.
16401
16402 @code{interleave} works with video inputs, @code{ainterleave} with audio.
16403
16404 These filters read frames from several inputs and send the oldest
16405 queued frame to the output.
16406
16407 Input streams must have well defined, monotonically increasing frame
16408 timestamp values.
16409
16410 In order to submit one frame to output, these filters need to enqueue
16411 at least one frame for each input, so they cannot work in case one
16412 input is not yet terminated and will not receive incoming frames.
16413
16414 For example consider the case when one input is a @code{select} filter
16415 which always drops input frames. The @code{interleave} filter will keep
16416 reading from that input, but it will never be able to send new frames
16417 to output until the input sends an end-of-stream signal.
16418
16419 Also, depending on inputs synchronization, the filters will drop
16420 frames in case one input receives more frames than the other ones, and
16421 the queue is already filled.
16422
16423 These filters accept the following options:
16424
16425 @table @option
16426 @item nb_inputs, n
16427 Set the number of different inputs, it is 2 by default.
16428 @end table
16429
16430 @subsection Examples
16431
16432 @itemize
16433 @item
16434 Interleave frames belonging to different streams using @command{ffmpeg}:
16435 @example
16436 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
16437 @end example
16438
16439 @item
16440 Add flickering blur effect:
16441 @example
16442 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
16443 @end example
16444 @end itemize
16445
16446 @section metadata, ametadata
16447
16448 Manipulate frame metadata.
16449
16450 This filter accepts the following options:
16451
16452 @table @option
16453 @item mode
16454 Set mode of operation of the filter.
16455
16456 Can be one of the following:
16457
16458 @table @samp
16459 @item select
16460 If both @code{value} and @code{key} is set, select frames
16461 which have such metadata. If only @code{key} is set, select
16462 every frame that has such key in metadata.
16463
16464 @item add
16465 Add new metadata @code{key} and @code{value}. If key is already available
16466 do nothing.
16467
16468 @item modify
16469 Modify value of already present key.
16470
16471 @item delete
16472 If @code{value} is set, delete only keys that have such value.
16473 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
16474 the frame.
16475
16476 @item print
16477 Print key and its value if metadata was found. If @code{key} is not set print all
16478 metadata values available in frame.
16479 @end table
16480
16481 @item key
16482 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
16483
16484 @item value
16485 Set metadata value which will be used. This option is mandatory for
16486 @code{modify} and @code{add} mode.
16487
16488 @item function
16489 Which function to use when comparing metadata value and @code{value}.
16490
16491 Can be one of following:
16492
16493 @table @samp
16494 @item same_str
16495 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
16496
16497 @item starts_with
16498 Values are interpreted as strings, returns true if metadata value starts with
16499 the @code{value} option string.
16500
16501 @item less
16502 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
16503
16504 @item equal
16505 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
16506
16507 @item greater
16508 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
16509
16510 @item expr
16511 Values are interpreted as floats, returns true if expression from option @code{expr}
16512 evaluates to true.
16513 @end table
16514
16515 @item expr
16516 Set expression which is used when @code{function} is set to @code{expr}.
16517 The expression is evaluated through the eval API and can contain the following
16518 constants:
16519
16520 @table @option
16521 @item VALUE1
16522 Float representation of @code{value} from metadata key.
16523
16524 @item VALUE2
16525 Float representation of @code{value} as supplied by user in @code{value} option.
16526 @end table
16527
16528 @item file
16529 If specified in @code{print} mode, output is written to the named file. Instead of
16530 plain filename any writable url can be specified. Filename ``-'' is a shorthand
16531 for standard output. If @code{file} option is not set, output is written to the log
16532 with AV_LOG_INFO loglevel.
16533
16534 @end table
16535
16536 @subsection Examples
16537
16538 @itemize
16539 @item
16540 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
16541 between 0 and 1.
16542 @example
16543 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
16544 @end example
16545 @item
16546 Print silencedetect output to file @file{metadata.txt}.
16547 @example
16548 silencedetect,ametadata=mode=print:file=metadata.txt
16549 @end example
16550 @item
16551 Direct all metadata to a pipe with file descriptor 4.
16552 @example
16553 metadata=mode=print:file='pipe\:4'
16554 @end example
16555 @end itemize
16556
16557 @section perms, aperms
16558
16559 Set read/write permissions for the output frames.
16560
16561 These filters are mainly aimed at developers to test direct path in the
16562 following filter in the filtergraph.
16563
16564 The filters accept the following options:
16565
16566 @table @option
16567 @item mode
16568 Select the permissions mode.
16569
16570 It accepts the following values:
16571 @table @samp
16572 @item none
16573 Do nothing. This is the default.
16574 @item ro
16575 Set all the output frames read-only.
16576 @item rw
16577 Set all the output frames directly writable.
16578 @item toggle
16579 Make the frame read-only if writable, and writable if read-only.
16580 @item random
16581 Set each output frame read-only or writable randomly.
16582 @end table
16583
16584 @item seed
16585 Set the seed for the @var{random} mode, must be an integer included between
16586 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16587 @code{-1}, the filter will try to use a good random seed on a best effort
16588 basis.
16589 @end table
16590
16591 Note: in case of auto-inserted filter between the permission filter and the
16592 following one, the permission might not be received as expected in that
16593 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
16594 perms/aperms filter can avoid this problem.
16595
16596 @section realtime, arealtime
16597
16598 Slow down filtering to match real time approximatively.
16599
16600 These filters will pause the filtering for a variable amount of time to
16601 match the output rate with the input timestamps.
16602 They are similar to the @option{re} option to @code{ffmpeg}.
16603
16604 They accept the following options:
16605
16606 @table @option
16607 @item limit
16608 Time limit for the pauses. Any pause longer than that will be considered
16609 a timestamp discontinuity and reset the timer. Default is 2 seconds.
16610 @end table
16611
16612 @anchor{select}
16613 @section select, aselect
16614
16615 Select frames to pass in output.
16616
16617 This filter accepts the following options:
16618
16619 @table @option
16620
16621 @item expr, e
16622 Set expression, which is evaluated for each input frame.
16623
16624 If the expression is evaluated to zero, the frame is discarded.
16625
16626 If the evaluation result is negative or NaN, the frame is sent to the
16627 first output; otherwise it is sent to the output with index
16628 @code{ceil(val)-1}, assuming that the input index starts from 0.
16629
16630 For example a value of @code{1.2} corresponds to the output with index
16631 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
16632
16633 @item outputs, n
16634 Set the number of outputs. The output to which to send the selected
16635 frame is based on the result of the evaluation. Default value is 1.
16636 @end table
16637
16638 The expression can contain the following constants:
16639
16640 @table @option
16641 @item n
16642 The (sequential) number of the filtered frame, starting from 0.
16643
16644 @item selected_n
16645 The (sequential) number of the selected frame, starting from 0.
16646
16647 @item prev_selected_n
16648 The sequential number of the last selected frame. It's NAN if undefined.
16649
16650 @item TB
16651 The timebase of the input timestamps.
16652
16653 @item pts
16654 The PTS (Presentation TimeStamp) of the filtered video frame,
16655 expressed in @var{TB} units. It's NAN if undefined.
16656
16657 @item t
16658 The PTS of the filtered video frame,
16659 expressed in seconds. It's NAN if undefined.
16660
16661 @item prev_pts
16662 The PTS of the previously filtered video frame. It's NAN if undefined.
16663
16664 @item prev_selected_pts
16665 The PTS of the last previously filtered video frame. It's NAN if undefined.
16666
16667 @item prev_selected_t
16668 The PTS of the last previously selected video frame. It's NAN if undefined.
16669
16670 @item start_pts
16671 The PTS of the first video frame in the video. It's NAN if undefined.
16672
16673 @item start_t
16674 The time of the first video frame in the video. It's NAN if undefined.
16675
16676 @item pict_type @emph{(video only)}
16677 The type of the filtered frame. It can assume one of the following
16678 values:
16679 @table @option
16680 @item I
16681 @item P
16682 @item B
16683 @item S
16684 @item SI
16685 @item SP
16686 @item BI
16687 @end table
16688
16689 @item interlace_type @emph{(video only)}
16690 The frame interlace type. It can assume one of the following values:
16691 @table @option
16692 @item PROGRESSIVE
16693 The frame is progressive (not interlaced).
16694 @item TOPFIRST
16695 The frame is top-field-first.
16696 @item BOTTOMFIRST
16697 The frame is bottom-field-first.
16698 @end table
16699
16700 @item consumed_sample_n @emph{(audio only)}
16701 the number of selected samples before the current frame
16702
16703 @item samples_n @emph{(audio only)}
16704 the number of samples in the current frame
16705
16706 @item sample_rate @emph{(audio only)}
16707 the input sample rate
16708
16709 @item key
16710 This is 1 if the filtered frame is a key-frame, 0 otherwise.
16711
16712 @item pos
16713 the position in the file of the filtered frame, -1 if the information
16714 is not available (e.g. for synthetic video)
16715
16716 @item scene @emph{(video only)}
16717 value between 0 and 1 to indicate a new scene; a low value reflects a low
16718 probability for the current frame to introduce a new scene, while a higher
16719 value means the current frame is more likely to be one (see the example below)
16720
16721 @item concatdec_select
16722 The concat demuxer can select only part of a concat input file by setting an
16723 inpoint and an outpoint, but the output packets may not be entirely contained
16724 in the selected interval. By using this variable, it is possible to skip frames
16725 generated by the concat demuxer which are not exactly contained in the selected
16726 interval.
16727
16728 This works by comparing the frame pts against the @var{lavf.concat.start_time}
16729 and the @var{lavf.concat.duration} packet metadata values which are also
16730 present in the decoded frames.
16731
16732 The @var{concatdec_select} variable is -1 if the frame pts is at least
16733 start_time and either the duration metadata is missing or the frame pts is less
16734 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
16735 missing.
16736
16737 That basically means that an input frame is selected if its pts is within the
16738 interval set by the concat demuxer.
16739
16740 @end table
16741
16742 The default value of the select expression is "1".
16743
16744 @subsection Examples
16745
16746 @itemize
16747 @item
16748 Select all frames in input:
16749 @example
16750 select
16751 @end example
16752
16753 The example above is the same as:
16754 @example
16755 select=1
16756 @end example
16757
16758 @item
16759 Skip all frames:
16760 @example
16761 select=0
16762 @end example
16763
16764 @item
16765 Select only I-frames:
16766 @example
16767 select='eq(pict_type\,I)'
16768 @end example
16769
16770 @item
16771 Select one frame every 100:
16772 @example
16773 select='not(mod(n\,100))'
16774 @end example
16775
16776 @item
16777 Select only frames contained in the 10-20 time interval:
16778 @example
16779 select=between(t\,10\,20)
16780 @end example
16781
16782 @item
16783 Select only I-frames contained in the 10-20 time interval:
16784 @example
16785 select=between(t\,10\,20)*eq(pict_type\,I)
16786 @end example
16787
16788 @item
16789 Select frames with a minimum distance of 10 seconds:
16790 @example
16791 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
16792 @end example
16793
16794 @item
16795 Use aselect to select only audio frames with samples number > 100:
16796 @example
16797 aselect='gt(samples_n\,100)'
16798 @end example
16799
16800 @item
16801 Create a mosaic of the first scenes:
16802 @example
16803 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
16804 @end example
16805
16806 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
16807 choice.
16808
16809 @item
16810 Send even and odd frames to separate outputs, and compose them:
16811 @example
16812 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
16813 @end example
16814
16815 @item
16816 Select useful frames from an ffconcat file which is using inpoints and
16817 outpoints but where the source files are not intra frame only.
16818 @example
16819 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
16820 @end example
16821 @end itemize
16822
16823 @section sendcmd, asendcmd
16824
16825 Send commands to filters in the filtergraph.
16826
16827 These filters read commands to be sent to other filters in the
16828 filtergraph.
16829
16830 @code{sendcmd} must be inserted between two video filters,
16831 @code{asendcmd} must be inserted between two audio filters, but apart
16832 from that they act the same way.
16833
16834 The specification of commands can be provided in the filter arguments
16835 with the @var{commands} option, or in a file specified by the
16836 @var{filename} option.
16837
16838 These filters accept the following options:
16839 @table @option
16840 @item commands, c
16841 Set the commands to be read and sent to the other filters.
16842 @item filename, f
16843 Set the filename of the commands to be read and sent to the other
16844 filters.
16845 @end table
16846
16847 @subsection Commands syntax
16848
16849 A commands description consists of a sequence of interval
16850 specifications, comprising a list of commands to be executed when a
16851 particular event related to that interval occurs. The occurring event
16852 is typically the current frame time entering or leaving a given time
16853 interval.
16854
16855 An interval is specified by the following syntax:
16856 @example
16857 @var{START}[-@var{END}] @var{COMMANDS};
16858 @end example
16859
16860 The time interval is specified by the @var{START} and @var{END} times.
16861 @var{END} is optional and defaults to the maximum time.
16862
16863 The current frame time is considered within the specified interval if
16864 it is included in the interval [@var{START}, @var{END}), that is when
16865 the time is greater or equal to @var{START} and is lesser than
16866 @var{END}.
16867
16868 @var{COMMANDS} consists of a sequence of one or more command
16869 specifications, separated by ",", relating to that interval.  The
16870 syntax of a command specification is given by:
16871 @example
16872 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
16873 @end example
16874
16875 @var{FLAGS} is optional and specifies the type of events relating to
16876 the time interval which enable sending the specified command, and must
16877 be a non-null sequence of identifier flags separated by "+" or "|" and
16878 enclosed between "[" and "]".
16879
16880 The following flags are recognized:
16881 @table @option
16882 @item enter
16883 The command is sent when the current frame timestamp enters the
16884 specified interval. In other words, the command is sent when the
16885 previous frame timestamp was not in the given interval, and the
16886 current is.
16887
16888 @item leave
16889 The command is sent when the current frame timestamp leaves the
16890 specified interval. In other words, the command is sent when the
16891 previous frame timestamp was in the given interval, and the
16892 current is not.
16893 @end table
16894
16895 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
16896 assumed.
16897
16898 @var{TARGET} specifies the target of the command, usually the name of
16899 the filter class or a specific filter instance name.
16900
16901 @var{COMMAND} specifies the name of the command for the target filter.
16902
16903 @var{ARG} is optional and specifies the optional list of argument for
16904 the given @var{COMMAND}.
16905
16906 Between one interval specification and another, whitespaces, or
16907 sequences of characters starting with @code{#} until the end of line,
16908 are ignored and can be used to annotate comments.
16909
16910 A simplified BNF description of the commands specification syntax
16911 follows:
16912 @example
16913 @var{COMMAND_FLAG}  ::= "enter" | "leave"
16914 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
16915 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
16916 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
16917 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
16918 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
16919 @end example
16920
16921 @subsection Examples
16922
16923 @itemize
16924 @item
16925 Specify audio tempo change at second 4:
16926 @example
16927 asendcmd=c='4.0 atempo tempo 1.5',atempo
16928 @end example
16929
16930 @item
16931 Specify a list of drawtext and hue commands in a file.
16932 @example
16933 # show text in the interval 5-10
16934 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
16935          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
16936
16937 # desaturate the image in the interval 15-20
16938 15.0-20.0 [enter] hue s 0,
16939           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
16940           [leave] hue s 1,
16941           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
16942
16943 # apply an exponential saturation fade-out effect, starting from time 25
16944 25 [enter] hue s exp(25-t)
16945 @end example
16946
16947 A filtergraph allowing to read and process the above command list
16948 stored in a file @file{test.cmd}, can be specified with:
16949 @example
16950 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
16951 @end example
16952 @end itemize
16953
16954 @anchor{setpts}
16955 @section setpts, asetpts
16956
16957 Change the PTS (presentation timestamp) of the input frames.
16958
16959 @code{setpts} works on video frames, @code{asetpts} on audio frames.
16960
16961 This filter accepts the following options:
16962
16963 @table @option
16964
16965 @item expr
16966 The expression which is evaluated for each frame to construct its timestamp.
16967
16968 @end table
16969
16970 The expression is evaluated through the eval API and can contain the following
16971 constants:
16972
16973 @table @option
16974 @item FRAME_RATE
16975 frame rate, only defined for constant frame-rate video
16976
16977 @item PTS
16978 The presentation timestamp in input
16979
16980 @item N
16981 The count of the input frame for video or the number of consumed samples,
16982 not including the current frame for audio, starting from 0.
16983
16984 @item NB_CONSUMED_SAMPLES
16985 The number of consumed samples, not including the current frame (only
16986 audio)
16987
16988 @item NB_SAMPLES, S
16989 The number of samples in the current frame (only audio)
16990
16991 @item SAMPLE_RATE, SR
16992 The audio sample rate.
16993
16994 @item STARTPTS
16995 The PTS of the first frame.
16996
16997 @item STARTT
16998 the time in seconds of the first frame
16999
17000 @item INTERLACED
17001 State whether the current frame is interlaced.
17002
17003 @item T
17004 the time in seconds of the current frame
17005
17006 @item POS
17007 original position in the file of the frame, or undefined if undefined
17008 for the current frame
17009
17010 @item PREV_INPTS
17011 The previous input PTS.
17012
17013 @item PREV_INT
17014 previous input time in seconds
17015
17016 @item PREV_OUTPTS
17017 The previous output PTS.
17018
17019 @item PREV_OUTT
17020 previous output time in seconds
17021
17022 @item RTCTIME
17023 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
17024 instead.
17025
17026 @item RTCSTART
17027 The wallclock (RTC) time at the start of the movie in microseconds.
17028
17029 @item TB
17030 The timebase of the input timestamps.
17031
17032 @end table
17033
17034 @subsection Examples
17035
17036 @itemize
17037 @item
17038 Start counting PTS from zero
17039 @example
17040 setpts=PTS-STARTPTS
17041 @end example
17042
17043 @item
17044 Apply fast motion effect:
17045 @example
17046 setpts=0.5*PTS
17047 @end example
17048
17049 @item
17050 Apply slow motion effect:
17051 @example
17052 setpts=2.0*PTS
17053 @end example
17054
17055 @item
17056 Set fixed rate of 25 frames per second:
17057 @example
17058 setpts=N/(25*TB)
17059 @end example
17060
17061 @item
17062 Set fixed rate 25 fps with some jitter:
17063 @example
17064 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
17065 @end example
17066
17067 @item
17068 Apply an offset of 10 seconds to the input PTS:
17069 @example
17070 setpts=PTS+10/TB
17071 @end example
17072
17073 @item
17074 Generate timestamps from a "live source" and rebase onto the current timebase:
17075 @example
17076 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
17077 @end example
17078
17079 @item
17080 Generate timestamps by counting samples:
17081 @example
17082 asetpts=N/SR/TB
17083 @end example
17084
17085 @end itemize
17086
17087 @section settb, asettb
17088
17089 Set the timebase to use for the output frames timestamps.
17090 It is mainly useful for testing timebase configuration.
17091
17092 It accepts the following parameters:
17093
17094 @table @option
17095
17096 @item expr, tb
17097 The expression which is evaluated into the output timebase.
17098
17099 @end table
17100
17101 The value for @option{tb} is an arithmetic expression representing a
17102 rational. The expression can contain the constants "AVTB" (the default
17103 timebase), "intb" (the input timebase) and "sr" (the sample rate,
17104 audio only). Default value is "intb".
17105
17106 @subsection Examples
17107
17108 @itemize
17109 @item
17110 Set the timebase to 1/25:
17111 @example
17112 settb=expr=1/25
17113 @end example
17114
17115 @item
17116 Set the timebase to 1/10:
17117 @example
17118 settb=expr=0.1
17119 @end example
17120
17121 @item
17122 Set the timebase to 1001/1000:
17123 @example
17124 settb=1+0.001
17125 @end example
17126
17127 @item
17128 Set the timebase to 2*intb:
17129 @example
17130 settb=2*intb
17131 @end example
17132
17133 @item
17134 Set the default timebase value:
17135 @example
17136 settb=AVTB
17137 @end example
17138 @end itemize
17139
17140 @section showcqt
17141 Convert input audio to a video output representing frequency spectrum
17142 logarithmically using Brown-Puckette constant Q transform algorithm with
17143 direct frequency domain coefficient calculation (but the transform itself
17144 is not really constant Q, instead the Q factor is actually variable/clamped),
17145 with musical tone scale, from E0 to D#10.
17146
17147 The filter accepts the following options:
17148
17149 @table @option
17150 @item size, s
17151 Specify the video size for the output. It must be even. For the syntax of this option,
17152 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17153 Default value is @code{1920x1080}.
17154
17155 @item fps, rate, r
17156 Set the output frame rate. Default value is @code{25}.
17157
17158 @item bar_h
17159 Set the bargraph height. It must be even. Default value is @code{-1} which
17160 computes the bargraph height automatically.
17161
17162 @item axis_h
17163 Set the axis height. It must be even. Default value is @code{-1} which computes
17164 the axis height automatically.
17165
17166 @item sono_h
17167 Set the sonogram height. It must be even. Default value is @code{-1} which
17168 computes the sonogram height automatically.
17169
17170 @item fullhd
17171 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
17172 instead. Default value is @code{1}.
17173
17174 @item sono_v, volume
17175 Specify the sonogram volume expression. It can contain variables:
17176 @table @option
17177 @item bar_v
17178 the @var{bar_v} evaluated expression
17179 @item frequency, freq, f
17180 the frequency where it is evaluated
17181 @item timeclamp, tc
17182 the value of @var{timeclamp} option
17183 @end table
17184 and functions:
17185 @table @option
17186 @item a_weighting(f)
17187 A-weighting of equal loudness
17188 @item b_weighting(f)
17189 B-weighting of equal loudness
17190 @item c_weighting(f)
17191 C-weighting of equal loudness.
17192 @end table
17193 Default value is @code{16}.
17194
17195 @item bar_v, volume2
17196 Specify the bargraph volume expression. It can contain variables:
17197 @table @option
17198 @item sono_v
17199 the @var{sono_v} evaluated expression
17200 @item frequency, freq, f
17201 the frequency where it is evaluated
17202 @item timeclamp, tc
17203 the value of @var{timeclamp} option
17204 @end table
17205 and functions:
17206 @table @option
17207 @item a_weighting(f)
17208 A-weighting of equal loudness
17209 @item b_weighting(f)
17210 B-weighting of equal loudness
17211 @item c_weighting(f)
17212 C-weighting of equal loudness.
17213 @end table
17214 Default value is @code{sono_v}.
17215
17216 @item sono_g, gamma
17217 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
17218 higher gamma makes the spectrum having more range. Default value is @code{3}.
17219 Acceptable range is @code{[1, 7]}.
17220
17221 @item bar_g, gamma2
17222 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
17223 @code{[1, 7]}.
17224
17225 @item bar_t
17226 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
17227 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
17228
17229 @item timeclamp, tc
17230 Specify the transform timeclamp. At low frequency, there is trade-off between
17231 accuracy in time domain and frequency domain. If timeclamp is lower,
17232 event in time domain is represented more accurately (such as fast bass drum),
17233 otherwise event in frequency domain is represented more accurately
17234 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
17235
17236 @item attack
17237 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
17238 limits future samples by applying asymmetric windowing in time domain, useful
17239 when low latency is required. Accepted range is @code{[0, 1]}.
17240
17241 @item basefreq
17242 Specify the transform base frequency. Default value is @code{20.01523126408007475},
17243 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
17244
17245 @item endfreq
17246 Specify the transform end frequency. Default value is @code{20495.59681441799654},
17247 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
17248
17249 @item coeffclamp
17250 This option is deprecated and ignored.
17251
17252 @item tlength
17253 Specify the transform length in time domain. Use this option to control accuracy
17254 trade-off between time domain and frequency domain at every frequency sample.
17255 It can contain variables:
17256 @table @option
17257 @item frequency, freq, f
17258 the frequency where it is evaluated
17259 @item timeclamp, tc
17260 the value of @var{timeclamp} option.
17261 @end table
17262 Default value is @code{384*tc/(384+tc*f)}.
17263
17264 @item count
17265 Specify the transform count for every video frame. Default value is @code{6}.
17266 Acceptable range is @code{[1, 30]}.
17267
17268 @item fcount
17269 Specify the transform count for every single pixel. Default value is @code{0},
17270 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
17271
17272 @item fontfile
17273 Specify font file for use with freetype to draw the axis. If not specified,
17274 use embedded font. Note that drawing with font file or embedded font is not
17275 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
17276 option instead.
17277
17278 @item font
17279 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
17280 The : in the pattern may be replaced by | to avoid unnecessary escaping.
17281
17282 @item fontcolor
17283 Specify font color expression. This is arithmetic expression that should return
17284 integer value 0xRRGGBB. It can contain variables:
17285 @table @option
17286 @item frequency, freq, f
17287 the frequency where it is evaluated
17288 @item timeclamp, tc
17289 the value of @var{timeclamp} option
17290 @end table
17291 and functions:
17292 @table @option
17293 @item midi(f)
17294 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
17295 @item r(x), g(x), b(x)
17296 red, green, and blue value of intensity x.
17297 @end table
17298 Default value is @code{st(0, (midi(f)-59.5)/12);
17299 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
17300 r(1-ld(1)) + b(ld(1))}.
17301
17302 @item axisfile
17303 Specify image file to draw the axis. This option override @var{fontfile} and
17304 @var{fontcolor} option.
17305
17306 @item axis, text
17307 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
17308 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
17309 Default value is @code{1}.
17310
17311 @item csp
17312 Set colorspace. The accepted values are:
17313 @table @samp
17314 @item unspecified
17315 Unspecified (default)
17316
17317 @item bt709
17318 BT.709
17319
17320 @item fcc
17321 FCC
17322
17323 @item bt470bg
17324 BT.470BG or BT.601-6 625
17325
17326 @item smpte170m
17327 SMPTE-170M or BT.601-6 525
17328
17329 @item smpte240m
17330 SMPTE-240M
17331
17332 @item bt2020ncl
17333 BT.2020 with non-constant luminance
17334
17335 @end table
17336
17337 @item cscheme
17338 Set spectrogram color scheme. This is list of floating point values with format
17339 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
17340 The default is @code{1|0.5|0|0|0.5|1}.
17341
17342 @end table
17343
17344 @subsection Examples
17345
17346 @itemize
17347 @item
17348 Playing audio while showing the spectrum:
17349 @example
17350 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
17351 @end example
17352
17353 @item
17354 Same as above, but with frame rate 30 fps:
17355 @example
17356 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
17357 @end example
17358
17359 @item
17360 Playing at 1280x720:
17361 @example
17362 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
17363 @end example
17364
17365 @item
17366 Disable sonogram display:
17367 @example
17368 sono_h=0
17369 @end example
17370
17371 @item
17372 A1 and its harmonics: A1, A2, (near)E3, A3:
17373 @example
17374 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),
17375                  asplit[a][out1]; [a] showcqt [out0]'
17376 @end example
17377
17378 @item
17379 Same as above, but with more accuracy in frequency domain:
17380 @example
17381 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),
17382                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
17383 @end example
17384
17385 @item
17386 Custom volume:
17387 @example
17388 bar_v=10:sono_v=bar_v*a_weighting(f)
17389 @end example
17390
17391 @item
17392 Custom gamma, now spectrum is linear to the amplitude.
17393 @example
17394 bar_g=2:sono_g=2
17395 @end example
17396
17397 @item
17398 Custom tlength equation:
17399 @example
17400 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)))'
17401 @end example
17402
17403 @item
17404 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
17405 @example
17406 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
17407 @end example
17408
17409 @item
17410 Custom font using fontconfig:
17411 @example
17412 font='Courier New,Monospace,mono|bold'
17413 @end example
17414
17415 @item
17416 Custom frequency range with custom axis using image file:
17417 @example
17418 axisfile=myaxis.png:basefreq=40:endfreq=10000
17419 @end example
17420 @end itemize
17421
17422 @section showfreqs
17423
17424 Convert input audio to video output representing the audio power spectrum.
17425 Audio amplitude is on Y-axis while frequency is on X-axis.
17426
17427 The filter accepts the following options:
17428
17429 @table @option
17430 @item size, s
17431 Specify size of video. For the syntax of this option, check the
17432 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17433 Default is @code{1024x512}.
17434
17435 @item mode
17436 Set display mode.
17437 This set how each frequency bin will be represented.
17438
17439 It accepts the following values:
17440 @table @samp
17441 @item line
17442 @item bar
17443 @item dot
17444 @end table
17445 Default is @code{bar}.
17446
17447 @item ascale
17448 Set amplitude scale.
17449
17450 It accepts the following values:
17451 @table @samp
17452 @item lin
17453 Linear scale.
17454
17455 @item sqrt
17456 Square root scale.
17457
17458 @item cbrt
17459 Cubic root scale.
17460
17461 @item log
17462 Logarithmic scale.
17463 @end table
17464 Default is @code{log}.
17465
17466 @item fscale
17467 Set frequency scale.
17468
17469 It accepts the following values:
17470 @table @samp
17471 @item lin
17472 Linear scale.
17473
17474 @item log
17475 Logarithmic scale.
17476
17477 @item rlog
17478 Reverse logarithmic scale.
17479 @end table
17480 Default is @code{lin}.
17481
17482 @item win_size
17483 Set window size.
17484
17485 It accepts the following values:
17486 @table @samp
17487 @item w16
17488 @item w32
17489 @item w64
17490 @item w128
17491 @item w256
17492 @item w512
17493 @item w1024
17494 @item w2048
17495 @item w4096
17496 @item w8192
17497 @item w16384
17498 @item w32768
17499 @item w65536
17500 @end table
17501 Default is @code{w2048}
17502
17503 @item win_func
17504 Set windowing function.
17505
17506 It accepts the following values:
17507 @table @samp
17508 @item rect
17509 @item bartlett
17510 @item hanning
17511 @item hamming
17512 @item blackman
17513 @item welch
17514 @item flattop
17515 @item bharris
17516 @item bnuttall
17517 @item bhann
17518 @item sine
17519 @item nuttall
17520 @item lanczos
17521 @item gauss
17522 @item tukey
17523 @item dolph
17524 @item cauchy
17525 @item parzen
17526 @item poisson
17527 @end table
17528 Default is @code{hanning}.
17529
17530 @item overlap
17531 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17532 which means optimal overlap for selected window function will be picked.
17533
17534 @item averaging
17535 Set time averaging. Setting this to 0 will display current maximal peaks.
17536 Default is @code{1}, which means time averaging is disabled.
17537
17538 @item colors
17539 Specify list of colors separated by space or by '|' which will be used to
17540 draw channel frequencies. Unrecognized or missing colors will be replaced
17541 by white color.
17542
17543 @item cmode
17544 Set channel display mode.
17545
17546 It accepts the following values:
17547 @table @samp
17548 @item combined
17549 @item separate
17550 @end table
17551 Default is @code{combined}.
17552
17553 @item minamp
17554 Set minimum amplitude used in @code{log} amplitude scaler.
17555
17556 @end table
17557
17558 @anchor{showspectrum}
17559 @section showspectrum
17560
17561 Convert input audio to a video output, representing the audio frequency
17562 spectrum.
17563
17564 The filter accepts the following options:
17565
17566 @table @option
17567 @item size, s
17568 Specify the video size for the output. For the syntax of this option, check the
17569 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17570 Default value is @code{640x512}.
17571
17572 @item slide
17573 Specify how the spectrum should slide along the window.
17574
17575 It accepts the following values:
17576 @table @samp
17577 @item replace
17578 the samples start again on the left when they reach the right
17579 @item scroll
17580 the samples scroll from right to left
17581 @item fullframe
17582 frames are only produced when the samples reach the right
17583 @item rscroll
17584 the samples scroll from left to right
17585 @end table
17586
17587 Default value is @code{replace}.
17588
17589 @item mode
17590 Specify display mode.
17591
17592 It accepts the following values:
17593 @table @samp
17594 @item combined
17595 all channels are displayed in the same row
17596 @item separate
17597 all channels are displayed in separate rows
17598 @end table
17599
17600 Default value is @samp{combined}.
17601
17602 @item color
17603 Specify display color mode.
17604
17605 It accepts the following values:
17606 @table @samp
17607 @item channel
17608 each channel is displayed in a separate color
17609 @item intensity
17610 each channel is displayed using the same color scheme
17611 @item rainbow
17612 each channel is displayed using the rainbow color scheme
17613 @item moreland
17614 each channel is displayed using the moreland color scheme
17615 @item nebulae
17616 each channel is displayed using the nebulae color scheme
17617 @item fire
17618 each channel is displayed using the fire color scheme
17619 @item fiery
17620 each channel is displayed using the fiery color scheme
17621 @item fruit
17622 each channel is displayed using the fruit color scheme
17623 @item cool
17624 each channel is displayed using the cool color scheme
17625 @end table
17626
17627 Default value is @samp{channel}.
17628
17629 @item scale
17630 Specify scale used for calculating intensity color values.
17631
17632 It accepts the following values:
17633 @table @samp
17634 @item lin
17635 linear
17636 @item sqrt
17637 square root, default
17638 @item cbrt
17639 cubic root
17640 @item log
17641 logarithmic
17642 @item 4thrt
17643 4th root
17644 @item 5thrt
17645 5th root
17646 @end table
17647
17648 Default value is @samp{sqrt}.
17649
17650 @item saturation
17651 Set saturation modifier for displayed colors. Negative values provide
17652 alternative color scheme. @code{0} is no saturation at all.
17653 Saturation must be in [-10.0, 10.0] range.
17654 Default value is @code{1}.
17655
17656 @item win_func
17657 Set window function.
17658
17659 It accepts the following values:
17660 @table @samp
17661 @item rect
17662 @item bartlett
17663 @item hann
17664 @item hanning
17665 @item hamming
17666 @item blackman
17667 @item welch
17668 @item flattop
17669 @item bharris
17670 @item bnuttall
17671 @item bhann
17672 @item sine
17673 @item nuttall
17674 @item lanczos
17675 @item gauss
17676 @item tukey
17677 @item dolph
17678 @item cauchy
17679 @item parzen
17680 @item poisson
17681 @end table
17682
17683 Default value is @code{hann}.
17684
17685 @item orientation
17686 Set orientation of time vs frequency axis. Can be @code{vertical} or
17687 @code{horizontal}. Default is @code{vertical}.
17688
17689 @item overlap
17690 Set ratio of overlap window. Default value is @code{0}.
17691 When value is @code{1} overlap is set to recommended size for specific
17692 window function currently used.
17693
17694 @item gain
17695 Set scale gain for calculating intensity color values.
17696 Default value is @code{1}.
17697
17698 @item data
17699 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
17700
17701 @item rotation
17702 Set color rotation, must be in [-1.0, 1.0] range.
17703 Default value is @code{0}.
17704 @end table
17705
17706 The usage is very similar to the showwaves filter; see the examples in that
17707 section.
17708
17709 @subsection Examples
17710
17711 @itemize
17712 @item
17713 Large window with logarithmic color scaling:
17714 @example
17715 showspectrum=s=1280x480:scale=log
17716 @end example
17717
17718 @item
17719 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
17720 @example
17721 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17722              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
17723 @end example
17724 @end itemize
17725
17726 @section showspectrumpic
17727
17728 Convert input audio to a single video frame, representing the audio frequency
17729 spectrum.
17730
17731 The filter accepts the following options:
17732
17733 @table @option
17734 @item size, s
17735 Specify the video size for the output. For the syntax of this option, check the
17736 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17737 Default value is @code{4096x2048}.
17738
17739 @item mode
17740 Specify display mode.
17741
17742 It accepts the following values:
17743 @table @samp
17744 @item combined
17745 all channels are displayed in the same row
17746 @item separate
17747 all channels are displayed in separate rows
17748 @end table
17749 Default value is @samp{combined}.
17750
17751 @item color
17752 Specify display color mode.
17753
17754 It accepts the following values:
17755 @table @samp
17756 @item channel
17757 each channel is displayed in a separate color
17758 @item intensity
17759 each channel is displayed using the same color scheme
17760 @item rainbow
17761 each channel is displayed using the rainbow color scheme
17762 @item moreland
17763 each channel is displayed using the moreland color scheme
17764 @item nebulae
17765 each channel is displayed using the nebulae color scheme
17766 @item fire
17767 each channel is displayed using the fire color scheme
17768 @item fiery
17769 each channel is displayed using the fiery color scheme
17770 @item fruit
17771 each channel is displayed using the fruit color scheme
17772 @item cool
17773 each channel is displayed using the cool color scheme
17774 @end table
17775 Default value is @samp{intensity}.
17776
17777 @item scale
17778 Specify scale used for calculating intensity color values.
17779
17780 It accepts the following values:
17781 @table @samp
17782 @item lin
17783 linear
17784 @item sqrt
17785 square root, default
17786 @item cbrt
17787 cubic root
17788 @item log
17789 logarithmic
17790 @item 4thrt
17791 4th root
17792 @item 5thrt
17793 5th root
17794 @end table
17795 Default value is @samp{log}.
17796
17797 @item saturation
17798 Set saturation modifier for displayed colors. Negative values provide
17799 alternative color scheme. @code{0} is no saturation at all.
17800 Saturation must be in [-10.0, 10.0] range.
17801 Default value is @code{1}.
17802
17803 @item win_func
17804 Set window function.
17805
17806 It accepts the following values:
17807 @table @samp
17808 @item rect
17809 @item bartlett
17810 @item hann
17811 @item hanning
17812 @item hamming
17813 @item blackman
17814 @item welch
17815 @item flattop
17816 @item bharris
17817 @item bnuttall
17818 @item bhann
17819 @item sine
17820 @item nuttall
17821 @item lanczos
17822 @item gauss
17823 @item tukey
17824 @item dolph
17825 @item cauchy
17826 @item parzen
17827 @item poisson
17828 @end table
17829 Default value is @code{hann}.
17830
17831 @item orientation
17832 Set orientation of time vs frequency axis. Can be @code{vertical} or
17833 @code{horizontal}. Default is @code{vertical}.
17834
17835 @item gain
17836 Set scale gain for calculating intensity color values.
17837 Default value is @code{1}.
17838
17839 @item legend
17840 Draw time and frequency axes and legends. Default is enabled.
17841
17842 @item rotation
17843 Set color rotation, must be in [-1.0, 1.0] range.
17844 Default value is @code{0}.
17845 @end table
17846
17847 @subsection Examples
17848
17849 @itemize
17850 @item
17851 Extract an audio spectrogram of a whole audio track
17852 in a 1024x1024 picture using @command{ffmpeg}:
17853 @example
17854 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
17855 @end example
17856 @end itemize
17857
17858 @section showvolume
17859
17860 Convert input audio volume to a video output.
17861
17862 The filter accepts the following options:
17863
17864 @table @option
17865 @item rate, r
17866 Set video rate.
17867
17868 @item b
17869 Set border width, allowed range is [0, 5]. Default is 1.
17870
17871 @item w
17872 Set channel width, allowed range is [80, 8192]. Default is 400.
17873
17874 @item h
17875 Set channel height, allowed range is [1, 900]. Default is 20.
17876
17877 @item f
17878 Set fade, allowed range is [0.001, 1]. Default is 0.95.
17879
17880 @item c
17881 Set volume color expression.
17882
17883 The expression can use the following variables:
17884
17885 @table @option
17886 @item VOLUME
17887 Current max volume of channel in dB.
17888
17889 @item PEAK
17890 Current peak.
17891
17892 @item CHANNEL
17893 Current channel number, starting from 0.
17894 @end table
17895
17896 @item t
17897 If set, displays channel names. Default is enabled.
17898
17899 @item v
17900 If set, displays volume values. Default is enabled.
17901
17902 @item o
17903 Set orientation, can be @code{horizontal} or @code{vertical},
17904 default is @code{horizontal}.
17905
17906 @item s
17907 Set step size, allowed range s [0, 5]. Default is 0, which means
17908 step is disabled.
17909 @end table
17910
17911 @section showwaves
17912
17913 Convert input audio to a video output, representing the samples waves.
17914
17915 The filter accepts the following options:
17916
17917 @table @option
17918 @item size, s
17919 Specify the video size for the output. For the syntax of this option, check the
17920 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17921 Default value is @code{600x240}.
17922
17923 @item mode
17924 Set display mode.
17925
17926 Available values are:
17927 @table @samp
17928 @item point
17929 Draw a point for each sample.
17930
17931 @item line
17932 Draw a vertical line for each sample.
17933
17934 @item p2p
17935 Draw a point for each sample and a line between them.
17936
17937 @item cline
17938 Draw a centered vertical line for each sample.
17939 @end table
17940
17941 Default value is @code{point}.
17942
17943 @item n
17944 Set the number of samples which are printed on the same column. A
17945 larger value will decrease the frame rate. Must be a positive
17946 integer. This option can be set only if the value for @var{rate}
17947 is not explicitly specified.
17948
17949 @item rate, r
17950 Set the (approximate) output frame rate. This is done by setting the
17951 option @var{n}. Default value is "25".
17952
17953 @item split_channels
17954 Set if channels should be drawn separately or overlap. Default value is 0.
17955
17956 @item colors
17957 Set colors separated by '|' which are going to be used for drawing of each channel.
17958
17959 @item scale
17960 Set amplitude scale.
17961
17962 Available values are:
17963 @table @samp
17964 @item lin
17965 Linear.
17966
17967 @item log
17968 Logarithmic.
17969
17970 @item sqrt
17971 Square root.
17972
17973 @item cbrt
17974 Cubic root.
17975 @end table
17976
17977 Default is linear.
17978 @end table
17979
17980 @subsection Examples
17981
17982 @itemize
17983 @item
17984 Output the input file audio and the corresponding video representation
17985 at the same time:
17986 @example
17987 amovie=a.mp3,asplit[out0],showwaves[out1]
17988 @end example
17989
17990 @item
17991 Create a synthetic signal and show it with showwaves, forcing a
17992 frame rate of 30 frames per second:
17993 @example
17994 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
17995 @end example
17996 @end itemize
17997
17998 @section showwavespic
17999
18000 Convert input audio to a single video frame, representing the samples waves.
18001
18002 The filter accepts the following options:
18003
18004 @table @option
18005 @item size, s
18006 Specify the video size for the output. For the syntax of this option, check the
18007 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18008 Default value is @code{600x240}.
18009
18010 @item split_channels
18011 Set if channels should be drawn separately or overlap. Default value is 0.
18012
18013 @item colors
18014 Set colors separated by '|' which are going to be used for drawing of each channel.
18015
18016 @item scale
18017 Set amplitude scale.
18018
18019 Available values are:
18020 @table @samp
18021 @item lin
18022 Linear.
18023
18024 @item log
18025 Logarithmic.
18026
18027 @item sqrt
18028 Square root.
18029
18030 @item cbrt
18031 Cubic root.
18032 @end table
18033
18034 Default is linear.
18035 @end table
18036
18037 @subsection Examples
18038
18039 @itemize
18040 @item
18041 Extract a channel split representation of the wave form of a whole audio track
18042 in a 1024x800 picture using @command{ffmpeg}:
18043 @example
18044 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
18045 @end example
18046 @end itemize
18047
18048 @section sidedata, asidedata
18049
18050 Delete frame side data, or select frames based on it.
18051
18052 This filter accepts the following options:
18053
18054 @table @option
18055 @item mode
18056 Set mode of operation of the filter.
18057
18058 Can be one of the following:
18059
18060 @table @samp
18061 @item select
18062 Select every frame with side data of @code{type}.
18063
18064 @item delete
18065 Delete side data of @code{type}. If @code{type} is not set, delete all side
18066 data in the frame.
18067
18068 @end table
18069
18070 @item type
18071 Set side data type used with all modes. Must be set for @code{select} mode. For
18072 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
18073 in @file{libavutil/frame.h}. For example, to choose
18074 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
18075
18076 @end table
18077
18078 @section spectrumsynth
18079
18080 Sythesize audio from 2 input video spectrums, first input stream represents
18081 magnitude across time and second represents phase across time.
18082 The filter will transform from frequency domain as displayed in videos back
18083 to time domain as presented in audio output.
18084
18085 This filter is primarily created for reversing processed @ref{showspectrum}
18086 filter outputs, but can synthesize sound from other spectrograms too.
18087 But in such case results are going to be poor if the phase data is not
18088 available, because in such cases phase data need to be recreated, usually
18089 its just recreated from random noise.
18090 For best results use gray only output (@code{channel} color mode in
18091 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
18092 @code{lin} scale for phase video. To produce phase, for 2nd video, use
18093 @code{data} option. Inputs videos should generally use @code{fullframe}
18094 slide mode as that saves resources needed for decoding video.
18095
18096 The filter accepts the following options:
18097
18098 @table @option
18099 @item sample_rate
18100 Specify sample rate of output audio, the sample rate of audio from which
18101 spectrum was generated may differ.
18102
18103 @item channels
18104 Set number of channels represented in input video spectrums.
18105
18106 @item scale
18107 Set scale which was used when generating magnitude input spectrum.
18108 Can be @code{lin} or @code{log}. Default is @code{log}.
18109
18110 @item slide
18111 Set slide which was used when generating inputs spectrums.
18112 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
18113 Default is @code{fullframe}.
18114
18115 @item win_func
18116 Set window function used for resynthesis.
18117
18118 @item overlap
18119 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
18120 which means optimal overlap for selected window function will be picked.
18121
18122 @item orientation
18123 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
18124 Default is @code{vertical}.
18125 @end table
18126
18127 @subsection Examples
18128
18129 @itemize
18130 @item
18131 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
18132 then resynthesize videos back to audio with spectrumsynth:
18133 @example
18134 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
18135 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
18136 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
18137 @end example
18138 @end itemize
18139
18140 @section split, asplit
18141
18142 Split input into several identical outputs.
18143
18144 @code{asplit} works with audio input, @code{split} with video.
18145
18146 The filter accepts a single parameter which specifies the number of outputs. If
18147 unspecified, it defaults to 2.
18148
18149 @subsection Examples
18150
18151 @itemize
18152 @item
18153 Create two separate outputs from the same input:
18154 @example
18155 [in] split [out0][out1]
18156 @end example
18157
18158 @item
18159 To create 3 or more outputs, you need to specify the number of
18160 outputs, like in:
18161 @example
18162 [in] asplit=3 [out0][out1][out2]
18163 @end example
18164
18165 @item
18166 Create two separate outputs from the same input, one cropped and
18167 one padded:
18168 @example
18169 [in] split [splitout1][splitout2];
18170 [splitout1] crop=100:100:0:0    [cropout];
18171 [splitout2] pad=200:200:100:100 [padout];
18172 @end example
18173
18174 @item
18175 Create 5 copies of the input audio with @command{ffmpeg}:
18176 @example
18177 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
18178 @end example
18179 @end itemize
18180
18181 @section zmq, azmq
18182
18183 Receive commands sent through a libzmq client, and forward them to
18184 filters in the filtergraph.
18185
18186 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
18187 must be inserted between two video filters, @code{azmq} between two
18188 audio filters.
18189
18190 To enable these filters you need to install the libzmq library and
18191 headers and configure FFmpeg with @code{--enable-libzmq}.
18192
18193 For more information about libzmq see:
18194 @url{http://www.zeromq.org/}
18195
18196 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
18197 receives messages sent through a network interface defined by the
18198 @option{bind_address} option.
18199
18200 The received message must be in the form:
18201 @example
18202 @var{TARGET} @var{COMMAND} [@var{ARG}]
18203 @end example
18204
18205 @var{TARGET} specifies the target of the command, usually the name of
18206 the filter class or a specific filter instance name.
18207
18208 @var{COMMAND} specifies the name of the command for the target filter.
18209
18210 @var{ARG} is optional and specifies the optional argument list for the
18211 given @var{COMMAND}.
18212
18213 Upon reception, the message is processed and the corresponding command
18214 is injected into the filtergraph. Depending on the result, the filter
18215 will send a reply to the client, adopting the format:
18216 @example
18217 @var{ERROR_CODE} @var{ERROR_REASON}
18218 @var{MESSAGE}
18219 @end example
18220
18221 @var{MESSAGE} is optional.
18222
18223 @subsection Examples
18224
18225 Look at @file{tools/zmqsend} for an example of a zmq client which can
18226 be used to send commands processed by these filters.
18227
18228 Consider the following filtergraph generated by @command{ffplay}
18229 @example
18230 ffplay -dumpgraph 1 -f lavfi "
18231 color=s=100x100:c=red  [l];
18232 color=s=100x100:c=blue [r];
18233 nullsrc=s=200x100, zmq [bg];
18234 [bg][l]   overlay      [bg+l];
18235 [bg+l][r] overlay=x=100 "
18236 @end example
18237
18238 To change the color of the left side of the video, the following
18239 command can be used:
18240 @example
18241 echo Parsed_color_0 c yellow | tools/zmqsend
18242 @end example
18243
18244 To change the right side:
18245 @example
18246 echo Parsed_color_1 c pink | tools/zmqsend
18247 @end example
18248
18249 @c man end MULTIMEDIA FILTERS
18250
18251 @chapter Multimedia Sources
18252 @c man begin MULTIMEDIA SOURCES
18253
18254 Below is a description of the currently available multimedia sources.
18255
18256 @section amovie
18257
18258 This is the same as @ref{movie} source, except it selects an audio
18259 stream by default.
18260
18261 @anchor{movie}
18262 @section movie
18263
18264 Read audio and/or video stream(s) from a movie container.
18265
18266 It accepts the following parameters:
18267
18268 @table @option
18269 @item filename
18270 The name of the resource to read (not necessarily a file; it can also be a
18271 device or a stream accessed through some protocol).
18272
18273 @item format_name, f
18274 Specifies the format assumed for the movie to read, and can be either
18275 the name of a container or an input device. If not specified, the
18276 format is guessed from @var{movie_name} or by probing.
18277
18278 @item seek_point, sp
18279 Specifies the seek point in seconds. The frames will be output
18280 starting from this seek point. The parameter is evaluated with
18281 @code{av_strtod}, so the numerical value may be suffixed by an IS
18282 postfix. The default value is "0".
18283
18284 @item streams, s
18285 Specifies the streams to read. Several streams can be specified,
18286 separated by "+". The source will then have as many outputs, in the
18287 same order. The syntax is explained in the ``Stream specifiers''
18288 section in the ffmpeg manual. Two special names, "dv" and "da" specify
18289 respectively the default (best suited) video and audio stream. Default
18290 is "dv", or "da" if the filter is called as "amovie".
18291
18292 @item stream_index, si
18293 Specifies the index of the video stream to read. If the value is -1,
18294 the most suitable video stream will be automatically selected. The default
18295 value is "-1". Deprecated. If the filter is called "amovie", it will select
18296 audio instead of video.
18297
18298 @item loop
18299 Specifies how many times to read the stream in sequence.
18300 If the value is 0, the stream will be looped infinitely.
18301 Default value is "1".
18302
18303 Note that when the movie is looped the source timestamps are not
18304 changed, so it will generate non monotonically increasing timestamps.
18305
18306 @item discontinuity
18307 Specifies the time difference between frames above which the point is
18308 considered a timestamp discontinuity which is removed by adjusting the later
18309 timestamps.
18310 @end table
18311
18312 It allows overlaying a second video on top of the main input of
18313 a filtergraph, as shown in this graph:
18314 @example
18315 input -----------> deltapts0 --> overlay --> output
18316                                     ^
18317                                     |
18318 movie --> scale--> deltapts1 -------+
18319 @end example
18320 @subsection Examples
18321
18322 @itemize
18323 @item
18324 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
18325 on top of the input labelled "in":
18326 @example
18327 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
18328 [in] setpts=PTS-STARTPTS [main];
18329 [main][over] overlay=16:16 [out]
18330 @end example
18331
18332 @item
18333 Read from a video4linux2 device, and overlay it on top of the input
18334 labelled "in":
18335 @example
18336 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
18337 [in] setpts=PTS-STARTPTS [main];
18338 [main][over] overlay=16:16 [out]
18339 @end example
18340
18341 @item
18342 Read the first video stream and the audio stream with id 0x81 from
18343 dvd.vob; the video is connected to the pad named "video" and the audio is
18344 connected to the pad named "audio":
18345 @example
18346 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
18347 @end example
18348 @end itemize
18349
18350 @subsection Commands
18351
18352 Both movie and amovie support the following commands:
18353 @table @option
18354 @item seek
18355 Perform seek using "av_seek_frame".
18356 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
18357 @itemize
18358 @item
18359 @var{stream_index}: If stream_index is -1, a default
18360 stream is selected, and @var{timestamp} is automatically converted
18361 from AV_TIME_BASE units to the stream specific time_base.
18362 @item
18363 @var{timestamp}: Timestamp in AVStream.time_base units
18364 or, if no stream is specified, in AV_TIME_BASE units.
18365 @item
18366 @var{flags}: Flags which select direction and seeking mode.
18367 @end itemize
18368
18369 @item get_duration
18370 Get movie duration in AV_TIME_BASE units.
18371
18372 @end table
18373
18374 @c man end MULTIMEDIA SOURCES