]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
doc/filters: document tukey window on firequalizer
[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 @c man end FILTERGRAPH DESCRIPTION
310
311 @chapter Audio Filters
312 @c man begin AUDIO FILTERS
313
314 When you configure your FFmpeg build, you can disable any of the
315 existing filters using @code{--disable-filters}.
316 The configure output will show the audio filters included in your
317 build.
318
319 Below is a description of the currently available audio filters.
320
321 @section acompressor
322
323 A compressor is mainly used to reduce the dynamic range of a signal.
324 Especially modern music is mostly compressed at a high ratio to
325 improve the overall loudness. It's done to get the highest attention
326 of a listener, "fatten" the sound and bring more "power" to the track.
327 If a signal is compressed too much it may sound dull or "dead"
328 afterwards or it may start to "pump" (which could be a powerful effect
329 but can also destroy a track completely).
330 The right compression is the key to reach a professional sound and is
331 the high art of mixing and mastering. Because of its complex settings
332 it may take a long time to get the right feeling for this kind of effect.
333
334 Compression is done by detecting the volume above a chosen level
335 @code{threshold} and dividing it by the factor set with @code{ratio}.
336 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
337 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
338 the signal would cause distortion of the waveform the reduction can be
339 levelled over the time. This is done by setting "Attack" and "Release".
340 @code{attack} determines how long the signal has to rise above the threshold
341 before any reduction will occur and @code{release} sets the time the signal
342 has to fall below the threshold to reduce the reduction again. Shorter signals
343 than the chosen attack time will be left untouched.
344 The overall reduction of the signal can be made up afterwards with the
345 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
346 raising the makeup to this level results in a signal twice as loud than the
347 source. To gain a softer entry in the compression the @code{knee} flattens the
348 hard edge at the threshold in the range of the chosen decibels.
349
350 The filter accepts the following options:
351
352 @table @option
353 @item level_in
354 Set input gain. Default is 1. Range is between 0.015625 and 64.
355
356 @item threshold
357 If a signal of second stream rises above this level it will affect the gain
358 reduction of the first stream.
359 By default it is 0.125. Range is between 0.00097563 and 1.
360
361 @item ratio
362 Set a ratio by which the signal is reduced. 1:2 means that if the level
363 rose 4dB above the threshold, it will be only 2dB above after the reduction.
364 Default is 2. Range is between 1 and 20.
365
366 @item attack
367 Amount of milliseconds the signal has to rise above the threshold before gain
368 reduction starts. Default is 20. Range is between 0.01 and 2000.
369
370 @item release
371 Amount of milliseconds the signal has to fall below the threshold before
372 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
373
374 @item makeup
375 Set the amount by how much signal will be amplified after processing.
376 Default is 2. Range is from 1 and 64.
377
378 @item knee
379 Curve the sharp knee around the threshold to enter gain reduction more softly.
380 Default is 2.82843. Range is between 1 and 8.
381
382 @item link
383 Choose if the @code{average} level between all channels of input stream
384 or the louder(@code{maximum}) channel of input stream affects the
385 reduction. Default is @code{average}.
386
387 @item detection
388 Should the exact signal be taken in case of @code{peak} or an RMS one in case
389 of @code{rms}. Default is @code{rms} which is mostly smoother.
390
391 @item mix
392 How much to use compressed signal in output. Default is 1.
393 Range is between 0 and 1.
394 @end table
395
396 @section acrossfade
397
398 Apply cross fade from one input audio stream to another input audio stream.
399 The cross fade is applied for specified duration near the end of first stream.
400
401 The filter accepts the following options:
402
403 @table @option
404 @item nb_samples, ns
405 Specify the number of samples for which the cross fade effect has to last.
406 At the end of the cross fade effect the first input audio will be completely
407 silent. Default is 44100.
408
409 @item duration, d
410 Specify the duration of the cross fade effect. See
411 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
412 for the accepted syntax.
413 By default the duration is determined by @var{nb_samples}.
414 If set this option is used instead of @var{nb_samples}.
415
416 @item overlap, o
417 Should first stream end overlap with second stream start. Default is enabled.
418
419 @item curve1
420 Set curve for cross fade transition for first stream.
421
422 @item curve2
423 Set curve for cross fade transition for second stream.
424
425 For description of available curve types see @ref{afade} filter description.
426 @end table
427
428 @subsection Examples
429
430 @itemize
431 @item
432 Cross fade from one input to another:
433 @example
434 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
435 @end example
436
437 @item
438 Cross fade from one input to another but without overlapping:
439 @example
440 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
441 @end example
442 @end itemize
443
444 @section acrusher
445
446 Reduce audio bit resolution.
447
448 This filter is bit crusher with enhanced functionality. A bit crusher
449 is used to audibly reduce number of bits an audio signal is sampled
450 with. This doesn't change the bit depth at all, it just produces the
451 effect. Material reduced in bit depth sounds more harsh and "digital".
452 This filter is able to even round to continous values instead of discrete
453 bit depths.
454 Additionally it has a D/C offset which results in different crushing of
455 the lower and the upper half of the signal.
456 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
457
458 Another feature of this filter is the logarithmic mode.
459 This setting switches from linear distances between bits to logarithmic ones.
460 The result is a much more "natural" sounding crusher which doesn't gate low
461 signals for example. The human ear has a logarithmic perception, too
462 so this kind of crushing is much more pleasant.
463 Logarithmic crushing is also able to get anti-aliased.
464
465 The filter accepts the following options:
466
467 @table @option
468 @item level_in
469 Set level in.
470
471 @item level_out
472 Set level out.
473
474 @item bits
475 Set bit reduction.
476
477 @item mix
478 Set mixing ammount.
479
480 @item mode
481 Can be linear: @code{lin} or logarithmic: @code{log}.
482
483 @item dc
484 Set DC.
485
486 @item aa
487 Set anti-aliasing.
488
489 @item samples
490 Set sample reduction.
491
492 @item lfo
493 Enable LFO. By default disabled.
494
495 @item lforange
496 Set LFO range.
497
498 @item lforate
499 Set LFO rate.
500 @end table
501
502 @section adelay
503
504 Delay one or more audio channels.
505
506 Samples in delayed channel are filled with silence.
507
508 The filter accepts the following option:
509
510 @table @option
511 @item delays
512 Set list of delays in milliseconds for each channel separated by '|'.
513 At least one delay greater than 0 should be provided.
514 Unused delays will be silently ignored. If number of given delays is
515 smaller than number of channels all remaining channels will not be delayed.
516 If you want to delay exact number of samples, append 'S' to number.
517 @end table
518
519 @subsection Examples
520
521 @itemize
522 @item
523 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
524 the second channel (and any other channels that may be present) unchanged.
525 @example
526 adelay=1500|0|500
527 @end example
528
529 @item
530 Delay second channel by 500 samples, the third channel by 700 samples and leave
531 the first channel (and any other channels that may be present) unchanged.
532 @example
533 adelay=0|500S|700S
534 @end example
535 @end itemize
536
537 @section aecho
538
539 Apply echoing to the input audio.
540
541 Echoes are reflected sound and can occur naturally amongst mountains
542 (and sometimes large buildings) when talking or shouting; digital echo
543 effects emulate this behaviour and are often used to help fill out the
544 sound of a single instrument or vocal. The time difference between the
545 original signal and the reflection is the @code{delay}, and the
546 loudness of the reflected signal is the @code{decay}.
547 Multiple echoes can have different delays and decays.
548
549 A description of the accepted parameters follows.
550
551 @table @option
552 @item in_gain
553 Set input gain of reflected signal. Default is @code{0.6}.
554
555 @item out_gain
556 Set output gain of reflected signal. Default is @code{0.3}.
557
558 @item delays
559 Set list of time intervals in milliseconds between original signal and reflections
560 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
561 Default is @code{1000}.
562
563 @item decays
564 Set list of loudnesses of reflected signals separated by '|'.
565 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
566 Default is @code{0.5}.
567 @end table
568
569 @subsection Examples
570
571 @itemize
572 @item
573 Make it sound as if there are twice as many instruments as are actually playing:
574 @example
575 aecho=0.8:0.88:60:0.4
576 @end example
577
578 @item
579 If delay is very short, then it sound like a (metallic) robot playing music:
580 @example
581 aecho=0.8:0.88:6:0.4
582 @end example
583
584 @item
585 A longer delay will sound like an open air concert in the mountains:
586 @example
587 aecho=0.8:0.9:1000:0.3
588 @end example
589
590 @item
591 Same as above but with one more mountain:
592 @example
593 aecho=0.8:0.9:1000|1800:0.3|0.25
594 @end example
595 @end itemize
596
597 @section aemphasis
598 Audio emphasis filter creates or restores material directly taken from LPs or
599 emphased CDs with different filter curves. E.g. to store music on vinyl the
600 signal has to be altered by a filter first to even out the disadvantages of
601 this recording medium.
602 Once the material is played back the inverse filter has to be applied to
603 restore the distortion of the frequency response.
604
605 The filter accepts the following options:
606
607 @table @option
608 @item level_in
609 Set input gain.
610
611 @item level_out
612 Set output gain.
613
614 @item mode
615 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
616 use @code{production} mode. Default is @code{reproduction} mode.
617
618 @item type
619 Set filter type. Selects medium. Can be one of the following:
620
621 @table @option
622 @item col
623 select Columbia.
624 @item emi
625 select EMI.
626 @item bsi
627 select BSI (78RPM).
628 @item riaa
629 select RIAA.
630 @item cd
631 select Compact Disc (CD).
632 @item 50fm
633 select 50µs (FM).
634 @item 75fm
635 select 75µs (FM).
636 @item 50kf
637 select 50µs (FM-KF).
638 @item 75kf
639 select 75µs (FM-KF).
640 @end table
641 @end table
642
643 @section aeval
644
645 Modify an audio signal according to the specified expressions.
646
647 This filter accepts one or more expressions (one for each channel),
648 which are evaluated and used to modify a corresponding audio signal.
649
650 It accepts the following parameters:
651
652 @table @option
653 @item exprs
654 Set the '|'-separated expressions list for each separate channel. If
655 the number of input channels is greater than the number of
656 expressions, the last specified expression is used for the remaining
657 output channels.
658
659 @item channel_layout, c
660 Set output channel layout. If not specified, the channel layout is
661 specified by the number of expressions. If set to @samp{same}, it will
662 use by default the same input channel layout.
663 @end table
664
665 Each expression in @var{exprs} can contain the following constants and functions:
666
667 @table @option
668 @item ch
669 channel number of the current expression
670
671 @item n
672 number of the evaluated sample, starting from 0
673
674 @item s
675 sample rate
676
677 @item t
678 time of the evaluated sample expressed in seconds
679
680 @item nb_in_channels
681 @item nb_out_channels
682 input and output number of channels
683
684 @item val(CH)
685 the value of input channel with number @var{CH}
686 @end table
687
688 Note: this filter is slow. For faster processing you should use a
689 dedicated filter.
690
691 @subsection Examples
692
693 @itemize
694 @item
695 Half volume:
696 @example
697 aeval=val(ch)/2:c=same
698 @end example
699
700 @item
701 Invert phase of the second channel:
702 @example
703 aeval=val(0)|-val(1)
704 @end example
705 @end itemize
706
707 @anchor{afade}
708 @section afade
709
710 Apply fade-in/out effect to input audio.
711
712 A description of the accepted parameters follows.
713
714 @table @option
715 @item type, t
716 Specify the effect type, can be either @code{in} for fade-in, or
717 @code{out} for a fade-out effect. Default is @code{in}.
718
719 @item start_sample, ss
720 Specify the number of the start sample for starting to apply the fade
721 effect. Default is 0.
722
723 @item nb_samples, ns
724 Specify the number of samples for which the fade effect has to last. At
725 the end of the fade-in effect the output audio will have the same
726 volume as the input audio, at the end of the fade-out transition
727 the output audio will be silence. Default is 44100.
728
729 @item start_time, st
730 Specify the start time of the fade effect. Default is 0.
731 The value must be specified as a time duration; see
732 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
733 for the accepted syntax.
734 If set this option is used instead of @var{start_sample}.
735
736 @item duration, d
737 Specify the duration of the fade effect. See
738 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
739 for the accepted syntax.
740 At the end of the fade-in effect the output audio will have the same
741 volume as the input audio, at the end of the fade-out transition
742 the output audio will be silence.
743 By default the duration is determined by @var{nb_samples}.
744 If set this option is used instead of @var{nb_samples}.
745
746 @item curve
747 Set curve for fade transition.
748
749 It accepts the following values:
750 @table @option
751 @item tri
752 select triangular, linear slope (default)
753 @item qsin
754 select quarter of sine wave
755 @item hsin
756 select half of sine wave
757 @item esin
758 select exponential sine wave
759 @item log
760 select logarithmic
761 @item ipar
762 select inverted parabola
763 @item qua
764 select quadratic
765 @item cub
766 select cubic
767 @item squ
768 select square root
769 @item cbr
770 select cubic root
771 @item par
772 select parabola
773 @item exp
774 select exponential
775 @item iqsin
776 select inverted quarter of sine wave
777 @item ihsin
778 select inverted half of sine wave
779 @item dese
780 select double-exponential seat
781 @item desi
782 select double-exponential sigmoid
783 @end table
784 @end table
785
786 @subsection Examples
787
788 @itemize
789 @item
790 Fade in first 15 seconds of audio:
791 @example
792 afade=t=in:ss=0:d=15
793 @end example
794
795 @item
796 Fade out last 25 seconds of a 900 seconds audio:
797 @example
798 afade=t=out:st=875:d=25
799 @end example
800 @end itemize
801
802 @section afftfilt
803 Apply arbitrary expressions to samples in frequency domain.
804
805 @table @option
806 @item real
807 Set frequency domain real expression for each separate channel separated
808 by '|'. Default is "1".
809 If the number of input channels is greater than the number of
810 expressions, the last specified expression is used for the remaining
811 output channels.
812
813 @item imag
814 Set frequency domain imaginary expression for each separate channel
815 separated by '|'. If not set, @var{real} option is used.
816
817 Each expression in @var{real} and @var{imag} can contain the following
818 constants:
819
820 @table @option
821 @item sr
822 sample rate
823
824 @item b
825 current frequency bin number
826
827 @item nb
828 number of available bins
829
830 @item ch
831 channel number of the current expression
832
833 @item chs
834 number of channels
835
836 @item pts
837 current frame pts
838 @end table
839
840 @item win_size
841 Set window size.
842
843 It accepts the following values:
844 @table @samp
845 @item w16
846 @item w32
847 @item w64
848 @item w128
849 @item w256
850 @item w512
851 @item w1024
852 @item w2048
853 @item w4096
854 @item w8192
855 @item w16384
856 @item w32768
857 @item w65536
858 @end table
859 Default is @code{w4096}
860
861 @item win_func
862 Set window function. Default is @code{hann}.
863
864 @item overlap
865 Set window overlap. If set to 1, the recommended overlap for selected
866 window function will be picked. Default is @code{0.75}.
867 @end table
868
869 @subsection Examples
870
871 @itemize
872 @item
873 Leave almost only low frequencies in audio:
874 @example
875 afftfilt="1-clip((b/nb)*b,0,1)"
876 @end example
877 @end itemize
878
879 @anchor{aformat}
880 @section aformat
881
882 Set output format constraints for the input audio. The framework will
883 negotiate the most appropriate format to minimize conversions.
884
885 It accepts the following parameters:
886 @table @option
887
888 @item sample_fmts
889 A '|'-separated list of requested sample formats.
890
891 @item sample_rates
892 A '|'-separated list of requested sample rates.
893
894 @item channel_layouts
895 A '|'-separated list of requested channel layouts.
896
897 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
898 for the required syntax.
899 @end table
900
901 If a parameter is omitted, all values are allowed.
902
903 Force the output to either unsigned 8-bit or signed 16-bit stereo
904 @example
905 aformat=sample_fmts=u8|s16:channel_layouts=stereo
906 @end example
907
908 @section agate
909
910 A gate is mainly used to reduce lower parts of a signal. This kind of signal
911 processing reduces disturbing noise between useful signals.
912
913 Gating is done by detecting the volume below a chosen level @var{threshold}
914 and dividing it by the factor set with @var{ratio}. The bottom of the noise
915 floor is set via @var{range}. Because an exact manipulation of the signal
916 would cause distortion of the waveform the reduction can be levelled over
917 time. This is done by setting @var{attack} and @var{release}.
918
919 @var{attack} determines how long the signal has to fall below the threshold
920 before any reduction will occur and @var{release} sets the time the signal
921 has to rise above the threshold to reduce the reduction again.
922 Shorter signals than the chosen attack time will be left untouched.
923
924 @table @option
925 @item level_in
926 Set input level before filtering.
927 Default is 1. Allowed range is from 0.015625 to 64.
928
929 @item range
930 Set the level of gain reduction when the signal is below the threshold.
931 Default is 0.06125. Allowed range is from 0 to 1.
932
933 @item threshold
934 If a signal rises above this level the gain reduction is released.
935 Default is 0.125. Allowed range is from 0 to 1.
936
937 @item ratio
938 Set a ratio by which the signal is reduced.
939 Default is 2. Allowed range is from 1 to 9000.
940
941 @item attack
942 Amount of milliseconds the signal has to rise above the threshold before gain
943 reduction stops.
944 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
945
946 @item release
947 Amount of milliseconds the signal has to fall below the threshold before the
948 reduction is increased again. Default is 250 milliseconds.
949 Allowed range is from 0.01 to 9000.
950
951 @item makeup
952 Set amount of amplification of signal after processing.
953 Default is 1. Allowed range is from 1 to 64.
954
955 @item knee
956 Curve the sharp knee around the threshold to enter gain reduction more softly.
957 Default is 2.828427125. Allowed range is from 1 to 8.
958
959 @item detection
960 Choose if exact signal should be taken for detection or an RMS like one.
961 Default is @code{rms}. Can be @code{peak} or @code{rms}.
962
963 @item link
964 Choose if the average level between all channels or the louder channel affects
965 the reduction.
966 Default is @code{average}. Can be @code{average} or @code{maximum}.
967 @end table
968
969 @section alimiter
970
971 The limiter prevents an input signal from rising over a desired threshold.
972 This limiter uses lookahead technology to prevent your signal from distorting.
973 It means that there is a small delay after the signal is processed. Keep in mind
974 that the delay it produces is the attack time you set.
975
976 The filter accepts the following options:
977
978 @table @option
979 @item level_in
980 Set input gain. Default is 1.
981
982 @item level_out
983 Set output gain. Default is 1.
984
985 @item limit
986 Don't let signals above this level pass the limiter. Default is 1.
987
988 @item attack
989 The limiter will reach its attenuation level in this amount of time in
990 milliseconds. Default is 5 milliseconds.
991
992 @item release
993 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
994 Default is 50 milliseconds.
995
996 @item asc
997 When gain reduction is always needed ASC takes care of releasing to an
998 average reduction level rather than reaching a reduction of 0 in the release
999 time.
1000
1001 @item asc_level
1002 Select how much the release time is affected by ASC, 0 means nearly no changes
1003 in release time while 1 produces higher release times.
1004
1005 @item level
1006 Auto level output signal. Default is enabled.
1007 This normalizes audio back to 0dB if enabled.
1008 @end table
1009
1010 Depending on picked setting it is recommended to upsample input 2x or 4x times
1011 with @ref{aresample} before applying this filter.
1012
1013 @section allpass
1014
1015 Apply a two-pole all-pass filter with central frequency (in Hz)
1016 @var{frequency}, and filter-width @var{width}.
1017 An all-pass filter changes the audio's frequency to phase relationship
1018 without changing its frequency to amplitude relationship.
1019
1020 The filter accepts the following options:
1021
1022 @table @option
1023 @item frequency, f
1024 Set frequency in Hz.
1025
1026 @item width_type
1027 Set method to specify band-width of filter.
1028 @table @option
1029 @item h
1030 Hz
1031 @item q
1032 Q-Factor
1033 @item o
1034 octave
1035 @item s
1036 slope
1037 @end table
1038
1039 @item width, w
1040 Specify the band-width of a filter in width_type units.
1041 @end table
1042
1043 @section aloop
1044
1045 Loop audio samples.
1046
1047 The filter accepts the following options:
1048
1049 @table @option
1050 @item loop
1051 Set the number of loops.
1052
1053 @item size
1054 Set maximal number of samples.
1055
1056 @item start
1057 Set first sample of loop.
1058 @end table
1059
1060 @anchor{amerge}
1061 @section amerge
1062
1063 Merge two or more audio streams into a single multi-channel stream.
1064
1065 The filter accepts the following options:
1066
1067 @table @option
1068
1069 @item inputs
1070 Set the number of inputs. Default is 2.
1071
1072 @end table
1073
1074 If the channel layouts of the inputs are disjoint, and therefore compatible,
1075 the channel layout of the output will be set accordingly and the channels
1076 will be reordered as necessary. If the channel layouts of the inputs are not
1077 disjoint, the output will have all the channels of the first input then all
1078 the channels of the second input, in that order, and the channel layout of
1079 the output will be the default value corresponding to the total number of
1080 channels.
1081
1082 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1083 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1084 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1085 first input, b1 is the first channel of the second input).
1086
1087 On the other hand, if both input are in stereo, the output channels will be
1088 in the default order: a1, a2, b1, b2, and the channel layout will be
1089 arbitrarily set to 4.0, which may or may not be the expected value.
1090
1091 All inputs must have the same sample rate, and format.
1092
1093 If inputs do not have the same duration, the output will stop with the
1094 shortest.
1095
1096 @subsection Examples
1097
1098 @itemize
1099 @item
1100 Merge two mono files into a stereo stream:
1101 @example
1102 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1103 @end example
1104
1105 @item
1106 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1107 @example
1108 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
1109 @end example
1110 @end itemize
1111
1112 @section amix
1113
1114 Mixes multiple audio inputs into a single output.
1115
1116 Note that this filter only supports float samples (the @var{amerge}
1117 and @var{pan} audio filters support many formats). If the @var{amix}
1118 input has integer samples then @ref{aresample} will be automatically
1119 inserted to perform the conversion to float samples.
1120
1121 For example
1122 @example
1123 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1124 @end example
1125 will mix 3 input audio streams to a single output with the same duration as the
1126 first input and a dropout transition time of 3 seconds.
1127
1128 It accepts the following parameters:
1129 @table @option
1130
1131 @item inputs
1132 The number of inputs. If unspecified, it defaults to 2.
1133
1134 @item duration
1135 How to determine the end-of-stream.
1136 @table @option
1137
1138 @item longest
1139 The duration of the longest input. (default)
1140
1141 @item shortest
1142 The duration of the shortest input.
1143
1144 @item first
1145 The duration of the first input.
1146
1147 @end table
1148
1149 @item dropout_transition
1150 The transition time, in seconds, for volume renormalization when an input
1151 stream ends. The default value is 2 seconds.
1152
1153 @end table
1154
1155 @section anequalizer
1156
1157 High-order parametric multiband equalizer for each channel.
1158
1159 It accepts the following parameters:
1160 @table @option
1161 @item params
1162
1163 This option string is in format:
1164 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1165 Each equalizer band is separated by '|'.
1166
1167 @table @option
1168 @item chn
1169 Set channel number to which equalization will be applied.
1170 If input doesn't have that channel the entry is ignored.
1171
1172 @item f
1173 Set central frequency for band.
1174 If input doesn't have that frequency the entry is ignored.
1175
1176 @item w
1177 Set band width in hertz.
1178
1179 @item g
1180 Set band gain in dB.
1181
1182 @item t
1183 Set filter type for band, optional, can be:
1184
1185 @table @samp
1186 @item 0
1187 Butterworth, this is default.
1188
1189 @item 1
1190 Chebyshev type 1.
1191
1192 @item 2
1193 Chebyshev type 2.
1194 @end table
1195 @end table
1196
1197 @item curves
1198 With this option activated frequency response of anequalizer is displayed
1199 in video stream.
1200
1201 @item size
1202 Set video stream size. Only useful if curves option is activated.
1203
1204 @item mgain
1205 Set max gain that will be displayed. Only useful if curves option is activated.
1206 Setting this to reasonable value allows to display gain which is derived from
1207 neighbour bands which are too close to each other and thus produce higher gain
1208 when both are activated.
1209
1210 @item fscale
1211 Set frequency scale used to draw frequency response in video output.
1212 Can be linear or logarithmic. Default is logarithmic.
1213
1214 @item colors
1215 Set color for each channel curve which is going to be displayed in video stream.
1216 This is list of color names separated by space or by '|'.
1217 Unrecognised or missing colors will be replaced by white color.
1218 @end table
1219
1220 @subsection Examples
1221
1222 @itemize
1223 @item
1224 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1225 for first 2 channels using Chebyshev type 1 filter:
1226 @example
1227 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1228 @end example
1229 @end itemize
1230
1231 @subsection Commands
1232
1233 This filter supports the following commands:
1234 @table @option
1235 @item change
1236 Alter existing filter parameters.
1237 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1238
1239 @var{fN} is existing filter number, starting from 0, if no such filter is available
1240 error is returned.
1241 @var{freq} set new frequency parameter.
1242 @var{width} set new width parameter in herz.
1243 @var{gain} set new gain parameter in dB.
1244
1245 Full filter invocation with asendcmd may look like this:
1246 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1247 @end table
1248
1249 @section anull
1250
1251 Pass the audio source unchanged to the output.
1252
1253 @section apad
1254
1255 Pad the end of an audio stream with silence.
1256
1257 This can be used together with @command{ffmpeg} @option{-shortest} to
1258 extend audio streams to the same length as the video stream.
1259
1260 A description of the accepted options follows.
1261
1262 @table @option
1263 @item packet_size
1264 Set silence packet size. Default value is 4096.
1265
1266 @item pad_len
1267 Set the number of samples of silence to add to the end. After the
1268 value is reached, the stream is terminated. This option is mutually
1269 exclusive with @option{whole_len}.
1270
1271 @item whole_len
1272 Set the minimum total number of samples in the output audio stream. If
1273 the value is longer than the input audio length, silence is added to
1274 the end, until the value is reached. This option is mutually exclusive
1275 with @option{pad_len}.
1276 @end table
1277
1278 If neither the @option{pad_len} nor the @option{whole_len} option is
1279 set, the filter will add silence to the end of the input stream
1280 indefinitely.
1281
1282 @subsection Examples
1283
1284 @itemize
1285 @item
1286 Add 1024 samples of silence to the end of the input:
1287 @example
1288 apad=pad_len=1024
1289 @end example
1290
1291 @item
1292 Make sure the audio output will contain at least 10000 samples, pad
1293 the input with silence if required:
1294 @example
1295 apad=whole_len=10000
1296 @end example
1297
1298 @item
1299 Use @command{ffmpeg} to pad the audio input with silence, so that the
1300 video stream will always result the shortest and will be converted
1301 until the end in the output file when using the @option{shortest}
1302 option:
1303 @example
1304 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1305 @end example
1306 @end itemize
1307
1308 @section aphaser
1309 Add a phasing effect to the input audio.
1310
1311 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1312 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1313
1314 A description of the accepted parameters follows.
1315
1316 @table @option
1317 @item in_gain
1318 Set input gain. Default is 0.4.
1319
1320 @item out_gain
1321 Set output gain. Default is 0.74
1322
1323 @item delay
1324 Set delay in milliseconds. Default is 3.0.
1325
1326 @item decay
1327 Set decay. Default is 0.4.
1328
1329 @item speed
1330 Set modulation speed in Hz. Default is 0.5.
1331
1332 @item type
1333 Set modulation type. Default is triangular.
1334
1335 It accepts the following values:
1336 @table @samp
1337 @item triangular, t
1338 @item sinusoidal, s
1339 @end table
1340 @end table
1341
1342 @section apulsator
1343
1344 Audio pulsator is something between an autopanner and a tremolo.
1345 But it can produce funny stereo effects as well. Pulsator changes the volume
1346 of the left and right channel based on a LFO (low frequency oscillator) with
1347 different waveforms and shifted phases.
1348 This filter have the ability to define an offset between left and right
1349 channel. An offset of 0 means that both LFO shapes match each other.
1350 The left and right channel are altered equally - a conventional tremolo.
1351 An offset of 50% means that the shape of the right channel is exactly shifted
1352 in phase (or moved backwards about half of the frequency) - pulsator acts as
1353 an autopanner. At 1 both curves match again. Every setting in between moves the
1354 phase shift gapless between all stages and produces some "bypassing" sounds with
1355 sine and triangle waveforms. The more you set the offset near 1 (starting from
1356 the 0.5) the faster the signal passes from the left to the right speaker.
1357
1358 The filter accepts the following options:
1359
1360 @table @option
1361 @item level_in
1362 Set input gain. By default it is 1. Range is [0.015625 - 64].
1363
1364 @item level_out
1365 Set output gain. By default it is 1. Range is [0.015625 - 64].
1366
1367 @item mode
1368 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1369 sawup or sawdown. Default is sine.
1370
1371 @item amount
1372 Set modulation. Define how much of original signal is affected by the LFO.
1373
1374 @item offset_l
1375 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1376
1377 @item offset_r
1378 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1379
1380 @item width
1381 Set pulse width. Default is 1. Allowed range is [0 - 2].
1382
1383 @item timing
1384 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1385
1386 @item bpm
1387 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1388 is set to bpm.
1389
1390 @item ms
1391 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1392 is set to ms.
1393
1394 @item hz
1395 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1396 if timing is set to hz.
1397 @end table
1398
1399 @anchor{aresample}
1400 @section aresample
1401
1402 Resample the input audio to the specified parameters, using the
1403 libswresample library. If none are specified then the filter will
1404 automatically convert between its input and output.
1405
1406 This filter is also able to stretch/squeeze the audio data to make it match
1407 the timestamps or to inject silence / cut out audio to make it match the
1408 timestamps, do a combination of both or do neither.
1409
1410 The filter accepts the syntax
1411 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1412 expresses a sample rate and @var{resampler_options} is a list of
1413 @var{key}=@var{value} pairs, separated by ":". See the
1414 ffmpeg-resampler manual for the complete list of supported options.
1415
1416 @subsection Examples
1417
1418 @itemize
1419 @item
1420 Resample the input audio to 44100Hz:
1421 @example
1422 aresample=44100
1423 @end example
1424
1425 @item
1426 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1427 samples per second compensation:
1428 @example
1429 aresample=async=1000
1430 @end example
1431 @end itemize
1432
1433 @section areverse
1434
1435 Reverse an audio clip.
1436
1437 Warning: This filter requires memory to buffer the entire clip, so trimming
1438 is suggested.
1439
1440 @subsection Examples
1441
1442 @itemize
1443 @item
1444 Take the first 5 seconds of a clip, and reverse it.
1445 @example
1446 atrim=end=5,areverse
1447 @end example
1448 @end itemize
1449
1450 @section asetnsamples
1451
1452 Set the number of samples per each output audio frame.
1453
1454 The last output packet may contain a different number of samples, as
1455 the filter will flush all the remaining samples when the input audio
1456 signals its end.
1457
1458 The filter accepts the following options:
1459
1460 @table @option
1461
1462 @item nb_out_samples, n
1463 Set the number of frames per each output audio frame. The number is
1464 intended as the number of samples @emph{per each channel}.
1465 Default value is 1024.
1466
1467 @item pad, p
1468 If set to 1, the filter will pad the last audio frame with zeroes, so
1469 that the last frame will contain the same number of samples as the
1470 previous ones. Default value is 1.
1471 @end table
1472
1473 For example, to set the number of per-frame samples to 1234 and
1474 disable padding for the last frame, use:
1475 @example
1476 asetnsamples=n=1234:p=0
1477 @end example
1478
1479 @section asetrate
1480
1481 Set the sample rate without altering the PCM data.
1482 This will result in a change of speed and pitch.
1483
1484 The filter accepts the following options:
1485
1486 @table @option
1487 @item sample_rate, r
1488 Set the output sample rate. Default is 44100 Hz.
1489 @end table
1490
1491 @section ashowinfo
1492
1493 Show a line containing various information for each input audio frame.
1494 The input audio is not modified.
1495
1496 The shown line contains a sequence of key/value pairs of the form
1497 @var{key}:@var{value}.
1498
1499 The following values are shown in the output:
1500
1501 @table @option
1502 @item n
1503 The (sequential) number of the input frame, starting from 0.
1504
1505 @item pts
1506 The presentation timestamp of the input frame, in time base units; the time base
1507 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1508
1509 @item pts_time
1510 The presentation timestamp of the input frame in seconds.
1511
1512 @item pos
1513 position of the frame in the input stream, -1 if this information in
1514 unavailable and/or meaningless (for example in case of synthetic audio)
1515
1516 @item fmt
1517 The sample format.
1518
1519 @item chlayout
1520 The channel layout.
1521
1522 @item rate
1523 The sample rate for the audio frame.
1524
1525 @item nb_samples
1526 The number of samples (per channel) in the frame.
1527
1528 @item checksum
1529 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1530 audio, the data is treated as if all the planes were concatenated.
1531
1532 @item plane_checksums
1533 A list of Adler-32 checksums for each data plane.
1534 @end table
1535
1536 @anchor{astats}
1537 @section astats
1538
1539 Display time domain statistical information about the audio channels.
1540 Statistics are calculated and displayed for each audio channel and,
1541 where applicable, an overall figure is also given.
1542
1543 It accepts the following option:
1544 @table @option
1545 @item length
1546 Short window length in seconds, used for peak and trough RMS measurement.
1547 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1548
1549 @item metadata
1550
1551 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1552 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1553 disabled.
1554
1555 Available keys for each channel are:
1556 DC_offset
1557 Min_level
1558 Max_level
1559 Min_difference
1560 Max_difference
1561 Mean_difference
1562 Peak_level
1563 RMS_peak
1564 RMS_trough
1565 Crest_factor
1566 Flat_factor
1567 Peak_count
1568 Bit_depth
1569
1570 and for Overall:
1571 DC_offset
1572 Min_level
1573 Max_level
1574 Min_difference
1575 Max_difference
1576 Mean_difference
1577 Peak_level
1578 RMS_level
1579 RMS_peak
1580 RMS_trough
1581 Flat_factor
1582 Peak_count
1583 Bit_depth
1584 Number_of_samples
1585
1586 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1587 this @code{lavfi.astats.Overall.Peak_count}.
1588
1589 For description what each key means read below.
1590
1591 @item reset
1592 Set number of frame after which stats are going to be recalculated.
1593 Default is disabled.
1594 @end table
1595
1596 A description of each shown parameter follows:
1597
1598 @table @option
1599 @item DC offset
1600 Mean amplitude displacement from zero.
1601
1602 @item Min level
1603 Minimal sample level.
1604
1605 @item Max level
1606 Maximal sample level.
1607
1608 @item Min difference
1609 Minimal difference between two consecutive samples.
1610
1611 @item Max difference
1612 Maximal difference between two consecutive samples.
1613
1614 @item Mean difference
1615 Mean difference between two consecutive samples.
1616 The average of each difference between two consecutive samples.
1617
1618 @item Peak level dB
1619 @item RMS level dB
1620 Standard peak and RMS level measured in dBFS.
1621
1622 @item RMS peak dB
1623 @item RMS trough dB
1624 Peak and trough values for RMS level measured over a short window.
1625
1626 @item Crest factor
1627 Standard ratio of peak to RMS level (note: not in dB).
1628
1629 @item Flat factor
1630 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1631 (i.e. either @var{Min level} or @var{Max level}).
1632
1633 @item Peak count
1634 Number of occasions (not the number of samples) that the signal attained either
1635 @var{Min level} or @var{Max level}.
1636
1637 @item Bit depth
1638 Overall bit depth of audio. Number of bits used for each sample.
1639 @end table
1640
1641 @section asyncts
1642
1643 Synchronize audio data with timestamps by squeezing/stretching it and/or
1644 dropping samples/adding silence when needed.
1645
1646 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1647
1648 It accepts the following parameters:
1649 @table @option
1650
1651 @item compensate
1652 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1653 by default. When disabled, time gaps are covered with silence.
1654
1655 @item min_delta
1656 The minimum difference between timestamps and audio data (in seconds) to trigger
1657 adding/dropping samples. The default value is 0.1. If you get an imperfect
1658 sync with this filter, try setting this parameter to 0.
1659
1660 @item max_comp
1661 The maximum compensation in samples per second. Only relevant with compensate=1.
1662 The default value is 500.
1663
1664 @item first_pts
1665 Assume that the first PTS should be this value. The time base is 1 / sample
1666 rate. This allows for padding/trimming at the start of the stream. By default,
1667 no assumption is made about the first frame's expected PTS, so no padding or
1668 trimming is done. For example, this could be set to 0 to pad the beginning with
1669 silence if an audio stream starts after the video stream or to trim any samples
1670 with a negative PTS due to encoder delay.
1671
1672 @end table
1673
1674 @section atempo
1675
1676 Adjust audio tempo.
1677
1678 The filter accepts exactly one parameter, the audio tempo. If not
1679 specified then the filter will assume nominal 1.0 tempo. Tempo must
1680 be in the [0.5, 2.0] range.
1681
1682 @subsection Examples
1683
1684 @itemize
1685 @item
1686 Slow down audio to 80% tempo:
1687 @example
1688 atempo=0.8
1689 @end example
1690
1691 @item
1692 To speed up audio to 125% tempo:
1693 @example
1694 atempo=1.25
1695 @end example
1696 @end itemize
1697
1698 @section atrim
1699
1700 Trim the input so that the output contains one continuous subpart of the input.
1701
1702 It accepts the following parameters:
1703 @table @option
1704 @item start
1705 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1706 sample with the timestamp @var{start} will be the first sample in the output.
1707
1708 @item end
1709 Specify time of the first audio sample that will be dropped, i.e. the
1710 audio sample immediately preceding the one with the timestamp @var{end} will be
1711 the last sample in the output.
1712
1713 @item start_pts
1714 Same as @var{start}, except this option sets the start timestamp in samples
1715 instead of seconds.
1716
1717 @item end_pts
1718 Same as @var{end}, except this option sets the end timestamp in samples instead
1719 of seconds.
1720
1721 @item duration
1722 The maximum duration of the output in seconds.
1723
1724 @item start_sample
1725 The number of the first sample that should be output.
1726
1727 @item end_sample
1728 The number of the first sample that should be dropped.
1729 @end table
1730
1731 @option{start}, @option{end}, and @option{duration} are expressed as time
1732 duration specifications; see
1733 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1734
1735 Note that the first two sets of the start/end options and the @option{duration}
1736 option look at the frame timestamp, while the _sample options simply count the
1737 samples that pass through the filter. So start/end_pts and start/end_sample will
1738 give different results when the timestamps are wrong, inexact or do not start at
1739 zero. Also note that this filter does not modify the timestamps. If you wish
1740 to have the output timestamps start at zero, insert the asetpts filter after the
1741 atrim filter.
1742
1743 If multiple start or end options are set, this filter tries to be greedy and
1744 keep all samples that match at least one of the specified constraints. To keep
1745 only the part that matches all the constraints at once, chain multiple atrim
1746 filters.
1747
1748 The defaults are such that all the input is kept. So it is possible to set e.g.
1749 just the end values to keep everything before the specified time.
1750
1751 Examples:
1752 @itemize
1753 @item
1754 Drop everything except the second minute of input:
1755 @example
1756 ffmpeg -i INPUT -af atrim=60:120
1757 @end example
1758
1759 @item
1760 Keep only the first 1000 samples:
1761 @example
1762 ffmpeg -i INPUT -af atrim=end_sample=1000
1763 @end example
1764
1765 @end itemize
1766
1767 @section bandpass
1768
1769 Apply a two-pole Butterworth band-pass filter with central
1770 frequency @var{frequency}, and (3dB-point) band-width width.
1771 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1772 instead of the default: constant 0dB peak gain.
1773 The filter roll off at 6dB per octave (20dB per decade).
1774
1775 The filter accepts the following options:
1776
1777 @table @option
1778 @item frequency, f
1779 Set the filter's central frequency. Default is @code{3000}.
1780
1781 @item csg
1782 Constant skirt gain if set to 1. Defaults to 0.
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 bandreject
1802
1803 Apply a two-pole Butterworth band-reject filter with central
1804 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1805 The filter roll off at 6dB per octave (20dB per decade).
1806
1807 The filter accepts the following options:
1808
1809 @table @option
1810 @item frequency, f
1811 Set the filter's central frequency. Default is @code{3000}.
1812
1813 @item width_type
1814 Set method to specify band-width of filter.
1815 @table @option
1816 @item h
1817 Hz
1818 @item q
1819 Q-Factor
1820 @item o
1821 octave
1822 @item s
1823 slope
1824 @end table
1825
1826 @item width, w
1827 Specify the band-width of a filter in width_type units.
1828 @end table
1829
1830 @section bass
1831
1832 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1833 shelving filter with a response similar to that of a standard
1834 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1835
1836 The filter accepts the following options:
1837
1838 @table @option
1839 @item gain, g
1840 Give the gain at 0 Hz. Its useful range is about -20
1841 (for a large cut) to +20 (for a large boost).
1842 Beware of clipping when using a positive gain.
1843
1844 @item frequency, f
1845 Set the filter's central frequency and so can be used
1846 to extend or reduce the frequency range to be boosted or cut.
1847 The default value is @code{100} Hz.
1848
1849 @item width_type
1850 Set method to specify band-width of filter.
1851 @table @option
1852 @item h
1853 Hz
1854 @item q
1855 Q-Factor
1856 @item o
1857 octave
1858 @item s
1859 slope
1860 @end table
1861
1862 @item width, w
1863 Determine how steep is the filter's shelf transition.
1864 @end table
1865
1866 @section biquad
1867
1868 Apply a biquad IIR filter with the given coefficients.
1869 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1870 are the numerator and denominator coefficients respectively.
1871
1872 @section bs2b
1873 Bauer stereo to binaural transformation, which improves headphone listening of
1874 stereo audio records.
1875
1876 It accepts the following parameters:
1877 @table @option
1878
1879 @item profile
1880 Pre-defined crossfeed level.
1881 @table @option
1882
1883 @item default
1884 Default level (fcut=700, feed=50).
1885
1886 @item cmoy
1887 Chu Moy circuit (fcut=700, feed=60).
1888
1889 @item jmeier
1890 Jan Meier circuit (fcut=650, feed=95).
1891
1892 @end table
1893
1894 @item fcut
1895 Cut frequency (in Hz).
1896
1897 @item feed
1898 Feed level (in Hz).
1899
1900 @end table
1901
1902 @section channelmap
1903
1904 Remap input channels to new locations.
1905
1906 It accepts the following parameters:
1907 @table @option
1908 @item channel_layout
1909 The channel layout of the output stream.
1910
1911 @item map
1912 Map channels from input to output. The argument is a '|'-separated list of
1913 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1914 @var{in_channel} form. @var{in_channel} can be either the name of the input
1915 channel (e.g. FL for front left) or its index in the input channel layout.
1916 @var{out_channel} is the name of the output channel or its index in the output
1917 channel layout. If @var{out_channel} is not given then it is implicitly an
1918 index, starting with zero and increasing by one for each mapping.
1919 @end table
1920
1921 If no mapping is present, the filter will implicitly map input channels to
1922 output channels, preserving indices.
1923
1924 For example, assuming a 5.1+downmix input MOV file,
1925 @example
1926 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1927 @end example
1928 will create an output WAV file tagged as stereo from the downmix channels of
1929 the input.
1930
1931 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1932 @example
1933 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1934 @end example
1935
1936 @section channelsplit
1937
1938 Split each channel from an input audio stream into a separate output stream.
1939
1940 It accepts the following parameters:
1941 @table @option
1942 @item channel_layout
1943 The channel layout of the input stream. The default is "stereo".
1944 @end table
1945
1946 For example, assuming a stereo input MP3 file,
1947 @example
1948 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1949 @end example
1950 will create an output Matroska file with two audio streams, one containing only
1951 the left channel and the other the right channel.
1952
1953 Split a 5.1 WAV file into per-channel files:
1954 @example
1955 ffmpeg -i in.wav -filter_complex
1956 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1957 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1958 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1959 side_right.wav
1960 @end example
1961
1962 @section chorus
1963 Add a chorus effect to the audio.
1964
1965 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1966
1967 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1968 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1969 The modulation depth defines the range the modulated delay is played before or after
1970 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1971 sound tuned around the original one, like in a chorus where some vocals are slightly
1972 off key.
1973
1974 It accepts the following parameters:
1975 @table @option
1976 @item in_gain
1977 Set input gain. Default is 0.4.
1978
1979 @item out_gain
1980 Set output gain. Default is 0.4.
1981
1982 @item delays
1983 Set delays. A typical delay is around 40ms to 60ms.
1984
1985 @item decays
1986 Set decays.
1987
1988 @item speeds
1989 Set speeds.
1990
1991 @item depths
1992 Set depths.
1993 @end table
1994
1995 @subsection Examples
1996
1997 @itemize
1998 @item
1999 A single delay:
2000 @example
2001 chorus=0.7:0.9:55:0.4:0.25:2
2002 @end example
2003
2004 @item
2005 Two delays:
2006 @example
2007 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2008 @end example
2009
2010 @item
2011 Fuller sounding chorus with three delays:
2012 @example
2013 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
2014 @end example
2015 @end itemize
2016
2017 @section compand
2018 Compress or expand the audio's dynamic range.
2019
2020 It accepts the following parameters:
2021
2022 @table @option
2023
2024 @item attacks
2025 @item decays
2026 A list of times in seconds for each channel over which the instantaneous level
2027 of the input signal is averaged to determine its volume. @var{attacks} refers to
2028 increase of volume and @var{decays} refers to decrease of volume. For most
2029 situations, the attack time (response to the audio getting louder) should be
2030 shorter than the decay time, because the human ear is more sensitive to sudden
2031 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2032 a typical value for decay is 0.8 seconds.
2033 If specified number of attacks & decays is lower than number of channels, the last
2034 set attack/decay will be used for all remaining channels.
2035
2036 @item points
2037 A list of points for the transfer function, specified in dB relative to the
2038 maximum possible signal amplitude. Each key points list must be defined using
2039 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2040 @code{x0/y0 x1/y1 x2/y2 ....}
2041
2042 The input values must be in strictly increasing order but the transfer function
2043 does not have to be monotonically rising. The point @code{0/0} is assumed but
2044 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2045 function are @code{-70/-70|-60/-20}.
2046
2047 @item soft-knee
2048 Set the curve radius in dB for all joints. It defaults to 0.01.
2049
2050 @item gain
2051 Set the additional gain in dB to be applied at all points on the transfer
2052 function. This allows for easy adjustment of the overall gain.
2053 It defaults to 0.
2054
2055 @item volume
2056 Set an initial volume, in dB, to be assumed for each channel when filtering
2057 starts. This permits the user to supply a nominal level initially, so that, for
2058 example, a very large gain is not applied to initial signal levels before the
2059 companding has begun to operate. A typical value for audio which is initially
2060 quiet is -90 dB. It defaults to 0.
2061
2062 @item delay
2063 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2064 delayed before being fed to the volume adjuster. Specifying a delay
2065 approximately equal to the attack/decay times allows the filter to effectively
2066 operate in predictive rather than reactive mode. It defaults to 0.
2067
2068 @end table
2069
2070 @subsection Examples
2071
2072 @itemize
2073 @item
2074 Make music with both quiet and loud passages suitable for listening to in a
2075 noisy environment:
2076 @example
2077 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2078 @end example
2079
2080 Another example for audio with whisper and explosion parts:
2081 @example
2082 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2083 @end example
2084
2085 @item
2086 A noise gate for when the noise is at a lower level than the signal:
2087 @example
2088 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2089 @end example
2090
2091 @item
2092 Here is another noise gate, this time for when the noise is at a higher level
2093 than the signal (making it, in some ways, similar to squelch):
2094 @example
2095 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2096 @end example
2097
2098 @item
2099 2:1 compression starting at -6dB:
2100 @example
2101 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2102 @end example
2103
2104 @item
2105 2:1 compression starting at -9dB:
2106 @example
2107 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2108 @end example
2109
2110 @item
2111 2:1 compression starting at -12dB:
2112 @example
2113 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2114 @end example
2115
2116 @item
2117 2:1 compression starting at -18dB:
2118 @example
2119 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2120 @end example
2121
2122 @item
2123 3:1 compression starting at -15dB:
2124 @example
2125 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2126 @end example
2127
2128 @item
2129 Compressor/Gate:
2130 @example
2131 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2132 @end example
2133
2134 @item
2135 Expander:
2136 @example
2137 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
2138 @end example
2139
2140 @item
2141 Hard limiter at -6dB:
2142 @example
2143 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2144 @end example
2145
2146 @item
2147 Hard limiter at -12dB:
2148 @example
2149 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2150 @end example
2151
2152 @item
2153 Hard noise gate at -35 dB:
2154 @example
2155 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2156 @end example
2157
2158 @item
2159 Soft limiter:
2160 @example
2161 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2162 @end example
2163 @end itemize
2164
2165 @section compensationdelay
2166
2167 Compensation Delay Line is a metric based delay to compensate differing
2168 positions of microphones or speakers.
2169
2170 For example, you have recorded guitar with two microphones placed in
2171 different location. Because the front of sound wave has fixed speed in
2172 normal conditions, the phasing of microphones can vary and depends on
2173 their location and interposition. The best sound mix can be achieved when
2174 these microphones are in phase (synchronized). Note that distance of
2175 ~30 cm between microphones makes one microphone to capture signal in
2176 antiphase to another microphone. That makes the final mix sounding moody.
2177 This filter helps to solve phasing problems by adding different delays
2178 to each microphone track and make them synchronized.
2179
2180 The best result can be reached when you take one track as base and
2181 synchronize other tracks one by one with it.
2182 Remember that synchronization/delay tolerance depends on sample rate, too.
2183 Higher sample rates will give more tolerance.
2184
2185 It accepts the following parameters:
2186
2187 @table @option
2188 @item mm
2189 Set millimeters distance. This is compensation distance for fine tuning.
2190 Default is 0.
2191
2192 @item cm
2193 Set cm distance. This is compensation distance for tightening distance setup.
2194 Default is 0.
2195
2196 @item m
2197 Set meters distance. This is compensation distance for hard distance setup.
2198 Default is 0.
2199
2200 @item dry
2201 Set dry amount. Amount of unprocessed (dry) signal.
2202 Default is 0.
2203
2204 @item wet
2205 Set wet amount. Amount of processed (wet) signal.
2206 Default is 1.
2207
2208 @item temp
2209 Set temperature degree in Celsius. This is the temperature of the environment.
2210 Default is 20.
2211 @end table
2212
2213 @section crystalizer
2214 Simple algorithm to expand audio dynamic range.
2215
2216 The filter accepts the following options:
2217
2218 @table @option
2219 @item i
2220 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2221 (unchanged sound) to 10.0 (maximum effect).
2222
2223 @item c
2224 Enable clipping. By default is enabled.
2225 @end table
2226
2227 @section dcshift
2228 Apply a DC shift to the audio.
2229
2230 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2231 in the recording chain) from the audio. The effect of a DC offset is reduced
2232 headroom and hence volume. The @ref{astats} filter can be used to determine if
2233 a signal has a DC offset.
2234
2235 @table @option
2236 @item shift
2237 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2238 the audio.
2239
2240 @item limitergain
2241 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2242 used to prevent clipping.
2243 @end table
2244
2245 @section dynaudnorm
2246 Dynamic Audio Normalizer.
2247
2248 This filter applies a certain amount of gain to the input audio in order
2249 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2250 contrast to more "simple" normalization algorithms, the Dynamic Audio
2251 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2252 This allows for applying extra gain to the "quiet" sections of the audio
2253 while avoiding distortions or clipping the "loud" sections. In other words:
2254 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2255 sections, in the sense that the volume of each section is brought to the
2256 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2257 this goal *without* applying "dynamic range compressing". It will retain 100%
2258 of the dynamic range *within* each section of the audio file.
2259
2260 @table @option
2261 @item f
2262 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2263 Default is 500 milliseconds.
2264 The Dynamic Audio Normalizer processes the input audio in small chunks,
2265 referred to as frames. This is required, because a peak magnitude has no
2266 meaning for just a single sample value. Instead, we need to determine the
2267 peak magnitude for a contiguous sequence of sample values. While a "standard"
2268 normalizer would simply use the peak magnitude of the complete file, the
2269 Dynamic Audio Normalizer determines the peak magnitude individually for each
2270 frame. The length of a frame is specified in milliseconds. By default, the
2271 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2272 been found to give good results with most files.
2273 Note that the exact frame length, in number of samples, will be determined
2274 automatically, based on the sampling rate of the individual input audio file.
2275
2276 @item g
2277 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2278 number. Default is 31.
2279 Probably the most important parameter of the Dynamic Audio Normalizer is the
2280 @code{window size} of the Gaussian smoothing filter. The filter's window size
2281 is specified in frames, centered around the current frame. For the sake of
2282 simplicity, this must be an odd number. Consequently, the default value of 31
2283 takes into account the current frame, as well as the 15 preceding frames and
2284 the 15 subsequent frames. Using a larger window results in a stronger
2285 smoothing effect and thus in less gain variation, i.e. slower gain
2286 adaptation. Conversely, using a smaller window results in a weaker smoothing
2287 effect and thus in more gain variation, i.e. faster gain adaptation.
2288 In other words, the more you increase this value, the more the Dynamic Audio
2289 Normalizer will behave like a "traditional" normalization filter. On the
2290 contrary, the more you decrease this value, the more the Dynamic Audio
2291 Normalizer will behave like a dynamic range compressor.
2292
2293 @item p
2294 Set the target peak value. This specifies the highest permissible magnitude
2295 level for the normalized audio input. This filter will try to approach the
2296 target peak magnitude as closely as possible, but at the same time it also
2297 makes sure that the normalized signal will never exceed the peak magnitude.
2298 A frame's maximum local gain factor is imposed directly by the target peak
2299 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2300 It is not recommended to go above this value.
2301
2302 @item m
2303 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2304 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2305 factor for each input frame, i.e. the maximum gain factor that does not
2306 result in clipping or distortion. The maximum gain factor is determined by
2307 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2308 additionally bounds the frame's maximum gain factor by a predetermined
2309 (global) maximum gain factor. This is done in order to avoid excessive gain
2310 factors in "silent" or almost silent frames. By default, the maximum gain
2311 factor is 10.0, For most inputs the default value should be sufficient and
2312 it usually is not recommended to increase this value. Though, for input
2313 with an extremely low overall volume level, it may be necessary to allow even
2314 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2315 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2316 Instead, a "sigmoid" threshold function will be applied. This way, the
2317 gain factors will smoothly approach the threshold value, but never exceed that
2318 value.
2319
2320 @item r
2321 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2322 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2323 This means that the maximum local gain factor for each frame is defined
2324 (only) by the frame's highest magnitude sample. This way, the samples can
2325 be amplified as much as possible without exceeding the maximum signal
2326 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2327 Normalizer can also take into account the frame's root mean square,
2328 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2329 determine the power of a time-varying signal. It is therefore considered
2330 that the RMS is a better approximation of the "perceived loudness" than
2331 just looking at the signal's peak magnitude. Consequently, by adjusting all
2332 frames to a constant RMS value, a uniform "perceived loudness" can be
2333 established. If a target RMS value has been specified, a frame's local gain
2334 factor is defined as the factor that would result in exactly that RMS value.
2335 Note, however, that the maximum local gain factor is still restricted by the
2336 frame's highest magnitude sample, in order to prevent clipping.
2337
2338 @item n
2339 Enable channels coupling. By default is enabled.
2340 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2341 amount. This means the same gain factor will be applied to all channels, i.e.
2342 the maximum possible gain factor is determined by the "loudest" channel.
2343 However, in some recordings, it may happen that the volume of the different
2344 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2345 In this case, this option can be used to disable the channel coupling. This way,
2346 the gain factor will be determined independently for each channel, depending
2347 only on the individual channel's highest magnitude sample. This allows for
2348 harmonizing the volume of the different channels.
2349
2350 @item c
2351 Enable DC bias correction. By default is disabled.
2352 An audio signal (in the time domain) is a sequence of sample values.
2353 In the Dynamic Audio Normalizer these sample values are represented in the
2354 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2355 audio signal, or "waveform", should be centered around the zero point.
2356 That means if we calculate the mean value of all samples in a file, or in a
2357 single frame, then the result should be 0.0 or at least very close to that
2358 value. If, however, there is a significant deviation of the mean value from
2359 0.0, in either positive or negative direction, this is referred to as a
2360 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2361 Audio Normalizer provides optional DC bias correction.
2362 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2363 the mean value, or "DC correction" offset, of each input frame and subtract
2364 that value from all of the frame's sample values which ensures those samples
2365 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2366 boundaries, the DC correction offset values will be interpolated smoothly
2367 between neighbouring frames.
2368
2369 @item b
2370 Enable alternative boundary mode. By default is disabled.
2371 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2372 around each frame. This includes the preceding frames as well as the
2373 subsequent frames. However, for the "boundary" frames, located at the very
2374 beginning and at the very end of the audio file, not all neighbouring
2375 frames are available. In particular, for the first few frames in the audio
2376 file, the preceding frames are not known. And, similarly, for the last few
2377 frames in the audio file, the subsequent frames are not known. Thus, the
2378 question arises which gain factors should be assumed for the missing frames
2379 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2380 to deal with this situation. The default boundary mode assumes a gain factor
2381 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2382 "fade out" at the beginning and at the end of the input, respectively.
2383
2384 @item s
2385 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2386 By default, the Dynamic Audio Normalizer does not apply "traditional"
2387 compression. This means that signal peaks will not be pruned and thus the
2388 full dynamic range will be retained within each local neighbourhood. However,
2389 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2390 normalization algorithm with a more "traditional" compression.
2391 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2392 (thresholding) function. If (and only if) the compression feature is enabled,
2393 all input frames will be processed by a soft knee thresholding function prior
2394 to the actual normalization process. Put simply, the thresholding function is
2395 going to prune all samples whose magnitude exceeds a certain threshold value.
2396 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2397 value. Instead, the threshold value will be adjusted for each individual
2398 frame.
2399 In general, smaller parameters result in stronger compression, and vice versa.
2400 Values below 3.0 are not recommended, because audible distortion may appear.
2401 @end table
2402
2403 @section earwax
2404
2405 Make audio easier to listen to on headphones.
2406
2407 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2408 so that when listened to on headphones the stereo image is moved from
2409 inside your head (standard for headphones) to outside and in front of
2410 the listener (standard for speakers).
2411
2412 Ported from SoX.
2413
2414 @section equalizer
2415
2416 Apply a two-pole peaking equalisation (EQ) filter. With this
2417 filter, the signal-level at and around a selected frequency can
2418 be increased or decreased, whilst (unlike bandpass and bandreject
2419 filters) that at all other frequencies is unchanged.
2420
2421 In order to produce complex equalisation curves, this filter can
2422 be given several times, each with a different central frequency.
2423
2424 The filter accepts the following options:
2425
2426 @table @option
2427 @item frequency, f
2428 Set the filter's central frequency in Hz.
2429
2430 @item width_type
2431 Set method to specify band-width of filter.
2432 @table @option
2433 @item h
2434 Hz
2435 @item q
2436 Q-Factor
2437 @item o
2438 octave
2439 @item s
2440 slope
2441 @end table
2442
2443 @item width, w
2444 Specify the band-width of a filter in width_type units.
2445
2446 @item gain, g
2447 Set the required gain or attenuation in dB.
2448 Beware of clipping when using a positive gain.
2449 @end table
2450
2451 @subsection Examples
2452 @itemize
2453 @item
2454 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2455 @example
2456 equalizer=f=1000:width_type=h:width=200:g=-10
2457 @end example
2458
2459 @item
2460 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2461 @example
2462 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2463 @end example
2464 @end itemize
2465
2466 @section extrastereo
2467
2468 Linearly increases the difference between left and right channels which
2469 adds some sort of "live" effect to playback.
2470
2471 The filter accepts the following options:
2472
2473 @table @option
2474 @item m
2475 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2476 (average of both channels), with 1.0 sound will be unchanged, with
2477 -1.0 left and right channels will be swapped.
2478
2479 @item c
2480 Enable clipping. By default is enabled.
2481 @end table
2482
2483 @section firequalizer
2484 Apply FIR Equalization using arbitrary frequency response.
2485
2486 The filter accepts the following option:
2487
2488 @table @option
2489 @item gain
2490 Set gain curve equation (in dB). The expression can contain variables:
2491 @table @option
2492 @item f
2493 the evaluated frequency
2494 @item sr
2495 sample rate
2496 @item ch
2497 channel number, set to 0 when multichannels evaluation is disabled
2498 @item chid
2499 channel id, see libavutil/channel_layout.h, set to the first channel id when
2500 multichannels evaluation is disabled
2501 @item chs
2502 number of channels
2503 @item chlayout
2504 channel_layout, see libavutil/channel_layout.h
2505
2506 @end table
2507 and functions:
2508 @table @option
2509 @item gain_interpolate(f)
2510 interpolate gain on frequency f based on gain_entry
2511 @end table
2512 This option is also available as command. Default is @code{gain_interpolate(f)}.
2513
2514 @item gain_entry
2515 Set gain entry for gain_interpolate function. The expression can
2516 contain functions:
2517 @table @option
2518 @item entry(f, g)
2519 store gain entry at frequency f with value g
2520 @end table
2521 This option is also available as command.
2522
2523 @item delay
2524 Set filter delay in seconds. Higher value means more accurate.
2525 Default is @code{0.01}.
2526
2527 @item accuracy
2528 Set filter accuracy in Hz. Lower value means more accurate.
2529 Default is @code{5}.
2530
2531 @item wfunc
2532 Set window function. Acceptable values are:
2533 @table @option
2534 @item rectangular
2535 rectangular window, useful when gain curve is already smooth
2536 @item hann
2537 hann window (default)
2538 @item hamming
2539 hamming window
2540 @item blackman
2541 blackman window
2542 @item nuttall3
2543 3-terms continuous 1st derivative nuttall window
2544 @item mnuttall3
2545 minimum 3-terms discontinuous nuttall window
2546 @item nuttall
2547 4-terms continuous 1st derivative nuttall window
2548 @item bnuttall
2549 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2550 @item bharris
2551 blackman-harris window
2552 @item tukey
2553 tukey window
2554 @end table
2555
2556 @item fixed
2557 If enabled, use fixed number of audio samples. This improves speed when
2558 filtering with large delay. Default is disabled.
2559
2560 @item multi
2561 Enable multichannels evaluation on gain. Default is disabled.
2562
2563 @item zero_phase
2564 Enable zero phase mode by subtracting timestamp to compensate delay.
2565 Default is disabled.
2566 @end table
2567
2568 @subsection Examples
2569 @itemize
2570 @item
2571 lowpass at 1000 Hz:
2572 @example
2573 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2574 @end example
2575 @item
2576 lowpass at 1000 Hz with gain_entry:
2577 @example
2578 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2579 @end example
2580 @item
2581 custom equalization:
2582 @example
2583 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2584 @end example
2585 @item
2586 higher delay with zero phase to compensate delay:
2587 @example
2588 firequalizer=delay=0.1:fixed=on:zero_phase=on
2589 @end example
2590 @item
2591 lowpass on left channel, highpass on right channel:
2592 @example
2593 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2594 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2595 @end example
2596 @end itemize
2597
2598 @section flanger
2599 Apply a flanging effect to the audio.
2600
2601 The filter accepts the following options:
2602
2603 @table @option
2604 @item delay
2605 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2606
2607 @item depth
2608 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2609
2610 @item regen
2611 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2612 Default value is 0.
2613
2614 @item width
2615 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2616 Default value is 71.
2617
2618 @item speed
2619 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2620
2621 @item shape
2622 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2623 Default value is @var{sinusoidal}.
2624
2625 @item phase
2626 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2627 Default value is 25.
2628
2629 @item interp
2630 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2631 Default is @var{linear}.
2632 @end table
2633
2634 @section hdcd
2635
2636 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
2637 embedded HDCD codes is expanded into a 20-bit PCM stream.
2638
2639 The filter supports the Peak Extend and Low-level Gain Adjustment features
2640 of HDCD, and detects the Transient Filter flag.
2641
2642 @example
2643 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
2644 @end example
2645
2646 When using the filter with wav, note the default encoding for wav is 16-bit,
2647 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
2648 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
2649 @example
2650 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
2651 ffmpeg -i HDCD16.wav -af hdcd -acodec pcm_s24le OUT24.wav
2652 @end example
2653
2654 The filter accepts the following options:
2655
2656 @table @option
2657 @item disable_autoconvert
2658 Disable any automatic format conversion or resampling in the filter graph.
2659
2660 @item process_stereo
2661 Process the stereo channels together. If target_gain does not match between
2662 channels, consider it invalid and use the last valid target_gain.
2663
2664 @item cdt_ms
2665 Set the code detect timer period in ms.
2666
2667 @item force_pe
2668 Always extend peaks above -3dBFS even if PE isn't signaled.
2669
2670 @item analyze_mode
2671 Replace audio with a solid tone and adjust the amplitude to signal some
2672 specific aspect of the decoding process. The output file can be loaded in
2673 an audio editor alongside the original to aid analysis.
2674
2675 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
2676
2677 Modes are:
2678 @table @samp
2679 @item 0, off
2680 Disabled
2681 @item 1, lle
2682 Gain adjustment level at each sample
2683 @item 2, pe
2684 Samples where peak extend occurs
2685 @item 3, cdt
2686 Samples where the code detect timer is active
2687 @item 4, tgm
2688 Samples where the target gain does not match between channels
2689 @end table
2690 @end table
2691
2692 @section highpass
2693
2694 Apply a high-pass filter with 3dB point frequency.
2695 The filter can be either single-pole, or double-pole (the default).
2696 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2697
2698 The filter accepts the following options:
2699
2700 @table @option
2701 @item frequency, f
2702 Set frequency in Hz. Default is 3000.
2703
2704 @item poles, p
2705 Set number of poles. Default is 2.
2706
2707 @item width_type
2708 Set method to specify band-width of filter.
2709 @table @option
2710 @item h
2711 Hz
2712 @item q
2713 Q-Factor
2714 @item o
2715 octave
2716 @item s
2717 slope
2718 @end table
2719
2720 @item width, w
2721 Specify the band-width of a filter in width_type units.
2722 Applies only to double-pole filter.
2723 The default is 0.707q and gives a Butterworth response.
2724 @end table
2725
2726 @section join
2727
2728 Join multiple input streams into one multi-channel stream.
2729
2730 It accepts the following parameters:
2731 @table @option
2732
2733 @item inputs
2734 The number of input streams. It defaults to 2.
2735
2736 @item channel_layout
2737 The desired output channel layout. It defaults to stereo.
2738
2739 @item map
2740 Map channels from inputs to output. The argument is a '|'-separated list of
2741 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2742 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2743 can be either the name of the input channel (e.g. FL for front left) or its
2744 index in the specified input stream. @var{out_channel} is the name of the output
2745 channel.
2746 @end table
2747
2748 The filter will attempt to guess the mappings when they are not specified
2749 explicitly. It does so by first trying to find an unused matching input channel
2750 and if that fails it picks the first unused input channel.
2751
2752 Join 3 inputs (with properly set channel layouts):
2753 @example
2754 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2755 @end example
2756
2757 Build a 5.1 output from 6 single-channel streams:
2758 @example
2759 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2760 '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'
2761 out
2762 @end example
2763
2764 @section ladspa
2765
2766 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2767
2768 To enable compilation of this filter you need to configure FFmpeg with
2769 @code{--enable-ladspa}.
2770
2771 @table @option
2772 @item file, f
2773 Specifies the name of LADSPA plugin library to load. If the environment
2774 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2775 each one of the directories specified by the colon separated list in
2776 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2777 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2778 @file{/usr/lib/ladspa/}.
2779
2780 @item plugin, p
2781 Specifies the plugin within the library. Some libraries contain only
2782 one plugin, but others contain many of them. If this is not set filter
2783 will list all available plugins within the specified library.
2784
2785 @item controls, c
2786 Set the '|' separated list of controls which are zero or more floating point
2787 values that determine the behavior of the loaded plugin (for example delay,
2788 threshold or gain).
2789 Controls need to be defined using the following syntax:
2790 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2791 @var{valuei} is the value set on the @var{i}-th control.
2792 Alternatively they can be also defined using the following syntax:
2793 @var{value0}|@var{value1}|@var{value2}|..., where
2794 @var{valuei} is the value set on the @var{i}-th control.
2795 If @option{controls} is set to @code{help}, all available controls and
2796 their valid ranges are printed.
2797
2798 @item sample_rate, s
2799 Specify the sample rate, default to 44100. Only used if plugin have
2800 zero inputs.
2801
2802 @item nb_samples, n
2803 Set the number of samples per channel per each output frame, default
2804 is 1024. Only used if plugin have zero inputs.
2805
2806 @item duration, d
2807 Set the minimum duration of the sourced audio. See
2808 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2809 for the accepted syntax.
2810 Note that the resulting duration may be greater than the specified duration,
2811 as the generated audio is always cut at the end of a complete frame.
2812 If not specified, or the expressed duration is negative, the audio is
2813 supposed to be generated forever.
2814 Only used if plugin have zero inputs.
2815
2816 @end table
2817
2818 @subsection Examples
2819
2820 @itemize
2821 @item
2822 List all available plugins within amp (LADSPA example plugin) library:
2823 @example
2824 ladspa=file=amp
2825 @end example
2826
2827 @item
2828 List all available controls and their valid ranges for @code{vcf_notch}
2829 plugin from @code{VCF} library:
2830 @example
2831 ladspa=f=vcf:p=vcf_notch:c=help
2832 @end example
2833
2834 @item
2835 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2836 plugin library:
2837 @example
2838 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2839 @end example
2840
2841 @item
2842 Add reverberation to the audio using TAP-plugins
2843 (Tom's Audio Processing plugins):
2844 @example
2845 ladspa=file=tap_reverb:tap_reverb
2846 @end example
2847
2848 @item
2849 Generate white noise, with 0.2 amplitude:
2850 @example
2851 ladspa=file=cmt:noise_source_white:c=c0=.2
2852 @end example
2853
2854 @item
2855 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2856 @code{C* Audio Plugin Suite} (CAPS) library:
2857 @example
2858 ladspa=file=caps:Click:c=c1=20'
2859 @end example
2860
2861 @item
2862 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2863 @example
2864 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2865 @end example
2866
2867 @item
2868 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2869 @code{SWH Plugins} collection:
2870 @example
2871 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2872 @end example
2873
2874 @item
2875 Attenuate low frequencies using Multiband EQ from Steve Harris
2876 @code{SWH Plugins} collection:
2877 @example
2878 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2879 @end example
2880 @end itemize
2881
2882 @subsection Commands
2883
2884 This filter supports the following commands:
2885 @table @option
2886 @item cN
2887 Modify the @var{N}-th control value.
2888
2889 If the specified value is not valid, it is ignored and prior one is kept.
2890 @end table
2891
2892 @section loudnorm
2893
2894 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
2895 Support for both single pass (livestreams, files) and double pass (files) modes.
2896 This algorithm can target IL, LRA, and maximum true peak.
2897
2898 To enable compilation of this filter you need to configure FFmpeg with
2899 @code{--enable-libebur128}.
2900
2901 The filter accepts the following options:
2902
2903 @table @option
2904 @item I, i
2905 Set integrated loudness target.
2906 Range is -70.0 - -5.0. Default value is -24.0.
2907
2908 @item LRA, lra
2909 Set loudness range target.
2910 Range is 1.0 - 20.0. Default value is 7.0.
2911
2912 @item TP, tp
2913 Set maximum true peak.
2914 Range is -9.0 - +0.0. Default value is -2.0.
2915
2916 @item measured_I, measured_i
2917 Measured IL of input file.
2918 Range is -99.0 - +0.0.
2919
2920 @item measured_LRA, measured_lra
2921 Measured LRA of input file.
2922 Range is  0.0 - 99.0.
2923
2924 @item measured_TP, measured_tp
2925 Measured true peak of input file.
2926 Range is  -99.0 - +99.0.
2927
2928 @item measured_thresh
2929 Measured threshold of input file.
2930 Range is -99.0 - +0.0.
2931
2932 @item offset
2933 Set offset gain. Gain is applied before the true-peak limiter.
2934 Range is  -99.0 - +99.0. Default is +0.0.
2935
2936 @item linear
2937 Normalize linearly if possible.
2938 measured_I, measured_LRA, measured_TP, and measured_thresh must also
2939 to be specified in order to use this mode.
2940 Options are true or false. Default is true.
2941
2942 @item dual_mono
2943 Treat mono input files as "dual-mono". If a mono file is intended for playback
2944 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
2945 If set to @code{true}, this option will compensate for this effect.
2946 Multi-channel input files are not affected by this option.
2947 Options are true or false. Default is false.
2948
2949 @item print_format
2950 Set print format for stats. Options are summary, json, or none.
2951 Default value is none.
2952 @end table
2953
2954 @section lowpass
2955
2956 Apply a low-pass filter with 3dB point frequency.
2957 The filter can be either single-pole or double-pole (the default).
2958 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2959
2960 The filter accepts the following options:
2961
2962 @table @option
2963 @item frequency, f
2964 Set frequency in Hz. Default is 500.
2965
2966 @item poles, p
2967 Set number of poles. Default is 2.
2968
2969 @item width_type
2970 Set method to specify band-width of filter.
2971 @table @option
2972 @item h
2973 Hz
2974 @item q
2975 Q-Factor
2976 @item o
2977 octave
2978 @item s
2979 slope
2980 @end table
2981
2982 @item width, w
2983 Specify the band-width of a filter in width_type units.
2984 Applies only to double-pole filter.
2985 The default is 0.707q and gives a Butterworth response.
2986 @end table
2987
2988 @anchor{pan}
2989 @section pan
2990
2991 Mix channels with specific gain levels. The filter accepts the output
2992 channel layout followed by a set of channels definitions.
2993
2994 This filter is also designed to efficiently remap the channels of an audio
2995 stream.
2996
2997 The filter accepts parameters of the form:
2998 "@var{l}|@var{outdef}|@var{outdef}|..."
2999
3000 @table @option
3001 @item l
3002 output channel layout or number of channels
3003
3004 @item outdef
3005 output channel specification, of the form:
3006 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
3007
3008 @item out_name
3009 output channel to define, either a channel name (FL, FR, etc.) or a channel
3010 number (c0, c1, etc.)
3011
3012 @item gain
3013 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3014
3015 @item in_name
3016 input channel to use, see out_name for details; it is not possible to mix
3017 named and numbered input channels
3018 @end table
3019
3020 If the `=' in a channel specification is replaced by `<', then the gains for
3021 that specification will be renormalized so that the total is 1, thus
3022 avoiding clipping noise.
3023
3024 @subsection Mixing examples
3025
3026 For example, if you want to down-mix from stereo to mono, but with a bigger
3027 factor for the left channel:
3028 @example
3029 pan=1c|c0=0.9*c0+0.1*c1
3030 @end example
3031
3032 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3033 7-channels surround:
3034 @example
3035 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3036 @end example
3037
3038 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3039 that should be preferred (see "-ac" option) unless you have very specific
3040 needs.
3041
3042 @subsection Remapping examples
3043
3044 The channel remapping will be effective if, and only if:
3045
3046 @itemize
3047 @item gain coefficients are zeroes or ones,
3048 @item only one input per channel output,
3049 @end itemize
3050
3051 If all these conditions are satisfied, the filter will notify the user ("Pure
3052 channel mapping detected"), and use an optimized and lossless method to do the
3053 remapping.
3054
3055 For example, if you have a 5.1 source and want a stereo audio stream by
3056 dropping the extra channels:
3057 @example
3058 pan="stereo| c0=FL | c1=FR"
3059 @end example
3060
3061 Given the same source, you can also switch front left and front right channels
3062 and keep the input channel layout:
3063 @example
3064 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3065 @end example
3066
3067 If the input is a stereo audio stream, you can mute the front left channel (and
3068 still keep the stereo channel layout) with:
3069 @example
3070 pan="stereo|c1=c1"
3071 @end example
3072
3073 Still with a stereo audio stream input, you can copy the right channel in both
3074 front left and right:
3075 @example
3076 pan="stereo| c0=FR | c1=FR"
3077 @end example
3078
3079 @section replaygain
3080
3081 ReplayGain scanner filter. This filter takes an audio stream as an input and
3082 outputs it unchanged.
3083 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3084
3085 @section resample
3086
3087 Convert the audio sample format, sample rate and channel layout. It is
3088 not meant to be used directly.
3089
3090 @section rubberband
3091 Apply time-stretching and pitch-shifting with librubberband.
3092
3093 The filter accepts the following options:
3094
3095 @table @option
3096 @item tempo
3097 Set tempo scale factor.
3098
3099 @item pitch
3100 Set pitch scale factor.
3101
3102 @item transients
3103 Set transients detector.
3104 Possible values are:
3105 @table @var
3106 @item crisp
3107 @item mixed
3108 @item smooth
3109 @end table
3110
3111 @item detector
3112 Set detector.
3113 Possible values are:
3114 @table @var
3115 @item compound
3116 @item percussive
3117 @item soft
3118 @end table
3119
3120 @item phase
3121 Set phase.
3122 Possible values are:
3123 @table @var
3124 @item laminar
3125 @item independent
3126 @end table
3127
3128 @item window
3129 Set processing window size.
3130 Possible values are:
3131 @table @var
3132 @item standard
3133 @item short
3134 @item long
3135 @end table
3136
3137 @item smoothing
3138 Set smoothing.
3139 Possible values are:
3140 @table @var
3141 @item off
3142 @item on
3143 @end table
3144
3145 @item formant
3146 Enable formant preservation when shift pitching.
3147 Possible values are:
3148 @table @var
3149 @item shifted
3150 @item preserved
3151 @end table
3152
3153 @item pitchq
3154 Set pitch quality.
3155 Possible values are:
3156 @table @var
3157 @item quality
3158 @item speed
3159 @item consistency
3160 @end table
3161
3162 @item channels
3163 Set channels.
3164 Possible values are:
3165 @table @var
3166 @item apart
3167 @item together
3168 @end table
3169 @end table
3170
3171 @section sidechaincompress
3172
3173 This filter acts like normal compressor but has the ability to compress
3174 detected signal using second input signal.
3175 It needs two input streams and returns one output stream.
3176 First input stream will be processed depending on second stream signal.
3177 The filtered signal then can be filtered with other filters in later stages of
3178 processing. See @ref{pan} and @ref{amerge} filter.
3179
3180 The filter accepts the following options:
3181
3182 @table @option
3183 @item level_in
3184 Set input gain. Default is 1. Range is between 0.015625 and 64.
3185
3186 @item threshold
3187 If a signal of second stream raises above this level it will affect the gain
3188 reduction of first stream.
3189 By default is 0.125. Range is between 0.00097563 and 1.
3190
3191 @item ratio
3192 Set a ratio about which the signal is reduced. 1:2 means that if the level
3193 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3194 Default is 2. Range is between 1 and 20.
3195
3196 @item attack
3197 Amount of milliseconds the signal has to rise above the threshold before gain
3198 reduction starts. Default is 20. Range is between 0.01 and 2000.
3199
3200 @item release
3201 Amount of milliseconds the signal has to fall below the threshold before
3202 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3203
3204 @item makeup
3205 Set the amount by how much signal will be amplified after processing.
3206 Default is 2. Range is from 1 and 64.
3207
3208 @item knee
3209 Curve the sharp knee around the threshold to enter gain reduction more softly.
3210 Default is 2.82843. Range is between 1 and 8.
3211
3212 @item link
3213 Choose if the @code{average} level between all channels of side-chain stream
3214 or the louder(@code{maximum}) channel of side-chain stream affects the
3215 reduction. Default is @code{average}.
3216
3217 @item detection
3218 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3219 of @code{rms}. Default is @code{rms} which is mainly smoother.
3220
3221 @item level_sc
3222 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3223
3224 @item mix
3225 How much to use compressed signal in output. Default is 1.
3226 Range is between 0 and 1.
3227 @end table
3228
3229 @subsection Examples
3230
3231 @itemize
3232 @item
3233 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3234 depending on the signal of 2nd input and later compressed signal to be
3235 merged with 2nd input:
3236 @example
3237 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3238 @end example
3239 @end itemize
3240
3241 @section sidechaingate
3242
3243 A sidechain gate acts like a normal (wideband) gate but has the ability to
3244 filter the detected signal before sending it to the gain reduction stage.
3245 Normally a gate uses the full range signal to detect a level above the
3246 threshold.
3247 For example: If you cut all lower frequencies from your sidechain signal
3248 the gate will decrease the volume of your track only if not enough highs
3249 appear. With this technique you are able to reduce the resonation of a
3250 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3251 guitar.
3252 It needs two input streams and returns one output stream.
3253 First input stream will be processed depending on second stream signal.
3254
3255 The filter accepts the following options:
3256
3257 @table @option
3258 @item level_in
3259 Set input level before filtering.
3260 Default is 1. Allowed range is from 0.015625 to 64.
3261
3262 @item range
3263 Set the level of gain reduction when the signal is below the threshold.
3264 Default is 0.06125. Allowed range is from 0 to 1.
3265
3266 @item threshold
3267 If a signal rises above this level the gain reduction is released.
3268 Default is 0.125. Allowed range is from 0 to 1.
3269
3270 @item ratio
3271 Set a ratio about which the signal is reduced.
3272 Default is 2. Allowed range is from 1 to 9000.
3273
3274 @item attack
3275 Amount of milliseconds the signal has to rise above the threshold before gain
3276 reduction stops.
3277 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3278
3279 @item release
3280 Amount of milliseconds the signal has to fall below the threshold before the
3281 reduction is increased again. Default is 250 milliseconds.
3282 Allowed range is from 0.01 to 9000.
3283
3284 @item makeup
3285 Set amount of amplification of signal after processing.
3286 Default is 1. Allowed range is from 1 to 64.
3287
3288 @item knee
3289 Curve the sharp knee around the threshold to enter gain reduction more softly.
3290 Default is 2.828427125. Allowed range is from 1 to 8.
3291
3292 @item detection
3293 Choose if exact signal should be taken for detection or an RMS like one.
3294 Default is rms. Can be peak or rms.
3295
3296 @item link
3297 Choose if the average level between all channels or the louder channel affects
3298 the reduction.
3299 Default is average. Can be average or maximum.
3300
3301 @item level_sc
3302 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3303 @end table
3304
3305 @section silencedetect
3306
3307 Detect silence in an audio stream.
3308
3309 This filter logs a message when it detects that the input audio volume is less
3310 or equal to a noise tolerance value for a duration greater or equal to the
3311 minimum detected noise duration.
3312
3313 The printed times and duration are expressed in seconds.
3314
3315 The filter accepts the following options:
3316
3317 @table @option
3318 @item duration, d
3319 Set silence duration until notification (default is 2 seconds).
3320
3321 @item noise, n
3322 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3323 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3324 @end table
3325
3326 @subsection Examples
3327
3328 @itemize
3329 @item
3330 Detect 5 seconds of silence with -50dB noise tolerance:
3331 @example
3332 silencedetect=n=-50dB:d=5
3333 @end example
3334
3335 @item
3336 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3337 tolerance in @file{silence.mp3}:
3338 @example
3339 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3340 @end example
3341 @end itemize
3342
3343 @section silenceremove
3344
3345 Remove silence from the beginning, middle or end of the audio.
3346
3347 The filter accepts the following options:
3348
3349 @table @option
3350 @item start_periods
3351 This value is used to indicate if audio should be trimmed at beginning of
3352 the audio. A value of zero indicates no silence should be trimmed from the
3353 beginning. When specifying a non-zero value, it trims audio up until it
3354 finds non-silence. Normally, when trimming silence from beginning of audio
3355 the @var{start_periods} will be @code{1} but it can be increased to higher
3356 values to trim all audio up to specific count of non-silence periods.
3357 Default value is @code{0}.
3358
3359 @item start_duration
3360 Specify the amount of time that non-silence must be detected before it stops
3361 trimming audio. By increasing the duration, bursts of noises can be treated
3362 as silence and trimmed off. Default value is @code{0}.
3363
3364 @item start_threshold
3365 This indicates what sample value should be treated as silence. For digital
3366 audio, a value of @code{0} may be fine but for audio recorded from analog,
3367 you may wish to increase the value to account for background noise.
3368 Can be specified in dB (in case "dB" is appended to the specified value)
3369 or amplitude ratio. Default value is @code{0}.
3370
3371 @item stop_periods
3372 Set the count for trimming silence from the end of audio.
3373 To remove silence from the middle of a file, specify a @var{stop_periods}
3374 that is negative. This value is then treated as a positive value and is
3375 used to indicate the effect should restart processing as specified by
3376 @var{start_periods}, making it suitable for removing periods of silence
3377 in the middle of the audio.
3378 Default value is @code{0}.
3379
3380 @item stop_duration
3381 Specify a duration of silence that must exist before audio is not copied any
3382 more. By specifying a higher duration, silence that is wanted can be left in
3383 the audio.
3384 Default value is @code{0}.
3385
3386 @item stop_threshold
3387 This is the same as @option{start_threshold} but for trimming silence from
3388 the end of audio.
3389 Can be specified in dB (in case "dB" is appended to the specified value)
3390 or amplitude ratio. Default value is @code{0}.
3391
3392 @item leave_silence
3393 This indicates that @var{stop_duration} length of audio should be left intact
3394 at the beginning of each period of silence.
3395 For example, if you want to remove long pauses between words but do not want
3396 to remove the pauses completely. Default value is @code{0}.
3397
3398 @item detection
3399 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3400 and works better with digital silence which is exactly 0.
3401 Default value is @code{rms}.
3402
3403 @item window
3404 Set ratio used to calculate size of window for detecting silence.
3405 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3406 @end table
3407
3408 @subsection Examples
3409
3410 @itemize
3411 @item
3412 The following example shows how this filter can be used to start a recording
3413 that does not contain the delay at the start which usually occurs between
3414 pressing the record button and the start of the performance:
3415 @example
3416 silenceremove=1:5:0.02
3417 @end example
3418
3419 @item
3420 Trim all silence encountered from beginning to end where there is more than 1
3421 second of silence in audio:
3422 @example
3423 silenceremove=0:0:0:-1:1:-90dB
3424 @end example
3425 @end itemize
3426
3427 @section sofalizer
3428
3429 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3430 loudspeakers around the user for binaural listening via headphones (audio
3431 formats up to 9 channels supported).
3432 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3433 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3434 Austrian Academy of Sciences.
3435
3436 To enable compilation of this filter you need to configure FFmpeg with
3437 @code{--enable-netcdf}.
3438
3439 The filter accepts the following options:
3440
3441 @table @option
3442 @item sofa
3443 Set the SOFA file used for rendering.
3444
3445 @item gain
3446 Set gain applied to audio. Value is in dB. Default is 0.
3447
3448 @item rotation
3449 Set rotation of virtual loudspeakers in deg. Default is 0.
3450
3451 @item elevation
3452 Set elevation of virtual speakers in deg. Default is 0.
3453
3454 @item radius
3455 Set distance in meters between loudspeakers and the listener with near-field
3456 HRTFs. Default is 1.
3457
3458 @item type
3459 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3460 processing audio in time domain which is slow.
3461 @var{freq} is processing audio in frequency domain which is fast.
3462 Default is @var{freq}.
3463
3464 @item speakers
3465 Set custom positions of virtual loudspeakers. Syntax for this option is:
3466 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3467 Each virtual loudspeaker is described with short channel name following with
3468 azimuth and elevation in degreees.
3469 Each virtual loudspeaker description is separated by '|'.
3470 For example to override front left and front right channel positions use:
3471 'speakers=FL 45 15|FR 345 15'.
3472 Descriptions with unrecognised channel names are ignored.
3473 @end table
3474
3475 @subsection Examples
3476
3477 @itemize
3478 @item
3479 Using ClubFritz6 sofa file:
3480 @example
3481 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3482 @end example
3483
3484 @item
3485 Using ClubFritz12 sofa file and bigger radius with small rotation:
3486 @example
3487 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3488 @end example
3489
3490 @item
3491 Similar as above but with custom speaker positions for front left, front right, rear left and rear right
3492 and also with custom gain:
3493 @example
3494 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|RL 135|RR 225:gain=28"
3495 @end example
3496 @end itemize
3497
3498 @section stereotools
3499
3500 This filter has some handy utilities to manage stereo signals, for converting
3501 M/S stereo recordings to L/R signal while having control over the parameters
3502 or spreading the stereo image of master track.
3503
3504 The filter accepts the following options:
3505
3506 @table @option
3507 @item level_in
3508 Set input level before filtering for both channels. Defaults is 1.
3509 Allowed range is from 0.015625 to 64.
3510
3511 @item level_out
3512 Set output level after filtering for both channels. Defaults is 1.
3513 Allowed range is from 0.015625 to 64.
3514
3515 @item balance_in
3516 Set input balance between both channels. Default is 0.
3517 Allowed range is from -1 to 1.
3518
3519 @item balance_out
3520 Set output balance between both channels. Default is 0.
3521 Allowed range is from -1 to 1.
3522
3523 @item softclip
3524 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3525 clipping. Disabled by default.
3526
3527 @item mutel
3528 Mute the left channel. Disabled by default.
3529
3530 @item muter
3531 Mute the right channel. Disabled by default.
3532
3533 @item phasel
3534 Change the phase of the left channel. Disabled by default.
3535
3536 @item phaser
3537 Change the phase of the right channel. Disabled by default.
3538
3539 @item mode
3540 Set stereo mode. Available values are:
3541
3542 @table @samp
3543 @item lr>lr
3544 Left/Right to Left/Right, this is default.
3545
3546 @item lr>ms
3547 Left/Right to Mid/Side.
3548
3549 @item ms>lr
3550 Mid/Side to Left/Right.
3551
3552 @item lr>ll
3553 Left/Right to Left/Left.
3554
3555 @item lr>rr
3556 Left/Right to Right/Right.
3557
3558 @item lr>l+r
3559 Left/Right to Left + Right.
3560
3561 @item lr>rl
3562 Left/Right to Right/Left.
3563 @end table
3564
3565 @item slev
3566 Set level of side signal. Default is 1.
3567 Allowed range is from 0.015625 to 64.
3568
3569 @item sbal
3570 Set balance of side signal. Default is 0.
3571 Allowed range is from -1 to 1.
3572
3573 @item mlev
3574 Set level of the middle signal. Default is 1.
3575 Allowed range is from 0.015625 to 64.
3576
3577 @item mpan
3578 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3579
3580 @item base
3581 Set stereo base between mono and inversed channels. Default is 0.
3582 Allowed range is from -1 to 1.
3583
3584 @item delay
3585 Set delay in milliseconds how much to delay left from right channel and
3586 vice versa. Default is 0. Allowed range is from -20 to 20.
3587
3588 @item sclevel
3589 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3590
3591 @item phase
3592 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3593 @end table
3594
3595 @subsection Examples
3596
3597 @itemize
3598 @item
3599 Apply karaoke like effect:
3600 @example
3601 stereotools=mlev=0.015625
3602 @end example
3603
3604 @item
3605 Convert M/S signal to L/R:
3606 @example
3607 "stereotools=mode=ms>lr"
3608 @end example
3609 @end itemize
3610
3611 @section stereowiden
3612
3613 This filter enhance the stereo effect by suppressing signal common to both
3614 channels and by delaying the signal of left into right and vice versa,
3615 thereby widening the stereo effect.
3616
3617 The filter accepts the following options:
3618
3619 @table @option
3620 @item delay
3621 Time in milliseconds of the delay of left signal into right and vice versa.
3622 Default is 20 milliseconds.
3623
3624 @item feedback
3625 Amount of gain in delayed signal into right and vice versa. Gives a delay
3626 effect of left signal in right output and vice versa which gives widening
3627 effect. Default is 0.3.
3628
3629 @item crossfeed
3630 Cross feed of left into right with inverted phase. This helps in suppressing
3631 the mono. If the value is 1 it will cancel all the signal common to both
3632 channels. Default is 0.3.
3633
3634 @item drymix
3635 Set level of input signal of original channel. Default is 0.8.
3636 @end table
3637
3638 @section treble
3639
3640 Boost or cut treble (upper) frequencies of the audio using a two-pole
3641 shelving filter with a response similar to that of a standard
3642 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3643
3644 The filter accepts the following options:
3645
3646 @table @option
3647 @item gain, g
3648 Give the gain at whichever is the lower of ~22 kHz and the
3649 Nyquist frequency. Its useful range is about -20 (for a large cut)
3650 to +20 (for a large boost). Beware of clipping when using a positive gain.
3651
3652 @item frequency, f
3653 Set the filter's central frequency and so can be used
3654 to extend or reduce the frequency range to be boosted or cut.
3655 The default value is @code{3000} Hz.
3656
3657 @item width_type
3658 Set method to specify band-width of filter.
3659 @table @option
3660 @item h
3661 Hz
3662 @item q
3663 Q-Factor
3664 @item o
3665 octave
3666 @item s
3667 slope
3668 @end table
3669
3670 @item width, w
3671 Determine how steep is the filter's shelf transition.
3672 @end table
3673
3674 @section tremolo
3675
3676 Sinusoidal amplitude modulation.
3677
3678 The filter accepts the following options:
3679
3680 @table @option
3681 @item f
3682 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3683 (20 Hz or lower) will result in a tremolo effect.
3684 This filter may also be used as a ring modulator by specifying
3685 a modulation frequency higher than 20 Hz.
3686 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3687
3688 @item d
3689 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3690 Default value is 0.5.
3691 @end table
3692
3693 @section vibrato
3694
3695 Sinusoidal phase modulation.
3696
3697 The filter accepts the following options:
3698
3699 @table @option
3700 @item f
3701 Modulation frequency in Hertz.
3702 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3703
3704 @item d
3705 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3706 Default value is 0.5.
3707 @end table
3708
3709 @section volume
3710
3711 Adjust the input audio volume.
3712
3713 It accepts the following parameters:
3714 @table @option
3715
3716 @item volume
3717 Set audio volume expression.
3718
3719 Output values are clipped to the maximum value.
3720
3721 The output audio volume is given by the relation:
3722 @example
3723 @var{output_volume} = @var{volume} * @var{input_volume}
3724 @end example
3725
3726 The default value for @var{volume} is "1.0".
3727
3728 @item precision
3729 This parameter represents the mathematical precision.
3730
3731 It determines which input sample formats will be allowed, which affects the
3732 precision of the volume scaling.
3733
3734 @table @option
3735 @item fixed
3736 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3737 @item float
3738 32-bit floating-point; this limits input sample format to FLT. (default)
3739 @item double
3740 64-bit floating-point; this limits input sample format to DBL.
3741 @end table
3742
3743 @item replaygain
3744 Choose the behaviour on encountering ReplayGain side data in input frames.
3745
3746 @table @option
3747 @item drop
3748 Remove ReplayGain side data, ignoring its contents (the default).
3749
3750 @item ignore
3751 Ignore ReplayGain side data, but leave it in the frame.
3752
3753 @item track
3754 Prefer the track gain, if present.
3755
3756 @item album
3757 Prefer the album gain, if present.
3758 @end table
3759
3760 @item replaygain_preamp
3761 Pre-amplification gain in dB to apply to the selected replaygain gain.
3762
3763 Default value for @var{replaygain_preamp} is 0.0.
3764
3765 @item eval
3766 Set when the volume expression is evaluated.
3767
3768 It accepts the following values:
3769 @table @samp
3770 @item once
3771 only evaluate expression once during the filter initialization, or
3772 when the @samp{volume} command is sent
3773
3774 @item frame
3775 evaluate expression for each incoming frame
3776 @end table
3777
3778 Default value is @samp{once}.
3779 @end table
3780
3781 The volume expression can contain the following parameters.
3782
3783 @table @option
3784 @item n
3785 frame number (starting at zero)
3786 @item nb_channels
3787 number of channels
3788 @item nb_consumed_samples
3789 number of samples consumed by the filter
3790 @item nb_samples
3791 number of samples in the current frame
3792 @item pos
3793 original frame position in the file
3794 @item pts
3795 frame PTS
3796 @item sample_rate
3797 sample rate
3798 @item startpts
3799 PTS at start of stream
3800 @item startt
3801 time at start of stream
3802 @item t
3803 frame time
3804 @item tb
3805 timestamp timebase
3806 @item volume
3807 last set volume value
3808 @end table
3809
3810 Note that when @option{eval} is set to @samp{once} only the
3811 @var{sample_rate} and @var{tb} variables are available, all other
3812 variables will evaluate to NAN.
3813
3814 @subsection Commands
3815
3816 This filter supports the following commands:
3817 @table @option
3818 @item volume
3819 Modify the volume expression.
3820 The command accepts the same syntax of the corresponding option.
3821
3822 If the specified expression is not valid, it is kept at its current
3823 value.
3824 @item replaygain_noclip
3825 Prevent clipping by limiting the gain applied.
3826
3827 Default value for @var{replaygain_noclip} is 1.
3828
3829 @end table
3830
3831 @subsection Examples
3832
3833 @itemize
3834 @item
3835 Halve the input audio volume:
3836 @example
3837 volume=volume=0.5
3838 volume=volume=1/2
3839 volume=volume=-6.0206dB
3840 @end example
3841
3842 In all the above example the named key for @option{volume} can be
3843 omitted, for example like in:
3844 @example
3845 volume=0.5
3846 @end example
3847
3848 @item
3849 Increase input audio power by 6 decibels using fixed-point precision:
3850 @example
3851 volume=volume=6dB:precision=fixed
3852 @end example
3853
3854 @item
3855 Fade volume after time 10 with an annihilation period of 5 seconds:
3856 @example
3857 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3858 @end example
3859 @end itemize
3860
3861 @section volumedetect
3862
3863 Detect the volume of the input video.
3864
3865 The filter has no parameters. The input is not modified. Statistics about
3866 the volume will be printed in the log when the input stream end is reached.
3867
3868 In particular it will show the mean volume (root mean square), maximum
3869 volume (on a per-sample basis), and the beginning of a histogram of the
3870 registered volume values (from the maximum value to a cumulated 1/1000 of
3871 the samples).
3872
3873 All volumes are in decibels relative to the maximum PCM value.
3874
3875 @subsection Examples
3876
3877 Here is an excerpt of the output:
3878 @example
3879 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3880 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3881 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3882 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3883 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3884 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3885 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3886 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3887 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3888 @end example
3889
3890 It means that:
3891 @itemize
3892 @item
3893 The mean square energy is approximately -27 dB, or 10^-2.7.
3894 @item
3895 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3896 @item
3897 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3898 @end itemize
3899
3900 In other words, raising the volume by +4 dB does not cause any clipping,
3901 raising it by +5 dB causes clipping for 6 samples, etc.
3902
3903 @c man end AUDIO FILTERS
3904
3905 @chapter Audio Sources
3906 @c man begin AUDIO SOURCES
3907
3908 Below is a description of the currently available audio sources.
3909
3910 @section abuffer
3911
3912 Buffer audio frames, and make them available to the filter chain.
3913
3914 This source is mainly intended for a programmatic use, in particular
3915 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3916
3917 It accepts the following parameters:
3918 @table @option
3919
3920 @item time_base
3921 The timebase which will be used for timestamps of submitted frames. It must be
3922 either a floating-point number or in @var{numerator}/@var{denominator} form.
3923
3924 @item sample_rate
3925 The sample rate of the incoming audio buffers.
3926
3927 @item sample_fmt
3928 The sample format of the incoming audio buffers.
3929 Either a sample format name or its corresponding integer representation from
3930 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3931
3932 @item channel_layout
3933 The channel layout of the incoming audio buffers.
3934 Either a channel layout name from channel_layout_map in
3935 @file{libavutil/channel_layout.c} or its corresponding integer representation
3936 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3937
3938 @item channels
3939 The number of channels of the incoming audio buffers.
3940 If both @var{channels} and @var{channel_layout} are specified, then they
3941 must be consistent.
3942
3943 @end table
3944
3945 @subsection Examples
3946
3947 @example
3948 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3949 @end example
3950
3951 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3952 Since the sample format with name "s16p" corresponds to the number
3953 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3954 equivalent to:
3955 @example
3956 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3957 @end example
3958
3959 @section aevalsrc
3960
3961 Generate an audio signal specified by an expression.
3962
3963 This source accepts in input one or more expressions (one for each
3964 channel), which are evaluated and used to generate a corresponding
3965 audio signal.
3966
3967 This source accepts the following options:
3968
3969 @table @option
3970 @item exprs
3971 Set the '|'-separated expressions list for each separate channel. In case the
3972 @option{channel_layout} option is not specified, the selected channel layout
3973 depends on the number of provided expressions. Otherwise the last
3974 specified expression is applied to the remaining output channels.
3975
3976 @item channel_layout, c
3977 Set the channel layout. The number of channels in the specified layout
3978 must be equal to the number of specified expressions.
3979
3980 @item duration, d
3981 Set the minimum duration of the sourced audio. See
3982 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3983 for the accepted syntax.
3984 Note that the resulting duration may be greater than the specified
3985 duration, as the generated audio is always cut at the end of a
3986 complete frame.
3987
3988 If not specified, or the expressed duration is negative, the audio is
3989 supposed to be generated forever.
3990
3991 @item nb_samples, n
3992 Set the number of samples per channel per each output frame,
3993 default to 1024.
3994
3995 @item sample_rate, s
3996 Specify the sample rate, default to 44100.
3997 @end table
3998
3999 Each expression in @var{exprs} can contain the following constants:
4000
4001 @table @option
4002 @item n
4003 number of the evaluated sample, starting from 0
4004
4005 @item t
4006 time of the evaluated sample expressed in seconds, starting from 0
4007
4008 @item s
4009 sample rate
4010
4011 @end table
4012
4013 @subsection Examples
4014
4015 @itemize
4016 @item
4017 Generate silence:
4018 @example
4019 aevalsrc=0
4020 @end example
4021
4022 @item
4023 Generate a sin signal with frequency of 440 Hz, set sample rate to
4024 8000 Hz:
4025 @example
4026 aevalsrc="sin(440*2*PI*t):s=8000"
4027 @end example
4028
4029 @item
4030 Generate a two channels signal, specify the channel layout (Front
4031 Center + Back Center) explicitly:
4032 @example
4033 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4034 @end example
4035
4036 @item
4037 Generate white noise:
4038 @example
4039 aevalsrc="-2+random(0)"
4040 @end example
4041
4042 @item
4043 Generate an amplitude modulated signal:
4044 @example
4045 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4046 @end example
4047
4048 @item
4049 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4050 @example
4051 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4052 @end example
4053
4054 @end itemize
4055
4056 @section anullsrc
4057
4058 The null audio source, return unprocessed audio frames. It is mainly useful
4059 as a template and to be employed in analysis / debugging tools, or as
4060 the source for filters which ignore the input data (for example the sox
4061 synth filter).
4062
4063 This source accepts the following options:
4064
4065 @table @option
4066
4067 @item channel_layout, cl
4068
4069 Specifies the channel layout, and can be either an integer or a string
4070 representing a channel layout. The default value of @var{channel_layout}
4071 is "stereo".
4072
4073 Check the channel_layout_map definition in
4074 @file{libavutil/channel_layout.c} for the mapping between strings and
4075 channel layout values.
4076
4077 @item sample_rate, r
4078 Specifies the sample rate, and defaults to 44100.
4079
4080 @item nb_samples, n
4081 Set the number of samples per requested frames.
4082
4083 @end table
4084
4085 @subsection Examples
4086
4087 @itemize
4088 @item
4089 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4090 @example
4091 anullsrc=r=48000:cl=4
4092 @end example
4093
4094 @item
4095 Do the same operation with a more obvious syntax:
4096 @example
4097 anullsrc=r=48000:cl=mono
4098 @end example
4099 @end itemize
4100
4101 All the parameters need to be explicitly defined.
4102
4103 @section flite
4104
4105 Synthesize a voice utterance using the libflite library.
4106
4107 To enable compilation of this filter you need to configure FFmpeg with
4108 @code{--enable-libflite}.
4109
4110 Note that the flite library is not thread-safe.
4111
4112 The filter accepts the following options:
4113
4114 @table @option
4115
4116 @item list_voices
4117 If set to 1, list the names of the available voices and exit
4118 immediately. Default value is 0.
4119
4120 @item nb_samples, n
4121 Set the maximum number of samples per frame. Default value is 512.
4122
4123 @item textfile
4124 Set the filename containing the text to speak.
4125
4126 @item text
4127 Set the text to speak.
4128
4129 @item voice, v
4130 Set the voice to use for the speech synthesis. Default value is
4131 @code{kal}. See also the @var{list_voices} option.
4132 @end table
4133
4134 @subsection Examples
4135
4136 @itemize
4137 @item
4138 Read from file @file{speech.txt}, and synthesize the text using the
4139 standard flite voice:
4140 @example
4141 flite=textfile=speech.txt
4142 @end example
4143
4144 @item
4145 Read the specified text selecting the @code{slt} voice:
4146 @example
4147 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 Input text to ffmpeg:
4152 @example
4153 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4154 @end example
4155
4156 @item
4157 Make @file{ffplay} speak the specified text, using @code{flite} and
4158 the @code{lavfi} device:
4159 @example
4160 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4161 @end example
4162 @end itemize
4163
4164 For more information about libflite, check:
4165 @url{http://www.speech.cs.cmu.edu/flite/}
4166
4167 @section anoisesrc
4168
4169 Generate a noise audio signal.
4170
4171 The filter accepts the following options:
4172
4173 @table @option
4174 @item sample_rate, r
4175 Specify the sample rate. Default value is 48000 Hz.
4176
4177 @item amplitude, a
4178 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4179 is 1.0.
4180
4181 @item duration, d
4182 Specify the duration of the generated audio stream. Not specifying this option
4183 results in noise with an infinite length.
4184
4185 @item color, colour, c
4186 Specify the color of noise. Available noise colors are white, pink, and brown.
4187 Default color is white.
4188
4189 @item seed, s
4190 Specify a value used to seed the PRNG.
4191
4192 @item nb_samples, n
4193 Set the number of samples per each output frame, default is 1024.
4194 @end table
4195
4196 @subsection Examples
4197
4198 @itemize
4199
4200 @item
4201 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4202 @example
4203 anoisesrc=d=60:c=pink:r=44100:a=0.5
4204 @end example
4205 @end itemize
4206
4207 @section sine
4208
4209 Generate an audio signal made of a sine wave with amplitude 1/8.
4210
4211 The audio signal is bit-exact.
4212
4213 The filter accepts the following options:
4214
4215 @table @option
4216
4217 @item frequency, f
4218 Set the carrier frequency. Default is 440 Hz.
4219
4220 @item beep_factor, b
4221 Enable a periodic beep every second with frequency @var{beep_factor} times
4222 the carrier frequency. Default is 0, meaning the beep is disabled.
4223
4224 @item sample_rate, r
4225 Specify the sample rate, default is 44100.
4226
4227 @item duration, d
4228 Specify the duration of the generated audio stream.
4229
4230 @item samples_per_frame
4231 Set the number of samples per output frame.
4232
4233 The expression can contain the following constants:
4234
4235 @table @option
4236 @item n
4237 The (sequential) number of the output audio frame, starting from 0.
4238
4239 @item pts
4240 The PTS (Presentation TimeStamp) of the output audio frame,
4241 expressed in @var{TB} units.
4242
4243 @item t
4244 The PTS of the output audio frame, expressed in seconds.
4245
4246 @item TB
4247 The timebase of the output audio frames.
4248 @end table
4249
4250 Default is @code{1024}.
4251 @end table
4252
4253 @subsection Examples
4254
4255 @itemize
4256
4257 @item
4258 Generate a simple 440 Hz sine wave:
4259 @example
4260 sine
4261 @end example
4262
4263 @item
4264 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4265 @example
4266 sine=220:4:d=5
4267 sine=f=220:b=4:d=5
4268 sine=frequency=220:beep_factor=4:duration=5
4269 @end example
4270
4271 @item
4272 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4273 pattern:
4274 @example
4275 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4276 @end example
4277 @end itemize
4278
4279 @c man end AUDIO SOURCES
4280
4281 @chapter Audio Sinks
4282 @c man begin AUDIO SINKS
4283
4284 Below is a description of the currently available audio sinks.
4285
4286 @section abuffersink
4287
4288 Buffer audio frames, and make them available to the end of filter chain.
4289
4290 This sink is mainly intended for programmatic use, in particular
4291 through the interface defined in @file{libavfilter/buffersink.h}
4292 or the options system.
4293
4294 It accepts a pointer to an AVABufferSinkContext structure, which
4295 defines the incoming buffers' formats, to be passed as the opaque
4296 parameter to @code{avfilter_init_filter} for initialization.
4297 @section anullsink
4298
4299 Null audio sink; do absolutely nothing with the input audio. It is
4300 mainly useful as a template and for use in analysis / debugging
4301 tools.
4302
4303 @c man end AUDIO SINKS
4304
4305 @chapter Video Filters
4306 @c man begin VIDEO FILTERS
4307
4308 When you configure your FFmpeg build, you can disable any of the
4309 existing filters using @code{--disable-filters}.
4310 The configure output will show the video filters included in your
4311 build.
4312
4313 Below is a description of the currently available video filters.
4314
4315 @section alphaextract
4316
4317 Extract the alpha component from the input as a grayscale video. This
4318 is especially useful with the @var{alphamerge} filter.
4319
4320 @section alphamerge
4321
4322 Add or replace the alpha component of the primary input with the
4323 grayscale value of a second input. This is intended for use with
4324 @var{alphaextract} to allow the transmission or storage of frame
4325 sequences that have alpha in a format that doesn't support an alpha
4326 channel.
4327
4328 For example, to reconstruct full frames from a normal YUV-encoded video
4329 and a separate video created with @var{alphaextract}, you might use:
4330 @example
4331 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4332 @end example
4333
4334 Since this filter is designed for reconstruction, it operates on frame
4335 sequences without considering timestamps, and terminates when either
4336 input reaches end of stream. This will cause problems if your encoding
4337 pipeline drops frames. If you're trying to apply an image as an
4338 overlay to a video stream, consider the @var{overlay} filter instead.
4339
4340 @section ass
4341
4342 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4343 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4344 Substation Alpha) subtitles files.
4345
4346 This filter accepts the following option in addition to the common options from
4347 the @ref{subtitles} filter:
4348
4349 @table @option
4350 @item shaping
4351 Set the shaping engine
4352
4353 Available values are:
4354 @table @samp
4355 @item auto
4356 The default libass shaping engine, which is the best available.
4357 @item simple
4358 Fast, font-agnostic shaper that can do only substitutions
4359 @item complex
4360 Slower shaper using OpenType for substitutions and positioning
4361 @end table
4362
4363 The default is @code{auto}.
4364 @end table
4365
4366 @section atadenoise
4367 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4368
4369 The filter accepts the following options:
4370
4371 @table @option
4372 @item 0a
4373 Set threshold A for 1st plane. Default is 0.02.
4374 Valid range is 0 to 0.3.
4375
4376 @item 0b
4377 Set threshold B for 1st plane. Default is 0.04.
4378 Valid range is 0 to 5.
4379
4380 @item 1a
4381 Set threshold A for 2nd plane. Default is 0.02.
4382 Valid range is 0 to 0.3.
4383
4384 @item 1b
4385 Set threshold B for 2nd plane. Default is 0.04.
4386 Valid range is 0 to 5.
4387
4388 @item 2a
4389 Set threshold A for 3rd plane. Default is 0.02.
4390 Valid range is 0 to 0.3.
4391
4392 @item 2b
4393 Set threshold B for 3rd plane. Default is 0.04.
4394 Valid range is 0 to 5.
4395
4396 Threshold A is designed to react on abrupt changes in the input signal and
4397 threshold B is designed to react on continuous changes in the input signal.
4398
4399 @item s
4400 Set number of frames filter will use for averaging. Default is 33. Must be odd
4401 number in range [5, 129].
4402
4403 @item p
4404 Set what planes of frame filter will use for averaging. Default is all.
4405 @end table
4406
4407 @section avgblur
4408
4409 Apply average blur filter.
4410
4411 The filter accepts the following options:
4412
4413 @table @option
4414 @item sizeX
4415 Set horizontal kernel size.
4416
4417 @item planes
4418 Set which planes to filter. By default all planes are filtered.
4419
4420 @item sizeY
4421 Set vertical kernel size, if zero it will be same as @code{sizeX}.
4422 Default is @code{0}.
4423 @end table
4424
4425 @section bbox
4426
4427 Compute the bounding box for the non-black pixels in the input frame
4428 luminance plane.
4429
4430 This filter computes the bounding box containing all the pixels with a
4431 luminance value greater than the minimum allowed value.
4432 The parameters describing the bounding box are printed on the filter
4433 log.
4434
4435 The filter accepts the following option:
4436
4437 @table @option
4438 @item min_val
4439 Set the minimal luminance value. Default is @code{16}.
4440 @end table
4441
4442 @section bitplanenoise
4443
4444 Show and measure bit plane noise.
4445
4446 The filter accepts the following options:
4447
4448 @table @option
4449 @item bitplane
4450 Set which plane to analyze. Default is @code{1}.
4451
4452 @item filter
4453 Filter out noisy pixels from @code{bitplane} set above.
4454 Default is disabled.
4455 @end table
4456
4457 @section blackdetect
4458
4459 Detect video intervals that are (almost) completely black. Can be
4460 useful to detect chapter transitions, commercials, or invalid
4461 recordings. Output lines contains the time for the start, end and
4462 duration of the detected black interval expressed in seconds.
4463
4464 In order to display the output lines, you need to set the loglevel at
4465 least to the AV_LOG_INFO value.
4466
4467 The filter accepts the following options:
4468
4469 @table @option
4470 @item black_min_duration, d
4471 Set the minimum detected black duration expressed in seconds. It must
4472 be a non-negative floating point number.
4473
4474 Default value is 2.0.
4475
4476 @item picture_black_ratio_th, pic_th
4477 Set the threshold for considering a picture "black".
4478 Express the minimum value for the ratio:
4479 @example
4480 @var{nb_black_pixels} / @var{nb_pixels}
4481 @end example
4482
4483 for which a picture is considered black.
4484 Default value is 0.98.
4485
4486 @item pixel_black_th, pix_th
4487 Set the threshold for considering a pixel "black".
4488
4489 The threshold expresses the maximum pixel luminance value for which a
4490 pixel is considered "black". The provided value is scaled according to
4491 the following equation:
4492 @example
4493 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4494 @end example
4495
4496 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4497 the input video format, the range is [0-255] for YUV full-range
4498 formats and [16-235] for YUV non full-range formats.
4499
4500 Default value is 0.10.
4501 @end table
4502
4503 The following example sets the maximum pixel threshold to the minimum
4504 value, and detects only black intervals of 2 or more seconds:
4505 @example
4506 blackdetect=d=2:pix_th=0.00
4507 @end example
4508
4509 @section blackframe
4510
4511 Detect frames that are (almost) completely black. Can be useful to
4512 detect chapter transitions or commercials. Output lines consist of
4513 the frame number of the detected frame, the percentage of blackness,
4514 the position in the file if known or -1 and the timestamp in seconds.
4515
4516 In order to display the output lines, you need to set the loglevel at
4517 least to the AV_LOG_INFO value.
4518
4519 It accepts the following parameters:
4520
4521 @table @option
4522
4523 @item amount
4524 The percentage of the pixels that have to be below the threshold; it defaults to
4525 @code{98}.
4526
4527 @item threshold, thresh
4528 The threshold below which a pixel value is considered black; it defaults to
4529 @code{32}.
4530
4531 @end table
4532
4533 @section blend, tblend
4534
4535 Blend two video frames into each other.
4536
4537 The @code{blend} filter takes two input streams and outputs one
4538 stream, the first input is the "top" layer and second input is
4539 "bottom" layer.  By default, the output terminates when the longest input terminates.
4540
4541 The @code{tblend} (time blend) filter takes two consecutive frames
4542 from one single stream, and outputs the result obtained by blending
4543 the new frame on top of the old frame.
4544
4545 A description of the accepted options follows.
4546
4547 @table @option
4548 @item c0_mode
4549 @item c1_mode
4550 @item c2_mode
4551 @item c3_mode
4552 @item all_mode
4553 Set blend mode for specific pixel component or all pixel components in case
4554 of @var{all_mode}. Default value is @code{normal}.
4555
4556 Available values for component modes are:
4557 @table @samp
4558 @item addition
4559 @item addition128
4560 @item and
4561 @item average
4562 @item burn
4563 @item darken
4564 @item difference
4565 @item difference128
4566 @item divide
4567 @item dodge
4568 @item freeze
4569 @item exclusion
4570 @item glow
4571 @item hardlight
4572 @item hardmix
4573 @item heat
4574 @item lighten
4575 @item linearlight
4576 @item multiply
4577 @item multiply128
4578 @item negation
4579 @item normal
4580 @item or
4581 @item overlay
4582 @item phoenix
4583 @item pinlight
4584 @item reflect
4585 @item screen
4586 @item softlight
4587 @item subtract
4588 @item vividlight
4589 @item xor
4590 @end table
4591
4592 @item c0_opacity
4593 @item c1_opacity
4594 @item c2_opacity
4595 @item c3_opacity
4596 @item all_opacity
4597 Set blend opacity for specific pixel component or all pixel components in case
4598 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4599
4600 @item c0_expr
4601 @item c1_expr
4602 @item c2_expr
4603 @item c3_expr
4604 @item all_expr
4605 Set blend expression for specific pixel component or all pixel components in case
4606 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4607
4608 The expressions can use the following variables:
4609
4610 @table @option
4611 @item N
4612 The sequential number of the filtered frame, starting from @code{0}.
4613
4614 @item X
4615 @item Y
4616 the coordinates of the current sample
4617
4618 @item W
4619 @item H
4620 the width and height of currently filtered plane
4621
4622 @item SW
4623 @item SH
4624 Width and height scale depending on the currently filtered plane. It is the
4625 ratio between the corresponding luma plane number of pixels and the current
4626 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4627 @code{0.5,0.5} for chroma planes.
4628
4629 @item T
4630 Time of the current frame, expressed in seconds.
4631
4632 @item TOP, A
4633 Value of pixel component at current location for first video frame (top layer).
4634
4635 @item BOTTOM, B
4636 Value of pixel component at current location for second video frame (bottom layer).
4637 @end table
4638
4639 @item shortest
4640 Force termination when the shortest input terminates. Default is
4641 @code{0}. This option is only defined for the @code{blend} filter.
4642
4643 @item repeatlast
4644 Continue applying the last bottom frame after the end of the stream. A value of
4645 @code{0} disable the filter after the last frame of the bottom layer is reached.
4646 Default is @code{1}. This option is only defined for the @code{blend} filter.
4647 @end table
4648
4649 @subsection Examples
4650
4651 @itemize
4652 @item
4653 Apply transition from bottom layer to top layer in first 10 seconds:
4654 @example
4655 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4656 @end example
4657
4658 @item
4659 Apply 1x1 checkerboard effect:
4660 @example
4661 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4662 @end example
4663
4664 @item
4665 Apply uncover left effect:
4666 @example
4667 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4668 @end example
4669
4670 @item
4671 Apply uncover down effect:
4672 @example
4673 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4674 @end example
4675
4676 @item
4677 Apply uncover up-left effect:
4678 @example
4679 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4680 @end example
4681
4682 @item
4683 Split diagonally video and shows top and bottom layer on each side:
4684 @example
4685 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4686 @end example
4687
4688 @item
4689 Display differences between the current and the previous frame:
4690 @example
4691 tblend=all_mode=difference128
4692 @end example
4693 @end itemize
4694
4695 @section boxblur
4696
4697 Apply a boxblur algorithm to the input video.
4698
4699 It accepts the following parameters:
4700
4701 @table @option
4702
4703 @item luma_radius, lr
4704 @item luma_power, lp
4705 @item chroma_radius, cr
4706 @item chroma_power, cp
4707 @item alpha_radius, ar
4708 @item alpha_power, ap
4709
4710 @end table
4711
4712 A description of the accepted options follows.
4713
4714 @table @option
4715 @item luma_radius, lr
4716 @item chroma_radius, cr
4717 @item alpha_radius, ar
4718 Set an expression for the box radius in pixels used for blurring the
4719 corresponding input plane.
4720
4721 The radius value must be a non-negative number, and must not be
4722 greater than the value of the expression @code{min(w,h)/2} for the
4723 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4724 planes.
4725
4726 Default value for @option{luma_radius} is "2". If not specified,
4727 @option{chroma_radius} and @option{alpha_radius} default to the
4728 corresponding value set for @option{luma_radius}.
4729
4730 The expressions can contain the following constants:
4731 @table @option
4732 @item w
4733 @item h
4734 The input width and height in pixels.
4735
4736 @item cw
4737 @item ch
4738 The input chroma image width and height in pixels.
4739
4740 @item hsub
4741 @item vsub
4742 The horizontal and vertical chroma subsample values. For example, for the
4743 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4744 @end table
4745
4746 @item luma_power, lp
4747 @item chroma_power, cp
4748 @item alpha_power, ap
4749 Specify how many times the boxblur filter is applied to the
4750 corresponding plane.
4751
4752 Default value for @option{luma_power} is 2. If not specified,
4753 @option{chroma_power} and @option{alpha_power} default to the
4754 corresponding value set for @option{luma_power}.
4755
4756 A value of 0 will disable the effect.
4757 @end table
4758
4759 @subsection Examples
4760
4761 @itemize
4762 @item
4763 Apply a boxblur filter with the luma, chroma, and alpha radii
4764 set to 2:
4765 @example
4766 boxblur=luma_radius=2:luma_power=1
4767 boxblur=2:1
4768 @end example
4769
4770 @item
4771 Set the luma radius to 2, and alpha and chroma radius to 0:
4772 @example
4773 boxblur=2:1:cr=0:ar=0
4774 @end example
4775
4776 @item
4777 Set the luma and chroma radii to a fraction of the video dimension:
4778 @example
4779 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4780 @end example
4781 @end itemize
4782
4783 @section bwdif
4784
4785 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4786 Deinterlacing Filter").
4787
4788 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4789 interpolation algorithms.
4790 It accepts the following parameters:
4791
4792 @table @option
4793 @item mode
4794 The interlacing mode to adopt. It accepts one of the following values:
4795
4796 @table @option
4797 @item 0, send_frame
4798 Output one frame for each frame.
4799 @item 1, send_field
4800 Output one frame for each field.
4801 @end table
4802
4803 The default value is @code{send_field}.
4804
4805 @item parity
4806 The picture field parity assumed for the input interlaced video. It accepts one
4807 of the following values:
4808
4809 @table @option
4810 @item 0, tff
4811 Assume the top field is first.
4812 @item 1, bff
4813 Assume the bottom field is first.
4814 @item -1, auto
4815 Enable automatic detection of field parity.
4816 @end table
4817
4818 The default value is @code{auto}.
4819 If the interlacing is unknown or the decoder does not export this information,
4820 top field first will be assumed.
4821
4822 @item deint
4823 Specify which frames to deinterlace. Accept one of the following
4824 values:
4825
4826 @table @option
4827 @item 0, all
4828 Deinterlace all frames.
4829 @item 1, interlaced
4830 Only deinterlace frames marked as interlaced.
4831 @end table
4832
4833 The default value is @code{all}.
4834 @end table
4835
4836 @section chromakey
4837 YUV colorspace color/chroma keying.
4838
4839 The filter accepts the following options:
4840
4841 @table @option
4842 @item color
4843 The color which will be replaced with transparency.
4844
4845 @item similarity
4846 Similarity percentage with the key color.
4847
4848 0.01 matches only the exact key color, while 1.0 matches everything.
4849
4850 @item blend
4851 Blend percentage.
4852
4853 0.0 makes pixels either fully transparent, or not transparent at all.
4854
4855 Higher values result in semi-transparent pixels, with a higher transparency
4856 the more similar the pixels color is to the key color.
4857
4858 @item yuv
4859 Signals that the color passed is already in YUV instead of RGB.
4860
4861 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4862 This can be used to pass exact YUV values as hexadecimal numbers.
4863 @end table
4864
4865 @subsection Examples
4866
4867 @itemize
4868 @item
4869 Make every green pixel in the input image transparent:
4870 @example
4871 ffmpeg -i input.png -vf chromakey=green out.png
4872 @end example
4873
4874 @item
4875 Overlay a greenscreen-video on top of a static black background.
4876 @example
4877 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
4878 @end example
4879 @end itemize
4880
4881 @section ciescope
4882
4883 Display CIE color diagram with pixels overlaid onto it.
4884
4885 The filter accepts the following options:
4886
4887 @table @option
4888 @item system
4889 Set color system.
4890
4891 @table @samp
4892 @item ntsc, 470m
4893 @item ebu, 470bg
4894 @item smpte
4895 @item 240m
4896 @item apple
4897 @item widergb
4898 @item cie1931
4899 @item rec709, hdtv
4900 @item uhdtv, rec2020
4901 @end table
4902
4903 @item cie
4904 Set CIE system.
4905
4906 @table @samp
4907 @item xyy
4908 @item ucs
4909 @item luv
4910 @end table
4911
4912 @item gamuts
4913 Set what gamuts to draw.
4914
4915 See @code{system} option for available values.
4916
4917 @item size, s
4918 Set ciescope size, by default set to 512.
4919
4920 @item intensity, i
4921 Set intensity used to map input pixel values to CIE diagram.
4922
4923 @item contrast
4924 Set contrast used to draw tongue colors that are out of active color system gamut.
4925
4926 @item corrgamma
4927 Correct gamma displayed on scope, by default enabled.
4928
4929 @item showwhite
4930 Show white point on CIE diagram, by default disabled.
4931
4932 @item gamma
4933 Set input gamma. Used only with XYZ input color space.
4934 @end table
4935
4936 @section codecview
4937
4938 Visualize information exported by some codecs.
4939
4940 Some codecs can export information through frames using side-data or other
4941 means. For example, some MPEG based codecs export motion vectors through the
4942 @var{export_mvs} flag in the codec @option{flags2} option.
4943
4944 The filter accepts the following option:
4945
4946 @table @option
4947 @item mv
4948 Set motion vectors to visualize.
4949
4950 Available flags for @var{mv} are:
4951
4952 @table @samp
4953 @item pf
4954 forward predicted MVs of P-frames
4955 @item bf
4956 forward predicted MVs of B-frames
4957 @item bb
4958 backward predicted MVs of B-frames
4959 @end table
4960
4961 @item qp
4962 Display quantization parameters using the chroma planes.
4963
4964 @item mv_type, mvt
4965 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
4966
4967 Available flags for @var{mv_type} are:
4968
4969 @table @samp
4970 @item fp
4971 forward predicted MVs
4972 @item bp
4973 backward predicted MVs
4974 @end table
4975
4976 @item frame_type, ft
4977 Set frame type to visualize motion vectors of.
4978
4979 Available flags for @var{frame_type} are:
4980
4981 @table @samp
4982 @item if
4983 intra-coded frames (I-frames)
4984 @item pf
4985 predicted frames (P-frames)
4986 @item bf
4987 bi-directionally predicted frames (B-frames)
4988 @end table
4989 @end table
4990
4991 @subsection Examples
4992
4993 @itemize
4994 @item
4995 Visualize forward predicted MVs of all frames using @command{ffplay}:
4996 @example
4997 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
4998 @end example
4999
5000 @item
5001 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5002 @example
5003 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5004 @end example
5005 @end itemize
5006
5007 @section colorbalance
5008 Modify intensity of primary colors (red, green and blue) of input frames.
5009
5010 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5011 regions for the red-cyan, green-magenta or blue-yellow balance.
5012
5013 A positive adjustment value shifts the balance towards the primary color, a negative
5014 value towards the complementary color.
5015
5016 The filter accepts the following options:
5017
5018 @table @option
5019 @item rs
5020 @item gs
5021 @item bs
5022 Adjust red, green and blue shadows (darkest pixels).
5023
5024 @item rm
5025 @item gm
5026 @item bm
5027 Adjust red, green and blue midtones (medium pixels).
5028
5029 @item rh
5030 @item gh
5031 @item bh
5032 Adjust red, green and blue highlights (brightest pixels).
5033
5034 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5035 @end table
5036
5037 @subsection Examples
5038
5039 @itemize
5040 @item
5041 Add red color cast to shadows:
5042 @example
5043 colorbalance=rs=.3
5044 @end example
5045 @end itemize
5046
5047 @section colorkey
5048 RGB colorspace color keying.
5049
5050 The filter accepts the following options:
5051
5052 @table @option
5053 @item color
5054 The color which will be replaced with transparency.
5055
5056 @item similarity
5057 Similarity percentage with the key color.
5058
5059 0.01 matches only the exact key color, while 1.0 matches everything.
5060
5061 @item blend
5062 Blend percentage.
5063
5064 0.0 makes pixels either fully transparent, or not transparent at all.
5065
5066 Higher values result in semi-transparent pixels, with a higher transparency
5067 the more similar the pixels color is to the key color.
5068 @end table
5069
5070 @subsection Examples
5071
5072 @itemize
5073 @item
5074 Make every green pixel in the input image transparent:
5075 @example
5076 ffmpeg -i input.png -vf colorkey=green out.png
5077 @end example
5078
5079 @item
5080 Overlay a greenscreen-video on top of a static background image.
5081 @example
5082 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
5083 @end example
5084 @end itemize
5085
5086 @section colorlevels
5087
5088 Adjust video input frames using levels.
5089
5090 The filter accepts the following options:
5091
5092 @table @option
5093 @item rimin
5094 @item gimin
5095 @item bimin
5096 @item aimin
5097 Adjust red, green, blue and alpha input black point.
5098 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5099
5100 @item rimax
5101 @item gimax
5102 @item bimax
5103 @item aimax
5104 Adjust red, green, blue and alpha input white point.
5105 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5106
5107 Input levels are used to lighten highlights (bright tones), darken shadows
5108 (dark tones), change the balance of bright and dark tones.
5109
5110 @item romin
5111 @item gomin
5112 @item bomin
5113 @item aomin
5114 Adjust red, green, blue and alpha output black point.
5115 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5116
5117 @item romax
5118 @item gomax
5119 @item bomax
5120 @item aomax
5121 Adjust red, green, blue and alpha output white point.
5122 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5123
5124 Output levels allows manual selection of a constrained output level range.
5125 @end table
5126
5127 @subsection Examples
5128
5129 @itemize
5130 @item
5131 Make video output darker:
5132 @example
5133 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5134 @end example
5135
5136 @item
5137 Increase contrast:
5138 @example
5139 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5140 @end example
5141
5142 @item
5143 Make video output lighter:
5144 @example
5145 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5146 @end example
5147
5148 @item
5149 Increase brightness:
5150 @example
5151 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5152 @end example
5153 @end itemize
5154
5155 @section colorchannelmixer
5156
5157 Adjust video input frames by re-mixing color channels.
5158
5159 This filter modifies a color channel by adding the values associated to
5160 the other channels of the same pixels. For example if the value to
5161 modify is red, the output value will be:
5162 @example
5163 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5164 @end example
5165
5166 The filter accepts the following options:
5167
5168 @table @option
5169 @item rr
5170 @item rg
5171 @item rb
5172 @item ra
5173 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5174 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5175
5176 @item gr
5177 @item gg
5178 @item gb
5179 @item ga
5180 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5181 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5182
5183 @item br
5184 @item bg
5185 @item bb
5186 @item ba
5187 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5188 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5189
5190 @item ar
5191 @item ag
5192 @item ab
5193 @item aa
5194 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5195 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5196
5197 Allowed ranges for options are @code{[-2.0, 2.0]}.
5198 @end table
5199
5200 @subsection Examples
5201
5202 @itemize
5203 @item
5204 Convert source to grayscale:
5205 @example
5206 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5207 @end example
5208 @item
5209 Simulate sepia tones:
5210 @example
5211 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5212 @end example
5213 @end itemize
5214
5215 @section colormatrix
5216
5217 Convert color matrix.
5218
5219 The filter accepts the following options:
5220
5221 @table @option
5222 @item src
5223 @item dst
5224 Specify the source and destination color matrix. Both values must be
5225 specified.
5226
5227 The accepted values are:
5228 @table @samp
5229 @item bt709
5230 BT.709
5231
5232 @item bt601
5233 BT.601
5234
5235 @item smpte240m
5236 SMPTE-240M
5237
5238 @item fcc
5239 FCC
5240
5241 @item bt2020
5242 BT.2020
5243 @end table
5244 @end table
5245
5246 For example to convert from BT.601 to SMPTE-240M, use the command:
5247 @example
5248 colormatrix=bt601:smpte240m
5249 @end example
5250
5251 @section colorspace
5252
5253 Convert colorspace, transfer characteristics or color primaries.
5254
5255 The filter accepts the following options:
5256
5257 @table @option
5258 @anchor{all}
5259 @item all
5260 Specify all color properties at once.
5261
5262 The accepted values are:
5263 @table @samp
5264 @item bt470m
5265 BT.470M
5266
5267 @item bt470bg
5268 BT.470BG
5269
5270 @item bt601-6-525
5271 BT.601-6 525
5272
5273 @item bt601-6-625
5274 BT.601-6 625
5275
5276 @item bt709
5277 BT.709
5278
5279 @item smpte170m
5280 SMPTE-170M
5281
5282 @item smpte240m
5283 SMPTE-240M
5284
5285 @item bt2020
5286 BT.2020
5287
5288 @end table
5289
5290 @anchor{space}
5291 @item space
5292 Specify output colorspace.
5293
5294 The accepted values are:
5295 @table @samp
5296 @item bt709
5297 BT.709
5298
5299 @item fcc
5300 FCC
5301
5302 @item bt470bg
5303 BT.470BG or BT.601-6 625
5304
5305 @item smpte170m
5306 SMPTE-170M or BT.601-6 525
5307
5308 @item smpte240m
5309 SMPTE-240M
5310
5311 @item bt2020ncl
5312 BT.2020 with non-constant luminance
5313
5314 @end table
5315
5316 @anchor{trc}
5317 @item trc
5318 Specify output transfer characteristics.
5319
5320 The accepted values are:
5321 @table @samp
5322 @item bt709
5323 BT.709
5324
5325 @item gamma22
5326 Constant gamma of 2.2
5327
5328 @item gamma28
5329 Constant gamma of 2.8
5330
5331 @item smpte170m
5332 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5333
5334 @item smpte240m
5335 SMPTE-240M
5336
5337 @item bt2020-10
5338 BT.2020 for 10-bits content
5339
5340 @item bt2020-12
5341 BT.2020 for 12-bits content
5342
5343 @end table
5344
5345 @anchor{primaries}
5346 @item primaries
5347 Specify output color primaries.
5348
5349 The accepted values are:
5350 @table @samp
5351 @item bt709
5352 BT.709
5353
5354 @item bt470m
5355 BT.470M
5356
5357 @item bt470bg
5358 BT.470BG or BT.601-6 625
5359
5360 @item smpte170m
5361 SMPTE-170M or BT.601-6 525
5362
5363 @item smpte240m
5364 SMPTE-240M
5365
5366 @item bt2020
5367 BT.2020
5368
5369 @end table
5370
5371 @anchor{range}
5372 @item range
5373 Specify output color range.
5374
5375 The accepted values are:
5376 @table @samp
5377 @item mpeg
5378 MPEG (restricted) range
5379
5380 @item jpeg
5381 JPEG (full) range
5382
5383 @end table
5384
5385 @item format
5386 Specify output color format.
5387
5388 The accepted values are:
5389 @table @samp
5390 @item yuv420p
5391 YUV 4:2:0 planar 8-bits
5392
5393 @item yuv420p10
5394 YUV 4:2:0 planar 10-bits
5395
5396 @item yuv420p12
5397 YUV 4:2:0 planar 12-bits
5398
5399 @item yuv422p
5400 YUV 4:2:2 planar 8-bits
5401
5402 @item yuv422p10
5403 YUV 4:2:2 planar 10-bits
5404
5405 @item yuv422p12
5406 YUV 4:2:2 planar 12-bits
5407
5408 @item yuv444p
5409 YUV 4:4:4 planar 8-bits
5410
5411 @item yuv444p10
5412 YUV 4:4:4 planar 10-bits
5413
5414 @item yuv444p12
5415 YUV 4:4:4 planar 12-bits
5416
5417 @end table
5418
5419 @item fast
5420 Do a fast conversion, which skips gamma/primary correction. This will take
5421 significantly less CPU, but will be mathematically incorrect. To get output
5422 compatible with that produced by the colormatrix filter, use fast=1.
5423
5424 @item dither
5425 Specify dithering mode.
5426
5427 The accepted values are:
5428 @table @samp
5429 @item none
5430 No dithering
5431
5432 @item fsb
5433 Floyd-Steinberg dithering
5434 @end table
5435
5436 @item wpadapt
5437 Whitepoint adaptation mode.
5438
5439 The accepted values are:
5440 @table @samp
5441 @item bradford
5442 Bradford whitepoint adaptation
5443
5444 @item vonkries
5445 von Kries whitepoint adaptation
5446
5447 @item identity
5448 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5449 @end table
5450
5451 @item iall
5452 Override all input properties at once. Same accepted values as @ref{all}.
5453
5454 @item ispace
5455 Override input colorspace. Same accepted values as @ref{space}.
5456
5457 @item iprimaries
5458 Override input color primaries. Same accepted values as @ref{primaries}.
5459
5460 @item itrc
5461 Override input transfer characteristics. Same accepted values as @ref{trc}.
5462
5463 @item irange
5464 Override input color range. Same accepted values as @ref{range}.
5465
5466 @end table
5467
5468 The filter converts the transfer characteristics, color space and color
5469 primaries to the specified user values. The output value, if not specified,
5470 is set to a default value based on the "all" property. If that property is
5471 also not specified, the filter will log an error. The output color range and
5472 format default to the same value as the input color range and format. The
5473 input transfer characteristics, color space, color primaries and color range
5474 should be set on the input data. If any of these are missing, the filter will
5475 log an error and no conversion will take place.
5476
5477 For example to convert the input to SMPTE-240M, use the command:
5478 @example
5479 colorspace=smpte240m
5480 @end example
5481
5482 @section convolution
5483
5484 Apply convolution 3x3 or 5x5 filter.
5485
5486 The filter accepts the following options:
5487
5488 @table @option
5489 @item 0m
5490 @item 1m
5491 @item 2m
5492 @item 3m
5493 Set matrix for each plane.
5494 Matrix is sequence of 9 or 25 signed integers.
5495
5496 @item 0rdiv
5497 @item 1rdiv
5498 @item 2rdiv
5499 @item 3rdiv
5500 Set multiplier for calculated value for each plane.
5501
5502 @item 0bias
5503 @item 1bias
5504 @item 2bias
5505 @item 3bias
5506 Set bias for each plane. This value is added to the result of the multiplication.
5507 Useful for making the overall image brighter or darker. Default is 0.0.
5508 @end table
5509
5510 @subsection Examples
5511
5512 @itemize
5513 @item
5514 Apply sharpen:
5515 @example
5516 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"
5517 @end example
5518
5519 @item
5520 Apply blur:
5521 @example
5522 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"
5523 @end example
5524
5525 @item
5526 Apply edge enhance:
5527 @example
5528 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"
5529 @end example
5530
5531 @item
5532 Apply edge detect:
5533 @example
5534 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"
5535 @end example
5536
5537 @item
5538 Apply emboss:
5539 @example
5540 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"
5541 @end example
5542 @end itemize
5543
5544 @section copy
5545
5546 Copy the input source unchanged to the output. This is mainly useful for
5547 testing purposes.
5548
5549 @anchor{coreimage}
5550 @section coreimage
5551 Video filtering on GPU using Apple's CoreImage API on OSX.
5552
5553 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5554 processed by video hardware. However, software-based OpenGL implementations
5555 exist which means there is no guarantee for hardware processing. It depends on
5556 the respective OSX.
5557
5558 There are many filters and image generators provided by Apple that come with a
5559 large variety of options. The filter has to be referenced by its name along
5560 with its options.
5561
5562 The coreimage filter accepts the following options:
5563 @table @option
5564 @item list_filters
5565 List all available filters and generators along with all their respective
5566 options as well as possible minimum and maximum values along with the default
5567 values.
5568 @example
5569 list_filters=true
5570 @end example
5571
5572 @item filter
5573 Specify all filters by their respective name and options.
5574 Use @var{list_filters} to determine all valid filter names and options.
5575 Numerical options are specified by a float value and are automatically clamped
5576 to their respective value range.  Vector and color options have to be specified
5577 by a list of space separated float values. Character escaping has to be done.
5578 A special option name @code{default} is available to use default options for a
5579 filter.
5580
5581 It is required to specify either @code{default} or at least one of the filter options.
5582 All omitted options are used with their default values.
5583 The syntax of the filter string is as follows:
5584 @example
5585 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5586 @end example
5587
5588 @item output_rect
5589 Specify a rectangle where the output of the filter chain is copied into the
5590 input image. It is given by a list of space separated float values:
5591 @example
5592 output_rect=x\ y\ width\ height
5593 @end example
5594 If not given, the output rectangle equals the dimensions of the input image.
5595 The output rectangle is automatically cropped at the borders of the input
5596 image. Negative values are valid for each component.
5597 @example
5598 output_rect=25\ 25\ 100\ 100
5599 @end example
5600 @end table
5601
5602 Several filters can be chained for successive processing without GPU-HOST
5603 transfers allowing for fast processing of complex filter chains.
5604 Currently, only filters with zero (generators) or exactly one (filters) input
5605 image and one output image are supported. Also, transition filters are not yet
5606 usable as intended.
5607
5608 Some filters generate output images with additional padding depending on the
5609 respective filter kernel. The padding is automatically removed to ensure the
5610 filter output has the same size as the input image.
5611
5612 For image generators, the size of the output image is determined by the
5613 previous output image of the filter chain or the input image of the whole
5614 filterchain, respectively. The generators do not use the pixel information of
5615 this image to generate their output. However, the generated output is
5616 blended onto this image, resulting in partial or complete coverage of the
5617 output image.
5618
5619 The @ref{coreimagesrc} video source can be used for generating input images
5620 which are directly fed into the filter chain. By using it, providing input
5621 images by another video source or an input video is not required.
5622
5623 @subsection Examples
5624
5625 @itemize
5626
5627 @item
5628 List all filters available:
5629 @example
5630 coreimage=list_filters=true
5631 @end example
5632
5633 @item
5634 Use the CIBoxBlur filter with default options to blur an image:
5635 @example
5636 coreimage=filter=CIBoxBlur@@default
5637 @end example
5638
5639 @item
5640 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5641 its center at 100x100 and a radius of 50 pixels:
5642 @example
5643 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5644 @end example
5645
5646 @item
5647 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5648 given as complete and escaped command-line for Apple's standard bash shell:
5649 @example
5650 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5651 @end example
5652 @end itemize
5653
5654 @section crop
5655
5656 Crop the input video to given dimensions.
5657
5658 It accepts the following parameters:
5659
5660 @table @option
5661 @item w, out_w
5662 The width of the output video. It defaults to @code{iw}.
5663 This expression is evaluated only once during the filter
5664 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5665
5666 @item h, out_h
5667 The height of the output video. It defaults to @code{ih}.
5668 This expression is evaluated only once during the filter
5669 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5670
5671 @item x
5672 The horizontal position, in the input video, of the left edge of the output
5673 video. It defaults to @code{(in_w-out_w)/2}.
5674 This expression is evaluated per-frame.
5675
5676 @item y
5677 The vertical position, in the input video, of the top edge of the output video.
5678 It defaults to @code{(in_h-out_h)/2}.
5679 This expression is evaluated per-frame.
5680
5681 @item keep_aspect
5682 If set to 1 will force the output display aspect ratio
5683 to be the same of the input, by changing the output sample aspect
5684 ratio. It defaults to 0.
5685
5686 @item exact
5687 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
5688 width/height/x/y as specified and will not be rounded to nearest smaller value.
5689 It defaults to 0.
5690 @end table
5691
5692 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5693 expressions containing the following constants:
5694
5695 @table @option
5696 @item x
5697 @item y
5698 The computed values for @var{x} and @var{y}. They are evaluated for
5699 each new frame.
5700
5701 @item in_w
5702 @item in_h
5703 The input width and height.
5704
5705 @item iw
5706 @item ih
5707 These are the same as @var{in_w} and @var{in_h}.
5708
5709 @item out_w
5710 @item out_h
5711 The output (cropped) width and height.
5712
5713 @item ow
5714 @item oh
5715 These are the same as @var{out_w} and @var{out_h}.
5716
5717 @item a
5718 same as @var{iw} / @var{ih}
5719
5720 @item sar
5721 input sample aspect ratio
5722
5723 @item dar
5724 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5725
5726 @item hsub
5727 @item vsub
5728 horizontal and vertical chroma subsample values. For example for the
5729 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5730
5731 @item n
5732 The number of the input frame, starting from 0.
5733
5734 @item pos
5735 the position in the file of the input frame, NAN if unknown
5736
5737 @item t
5738 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5739
5740 @end table
5741
5742 The expression for @var{out_w} may depend on the value of @var{out_h},
5743 and the expression for @var{out_h} may depend on @var{out_w}, but they
5744 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5745 evaluated after @var{out_w} and @var{out_h}.
5746
5747 The @var{x} and @var{y} parameters specify the expressions for the
5748 position of the top-left corner of the output (non-cropped) area. They
5749 are evaluated for each frame. If the evaluated value is not valid, it
5750 is approximated to the nearest valid value.
5751
5752 The expression for @var{x} may depend on @var{y}, and the expression
5753 for @var{y} may depend on @var{x}.
5754
5755 @subsection Examples
5756
5757 @itemize
5758 @item
5759 Crop area with size 100x100 at position (12,34).
5760 @example
5761 crop=100:100:12:34
5762 @end example
5763
5764 Using named options, the example above becomes:
5765 @example
5766 crop=w=100:h=100:x=12:y=34
5767 @end example
5768
5769 @item
5770 Crop the central input area with size 100x100:
5771 @example
5772 crop=100:100
5773 @end example
5774
5775 @item
5776 Crop the central input area with size 2/3 of the input video:
5777 @example
5778 crop=2/3*in_w:2/3*in_h
5779 @end example
5780
5781 @item
5782 Crop the input video central square:
5783 @example
5784 crop=out_w=in_h
5785 crop=in_h
5786 @end example
5787
5788 @item
5789 Delimit the rectangle with the top-left corner placed at position
5790 100:100 and the right-bottom corner corresponding to the right-bottom
5791 corner of the input image.
5792 @example
5793 crop=in_w-100:in_h-100:100:100
5794 @end example
5795
5796 @item
5797 Crop 10 pixels from the left and right borders, and 20 pixels from
5798 the top and bottom borders
5799 @example
5800 crop=in_w-2*10:in_h-2*20
5801 @end example
5802
5803 @item
5804 Keep only the bottom right quarter of the input image:
5805 @example
5806 crop=in_w/2:in_h/2:in_w/2:in_h/2
5807 @end example
5808
5809 @item
5810 Crop height for getting Greek harmony:
5811 @example
5812 crop=in_w:1/PHI*in_w
5813 @end example
5814
5815 @item
5816 Apply trembling effect:
5817 @example
5818 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)
5819 @end example
5820
5821 @item
5822 Apply erratic camera effect depending on timestamp:
5823 @example
5824 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)"
5825 @end example
5826
5827 @item
5828 Set x depending on the value of y:
5829 @example
5830 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5831 @end example
5832 @end itemize
5833
5834 @subsection Commands
5835
5836 This filter supports the following commands:
5837 @table @option
5838 @item w, out_w
5839 @item h, out_h
5840 @item x
5841 @item y
5842 Set width/height of the output video and the horizontal/vertical position
5843 in the input video.
5844 The command accepts the same syntax of the corresponding option.
5845
5846 If the specified expression is not valid, it is kept at its current
5847 value.
5848 @end table
5849
5850 @section cropdetect
5851
5852 Auto-detect the crop size.
5853
5854 It calculates the necessary cropping parameters and prints the
5855 recommended parameters via the logging system. The detected dimensions
5856 correspond to the non-black area of the input video.
5857
5858 It accepts the following parameters:
5859
5860 @table @option
5861
5862 @item limit
5863 Set higher black value threshold, which can be optionally specified
5864 from nothing (0) to everything (255 for 8-bit based formats). An intensity
5865 value greater to the set value is considered non-black. It defaults to 24.
5866 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5867 on the bitdepth of the pixel format.
5868
5869 @item round
5870 The value which the width/height should be divisible by. It defaults to
5871 16. The offset is automatically adjusted to center the video. Use 2 to
5872 get only even dimensions (needed for 4:2:2 video). 16 is best when
5873 encoding to most video codecs.
5874
5875 @item reset_count, reset
5876 Set the counter that determines after how many frames cropdetect will
5877 reset the previously detected largest video area and start over to
5878 detect the current optimal crop area. Default value is 0.
5879
5880 This can be useful when channel logos distort the video area. 0
5881 indicates 'never reset', and returns the largest area encountered during
5882 playback.
5883 @end table
5884
5885 @anchor{curves}
5886 @section curves
5887
5888 Apply color adjustments using curves.
5889
5890 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5891 component (red, green and blue) has its values defined by @var{N} key points
5892 tied from each other using a smooth curve. The x-axis represents the pixel
5893 values from the input frame, and the y-axis the new pixel values to be set for
5894 the output frame.
5895
5896 By default, a component curve is defined by the two points @var{(0;0)} and
5897 @var{(1;1)}. This creates a straight line where each original pixel value is
5898 "adjusted" to its own value, which means no change to the image.
5899
5900 The filter allows you to redefine these two points and add some more. A new
5901 curve (using a natural cubic spline interpolation) will be define to pass
5902 smoothly through all these new coordinates. The new defined points needs to be
5903 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5904 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5905 the vector spaces, the values will be clipped accordingly.
5906
5907 The filter accepts the following options:
5908
5909 @table @option
5910 @item preset
5911 Select one of the available color presets. This option can be used in addition
5912 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5913 options takes priority on the preset values.
5914 Available presets are:
5915 @table @samp
5916 @item none
5917 @item color_negative
5918 @item cross_process
5919 @item darker
5920 @item increase_contrast
5921 @item lighter
5922 @item linear_contrast
5923 @item medium_contrast
5924 @item negative
5925 @item strong_contrast
5926 @item vintage
5927 @end table
5928 Default is @code{none}.
5929 @item master, m
5930 Set the master key points. These points will define a second pass mapping. It
5931 is sometimes called a "luminance" or "value" mapping. It can be used with
5932 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5933 post-processing LUT.
5934 @item red, r
5935 Set the key points for the red component.
5936 @item green, g
5937 Set the key points for the green component.
5938 @item blue, b
5939 Set the key points for the blue component.
5940 @item all
5941 Set the key points for all components (not including master).
5942 Can be used in addition to the other key points component
5943 options. In this case, the unset component(s) will fallback on this
5944 @option{all} setting.
5945 @item psfile
5946 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5947 @item plot
5948 Save Gnuplot script of the curves in specified file.
5949 @end table
5950
5951 To avoid some filtergraph syntax conflicts, each key points list need to be
5952 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5953
5954 @subsection Examples
5955
5956 @itemize
5957 @item
5958 Increase slightly the middle level of blue:
5959 @example
5960 curves=blue='0/0 0.5/0.58 1/1'
5961 @end example
5962
5963 @item
5964 Vintage effect:
5965 @example
5966 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'
5967 @end example
5968 Here we obtain the following coordinates for each components:
5969 @table @var
5970 @item red
5971 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5972 @item green
5973 @code{(0;0) (0.50;0.48) (1;1)}
5974 @item blue
5975 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5976 @end table
5977
5978 @item
5979 The previous example can also be achieved with the associated built-in preset:
5980 @example
5981 curves=preset=vintage
5982 @end example
5983
5984 @item
5985 Or simply:
5986 @example
5987 curves=vintage
5988 @end example
5989
5990 @item
5991 Use a Photoshop preset and redefine the points of the green component:
5992 @example
5993 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
5994 @end example
5995
5996 @item
5997 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
5998 and @command{gnuplot}:
5999 @example
6000 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
6001 gnuplot -p /tmp/curves.plt
6002 @end example
6003 @end itemize
6004
6005 @section datascope
6006
6007 Video data analysis filter.
6008
6009 This filter shows hexadecimal pixel values of part of video.
6010
6011 The filter accepts the following options:
6012
6013 @table @option
6014 @item size, s
6015 Set output video size.
6016
6017 @item x
6018 Set x offset from where to pick pixels.
6019
6020 @item y
6021 Set y offset from where to pick pixels.
6022
6023 @item mode
6024 Set scope mode, can be one of the following:
6025 @table @samp
6026 @item mono
6027 Draw hexadecimal pixel values with white color on black background.
6028
6029 @item color
6030 Draw hexadecimal pixel values with input video pixel color on black
6031 background.
6032
6033 @item color2
6034 Draw hexadecimal pixel values on color background picked from input video,
6035 the text color is picked in such way so its always visible.
6036 @end table
6037
6038 @item axis
6039 Draw rows and columns numbers on left and top of video.
6040
6041 @item opacity
6042 Set background opacity.
6043 @end table
6044
6045 @section dctdnoiz
6046
6047 Denoise frames using 2D DCT (frequency domain filtering).
6048
6049 This filter is not designed for real time.
6050
6051 The filter accepts the following options:
6052
6053 @table @option
6054 @item sigma, s
6055 Set the noise sigma constant.
6056
6057 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6058 coefficient (absolute value) below this threshold with be dropped.
6059
6060 If you need a more advanced filtering, see @option{expr}.
6061
6062 Default is @code{0}.
6063
6064 @item overlap
6065 Set number overlapping pixels for each block. Since the filter can be slow, you
6066 may want to reduce this value, at the cost of a less effective filter and the
6067 risk of various artefacts.
6068
6069 If the overlapping value doesn't permit processing the whole input width or
6070 height, a warning will be displayed and according borders won't be denoised.
6071
6072 Default value is @var{blocksize}-1, which is the best possible setting.
6073
6074 @item expr, e
6075 Set the coefficient factor expression.
6076
6077 For each coefficient of a DCT block, this expression will be evaluated as a
6078 multiplier value for the coefficient.
6079
6080 If this is option is set, the @option{sigma} option will be ignored.
6081
6082 The absolute value of the coefficient can be accessed through the @var{c}
6083 variable.
6084
6085 @item n
6086 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6087 @var{blocksize}, which is the width and height of the processed blocks.
6088
6089 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6090 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6091 on the speed processing. Also, a larger block size does not necessarily means a
6092 better de-noising.
6093 @end table
6094
6095 @subsection Examples
6096
6097 Apply a denoise with a @option{sigma} of @code{4.5}:
6098 @example
6099 dctdnoiz=4.5
6100 @end example
6101
6102 The same operation can be achieved using the expression system:
6103 @example
6104 dctdnoiz=e='gte(c, 4.5*3)'
6105 @end example
6106
6107 Violent denoise using a block size of @code{16x16}:
6108 @example
6109 dctdnoiz=15:n=4
6110 @end example
6111
6112 @section deband
6113
6114 Remove banding artifacts from input video.
6115 It works by replacing banded pixels with average value of referenced pixels.
6116
6117 The filter accepts the following options:
6118
6119 @table @option
6120 @item 1thr
6121 @item 2thr
6122 @item 3thr
6123 @item 4thr
6124 Set banding detection threshold for each plane. Default is 0.02.
6125 Valid range is 0.00003 to 0.5.
6126 If difference between current pixel and reference pixel is less than threshold,
6127 it will be considered as banded.
6128
6129 @item range, r
6130 Banding detection range in pixels. Default is 16. If positive, random number
6131 in range 0 to set value will be used. If negative, exact absolute value
6132 will be used.
6133 The range defines square of four pixels around current pixel.
6134
6135 @item direction, d
6136 Set direction in radians from which four pixel will be compared. If positive,
6137 random direction from 0 to set direction will be picked. If negative, exact of
6138 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6139 will pick only pixels on same row and -PI/2 will pick only pixels on same
6140 column.
6141
6142 @item blur
6143 If enabled, current pixel is compared with average value of all four
6144 surrounding pixels. The default is enabled. If disabled current pixel is
6145 compared with all four surrounding pixels. The pixel is considered banded
6146 if only all four differences with surrounding pixels are less than threshold.
6147 @end table
6148
6149 @anchor{decimate}
6150 @section decimate
6151
6152 Drop duplicated frames at regular intervals.
6153
6154 The filter accepts the following options:
6155
6156 @table @option
6157 @item cycle
6158 Set the number of frames from which one will be dropped. Setting this to
6159 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6160 Default is @code{5}.
6161
6162 @item dupthresh
6163 Set the threshold for duplicate detection. If the difference metric for a frame
6164 is less than or equal to this value, then it is declared as duplicate. Default
6165 is @code{1.1}
6166
6167 @item scthresh
6168 Set scene change threshold. Default is @code{15}.
6169
6170 @item blockx
6171 @item blocky
6172 Set the size of the x and y-axis blocks used during metric calculations.
6173 Larger blocks give better noise suppression, but also give worse detection of
6174 small movements. Must be a power of two. Default is @code{32}.
6175
6176 @item ppsrc
6177 Mark main input as a pre-processed input and activate clean source input
6178 stream. This allows the input to be pre-processed with various filters to help
6179 the metrics calculation while keeping the frame selection lossless. When set to
6180 @code{1}, the first stream is for the pre-processed input, and the second
6181 stream is the clean source from where the kept frames are chosen. Default is
6182 @code{0}.
6183
6184 @item chroma
6185 Set whether or not chroma is considered in the metric calculations. Default is
6186 @code{1}.
6187 @end table
6188
6189 @section deflate
6190
6191 Apply deflate effect to the video.
6192
6193 This filter replaces the pixel by the local(3x3) average by taking into account
6194 only values lower than the pixel.
6195
6196 It accepts the following options:
6197
6198 @table @option
6199 @item threshold0
6200 @item threshold1
6201 @item threshold2
6202 @item threshold3
6203 Limit the maximum change for each plane, default is 65535.
6204 If 0, plane will remain unchanged.
6205 @end table
6206
6207 @section dejudder
6208
6209 Remove judder produced by partially interlaced telecined content.
6210
6211 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6212 source was partially telecined content then the output of @code{pullup,dejudder}
6213 will have a variable frame rate. May change the recorded frame rate of the
6214 container. Aside from that change, this filter will not affect constant frame
6215 rate video.
6216
6217 The option available in this filter is:
6218 @table @option
6219
6220 @item cycle
6221 Specify the length of the window over which the judder repeats.
6222
6223 Accepts any integer greater than 1. Useful values are:
6224 @table @samp
6225
6226 @item 4
6227 If the original was telecined from 24 to 30 fps (Film to NTSC).
6228
6229 @item 5
6230 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6231
6232 @item 20
6233 If a mixture of the two.
6234 @end table
6235
6236 The default is @samp{4}.
6237 @end table
6238
6239 @section delogo
6240
6241 Suppress a TV station logo by a simple interpolation of the surrounding
6242 pixels. Just set a rectangle covering the logo and watch it disappear
6243 (and sometimes something even uglier appear - your mileage may vary).
6244
6245 It accepts the following parameters:
6246 @table @option
6247
6248 @item x
6249 @item y
6250 Specify the top left corner coordinates of the logo. They must be
6251 specified.
6252
6253 @item w
6254 @item h
6255 Specify the width and height of the logo to clear. They must be
6256 specified.
6257
6258 @item band, t
6259 Specify the thickness of the fuzzy edge of the rectangle (added to
6260 @var{w} and @var{h}). The default value is 1. This option is
6261 deprecated, setting higher values should no longer be necessary and
6262 is not recommended.
6263
6264 @item show
6265 When set to 1, a green rectangle is drawn on the screen to simplify
6266 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6267 The default value is 0.
6268
6269 The rectangle is drawn on the outermost pixels which will be (partly)
6270 replaced with interpolated values. The values of the next pixels
6271 immediately outside this rectangle in each direction will be used to
6272 compute the interpolated pixel values inside the rectangle.
6273
6274 @end table
6275
6276 @subsection Examples
6277
6278 @itemize
6279 @item
6280 Set a rectangle covering the area with top left corner coordinates 0,0
6281 and size 100x77, and a band of size 10:
6282 @example
6283 delogo=x=0:y=0:w=100:h=77:band=10
6284 @end example
6285
6286 @end itemize
6287
6288 @section deshake
6289
6290 Attempt to fix small changes in horizontal and/or vertical shift. This
6291 filter helps remove camera shake from hand-holding a camera, bumping a
6292 tripod, moving on a vehicle, etc.
6293
6294 The filter accepts the following options:
6295
6296 @table @option
6297
6298 @item x
6299 @item y
6300 @item w
6301 @item h
6302 Specify a rectangular area where to limit the search for motion
6303 vectors.
6304 If desired the search for motion vectors can be limited to a
6305 rectangular area of the frame defined by its top left corner, width
6306 and height. These parameters have the same meaning as the drawbox
6307 filter which can be used to visualise the position of the bounding
6308 box.
6309
6310 This is useful when simultaneous movement of subjects within the frame
6311 might be confused for camera motion by the motion vector search.
6312
6313 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6314 then the full frame is used. This allows later options to be set
6315 without specifying the bounding box for the motion vector search.
6316
6317 Default - search the whole frame.
6318
6319 @item rx
6320 @item ry
6321 Specify the maximum extent of movement in x and y directions in the
6322 range 0-64 pixels. Default 16.
6323
6324 @item edge
6325 Specify how to generate pixels to fill blanks at the edge of the
6326 frame. Available values are:
6327 @table @samp
6328 @item blank, 0
6329 Fill zeroes at blank locations
6330 @item original, 1
6331 Original image at blank locations
6332 @item clamp, 2
6333 Extruded edge value at blank locations
6334 @item mirror, 3
6335 Mirrored edge at blank locations
6336 @end table
6337 Default value is @samp{mirror}.
6338
6339 @item blocksize
6340 Specify the blocksize to use for motion search. Range 4-128 pixels,
6341 default 8.
6342
6343 @item contrast
6344 Specify the contrast threshold for blocks. Only blocks with more than
6345 the specified contrast (difference between darkest and lightest
6346 pixels) will be considered. Range 1-255, default 125.
6347
6348 @item search
6349 Specify the search strategy. Available values are:
6350 @table @samp
6351 @item exhaustive, 0
6352 Set exhaustive search
6353 @item less, 1
6354 Set less exhaustive search.
6355 @end table
6356 Default value is @samp{exhaustive}.
6357
6358 @item filename
6359 If set then a detailed log of the motion search is written to the
6360 specified file.
6361
6362 @item opencl
6363 If set to 1, specify using OpenCL capabilities, only available if
6364 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6365
6366 @end table
6367
6368 @section detelecine
6369
6370 Apply an exact inverse of the telecine operation. It requires a predefined
6371 pattern specified using the pattern option which must be the same as that passed
6372 to the telecine filter.
6373
6374 This filter accepts the following options:
6375
6376 @table @option
6377 @item first_field
6378 @table @samp
6379 @item top, t
6380 top field first
6381 @item bottom, b
6382 bottom field first
6383 The default value is @code{top}.
6384 @end table
6385
6386 @item pattern
6387 A string of numbers representing the pulldown pattern you wish to apply.
6388 The default value is @code{23}.
6389
6390 @item start_frame
6391 A number representing position of the first frame with respect to the telecine
6392 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6393 @end table
6394
6395 @section dilation
6396
6397 Apply dilation effect to the video.
6398
6399 This filter replaces the pixel by the local(3x3) maximum.
6400
6401 It accepts the following options:
6402
6403 @table @option
6404 @item threshold0
6405 @item threshold1
6406 @item threshold2
6407 @item threshold3
6408 Limit the maximum change for each plane, default is 65535.
6409 If 0, plane will remain unchanged.
6410
6411 @item coordinates
6412 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6413 pixels are used.
6414
6415 Flags to local 3x3 coordinates maps like this:
6416
6417     1 2 3
6418     4   5
6419     6 7 8
6420 @end table
6421
6422 @section displace
6423
6424 Displace pixels as indicated by second and third input stream.
6425
6426 It takes three input streams and outputs one stream, the first input is the
6427 source, and second and third input are displacement maps.
6428
6429 The second input specifies how much to displace pixels along the
6430 x-axis, while the third input specifies how much to displace pixels
6431 along the y-axis.
6432 If one of displacement map streams terminates, last frame from that
6433 displacement map will be used.
6434
6435 Note that once generated, displacements maps can be reused over and over again.
6436
6437 A description of the accepted options follows.
6438
6439 @table @option
6440 @item edge
6441 Set displace behavior for pixels that are out of range.
6442
6443 Available values are:
6444 @table @samp
6445 @item blank
6446 Missing pixels are replaced by black pixels.
6447
6448 @item smear
6449 Adjacent pixels will spread out to replace missing pixels.
6450
6451 @item wrap
6452 Out of range pixels are wrapped so they point to pixels of other side.
6453 @end table
6454 Default is @samp{smear}.
6455
6456 @end table
6457
6458 @subsection Examples
6459
6460 @itemize
6461 @item
6462 Add ripple effect to rgb input of video size hd720:
6463 @example
6464 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
6465 @end example
6466
6467 @item
6468 Add wave effect to rgb input of video size hd720:
6469 @example
6470 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
6471 @end example
6472 @end itemize
6473
6474 @section drawbox
6475
6476 Draw a colored box on the input image.
6477
6478 It accepts the following parameters:
6479
6480 @table @option
6481 @item x
6482 @item y
6483 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6484
6485 @item width, w
6486 @item height, h
6487 The expressions which specify the width and height of the box; if 0 they are interpreted as
6488 the input width and height. It defaults to 0.
6489
6490 @item color, c
6491 Specify the color of the box to write. For the general syntax of this option,
6492 check the "Color" section in the ffmpeg-utils manual. If the special
6493 value @code{invert} is used, the box edge color is the same as the
6494 video with inverted luma.
6495
6496 @item thickness, t
6497 The expression which sets the thickness of the box edge. Default value is @code{3}.
6498
6499 See below for the list of accepted constants.
6500 @end table
6501
6502 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6503 following constants:
6504
6505 @table @option
6506 @item dar
6507 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6508
6509 @item hsub
6510 @item vsub
6511 horizontal and vertical chroma subsample values. For example for the
6512 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6513
6514 @item in_h, ih
6515 @item in_w, iw
6516 The input width and height.
6517
6518 @item sar
6519 The input sample aspect ratio.
6520
6521 @item x
6522 @item y
6523 The x and y offset coordinates where the box is drawn.
6524
6525 @item w
6526 @item h
6527 The width and height of the drawn box.
6528
6529 @item t
6530 The thickness of the drawn box.
6531
6532 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6533 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6534
6535 @end table
6536
6537 @subsection Examples
6538
6539 @itemize
6540 @item
6541 Draw a black box around the edge of the input image:
6542 @example
6543 drawbox
6544 @end example
6545
6546 @item
6547 Draw a box with color red and an opacity of 50%:
6548 @example
6549 drawbox=10:20:200:60:red@@0.5
6550 @end example
6551
6552 The previous example can be specified as:
6553 @example
6554 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6555 @end example
6556
6557 @item
6558 Fill the box with pink color:
6559 @example
6560 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6561 @end example
6562
6563 @item
6564 Draw a 2-pixel red 2.40:1 mask:
6565 @example
6566 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
6567 @end example
6568 @end itemize
6569
6570 @section drawgrid
6571
6572 Draw a grid on the input image.
6573
6574 It accepts the following parameters:
6575
6576 @table @option
6577 @item x
6578 @item y
6579 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6580
6581 @item width, w
6582 @item height, h
6583 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6584 input width and height, respectively, minus @code{thickness}, so image gets
6585 framed. Default to 0.
6586
6587 @item color, c
6588 Specify the color of the grid. For the general syntax of this option,
6589 check the "Color" section in the ffmpeg-utils manual. If the special
6590 value @code{invert} is used, the grid color is the same as the
6591 video with inverted luma.
6592
6593 @item thickness, t
6594 The expression which sets the thickness of the grid line. Default value is @code{1}.
6595
6596 See below for the list of accepted constants.
6597 @end table
6598
6599 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6600 following constants:
6601
6602 @table @option
6603 @item dar
6604 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6605
6606 @item hsub
6607 @item vsub
6608 horizontal and vertical chroma subsample values. For example for the
6609 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6610
6611 @item in_h, ih
6612 @item in_w, iw
6613 The input grid cell width and height.
6614
6615 @item sar
6616 The input sample aspect ratio.
6617
6618 @item x
6619 @item y
6620 The x and y coordinates of some point of grid intersection (meant to configure offset).
6621
6622 @item w
6623 @item h
6624 The width and height of the drawn cell.
6625
6626 @item t
6627 The thickness of the drawn cell.
6628
6629 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6630 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6631
6632 @end table
6633
6634 @subsection Examples
6635
6636 @itemize
6637 @item
6638 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6639 @example
6640 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6641 @end example
6642
6643 @item
6644 Draw a white 3x3 grid with an opacity of 50%:
6645 @example
6646 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6647 @end example
6648 @end itemize
6649
6650 @anchor{drawtext}
6651 @section drawtext
6652
6653 Draw a text string or text from a specified file on top of a video, using the
6654 libfreetype library.
6655
6656 To enable compilation of this filter, you need to configure FFmpeg with
6657 @code{--enable-libfreetype}.
6658 To enable default font fallback and the @var{font} option you need to
6659 configure FFmpeg with @code{--enable-libfontconfig}.
6660 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6661 @code{--enable-libfribidi}.
6662
6663 @subsection Syntax
6664
6665 It accepts the following parameters:
6666
6667 @table @option
6668
6669 @item box
6670 Used to draw a box around text using the background color.
6671 The value must be either 1 (enable) or 0 (disable).
6672 The default value of @var{box} is 0.
6673
6674 @item boxborderw
6675 Set the width of the border to be drawn around the box using @var{boxcolor}.
6676 The default value of @var{boxborderw} is 0.
6677
6678 @item boxcolor
6679 The color to be used for drawing box around text. For the syntax of this
6680 option, check the "Color" section in the ffmpeg-utils manual.
6681
6682 The default value of @var{boxcolor} is "white".
6683
6684 @item borderw
6685 Set the width of the border to be drawn around the text using @var{bordercolor}.
6686 The default value of @var{borderw} is 0.
6687
6688 @item bordercolor
6689 Set the color to be used for drawing border around text. For the syntax of this
6690 option, check the "Color" section in the ffmpeg-utils manual.
6691
6692 The default value of @var{bordercolor} is "black".
6693
6694 @item expansion
6695 Select how the @var{text} is expanded. Can be either @code{none},
6696 @code{strftime} (deprecated) or
6697 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6698 below for details.
6699
6700 @item fix_bounds
6701 If true, check and fix text coords to avoid clipping.
6702
6703 @item fontcolor
6704 The color to be used for drawing fonts. For the syntax of this option, check
6705 the "Color" section in the ffmpeg-utils manual.
6706
6707 The default value of @var{fontcolor} is "black".
6708
6709 @item fontcolor_expr
6710 String which is expanded the same way as @var{text} to obtain dynamic
6711 @var{fontcolor} value. By default this option has empty value and is not
6712 processed. When this option is set, it overrides @var{fontcolor} option.
6713
6714 @item font
6715 The font family to be used for drawing text. By default Sans.
6716
6717 @item fontfile
6718 The font file to be used for drawing text. The path must be included.
6719 This parameter is mandatory if the fontconfig support is disabled.
6720
6721 @item draw
6722 This option does not exist, please see the timeline system
6723
6724 @item alpha
6725 Draw the text applying alpha blending. The value can
6726 be a number between 0.0 and 1.0.
6727 The expression accepts the same variables @var{x, y} as well.
6728 The default value is 1.
6729 Please see @var{fontcolor_expr}.
6730
6731 @item fontsize
6732 The font size to be used for drawing text.
6733 The default value of @var{fontsize} is 16.
6734
6735 @item text_shaping
6736 If set to 1, attempt to shape the text (for example, reverse the order of
6737 right-to-left text and join Arabic characters) before drawing it.
6738 Otherwise, just draw the text exactly as given.
6739 By default 1 (if supported).
6740
6741 @item ft_load_flags
6742 The flags to be used for loading the fonts.
6743
6744 The flags map the corresponding flags supported by libfreetype, and are
6745 a combination of the following values:
6746 @table @var
6747 @item default
6748 @item no_scale
6749 @item no_hinting
6750 @item render
6751 @item no_bitmap
6752 @item vertical_layout
6753 @item force_autohint
6754 @item crop_bitmap
6755 @item pedantic
6756 @item ignore_global_advance_width
6757 @item no_recurse
6758 @item ignore_transform
6759 @item monochrome
6760 @item linear_design
6761 @item no_autohint
6762 @end table
6763
6764 Default value is "default".
6765
6766 For more information consult the documentation for the FT_LOAD_*
6767 libfreetype flags.
6768
6769 @item shadowcolor
6770 The color to be used for drawing a shadow behind the drawn text. For the
6771 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6772
6773 The default value of @var{shadowcolor} is "black".
6774
6775 @item shadowx
6776 @item shadowy
6777 The x and y offsets for the text shadow position with respect to the
6778 position of the text. They can be either positive or negative
6779 values. The default value for both is "0".
6780
6781 @item start_number
6782 The starting frame number for the n/frame_num variable. The default value
6783 is "0".
6784
6785 @item tabsize
6786 The size in number of spaces to use for rendering the tab.
6787 Default value is 4.
6788
6789 @item timecode
6790 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6791 format. It can be used with or without text parameter. @var{timecode_rate}
6792 option must be specified.
6793
6794 @item timecode_rate, rate, r
6795 Set the timecode frame rate (timecode only).
6796
6797 @item text
6798 The text string to be drawn. The text must be a sequence of UTF-8
6799 encoded characters.
6800 This parameter is mandatory if no file is specified with the parameter
6801 @var{textfile}.
6802
6803 @item textfile
6804 A text file containing text to be drawn. The text must be a sequence
6805 of UTF-8 encoded characters.
6806
6807 This parameter is mandatory if no text string is specified with the
6808 parameter @var{text}.
6809
6810 If both @var{text} and @var{textfile} are specified, an error is thrown.
6811
6812 @item reload
6813 If set to 1, the @var{textfile} will be reloaded before each frame.
6814 Be sure to update it atomically, or it may be read partially, or even fail.
6815
6816 @item x
6817 @item y
6818 The expressions which specify the offsets where text will be drawn
6819 within the video frame. They are relative to the top/left border of the
6820 output image.
6821
6822 The default value of @var{x} and @var{y} is "0".
6823
6824 See below for the list of accepted constants and functions.
6825 @end table
6826
6827 The parameters for @var{x} and @var{y} are expressions containing the
6828 following constants and functions:
6829
6830 @table @option
6831 @item dar
6832 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6833
6834 @item hsub
6835 @item vsub
6836 horizontal and vertical chroma subsample values. For example for the
6837 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6838
6839 @item line_h, lh
6840 the height of each text line
6841
6842 @item main_h, h, H
6843 the input height
6844
6845 @item main_w, w, W
6846 the input width
6847
6848 @item max_glyph_a, ascent
6849 the maximum distance from the baseline to the highest/upper grid
6850 coordinate used to place a glyph outline point, for all the rendered
6851 glyphs.
6852 It is a positive value, due to the grid's orientation with the Y axis
6853 upwards.
6854
6855 @item max_glyph_d, descent
6856 the maximum distance from the baseline to the lowest grid coordinate
6857 used to place a glyph outline point, for all the rendered glyphs.
6858 This is a negative value, due to the grid's orientation, with the Y axis
6859 upwards.
6860
6861 @item max_glyph_h
6862 maximum glyph height, that is the maximum height for all the glyphs
6863 contained in the rendered text, it is equivalent to @var{ascent} -
6864 @var{descent}.
6865
6866 @item max_glyph_w
6867 maximum glyph width, that is the maximum width for all the glyphs
6868 contained in the rendered text
6869
6870 @item n
6871 the number of input frame, starting from 0
6872
6873 @item rand(min, max)
6874 return a random number included between @var{min} and @var{max}
6875
6876 @item sar
6877 The input sample aspect ratio.
6878
6879 @item t
6880 timestamp expressed in seconds, NAN if the input timestamp is unknown
6881
6882 @item text_h, th
6883 the height of the rendered text
6884
6885 @item text_w, tw
6886 the width of the rendered text
6887
6888 @item x
6889 @item y
6890 the x and y offset coordinates where the text is drawn.
6891
6892 These parameters allow the @var{x} and @var{y} expressions to refer
6893 each other, so you can for example specify @code{y=x/dar}.
6894 @end table
6895
6896 @anchor{drawtext_expansion}
6897 @subsection Text expansion
6898
6899 If @option{expansion} is set to @code{strftime},
6900 the filter recognizes strftime() sequences in the provided text and
6901 expands them accordingly. Check the documentation of strftime(). This
6902 feature is deprecated.
6903
6904 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6905
6906 If @option{expansion} is set to @code{normal} (which is the default),
6907 the following expansion mechanism is used.
6908
6909 The backslash character @samp{\}, followed by any character, always expands to
6910 the second character.
6911
6912 Sequences of the form @code{%@{...@}} are expanded. The text between the
6913 braces is a function name, possibly followed by arguments separated by ':'.
6914 If the arguments contain special characters or delimiters (':' or '@}'),
6915 they should be escaped.
6916
6917 Note that they probably must also be escaped as the value for the
6918 @option{text} option in the filter argument string and as the filter
6919 argument in the filtergraph description, and possibly also for the shell,
6920 that makes up to four levels of escaping; using a text file avoids these
6921 problems.
6922
6923 The following functions are available:
6924
6925 @table @command
6926
6927 @item expr, e
6928 The expression evaluation result.
6929
6930 It must take one argument specifying the expression to be evaluated,
6931 which accepts the same constants and functions as the @var{x} and
6932 @var{y} values. Note that not all constants should be used, for
6933 example the text size is not known when evaluating the expression, so
6934 the constants @var{text_w} and @var{text_h} will have an undefined
6935 value.
6936
6937 @item expr_int_format, eif
6938 Evaluate the expression's value and output as formatted integer.
6939
6940 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6941 The second argument specifies the output format. Allowed values are @samp{x},
6942 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6943 @code{printf} function.
6944 The third parameter is optional and sets the number of positions taken by the output.
6945 It can be used to add padding with zeros from the left.
6946
6947 @item gmtime
6948 The time at which the filter is running, expressed in UTC.
6949 It can accept an argument: a strftime() format string.
6950
6951 @item localtime
6952 The time at which the filter is running, expressed in the local time zone.
6953 It can accept an argument: a strftime() format string.
6954
6955 @item metadata
6956 Frame metadata. Takes one or two arguments.
6957
6958 The first argument is mandatory and specifies the metadata key.
6959
6960 The second argument is optional and specifies a default value, used when the
6961 metadata key is not found or empty.
6962
6963 @item n, frame_num
6964 The frame number, starting from 0.
6965
6966 @item pict_type
6967 A 1 character description of the current picture type.
6968
6969 @item pts
6970 The timestamp of the current frame.
6971 It can take up to three arguments.
6972
6973 The first argument is the format of the timestamp; it defaults to @code{flt}
6974 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6975 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6976 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6977 @code{localtime} stands for the timestamp of the frame formatted as
6978 local time zone time.
6979
6980 The second argument is an offset added to the timestamp.
6981
6982 If the format is set to @code{localtime} or @code{gmtime},
6983 a third argument may be supplied: a strftime() format string.
6984 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6985 @end table
6986
6987 @subsection Examples
6988
6989 @itemize
6990 @item
6991 Draw "Test Text" with font FreeSerif, using the default values for the
6992 optional parameters.
6993
6994 @example
6995 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6996 @end example
6997
6998 @item
6999 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
7000 and y=50 (counting from the top-left corner of the screen), text is
7001 yellow with a red box around it. Both the text and the box have an
7002 opacity of 20%.
7003
7004 @example
7005 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
7006           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
7007 @end example
7008
7009 Note that the double quotes are not necessary if spaces are not used
7010 within the parameter list.
7011
7012 @item
7013 Show the text at the center of the video frame:
7014 @example
7015 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
7016 @end example
7017
7018 @item
7019 Show the text at a random position, switching to a new position every 30 seconds:
7020 @example
7021 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)"
7022 @end example
7023
7024 @item
7025 Show a text line sliding from right to left in the last row of the video
7026 frame. The file @file{LONG_LINE} is assumed to contain a single line
7027 with no newlines.
7028 @example
7029 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
7030 @end example
7031
7032 @item
7033 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
7034 @example
7035 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
7036 @end example
7037
7038 @item
7039 Draw a single green letter "g", at the center of the input video.
7040 The glyph baseline is placed at half screen height.
7041 @example
7042 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7043 @end example
7044
7045 @item
7046 Show text for 1 second every 3 seconds:
7047 @example
7048 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7049 @end example
7050
7051 @item
7052 Use fontconfig to set the font. Note that the colons need to be escaped.
7053 @example
7054 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7055 @end example
7056
7057 @item
7058 Print the date of a real-time encoding (see strftime(3)):
7059 @example
7060 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7061 @end example
7062
7063 @item
7064 Show text fading in and out (appearing/disappearing):
7065 @example
7066 #!/bin/sh
7067 DS=1.0 # display start
7068 DE=10.0 # display end
7069 FID=1.5 # fade in duration
7070 FOD=5 # fade out duration
7071 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 @}"
7072 @end example
7073
7074 @end itemize
7075
7076 For more information about libfreetype, check:
7077 @url{http://www.freetype.org/}.
7078
7079 For more information about fontconfig, check:
7080 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7081
7082 For more information about libfribidi, check:
7083 @url{http://fribidi.org/}.
7084
7085 @section edgedetect
7086
7087 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7088
7089 The filter accepts the following options:
7090
7091 @table @option
7092 @item low
7093 @item high
7094 Set low and high threshold values used by the Canny thresholding
7095 algorithm.
7096
7097 The high threshold selects the "strong" edge pixels, which are then
7098 connected through 8-connectivity with the "weak" edge pixels selected
7099 by the low threshold.
7100
7101 @var{low} and @var{high} threshold values must be chosen in the range
7102 [0,1], and @var{low} should be lesser or equal to @var{high}.
7103
7104 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7105 is @code{50/255}.
7106
7107 @item mode
7108 Define the drawing mode.
7109
7110 @table @samp
7111 @item wires
7112 Draw white/gray wires on black background.
7113
7114 @item colormix
7115 Mix the colors to create a paint/cartoon effect.
7116 @end table
7117
7118 Default value is @var{wires}.
7119 @end table
7120
7121 @subsection Examples
7122
7123 @itemize
7124 @item
7125 Standard edge detection with custom values for the hysteresis thresholding:
7126 @example
7127 edgedetect=low=0.1:high=0.4
7128 @end example
7129
7130 @item
7131 Painting effect without thresholding:
7132 @example
7133 edgedetect=mode=colormix:high=0
7134 @end example
7135 @end itemize
7136
7137 @section eq
7138 Set brightness, contrast, saturation and approximate gamma adjustment.
7139
7140 The filter accepts the following options:
7141
7142 @table @option
7143 @item contrast
7144 Set the contrast expression. The value must be a float value in range
7145 @code{-2.0} to @code{2.0}. The default value is "1".
7146
7147 @item brightness
7148 Set the brightness expression. The value must be a float value in
7149 range @code{-1.0} to @code{1.0}. The default value is "0".
7150
7151 @item saturation
7152 Set the saturation expression. The value must be a float in
7153 range @code{0.0} to @code{3.0}. The default value is "1".
7154
7155 @item gamma
7156 Set the gamma expression. The value must be a float in range
7157 @code{0.1} to @code{10.0}.  The default value is "1".
7158
7159 @item gamma_r
7160 Set the gamma expression for red. The value must be a float in
7161 range @code{0.1} to @code{10.0}. The default value is "1".
7162
7163 @item gamma_g
7164 Set the gamma expression for green. The value must be a float in range
7165 @code{0.1} to @code{10.0}. The default value is "1".
7166
7167 @item gamma_b
7168 Set the gamma expression for blue. The value must be a float in range
7169 @code{0.1} to @code{10.0}. The default value is "1".
7170
7171 @item gamma_weight
7172 Set the gamma weight expression. It can be used to reduce the effect
7173 of a high gamma value on bright image areas, e.g. keep them from
7174 getting overamplified and just plain white. The value must be a float
7175 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7176 gamma correction all the way down while @code{1.0} leaves it at its
7177 full strength. Default is "1".
7178
7179 @item eval
7180 Set when the expressions for brightness, contrast, saturation and
7181 gamma expressions are evaluated.
7182
7183 It accepts the following values:
7184 @table @samp
7185 @item init
7186 only evaluate expressions once during the filter initialization or
7187 when a command is processed
7188
7189 @item frame
7190 evaluate expressions for each incoming frame
7191 @end table
7192
7193 Default value is @samp{init}.
7194 @end table
7195
7196 The expressions accept the following parameters:
7197 @table @option
7198 @item n
7199 frame count of the input frame starting from 0
7200
7201 @item pos
7202 byte position of the corresponding packet in the input file, NAN if
7203 unspecified
7204
7205 @item r
7206 frame rate of the input video, NAN if the input frame rate is unknown
7207
7208 @item t
7209 timestamp expressed in seconds, NAN if the input timestamp is unknown
7210 @end table
7211
7212 @subsection Commands
7213 The filter supports the following commands:
7214
7215 @table @option
7216 @item contrast
7217 Set the contrast expression.
7218
7219 @item brightness
7220 Set the brightness expression.
7221
7222 @item saturation
7223 Set the saturation expression.
7224
7225 @item gamma
7226 Set the gamma expression.
7227
7228 @item gamma_r
7229 Set the gamma_r expression.
7230
7231 @item gamma_g
7232 Set gamma_g expression.
7233
7234 @item gamma_b
7235 Set gamma_b expression.
7236
7237 @item gamma_weight
7238 Set gamma_weight expression.
7239
7240 The command accepts the same syntax of the corresponding option.
7241
7242 If the specified expression is not valid, it is kept at its current
7243 value.
7244
7245 @end table
7246
7247 @section erosion
7248
7249 Apply erosion effect to the video.
7250
7251 This filter replaces the pixel by the local(3x3) minimum.
7252
7253 It accepts the following options:
7254
7255 @table @option
7256 @item threshold0
7257 @item threshold1
7258 @item threshold2
7259 @item threshold3
7260 Limit the maximum change for each plane, default is 65535.
7261 If 0, plane will remain unchanged.
7262
7263 @item coordinates
7264 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7265 pixels are used.
7266
7267 Flags to local 3x3 coordinates maps like this:
7268
7269     1 2 3
7270     4   5
7271     6 7 8
7272 @end table
7273
7274 @section extractplanes
7275
7276 Extract color channel components from input video stream into
7277 separate grayscale video streams.
7278
7279 The filter accepts the following option:
7280
7281 @table @option
7282 @item planes
7283 Set plane(s) to extract.
7284
7285 Available values for planes are:
7286 @table @samp
7287 @item y
7288 @item u
7289 @item v
7290 @item a
7291 @item r
7292 @item g
7293 @item b
7294 @end table
7295
7296 Choosing planes not available in the input will result in an error.
7297 That means you cannot select @code{r}, @code{g}, @code{b} planes
7298 with @code{y}, @code{u}, @code{v} planes at same time.
7299 @end table
7300
7301 @subsection Examples
7302
7303 @itemize
7304 @item
7305 Extract luma, u and v color channel component from input video frame
7306 into 3 grayscale outputs:
7307 @example
7308 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
7309 @end example
7310 @end itemize
7311
7312 @section elbg
7313
7314 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7315
7316 For each input image, the filter will compute the optimal mapping from
7317 the input to the output given the codebook length, that is the number
7318 of distinct output colors.
7319
7320 This filter accepts the following options.
7321
7322 @table @option
7323 @item codebook_length, l
7324 Set codebook length. The value must be a positive integer, and
7325 represents the number of distinct output colors. Default value is 256.
7326
7327 @item nb_steps, n
7328 Set the maximum number of iterations to apply for computing the optimal
7329 mapping. The higher the value the better the result and the higher the
7330 computation time. Default value is 1.
7331
7332 @item seed, s
7333 Set a random seed, must be an integer included between 0 and
7334 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7335 will try to use a good random seed on a best effort basis.
7336
7337 @item pal8
7338 Set pal8 output pixel format. This option does not work with codebook
7339 length greater than 256.
7340 @end table
7341
7342 @section fade
7343
7344 Apply a fade-in/out effect to the input video.
7345
7346 It accepts the following parameters:
7347
7348 @table @option
7349 @item type, t
7350 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7351 effect.
7352 Default is @code{in}.
7353
7354 @item start_frame, s
7355 Specify the number of the frame to start applying the fade
7356 effect at. Default is 0.
7357
7358 @item nb_frames, n
7359 The number of frames that the fade effect lasts. At the end of the
7360 fade-in effect, the output video will have the same intensity as the input video.
7361 At the end of the fade-out transition, the output video will be filled with the
7362 selected @option{color}.
7363 Default is 25.
7364
7365 @item alpha
7366 If set to 1, fade only alpha channel, if one exists on the input.
7367 Default value is 0.
7368
7369 @item start_time, st
7370 Specify the timestamp (in seconds) of the frame to start to apply the fade
7371 effect. If both start_frame and start_time are specified, the fade will start at
7372 whichever comes last.  Default is 0.
7373
7374 @item duration, d
7375 The number of seconds for which the fade effect has to last. At the end of the
7376 fade-in effect the output video will have the same intensity as the input video,
7377 at the end of the fade-out transition the output video will be filled with the
7378 selected @option{color}.
7379 If both duration and nb_frames are specified, duration is used. Default is 0
7380 (nb_frames is used by default).
7381
7382 @item color, c
7383 Specify the color of the fade. Default is "black".
7384 @end table
7385
7386 @subsection Examples
7387
7388 @itemize
7389 @item
7390 Fade in the first 30 frames of video:
7391 @example
7392 fade=in:0:30
7393 @end example
7394
7395 The command above is equivalent to:
7396 @example
7397 fade=t=in:s=0:n=30
7398 @end example
7399
7400 @item
7401 Fade out the last 45 frames of a 200-frame video:
7402 @example
7403 fade=out:155:45
7404 fade=type=out:start_frame=155:nb_frames=45
7405 @end example
7406
7407 @item
7408 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7409 @example
7410 fade=in:0:25, fade=out:975:25
7411 @end example
7412
7413 @item
7414 Make the first 5 frames yellow, then fade in from frame 5-24:
7415 @example
7416 fade=in:5:20:color=yellow
7417 @end example
7418
7419 @item
7420 Fade in alpha over first 25 frames of video:
7421 @example
7422 fade=in:0:25:alpha=1
7423 @end example
7424
7425 @item
7426 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7427 @example
7428 fade=t=in:st=5.5:d=0.5
7429 @end example
7430
7431 @end itemize
7432
7433 @section fftfilt
7434 Apply arbitrary expressions to samples in frequency domain
7435
7436 @table @option
7437 @item dc_Y
7438 Adjust the dc value (gain) of the luma plane of the image. The filter
7439 accepts an integer value in range @code{0} to @code{1000}. The default
7440 value is set to @code{0}.
7441
7442 @item dc_U
7443 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7444 filter accepts an integer value in range @code{0} to @code{1000}. The
7445 default value is set to @code{0}.
7446
7447 @item dc_V
7448 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7449 filter accepts an integer value in range @code{0} to @code{1000}. The
7450 default value is set to @code{0}.
7451
7452 @item weight_Y
7453 Set the frequency domain weight expression for the luma plane.
7454
7455 @item weight_U
7456 Set the frequency domain weight expression for the 1st chroma plane.
7457
7458 @item weight_V
7459 Set the frequency domain weight expression for the 2nd chroma plane.
7460
7461 The filter accepts the following variables:
7462 @item X
7463 @item Y
7464 The coordinates of the current sample.
7465
7466 @item W
7467 @item H
7468 The width and height of the image.
7469 @end table
7470
7471 @subsection Examples
7472
7473 @itemize
7474 @item
7475 High-pass:
7476 @example
7477 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7478 @end example
7479
7480 @item
7481 Low-pass:
7482 @example
7483 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7484 @end example
7485
7486 @item
7487 Sharpen:
7488 @example
7489 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7490 @end example
7491
7492 @item
7493 Blur:
7494 @example
7495 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7496 @end example
7497
7498 @end itemize
7499
7500 @section field
7501
7502 Extract a single field from an interlaced image using stride
7503 arithmetic to avoid wasting CPU time. The output frames are marked as
7504 non-interlaced.
7505
7506 The filter accepts the following options:
7507
7508 @table @option
7509 @item type
7510 Specify whether to extract the top (if the value is @code{0} or
7511 @code{top}) or the bottom field (if the value is @code{1} or
7512 @code{bottom}).
7513 @end table
7514
7515 @section fieldhint
7516
7517 Create new frames by copying the top and bottom fields from surrounding frames
7518 supplied as numbers by the hint file.
7519
7520 @table @option
7521 @item hint
7522 Set file containing hints: absolute/relative frame numbers.
7523
7524 There must be one line for each frame in a clip. Each line must contain two
7525 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7526 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7527 is current frame number for @code{absolute} mode or out of [-1, 1] range
7528 for @code{relative} mode. First number tells from which frame to pick up top
7529 field and second number tells from which frame to pick up bottom field.
7530
7531 If optionally followed by @code{+} output frame will be marked as interlaced,
7532 else if followed by @code{-} output frame will be marked as progressive, else
7533 it will be marked same as input frame.
7534 If line starts with @code{#} or @code{;} that line is skipped.
7535
7536 @item mode
7537 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7538 @end table
7539
7540 Example of first several lines of @code{hint} file for @code{relative} mode:
7541 @example
7542 0,0 - # first frame
7543 1,0 - # second frame, use third's frame top field and second's frame bottom field
7544 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7545 1,0 -
7546 0,0 -
7547 0,0 -
7548 1,0 -
7549 1,0 -
7550 1,0 -
7551 0,0 -
7552 0,0 -
7553 1,0 -
7554 1,0 -
7555 1,0 -
7556 0,0 -
7557 @end example
7558
7559 @section fieldmatch
7560
7561 Field matching filter for inverse telecine. It is meant to reconstruct the
7562 progressive frames from a telecined stream. The filter does not drop duplicated
7563 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7564 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7565
7566 The separation of the field matching and the decimation is notably motivated by
7567 the possibility of inserting a de-interlacing filter fallback between the two.
7568 If the source has mixed telecined and real interlaced content,
7569 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7570 But these remaining combed frames will be marked as interlaced, and thus can be
7571 de-interlaced by a later filter such as @ref{yadif} before decimation.
7572
7573 In addition to the various configuration options, @code{fieldmatch} can take an
7574 optional second stream, activated through the @option{ppsrc} option. If
7575 enabled, the frames reconstruction will be based on the fields and frames from
7576 this second stream. This allows the first input to be pre-processed in order to
7577 help the various algorithms of the filter, while keeping the output lossless
7578 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7579 or brightness/contrast adjustments can help.
7580
7581 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7582 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7583 which @code{fieldmatch} is based on. While the semantic and usage are very
7584 close, some behaviour and options names can differ.
7585
7586 The @ref{decimate} filter currently only works for constant frame rate input.
7587 If your input has mixed telecined (30fps) and progressive content with a lower
7588 framerate like 24fps use the following filterchain to produce the necessary cfr
7589 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7590
7591 The filter accepts the following options:
7592
7593 @table @option
7594 @item order
7595 Specify the assumed field order of the input stream. Available values are:
7596
7597 @table @samp
7598 @item auto
7599 Auto detect parity (use FFmpeg's internal parity value).
7600 @item bff
7601 Assume bottom field first.
7602 @item tff
7603 Assume top field first.
7604 @end table
7605
7606 Note that it is sometimes recommended not to trust the parity announced by the
7607 stream.
7608
7609 Default value is @var{auto}.
7610
7611 @item mode
7612 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7613 sense that it won't risk creating jerkiness due to duplicate frames when
7614 possible, but if there are bad edits or blended fields it will end up
7615 outputting combed frames when a good match might actually exist. On the other
7616 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7617 but will almost always find a good frame if there is one. The other values are
7618 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7619 jerkiness and creating duplicate frames versus finding good matches in sections
7620 with bad edits, orphaned fields, blended fields, etc.
7621
7622 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7623
7624 Available values are:
7625
7626 @table @samp
7627 @item pc
7628 2-way matching (p/c)
7629 @item pc_n
7630 2-way matching, and trying 3rd match if still combed (p/c + n)
7631 @item pc_u
7632 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7633 @item pc_n_ub
7634 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7635 still combed (p/c + n + u/b)
7636 @item pcn
7637 3-way matching (p/c/n)
7638 @item pcn_ub
7639 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7640 detected as combed (p/c/n + u/b)
7641 @end table
7642
7643 The parenthesis at the end indicate the matches that would be used for that
7644 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7645 @var{top}).
7646
7647 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7648 the slowest.
7649
7650 Default value is @var{pc_n}.
7651
7652 @item ppsrc
7653 Mark the main input stream as a pre-processed input, and enable the secondary
7654 input stream as the clean source to pick the fields from. See the filter
7655 introduction for more details. It is similar to the @option{clip2} feature from
7656 VFM/TFM.
7657
7658 Default value is @code{0} (disabled).
7659
7660 @item field
7661 Set the field to match from. It is recommended to set this to the same value as
7662 @option{order} unless you experience matching failures with that setting. In
7663 certain circumstances changing the field that is used to match from can have a
7664 large impact on matching performance. Available values are:
7665
7666 @table @samp
7667 @item auto
7668 Automatic (same value as @option{order}).
7669 @item bottom
7670 Match from the bottom field.
7671 @item top
7672 Match from the top field.
7673 @end table
7674
7675 Default value is @var{auto}.
7676
7677 @item mchroma
7678 Set whether or not chroma is included during the match comparisons. In most
7679 cases it is recommended to leave this enabled. You should set this to @code{0}
7680 only if your clip has bad chroma problems such as heavy rainbowing or other
7681 artifacts. Setting this to @code{0} could also be used to speed things up at
7682 the cost of some accuracy.
7683
7684 Default value is @code{1}.
7685
7686 @item y0
7687 @item y1
7688 These define an exclusion band which excludes the lines between @option{y0} and
7689 @option{y1} from being included in the field matching decision. An exclusion
7690 band can be used to ignore subtitles, a logo, or other things that may
7691 interfere with the matching. @option{y0} sets the starting scan line and
7692 @option{y1} sets the ending line; all lines in between @option{y0} and
7693 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7694 @option{y0} and @option{y1} to the same value will disable the feature.
7695 @option{y0} and @option{y1} defaults to @code{0}.
7696
7697 @item scthresh
7698 Set the scene change detection threshold as a percentage of maximum change on
7699 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7700 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7701 @option{scthresh} is @code{[0.0, 100.0]}.
7702
7703 Default value is @code{12.0}.
7704
7705 @item combmatch
7706 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7707 account the combed scores of matches when deciding what match to use as the
7708 final match. Available values are:
7709
7710 @table @samp
7711 @item none
7712 No final matching based on combed scores.
7713 @item sc
7714 Combed scores are only used when a scene change is detected.
7715 @item full
7716 Use combed scores all the time.
7717 @end table
7718
7719 Default is @var{sc}.
7720
7721 @item combdbg
7722 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7723 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7724 Available values are:
7725
7726 @table @samp
7727 @item none
7728 No forced calculation.
7729 @item pcn
7730 Force p/c/n calculations.
7731 @item pcnub
7732 Force p/c/n/u/b calculations.
7733 @end table
7734
7735 Default value is @var{none}.
7736
7737 @item cthresh
7738 This is the area combing threshold used for combed frame detection. This
7739 essentially controls how "strong" or "visible" combing must be to be detected.
7740 Larger values mean combing must be more visible and smaller values mean combing
7741 can be less visible or strong and still be detected. Valid settings are from
7742 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7743 be detected as combed). This is basically a pixel difference value. A good
7744 range is @code{[8, 12]}.
7745
7746 Default value is @code{9}.
7747
7748 @item chroma
7749 Sets whether or not chroma is considered in the combed frame decision.  Only
7750 disable this if your source has chroma problems (rainbowing, etc.) that are
7751 causing problems for the combed frame detection with chroma enabled. Actually,
7752 using @option{chroma}=@var{0} is usually more reliable, except for the case
7753 where there is chroma only combing in the source.
7754
7755 Default value is @code{0}.
7756
7757 @item blockx
7758 @item blocky
7759 Respectively set the x-axis and y-axis size of the window used during combed
7760 frame detection. This has to do with the size of the area in which
7761 @option{combpel} pixels are required to be detected as combed for a frame to be
7762 declared combed. See the @option{combpel} parameter description for more info.
7763 Possible values are any number that is a power of 2 starting at 4 and going up
7764 to 512.
7765
7766 Default value is @code{16}.
7767
7768 @item combpel
7769 The number of combed pixels inside any of the @option{blocky} by
7770 @option{blockx} size blocks on the frame for the frame to be detected as
7771 combed. While @option{cthresh} controls how "visible" the combing must be, this
7772 setting controls "how much" combing there must be in any localized area (a
7773 window defined by the @option{blockx} and @option{blocky} settings) on the
7774 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7775 which point no frames will ever be detected as combed). This setting is known
7776 as @option{MI} in TFM/VFM vocabulary.
7777
7778 Default value is @code{80}.
7779 @end table
7780
7781 @anchor{p/c/n/u/b meaning}
7782 @subsection p/c/n/u/b meaning
7783
7784 @subsubsection p/c/n
7785
7786 We assume the following telecined stream:
7787
7788 @example
7789 Top fields:     1 2 2 3 4
7790 Bottom fields:  1 2 3 4 4
7791 @end example
7792
7793 The numbers correspond to the progressive frame the fields relate to. Here, the
7794 first two frames are progressive, the 3rd and 4th are combed, and so on.
7795
7796 When @code{fieldmatch} is configured to run a matching from bottom
7797 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7798
7799 @example
7800 Input stream:
7801                 T     1 2 2 3 4
7802                 B     1 2 3 4 4   <-- matching reference
7803
7804 Matches:              c c n n c
7805
7806 Output stream:
7807                 T     1 2 3 4 4
7808                 B     1 2 3 4 4
7809 @end example
7810
7811 As a result of the field matching, we can see that some frames get duplicated.
7812 To perform a complete inverse telecine, you need to rely on a decimation filter
7813 after this operation. See for instance the @ref{decimate} filter.
7814
7815 The same operation now matching from top fields (@option{field}=@var{top})
7816 looks like this:
7817
7818 @example
7819 Input stream:
7820                 T     1 2 2 3 4   <-- matching reference
7821                 B     1 2 3 4 4
7822
7823 Matches:              c c p p c
7824
7825 Output stream:
7826                 T     1 2 2 3 4
7827                 B     1 2 2 3 4
7828 @end example
7829
7830 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7831 basically, they refer to the frame and field of the opposite parity:
7832
7833 @itemize
7834 @item @var{p} matches the field of the opposite parity in the previous frame
7835 @item @var{c} matches the field of the opposite parity in the current frame
7836 @item @var{n} matches the field of the opposite parity in the next frame
7837 @end itemize
7838
7839 @subsubsection u/b
7840
7841 The @var{u} and @var{b} matching are a bit special in the sense that they match
7842 from the opposite parity flag. In the following examples, we assume that we are
7843 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7844 'x' is placed above and below each matched fields.
7845
7846 With bottom matching (@option{field}=@var{bottom}):
7847 @example
7848 Match:           c         p           n          b          u
7849
7850                  x       x               x        x          x
7851   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7852   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7853                  x         x           x        x              x
7854
7855 Output frames:
7856                  2          1          2          2          2
7857                  2          2          2          1          3
7858 @end example
7859
7860 With top matching (@option{field}=@var{top}):
7861 @example
7862 Match:           c         p           n          b          u
7863
7864                  x         x           x        x              x
7865   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7866   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7867                  x       x               x        x          x
7868
7869 Output frames:
7870                  2          2          2          1          2
7871                  2          1          3          2          2
7872 @end example
7873
7874 @subsection Examples
7875
7876 Simple IVTC of a top field first telecined stream:
7877 @example
7878 fieldmatch=order=tff:combmatch=none, decimate
7879 @end example
7880
7881 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7882 @example
7883 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7884 @end example
7885
7886 @section fieldorder
7887
7888 Transform the field order of the input video.
7889
7890 It accepts the following parameters:
7891
7892 @table @option
7893
7894 @item order
7895 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7896 for bottom field first.
7897 @end table
7898
7899 The default value is @samp{tff}.
7900
7901 The transformation is done by shifting the picture content up or down
7902 by one line, and filling the remaining line with appropriate picture content.
7903 This method is consistent with most broadcast field order converters.
7904
7905 If the input video is not flagged as being interlaced, or it is already
7906 flagged as being of the required output field order, then this filter does
7907 not alter the incoming video.
7908
7909 It is very useful when converting to or from PAL DV material,
7910 which is bottom field first.
7911
7912 For example:
7913 @example
7914 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7915 @end example
7916
7917 @section fifo, afifo
7918
7919 Buffer input images and send them when they are requested.
7920
7921 It is mainly useful when auto-inserted by the libavfilter
7922 framework.
7923
7924 It does not take parameters.
7925
7926 @section find_rect
7927
7928 Find a rectangular object
7929
7930 It accepts the following options:
7931
7932 @table @option
7933 @item object
7934 Filepath of the object image, needs to be in gray8.
7935
7936 @item threshold
7937 Detection threshold, default is 0.5.
7938
7939 @item mipmaps
7940 Number of mipmaps, default is 3.
7941
7942 @item xmin, ymin, xmax, ymax
7943 Specifies the rectangle in which to search.
7944 @end table
7945
7946 @subsection Examples
7947
7948 @itemize
7949 @item
7950 Generate a representative palette of a given video using @command{ffmpeg}:
7951 @example
7952 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7953 @end example
7954 @end itemize
7955
7956 @section cover_rect
7957
7958 Cover a rectangular object
7959
7960 It accepts the following options:
7961
7962 @table @option
7963 @item cover
7964 Filepath of the optional cover image, needs to be in yuv420.
7965
7966 @item mode
7967 Set covering mode.
7968
7969 It accepts the following values:
7970 @table @samp
7971 @item cover
7972 cover it by the supplied image
7973 @item blur
7974 cover it by interpolating the surrounding pixels
7975 @end table
7976
7977 Default value is @var{blur}.
7978 @end table
7979
7980 @subsection Examples
7981
7982 @itemize
7983 @item
7984 Generate a representative palette of a given video using @command{ffmpeg}:
7985 @example
7986 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7987 @end example
7988 @end itemize
7989
7990 @anchor{format}
7991 @section format
7992
7993 Convert the input video to one of the specified pixel formats.
7994 Libavfilter will try to pick one that is suitable as input to
7995 the next filter.
7996
7997 It accepts the following parameters:
7998 @table @option
7999
8000 @item pix_fmts
8001 A '|'-separated list of pixel format names, such as
8002 "pix_fmts=yuv420p|monow|rgb24".
8003
8004 @end table
8005
8006 @subsection Examples
8007
8008 @itemize
8009 @item
8010 Convert the input video to the @var{yuv420p} format
8011 @example
8012 format=pix_fmts=yuv420p
8013 @end example
8014
8015 Convert the input video to any of the formats in the list
8016 @example
8017 format=pix_fmts=yuv420p|yuv444p|yuv410p
8018 @end example
8019 @end itemize
8020
8021 @anchor{fps}
8022 @section fps
8023
8024 Convert the video to specified constant frame rate by duplicating or dropping
8025 frames as necessary.
8026
8027 It accepts the following parameters:
8028 @table @option
8029
8030 @item fps
8031 The desired output frame rate. The default is @code{25}.
8032
8033 @item round
8034 Rounding method.
8035
8036 Possible values are:
8037 @table @option
8038 @item zero
8039 zero round towards 0
8040 @item inf
8041 round away from 0
8042 @item down
8043 round towards -infinity
8044 @item up
8045 round towards +infinity
8046 @item near
8047 round to nearest
8048 @end table
8049 The default is @code{near}.
8050
8051 @item start_time
8052 Assume the first PTS should be the given value, in seconds. This allows for
8053 padding/trimming at the start of stream. By default, no assumption is made
8054 about the first frame's expected PTS, so no padding or trimming is done.
8055 For example, this could be set to 0 to pad the beginning with duplicates of
8056 the first frame if a video stream starts after the audio stream or to trim any
8057 frames with a negative PTS.
8058
8059 @end table
8060
8061 Alternatively, the options can be specified as a flat string:
8062 @var{fps}[:@var{round}].
8063
8064 See also the @ref{setpts} filter.
8065
8066 @subsection Examples
8067
8068 @itemize
8069 @item
8070 A typical usage in order to set the fps to 25:
8071 @example
8072 fps=fps=25
8073 @end example
8074
8075 @item
8076 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8077 @example
8078 fps=fps=film:round=near
8079 @end example
8080 @end itemize
8081
8082 @section framepack
8083
8084 Pack two different video streams into a stereoscopic video, setting proper
8085 metadata on supported codecs. The two views should have the same size and
8086 framerate and processing will stop when the shorter video ends. Please note
8087 that you may conveniently adjust view properties with the @ref{scale} and
8088 @ref{fps} filters.
8089
8090 It accepts the following parameters:
8091 @table @option
8092
8093 @item format
8094 The desired packing format. Supported values are:
8095
8096 @table @option
8097
8098 @item sbs
8099 The views are next to each other (default).
8100
8101 @item tab
8102 The views are on top of each other.
8103
8104 @item lines
8105 The views are packed by line.
8106
8107 @item columns
8108 The views are packed by column.
8109
8110 @item frameseq
8111 The views are temporally interleaved.
8112
8113 @end table
8114
8115 @end table
8116
8117 Some examples:
8118
8119 @example
8120 # Convert left and right views into a frame-sequential video
8121 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8122
8123 # Convert views into a side-by-side video with the same output resolution as the input
8124 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
8125 @end example
8126
8127 @section framerate
8128
8129 Change the frame rate by interpolating new video output frames from the source
8130 frames.
8131
8132 This filter is not designed to function correctly with interlaced media. If
8133 you wish to change the frame rate of interlaced media then you are required
8134 to deinterlace before this filter and re-interlace after this filter.
8135
8136 A description of the accepted options follows.
8137
8138 @table @option
8139 @item fps
8140 Specify the output frames per second. This option can also be specified
8141 as a value alone. The default is @code{50}.
8142
8143 @item interp_start
8144 Specify the start of a range where the output frame will be created as a
8145 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8146 the default is @code{15}.
8147
8148 @item interp_end
8149 Specify the end of a range where the output frame will be created as a
8150 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8151 the default is @code{240}.
8152
8153 @item scene
8154 Specify the level at which a scene change is detected as a value between
8155 0 and 100 to indicate a new scene; a low value reflects a low
8156 probability for the current frame to introduce a new scene, while a higher
8157 value means the current frame is more likely to be one.
8158 The default is @code{7}.
8159
8160 @item flags
8161 Specify flags influencing the filter process.
8162
8163 Available value for @var{flags} is:
8164
8165 @table @option
8166 @item scene_change_detect, scd
8167 Enable scene change detection using the value of the option @var{scene}.
8168 This flag is enabled by default.
8169 @end table
8170 @end table
8171
8172 @section framestep
8173
8174 Select one frame every N-th frame.
8175
8176 This filter accepts the following option:
8177 @table @option
8178 @item step
8179 Select frame after every @code{step} frames.
8180 Allowed values are positive integers higher than 0. Default value is @code{1}.
8181 @end table
8182
8183 @anchor{frei0r}
8184 @section frei0r
8185
8186 Apply a frei0r effect to the input video.
8187
8188 To enable the compilation of this filter, you need to install the frei0r
8189 header and configure FFmpeg with @code{--enable-frei0r}.
8190
8191 It accepts the following parameters:
8192
8193 @table @option
8194
8195 @item filter_name
8196 The name of the frei0r effect to load. If the environment variable
8197 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8198 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8199 Otherwise, the standard frei0r paths are searched, in this order:
8200 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8201 @file{/usr/lib/frei0r-1/}.
8202
8203 @item filter_params
8204 A '|'-separated list of parameters to pass to the frei0r effect.
8205
8206 @end table
8207
8208 A frei0r effect parameter can be a boolean (its value is either
8209 "y" or "n"), a double, a color (specified as
8210 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8211 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8212 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8213 @var{X} and @var{Y} are floating point numbers) and/or a string.
8214
8215 The number and types of parameters depend on the loaded effect. If an
8216 effect parameter is not specified, the default value is set.
8217
8218 @subsection Examples
8219
8220 @itemize
8221 @item
8222 Apply the distort0r effect, setting the first two double parameters:
8223 @example
8224 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8225 @end example
8226
8227 @item
8228 Apply the colordistance effect, taking a color as the first parameter:
8229 @example
8230 frei0r=colordistance:0.2/0.3/0.4
8231 frei0r=colordistance:violet
8232 frei0r=colordistance:0x112233
8233 @end example
8234
8235 @item
8236 Apply the perspective effect, specifying the top left and top right image
8237 positions:
8238 @example
8239 frei0r=perspective:0.2/0.2|0.8/0.2
8240 @end example
8241 @end itemize
8242
8243 For more information, see
8244 @url{http://frei0r.dyne.org}
8245
8246 @section fspp
8247
8248 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8249
8250 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8251 processing filter, one of them is performed once per block, not per pixel.
8252 This allows for much higher speed.
8253
8254 The filter accepts the following options:
8255
8256 @table @option
8257 @item quality
8258 Set quality. This option defines the number of levels for averaging. It accepts
8259 an integer in the range 4-5. Default value is @code{4}.
8260
8261 @item qp
8262 Force a constant quantization parameter. It accepts an integer in range 0-63.
8263 If not set, the filter will use the QP from the video stream (if available).
8264
8265 @item strength
8266 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8267 more details but also more artifacts, while higher values make the image smoother
8268 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8269
8270 @item use_bframe_qp
8271 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8272 option may cause flicker since the B-Frames have often larger QP. Default is
8273 @code{0} (not enabled).
8274
8275 @end table
8276
8277 @section gblur
8278
8279 Apply Gaussian blur filter.
8280
8281 The filter accepts the following options:
8282
8283 @table @option
8284 @item sigma
8285 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
8286
8287 @item steps
8288 Set number of steps for Gaussian approximation. Defauls is @code{1}.
8289
8290 @item planes
8291 Set which planes to filter. By default all planes are filtered.
8292
8293 @item sigmaV
8294 Set vertical sigma, if negative it will be same as @code{sigma}.
8295 Default is @code{-1}.
8296 @end table
8297
8298 @section geq
8299
8300 The filter accepts the following options:
8301
8302 @table @option
8303 @item lum_expr, lum
8304 Set the luminance expression.
8305 @item cb_expr, cb
8306 Set the chrominance blue expression.
8307 @item cr_expr, cr
8308 Set the chrominance red expression.
8309 @item alpha_expr, a
8310 Set the alpha expression.
8311 @item red_expr, r
8312 Set the red expression.
8313 @item green_expr, g
8314 Set the green expression.
8315 @item blue_expr, b
8316 Set the blue expression.
8317 @end table
8318
8319 The colorspace is selected according to the specified options. If one
8320 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8321 options is specified, the filter will automatically select a YCbCr
8322 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8323 @option{blue_expr} options is specified, it will select an RGB
8324 colorspace.
8325
8326 If one of the chrominance expression is not defined, it falls back on the other
8327 one. If no alpha expression is specified it will evaluate to opaque value.
8328 If none of chrominance expressions are specified, they will evaluate
8329 to the luminance expression.
8330
8331 The expressions can use the following variables and functions:
8332
8333 @table @option
8334 @item N
8335 The sequential number of the filtered frame, starting from @code{0}.
8336
8337 @item X
8338 @item Y
8339 The coordinates of the current sample.
8340
8341 @item W
8342 @item H
8343 The width and height of the image.
8344
8345 @item SW
8346 @item SH
8347 Width and height scale depending on the currently filtered plane. It is the
8348 ratio between the corresponding luma plane number of pixels and the current
8349 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8350 @code{0.5,0.5} for chroma planes.
8351
8352 @item T
8353 Time of the current frame, expressed in seconds.
8354
8355 @item p(x, y)
8356 Return the value of the pixel at location (@var{x},@var{y}) of the current
8357 plane.
8358
8359 @item lum(x, y)
8360 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8361 plane.
8362
8363 @item cb(x, y)
8364 Return the value of the pixel at location (@var{x},@var{y}) of the
8365 blue-difference chroma plane. Return 0 if there is no such plane.
8366
8367 @item cr(x, y)
8368 Return the value of the pixel at location (@var{x},@var{y}) of the
8369 red-difference chroma plane. Return 0 if there is no such plane.
8370
8371 @item r(x, y)
8372 @item g(x, y)
8373 @item b(x, y)
8374 Return the value of the pixel at location (@var{x},@var{y}) of the
8375 red/green/blue component. Return 0 if there is no such component.
8376
8377 @item alpha(x, y)
8378 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8379 plane. Return 0 if there is no such plane.
8380 @end table
8381
8382 For functions, if @var{x} and @var{y} are outside the area, the value will be
8383 automatically clipped to the closer edge.
8384
8385 @subsection Examples
8386
8387 @itemize
8388 @item
8389 Flip the image horizontally:
8390 @example
8391 geq=p(W-X\,Y)
8392 @end example
8393
8394 @item
8395 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8396 wavelength of 100 pixels:
8397 @example
8398 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8399 @end example
8400
8401 @item
8402 Generate a fancy enigmatic moving light:
8403 @example
8404 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
8405 @end example
8406
8407 @item
8408 Generate a quick emboss effect:
8409 @example
8410 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8411 @end example
8412
8413 @item
8414 Modify RGB components depending on pixel position:
8415 @example
8416 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8417 @end example
8418
8419 @item
8420 Create a radial gradient that is the same size as the input (also see
8421 the @ref{vignette} filter):
8422 @example
8423 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8424 @end example
8425 @end itemize
8426
8427 @section gradfun
8428
8429 Fix the banding artifacts that are sometimes introduced into nearly flat
8430 regions by truncation to 8-bit color depth.
8431 Interpolate the gradients that should go where the bands are, and
8432 dither them.
8433
8434 It is designed for playback only.  Do not use it prior to
8435 lossy compression, because compression tends to lose the dither and
8436 bring back the bands.
8437
8438 It accepts the following parameters:
8439
8440 @table @option
8441
8442 @item strength
8443 The maximum amount by which the filter will change any one pixel. This is also
8444 the threshold for detecting nearly flat regions. Acceptable values range from
8445 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8446 valid range.
8447
8448 @item radius
8449 The neighborhood to fit the gradient to. A larger radius makes for smoother
8450 gradients, but also prevents the filter from modifying the pixels near detailed
8451 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8452 values will be clipped to the valid range.
8453
8454 @end table
8455
8456 Alternatively, the options can be specified as a flat string:
8457 @var{strength}[:@var{radius}]
8458
8459 @subsection Examples
8460
8461 @itemize
8462 @item
8463 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8464 @example
8465 gradfun=3.5:8
8466 @end example
8467
8468 @item
8469 Specify radius, omitting the strength (which will fall-back to the default
8470 value):
8471 @example
8472 gradfun=radius=8
8473 @end example
8474
8475 @end itemize
8476
8477 @anchor{haldclut}
8478 @section haldclut
8479
8480 Apply a Hald CLUT to a video stream.
8481
8482 First input is the video stream to process, and second one is the Hald CLUT.
8483 The Hald CLUT input can be a simple picture or a complete video stream.
8484
8485 The filter accepts the following options:
8486
8487 @table @option
8488 @item shortest
8489 Force termination when the shortest input terminates. Default is @code{0}.
8490 @item repeatlast
8491 Continue applying the last CLUT after the end of the stream. A value of
8492 @code{0} disable the filter after the last frame of the CLUT is reached.
8493 Default is @code{1}.
8494 @end table
8495
8496 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8497 filters share the same internals).
8498
8499 More information about the Hald CLUT can be found on Eskil Steenberg's website
8500 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8501
8502 @subsection Workflow examples
8503
8504 @subsubsection Hald CLUT video stream
8505
8506 Generate an identity Hald CLUT stream altered with various effects:
8507 @example
8508 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
8509 @end example
8510
8511 Note: make sure you use a lossless codec.
8512
8513 Then use it with @code{haldclut} to apply it on some random stream:
8514 @example
8515 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8516 @end example
8517
8518 The Hald CLUT will be applied to the 10 first seconds (duration of
8519 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8520 to the remaining frames of the @code{mandelbrot} stream.
8521
8522 @subsubsection Hald CLUT with preview
8523
8524 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8525 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8526 biggest possible square starting at the top left of the picture. The remaining
8527 padding pixels (bottom or right) will be ignored. This area can be used to add
8528 a preview of the Hald CLUT.
8529
8530 Typically, the following generated Hald CLUT will be supported by the
8531 @code{haldclut} filter:
8532
8533 @example
8534 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8535    pad=iw+320 [padded_clut];
8536    smptebars=s=320x256, split [a][b];
8537    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8538    [main][b] overlay=W-320" -frames:v 1 clut.png
8539 @end example
8540
8541 It contains the original and a preview of the effect of the CLUT: SMPTE color
8542 bars are displayed on the right-top, and below the same color bars processed by
8543 the color changes.
8544
8545 Then, the effect of this Hald CLUT can be visualized with:
8546 @example
8547 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8548 @end example
8549
8550 @section hflip
8551
8552 Flip the input video horizontally.
8553
8554 For example, to horizontally flip the input video with @command{ffmpeg}:
8555 @example
8556 ffmpeg -i in.avi -vf "hflip" out.avi
8557 @end example
8558
8559 @section histeq
8560 This filter applies a global color histogram equalization on a
8561 per-frame basis.
8562
8563 It can be used to correct video that has a compressed range of pixel
8564 intensities.  The filter redistributes the pixel intensities to
8565 equalize their distribution across the intensity range. It may be
8566 viewed as an "automatically adjusting contrast filter". This filter is
8567 useful only for correcting degraded or poorly captured source
8568 video.
8569
8570 The filter accepts the following options:
8571
8572 @table @option
8573 @item strength
8574 Determine the amount of equalization to be applied.  As the strength
8575 is reduced, the distribution of pixel intensities more-and-more
8576 approaches that of the input frame. The value must be a float number
8577 in the range [0,1] and defaults to 0.200.
8578
8579 @item intensity
8580 Set the maximum intensity that can generated and scale the output
8581 values appropriately.  The strength should be set as desired and then
8582 the intensity can be limited if needed to avoid washing-out. The value
8583 must be a float number in the range [0,1] and defaults to 0.210.
8584
8585 @item antibanding
8586 Set the antibanding level. If enabled the filter will randomly vary
8587 the luminance of output pixels by a small amount to avoid banding of
8588 the histogram. Possible values are @code{none}, @code{weak} or
8589 @code{strong}. It defaults to @code{none}.
8590 @end table
8591
8592 @section histogram
8593
8594 Compute and draw a color distribution histogram for the input video.
8595
8596 The computed histogram is a representation of the color component
8597 distribution in an image.
8598
8599 Standard histogram displays the color components distribution in an image.
8600 Displays color graph for each color component. Shows distribution of
8601 the Y, U, V, A or R, G, B components, depending on input format, in the
8602 current frame. Below each graph a color component scale meter is shown.
8603
8604 The filter accepts the following options:
8605
8606 @table @option
8607 @item level_height
8608 Set height of level. Default value is @code{200}.
8609 Allowed range is [50, 2048].
8610
8611 @item scale_height
8612 Set height of color scale. Default value is @code{12}.
8613 Allowed range is [0, 40].
8614
8615 @item display_mode
8616 Set display mode.
8617 It accepts the following values:
8618 @table @samp
8619 @item parade
8620 Per color component graphs are placed below each other.
8621
8622 @item overlay
8623 Presents information identical to that in the @code{parade}, except
8624 that the graphs representing color components are superimposed directly
8625 over one another.
8626 @end table
8627 Default is @code{parade}.
8628
8629 @item levels_mode
8630 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8631 Default is @code{linear}.
8632
8633 @item components
8634 Set what color components to display.
8635 Default is @code{7}.
8636
8637 @item fgopacity
8638 Set foreground opacity. Default is @code{0.7}.
8639
8640 @item bgopacity
8641 Set background opacity. Default is @code{0.5}.
8642 @end table
8643
8644 @subsection Examples
8645
8646 @itemize
8647
8648 @item
8649 Calculate and draw histogram:
8650 @example
8651 ffplay -i input -vf histogram
8652 @end example
8653
8654 @end itemize
8655
8656 @anchor{hqdn3d}
8657 @section hqdn3d
8658
8659 This is a high precision/quality 3d denoise filter. It aims to reduce
8660 image noise, producing smooth images and making still images really
8661 still. It should enhance compressibility.
8662
8663 It accepts the following optional parameters:
8664
8665 @table @option
8666 @item luma_spatial
8667 A non-negative floating point number which specifies spatial luma strength.
8668 It defaults to 4.0.
8669
8670 @item chroma_spatial
8671 A non-negative floating point number which specifies spatial chroma strength.
8672 It defaults to 3.0*@var{luma_spatial}/4.0.
8673
8674 @item luma_tmp
8675 A floating point number which specifies luma temporal strength. It defaults to
8676 6.0*@var{luma_spatial}/4.0.
8677
8678 @item chroma_tmp
8679 A floating point number which specifies chroma temporal strength. It defaults to
8680 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8681 @end table
8682
8683 @anchor{hwupload_cuda}
8684 @section hwupload_cuda
8685
8686 Upload system memory frames to a CUDA device.
8687
8688 It accepts the following optional parameters:
8689
8690 @table @option
8691 @item device
8692 The number of the CUDA device to use
8693 @end table
8694
8695 @section hqx
8696
8697 Apply a high-quality magnification filter designed for pixel art. This filter
8698 was originally created by Maxim Stepin.
8699
8700 It accepts the following option:
8701
8702 @table @option
8703 @item n
8704 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8705 @code{hq3x} and @code{4} for @code{hq4x}.
8706 Default is @code{3}.
8707 @end table
8708
8709 @section hstack
8710 Stack input videos horizontally.
8711
8712 All streams must be of same pixel format and of same height.
8713
8714 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8715 to create same output.
8716
8717 The filter accept the following option:
8718
8719 @table @option
8720 @item inputs
8721 Set number of input streams. Default is 2.
8722
8723 @item shortest
8724 If set to 1, force the output to terminate when the shortest input
8725 terminates. Default value is 0.
8726 @end table
8727
8728 @section hue
8729
8730 Modify the hue and/or the saturation of the input.
8731
8732 It accepts the following parameters:
8733
8734 @table @option
8735 @item h
8736 Specify the hue angle as a number of degrees. It accepts an expression,
8737 and defaults to "0".
8738
8739 @item s
8740 Specify the saturation in the [-10,10] range. It accepts an expression and
8741 defaults to "1".
8742
8743 @item H
8744 Specify the hue angle as a number of radians. It accepts an
8745 expression, and defaults to "0".
8746
8747 @item b
8748 Specify the brightness in the [-10,10] range. It accepts an expression and
8749 defaults to "0".
8750 @end table
8751
8752 @option{h} and @option{H} are mutually exclusive, and can't be
8753 specified at the same time.
8754
8755 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8756 expressions containing the following constants:
8757
8758 @table @option
8759 @item n
8760 frame count of the input frame starting from 0
8761
8762 @item pts
8763 presentation timestamp of the input frame expressed in time base units
8764
8765 @item r
8766 frame rate of the input video, NAN if the input frame rate is unknown
8767
8768 @item t
8769 timestamp expressed in seconds, NAN if the input timestamp is unknown
8770
8771 @item tb
8772 time base of the input video
8773 @end table
8774
8775 @subsection Examples
8776
8777 @itemize
8778 @item
8779 Set the hue to 90 degrees and the saturation to 1.0:
8780 @example
8781 hue=h=90:s=1
8782 @end example
8783
8784 @item
8785 Same command but expressing the hue in radians:
8786 @example
8787 hue=H=PI/2:s=1
8788 @end example
8789
8790 @item
8791 Rotate hue and make the saturation swing between 0
8792 and 2 over a period of 1 second:
8793 @example
8794 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8795 @end example
8796
8797 @item
8798 Apply a 3 seconds saturation fade-in effect starting at 0:
8799 @example
8800 hue="s=min(t/3\,1)"
8801 @end example
8802
8803 The general fade-in expression can be written as:
8804 @example
8805 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8806 @end example
8807
8808 @item
8809 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8810 @example
8811 hue="s=max(0\, min(1\, (8-t)/3))"
8812 @end example
8813
8814 The general fade-out expression can be written as:
8815 @example
8816 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8817 @end example
8818
8819 @end itemize
8820
8821 @subsection Commands
8822
8823 This filter supports the following commands:
8824 @table @option
8825 @item b
8826 @item s
8827 @item h
8828 @item H
8829 Modify the hue and/or the saturation and/or brightness of the input video.
8830 The command accepts the same syntax of the corresponding option.
8831
8832 If the specified expression is not valid, it is kept at its current
8833 value.
8834 @end table
8835
8836 @section hysteresis
8837
8838 Grow first stream into second stream by connecting components.
8839 This allows to build more robust edge masks.
8840
8841 This filter accepts the following options:
8842
8843 @table @option
8844 @item planes
8845 Set which planes will be processed as bitmap, unprocessed planes will be
8846 copied from first stream.
8847 By default value 0xf, all planes will be processed.
8848
8849 @item threshold
8850 Set threshold which is used in filtering. If pixel component value is higher than
8851 this value filter algorithm for connecting components is activated.
8852 By default value is 0.
8853 @end table
8854
8855 @section idet
8856
8857 Detect video interlacing type.
8858
8859 This filter tries to detect if the input frames are interlaced, progressive,
8860 top or bottom field first. It will also try to detect fields that are
8861 repeated between adjacent frames (a sign of telecine).
8862
8863 Single frame detection considers only immediately adjacent frames when classifying each frame.
8864 Multiple frame detection incorporates the classification history of previous frames.
8865
8866 The filter will log these metadata values:
8867
8868 @table @option
8869 @item single.current_frame
8870 Detected type of current frame using single-frame detection. One of:
8871 ``tff'' (top field first), ``bff'' (bottom field first),
8872 ``progressive'', or ``undetermined''
8873
8874 @item single.tff
8875 Cumulative number of frames detected as top field first using single-frame detection.
8876
8877 @item multiple.tff
8878 Cumulative number of frames detected as top field first using multiple-frame detection.
8879
8880 @item single.bff
8881 Cumulative number of frames detected as bottom field first using single-frame detection.
8882
8883 @item multiple.current_frame
8884 Detected type of current frame using multiple-frame detection. One of:
8885 ``tff'' (top field first), ``bff'' (bottom field first),
8886 ``progressive'', or ``undetermined''
8887
8888 @item multiple.bff
8889 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8890
8891 @item single.progressive
8892 Cumulative number of frames detected as progressive using single-frame detection.
8893
8894 @item multiple.progressive
8895 Cumulative number of frames detected as progressive using multiple-frame detection.
8896
8897 @item single.undetermined
8898 Cumulative number of frames that could not be classified using single-frame detection.
8899
8900 @item multiple.undetermined
8901 Cumulative number of frames that could not be classified using multiple-frame detection.
8902
8903 @item repeated.current_frame
8904 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8905
8906 @item repeated.neither
8907 Cumulative number of frames with no repeated field.
8908
8909 @item repeated.top
8910 Cumulative number of frames with the top field repeated from the previous frame's top field.
8911
8912 @item repeated.bottom
8913 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
8914 @end table
8915
8916 The filter accepts the following options:
8917
8918 @table @option
8919 @item intl_thres
8920 Set interlacing threshold.
8921 @item prog_thres
8922 Set progressive threshold.
8923 @item rep_thres
8924 Threshold for repeated field detection.
8925 @item half_life
8926 Number of frames after which a given frame's contribution to the
8927 statistics is halved (i.e., it contributes only 0.5 to its
8928 classification). The default of 0 means that all frames seen are given
8929 full weight of 1.0 forever.
8930 @item analyze_interlaced_flag
8931 When this is not 0 then idet will use the specified number of frames to determine
8932 if the interlaced flag is accurate, it will not count undetermined frames.
8933 If the flag is found to be accurate it will be used without any further
8934 computations, if it is found to be inaccurate it will be cleared without any
8935 further computations. This allows inserting the idet filter as a low computational
8936 method to clean up the interlaced flag
8937 @end table
8938
8939 @section il
8940
8941 Deinterleave or interleave fields.
8942
8943 This filter allows one to process interlaced images fields without
8944 deinterlacing them. Deinterleaving splits the input frame into 2
8945 fields (so called half pictures). Odd lines are moved to the top
8946 half of the output image, even lines to the bottom half.
8947 You can process (filter) them independently and then re-interleave them.
8948
8949 The filter accepts the following options:
8950
8951 @table @option
8952 @item luma_mode, l
8953 @item chroma_mode, c
8954 @item alpha_mode, a
8955 Available values for @var{luma_mode}, @var{chroma_mode} and
8956 @var{alpha_mode} are:
8957
8958 @table @samp
8959 @item none
8960 Do nothing.
8961
8962 @item deinterleave, d
8963 Deinterleave fields, placing one above the other.
8964
8965 @item interleave, i
8966 Interleave fields. Reverse the effect of deinterleaving.
8967 @end table
8968 Default value is @code{none}.
8969
8970 @item luma_swap, ls
8971 @item chroma_swap, cs
8972 @item alpha_swap, as
8973 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8974 @end table
8975
8976 @section inflate
8977
8978 Apply inflate effect to the video.
8979
8980 This filter replaces the pixel by the local(3x3) average by taking into account
8981 only values higher than the pixel.
8982
8983 It accepts the following options:
8984
8985 @table @option
8986 @item threshold0
8987 @item threshold1
8988 @item threshold2
8989 @item threshold3
8990 Limit the maximum change for each plane, default is 65535.
8991 If 0, plane will remain unchanged.
8992 @end table
8993
8994 @section interlace
8995
8996 Simple interlacing filter from progressive contents. This interleaves upper (or
8997 lower) lines from odd frames with lower (or upper) lines from even frames,
8998 halving the frame rate and preserving image height.
8999
9000 @example
9001    Original        Original             New Frame
9002    Frame 'j'      Frame 'j+1'             (tff)
9003   ==========      ===========       ==================
9004     Line 0  -------------------->    Frame 'j' Line 0
9005     Line 1          Line 1  ---->   Frame 'j+1' Line 1
9006     Line 2 --------------------->    Frame 'j' Line 2
9007     Line 3          Line 3  ---->   Frame 'j+1' Line 3
9008      ...             ...                   ...
9009 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
9010 @end example
9011
9012 It accepts the following optional parameters:
9013
9014 @table @option
9015 @item scan
9016 This determines whether the interlaced frame is taken from the even
9017 (tff - default) or odd (bff) lines of the progressive frame.
9018
9019 @item lowpass
9020 Enable (default) or disable the vertical lowpass filter to avoid twitter
9021 interlacing and reduce moire patterns.
9022 @end table
9023
9024 @section kerndeint
9025
9026 Deinterlace input video by applying Donald Graft's adaptive kernel
9027 deinterling. Work on interlaced parts of a video to produce
9028 progressive frames.
9029
9030 The description of the accepted parameters follows.
9031
9032 @table @option
9033 @item thresh
9034 Set the threshold which affects the filter's tolerance when
9035 determining if a pixel line must be processed. It must be an integer
9036 in the range [0,255] and defaults to 10. A value of 0 will result in
9037 applying the process on every pixels.
9038
9039 @item map
9040 Paint pixels exceeding the threshold value to white if set to 1.
9041 Default is 0.
9042
9043 @item order
9044 Set the fields order. Swap fields if set to 1, leave fields alone if
9045 0. Default is 0.
9046
9047 @item sharp
9048 Enable additional sharpening if set to 1. Default is 0.
9049
9050 @item twoway
9051 Enable twoway sharpening if set to 1. Default is 0.
9052 @end table
9053
9054 @subsection Examples
9055
9056 @itemize
9057 @item
9058 Apply default values:
9059 @example
9060 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9061 @end example
9062
9063 @item
9064 Enable additional sharpening:
9065 @example
9066 kerndeint=sharp=1
9067 @end example
9068
9069 @item
9070 Paint processed pixels in white:
9071 @example
9072 kerndeint=map=1
9073 @end example
9074 @end itemize
9075
9076 @section lenscorrection
9077
9078 Correct radial lens distortion
9079
9080 This filter can be used to correct for radial distortion as can result from the use
9081 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9082 one can use tools available for example as part of opencv or simply trial-and-error.
9083 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9084 and extract the k1 and k2 coefficients from the resulting matrix.
9085
9086 Note that effectively the same filter is available in the open-source tools Krita and
9087 Digikam from the KDE project.
9088
9089 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9090 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9091 brightness distribution, so you may want to use both filters together in certain
9092 cases, though you will have to take care of ordering, i.e. whether vignetting should
9093 be applied before or after lens correction.
9094
9095 @subsection Options
9096
9097 The filter accepts the following options:
9098
9099 @table @option
9100 @item cx
9101 Relative x-coordinate of the focal point of the image, and thereby the center of the
9102 distortion. This value has a range [0,1] and is expressed as fractions of the image
9103 width.
9104 @item cy
9105 Relative y-coordinate of the focal point of the image, and thereby the center of the
9106 distortion. This value has a range [0,1] and is expressed as fractions of the image
9107 height.
9108 @item k1
9109 Coefficient of the quadratic correction term. 0.5 means no correction.
9110 @item k2
9111 Coefficient of the double quadratic correction term. 0.5 means no correction.
9112 @end table
9113
9114 The formula that generates the correction is:
9115
9116 @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)
9117
9118 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9119 distances from the focal point in the source and target images, respectively.
9120
9121 @section loop
9122
9123 Loop video frames.
9124
9125 The filter accepts the following options:
9126
9127 @table @option
9128 @item loop
9129 Set the number of loops.
9130
9131 @item size
9132 Set maximal size in number of frames.
9133
9134 @item start
9135 Set first frame of loop.
9136 @end table
9137
9138 @anchor{lut3d}
9139 @section lut3d
9140
9141 Apply a 3D LUT to an input video.
9142
9143 The filter accepts the following options:
9144
9145 @table @option
9146 @item file
9147 Set the 3D LUT file name.
9148
9149 Currently supported formats:
9150 @table @samp
9151 @item 3dl
9152 AfterEffects
9153 @item cube
9154 Iridas
9155 @item dat
9156 DaVinci
9157 @item m3d
9158 Pandora
9159 @end table
9160 @item interp
9161 Select interpolation mode.
9162
9163 Available values are:
9164
9165 @table @samp
9166 @item nearest
9167 Use values from the nearest defined point.
9168 @item trilinear
9169 Interpolate values using the 8 points defining a cube.
9170 @item tetrahedral
9171 Interpolate values using a tetrahedron.
9172 @end table
9173 @end table
9174
9175 @section lut, lutrgb, lutyuv
9176
9177 Compute a look-up table for binding each pixel component input value
9178 to an output value, and apply it to the input video.
9179
9180 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9181 to an RGB input video.
9182
9183 These filters accept the following parameters:
9184 @table @option
9185 @item c0
9186 set first pixel component expression
9187 @item c1
9188 set second pixel component expression
9189 @item c2
9190 set third pixel component expression
9191 @item c3
9192 set fourth pixel component expression, corresponds to the alpha component
9193
9194 @item r
9195 set red component expression
9196 @item g
9197 set green component expression
9198 @item b
9199 set blue component expression
9200 @item a
9201 alpha component expression
9202
9203 @item y
9204 set Y/luminance component expression
9205 @item u
9206 set U/Cb component expression
9207 @item v
9208 set V/Cr component expression
9209 @end table
9210
9211 Each of them specifies the expression to use for computing the lookup table for
9212 the corresponding pixel component values.
9213
9214 The exact component associated to each of the @var{c*} options depends on the
9215 format in input.
9216
9217 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9218 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9219
9220 The expressions can contain the following constants and functions:
9221
9222 @table @option
9223 @item w
9224 @item h
9225 The input width and height.
9226
9227 @item val
9228 The input value for the pixel component.
9229
9230 @item clipval
9231 The input value, clipped to the @var{minval}-@var{maxval} range.
9232
9233 @item maxval
9234 The maximum value for the pixel component.
9235
9236 @item minval
9237 The minimum value for the pixel component.
9238
9239 @item negval
9240 The negated value for the pixel component value, clipped to the
9241 @var{minval}-@var{maxval} range; it corresponds to the expression
9242 "maxval-clipval+minval".
9243
9244 @item clip(val)
9245 The computed value in @var{val}, clipped to the
9246 @var{minval}-@var{maxval} range.
9247
9248 @item gammaval(gamma)
9249 The computed gamma correction value of the pixel component value,
9250 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9251 expression
9252 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9253
9254 @end table
9255
9256 All expressions default to "val".
9257
9258 @subsection Examples
9259
9260 @itemize
9261 @item
9262 Negate input video:
9263 @example
9264 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9265 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9266 @end example
9267
9268 The above is the same as:
9269 @example
9270 lutrgb="r=negval:g=negval:b=negval"
9271 lutyuv="y=negval:u=negval:v=negval"
9272 @end example
9273
9274 @item
9275 Negate luminance:
9276 @example
9277 lutyuv=y=negval
9278 @end example
9279
9280 @item
9281 Remove chroma components, turning the video into a graytone image:
9282 @example
9283 lutyuv="u=128:v=128"
9284 @end example
9285
9286 @item
9287 Apply a luma burning effect:
9288 @example
9289 lutyuv="y=2*val"
9290 @end example
9291
9292 @item
9293 Remove green and blue components:
9294 @example
9295 lutrgb="g=0:b=0"
9296 @end example
9297
9298 @item
9299 Set a constant alpha channel value on input:
9300 @example
9301 format=rgba,lutrgb=a="maxval-minval/2"
9302 @end example
9303
9304 @item
9305 Correct luminance gamma by a factor of 0.5:
9306 @example
9307 lutyuv=y=gammaval(0.5)
9308 @end example
9309
9310 @item
9311 Discard least significant bits of luma:
9312 @example
9313 lutyuv=y='bitand(val, 128+64+32)'
9314 @end example
9315
9316 @item
9317 Technicolor like effect:
9318 @example
9319 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9320 @end example
9321 @end itemize
9322
9323 @section lut2
9324
9325 Compute and apply a lookup table from two video inputs.
9326
9327 This filter accepts the following parameters:
9328 @table @option
9329 @item c0
9330 set first pixel component expression
9331 @item c1
9332 set second pixel component expression
9333 @item c2
9334 set third pixel component expression
9335 @item c3
9336 set fourth pixel component expression, corresponds to the alpha component
9337 @end table
9338
9339 Each of them specifies the expression to use for computing the lookup table for
9340 the corresponding pixel component values.
9341
9342 The exact component associated to each of the @var{c*} options depends on the
9343 format in inputs.
9344
9345 The expressions can contain the following constants:
9346
9347 @table @option
9348 @item w
9349 @item h
9350 The input width and height.
9351
9352 @item x
9353 The first input value for the pixel component.
9354
9355 @item y
9356 The second input value for the pixel component.
9357
9358 @item bdx
9359 The first input video bit depth.
9360
9361 @item bdy
9362 The second input video bit depth.
9363 @end table
9364
9365 All expressions default to "x".
9366
9367 @subsection Examples
9368
9369 @itemize
9370 @item
9371 Highlight differences between two RGB video streams:
9372 @example
9373 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)'
9374 @end example
9375
9376 @item
9377 Highlight differences between two YUV video streams:
9378 @example
9379 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)'
9380 @end example
9381 @end itemize
9382
9383 @section maskedclamp
9384
9385 Clamp the first input stream with the second input and third input stream.
9386
9387 Returns the value of first stream to be between second input
9388 stream - @code{undershoot} and third input stream + @code{overshoot}.
9389
9390 This filter accepts the following options:
9391 @table @option
9392 @item undershoot
9393 Default value is @code{0}.
9394
9395 @item overshoot
9396 Default value is @code{0}.
9397
9398 @item planes
9399 Set which planes will be processed as bitmap, unprocessed planes will be
9400 copied from first stream.
9401 By default value 0xf, all planes will be processed.
9402 @end table
9403
9404 @section maskedmerge
9405
9406 Merge the first input stream with the second input stream using per pixel
9407 weights in the third input stream.
9408
9409 A value of 0 in the third stream pixel component means that pixel component
9410 from first stream is returned unchanged, while maximum value (eg. 255 for
9411 8-bit videos) means that pixel component from second stream is returned
9412 unchanged. Intermediate values define the amount of merging between both
9413 input stream's pixel components.
9414
9415 This filter accepts the following options:
9416 @table @option
9417 @item planes
9418 Set which planes will be processed as bitmap, unprocessed planes will be
9419 copied from first stream.
9420 By default value 0xf, all planes will be processed.
9421 @end table
9422
9423 @section mcdeint
9424
9425 Apply motion-compensation deinterlacing.
9426
9427 It needs one field per frame as input and must thus be used together
9428 with yadif=1/3 or equivalent.
9429
9430 This filter accepts the following options:
9431 @table @option
9432 @item mode
9433 Set the deinterlacing mode.
9434
9435 It accepts one of the following values:
9436 @table @samp
9437 @item fast
9438 @item medium
9439 @item slow
9440 use iterative motion estimation
9441 @item extra_slow
9442 like @samp{slow}, but use multiple reference frames.
9443 @end table
9444 Default value is @samp{fast}.
9445
9446 @item parity
9447 Set the picture field parity assumed for the input video. It must be
9448 one of the following values:
9449
9450 @table @samp
9451 @item 0, tff
9452 assume top field first
9453 @item 1, bff
9454 assume bottom field first
9455 @end table
9456
9457 Default value is @samp{bff}.
9458
9459 @item qp
9460 Set per-block quantization parameter (QP) used by the internal
9461 encoder.
9462
9463 Higher values should result in a smoother motion vector field but less
9464 optimal individual vectors. Default value is 1.
9465 @end table
9466
9467 @section mergeplanes
9468
9469 Merge color channel components from several video streams.
9470
9471 The filter accepts up to 4 input streams, and merge selected input
9472 planes to the output video.
9473
9474 This filter accepts the following options:
9475 @table @option
9476 @item mapping
9477 Set input to output plane mapping. Default is @code{0}.
9478
9479 The mappings is specified as a bitmap. It should be specified as a
9480 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9481 mapping for the first plane of the output stream. 'A' sets the number of
9482 the input stream to use (from 0 to 3), and 'a' the plane number of the
9483 corresponding input to use (from 0 to 3). The rest of the mappings is
9484 similar, 'Bb' describes the mapping for the output stream second
9485 plane, 'Cc' describes the mapping for the output stream third plane and
9486 'Dd' describes the mapping for the output stream fourth plane.
9487
9488 @item format
9489 Set output pixel format. Default is @code{yuva444p}.
9490 @end table
9491
9492 @subsection Examples
9493
9494 @itemize
9495 @item
9496 Merge three gray video streams of same width and height into single video stream:
9497 @example
9498 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9499 @end example
9500
9501 @item
9502 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9503 @example
9504 [a0][a1]mergeplanes=0x00010210:yuva444p
9505 @end example
9506
9507 @item
9508 Swap Y and A plane in yuva444p stream:
9509 @example
9510 format=yuva444p,mergeplanes=0x03010200:yuva444p
9511 @end example
9512
9513 @item
9514 Swap U and V plane in yuv420p stream:
9515 @example
9516 format=yuv420p,mergeplanes=0x000201:yuv420p
9517 @end example
9518
9519 @item
9520 Cast a rgb24 clip to yuv444p:
9521 @example
9522 format=rgb24,mergeplanes=0x000102:yuv444p
9523 @end example
9524 @end itemize
9525
9526 @section mestimate
9527
9528 Estimate and export motion vectors using block matching algorithms.
9529 Motion vectors are stored in frame side data to be used by other filters.
9530
9531 This filter accepts the following options:
9532 @table @option
9533 @item method
9534 Specify the motion estimation method. Accepts one of the following values:
9535
9536 @table @samp
9537 @item esa
9538 Exhaustive search algorithm.
9539 @item tss
9540 Three step search algorithm.
9541 @item tdls
9542 Two dimensional logarithmic search algorithm.
9543 @item ntss
9544 New three step search algorithm.
9545 @item fss
9546 Four step search algorithm.
9547 @item ds
9548 Diamond search algorithm.
9549 @item hexbs
9550 Hexagon-based search algorithm.
9551 @item epzs
9552 Enhanced predictive zonal search algorithm.
9553 @item umh
9554 Uneven multi-hexagon search algorithm.
9555 @end table
9556 Default value is @samp{esa}.
9557
9558 @item mb_size
9559 Macroblock size. Default @code{16}.
9560
9561 @item search_param
9562 Search parameter. Default @code{7}.
9563 @end table
9564
9565 @section minterpolate
9566
9567 Convert the video to specified frame rate using motion interpolation.
9568
9569 This filter accepts the following options:
9570 @table @option
9571 @item fps
9572 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}.
9573
9574 @item mi_mode
9575 Motion interpolation mode. Following values are accepted:
9576 @table @samp
9577 @item dup
9578 Duplicate previous or next frame for interpolating new ones.
9579 @item blend
9580 Blend source frames. Interpolated frame is mean of previous and next frames.
9581 @item mci
9582 Motion compensated interpolation. Following options are effective when this mode is selected:
9583
9584 @table @samp
9585 @item mc_mode
9586 Motion compensation mode. Following values are accepted:
9587 @table @samp
9588 @item obmc
9589 Overlapped block motion compensation.
9590 @item aobmc
9591 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
9592 @end table
9593 Default mode is @samp{obmc}.
9594
9595 @item me_mode
9596 Motion estimation mode. Following values are accepted:
9597 @table @samp
9598 @item bidir
9599 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
9600 @item bilat
9601 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
9602 @end table
9603 Default mode is @samp{bilat}.
9604
9605 @item me
9606 The algorithm to be used for motion estimation. Following values are accepted:
9607 @table @samp
9608 @item esa
9609 Exhaustive search algorithm.
9610 @item tss
9611 Three step search algorithm.
9612 @item tdls
9613 Two dimensional logarithmic search algorithm.
9614 @item ntss
9615 New three step search algorithm.
9616 @item fss
9617 Four step search algorithm.
9618 @item ds
9619 Diamond search algorithm.
9620 @item hexbs
9621 Hexagon-based search algorithm.
9622 @item epzs
9623 Enhanced predictive zonal search algorithm.
9624 @item umh
9625 Uneven multi-hexagon search algorithm.
9626 @end table
9627 Default algorithm is @samp{epzs}.
9628
9629 @item mb_size
9630 Macroblock size. Default @code{16}.
9631
9632 @item search_param
9633 Motion estimation search parameter. Default @code{32}.
9634
9635 @item vsmbc
9636 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).
9637 @end table
9638 @end table
9639
9640 @item scd
9641 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:
9642 @table @samp
9643 @item none
9644 Disable scene change detection.
9645 @item fdiff
9646 Frame difference. Corresponding pixel values are compared and if it statisfies @var{scd_threshold} scene change is detected.
9647 @end table
9648 Default method is @samp{fdiff}.
9649
9650 @item scd_threshold
9651 Scene change detection threshold. Default is @code{5.0}.
9652 @end table
9653
9654 @section mpdecimate
9655
9656 Drop frames that do not differ greatly from the previous frame in
9657 order to reduce frame rate.
9658
9659 The main use of this filter is for very-low-bitrate encoding
9660 (e.g. streaming over dialup modem), but it could in theory be used for
9661 fixing movies that were inverse-telecined incorrectly.
9662
9663 A description of the accepted options follows.
9664
9665 @table @option
9666 @item max
9667 Set the maximum number of consecutive frames which can be dropped (if
9668 positive), or the minimum interval between dropped frames (if
9669 negative). If the value is 0, the frame is dropped unregarding the
9670 number of previous sequentially dropped frames.
9671
9672 Default value is 0.
9673
9674 @item hi
9675 @item lo
9676 @item frac
9677 Set the dropping threshold values.
9678
9679 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9680 represent actual pixel value differences, so a threshold of 64
9681 corresponds to 1 unit of difference for each pixel, or the same spread
9682 out differently over the block.
9683
9684 A frame is a candidate for dropping if no 8x8 blocks differ by more
9685 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9686 meaning the whole image) differ by more than a threshold of @option{lo}.
9687
9688 Default value for @option{hi} is 64*12, default value for @option{lo} is
9689 64*5, and default value for @option{frac} is 0.33.
9690 @end table
9691
9692
9693 @section negate
9694
9695 Negate input video.
9696
9697 It accepts an integer in input; if non-zero it negates the
9698 alpha component (if available). The default value in input is 0.
9699
9700 @section nlmeans
9701
9702 Denoise frames using Non-Local Means algorithm.
9703
9704 Each pixel is adjusted by looking for other pixels with similar contexts. This
9705 context similarity is defined by comparing their surrounding patches of size
9706 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
9707 around the pixel.
9708
9709 Note that the research area defines centers for patches, which means some
9710 patches will be made of pixels outside that research area.
9711
9712 The filter accepts the following options.
9713
9714 @table @option
9715 @item s
9716 Set denoising strength.
9717
9718 @item p
9719 Set patch size.
9720
9721 @item pc
9722 Same as @option{p} but for chroma planes.
9723
9724 The default value is @var{0} and means automatic.
9725
9726 @item r
9727 Set research size.
9728
9729 @item rc
9730 Same as @option{r} but for chroma planes.
9731
9732 The default value is @var{0} and means automatic.
9733 @end table
9734
9735 @section nnedi
9736
9737 Deinterlace video using neural network edge directed interpolation.
9738
9739 This filter accepts the following options:
9740
9741 @table @option
9742 @item weights
9743 Mandatory option, without binary file filter can not work.
9744 Currently file can be found here:
9745 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9746
9747 @item deint
9748 Set which frames to deinterlace, by default it is @code{all}.
9749 Can be @code{all} or @code{interlaced}.
9750
9751 @item field
9752 Set mode of operation.
9753
9754 Can be one of the following:
9755
9756 @table @samp
9757 @item af
9758 Use frame flags, both fields.
9759 @item a
9760 Use frame flags, single field.
9761 @item t
9762 Use top field only.
9763 @item b
9764 Use bottom field only.
9765 @item tf
9766 Use both fields, top first.
9767 @item bf
9768 Use both fields, bottom first.
9769 @end table
9770
9771 @item planes
9772 Set which planes to process, by default filter process all frames.
9773
9774 @item nsize
9775 Set size of local neighborhood around each pixel, used by the predictor neural
9776 network.
9777
9778 Can be one of the following:
9779
9780 @table @samp
9781 @item s8x6
9782 @item s16x6
9783 @item s32x6
9784 @item s48x6
9785 @item s8x4
9786 @item s16x4
9787 @item s32x4
9788 @end table
9789
9790 @item nns
9791 Set the number of neurons in predicctor neural network.
9792 Can be one of the following:
9793
9794 @table @samp
9795 @item n16
9796 @item n32
9797 @item n64
9798 @item n128
9799 @item n256
9800 @end table
9801
9802 @item qual
9803 Controls the number of different neural network predictions that are blended
9804 together to compute the final output value. Can be @code{fast}, default or
9805 @code{slow}.
9806
9807 @item etype
9808 Set which set of weights to use in the predictor.
9809 Can be one of the following:
9810
9811 @table @samp
9812 @item a
9813 weights trained to minimize absolute error
9814 @item s
9815 weights trained to minimize squared error
9816 @end table
9817
9818 @item pscrn
9819 Controls whether or not the prescreener neural network is used to decide
9820 which pixels should be processed by the predictor neural network and which
9821 can be handled by simple cubic interpolation.
9822 The prescreener is trained to know whether cubic interpolation will be
9823 sufficient for a pixel or whether it should be predicted by the predictor nn.
9824 The computational complexity of the prescreener nn is much less than that of
9825 the predictor nn. Since most pixels can be handled by cubic interpolation,
9826 using the prescreener generally results in much faster processing.
9827 The prescreener is pretty accurate, so the difference between using it and not
9828 using it is almost always unnoticeable.
9829
9830 Can be one of the following:
9831
9832 @table @samp
9833 @item none
9834 @item original
9835 @item new
9836 @end table
9837
9838 Default is @code{new}.
9839
9840 @item fapprox
9841 Set various debugging flags.
9842 @end table
9843
9844 @section noformat
9845
9846 Force libavfilter not to use any of the specified pixel formats for the
9847 input to the next filter.
9848
9849 It accepts the following parameters:
9850 @table @option
9851
9852 @item pix_fmts
9853 A '|'-separated list of pixel format names, such as
9854 apix_fmts=yuv420p|monow|rgb24".
9855
9856 @end table
9857
9858 @subsection Examples
9859
9860 @itemize
9861 @item
9862 Force libavfilter to use a format different from @var{yuv420p} for the
9863 input to the vflip filter:
9864 @example
9865 noformat=pix_fmts=yuv420p,vflip
9866 @end example
9867
9868 @item
9869 Convert the input video to any of the formats not contained in the list:
9870 @example
9871 noformat=yuv420p|yuv444p|yuv410p
9872 @end example
9873 @end itemize
9874
9875 @section noise
9876
9877 Add noise on video input frame.
9878
9879 The filter accepts the following options:
9880
9881 @table @option
9882 @item all_seed
9883 @item c0_seed
9884 @item c1_seed
9885 @item c2_seed
9886 @item c3_seed
9887 Set noise seed for specific pixel component or all pixel components in case
9888 of @var{all_seed}. Default value is @code{123457}.
9889
9890 @item all_strength, alls
9891 @item c0_strength, c0s
9892 @item c1_strength, c1s
9893 @item c2_strength, c2s
9894 @item c3_strength, c3s
9895 Set noise strength for specific pixel component or all pixel components in case
9896 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
9897
9898 @item all_flags, allf
9899 @item c0_flags, c0f
9900 @item c1_flags, c1f
9901 @item c2_flags, c2f
9902 @item c3_flags, c3f
9903 Set pixel component flags or set flags for all components if @var{all_flags}.
9904 Available values for component flags are:
9905 @table @samp
9906 @item a
9907 averaged temporal noise (smoother)
9908 @item p
9909 mix random noise with a (semi)regular pattern
9910 @item t
9911 temporal noise (noise pattern changes between frames)
9912 @item u
9913 uniform noise (gaussian otherwise)
9914 @end table
9915 @end table
9916
9917 @subsection Examples
9918
9919 Add temporal and uniform noise to input video:
9920 @example
9921 noise=alls=20:allf=t+u
9922 @end example
9923
9924 @section null
9925
9926 Pass the video source unchanged to the output.
9927
9928 @section ocr
9929 Optical Character Recognition
9930
9931 This filter uses Tesseract for optical character recognition.
9932
9933 It accepts the following options:
9934
9935 @table @option
9936 @item datapath
9937 Set datapath to tesseract data. Default is to use whatever was
9938 set at installation.
9939
9940 @item language
9941 Set language, default is "eng".
9942
9943 @item whitelist
9944 Set character whitelist.
9945
9946 @item blacklist
9947 Set character blacklist.
9948 @end table
9949
9950 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
9951
9952 @section ocv
9953
9954 Apply a video transform using libopencv.
9955
9956 To enable this filter, install the libopencv library and headers and
9957 configure FFmpeg with @code{--enable-libopencv}.
9958
9959 It accepts the following parameters:
9960
9961 @table @option
9962
9963 @item filter_name
9964 The name of the libopencv filter to apply.
9965
9966 @item filter_params
9967 The parameters to pass to the libopencv filter. If not specified, the default
9968 values are assumed.
9969
9970 @end table
9971
9972 Refer to the official libopencv documentation for more precise
9973 information:
9974 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
9975
9976 Several libopencv filters are supported; see the following subsections.
9977
9978 @anchor{dilate}
9979 @subsection dilate
9980
9981 Dilate an image by using a specific structuring element.
9982 It corresponds to the libopencv function @code{cvDilate}.
9983
9984 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
9985
9986 @var{struct_el} represents a structuring element, and has the syntax:
9987 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
9988
9989 @var{cols} and @var{rows} represent the number of columns and rows of
9990 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
9991 point, and @var{shape} the shape for the structuring element. @var{shape}
9992 must be "rect", "cross", "ellipse", or "custom".
9993
9994 If the value for @var{shape} is "custom", it must be followed by a
9995 string of the form "=@var{filename}". The file with name
9996 @var{filename} is assumed to represent a binary image, with each
9997 printable character corresponding to a bright pixel. When a custom
9998 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
9999 or columns and rows of the read file are assumed instead.
10000
10001 The default value for @var{struct_el} is "3x3+0x0/rect".
10002
10003 @var{nb_iterations} specifies the number of times the transform is
10004 applied to the image, and defaults to 1.
10005
10006 Some examples:
10007 @example
10008 # Use the default values
10009 ocv=dilate
10010
10011 # Dilate using a structuring element with a 5x5 cross, iterating two times
10012 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
10013
10014 # Read the shape from the file diamond.shape, iterating two times.
10015 # The file diamond.shape may contain a pattern of characters like this
10016 #   *
10017 #  ***
10018 # *****
10019 #  ***
10020 #   *
10021 # The specified columns and rows are ignored
10022 # but the anchor point coordinates are not
10023 ocv=dilate:0x0+2x2/custom=diamond.shape|2
10024 @end example
10025
10026 @subsection erode
10027
10028 Erode an image by using a specific structuring element.
10029 It corresponds to the libopencv function @code{cvErode}.
10030
10031 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
10032 with the same syntax and semantics as the @ref{dilate} filter.
10033
10034 @subsection smooth
10035
10036 Smooth the input video.
10037
10038 The filter takes the following parameters:
10039 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
10040
10041 @var{type} is the type of smooth filter to apply, and must be one of
10042 the following values: "blur", "blur_no_scale", "median", "gaussian",
10043 or "bilateral". The default value is "gaussian".
10044
10045 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
10046 depend on the smooth type. @var{param1} and
10047 @var{param2} accept integer positive values or 0. @var{param3} and
10048 @var{param4} accept floating point values.
10049
10050 The default value for @var{param1} is 3. The default value for the
10051 other parameters is 0.
10052
10053 These parameters correspond to the parameters assigned to the
10054 libopencv function @code{cvSmooth}.
10055
10056 @anchor{overlay}
10057 @section overlay
10058
10059 Overlay one video on top of another.
10060
10061 It takes two inputs and has one output. The first input is the "main"
10062 video on which the second input is overlaid.
10063
10064 It accepts the following parameters:
10065
10066 A description of the accepted options follows.
10067
10068 @table @option
10069 @item x
10070 @item y
10071 Set the expression for the x and y coordinates of the overlaid video
10072 on the main video. Default value is "0" for both expressions. In case
10073 the expression is invalid, it is set to a huge value (meaning that the
10074 overlay will not be displayed within the output visible area).
10075
10076 @item eof_action
10077 The action to take when EOF is encountered on the secondary input; it accepts
10078 one of the following values:
10079
10080 @table @option
10081 @item repeat
10082 Repeat the last frame (the default).
10083 @item endall
10084 End both streams.
10085 @item pass
10086 Pass the main input through.
10087 @end table
10088
10089 @item eval
10090 Set when the expressions for @option{x}, and @option{y} are evaluated.
10091
10092 It accepts the following values:
10093 @table @samp
10094 @item init
10095 only evaluate expressions once during the filter initialization or
10096 when a command is processed
10097
10098 @item frame
10099 evaluate expressions for each incoming frame
10100 @end table
10101
10102 Default value is @samp{frame}.
10103
10104 @item shortest
10105 If set to 1, force the output to terminate when the shortest input
10106 terminates. Default value is 0.
10107
10108 @item format
10109 Set the format for the output video.
10110
10111 It accepts the following values:
10112 @table @samp
10113 @item yuv420
10114 force YUV420 output
10115
10116 @item yuv422
10117 force YUV422 output
10118
10119 @item yuv444
10120 force YUV444 output
10121
10122 @item rgb
10123 force RGB output
10124 @end table
10125
10126 Default value is @samp{yuv420}.
10127
10128 @item rgb @emph{(deprecated)}
10129 If set to 1, force the filter to accept inputs in the RGB
10130 color space. Default value is 0. This option is deprecated, use
10131 @option{format} instead.
10132
10133 @item repeatlast
10134 If set to 1, force the filter to draw the last overlay frame over the
10135 main input until the end of the stream. A value of 0 disables this
10136 behavior. Default value is 1.
10137 @end table
10138
10139 The @option{x}, and @option{y} expressions can contain the following
10140 parameters.
10141
10142 @table @option
10143 @item main_w, W
10144 @item main_h, H
10145 The main input width and height.
10146
10147 @item overlay_w, w
10148 @item overlay_h, h
10149 The overlay input width and height.
10150
10151 @item x
10152 @item y
10153 The computed values for @var{x} and @var{y}. They are evaluated for
10154 each new frame.
10155
10156 @item hsub
10157 @item vsub
10158 horizontal and vertical chroma subsample values of the output
10159 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
10160 @var{vsub} is 1.
10161
10162 @item n
10163 the number of input frame, starting from 0
10164
10165 @item pos
10166 the position in the file of the input frame, NAN if unknown
10167
10168 @item t
10169 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
10170
10171 @end table
10172
10173 Note that the @var{n}, @var{pos}, @var{t} variables are available only
10174 when evaluation is done @emph{per frame}, and will evaluate to NAN
10175 when @option{eval} is set to @samp{init}.
10176
10177 Be aware that frames are taken from each input video in timestamp
10178 order, hence, if their initial timestamps differ, it is a good idea
10179 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
10180 have them begin in the same zero timestamp, as the example for
10181 the @var{movie} filter does.
10182
10183 You can chain together more overlays but you should test the
10184 efficiency of such approach.
10185
10186 @subsection Commands
10187
10188 This filter supports the following commands:
10189 @table @option
10190 @item x
10191 @item y
10192 Modify the x and y of the overlay input.
10193 The command accepts the same syntax of the corresponding option.
10194
10195 If the specified expression is not valid, it is kept at its current
10196 value.
10197 @end table
10198
10199 @subsection Examples
10200
10201 @itemize
10202 @item
10203 Draw the overlay at 10 pixels from the bottom right corner of the main
10204 video:
10205 @example
10206 overlay=main_w-overlay_w-10:main_h-overlay_h-10
10207 @end example
10208
10209 Using named options the example above becomes:
10210 @example
10211 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
10212 @end example
10213
10214 @item
10215 Insert a transparent PNG logo in the bottom left corner of the input,
10216 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
10217 @example
10218 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
10219 @end example
10220
10221 @item
10222 Insert 2 different transparent PNG logos (second logo on bottom
10223 right corner) using the @command{ffmpeg} tool:
10224 @example
10225 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
10226 @end example
10227
10228 @item
10229 Add a transparent color layer on top of the main video; @code{WxH}
10230 must specify the size of the main input to the overlay filter:
10231 @example
10232 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
10233 @end example
10234
10235 @item
10236 Play an original video and a filtered version (here with the deshake
10237 filter) side by side using the @command{ffplay} tool:
10238 @example
10239 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
10240 @end example
10241
10242 The above command is the same as:
10243 @example
10244 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
10245 @end example
10246
10247 @item
10248 Make a sliding overlay appearing from the left to the right top part of the
10249 screen starting since time 2:
10250 @example
10251 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
10252 @end example
10253
10254 @item
10255 Compose output by putting two input videos side to side:
10256 @example
10257 ffmpeg -i left.avi -i right.avi -filter_complex "
10258 nullsrc=size=200x100 [background];
10259 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
10260 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
10261 [background][left]       overlay=shortest=1       [background+left];
10262 [background+left][right] overlay=shortest=1:x=100 [left+right]
10263 "
10264 @end example
10265
10266 @item
10267 Mask 10-20 seconds of a video by applying the delogo filter to a section
10268 @example
10269 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
10270 -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]'
10271 masked.avi
10272 @end example
10273
10274 @item
10275 Chain several overlays in cascade:
10276 @example
10277 nullsrc=s=200x200 [bg];
10278 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
10279 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
10280 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
10281 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
10282 [in3] null,       [mid2] overlay=100:100 [out0]
10283 @end example
10284
10285 @end itemize
10286
10287 @section owdenoise
10288
10289 Apply Overcomplete Wavelet denoiser.
10290
10291 The filter accepts the following options:
10292
10293 @table @option
10294 @item depth
10295 Set depth.
10296
10297 Larger depth values will denoise lower frequency components more, but
10298 slow down filtering.
10299
10300 Must be an int in the range 8-16, default is @code{8}.
10301
10302 @item luma_strength, ls
10303 Set luma strength.
10304
10305 Must be a double value in the range 0-1000, default is @code{1.0}.
10306
10307 @item chroma_strength, cs
10308 Set chroma strength.
10309
10310 Must be a double value in the range 0-1000, default is @code{1.0}.
10311 @end table
10312
10313 @anchor{pad}
10314 @section pad
10315
10316 Add paddings to the input image, and place the original input at the
10317 provided @var{x}, @var{y} coordinates.
10318
10319 It accepts the following parameters:
10320
10321 @table @option
10322 @item width, w
10323 @item height, h
10324 Specify an expression for the size of the output image with the
10325 paddings added. If the value for @var{width} or @var{height} is 0, the
10326 corresponding input size is used for the output.
10327
10328 The @var{width} expression can reference the value set by the
10329 @var{height} expression, and vice versa.
10330
10331 The default value of @var{width} and @var{height} is 0.
10332
10333 @item x
10334 @item y
10335 Specify the offsets to place the input image at within the padded area,
10336 with respect to the top/left border of the output image.
10337
10338 The @var{x} expression can reference the value set by the @var{y}
10339 expression, and vice versa.
10340
10341 The default value of @var{x} and @var{y} is 0.
10342
10343 @item color
10344 Specify the color of the padded area. For the syntax of this option,
10345 check the "Color" section in the ffmpeg-utils manual.
10346
10347 The default value of @var{color} is "black".
10348 @end table
10349
10350 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10351 options are expressions containing the following constants:
10352
10353 @table @option
10354 @item in_w
10355 @item in_h
10356 The input video width and height.
10357
10358 @item iw
10359 @item ih
10360 These are the same as @var{in_w} and @var{in_h}.
10361
10362 @item out_w
10363 @item out_h
10364 The output width and height (the size of the padded area), as
10365 specified by the @var{width} and @var{height} expressions.
10366
10367 @item ow
10368 @item oh
10369 These are the same as @var{out_w} and @var{out_h}.
10370
10371 @item x
10372 @item y
10373 The x and y offsets as specified by the @var{x} and @var{y}
10374 expressions, or NAN if not yet specified.
10375
10376 @item a
10377 same as @var{iw} / @var{ih}
10378
10379 @item sar
10380 input sample aspect ratio
10381
10382 @item dar
10383 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10384
10385 @item hsub
10386 @item vsub
10387 The horizontal and vertical chroma subsample values. For example for the
10388 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10389 @end table
10390
10391 @subsection Examples
10392
10393 @itemize
10394 @item
10395 Add paddings with the color "violet" to the input video. The output video
10396 size is 640x480, and the top-left corner of the input video is placed at
10397 column 0, row 40
10398 @example
10399 pad=640:480:0:40:violet
10400 @end example
10401
10402 The example above is equivalent to the following command:
10403 @example
10404 pad=width=640:height=480:x=0:y=40:color=violet
10405 @end example
10406
10407 @item
10408 Pad the input to get an output with dimensions increased by 3/2,
10409 and put the input video at the center of the padded area:
10410 @example
10411 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10412 @end example
10413
10414 @item
10415 Pad the input to get a squared output with size equal to the maximum
10416 value between the input width and height, and put the input video at
10417 the center of the padded area:
10418 @example
10419 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10420 @end example
10421
10422 @item
10423 Pad the input to get a final w/h ratio of 16:9:
10424 @example
10425 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10426 @end example
10427
10428 @item
10429 In case of anamorphic video, in order to set the output display aspect
10430 correctly, it is necessary to use @var{sar} in the expression,
10431 according to the relation:
10432 @example
10433 (ih * X / ih) * sar = output_dar
10434 X = output_dar / sar
10435 @end example
10436
10437 Thus the previous example needs to be modified to:
10438 @example
10439 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10440 @end example
10441
10442 @item
10443 Double the output size and put the input video in the bottom-right
10444 corner of the output padded area:
10445 @example
10446 pad="2*iw:2*ih:ow-iw:oh-ih"
10447 @end example
10448 @end itemize
10449
10450 @anchor{palettegen}
10451 @section palettegen
10452
10453 Generate one palette for a whole video stream.
10454
10455 It accepts the following options:
10456
10457 @table @option
10458 @item max_colors
10459 Set the maximum number of colors to quantize in the palette.
10460 Note: the palette will still contain 256 colors; the unused palette entries
10461 will be black.
10462
10463 @item reserve_transparent
10464 Create a palette of 255 colors maximum and reserve the last one for
10465 transparency. Reserving the transparency color is useful for GIF optimization.
10466 If not set, the maximum of colors in the palette will be 256. You probably want
10467 to disable this option for a standalone image.
10468 Set by default.
10469
10470 @item stats_mode
10471 Set statistics mode.
10472
10473 It accepts the following values:
10474 @table @samp
10475 @item full
10476 Compute full frame histograms.
10477 @item diff
10478 Compute histograms only for the part that differs from previous frame. This
10479 might be relevant to give more importance to the moving part of your input if
10480 the background is static.
10481 @item single
10482 Compute new histogram for each frame.
10483 @end table
10484
10485 Default value is @var{full}.
10486 @end table
10487
10488 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10489 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10490 color quantization of the palette. This information is also visible at
10491 @var{info} logging level.
10492
10493 @subsection Examples
10494
10495 @itemize
10496 @item
10497 Generate a representative palette of a given video using @command{ffmpeg}:
10498 @example
10499 ffmpeg -i input.mkv -vf palettegen palette.png
10500 @end example
10501 @end itemize
10502
10503 @section paletteuse
10504
10505 Use a palette to downsample an input video stream.
10506
10507 The filter takes two inputs: one video stream and a palette. The palette must
10508 be a 256 pixels image.
10509
10510 It accepts the following options:
10511
10512 @table @option
10513 @item dither
10514 Select dithering mode. Available algorithms are:
10515 @table @samp
10516 @item bayer
10517 Ordered 8x8 bayer dithering (deterministic)
10518 @item heckbert
10519 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10520 Note: this dithering is sometimes considered "wrong" and is included as a
10521 reference.
10522 @item floyd_steinberg
10523 Floyd and Steingberg dithering (error diffusion)
10524 @item sierra2
10525 Frankie Sierra dithering v2 (error diffusion)
10526 @item sierra2_4a
10527 Frankie Sierra dithering v2 "Lite" (error diffusion)
10528 @end table
10529
10530 Default is @var{sierra2_4a}.
10531
10532 @item bayer_scale
10533 When @var{bayer} dithering is selected, this option defines the scale of the
10534 pattern (how much the crosshatch pattern is visible). A low value means more
10535 visible pattern for less banding, and higher value means less visible pattern
10536 at the cost of more banding.
10537
10538 The option must be an integer value in the range [0,5]. Default is @var{2}.
10539
10540 @item diff_mode
10541 If set, define the zone to process
10542
10543 @table @samp
10544 @item rectangle
10545 Only the changing rectangle will be reprocessed. This is similar to GIF
10546 cropping/offsetting compression mechanism. This option can be useful for speed
10547 if only a part of the image is changing, and has use cases such as limiting the
10548 scope of the error diffusal @option{dither} to the rectangle that bounds the
10549 moving scene (it leads to more deterministic output if the scene doesn't change
10550 much, and as a result less moving noise and better GIF compression).
10551 @end table
10552
10553 Default is @var{none}.
10554
10555 @item new
10556 Take new palette for each output frame.
10557 @end table
10558
10559 @subsection Examples
10560
10561 @itemize
10562 @item
10563 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10564 using @command{ffmpeg}:
10565 @example
10566 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10567 @end example
10568 @end itemize
10569
10570 @section perspective
10571
10572 Correct perspective of video not recorded perpendicular to the screen.
10573
10574 A description of the accepted parameters follows.
10575
10576 @table @option
10577 @item x0
10578 @item y0
10579 @item x1
10580 @item y1
10581 @item x2
10582 @item y2
10583 @item x3
10584 @item y3
10585 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10586 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10587 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10588 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10589 then the corners of the source will be sent to the specified coordinates.
10590
10591 The expressions can use the following variables:
10592
10593 @table @option
10594 @item W
10595 @item H
10596 the width and height of video frame.
10597 @item in
10598 Input frame count.
10599 @item on
10600 Output frame count.
10601 @end table
10602
10603 @item interpolation
10604 Set interpolation for perspective correction.
10605
10606 It accepts the following values:
10607 @table @samp
10608 @item linear
10609 @item cubic
10610 @end table
10611
10612 Default value is @samp{linear}.
10613
10614 @item sense
10615 Set interpretation of coordinate options.
10616
10617 It accepts the following values:
10618 @table @samp
10619 @item 0, source
10620
10621 Send point in the source specified by the given coordinates to
10622 the corners of the destination.
10623
10624 @item 1, destination
10625
10626 Send the corners of the source to the point in the destination specified
10627 by the given coordinates.
10628
10629 Default value is @samp{source}.
10630 @end table
10631
10632 @item eval
10633 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10634
10635 It accepts the following values:
10636 @table @samp
10637 @item init
10638 only evaluate expressions once during the filter initialization or
10639 when a command is processed
10640
10641 @item frame
10642 evaluate expressions for each incoming frame
10643 @end table
10644
10645 Default value is @samp{init}.
10646 @end table
10647
10648 @section phase
10649
10650 Delay interlaced video by one field time so that the field order changes.
10651
10652 The intended use is to fix PAL movies that have been captured with the
10653 opposite field order to the film-to-video transfer.
10654
10655 A description of the accepted parameters follows.
10656
10657 @table @option
10658 @item mode
10659 Set phase mode.
10660
10661 It accepts the following values:
10662 @table @samp
10663 @item t
10664 Capture field order top-first, transfer bottom-first.
10665 Filter will delay the bottom field.
10666
10667 @item b
10668 Capture field order bottom-first, transfer top-first.
10669 Filter will delay the top field.
10670
10671 @item p
10672 Capture and transfer with the same field order. This mode only exists
10673 for the documentation of the other options to refer to, but if you
10674 actually select it, the filter will faithfully do nothing.
10675
10676 @item a
10677 Capture field order determined automatically by field flags, transfer
10678 opposite.
10679 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10680 basis using field flags. If no field information is available,
10681 then this works just like @samp{u}.
10682
10683 @item u
10684 Capture unknown or varying, transfer opposite.
10685 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10686 analyzing the images and selecting the alternative that produces best
10687 match between the fields.
10688
10689 @item T
10690 Capture top-first, transfer unknown or varying.
10691 Filter selects among @samp{t} and @samp{p} using image analysis.
10692
10693 @item B
10694 Capture bottom-first, transfer unknown or varying.
10695 Filter selects among @samp{b} and @samp{p} using image analysis.
10696
10697 @item A
10698 Capture determined by field flags, transfer unknown or varying.
10699 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10700 image analysis. If no field information is available, then this works just
10701 like @samp{U}. This is the default mode.
10702
10703 @item U
10704 Both capture and transfer unknown or varying.
10705 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10706 @end table
10707 @end table
10708
10709 @section pixdesctest
10710
10711 Pixel format descriptor test filter, mainly useful for internal
10712 testing. The output video should be equal to the input video.
10713
10714 For example:
10715 @example
10716 format=monow, pixdesctest
10717 @end example
10718
10719 can be used to test the monowhite pixel format descriptor definition.
10720
10721 @section pp
10722
10723 Enable the specified chain of postprocessing subfilters using libpostproc. This
10724 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10725 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10726 Each subfilter and some options have a short and a long name that can be used
10727 interchangeably, i.e. dr/dering are the same.
10728
10729 The filters accept the following options:
10730
10731 @table @option
10732 @item subfilters
10733 Set postprocessing subfilters string.
10734 @end table
10735
10736 All subfilters share common options to determine their scope:
10737
10738 @table @option
10739 @item a/autoq
10740 Honor the quality commands for this subfilter.
10741
10742 @item c/chrom
10743 Do chrominance filtering, too (default).
10744
10745 @item y/nochrom
10746 Do luminance filtering only (no chrominance).
10747
10748 @item n/noluma
10749 Do chrominance filtering only (no luminance).
10750 @end table
10751
10752 These options can be appended after the subfilter name, separated by a '|'.
10753
10754 Available subfilters are:
10755
10756 @table @option
10757 @item hb/hdeblock[|difference[|flatness]]
10758 Horizontal deblocking filter
10759 @table @option
10760 @item difference
10761 Difference factor where higher values mean more deblocking (default: @code{32}).
10762 @item flatness
10763 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10764 @end table
10765
10766 @item vb/vdeblock[|difference[|flatness]]
10767 Vertical deblocking filter
10768 @table @option
10769 @item difference
10770 Difference factor where higher values mean more deblocking (default: @code{32}).
10771 @item flatness
10772 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10773 @end table
10774
10775 @item ha/hadeblock[|difference[|flatness]]
10776 Accurate horizontal deblocking filter
10777 @table @option
10778 @item difference
10779 Difference factor where higher values mean more deblocking (default: @code{32}).
10780 @item flatness
10781 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10782 @end table
10783
10784 @item va/vadeblock[|difference[|flatness]]
10785 Accurate vertical deblocking filter
10786 @table @option
10787 @item difference
10788 Difference factor where higher values mean more deblocking (default: @code{32}).
10789 @item flatness
10790 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10791 @end table
10792 @end table
10793
10794 The horizontal and vertical deblocking filters share the difference and
10795 flatness values so you cannot set different horizontal and vertical
10796 thresholds.
10797
10798 @table @option
10799 @item h1/x1hdeblock
10800 Experimental horizontal deblocking filter
10801
10802 @item v1/x1vdeblock
10803 Experimental vertical deblocking filter
10804
10805 @item dr/dering
10806 Deringing filter
10807
10808 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10809 @table @option
10810 @item threshold1
10811 larger -> stronger filtering
10812 @item threshold2
10813 larger -> stronger filtering
10814 @item threshold3
10815 larger -> stronger filtering
10816 @end table
10817
10818 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10819 @table @option
10820 @item f/fullyrange
10821 Stretch luminance to @code{0-255}.
10822 @end table
10823
10824 @item lb/linblenddeint
10825 Linear blend deinterlacing filter that deinterlaces the given block by
10826 filtering all lines with a @code{(1 2 1)} filter.
10827
10828 @item li/linipoldeint
10829 Linear interpolating deinterlacing filter that deinterlaces the given block by
10830 linearly interpolating every second line.
10831
10832 @item ci/cubicipoldeint
10833 Cubic interpolating deinterlacing filter deinterlaces the given block by
10834 cubically interpolating every second line.
10835
10836 @item md/mediandeint
10837 Median deinterlacing filter that deinterlaces the given block by applying a
10838 median filter to every second line.
10839
10840 @item fd/ffmpegdeint
10841 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10842 second line with a @code{(-1 4 2 4 -1)} filter.
10843
10844 @item l5/lowpass5
10845 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10846 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10847
10848 @item fq/forceQuant[|quantizer]
10849 Overrides the quantizer table from the input with the constant quantizer you
10850 specify.
10851 @table @option
10852 @item quantizer
10853 Quantizer to use
10854 @end table
10855
10856 @item de/default
10857 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10858
10859 @item fa/fast
10860 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10861
10862 @item ac
10863 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10864 @end table
10865
10866 @subsection Examples
10867
10868 @itemize
10869 @item
10870 Apply horizontal and vertical deblocking, deringing and automatic
10871 brightness/contrast:
10872 @example
10873 pp=hb/vb/dr/al
10874 @end example
10875
10876 @item
10877 Apply default filters without brightness/contrast correction:
10878 @example
10879 pp=de/-al
10880 @end example
10881
10882 @item
10883 Apply default filters and temporal denoiser:
10884 @example
10885 pp=default/tmpnoise|1|2|3
10886 @end example
10887
10888 @item
10889 Apply deblocking on luminance only, and switch vertical deblocking on or off
10890 automatically depending on available CPU time:
10891 @example
10892 pp=hb|y/vb|a
10893 @end example
10894 @end itemize
10895
10896 @section pp7
10897 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
10898 similar to spp = 6 with 7 point DCT, where only the center sample is
10899 used after IDCT.
10900
10901 The filter accepts the following options:
10902
10903 @table @option
10904 @item qp
10905 Force a constant quantization parameter. It accepts an integer in range
10906 0 to 63. If not set, the filter will use the QP from the video stream
10907 (if available).
10908
10909 @item mode
10910 Set thresholding mode. Available modes are:
10911
10912 @table @samp
10913 @item hard
10914 Set hard thresholding.
10915 @item soft
10916 Set soft thresholding (better de-ringing effect, but likely blurrier).
10917 @item medium
10918 Set medium thresholding (good results, default).
10919 @end table
10920 @end table
10921
10922 @section prewitt
10923 Apply prewitt operator to input video stream.
10924
10925 The filter accepts the following option:
10926
10927 @table @option
10928 @item planes
10929 Set which planes will be processed, unprocessed planes will be copied.
10930 By default value 0xf, all planes will be processed.
10931
10932 @item scale
10933 Set value which will be multiplied with filtered result.
10934
10935 @item delta
10936 Set value which will be added to filtered result.
10937 @end table
10938
10939 @section psnr
10940
10941 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
10942 Ratio) between two input videos.
10943
10944 This filter takes in input two input videos, the first input is
10945 considered the "main" source and is passed unchanged to the
10946 output. The second input is used as a "reference" video for computing
10947 the PSNR.
10948
10949 Both video inputs must have the same resolution and pixel format for
10950 this filter to work correctly. Also it assumes that both inputs
10951 have the same number of frames, which are compared one by one.
10952
10953 The obtained average PSNR is printed through the logging system.
10954
10955 The filter stores the accumulated MSE (mean squared error) of each
10956 frame, and at the end of the processing it is averaged across all frames
10957 equally, and the following formula is applied to obtain the PSNR:
10958
10959 @example
10960 PSNR = 10*log10(MAX^2/MSE)
10961 @end example
10962
10963 Where MAX is the average of the maximum values of each component of the
10964 image.
10965
10966 The description of the accepted parameters follows.
10967
10968 @table @option
10969 @item stats_file, f
10970 If specified the filter will use the named file to save the PSNR of
10971 each individual frame. When filename equals "-" the data is sent to
10972 standard output.
10973
10974 @item stats_version
10975 Specifies which version of the stats file format to use. Details of
10976 each format are written below.
10977 Default value is 1.
10978
10979 @item stats_add_max
10980 Determines whether the max value is output to the stats log.
10981 Default value is 0.
10982 Requires stats_version >= 2. If this is set and stats_version < 2,
10983 the filter will return an error.
10984 @end table
10985
10986 The file printed if @var{stats_file} is selected, contains a sequence of
10987 key/value pairs of the form @var{key}:@var{value} for each compared
10988 couple of frames.
10989
10990 If a @var{stats_version} greater than 1 is specified, a header line precedes
10991 the list of per-frame-pair stats, with key value pairs following the frame
10992 format with the following parameters:
10993
10994 @table @option
10995 @item psnr_log_version
10996 The version of the log file format. Will match @var{stats_version}.
10997
10998 @item fields
10999 A comma separated list of the per-frame-pair parameters included in
11000 the log.
11001 @end table
11002
11003 A description of each shown per-frame-pair parameter follows:
11004
11005 @table @option
11006 @item n
11007 sequential number of the input frame, starting from 1
11008
11009 @item mse_avg
11010 Mean Square Error pixel-by-pixel average difference of the compared
11011 frames, averaged over all the image components.
11012
11013 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
11014 Mean Square Error pixel-by-pixel average difference of the compared
11015 frames for the component specified by the suffix.
11016
11017 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
11018 Peak Signal to Noise ratio of the compared frames for the component
11019 specified by the suffix.
11020
11021 @item max_avg, max_y, max_u, max_v
11022 Maximum allowed value for each channel, and average over all
11023 channels.
11024 @end table
11025
11026 For example:
11027 @example
11028 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
11029 [main][ref] psnr="stats_file=stats.log" [out]
11030 @end example
11031
11032 On this example the input file being processed is compared with the
11033 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
11034 is stored in @file{stats.log}.
11035
11036 @anchor{pullup}
11037 @section pullup
11038
11039 Pulldown reversal (inverse telecine) filter, capable of handling mixed
11040 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
11041 content.
11042
11043 The pullup filter is designed to take advantage of future context in making
11044 its decisions. This filter is stateless in the sense that it does not lock
11045 onto a pattern to follow, but it instead looks forward to the following
11046 fields in order to identify matches and rebuild progressive frames.
11047
11048 To produce content with an even framerate, insert the fps filter after
11049 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
11050 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
11051
11052 The filter accepts the following options:
11053
11054 @table @option
11055 @item jl
11056 @item jr
11057 @item jt
11058 @item jb
11059 These options set the amount of "junk" to ignore at the left, right, top, and
11060 bottom of the image, respectively. Left and right are in units of 8 pixels,
11061 while top and bottom are in units of 2 lines.
11062 The default is 8 pixels on each side.
11063
11064 @item sb
11065 Set the strict breaks. Setting this option to 1 will reduce the chances of
11066 filter generating an occasional mismatched frame, but it may also cause an
11067 excessive number of frames to be dropped during high motion sequences.
11068 Conversely, setting it to -1 will make filter match fields more easily.
11069 This may help processing of video where there is slight blurring between
11070 the fields, but may also cause there to be interlaced frames in the output.
11071 Default value is @code{0}.
11072
11073 @item mp
11074 Set the metric plane to use. It accepts the following values:
11075 @table @samp
11076 @item l
11077 Use luma plane.
11078
11079 @item u
11080 Use chroma blue plane.
11081
11082 @item v
11083 Use chroma red plane.
11084 @end table
11085
11086 This option may be set to use chroma plane instead of the default luma plane
11087 for doing filter's computations. This may improve accuracy on very clean
11088 source material, but more likely will decrease accuracy, especially if there
11089 is chroma noise (rainbow effect) or any grayscale video.
11090 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
11091 load and make pullup usable in realtime on slow machines.
11092 @end table
11093
11094 For best results (without duplicated frames in the output file) it is
11095 necessary to change the output frame rate. For example, to inverse
11096 telecine NTSC input:
11097 @example
11098 ffmpeg -i input -vf pullup -r 24000/1001 ...
11099 @end example
11100
11101 @section qp
11102
11103 Change video quantization parameters (QP).
11104
11105 The filter accepts the following option:
11106
11107 @table @option
11108 @item qp
11109 Set expression for quantization parameter.
11110 @end table
11111
11112 The expression is evaluated through the eval API and can contain, among others,
11113 the following constants:
11114
11115 @table @var
11116 @item known
11117 1 if index is not 129, 0 otherwise.
11118
11119 @item qp
11120 Sequentional index starting from -129 to 128.
11121 @end table
11122
11123 @subsection Examples
11124
11125 @itemize
11126 @item
11127 Some equation like:
11128 @example
11129 qp=2+2*sin(PI*qp)
11130 @end example
11131 @end itemize
11132
11133 @section random
11134
11135 Flush video frames from internal cache of frames into a random order.
11136 No frame is discarded.
11137 Inspired by @ref{frei0r} nervous filter.
11138
11139 @table @option
11140 @item frames
11141 Set size in number of frames of internal cache, in range from @code{2} to
11142 @code{512}. Default is @code{30}.
11143
11144 @item seed
11145 Set seed for random number generator, must be an integer included between
11146 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
11147 less than @code{0}, the filter will try to use a good random seed on a
11148 best effort basis.
11149 @end table
11150
11151 @section readvitc
11152
11153 Read vertical interval timecode (VITC) information from the top lines of a
11154 video frame.
11155
11156 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
11157 timecode value, if a valid timecode has been detected. Further metadata key
11158 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
11159 timecode data has been found or not.
11160
11161 This filter accepts the following options:
11162
11163 @table @option
11164 @item scan_max
11165 Set the maximum number of lines to scan for VITC data. If the value is set to
11166 @code{-1} the full video frame is scanned. Default is @code{45}.
11167
11168 @item thr_b
11169 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
11170 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
11171
11172 @item thr_w
11173 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
11174 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
11175 @end table
11176
11177 @subsection Examples
11178
11179 @itemize
11180 @item
11181 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
11182 draw @code{--:--:--:--} as a placeholder:
11183 @example
11184 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
11185 @end example
11186 @end itemize
11187
11188 @section remap
11189
11190 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
11191
11192 Destination pixel at position (X, Y) will be picked from source (x, y) position
11193 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
11194 value for pixel will be used for destination pixel.
11195
11196 Xmap and Ymap input video streams must be of same dimensions. Output video stream
11197 will have Xmap/Ymap video stream dimensions.
11198 Xmap and Ymap input video streams are 16bit depth, single channel.
11199
11200 @section removegrain
11201
11202 The removegrain filter is a spatial denoiser for progressive video.
11203
11204 @table @option
11205 @item m0
11206 Set mode for the first plane.
11207
11208 @item m1
11209 Set mode for the second plane.
11210
11211 @item m2
11212 Set mode for the third plane.
11213
11214 @item m3
11215 Set mode for the fourth plane.
11216 @end table
11217
11218 Range of mode is from 0 to 24. Description of each mode follows:
11219
11220 @table @var
11221 @item 0
11222 Leave input plane unchanged. Default.
11223
11224 @item 1
11225 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
11226
11227 @item 2
11228 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
11229
11230 @item 3
11231 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
11232
11233 @item 4
11234 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
11235 This is equivalent to a median filter.
11236
11237 @item 5
11238 Line-sensitive clipping giving the minimal change.
11239
11240 @item 6
11241 Line-sensitive clipping, intermediate.
11242
11243 @item 7
11244 Line-sensitive clipping, intermediate.
11245
11246 @item 8
11247 Line-sensitive clipping, intermediate.
11248
11249 @item 9
11250 Line-sensitive clipping on a line where the neighbours pixels are the closest.
11251
11252 @item 10
11253 Replaces the target pixel with the closest neighbour.
11254
11255 @item 11
11256 [1 2 1] horizontal and vertical kernel blur.
11257
11258 @item 12
11259 Same as mode 11.
11260
11261 @item 13
11262 Bob mode, interpolates top field from the line where the neighbours
11263 pixels are the closest.
11264
11265 @item 14
11266 Bob mode, interpolates bottom field from the line where the neighbours
11267 pixels are the closest.
11268
11269 @item 15
11270 Bob mode, interpolates top field. Same as 13 but with a more complicated
11271 interpolation formula.
11272
11273 @item 16
11274 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
11275 interpolation formula.
11276
11277 @item 17
11278 Clips the pixel with the minimum and maximum of respectively the maximum and
11279 minimum of each pair of opposite neighbour pixels.
11280
11281 @item 18
11282 Line-sensitive clipping using opposite neighbours whose greatest distance from
11283 the current pixel is minimal.
11284
11285 @item 19
11286 Replaces the pixel with the average of its 8 neighbours.
11287
11288 @item 20
11289 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
11290
11291 @item 21
11292 Clips pixels using the averages of opposite neighbour.
11293
11294 @item 22
11295 Same as mode 21 but simpler and faster.
11296
11297 @item 23
11298 Small edge and halo removal, but reputed useless.
11299
11300 @item 24
11301 Similar as 23.
11302 @end table
11303
11304 @section removelogo
11305
11306 Suppress a TV station logo, using an image file to determine which
11307 pixels comprise the logo. It works by filling in the pixels that
11308 comprise the logo with neighboring pixels.
11309
11310 The filter accepts the following options:
11311
11312 @table @option
11313 @item filename, f
11314 Set the filter bitmap file, which can be any image format supported by
11315 libavformat. The width and height of the image file must match those of the
11316 video stream being processed.
11317 @end table
11318
11319 Pixels in the provided bitmap image with a value of zero are not
11320 considered part of the logo, non-zero pixels are considered part of
11321 the logo. If you use white (255) for the logo and black (0) for the
11322 rest, you will be safe. For making the filter bitmap, it is
11323 recommended to take a screen capture of a black frame with the logo
11324 visible, and then using a threshold filter followed by the erode
11325 filter once or twice.
11326
11327 If needed, little splotches can be fixed manually. Remember that if
11328 logo pixels are not covered, the filter quality will be much
11329 reduced. Marking too many pixels as part of the logo does not hurt as
11330 much, but it will increase the amount of blurring needed to cover over
11331 the image and will destroy more information than necessary, and extra
11332 pixels will slow things down on a large logo.
11333
11334 @section repeatfields
11335
11336 This filter uses the repeat_field flag from the Video ES headers and hard repeats
11337 fields based on its value.
11338
11339 @section reverse
11340
11341 Reverse a video clip.
11342
11343 Warning: This filter requires memory to buffer the entire clip, so trimming
11344 is suggested.
11345
11346 @subsection Examples
11347
11348 @itemize
11349 @item
11350 Take the first 5 seconds of a clip, and reverse it.
11351 @example
11352 trim=end=5,reverse
11353 @end example
11354 @end itemize
11355
11356 @section rotate
11357
11358 Rotate video by an arbitrary angle expressed in radians.
11359
11360 The filter accepts the following options:
11361
11362 A description of the optional parameters follows.
11363 @table @option
11364 @item angle, a
11365 Set an expression for the angle by which to rotate the input video
11366 clockwise, expressed as a number of radians. A negative value will
11367 result in a counter-clockwise rotation. By default it is set to "0".
11368
11369 This expression is evaluated for each frame.
11370
11371 @item out_w, ow
11372 Set the output width expression, default value is "iw".
11373 This expression is evaluated just once during configuration.
11374
11375 @item out_h, oh
11376 Set the output height expression, default value is "ih".
11377 This expression is evaluated just once during configuration.
11378
11379 @item bilinear
11380 Enable bilinear interpolation if set to 1, a value of 0 disables
11381 it. Default value is 1.
11382
11383 @item fillcolor, c
11384 Set the color used to fill the output area not covered by the rotated
11385 image. For the general syntax of this option, check the "Color" section in the
11386 ffmpeg-utils manual. If the special value "none" is selected then no
11387 background is printed (useful for example if the background is never shown).
11388
11389 Default value is "black".
11390 @end table
11391
11392 The expressions for the angle and the output size can contain the
11393 following constants and functions:
11394
11395 @table @option
11396 @item n
11397 sequential number of the input frame, starting from 0. It is always NAN
11398 before the first frame is filtered.
11399
11400 @item t
11401 time in seconds of the input frame, it is set to 0 when the filter is
11402 configured. It is always NAN before the first frame is filtered.
11403
11404 @item hsub
11405 @item vsub
11406 horizontal and vertical chroma subsample values. For example for the
11407 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11408
11409 @item in_w, iw
11410 @item in_h, ih
11411 the input video width and height
11412
11413 @item out_w, ow
11414 @item out_h, oh
11415 the output width and height, that is the size of the padded area as
11416 specified by the @var{width} and @var{height} expressions
11417
11418 @item rotw(a)
11419 @item roth(a)
11420 the minimal width/height required for completely containing the input
11421 video rotated by @var{a} radians.
11422
11423 These are only available when computing the @option{out_w} and
11424 @option{out_h} expressions.
11425 @end table
11426
11427 @subsection Examples
11428
11429 @itemize
11430 @item
11431 Rotate the input by PI/6 radians clockwise:
11432 @example
11433 rotate=PI/6
11434 @end example
11435
11436 @item
11437 Rotate the input by PI/6 radians counter-clockwise:
11438 @example
11439 rotate=-PI/6
11440 @end example
11441
11442 @item
11443 Rotate the input by 45 degrees clockwise:
11444 @example
11445 rotate=45*PI/180
11446 @end example
11447
11448 @item
11449 Apply a constant rotation with period T, starting from an angle of PI/3:
11450 @example
11451 rotate=PI/3+2*PI*t/T
11452 @end example
11453
11454 @item
11455 Make the input video rotation oscillating with a period of T
11456 seconds and an amplitude of A radians:
11457 @example
11458 rotate=A*sin(2*PI/T*t)
11459 @end example
11460
11461 @item
11462 Rotate the video, output size is chosen so that the whole rotating
11463 input video is always completely contained in the output:
11464 @example
11465 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11466 @end example
11467
11468 @item
11469 Rotate the video, reduce the output size so that no background is ever
11470 shown:
11471 @example
11472 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11473 @end example
11474 @end itemize
11475
11476 @subsection Commands
11477
11478 The filter supports the following commands:
11479
11480 @table @option
11481 @item a, angle
11482 Set the angle expression.
11483 The command accepts the same syntax of the corresponding option.
11484
11485 If the specified expression is not valid, it is kept at its current
11486 value.
11487 @end table
11488
11489 @section sab
11490
11491 Apply Shape Adaptive Blur.
11492
11493 The filter accepts the following options:
11494
11495 @table @option
11496 @item luma_radius, lr
11497 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11498 value is 1.0. A greater value will result in a more blurred image, and
11499 in slower processing.
11500
11501 @item luma_pre_filter_radius, lpfr
11502 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11503 value is 1.0.
11504
11505 @item luma_strength, ls
11506 Set luma maximum difference between pixels to still be considered, must
11507 be a value in the 0.1-100.0 range, default value is 1.0.
11508
11509 @item chroma_radius, cr
11510 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11511 greater value will result in a more blurred image, and in slower
11512 processing.
11513
11514 @item chroma_pre_filter_radius, cpfr
11515 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11516
11517 @item chroma_strength, cs
11518 Set chroma maximum difference between pixels to still be considered,
11519 must be a value in the -0.9-100.0 range.
11520 @end table
11521
11522 Each chroma option value, if not explicitly specified, is set to the
11523 corresponding luma option value.
11524
11525 @anchor{scale}
11526 @section scale
11527
11528 Scale (resize) the input video, using the libswscale library.
11529
11530 The scale filter forces the output display aspect ratio to be the same
11531 of the input, by changing the output sample aspect ratio.
11532
11533 If the input image format is different from the format requested by
11534 the next filter, the scale filter will convert the input to the
11535 requested format.
11536
11537 @subsection Options
11538 The filter accepts the following options, or any of the options
11539 supported by the libswscale scaler.
11540
11541 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11542 the complete list of scaler options.
11543
11544 @table @option
11545 @item width, w
11546 @item height, h
11547 Set the output video dimension expression. Default value is the input
11548 dimension.
11549
11550 If the value is 0, the input width is used for the output.
11551
11552 If one of the values is -1, the scale filter will use a value that
11553 maintains the aspect ratio of the input image, calculated from the
11554 other specified dimension. If both of them are -1, the input size is
11555 used
11556
11557 If one of the values is -n with n > 1, the scale filter will also use a value
11558 that maintains the aspect ratio of the input image, calculated from the other
11559 specified dimension. After that it will, however, make sure that the calculated
11560 dimension is divisible by n and adjust the value if necessary.
11561
11562 See below for the list of accepted constants for use in the dimension
11563 expression.
11564
11565 @item eval
11566 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11567
11568 @table @samp
11569 @item init
11570 Only evaluate expressions once during the filter initialization or when a command is processed.
11571
11572 @item frame
11573 Evaluate expressions for each incoming frame.
11574
11575 @end table
11576
11577 Default value is @samp{init}.
11578
11579
11580 @item interl
11581 Set the interlacing mode. It accepts the following values:
11582
11583 @table @samp
11584 @item 1
11585 Force interlaced aware scaling.
11586
11587 @item 0
11588 Do not apply interlaced scaling.
11589
11590 @item -1
11591 Select interlaced aware scaling depending on whether the source frames
11592 are flagged as interlaced or not.
11593 @end table
11594
11595 Default value is @samp{0}.
11596
11597 @item flags
11598 Set libswscale scaling flags. See
11599 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11600 complete list of values. If not explicitly specified the filter applies
11601 the default flags.
11602
11603
11604 @item param0, param1
11605 Set libswscale input parameters for scaling algorithms that need them. See
11606 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11607 complete documentation. If not explicitly specified the filter applies
11608 empty parameters.
11609
11610
11611
11612 @item size, s
11613 Set the video size. For the syntax of this option, check the
11614 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11615
11616 @item in_color_matrix
11617 @item out_color_matrix
11618 Set in/output YCbCr color space type.
11619
11620 This allows the autodetected value to be overridden as well as allows forcing
11621 a specific value used for the output and encoder.
11622
11623 If not specified, the color space type depends on the pixel format.
11624
11625 Possible values:
11626
11627 @table @samp
11628 @item auto
11629 Choose automatically.
11630
11631 @item bt709
11632 Format conforming to International Telecommunication Union (ITU)
11633 Recommendation BT.709.
11634
11635 @item fcc
11636 Set color space conforming to the United States Federal Communications
11637 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11638
11639 @item bt601
11640 Set color space conforming to:
11641
11642 @itemize
11643 @item
11644 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11645
11646 @item
11647 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11648
11649 @item
11650 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11651
11652 @end itemize
11653
11654 @item smpte240m
11655 Set color space conforming to SMPTE ST 240:1999.
11656 @end table
11657
11658 @item in_range
11659 @item out_range
11660 Set in/output YCbCr sample range.
11661
11662 This allows the autodetected value to be overridden as well as allows forcing
11663 a specific value used for the output and encoder. If not specified, the
11664 range depends on the pixel format. Possible values:
11665
11666 @table @samp
11667 @item auto
11668 Choose automatically.
11669
11670 @item jpeg/full/pc
11671 Set full range (0-255 in case of 8-bit luma).
11672
11673 @item mpeg/tv
11674 Set "MPEG" range (16-235 in case of 8-bit luma).
11675 @end table
11676
11677 @item force_original_aspect_ratio
11678 Enable decreasing or increasing output video width or height if necessary to
11679 keep the original aspect ratio. Possible values:
11680
11681 @table @samp
11682 @item disable
11683 Scale the video as specified and disable this feature.
11684
11685 @item decrease
11686 The output video dimensions will automatically be decreased if needed.
11687
11688 @item increase
11689 The output video dimensions will automatically be increased if needed.
11690
11691 @end table
11692
11693 One useful instance of this option is that when you know a specific device's
11694 maximum allowed resolution, you can use this to limit the output video to
11695 that, while retaining the aspect ratio. For example, device A allows
11696 1280x720 playback, and your video is 1920x800. Using this option (set it to
11697 decrease) and specifying 1280x720 to the command line makes the output
11698 1280x533.
11699
11700 Please note that this is a different thing than specifying -1 for @option{w}
11701 or @option{h}, you still need to specify the output resolution for this option
11702 to work.
11703
11704 @end table
11705
11706 The values of the @option{w} and @option{h} options are expressions
11707 containing the following constants:
11708
11709 @table @var
11710 @item in_w
11711 @item in_h
11712 The input width and height
11713
11714 @item iw
11715 @item ih
11716 These are the same as @var{in_w} and @var{in_h}.
11717
11718 @item out_w
11719 @item out_h
11720 The output (scaled) width and height
11721
11722 @item ow
11723 @item oh
11724 These are the same as @var{out_w} and @var{out_h}
11725
11726 @item a
11727 The same as @var{iw} / @var{ih}
11728
11729 @item sar
11730 input sample aspect ratio
11731
11732 @item dar
11733 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11734
11735 @item hsub
11736 @item vsub
11737 horizontal and vertical input chroma subsample values. For example for the
11738 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11739
11740 @item ohsub
11741 @item ovsub
11742 horizontal and vertical output chroma subsample values. For example for the
11743 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11744 @end table
11745
11746 @subsection Examples
11747
11748 @itemize
11749 @item
11750 Scale the input video to a size of 200x100
11751 @example
11752 scale=w=200:h=100
11753 @end example
11754
11755 This is equivalent to:
11756 @example
11757 scale=200:100
11758 @end example
11759
11760 or:
11761 @example
11762 scale=200x100
11763 @end example
11764
11765 @item
11766 Specify a size abbreviation for the output size:
11767 @example
11768 scale=qcif
11769 @end example
11770
11771 which can also be written as:
11772 @example
11773 scale=size=qcif
11774 @end example
11775
11776 @item
11777 Scale the input to 2x:
11778 @example
11779 scale=w=2*iw:h=2*ih
11780 @end example
11781
11782 @item
11783 The above is the same as:
11784 @example
11785 scale=2*in_w:2*in_h
11786 @end example
11787
11788 @item
11789 Scale the input to 2x with forced interlaced scaling:
11790 @example
11791 scale=2*iw:2*ih:interl=1
11792 @end example
11793
11794 @item
11795 Scale the input to half size:
11796 @example
11797 scale=w=iw/2:h=ih/2
11798 @end example
11799
11800 @item
11801 Increase the width, and set the height to the same size:
11802 @example
11803 scale=3/2*iw:ow
11804 @end example
11805
11806 @item
11807 Seek Greek harmony:
11808 @example
11809 scale=iw:1/PHI*iw
11810 scale=ih*PHI:ih
11811 @end example
11812
11813 @item
11814 Increase the height, and set the width to 3/2 of the height:
11815 @example
11816 scale=w=3/2*oh:h=3/5*ih
11817 @end example
11818
11819 @item
11820 Increase the size, making the size a multiple of the chroma
11821 subsample values:
11822 @example
11823 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
11824 @end example
11825
11826 @item
11827 Increase the width to a maximum of 500 pixels,
11828 keeping the same aspect ratio as the input:
11829 @example
11830 scale=w='min(500\, iw*3/2):h=-1'
11831 @end example
11832 @end itemize
11833
11834 @subsection Commands
11835
11836 This filter supports the following commands:
11837 @table @option
11838 @item width, w
11839 @item height, h
11840 Set the output video dimension expression.
11841 The command accepts the same syntax of the corresponding option.
11842
11843 If the specified expression is not valid, it is kept at its current
11844 value.
11845 @end table
11846
11847 @section scale_npp
11848
11849 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
11850 format conversion on CUDA video frames. Setting the output width and height
11851 works in the same way as for the @var{scale} filter.
11852
11853 The following additional options are accepted:
11854 @table @option
11855 @item format
11856 The pixel format of the output CUDA frames. If set to the string "same" (the
11857 default), the input format will be kept. Note that automatic format negotiation
11858 and conversion is not yet supported for hardware frames
11859
11860 @item interp_algo
11861 The interpolation algorithm used for resizing. One of the following:
11862 @table @option
11863 @item nn
11864 Nearest neighbour.
11865
11866 @item linear
11867 @item cubic
11868 @item cubic2p_bspline
11869 2-parameter cubic (B=1, C=0)
11870
11871 @item cubic2p_catmullrom
11872 2-parameter cubic (B=0, C=1/2)
11873
11874 @item cubic2p_b05c03
11875 2-parameter cubic (B=1/2, C=3/10)
11876
11877 @item super
11878 Supersampling
11879
11880 @item lanczos
11881 @end table
11882
11883 @end table
11884
11885 @section scale2ref
11886
11887 Scale (resize) the input video, based on a reference video.
11888
11889 See the scale filter for available options, scale2ref supports the same but
11890 uses the reference video instead of the main input as basis.
11891
11892 @subsection Examples
11893
11894 @itemize
11895 @item
11896 Scale a subtitle stream to match the main video in size before overlaying
11897 @example
11898 'scale2ref[b][a];[a][b]overlay'
11899 @end example
11900 @end itemize
11901
11902 @anchor{selectivecolor}
11903 @section selectivecolor
11904
11905 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
11906 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
11907 by the "purity" of the color (that is, how saturated it already is).
11908
11909 This filter is similar to the Adobe Photoshop Selective Color tool.
11910
11911 The filter accepts the following options:
11912
11913 @table @option
11914 @item correction_method
11915 Select color correction method.
11916
11917 Available values are:
11918 @table @samp
11919 @item absolute
11920 Specified adjustments are applied "as-is" (added/subtracted to original pixel
11921 component value).
11922 @item relative
11923 Specified adjustments are relative to the original component value.
11924 @end table
11925 Default is @code{absolute}.
11926 @item reds
11927 Adjustments for red pixels (pixels where the red component is the maximum)
11928 @item yellows
11929 Adjustments for yellow pixels (pixels where the blue component is the minimum)
11930 @item greens
11931 Adjustments for green pixels (pixels where the green component is the maximum)
11932 @item cyans
11933 Adjustments for cyan pixels (pixels where the red component is the minimum)
11934 @item blues
11935 Adjustments for blue pixels (pixels where the blue component is the maximum)
11936 @item magentas
11937 Adjustments for magenta pixels (pixels where the green component is the minimum)
11938 @item whites
11939 Adjustments for white pixels (pixels where all components are greater than 128)
11940 @item neutrals
11941 Adjustments for all pixels except pure black and pure white
11942 @item blacks
11943 Adjustments for black pixels (pixels where all components are lesser than 128)
11944 @item psfile
11945 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
11946 @end table
11947
11948 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
11949 4 space separated floating point adjustment values in the [-1,1] range,
11950 respectively to adjust the amount of cyan, magenta, yellow and black for the
11951 pixels of its range.
11952
11953 @subsection Examples
11954
11955 @itemize
11956 @item
11957 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
11958 increase magenta by 27% in blue areas:
11959 @example
11960 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
11961 @end example
11962
11963 @item
11964 Use a Photoshop selective color preset:
11965 @example
11966 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
11967 @end example
11968 @end itemize
11969
11970 @anchor{separatefields}
11971 @section separatefields
11972
11973 The @code{separatefields} takes a frame-based video input and splits
11974 each frame into its components fields, producing a new half height clip
11975 with twice the frame rate and twice the frame count.
11976
11977 This filter use field-dominance information in frame to decide which
11978 of each pair of fields to place first in the output.
11979 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
11980
11981 @section setdar, setsar
11982
11983 The @code{setdar} filter sets the Display Aspect Ratio for the filter
11984 output video.
11985
11986 This is done by changing the specified Sample (aka Pixel) Aspect
11987 Ratio, according to the following equation:
11988 @example
11989 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
11990 @end example
11991
11992 Keep in mind that the @code{setdar} filter does not modify the pixel
11993 dimensions of the video frame. Also, the display aspect ratio set by
11994 this filter may be changed by later filters in the filterchain,
11995 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
11996 applied.
11997
11998 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
11999 the filter output video.
12000
12001 Note that as a consequence of the application of this filter, the
12002 output display aspect ratio will change according to the equation
12003 above.
12004
12005 Keep in mind that the sample aspect ratio set by the @code{setsar}
12006 filter may be changed by later filters in the filterchain, e.g. if
12007 another "setsar" or a "setdar" filter is applied.
12008
12009 It accepts the following parameters:
12010
12011 @table @option
12012 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
12013 Set the aspect ratio used by the filter.
12014
12015 The parameter can be a floating point number string, an expression, or
12016 a string of the form @var{num}:@var{den}, where @var{num} and
12017 @var{den} are the numerator and denominator of the aspect ratio. If
12018 the parameter is not specified, it is assumed the value "0".
12019 In case the form "@var{num}:@var{den}" is used, the @code{:} character
12020 should be escaped.
12021
12022 @item max
12023 Set the maximum integer value to use for expressing numerator and
12024 denominator when reducing the expressed aspect ratio to a rational.
12025 Default value is @code{100}.
12026
12027 @end table
12028
12029 The parameter @var{sar} is an expression containing
12030 the following constants:
12031
12032 @table @option
12033 @item E, PI, PHI
12034 These are approximated values for the mathematical constants e
12035 (Euler's number), pi (Greek pi), and phi (the golden ratio).
12036
12037 @item w, h
12038 The input width and height.
12039
12040 @item a
12041 These are the same as @var{w} / @var{h}.
12042
12043 @item sar
12044 The input sample aspect ratio.
12045
12046 @item dar
12047 The input display aspect ratio. It is the same as
12048 (@var{w} / @var{h}) * @var{sar}.
12049
12050 @item hsub, vsub
12051 Horizontal and vertical chroma subsample values. For example, for the
12052 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12053 @end table
12054
12055 @subsection Examples
12056
12057 @itemize
12058
12059 @item
12060 To change the display aspect ratio to 16:9, specify one of the following:
12061 @example
12062 setdar=dar=1.77777
12063 setdar=dar=16/9
12064 @end example
12065
12066 @item
12067 To change the sample aspect ratio to 10:11, specify:
12068 @example
12069 setsar=sar=10/11
12070 @end example
12071
12072 @item
12073 To set a display aspect ratio of 16:9, and specify a maximum integer value of
12074 1000 in the aspect ratio reduction, use the command:
12075 @example
12076 setdar=ratio=16/9:max=1000
12077 @end example
12078
12079 @end itemize
12080
12081 @anchor{setfield}
12082 @section setfield
12083
12084 Force field for the output video frame.
12085
12086 The @code{setfield} filter marks the interlace type field for the
12087 output frames. It does not change the input frame, but only sets the
12088 corresponding property, which affects how the frame is treated by
12089 following filters (e.g. @code{fieldorder} or @code{yadif}).
12090
12091 The filter accepts the following options:
12092
12093 @table @option
12094
12095 @item mode
12096 Available values are:
12097
12098 @table @samp
12099 @item auto
12100 Keep the same field property.
12101
12102 @item bff
12103 Mark the frame as bottom-field-first.
12104
12105 @item tff
12106 Mark the frame as top-field-first.
12107
12108 @item prog
12109 Mark the frame as progressive.
12110 @end table
12111 @end table
12112
12113 @section showinfo
12114
12115 Show a line containing various information for each input video frame.
12116 The input video is not modified.
12117
12118 The shown line contains a sequence of key/value pairs of the form
12119 @var{key}:@var{value}.
12120
12121 The following values are shown in the output:
12122
12123 @table @option
12124 @item n
12125 The (sequential) number of the input frame, starting from 0.
12126
12127 @item pts
12128 The Presentation TimeStamp of the input frame, expressed as a number of
12129 time base units. The time base unit depends on the filter input pad.
12130
12131 @item pts_time
12132 The Presentation TimeStamp of the input frame, expressed as a number of
12133 seconds.
12134
12135 @item pos
12136 The position of the frame in the input stream, or -1 if this information is
12137 unavailable and/or meaningless (for example in case of synthetic video).
12138
12139 @item fmt
12140 The pixel format name.
12141
12142 @item sar
12143 The sample aspect ratio of the input frame, expressed in the form
12144 @var{num}/@var{den}.
12145
12146 @item s
12147 The size of the input frame. For the syntax of this option, check the
12148 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12149
12150 @item i
12151 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
12152 for bottom field first).
12153
12154 @item iskey
12155 This is 1 if the frame is a key frame, 0 otherwise.
12156
12157 @item type
12158 The picture type of the input frame ("I" for an I-frame, "P" for a
12159 P-frame, "B" for a B-frame, or "?" for an unknown type).
12160 Also refer to the documentation of the @code{AVPictureType} enum and of
12161 the @code{av_get_picture_type_char} function defined in
12162 @file{libavutil/avutil.h}.
12163
12164 @item checksum
12165 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
12166
12167 @item plane_checksum
12168 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
12169 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
12170 @end table
12171
12172 @section showpalette
12173
12174 Displays the 256 colors palette of each frame. This filter is only relevant for
12175 @var{pal8} pixel format frames.
12176
12177 It accepts the following option:
12178
12179 @table @option
12180 @item s
12181 Set the size of the box used to represent one palette color entry. Default is
12182 @code{30} (for a @code{30x30} pixel box).
12183 @end table
12184
12185 @section shuffleframes
12186
12187 Reorder and/or duplicate video frames.
12188
12189 It accepts the following parameters:
12190
12191 @table @option
12192 @item mapping
12193 Set the destination indexes of input frames.
12194 This is space or '|' separated list of indexes that maps input frames to output
12195 frames. Number of indexes also sets maximal value that each index may have.
12196 @end table
12197
12198 The first frame has the index 0. The default is to keep the input unchanged.
12199
12200 @subsection Examples
12201
12202 @itemize
12203 @item
12204 Swap second and third frame of every three frames of the input:
12205 @example
12206 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
12207 @end example
12208
12209 @item
12210 Swap 10th and 1st frame of every ten frames of the input:
12211 @example
12212 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
12213 @end example
12214 @end itemize
12215
12216 @section shuffleplanes
12217
12218 Reorder and/or duplicate video planes.
12219
12220 It accepts the following parameters:
12221
12222 @table @option
12223
12224 @item map0
12225 The index of the input plane to be used as the first output plane.
12226
12227 @item map1
12228 The index of the input plane to be used as the second output plane.
12229
12230 @item map2
12231 The index of the input plane to be used as the third output plane.
12232
12233 @item map3
12234 The index of the input plane to be used as the fourth output plane.
12235
12236 @end table
12237
12238 The first plane has the index 0. The default is to keep the input unchanged.
12239
12240 @subsection Examples
12241
12242 @itemize
12243 @item
12244 Swap the second and third planes of the input:
12245 @example
12246 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
12247 @end example
12248 @end itemize
12249
12250 @anchor{signalstats}
12251 @section signalstats
12252 Evaluate various visual metrics that assist in determining issues associated
12253 with the digitization of analog video media.
12254
12255 By default the filter will log these metadata values:
12256
12257 @table @option
12258 @item YMIN
12259 Display the minimal Y value contained within the input frame. Expressed in
12260 range of [0-255].
12261
12262 @item YLOW
12263 Display the Y value at the 10% percentile within the input frame. Expressed in
12264 range of [0-255].
12265
12266 @item YAVG
12267 Display the average Y value within the input frame. Expressed in range of
12268 [0-255].
12269
12270 @item YHIGH
12271 Display the Y value at the 90% percentile within the input frame. Expressed in
12272 range of [0-255].
12273
12274 @item YMAX
12275 Display the maximum Y value contained within the input frame. Expressed in
12276 range of [0-255].
12277
12278 @item UMIN
12279 Display the minimal U value contained within the input frame. Expressed in
12280 range of [0-255].
12281
12282 @item ULOW
12283 Display the U value at the 10% percentile within the input frame. Expressed in
12284 range of [0-255].
12285
12286 @item UAVG
12287 Display the average U value within the input frame. Expressed in range of
12288 [0-255].
12289
12290 @item UHIGH
12291 Display the U value at the 90% percentile within the input frame. Expressed in
12292 range of [0-255].
12293
12294 @item UMAX
12295 Display the maximum U value contained within the input frame. Expressed in
12296 range of [0-255].
12297
12298 @item VMIN
12299 Display the minimal V value contained within the input frame. Expressed in
12300 range of [0-255].
12301
12302 @item VLOW
12303 Display the V value at the 10% percentile within the input frame. Expressed in
12304 range of [0-255].
12305
12306 @item VAVG
12307 Display the average V value within the input frame. Expressed in range of
12308 [0-255].
12309
12310 @item VHIGH
12311 Display the V value at the 90% percentile within the input frame. Expressed in
12312 range of [0-255].
12313
12314 @item VMAX
12315 Display the maximum V value contained within the input frame. Expressed in
12316 range of [0-255].
12317
12318 @item SATMIN
12319 Display the minimal saturation value contained within the input frame.
12320 Expressed in range of [0-~181.02].
12321
12322 @item SATLOW
12323 Display the saturation value at the 10% percentile within the input frame.
12324 Expressed in range of [0-~181.02].
12325
12326 @item SATAVG
12327 Display the average saturation value within the input frame. Expressed in range
12328 of [0-~181.02].
12329
12330 @item SATHIGH
12331 Display the saturation value at the 90% percentile within the input frame.
12332 Expressed in range of [0-~181.02].
12333
12334 @item SATMAX
12335 Display the maximum saturation value contained within the input frame.
12336 Expressed in range of [0-~181.02].
12337
12338 @item HUEMED
12339 Display the median value for hue within the input frame. Expressed in range of
12340 [0-360].
12341
12342 @item HUEAVG
12343 Display the average value for hue within the input frame. Expressed in range of
12344 [0-360].
12345
12346 @item YDIF
12347 Display the average of sample value difference between all values of the Y
12348 plane in the current frame and corresponding values of the previous input frame.
12349 Expressed in range of [0-255].
12350
12351 @item UDIF
12352 Display the average of sample value difference between all values of the U
12353 plane in the current frame and corresponding values of the previous input frame.
12354 Expressed in range of [0-255].
12355
12356 @item VDIF
12357 Display the average of sample value difference between all values of the V
12358 plane in the current frame and corresponding values of the previous input frame.
12359 Expressed in range of [0-255].
12360
12361 @item YBITDEPTH
12362 Display bit depth of Y plane in current frame.
12363 Expressed in range of [0-16].
12364
12365 @item UBITDEPTH
12366 Display bit depth of U plane in current frame.
12367 Expressed in range of [0-16].
12368
12369 @item VBITDEPTH
12370 Display bit depth of V plane in current frame.
12371 Expressed in range of [0-16].
12372 @end table
12373
12374 The filter accepts the following options:
12375
12376 @table @option
12377 @item stat
12378 @item out
12379
12380 @option{stat} specify an additional form of image analysis.
12381 @option{out} output video with the specified type of pixel highlighted.
12382
12383 Both options accept the following values:
12384
12385 @table @samp
12386 @item tout
12387 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
12388 unlike the neighboring pixels of the same field. Examples of temporal outliers
12389 include the results of video dropouts, head clogs, or tape tracking issues.
12390
12391 @item vrep
12392 Identify @var{vertical line repetition}. Vertical line repetition includes
12393 similar rows of pixels within a frame. In born-digital video vertical line
12394 repetition is common, but this pattern is uncommon in video digitized from an
12395 analog source. When it occurs in video that results from the digitization of an
12396 analog source it can indicate concealment from a dropout compensator.
12397
12398 @item brng
12399 Identify pixels that fall outside of legal broadcast range.
12400 @end table
12401
12402 @item color, c
12403 Set the highlight color for the @option{out} option. The default color is
12404 yellow.
12405 @end table
12406
12407 @subsection Examples
12408
12409 @itemize
12410 @item
12411 Output data of various video metrics:
12412 @example
12413 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
12414 @end example
12415
12416 @item
12417 Output specific data about the minimum and maximum values of the Y plane per frame:
12418 @example
12419 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
12420 @end example
12421
12422 @item
12423 Playback video while highlighting pixels that are outside of broadcast range in red.
12424 @example
12425 ffplay example.mov -vf signalstats="out=brng:color=red"
12426 @end example
12427
12428 @item
12429 Playback video with signalstats metadata drawn over the frame.
12430 @example
12431 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12432 @end example
12433
12434 The contents of signalstat_drawtext.txt used in the command are:
12435 @example
12436 time %@{pts:hms@}
12437 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12438 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12439 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12440 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12441
12442 @end example
12443 @end itemize
12444
12445 @anchor{smartblur}
12446 @section smartblur
12447
12448 Blur the input video without impacting the outlines.
12449
12450 It accepts the following options:
12451
12452 @table @option
12453 @item luma_radius, lr
12454 Set the luma radius. The option value must be a float number in
12455 the range [0.1,5.0] that specifies the variance of the gaussian filter
12456 used to blur the image (slower if larger). Default value is 1.0.
12457
12458 @item luma_strength, ls
12459 Set the luma strength. The option value must be a float number
12460 in the range [-1.0,1.0] that configures the blurring. A value included
12461 in [0.0,1.0] will blur the image whereas a value included in
12462 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12463
12464 @item luma_threshold, lt
12465 Set the luma threshold used as a coefficient to determine
12466 whether a pixel should be blurred or not. The option value must be an
12467 integer in the range [-30,30]. A value of 0 will filter all the image,
12468 a value included in [0,30] will filter flat areas and a value included
12469 in [-30,0] will filter edges. Default value is 0.
12470
12471 @item chroma_radius, cr
12472 Set the chroma radius. The option value must be a float number in
12473 the range [0.1,5.0] that specifies the variance of the gaussian filter
12474 used to blur the image (slower if larger). Default value is 1.0.
12475
12476 @item chroma_strength, cs
12477 Set the chroma strength. The option value must be a float number
12478 in the range [-1.0,1.0] that configures the blurring. A value included
12479 in [0.0,1.0] will blur the image whereas a value included in
12480 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12481
12482 @item chroma_threshold, ct
12483 Set the chroma threshold used as a coefficient to determine
12484 whether a pixel should be blurred or not. The option value must be an
12485 integer in the range [-30,30]. A value of 0 will filter all the image,
12486 a value included in [0,30] will filter flat areas and a value included
12487 in [-30,0] will filter edges. Default value is 0.
12488 @end table
12489
12490 If a chroma option is not explicitly set, the corresponding luma value
12491 is set.
12492
12493 @section ssim
12494
12495 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12496
12497 This filter takes in input two input videos, the first input is
12498 considered the "main" source and is passed unchanged to the
12499 output. The second input is used as a "reference" video for computing
12500 the SSIM.
12501
12502 Both video inputs must have the same resolution and pixel format for
12503 this filter to work correctly. Also it assumes that both inputs
12504 have the same number of frames, which are compared one by one.
12505
12506 The filter stores the calculated SSIM of each frame.
12507
12508 The description of the accepted parameters follows.
12509
12510 @table @option
12511 @item stats_file, f
12512 If specified the filter will use the named file to save the SSIM of
12513 each individual frame. When filename equals "-" the data is sent to
12514 standard output.
12515 @end table
12516
12517 The file printed if @var{stats_file} is selected, contains a sequence of
12518 key/value pairs of the form @var{key}:@var{value} for each compared
12519 couple of frames.
12520
12521 A description of each shown parameter follows:
12522
12523 @table @option
12524 @item n
12525 sequential number of the input frame, starting from 1
12526
12527 @item Y, U, V, R, G, B
12528 SSIM of the compared frames for the component specified by the suffix.
12529
12530 @item All
12531 SSIM of the compared frames for the whole frame.
12532
12533 @item dB
12534 Same as above but in dB representation.
12535 @end table
12536
12537 For example:
12538 @example
12539 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12540 [main][ref] ssim="stats_file=stats.log" [out]
12541 @end example
12542
12543 On this example the input file being processed is compared with the
12544 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12545 is stored in @file{stats.log}.
12546
12547 Another example with both psnr and ssim at same time:
12548 @example
12549 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12550 @end example
12551
12552 @section stereo3d
12553
12554 Convert between different stereoscopic image formats.
12555
12556 The filters accept the following options:
12557
12558 @table @option
12559 @item in
12560 Set stereoscopic image format of input.
12561
12562 Available values for input image formats are:
12563 @table @samp
12564 @item sbsl
12565 side by side parallel (left eye left, right eye right)
12566
12567 @item sbsr
12568 side by side crosseye (right eye left, left eye right)
12569
12570 @item sbs2l
12571 side by side parallel with half width resolution
12572 (left eye left, right eye right)
12573
12574 @item sbs2r
12575 side by side crosseye with half width resolution
12576 (right eye left, left eye right)
12577
12578 @item abl
12579 above-below (left eye above, right eye below)
12580
12581 @item abr
12582 above-below (right eye above, left eye below)
12583
12584 @item ab2l
12585 above-below with half height resolution
12586 (left eye above, right eye below)
12587
12588 @item ab2r
12589 above-below with half height resolution
12590 (right eye above, left eye below)
12591
12592 @item al
12593 alternating frames (left eye first, right eye second)
12594
12595 @item ar
12596 alternating frames (right eye first, left eye second)
12597
12598 @item irl
12599 interleaved rows (left eye has top row, right eye starts on next row)
12600
12601 @item irr
12602 interleaved rows (right eye has top row, left eye starts on next row)
12603
12604 @item icl
12605 interleaved columns, left eye first
12606
12607 @item icr
12608 interleaved columns, right eye first
12609
12610 Default value is @samp{sbsl}.
12611 @end table
12612
12613 @item out
12614 Set stereoscopic image format of output.
12615
12616 @table @samp
12617 @item sbsl
12618 side by side parallel (left eye left, right eye right)
12619
12620 @item sbsr
12621 side by side crosseye (right eye left, left eye right)
12622
12623 @item sbs2l
12624 side by side parallel with half width resolution
12625 (left eye left, right eye right)
12626
12627 @item sbs2r
12628 side by side crosseye with half width resolution
12629 (right eye left, left eye right)
12630
12631 @item abl
12632 above-below (left eye above, right eye below)
12633
12634 @item abr
12635 above-below (right eye above, left eye below)
12636
12637 @item ab2l
12638 above-below with half height resolution
12639 (left eye above, right eye below)
12640
12641 @item ab2r
12642 above-below with half height resolution
12643 (right eye above, left eye below)
12644
12645 @item al
12646 alternating frames (left eye first, right eye second)
12647
12648 @item ar
12649 alternating frames (right eye first, left eye second)
12650
12651 @item irl
12652 interleaved rows (left eye has top row, right eye starts on next row)
12653
12654 @item irr
12655 interleaved rows (right eye has top row, left eye starts on next row)
12656
12657 @item arbg
12658 anaglyph red/blue gray
12659 (red filter on left eye, blue filter on right eye)
12660
12661 @item argg
12662 anaglyph red/green gray
12663 (red filter on left eye, green filter on right eye)
12664
12665 @item arcg
12666 anaglyph red/cyan gray
12667 (red filter on left eye, cyan filter on right eye)
12668
12669 @item arch
12670 anaglyph red/cyan half colored
12671 (red filter on left eye, cyan filter on right eye)
12672
12673 @item arcc
12674 anaglyph red/cyan color
12675 (red filter on left eye, cyan filter on right eye)
12676
12677 @item arcd
12678 anaglyph red/cyan color optimized with the least squares projection of dubois
12679 (red filter on left eye, cyan filter on right eye)
12680
12681 @item agmg
12682 anaglyph green/magenta gray
12683 (green filter on left eye, magenta filter on right eye)
12684
12685 @item agmh
12686 anaglyph green/magenta half colored
12687 (green filter on left eye, magenta filter on right eye)
12688
12689 @item agmc
12690 anaglyph green/magenta colored
12691 (green filter on left eye, magenta filter on right eye)
12692
12693 @item agmd
12694 anaglyph green/magenta color optimized with the least squares projection of dubois
12695 (green filter on left eye, magenta filter on right eye)
12696
12697 @item aybg
12698 anaglyph yellow/blue gray
12699 (yellow filter on left eye, blue filter on right eye)
12700
12701 @item aybh
12702 anaglyph yellow/blue half colored
12703 (yellow filter on left eye, blue filter on right eye)
12704
12705 @item aybc
12706 anaglyph yellow/blue colored
12707 (yellow filter on left eye, blue filter on right eye)
12708
12709 @item aybd
12710 anaglyph yellow/blue color optimized with the least squares projection of dubois
12711 (yellow filter on left eye, blue filter on right eye)
12712
12713 @item ml
12714 mono output (left eye only)
12715
12716 @item mr
12717 mono output (right eye only)
12718
12719 @item chl
12720 checkerboard, left eye first
12721
12722 @item chr
12723 checkerboard, right eye first
12724
12725 @item icl
12726 interleaved columns, left eye first
12727
12728 @item icr
12729 interleaved columns, right eye first
12730
12731 @item hdmi
12732 HDMI frame pack
12733 @end table
12734
12735 Default value is @samp{arcd}.
12736 @end table
12737
12738 @subsection Examples
12739
12740 @itemize
12741 @item
12742 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12743 @example
12744 stereo3d=sbsl:aybd
12745 @end example
12746
12747 @item
12748 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12749 @example
12750 stereo3d=abl:sbsr
12751 @end example
12752 @end itemize
12753
12754 @section streamselect, astreamselect
12755 Select video or audio streams.
12756
12757 The filter accepts the following options:
12758
12759 @table @option
12760 @item inputs
12761 Set number of inputs. Default is 2.
12762
12763 @item map
12764 Set input indexes to remap to outputs.
12765 @end table
12766
12767 @subsection Commands
12768
12769 The @code{streamselect} and @code{astreamselect} filter supports the following
12770 commands:
12771
12772 @table @option
12773 @item map
12774 Set input indexes to remap to outputs.
12775 @end table
12776
12777 @subsection Examples
12778
12779 @itemize
12780 @item
12781 Select first 5 seconds 1st stream and rest of time 2nd stream:
12782 @example
12783 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12784 @end example
12785
12786 @item
12787 Same as above, but for audio:
12788 @example
12789 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12790 @end example
12791 @end itemize
12792
12793 @section sobel
12794 Apply sobel operator to input video stream.
12795
12796 The filter accepts the following option:
12797
12798 @table @option
12799 @item planes
12800 Set which planes will be processed, unprocessed planes will be copied.
12801 By default value 0xf, all planes will be processed.
12802
12803 @item scale
12804 Set value which will be multiplied with filtered result.
12805
12806 @item delta
12807 Set value which will be added to filtered result.
12808 @end table
12809
12810 @anchor{spp}
12811 @section spp
12812
12813 Apply a simple postprocessing filter that compresses and decompresses the image
12814 at several (or - in the case of @option{quality} level @code{6} - all) shifts
12815 and average the results.
12816
12817 The filter accepts the following options:
12818
12819 @table @option
12820 @item quality
12821 Set quality. This option defines the number of levels for averaging. It accepts
12822 an integer in the range 0-6. If set to @code{0}, the filter will have no
12823 effect. A value of @code{6} means the higher quality. For each increment of
12824 that value the speed drops by a factor of approximately 2.  Default value is
12825 @code{3}.
12826
12827 @item qp
12828 Force a constant quantization parameter. If not set, the filter will use the QP
12829 from the video stream (if available).
12830
12831 @item mode
12832 Set thresholding mode. Available modes are:
12833
12834 @table @samp
12835 @item hard
12836 Set hard thresholding (default).
12837 @item soft
12838 Set soft thresholding (better de-ringing effect, but likely blurrier).
12839 @end table
12840
12841 @item use_bframe_qp
12842 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12843 option may cause flicker since the B-Frames have often larger QP. Default is
12844 @code{0} (not enabled).
12845 @end table
12846
12847 @anchor{subtitles}
12848 @section subtitles
12849
12850 Draw subtitles on top of input video using the libass library.
12851
12852 To enable compilation of this filter you need to configure FFmpeg with
12853 @code{--enable-libass}. This filter also requires a build with libavcodec and
12854 libavformat to convert the passed subtitles file to ASS (Advanced Substation
12855 Alpha) subtitles format.
12856
12857 The filter accepts the following options:
12858
12859 @table @option
12860 @item filename, f
12861 Set the filename of the subtitle file to read. It must be specified.
12862
12863 @item original_size
12864 Specify the size of the original video, the video for which the ASS file
12865 was composed. For the syntax of this option, check the
12866 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12867 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
12868 correctly scale the fonts if the aspect ratio has been changed.
12869
12870 @item fontsdir
12871 Set a directory path containing fonts that can be used by the filter.
12872 These fonts will be used in addition to whatever the font provider uses.
12873
12874 @item charenc
12875 Set subtitles input character encoding. @code{subtitles} filter only. Only
12876 useful if not UTF-8.
12877
12878 @item stream_index, si
12879 Set subtitles stream index. @code{subtitles} filter only.
12880
12881 @item force_style
12882 Override default style or script info parameters of the subtitles. It accepts a
12883 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
12884 @end table
12885
12886 If the first key is not specified, it is assumed that the first value
12887 specifies the @option{filename}.
12888
12889 For example, to render the file @file{sub.srt} on top of the input
12890 video, use the command:
12891 @example
12892 subtitles=sub.srt
12893 @end example
12894
12895 which is equivalent to:
12896 @example
12897 subtitles=filename=sub.srt
12898 @end example
12899
12900 To render the default subtitles stream from file @file{video.mkv}, use:
12901 @example
12902 subtitles=video.mkv
12903 @end example
12904
12905 To render the second subtitles stream from that file, use:
12906 @example
12907 subtitles=video.mkv:si=1
12908 @end example
12909
12910 To make the subtitles stream from @file{sub.srt} appear in transparent green
12911 @code{DejaVu Serif}, use:
12912 @example
12913 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
12914 @end example
12915
12916 @section super2xsai
12917
12918 Scale the input by 2x and smooth using the Super2xSaI (Scale and
12919 Interpolate) pixel art scaling algorithm.
12920
12921 Useful for enlarging pixel art images without reducing sharpness.
12922
12923 @section swaprect
12924
12925 Swap two rectangular objects in video.
12926
12927 This filter accepts the following options:
12928
12929 @table @option
12930 @item w
12931 Set object width.
12932
12933 @item h
12934 Set object height.
12935
12936 @item x1
12937 Set 1st rect x coordinate.
12938
12939 @item y1
12940 Set 1st rect y coordinate.
12941
12942 @item x2
12943 Set 2nd rect x coordinate.
12944
12945 @item y2
12946 Set 2nd rect y coordinate.
12947
12948 All expressions are evaluated once for each frame.
12949 @end table
12950
12951 The all options are expressions containing the following constants:
12952
12953 @table @option
12954 @item w
12955 @item h
12956 The input width and height.
12957
12958 @item a
12959 same as @var{w} / @var{h}
12960
12961 @item sar
12962 input sample aspect ratio
12963
12964 @item dar
12965 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
12966
12967 @item n
12968 The number of the input frame, starting from 0.
12969
12970 @item t
12971 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
12972
12973 @item pos
12974 the position in the file of the input frame, NAN if unknown
12975 @end table
12976
12977 @section swapuv
12978 Swap U & V plane.
12979
12980 @section telecine
12981
12982 Apply telecine process to the video.
12983
12984 This filter accepts the following options:
12985
12986 @table @option
12987 @item first_field
12988 @table @samp
12989 @item top, t
12990 top field first
12991 @item bottom, b
12992 bottom field first
12993 The default value is @code{top}.
12994 @end table
12995
12996 @item pattern
12997 A string of numbers representing the pulldown pattern you wish to apply.
12998 The default value is @code{23}.
12999 @end table
13000
13001 @example
13002 Some typical patterns:
13003
13004 NTSC output (30i):
13005 27.5p: 32222
13006 24p: 23 (classic)
13007 24p: 2332 (preferred)
13008 20p: 33
13009 18p: 334
13010 16p: 3444
13011
13012 PAL output (25i):
13013 27.5p: 12222
13014 24p: 222222222223 ("Euro pulldown")
13015 16.67p: 33
13016 16p: 33333334
13017 @end example
13018
13019 @section thumbnail
13020 Select the most representative frame in a given sequence of consecutive frames.
13021
13022 The filter accepts the following options:
13023
13024 @table @option
13025 @item n
13026 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
13027 will pick one of them, and then handle the next batch of @var{n} frames until
13028 the end. Default is @code{100}.
13029 @end table
13030
13031 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
13032 value will result in a higher memory usage, so a high value is not recommended.
13033
13034 @subsection Examples
13035
13036 @itemize
13037 @item
13038 Extract one picture each 50 frames:
13039 @example
13040 thumbnail=50
13041 @end example
13042
13043 @item
13044 Complete example of a thumbnail creation with @command{ffmpeg}:
13045 @example
13046 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
13047 @end example
13048 @end itemize
13049
13050 @section tile
13051
13052 Tile several successive frames together.
13053
13054 The filter accepts the following options:
13055
13056 @table @option
13057
13058 @item layout
13059 Set the grid size (i.e. the number of lines and columns). For the syntax of
13060 this option, check the
13061 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13062
13063 @item nb_frames
13064 Set the maximum number of frames to render in the given area. It must be less
13065 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
13066 the area will be used.
13067
13068 @item margin
13069 Set the outer border margin in pixels.
13070
13071 @item padding
13072 Set the inner border thickness (i.e. the number of pixels between frames). For
13073 more advanced padding options (such as having different values for the edges),
13074 refer to the pad video filter.
13075
13076 @item color
13077 Specify the color of the unused area. For the syntax of this option, check the
13078 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
13079 is "black".
13080 @end table
13081
13082 @subsection Examples
13083
13084 @itemize
13085 @item
13086 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
13087 @example
13088 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
13089 @end example
13090 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
13091 duplicating each output frame to accommodate the originally detected frame
13092 rate.
13093
13094 @item
13095 Display @code{5} pictures in an area of @code{3x2} frames,
13096 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
13097 mixed flat and named options:
13098 @example
13099 tile=3x2:nb_frames=5:padding=7:margin=2
13100 @end example
13101 @end itemize
13102
13103 @section tinterlace
13104
13105 Perform various types of temporal field interlacing.
13106
13107 Frames are counted starting from 1, so the first input frame is
13108 considered odd.
13109
13110 The filter accepts the following options:
13111
13112 @table @option
13113
13114 @item mode
13115 Specify the mode of the interlacing. This option can also be specified
13116 as a value alone. See below for a list of values for this option.
13117
13118 Available values are:
13119
13120 @table @samp
13121 @item merge, 0
13122 Move odd frames into the upper field, even into the lower field,
13123 generating a double height frame at half frame rate.
13124 @example
13125  ------> time
13126 Input:
13127 Frame 1         Frame 2         Frame 3         Frame 4
13128
13129 11111           22222           33333           44444
13130 11111           22222           33333           44444
13131 11111           22222           33333           44444
13132 11111           22222           33333           44444
13133
13134 Output:
13135 11111                           33333
13136 22222                           44444
13137 11111                           33333
13138 22222                           44444
13139 11111                           33333
13140 22222                           44444
13141 11111                           33333
13142 22222                           44444
13143 @end example
13144
13145 @item drop_even, 1
13146 Only output odd frames, even frames are dropped, generating a frame with
13147 unchanged height at half frame rate.
13148
13149 @example
13150  ------> time
13151 Input:
13152 Frame 1         Frame 2         Frame 3         Frame 4
13153
13154 11111           22222           33333           44444
13155 11111           22222           33333           44444
13156 11111           22222           33333           44444
13157 11111           22222           33333           44444
13158
13159 Output:
13160 11111                           33333
13161 11111                           33333
13162 11111                           33333
13163 11111                           33333
13164 @end example
13165
13166 @item drop_odd, 2
13167 Only output even frames, odd frames are dropped, generating a frame with
13168 unchanged height at half frame rate.
13169
13170 @example
13171  ------> time
13172 Input:
13173 Frame 1         Frame 2         Frame 3         Frame 4
13174
13175 11111           22222           33333           44444
13176 11111           22222           33333           44444
13177 11111           22222           33333           44444
13178 11111           22222           33333           44444
13179
13180 Output:
13181                 22222                           44444
13182                 22222                           44444
13183                 22222                           44444
13184                 22222                           44444
13185 @end example
13186
13187 @item pad, 3
13188 Expand each frame to full height, but pad alternate lines with black,
13189 generating a frame with double height at the same input frame rate.
13190
13191 @example
13192  ------> time
13193 Input:
13194 Frame 1         Frame 2         Frame 3         Frame 4
13195
13196 11111           22222           33333           44444
13197 11111           22222           33333           44444
13198 11111           22222           33333           44444
13199 11111           22222           33333           44444
13200
13201 Output:
13202 11111           .....           33333           .....
13203 .....           22222           .....           44444
13204 11111           .....           33333           .....
13205 .....           22222           .....           44444
13206 11111           .....           33333           .....
13207 .....           22222           .....           44444
13208 11111           .....           33333           .....
13209 .....           22222           .....           44444
13210 @end example
13211
13212
13213 @item interleave_top, 4
13214 Interleave the upper field from odd frames with the lower field from
13215 even frames, generating a frame with unchanged height at half frame rate.
13216
13217 @example
13218  ------> time
13219 Input:
13220 Frame 1         Frame 2         Frame 3         Frame 4
13221
13222 11111<-         22222           33333<-         44444
13223 11111           22222<-         33333           44444<-
13224 11111<-         22222           33333<-         44444
13225 11111           22222<-         33333           44444<-
13226
13227 Output:
13228 11111                           33333
13229 22222                           44444
13230 11111                           33333
13231 22222                           44444
13232 @end example
13233
13234
13235 @item interleave_bottom, 5
13236 Interleave the lower field from odd frames with the upper field from
13237 even frames, generating a frame with unchanged height at half frame rate.
13238
13239 @example
13240  ------> time
13241 Input:
13242 Frame 1         Frame 2         Frame 3         Frame 4
13243
13244 11111           22222<-         33333           44444<-
13245 11111<-         22222           33333<-         44444
13246 11111           22222<-         33333           44444<-
13247 11111<-         22222           33333<-         44444
13248
13249 Output:
13250 22222                           44444
13251 11111                           33333
13252 22222                           44444
13253 11111                           33333
13254 @end example
13255
13256
13257 @item interlacex2, 6
13258 Double frame rate with unchanged height. Frames are inserted each
13259 containing the second temporal field from the previous input frame and
13260 the first temporal field from the next input frame. This mode relies on
13261 the top_field_first flag. Useful for interlaced video displays with no
13262 field synchronisation.
13263
13264 @example
13265  ------> time
13266 Input:
13267 Frame 1         Frame 2         Frame 3         Frame 4
13268
13269 11111           22222           33333           44444
13270  11111           22222           33333           44444
13271 11111           22222           33333           44444
13272  11111           22222           33333           44444
13273
13274 Output:
13275 11111   22222   22222   33333   33333   44444   44444
13276  11111   11111   22222   22222   33333   33333   44444
13277 11111   22222   22222   33333   33333   44444   44444
13278  11111   11111   22222   22222   33333   33333   44444
13279 @end example
13280
13281
13282 @item mergex2, 7
13283 Move odd frames into the upper field, even into the lower field,
13284 generating a double height frame at same frame rate.
13285
13286 @example
13287  ------> time
13288 Input:
13289 Frame 1         Frame 2         Frame 3         Frame 4
13290
13291 11111           22222           33333           44444
13292 11111           22222           33333           44444
13293 11111           22222           33333           44444
13294 11111           22222           33333           44444
13295
13296 Output:
13297 11111           33333           33333           55555
13298 22222           22222           44444           44444
13299 11111           33333           33333           55555
13300 22222           22222           44444           44444
13301 11111           33333           33333           55555
13302 22222           22222           44444           44444
13303 11111           33333           33333           55555
13304 22222           22222           44444           44444
13305 @end example
13306
13307 @end table
13308
13309 Numeric values are deprecated but are accepted for backward
13310 compatibility reasons.
13311
13312 Default mode is @code{merge}.
13313
13314 @item flags
13315 Specify flags influencing the filter process.
13316
13317 Available value for @var{flags} is:
13318
13319 @table @option
13320 @item low_pass_filter, vlfp
13321 Enable vertical low-pass filtering in the filter.
13322 Vertical low-pass filtering is required when creating an interlaced
13323 destination from a progressive source which contains high-frequency
13324 vertical detail. Filtering will reduce interlace 'twitter' and Moire
13325 patterning.
13326
13327 Vertical low-pass filtering can only be enabled for @option{mode}
13328 @var{interleave_top} and @var{interleave_bottom}.
13329
13330 @end table
13331 @end table
13332
13333 @section transpose
13334
13335 Transpose rows with columns in the input video and optionally flip it.
13336
13337 It accepts the following parameters:
13338
13339 @table @option
13340
13341 @item dir
13342 Specify the transposition direction.
13343
13344 Can assume the following values:
13345 @table @samp
13346 @item 0, 4, cclock_flip
13347 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
13348 @example
13349 L.R     L.l
13350 . . ->  . .
13351 l.r     R.r
13352 @end example
13353
13354 @item 1, 5, clock
13355 Rotate by 90 degrees clockwise, that is:
13356 @example
13357 L.R     l.L
13358 . . ->  . .
13359 l.r     r.R
13360 @end example
13361
13362 @item 2, 6, cclock
13363 Rotate by 90 degrees counterclockwise, that is:
13364 @example
13365 L.R     R.r
13366 . . ->  . .
13367 l.r     L.l
13368 @end example
13369
13370 @item 3, 7, clock_flip
13371 Rotate by 90 degrees clockwise and vertically flip, that is:
13372 @example
13373 L.R     r.R
13374 . . ->  . .
13375 l.r     l.L
13376 @end example
13377 @end table
13378
13379 For values between 4-7, the transposition is only done if the input
13380 video geometry is portrait and not landscape. These values are
13381 deprecated, the @code{passthrough} option should be used instead.
13382
13383 Numerical values are deprecated, and should be dropped in favor of
13384 symbolic constants.
13385
13386 @item passthrough
13387 Do not apply the transposition if the input geometry matches the one
13388 specified by the specified value. It accepts the following values:
13389 @table @samp
13390 @item none
13391 Always apply transposition.
13392 @item portrait
13393 Preserve portrait geometry (when @var{height} >= @var{width}).
13394 @item landscape
13395 Preserve landscape geometry (when @var{width} >= @var{height}).
13396 @end table
13397
13398 Default value is @code{none}.
13399 @end table
13400
13401 For example to rotate by 90 degrees clockwise and preserve portrait
13402 layout:
13403 @example
13404 transpose=dir=1:passthrough=portrait
13405 @end example
13406
13407 The command above can also be specified as:
13408 @example
13409 transpose=1:portrait
13410 @end example
13411
13412 @section trim
13413 Trim the input so that the output contains one continuous subpart of the input.
13414
13415 It accepts the following parameters:
13416 @table @option
13417 @item start
13418 Specify the time of the start of the kept section, i.e. the frame with the
13419 timestamp @var{start} will be the first frame in the output.
13420
13421 @item end
13422 Specify the time of the first frame that will be dropped, i.e. the frame
13423 immediately preceding the one with the timestamp @var{end} will be the last
13424 frame in the output.
13425
13426 @item start_pts
13427 This is the same as @var{start}, except this option sets the start timestamp
13428 in timebase units instead of seconds.
13429
13430 @item end_pts
13431 This is the same as @var{end}, except this option sets the end timestamp
13432 in timebase units instead of seconds.
13433
13434 @item duration
13435 The maximum duration of the output in seconds.
13436
13437 @item start_frame
13438 The number of the first frame that should be passed to the output.
13439
13440 @item end_frame
13441 The number of the first frame that should be dropped.
13442 @end table
13443
13444 @option{start}, @option{end}, and @option{duration} are expressed as time
13445 duration specifications; see
13446 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13447 for the accepted syntax.
13448
13449 Note that the first two sets of the start/end options and the @option{duration}
13450 option look at the frame timestamp, while the _frame variants simply count the
13451 frames that pass through the filter. Also note that this filter does not modify
13452 the timestamps. If you wish for the output timestamps to start at zero, insert a
13453 setpts filter after the trim filter.
13454
13455 If multiple start or end options are set, this filter tries to be greedy and
13456 keep all the frames that match at least one of the specified constraints. To keep
13457 only the part that matches all the constraints at once, chain multiple trim
13458 filters.
13459
13460 The defaults are such that all the input is kept. So it is possible to set e.g.
13461 just the end values to keep everything before the specified time.
13462
13463 Examples:
13464 @itemize
13465 @item
13466 Drop everything except the second minute of input:
13467 @example
13468 ffmpeg -i INPUT -vf trim=60:120
13469 @end example
13470
13471 @item
13472 Keep only the first second:
13473 @example
13474 ffmpeg -i INPUT -vf trim=duration=1
13475 @end example
13476
13477 @end itemize
13478
13479
13480 @anchor{unsharp}
13481 @section unsharp
13482
13483 Sharpen or blur the input video.
13484
13485 It accepts the following parameters:
13486
13487 @table @option
13488 @item luma_msize_x, lx
13489 Set the luma matrix horizontal size. It must be an odd integer between
13490 3 and 23. The default value is 5.
13491
13492 @item luma_msize_y, ly
13493 Set the luma matrix vertical size. It must be an odd integer between 3
13494 and 23. The default value is 5.
13495
13496 @item luma_amount, la
13497 Set the luma effect strength. It must be a floating point number, reasonable
13498 values lay between -1.5 and 1.5.
13499
13500 Negative values will blur the input video, while positive values will
13501 sharpen it, a value of zero will disable the effect.
13502
13503 Default value is 1.0.
13504
13505 @item chroma_msize_x, cx
13506 Set the chroma matrix horizontal size. It must be an odd integer
13507 between 3 and 23. The default value is 5.
13508
13509 @item chroma_msize_y, cy
13510 Set the chroma matrix vertical size. It must be an odd integer
13511 between 3 and 23. The default value is 5.
13512
13513 @item chroma_amount, ca
13514 Set the chroma effect strength. It must be a floating point number, reasonable
13515 values lay between -1.5 and 1.5.
13516
13517 Negative values will blur the input video, while positive values will
13518 sharpen it, a value of zero will disable the effect.
13519
13520 Default value is 0.0.
13521
13522 @item opencl
13523 If set to 1, specify using OpenCL capabilities, only available if
13524 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
13525
13526 @end table
13527
13528 All parameters are optional and default to the equivalent of the
13529 string '5:5:1.0:5:5:0.0'.
13530
13531 @subsection Examples
13532
13533 @itemize
13534 @item
13535 Apply strong luma sharpen effect:
13536 @example
13537 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13538 @end example
13539
13540 @item
13541 Apply a strong blur of both luma and chroma parameters:
13542 @example
13543 unsharp=7:7:-2:7:7:-2
13544 @end example
13545 @end itemize
13546
13547 @section uspp
13548
13549 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13550 the image at several (or - in the case of @option{quality} level @code{8} - all)
13551 shifts and average the results.
13552
13553 The way this differs from the behavior of spp is that uspp actually encodes &
13554 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13555 DCT similar to MJPEG.
13556
13557 The filter accepts the following options:
13558
13559 @table @option
13560 @item quality
13561 Set quality. This option defines the number of levels for averaging. It accepts
13562 an integer in the range 0-8. If set to @code{0}, the filter will have no
13563 effect. A value of @code{8} means the higher quality. For each increment of
13564 that value the speed drops by a factor of approximately 2.  Default value is
13565 @code{3}.
13566
13567 @item qp
13568 Force a constant quantization parameter. If not set, the filter will use the QP
13569 from the video stream (if available).
13570 @end table
13571
13572 @section vaguedenoiser
13573
13574 Apply a wavelet based denoiser.
13575
13576 It transforms each frame from the video input into the wavelet domain,
13577 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
13578 the obtained coefficients. It does an inverse wavelet transform after.
13579 Due to wavelet properties, it should give a nice smoothed result, and
13580 reduced noise, without blurring picture features.
13581
13582 This filter accepts the following options:
13583
13584 @table @option
13585 @item threshold
13586 The filtering strength. The higher, the more filtered the video will be.
13587 Hard thresholding can use a higher threshold than soft thresholding
13588 before the video looks overfiltered.
13589
13590 @item method
13591 The filtering method the filter will use.
13592
13593 It accepts the following values:
13594 @table @samp
13595 @item hard
13596 All values under the threshold will be zeroed.
13597
13598 @item soft
13599 All values under the threshold will be zeroed. All values above will be
13600 reduced by the threshold.
13601
13602 @item garrote
13603 Scales or nullifies coefficients - intermediary between (more) soft and
13604 (less) hard thresholding.
13605 @end table
13606
13607 @item nsteps
13608 Number of times, the wavelet will decompose the picture. Picture can't
13609 be decomposed beyond a particular point (typically, 8 for a 640x480
13610 frame - as 2^9 = 512 > 480)
13611
13612 @item percent
13613 Partial of full denoising (limited coefficients shrinking), from 0 to 100.
13614
13615 @item planes
13616 A list of the planes to process. By default all planes are processed.
13617 @end table
13618
13619 @section vectorscope
13620
13621 Display 2 color component values in the two dimensional graph (which is called
13622 a vectorscope).
13623
13624 This filter accepts the following options:
13625
13626 @table @option
13627 @item mode, m
13628 Set vectorscope mode.
13629
13630 It accepts the following values:
13631 @table @samp
13632 @item gray
13633 Gray values are displayed on graph, higher brightness means more pixels have
13634 same component color value on location in graph. This is the default mode.
13635
13636 @item color
13637 Gray values are displayed on graph. Surrounding pixels values which are not
13638 present in video frame are drawn in gradient of 2 color components which are
13639 set by option @code{x} and @code{y}. The 3rd color component is static.
13640
13641 @item color2
13642 Actual color components values present in video frame are displayed on graph.
13643
13644 @item color3
13645 Similar as color2 but higher frequency of same values @code{x} and @code{y}
13646 on graph increases value of another color component, which is luminance by
13647 default values of @code{x} and @code{y}.
13648
13649 @item color4
13650 Actual colors present in video frame are displayed on graph. If two different
13651 colors map to same position on graph then color with higher value of component
13652 not present in graph is picked.
13653
13654 @item color5
13655 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
13656 component picked from radial gradient.
13657 @end table
13658
13659 @item x
13660 Set which color component will be represented on X-axis. Default is @code{1}.
13661
13662 @item y
13663 Set which color component will be represented on Y-axis. Default is @code{2}.
13664
13665 @item intensity, i
13666 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
13667 of color component which represents frequency of (X, Y) location in graph.
13668
13669 @item envelope, e
13670 @table @samp
13671 @item none
13672 No envelope, this is default.
13673
13674 @item instant
13675 Instant envelope, even darkest single pixel will be clearly highlighted.
13676
13677 @item peak
13678 Hold maximum and minimum values presented in graph over time. This way you
13679 can still spot out of range values without constantly looking at vectorscope.
13680
13681 @item peak+instant
13682 Peak and instant envelope combined together.
13683 @end table
13684
13685 @item graticule, g
13686 Set what kind of graticule to draw.
13687 @table @samp
13688 @item none
13689 @item green
13690 @item color
13691 @end table
13692
13693 @item opacity, o
13694 Set graticule opacity.
13695
13696 @item flags, f
13697 Set graticule flags.
13698
13699 @table @samp
13700 @item white
13701 Draw graticule for white point.
13702
13703 @item black
13704 Draw graticule for black point.
13705
13706 @item name
13707 Draw color points short names.
13708 @end table
13709
13710 @item bgopacity, b
13711 Set background opacity.
13712
13713 @item lthreshold, l
13714 Set low threshold for color component not represented on X or Y axis.
13715 Values lower than this value will be ignored. Default is 0.
13716 Note this value is multiplied with actual max possible value one pixel component
13717 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13718 is 0.1 * 255 = 25.
13719
13720 @item hthreshold, h
13721 Set high threshold for color component not represented on X or Y axis.
13722 Values higher than this value will be ignored. Default is 1.
13723 Note this value is multiplied with actual max possible value one pixel component
13724 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13725 is 0.9 * 255 = 230.
13726
13727 @item colorspace, c
13728 Set what kind of colorspace to use when drawing graticule.
13729 @table @samp
13730 @item auto
13731 @item 601
13732 @item 709
13733 @end table
13734 Default is auto.
13735 @end table
13736
13737 @anchor{vidstabdetect}
13738 @section vidstabdetect
13739
13740 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
13741 @ref{vidstabtransform} for pass 2.
13742
13743 This filter generates a file with relative translation and rotation
13744 transform information about subsequent frames, which is then used by
13745 the @ref{vidstabtransform} filter.
13746
13747 To enable compilation of this filter you need to configure FFmpeg with
13748 @code{--enable-libvidstab}.
13749
13750 This filter accepts the following options:
13751
13752 @table @option
13753 @item result
13754 Set the path to the file used to write the transforms information.
13755 Default value is @file{transforms.trf}.
13756
13757 @item shakiness
13758 Set how shaky the video is and how quick the camera is. It accepts an
13759 integer in the range 1-10, a value of 1 means little shakiness, a
13760 value of 10 means strong shakiness. Default value is 5.
13761
13762 @item accuracy
13763 Set the accuracy of the detection process. It must be a value in the
13764 range 1-15. A value of 1 means low accuracy, a value of 15 means high
13765 accuracy. Default value is 15.
13766
13767 @item stepsize
13768 Set stepsize of the search process. The region around minimum is
13769 scanned with 1 pixel resolution. Default value is 6.
13770
13771 @item mincontrast
13772 Set minimum contrast. Below this value a local measurement field is
13773 discarded. Must be a floating point value in the range 0-1. Default
13774 value is 0.3.
13775
13776 @item tripod
13777 Set reference frame number for tripod mode.
13778
13779 If enabled, the motion of the frames is compared to a reference frame
13780 in the filtered stream, identified by the specified number. The idea
13781 is to compensate all movements in a more-or-less static scene and keep
13782 the camera view absolutely still.
13783
13784 If set to 0, it is disabled. The frames are counted starting from 1.
13785
13786 @item show
13787 Show fields and transforms in the resulting frames. It accepts an
13788 integer in the range 0-2. Default value is 0, which disables any
13789 visualization.
13790 @end table
13791
13792 @subsection Examples
13793
13794 @itemize
13795 @item
13796 Use default values:
13797 @example
13798 vidstabdetect
13799 @end example
13800
13801 @item
13802 Analyze strongly shaky movie and put the results in file
13803 @file{mytransforms.trf}:
13804 @example
13805 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
13806 @end example
13807
13808 @item
13809 Visualize the result of internal transformations in the resulting
13810 video:
13811 @example
13812 vidstabdetect=show=1
13813 @end example
13814
13815 @item
13816 Analyze a video with medium shakiness using @command{ffmpeg}:
13817 @example
13818 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
13819 @end example
13820 @end itemize
13821
13822 @anchor{vidstabtransform}
13823 @section vidstabtransform
13824
13825 Video stabilization/deshaking: pass 2 of 2,
13826 see @ref{vidstabdetect} for pass 1.
13827
13828 Read a file with transform information for each frame and
13829 apply/compensate them. Together with the @ref{vidstabdetect}
13830 filter this can be used to deshake videos. See also
13831 @url{http://public.hronopik.de/vid.stab}. It is important to also use
13832 the @ref{unsharp} filter, see below.
13833
13834 To enable compilation of this filter you need to configure FFmpeg with
13835 @code{--enable-libvidstab}.
13836
13837 @subsection Options
13838
13839 @table @option
13840 @item input
13841 Set path to the file used to read the transforms. Default value is
13842 @file{transforms.trf}.
13843
13844 @item smoothing
13845 Set the number of frames (value*2 + 1) used for lowpass filtering the
13846 camera movements. Default value is 10.
13847
13848 For example a number of 10 means that 21 frames are used (10 in the
13849 past and 10 in the future) to smoothen the motion in the video. A
13850 larger value leads to a smoother video, but limits the acceleration of
13851 the camera (pan/tilt movements). 0 is a special case where a static
13852 camera is simulated.
13853
13854 @item optalgo
13855 Set the camera path optimization algorithm.
13856
13857 Accepted values are:
13858 @table @samp
13859 @item gauss
13860 gaussian kernel low-pass filter on camera motion (default)
13861 @item avg
13862 averaging on transformations
13863 @end table
13864
13865 @item maxshift
13866 Set maximal number of pixels to translate frames. Default value is -1,
13867 meaning no limit.
13868
13869 @item maxangle
13870 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
13871 value is -1, meaning no limit.
13872
13873 @item crop
13874 Specify how to deal with borders that may be visible due to movement
13875 compensation.
13876
13877 Available values are:
13878 @table @samp
13879 @item keep
13880 keep image information from previous frame (default)
13881 @item black
13882 fill the border black
13883 @end table
13884
13885 @item invert
13886 Invert transforms if set to 1. Default value is 0.
13887
13888 @item relative
13889 Consider transforms as relative to previous frame if set to 1,
13890 absolute if set to 0. Default value is 0.
13891
13892 @item zoom
13893 Set percentage to zoom. A positive value will result in a zoom-in
13894 effect, a negative value in a zoom-out effect. Default value is 0 (no
13895 zoom).
13896
13897 @item optzoom
13898 Set optimal zooming to avoid borders.
13899
13900 Accepted values are:
13901 @table @samp
13902 @item 0
13903 disabled
13904 @item 1
13905 optimal static zoom value is determined (only very strong movements
13906 will lead to visible borders) (default)
13907 @item 2
13908 optimal adaptive zoom value is determined (no borders will be
13909 visible), see @option{zoomspeed}
13910 @end table
13911
13912 Note that the value given at zoom is added to the one calculated here.
13913
13914 @item zoomspeed
13915 Set percent to zoom maximally each frame (enabled when
13916 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
13917 0.25.
13918
13919 @item interpol
13920 Specify type of interpolation.
13921
13922 Available values are:
13923 @table @samp
13924 @item no
13925 no interpolation
13926 @item linear
13927 linear only horizontal
13928 @item bilinear
13929 linear in both directions (default)
13930 @item bicubic
13931 cubic in both directions (slow)
13932 @end table
13933
13934 @item tripod
13935 Enable virtual tripod mode if set to 1, which is equivalent to
13936 @code{relative=0:smoothing=0}. Default value is 0.
13937
13938 Use also @code{tripod} option of @ref{vidstabdetect}.
13939
13940 @item debug
13941 Increase log verbosity if set to 1. Also the detected global motions
13942 are written to the temporary file @file{global_motions.trf}. Default
13943 value is 0.
13944 @end table
13945
13946 @subsection Examples
13947
13948 @itemize
13949 @item
13950 Use @command{ffmpeg} for a typical stabilization with default values:
13951 @example
13952 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
13953 @end example
13954
13955 Note the use of the @ref{unsharp} filter which is always recommended.
13956
13957 @item
13958 Zoom in a bit more and load transform data from a given file:
13959 @example
13960 vidstabtransform=zoom=5:input="mytransforms.trf"
13961 @end example
13962
13963 @item
13964 Smoothen the video even more:
13965 @example
13966 vidstabtransform=smoothing=30
13967 @end example
13968 @end itemize
13969
13970 @section vflip
13971
13972 Flip the input video vertically.
13973
13974 For example, to vertically flip a video with @command{ffmpeg}:
13975 @example
13976 ffmpeg -i in.avi -vf "vflip" out.avi
13977 @end example
13978
13979 @anchor{vignette}
13980 @section vignette
13981
13982 Make or reverse a natural vignetting effect.
13983
13984 The filter accepts the following options:
13985
13986 @table @option
13987 @item angle, a
13988 Set lens angle expression as a number of radians.
13989
13990 The value is clipped in the @code{[0,PI/2]} range.
13991
13992 Default value: @code{"PI/5"}
13993
13994 @item x0
13995 @item y0
13996 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
13997 by default.
13998
13999 @item mode
14000 Set forward/backward mode.
14001
14002 Available modes are:
14003 @table @samp
14004 @item forward
14005 The larger the distance from the central point, the darker the image becomes.
14006
14007 @item backward
14008 The larger the distance from the central point, the brighter the image becomes.
14009 This can be used to reverse a vignette effect, though there is no automatic
14010 detection to extract the lens @option{angle} and other settings (yet). It can
14011 also be used to create a burning effect.
14012 @end table
14013
14014 Default value is @samp{forward}.
14015
14016 @item eval
14017 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
14018
14019 It accepts the following values:
14020 @table @samp
14021 @item init
14022 Evaluate expressions only once during the filter initialization.
14023
14024 @item frame
14025 Evaluate expressions for each incoming frame. This is way slower than the
14026 @samp{init} mode since it requires all the scalers to be re-computed, but it
14027 allows advanced dynamic expressions.
14028 @end table
14029
14030 Default value is @samp{init}.
14031
14032 @item dither
14033 Set dithering to reduce the circular banding effects. Default is @code{1}
14034 (enabled).
14035
14036 @item aspect
14037 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
14038 Setting this value to the SAR of the input will make a rectangular vignetting
14039 following the dimensions of the video.
14040
14041 Default is @code{1/1}.
14042 @end table
14043
14044 @subsection Expressions
14045
14046 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
14047 following parameters.
14048
14049 @table @option
14050 @item w
14051 @item h
14052 input width and height
14053
14054 @item n
14055 the number of input frame, starting from 0
14056
14057 @item pts
14058 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
14059 @var{TB} units, NAN if undefined
14060
14061 @item r
14062 frame rate of the input video, NAN if the input frame rate is unknown
14063
14064 @item t
14065 the PTS (Presentation TimeStamp) of the filtered video frame,
14066 expressed in seconds, NAN if undefined
14067
14068 @item tb
14069 time base of the input video
14070 @end table
14071
14072
14073 @subsection Examples
14074
14075 @itemize
14076 @item
14077 Apply simple strong vignetting effect:
14078 @example
14079 vignette=PI/4
14080 @end example
14081
14082 @item
14083 Make a flickering vignetting:
14084 @example
14085 vignette='PI/4+random(1)*PI/50':eval=frame
14086 @end example
14087
14088 @end itemize
14089
14090 @section vstack
14091 Stack input videos vertically.
14092
14093 All streams must be of same pixel format and of same width.
14094
14095 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
14096 to create same output.
14097
14098 The filter accept the following option:
14099
14100 @table @option
14101 @item inputs
14102 Set number of input streams. Default is 2.
14103
14104 @item shortest
14105 If set to 1, force the output to terminate when the shortest input
14106 terminates. Default value is 0.
14107 @end table
14108
14109 @section w3fdif
14110
14111 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
14112 Deinterlacing Filter").
14113
14114 Based on the process described by Martin Weston for BBC R&D, and
14115 implemented based on the de-interlace algorithm written by Jim
14116 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
14117 uses filter coefficients calculated by BBC R&D.
14118
14119 There are two sets of filter coefficients, so called "simple":
14120 and "complex". Which set of filter coefficients is used can
14121 be set by passing an optional parameter:
14122
14123 @table @option
14124 @item filter
14125 Set the interlacing filter coefficients. Accepts one of the following values:
14126
14127 @table @samp
14128 @item simple
14129 Simple filter coefficient set.
14130 @item complex
14131 More-complex filter coefficient set.
14132 @end table
14133 Default value is @samp{complex}.
14134
14135 @item deint
14136 Specify which frames to deinterlace. Accept one of the following values:
14137
14138 @table @samp
14139 @item all
14140 Deinterlace all frames,
14141 @item interlaced
14142 Only deinterlace frames marked as interlaced.
14143 @end table
14144
14145 Default value is @samp{all}.
14146 @end table
14147
14148 @section waveform
14149 Video waveform monitor.
14150
14151 The waveform monitor plots color component intensity. By default luminance
14152 only. Each column of the waveform corresponds to a column of pixels in the
14153 source video.
14154
14155 It accepts the following options:
14156
14157 @table @option
14158 @item mode, m
14159 Can be either @code{row}, or @code{column}. Default is @code{column}.
14160 In row mode, the graph on the left side represents color component value 0 and
14161 the right side represents value = 255. In column mode, the top side represents
14162 color component value = 0 and bottom side represents value = 255.
14163
14164 @item intensity, i
14165 Set intensity. Smaller values are useful to find out how many values of the same
14166 luminance are distributed across input rows/columns.
14167 Default value is @code{0.04}. Allowed range is [0, 1].
14168
14169 @item mirror, r
14170 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
14171 In mirrored mode, higher values will be represented on the left
14172 side for @code{row} mode and at the top for @code{column} mode. Default is
14173 @code{1} (mirrored).
14174
14175 @item display, d
14176 Set display mode.
14177 It accepts the following values:
14178 @table @samp
14179 @item overlay
14180 Presents information identical to that in the @code{parade}, except
14181 that the graphs representing color components are superimposed directly
14182 over one another.
14183
14184 This display mode makes it easier to spot relative differences or similarities
14185 in overlapping areas of the color components that are supposed to be identical,
14186 such as neutral whites, grays, or blacks.
14187
14188 @item stack
14189 Display separate graph for the color components side by side in
14190 @code{row} mode or one below the other in @code{column} mode.
14191
14192 @item parade
14193 Display separate graph for the color components side by side in
14194 @code{column} mode or one below the other in @code{row} mode.
14195
14196 Using this display mode makes it easy to spot color casts in the highlights
14197 and shadows of an image, by comparing the contours of the top and the bottom
14198 graphs of each waveform. Since whites, grays, and blacks are characterized
14199 by exactly equal amounts of red, green, and blue, neutral areas of the picture
14200 should display three waveforms of roughly equal width/height. If not, the
14201 correction is easy to perform by making level adjustments the three waveforms.
14202 @end table
14203 Default is @code{stack}.
14204
14205 @item components, c
14206 Set which color components to display. Default is 1, which means only luminance
14207 or red color component if input is in RGB colorspace. If is set for example to
14208 7 it will display all 3 (if) available color components.
14209
14210 @item envelope, e
14211 @table @samp
14212 @item none
14213 No envelope, this is default.
14214
14215 @item instant
14216 Instant envelope, minimum and maximum values presented in graph will be easily
14217 visible even with small @code{step} value.
14218
14219 @item peak
14220 Hold minimum and maximum values presented in graph across time. This way you
14221 can still spot out of range values without constantly looking at waveforms.
14222
14223 @item peak+instant
14224 Peak and instant envelope combined together.
14225 @end table
14226
14227 @item filter, f
14228 @table @samp
14229 @item lowpass
14230 No filtering, this is default.
14231
14232 @item flat
14233 Luma and chroma combined together.
14234
14235 @item aflat
14236 Similar as above, but shows difference between blue and red chroma.
14237
14238 @item chroma
14239 Displays only chroma.
14240
14241 @item color
14242 Displays actual color value on waveform.
14243
14244 @item acolor
14245 Similar as above, but with luma showing frequency of chroma values.
14246 @end table
14247
14248 @item graticule, g
14249 Set which graticule to display.
14250
14251 @table @samp
14252 @item none
14253 Do not display graticule.
14254
14255 @item green
14256 Display green graticule showing legal broadcast ranges.
14257 @end table
14258
14259 @item opacity, o
14260 Set graticule opacity.
14261
14262 @item flags, fl
14263 Set graticule flags.
14264
14265 @table @samp
14266 @item numbers
14267 Draw numbers above lines. By default enabled.
14268
14269 @item dots
14270 Draw dots instead of lines.
14271 @end table
14272
14273 @item scale, s
14274 Set scale used for displaying graticule.
14275
14276 @table @samp
14277 @item digital
14278 @item millivolts
14279 @item ire
14280 @end table
14281 Default is digital.
14282
14283 @item bgopacity, b
14284 Set background opacity.
14285 @end table
14286
14287 @section weave
14288
14289 The @code{weave} takes a field-based video input and join
14290 each two sequential fields into single frame, producing a new double
14291 height clip with half the frame rate and half the frame count.
14292
14293 It accepts the following option:
14294
14295 @table @option
14296 @item first_field
14297 Set first field. Available values are:
14298
14299 @table @samp
14300 @item top, t
14301 Set the frame as top-field-first.
14302
14303 @item bottom, b
14304 Set the frame as bottom-field-first.
14305 @end table
14306 @end table
14307
14308 @subsection Examples
14309
14310 @itemize
14311 @item
14312 Interlace video using @ref{select} and @ref{separatefields} filter:
14313 @example
14314 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
14315 @end example
14316 @end itemize
14317
14318 @section xbr
14319 Apply the xBR high-quality magnification filter which is designed for pixel
14320 art. It follows a set of edge-detection rules, see
14321 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
14322
14323 It accepts the following option:
14324
14325 @table @option
14326 @item n
14327 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
14328 @code{3xBR} and @code{4} for @code{4xBR}.
14329 Default is @code{3}.
14330 @end table
14331
14332 @anchor{yadif}
14333 @section yadif
14334
14335 Deinterlace the input video ("yadif" means "yet another deinterlacing
14336 filter").
14337
14338 It accepts the following parameters:
14339
14340
14341 @table @option
14342
14343 @item mode
14344 The interlacing mode to adopt. It accepts one of the following values:
14345
14346 @table @option
14347 @item 0, send_frame
14348 Output one frame for each frame.
14349 @item 1, send_field
14350 Output one frame for each field.
14351 @item 2, send_frame_nospatial
14352 Like @code{send_frame}, but it skips the spatial interlacing check.
14353 @item 3, send_field_nospatial
14354 Like @code{send_field}, but it skips the spatial interlacing check.
14355 @end table
14356
14357 The default value is @code{send_frame}.
14358
14359 @item parity
14360 The picture field parity assumed for the input interlaced video. It accepts one
14361 of the following values:
14362
14363 @table @option
14364 @item 0, tff
14365 Assume the top field is first.
14366 @item 1, bff
14367 Assume the bottom field is first.
14368 @item -1, auto
14369 Enable automatic detection of field parity.
14370 @end table
14371
14372 The default value is @code{auto}.
14373 If the interlacing is unknown or the decoder does not export this information,
14374 top field first will be assumed.
14375
14376 @item deint
14377 Specify which frames to deinterlace. Accept one of the following
14378 values:
14379
14380 @table @option
14381 @item 0, all
14382 Deinterlace all frames.
14383 @item 1, interlaced
14384 Only deinterlace frames marked as interlaced.
14385 @end table
14386
14387 The default value is @code{all}.
14388 @end table
14389
14390 @section zoompan
14391
14392 Apply Zoom & Pan effect.
14393
14394 This filter accepts the following options:
14395
14396 @table @option
14397 @item zoom, z
14398 Set the zoom expression. Default is 1.
14399
14400 @item x
14401 @item y
14402 Set the x and y expression. Default is 0.
14403
14404 @item d
14405 Set the duration expression in number of frames.
14406 This sets for how many number of frames effect will last for
14407 single input image.
14408
14409 @item s
14410 Set the output image size, default is 'hd720'.
14411
14412 @item fps
14413 Set the output frame rate, default is '25'.
14414 @end table
14415
14416 Each expression can contain the following constants:
14417
14418 @table @option
14419 @item in_w, iw
14420 Input width.
14421
14422 @item in_h, ih
14423 Input height.
14424
14425 @item out_w, ow
14426 Output width.
14427
14428 @item out_h, oh
14429 Output height.
14430
14431 @item in
14432 Input frame count.
14433
14434 @item on
14435 Output frame count.
14436
14437 @item x
14438 @item y
14439 Last calculated 'x' and 'y' position from 'x' and 'y' expression
14440 for current input frame.
14441
14442 @item px
14443 @item py
14444 'x' and 'y' of last output frame of previous input frame or 0 when there was
14445 not yet such frame (first input frame).
14446
14447 @item zoom
14448 Last calculated zoom from 'z' expression for current input frame.
14449
14450 @item pzoom
14451 Last calculated zoom of last output frame of previous input frame.
14452
14453 @item duration
14454 Number of output frames for current input frame. Calculated from 'd' expression
14455 for each input frame.
14456
14457 @item pduration
14458 number of output frames created for previous input frame
14459
14460 @item a
14461 Rational number: input width / input height
14462
14463 @item sar
14464 sample aspect ratio
14465
14466 @item dar
14467 display aspect ratio
14468
14469 @end table
14470
14471 @subsection Examples
14472
14473 @itemize
14474 @item
14475 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
14476 @example
14477 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
14478 @end example
14479
14480 @item
14481 Zoom-in up to 1.5 and pan always at center of picture:
14482 @example
14483 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14484 @end example
14485
14486 @item
14487 Same as above but without pausing:
14488 @example
14489 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14490 @end example
14491 @end itemize
14492
14493 @section zscale
14494 Scale (resize) the input video, using the z.lib library:
14495 https://github.com/sekrit-twc/zimg.
14496
14497 The zscale filter forces the output display aspect ratio to be the same
14498 as the input, by changing the output sample aspect ratio.
14499
14500 If the input image format is different from the format requested by
14501 the next filter, the zscale filter will convert the input to the
14502 requested format.
14503
14504 @subsection Options
14505 The filter accepts the following options.
14506
14507 @table @option
14508 @item width, w
14509 @item height, h
14510 Set the output video dimension expression. Default value is the input
14511 dimension.
14512
14513 If the @var{width} or @var{w} is 0, the input width is used for the output.
14514 If the @var{height} or @var{h} is 0, the input height is used for the output.
14515
14516 If one of the values is -1, the zscale filter will use a value that
14517 maintains the aspect ratio of the input image, calculated from the
14518 other specified dimension. If both of them are -1, the input size is
14519 used
14520
14521 If one of the values is -n with n > 1, the zscale filter will also use a value
14522 that maintains the aspect ratio of the input image, calculated from the other
14523 specified dimension. After that it will, however, make sure that the calculated
14524 dimension is divisible by n and adjust the value if necessary.
14525
14526 See below for the list of accepted constants for use in the dimension
14527 expression.
14528
14529 @item size, s
14530 Set the video size. For the syntax of this option, check the
14531 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14532
14533 @item dither, d
14534 Set the dither type.
14535
14536 Possible values are:
14537 @table @var
14538 @item none
14539 @item ordered
14540 @item random
14541 @item error_diffusion
14542 @end table
14543
14544 Default is none.
14545
14546 @item filter, f
14547 Set the resize filter type.
14548
14549 Possible values are:
14550 @table @var
14551 @item point
14552 @item bilinear
14553 @item bicubic
14554 @item spline16
14555 @item spline36
14556 @item lanczos
14557 @end table
14558
14559 Default is bilinear.
14560
14561 @item range, r
14562 Set the color range.
14563
14564 Possible values are:
14565 @table @var
14566 @item input
14567 @item limited
14568 @item full
14569 @end table
14570
14571 Default is same as input.
14572
14573 @item primaries, p
14574 Set the color primaries.
14575
14576 Possible values are:
14577 @table @var
14578 @item input
14579 @item 709
14580 @item unspecified
14581 @item 170m
14582 @item 240m
14583 @item 2020
14584 @end table
14585
14586 Default is same as input.
14587
14588 @item transfer, t
14589 Set the transfer characteristics.
14590
14591 Possible values are:
14592 @table @var
14593 @item input
14594 @item 709
14595 @item unspecified
14596 @item 601
14597 @item linear
14598 @item 2020_10
14599 @item 2020_12
14600 @end table
14601
14602 Default is same as input.
14603
14604 @item matrix, m
14605 Set the colorspace matrix.
14606
14607 Possible value are:
14608 @table @var
14609 @item input
14610 @item 709
14611 @item unspecified
14612 @item 470bg
14613 @item 170m
14614 @item 2020_ncl
14615 @item 2020_cl
14616 @end table
14617
14618 Default is same as input.
14619
14620 @item rangein, rin
14621 Set the input color range.
14622
14623 Possible values are:
14624 @table @var
14625 @item input
14626 @item limited
14627 @item full
14628 @end table
14629
14630 Default is same as input.
14631
14632 @item primariesin, pin
14633 Set the input color primaries.
14634
14635 Possible values are:
14636 @table @var
14637 @item input
14638 @item 709
14639 @item unspecified
14640 @item 170m
14641 @item 240m
14642 @item 2020
14643 @end table
14644
14645 Default is same as input.
14646
14647 @item transferin, tin
14648 Set the input transfer characteristics.
14649
14650 Possible values are:
14651 @table @var
14652 @item input
14653 @item 709
14654 @item unspecified
14655 @item 601
14656 @item linear
14657 @item 2020_10
14658 @item 2020_12
14659 @end table
14660
14661 Default is same as input.
14662
14663 @item matrixin, min
14664 Set the input colorspace matrix.
14665
14666 Possible value are:
14667 @table @var
14668 @item input
14669 @item 709
14670 @item unspecified
14671 @item 470bg
14672 @item 170m
14673 @item 2020_ncl
14674 @item 2020_cl
14675 @end table
14676
14677 @item chromal, c
14678 Set the output chroma location.
14679
14680 Possible values are:
14681 @table @var
14682 @item input
14683 @item left
14684 @item center
14685 @item topleft
14686 @item top
14687 @item bottomleft
14688 @item bottom
14689 @end table
14690
14691 @item chromalin, cin
14692 Set the input chroma location.
14693
14694 Possible values are:
14695 @table @var
14696 @item input
14697 @item left
14698 @item center
14699 @item topleft
14700 @item top
14701 @item bottomleft
14702 @item bottom
14703 @end table
14704 @end table
14705
14706 The values of the @option{w} and @option{h} options are expressions
14707 containing the following constants:
14708
14709 @table @var
14710 @item in_w
14711 @item in_h
14712 The input width and height
14713
14714 @item iw
14715 @item ih
14716 These are the same as @var{in_w} and @var{in_h}.
14717
14718 @item out_w
14719 @item out_h
14720 The output (scaled) width and height
14721
14722 @item ow
14723 @item oh
14724 These are the same as @var{out_w} and @var{out_h}
14725
14726 @item a
14727 The same as @var{iw} / @var{ih}
14728
14729 @item sar
14730 input sample aspect ratio
14731
14732 @item dar
14733 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14734
14735 @item hsub
14736 @item vsub
14737 horizontal and vertical input chroma subsample values. For example for the
14738 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14739
14740 @item ohsub
14741 @item ovsub
14742 horizontal and vertical output chroma subsample values. For example for the
14743 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14744 @end table
14745
14746 @table @option
14747 @end table
14748
14749 @c man end VIDEO FILTERS
14750
14751 @chapter Video Sources
14752 @c man begin VIDEO SOURCES
14753
14754 Below is a description of the currently available video sources.
14755
14756 @section buffer
14757
14758 Buffer video frames, and make them available to the filter chain.
14759
14760 This source is mainly intended for a programmatic use, in particular
14761 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
14762
14763 It accepts the following parameters:
14764
14765 @table @option
14766
14767 @item video_size
14768 Specify the size (width and height) of the buffered video frames. For the
14769 syntax of this option, check the
14770 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14771
14772 @item width
14773 The input video width.
14774
14775 @item height
14776 The input video height.
14777
14778 @item pix_fmt
14779 A string representing the pixel format of the buffered video frames.
14780 It may be a number corresponding to a pixel format, or a pixel format
14781 name.
14782
14783 @item time_base
14784 Specify the timebase assumed by the timestamps of the buffered frames.
14785
14786 @item frame_rate
14787 Specify the frame rate expected for the video stream.
14788
14789 @item pixel_aspect, sar
14790 The sample (pixel) aspect ratio of the input video.
14791
14792 @item sws_param
14793 Specify the optional parameters to be used for the scale filter which
14794 is automatically inserted when an input change is detected in the
14795 input size or format.
14796
14797 @item hw_frames_ctx
14798 When using a hardware pixel format, this should be a reference to an
14799 AVHWFramesContext describing input frames.
14800 @end table
14801
14802 For example:
14803 @example
14804 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
14805 @end example
14806
14807 will instruct the source to accept video frames with size 320x240 and
14808 with format "yuv410p", assuming 1/24 as the timestamps timebase and
14809 square pixels (1:1 sample aspect ratio).
14810 Since the pixel format with name "yuv410p" corresponds to the number 6
14811 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
14812 this example corresponds to:
14813 @example
14814 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
14815 @end example
14816
14817 Alternatively, the options can be specified as a flat string, but this
14818 syntax is deprecated:
14819
14820 @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}]
14821
14822 @section cellauto
14823
14824 Create a pattern generated by an elementary cellular automaton.
14825
14826 The initial state of the cellular automaton can be defined through the
14827 @option{filename} and @option{pattern} options. If such options are
14828 not specified an initial state is created randomly.
14829
14830 At each new frame a new row in the video is filled with the result of
14831 the cellular automaton next generation. The behavior when the whole
14832 frame is filled is defined by the @option{scroll} option.
14833
14834 This source accepts the following options:
14835
14836 @table @option
14837 @item filename, f
14838 Read the initial cellular automaton state, i.e. the starting row, from
14839 the specified file.
14840 In the file, each non-whitespace character is considered an alive
14841 cell, a newline will terminate the row, and further characters in the
14842 file will be ignored.
14843
14844 @item pattern, p
14845 Read the initial cellular automaton state, i.e. the starting row, from
14846 the specified string.
14847
14848 Each non-whitespace character in the string is considered an alive
14849 cell, a newline will terminate the row, and further characters in the
14850 string will be ignored.
14851
14852 @item rate, r
14853 Set the video rate, that is the number of frames generated per second.
14854 Default is 25.
14855
14856 @item random_fill_ratio, ratio
14857 Set the random fill ratio for the initial cellular automaton row. It
14858 is a floating point number value ranging from 0 to 1, defaults to
14859 1/PHI.
14860
14861 This option is ignored when a file or a pattern is specified.
14862
14863 @item random_seed, seed
14864 Set the seed for filling randomly the initial row, must be an integer
14865 included between 0 and UINT32_MAX. If not specified, or if explicitly
14866 set to -1, the filter will try to use a good random seed on a best
14867 effort basis.
14868
14869 @item rule
14870 Set the cellular automaton rule, it is a number ranging from 0 to 255.
14871 Default value is 110.
14872
14873 @item size, s
14874 Set the size of the output video. For the syntax of this option, check the
14875 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14876
14877 If @option{filename} or @option{pattern} is specified, the size is set
14878 by default to the width of the specified initial state row, and the
14879 height is set to @var{width} * PHI.
14880
14881 If @option{size} is set, it must contain the width of the specified
14882 pattern string, and the specified pattern will be centered in the
14883 larger row.
14884
14885 If a filename or a pattern string is not specified, the size value
14886 defaults to "320x518" (used for a randomly generated initial state).
14887
14888 @item scroll
14889 If set to 1, scroll the output upward when all the rows in the output
14890 have been already filled. If set to 0, the new generated row will be
14891 written over the top row just after the bottom row is filled.
14892 Defaults to 1.
14893
14894 @item start_full, full
14895 If set to 1, completely fill the output with generated rows before
14896 outputting the first frame.
14897 This is the default behavior, for disabling set the value to 0.
14898
14899 @item stitch
14900 If set to 1, stitch the left and right row edges together.
14901 This is the default behavior, for disabling set the value to 0.
14902 @end table
14903
14904 @subsection Examples
14905
14906 @itemize
14907 @item
14908 Read the initial state from @file{pattern}, and specify an output of
14909 size 200x400.
14910 @example
14911 cellauto=f=pattern:s=200x400
14912 @end example
14913
14914 @item
14915 Generate a random initial row with a width of 200 cells, with a fill
14916 ratio of 2/3:
14917 @example
14918 cellauto=ratio=2/3:s=200x200
14919 @end example
14920
14921 @item
14922 Create a pattern generated by rule 18 starting by a single alive cell
14923 centered on an initial row with width 100:
14924 @example
14925 cellauto=p=@@:s=100x400:full=0:rule=18
14926 @end example
14927
14928 @item
14929 Specify a more elaborated initial pattern:
14930 @example
14931 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
14932 @end example
14933
14934 @end itemize
14935
14936 @anchor{coreimagesrc}
14937 @section coreimagesrc
14938 Video source generated on GPU using Apple's CoreImage API on OSX.
14939
14940 This video source is a specialized version of the @ref{coreimage} video filter.
14941 Use a core image generator at the beginning of the applied filterchain to
14942 generate the content.
14943
14944 The coreimagesrc video source accepts the following options:
14945 @table @option
14946 @item list_generators
14947 List all available generators along with all their respective options as well as
14948 possible minimum and maximum values along with the default values.
14949 @example
14950 list_generators=true
14951 @end example
14952
14953 @item size, s
14954 Specify the size of the sourced video. For the syntax of this option, check the
14955 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14956 The default value is @code{320x240}.
14957
14958 @item rate, r
14959 Specify the frame rate of the sourced video, as the number of frames
14960 generated per second. It has to be a string in the format
14961 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14962 number or a valid video frame rate abbreviation. The default value is
14963 "25".
14964
14965 @item sar
14966 Set the sample aspect ratio of the sourced video.
14967
14968 @item duration, d
14969 Set the duration of the sourced video. See
14970 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14971 for the accepted syntax.
14972
14973 If not specified, or the expressed duration is negative, the video is
14974 supposed to be generated forever.
14975 @end table
14976
14977 Additionally, all options of the @ref{coreimage} video filter are accepted.
14978 A complete filterchain can be used for further processing of the
14979 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
14980 and examples for details.
14981
14982 @subsection Examples
14983
14984 @itemize
14985
14986 @item
14987 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
14988 given as complete and escaped command-line for Apple's standard bash shell:
14989 @example
14990 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
14991 @end example
14992 This example is equivalent to the QRCode example of @ref{coreimage} without the
14993 need for a nullsrc video source.
14994 @end itemize
14995
14996
14997 @section mandelbrot
14998
14999 Generate a Mandelbrot set fractal, and progressively zoom towards the
15000 point specified with @var{start_x} and @var{start_y}.
15001
15002 This source accepts the following options:
15003
15004 @table @option
15005
15006 @item end_pts
15007 Set the terminal pts value. Default value is 400.
15008
15009 @item end_scale
15010 Set the terminal scale value.
15011 Must be a floating point value. Default value is 0.3.
15012
15013 @item inner
15014 Set the inner coloring mode, that is the algorithm used to draw the
15015 Mandelbrot fractal internal region.
15016
15017 It shall assume one of the following values:
15018 @table @option
15019 @item black
15020 Set black mode.
15021 @item convergence
15022 Show time until convergence.
15023 @item mincol
15024 Set color based on point closest to the origin of the iterations.
15025 @item period
15026 Set period mode.
15027 @end table
15028
15029 Default value is @var{mincol}.
15030
15031 @item bailout
15032 Set the bailout value. Default value is 10.0.
15033
15034 @item maxiter
15035 Set the maximum of iterations performed by the rendering
15036 algorithm. Default value is 7189.
15037
15038 @item outer
15039 Set outer coloring mode.
15040 It shall assume one of following values:
15041 @table @option
15042 @item iteration_count
15043 Set iteration cound mode.
15044 @item normalized_iteration_count
15045 set normalized iteration count mode.
15046 @end table
15047 Default value is @var{normalized_iteration_count}.
15048
15049 @item rate, r
15050 Set frame rate, expressed as number of frames per second. Default
15051 value is "25".
15052
15053 @item size, s
15054 Set frame size. For the syntax of this option, check the "Video
15055 size" section in the ffmpeg-utils manual. Default value is "640x480".
15056
15057 @item start_scale
15058 Set the initial scale value. Default value is 3.0.
15059
15060 @item start_x
15061 Set the initial x position. Must be a floating point value between
15062 -100 and 100. Default value is -0.743643887037158704752191506114774.
15063
15064 @item start_y
15065 Set the initial y position. Must be a floating point value between
15066 -100 and 100. Default value is -0.131825904205311970493132056385139.
15067 @end table
15068
15069 @section mptestsrc
15070
15071 Generate various test patterns, as generated by the MPlayer test filter.
15072
15073 The size of the generated video is fixed, and is 256x256.
15074 This source is useful in particular for testing encoding features.
15075
15076 This source accepts the following options:
15077
15078 @table @option
15079
15080 @item rate, r
15081 Specify the frame rate of the sourced video, as the number of frames
15082 generated per second. It has to be a string in the format
15083 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15084 number or a valid video frame rate abbreviation. The default value is
15085 "25".
15086
15087 @item duration, d
15088 Set the duration of the sourced video. See
15089 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15090 for the accepted syntax.
15091
15092 If not specified, or the expressed duration is negative, the video is
15093 supposed to be generated forever.
15094
15095 @item test, t
15096
15097 Set the number or the name of the test to perform. Supported tests are:
15098 @table @option
15099 @item dc_luma
15100 @item dc_chroma
15101 @item freq_luma
15102 @item freq_chroma
15103 @item amp_luma
15104 @item amp_chroma
15105 @item cbp
15106 @item mv
15107 @item ring1
15108 @item ring2
15109 @item all
15110
15111 @end table
15112
15113 Default value is "all", which will cycle through the list of all tests.
15114 @end table
15115
15116 Some examples:
15117 @example
15118 mptestsrc=t=dc_luma
15119 @end example
15120
15121 will generate a "dc_luma" test pattern.
15122
15123 @section frei0r_src
15124
15125 Provide a frei0r source.
15126
15127 To enable compilation of this filter you need to install the frei0r
15128 header and configure FFmpeg with @code{--enable-frei0r}.
15129
15130 This source accepts the following parameters:
15131
15132 @table @option
15133
15134 @item size
15135 The size of the video to generate. For the syntax of this option, check the
15136 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15137
15138 @item framerate
15139 The framerate of the generated video. It may be a string of the form
15140 @var{num}/@var{den} or a frame rate abbreviation.
15141
15142 @item filter_name
15143 The name to the frei0r source to load. For more information regarding frei0r and
15144 how to set the parameters, read the @ref{frei0r} section in the video filters
15145 documentation.
15146
15147 @item filter_params
15148 A '|'-separated list of parameters to pass to the frei0r source.
15149
15150 @end table
15151
15152 For example, to generate a frei0r partik0l source with size 200x200
15153 and frame rate 10 which is overlaid on the overlay filter main input:
15154 @example
15155 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
15156 @end example
15157
15158 @section life
15159
15160 Generate a life pattern.
15161
15162 This source is based on a generalization of John Conway's life game.
15163
15164 The sourced input represents a life grid, each pixel represents a cell
15165 which can be in one of two possible states, alive or dead. Every cell
15166 interacts with its eight neighbours, which are the cells that are
15167 horizontally, vertically, or diagonally adjacent.
15168
15169 At each interaction the grid evolves according to the adopted rule,
15170 which specifies the number of neighbor alive cells which will make a
15171 cell stay alive or born. The @option{rule} option allows one to specify
15172 the rule to adopt.
15173
15174 This source accepts the following options:
15175
15176 @table @option
15177 @item filename, f
15178 Set the file from which to read the initial grid state. In the file,
15179 each non-whitespace character is considered an alive cell, and newline
15180 is used to delimit the end of each row.
15181
15182 If this option is not specified, the initial grid is generated
15183 randomly.
15184
15185 @item rate, r
15186 Set the video rate, that is the number of frames generated per second.
15187 Default is 25.
15188
15189 @item random_fill_ratio, ratio
15190 Set the random fill ratio for the initial random grid. It is a
15191 floating point number value ranging from 0 to 1, defaults to 1/PHI.
15192 It is ignored when a file is specified.
15193
15194 @item random_seed, seed
15195 Set the seed for filling the initial random grid, must be an integer
15196 included between 0 and UINT32_MAX. If not specified, or if explicitly
15197 set to -1, the filter will try to use a good random seed on a best
15198 effort basis.
15199
15200 @item rule
15201 Set the life rule.
15202
15203 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
15204 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
15205 @var{NS} specifies the number of alive neighbor cells which make a
15206 live cell stay alive, and @var{NB} the number of alive neighbor cells
15207 which make a dead cell to become alive (i.e. to "born").
15208 "s" and "b" can be used in place of "S" and "B", respectively.
15209
15210 Alternatively a rule can be specified by an 18-bits integer. The 9
15211 high order bits are used to encode the next cell state if it is alive
15212 for each number of neighbor alive cells, the low order bits specify
15213 the rule for "borning" new cells. Higher order bits encode for an
15214 higher number of neighbor cells.
15215 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
15216 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
15217
15218 Default value is "S23/B3", which is the original Conway's game of life
15219 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
15220 cells, and will born a new cell if there are three alive cells around
15221 a dead cell.
15222
15223 @item size, s
15224 Set the size of the output video. For the syntax of this option, check the
15225 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15226
15227 If @option{filename} is specified, the size is set by default to the
15228 same size of the input file. If @option{size} is set, it must contain
15229 the size specified in the input file, and the initial grid defined in
15230 that file is centered in the larger resulting area.
15231
15232 If a filename is not specified, the size value defaults to "320x240"
15233 (used for a randomly generated initial grid).
15234
15235 @item stitch
15236 If set to 1, stitch the left and right grid edges together, and the
15237 top and bottom edges also. Defaults to 1.
15238
15239 @item mold
15240 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
15241 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
15242 value from 0 to 255.
15243
15244 @item life_color
15245 Set the color of living (or new born) cells.
15246
15247 @item death_color
15248 Set the color of dead cells. If @option{mold} is set, this is the first color
15249 used to represent a dead cell.
15250
15251 @item mold_color
15252 Set mold color, for definitely dead and moldy cells.
15253
15254 For the syntax of these 3 color options, check the "Color" section in the
15255 ffmpeg-utils manual.
15256 @end table
15257
15258 @subsection Examples
15259
15260 @itemize
15261 @item
15262 Read a grid from @file{pattern}, and center it on a grid of size
15263 300x300 pixels:
15264 @example
15265 life=f=pattern:s=300x300
15266 @end example
15267
15268 @item
15269 Generate a random grid of size 200x200, with a fill ratio of 2/3:
15270 @example
15271 life=ratio=2/3:s=200x200
15272 @end example
15273
15274 @item
15275 Specify a custom rule for evolving a randomly generated grid:
15276 @example
15277 life=rule=S14/B34
15278 @end example
15279
15280 @item
15281 Full example with slow death effect (mold) using @command{ffplay}:
15282 @example
15283 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
15284 @end example
15285 @end itemize
15286
15287 @anchor{allrgb}
15288 @anchor{allyuv}
15289 @anchor{color}
15290 @anchor{haldclutsrc}
15291 @anchor{nullsrc}
15292 @anchor{rgbtestsrc}
15293 @anchor{smptebars}
15294 @anchor{smptehdbars}
15295 @anchor{testsrc}
15296 @anchor{testsrc2}
15297 @anchor{yuvtestsrc}
15298 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
15299
15300 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
15301
15302 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
15303
15304 The @code{color} source provides an uniformly colored input.
15305
15306 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
15307 @ref{haldclut} filter.
15308
15309 The @code{nullsrc} source returns unprocessed video frames. It is
15310 mainly useful to be employed in analysis / debugging tools, or as the
15311 source for filters which ignore the input data.
15312
15313 The @code{rgbtestsrc} source generates an RGB test pattern useful for
15314 detecting RGB vs BGR issues. You should see a red, green and blue
15315 stripe from top to bottom.
15316
15317 The @code{smptebars} source generates a color bars pattern, based on
15318 the SMPTE Engineering Guideline EG 1-1990.
15319
15320 The @code{smptehdbars} source generates a color bars pattern, based on
15321 the SMPTE RP 219-2002.
15322
15323 The @code{testsrc} source generates a test video pattern, showing a
15324 color pattern, a scrolling gradient and a timestamp. This is mainly
15325 intended for testing purposes.
15326
15327 The @code{testsrc2} source is similar to testsrc, but supports more
15328 pixel formats instead of just @code{rgb24}. This allows using it as an
15329 input for other tests without requiring a format conversion.
15330
15331 The @code{yuvtestsrc} source generates an YUV test pattern. You should
15332 see a y, cb and cr stripe from top to bottom.
15333
15334 The sources accept the following parameters:
15335
15336 @table @option
15337
15338 @item color, c
15339 Specify the color of the source, only available in the @code{color}
15340 source. For the syntax of this option, check the "Color" section in the
15341 ffmpeg-utils manual.
15342
15343 @item level
15344 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
15345 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
15346 pixels to be used as identity matrix for 3D lookup tables. Each component is
15347 coded on a @code{1/(N*N)} scale.
15348
15349 @item size, s
15350 Specify the size of the sourced video. For the syntax of this option, check the
15351 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15352 The default value is @code{320x240}.
15353
15354 This option is not available with the @code{haldclutsrc} filter.
15355
15356 @item rate, r
15357 Specify the frame rate of the sourced video, as the number of frames
15358 generated per second. It has to be a string in the format
15359 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15360 number or a valid video frame rate abbreviation. The default value is
15361 "25".
15362
15363 @item sar
15364 Set the sample aspect ratio of the sourced video.
15365
15366 @item duration, d
15367 Set the duration of the sourced video. See
15368 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15369 for the accepted syntax.
15370
15371 If not specified, or the expressed duration is negative, the video is
15372 supposed to be generated forever.
15373
15374 @item decimals, n
15375 Set the number of decimals to show in the timestamp, only available in the
15376 @code{testsrc} source.
15377
15378 The displayed timestamp value will correspond to the original
15379 timestamp value multiplied by the power of 10 of the specified
15380 value. Default value is 0.
15381 @end table
15382
15383 For example the following:
15384 @example
15385 testsrc=duration=5.3:size=qcif:rate=10
15386 @end example
15387
15388 will generate a video with a duration of 5.3 seconds, with size
15389 176x144 and a frame rate of 10 frames per second.
15390
15391 The following graph description will generate a red source
15392 with an opacity of 0.2, with size "qcif" and a frame rate of 10
15393 frames per second.
15394 @example
15395 color=c=red@@0.2:s=qcif:r=10
15396 @end example
15397
15398 If the input content is to be ignored, @code{nullsrc} can be used. The
15399 following command generates noise in the luminance plane by employing
15400 the @code{geq} filter:
15401 @example
15402 nullsrc=s=256x256, geq=random(1)*255:128:128
15403 @end example
15404
15405 @subsection Commands
15406
15407 The @code{color} source supports the following commands:
15408
15409 @table @option
15410 @item c, color
15411 Set the color of the created image. Accepts the same syntax of the
15412 corresponding @option{color} option.
15413 @end table
15414
15415 @c man end VIDEO SOURCES
15416
15417 @chapter Video Sinks
15418 @c man begin VIDEO SINKS
15419
15420 Below is a description of the currently available video sinks.
15421
15422 @section buffersink
15423
15424 Buffer video frames, and make them available to the end of the filter
15425 graph.
15426
15427 This sink is mainly intended for programmatic use, in particular
15428 through the interface defined in @file{libavfilter/buffersink.h}
15429 or the options system.
15430
15431 It accepts a pointer to an AVBufferSinkContext structure, which
15432 defines the incoming buffers' formats, to be passed as the opaque
15433 parameter to @code{avfilter_init_filter} for initialization.
15434
15435 @section nullsink
15436
15437 Null video sink: do absolutely nothing with the input video. It is
15438 mainly useful as a template and for use in analysis / debugging
15439 tools.
15440
15441 @c man end VIDEO SINKS
15442
15443 @chapter Multimedia Filters
15444 @c man begin MULTIMEDIA FILTERS
15445
15446 Below is a description of the currently available multimedia filters.
15447
15448 @section ahistogram
15449
15450 Convert input audio to a video output, displaying the volume histogram.
15451
15452 The filter accepts the following options:
15453
15454 @table @option
15455 @item dmode
15456 Specify how histogram is calculated.
15457
15458 It accepts the following values:
15459 @table @samp
15460 @item single
15461 Use single histogram for all channels.
15462 @item separate
15463 Use separate histogram for each channel.
15464 @end table
15465 Default is @code{single}.
15466
15467 @item rate, r
15468 Set frame rate, expressed as number of frames per second. Default
15469 value is "25".
15470
15471 @item size, s
15472 Specify the video size for the output. For the syntax of this option, check the
15473 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15474 Default value is @code{hd720}.
15475
15476 @item scale
15477 Set display scale.
15478
15479 It accepts the following values:
15480 @table @samp
15481 @item log
15482 logarithmic
15483 @item sqrt
15484 square root
15485 @item cbrt
15486 cubic root
15487 @item lin
15488 linear
15489 @item rlog
15490 reverse logarithmic
15491 @end table
15492 Default is @code{log}.
15493
15494 @item ascale
15495 Set amplitude scale.
15496
15497 It accepts the following values:
15498 @table @samp
15499 @item log
15500 logarithmic
15501 @item lin
15502 linear
15503 @end table
15504 Default is @code{log}.
15505
15506 @item acount
15507 Set how much frames to accumulate in histogram.
15508 Defauls is 1. Setting this to -1 accumulates all frames.
15509
15510 @item rheight
15511 Set histogram ratio of window height.
15512
15513 @item slide
15514 Set sonogram sliding.
15515
15516 It accepts the following values:
15517 @table @samp
15518 @item replace
15519 replace old rows with new ones.
15520 @item scroll
15521 scroll from top to bottom.
15522 @end table
15523 Default is @code{replace}.
15524 @end table
15525
15526 @section aphasemeter
15527
15528 Convert input audio to a video output, displaying the audio phase.
15529
15530 The filter accepts the following options:
15531
15532 @table @option
15533 @item rate, r
15534 Set the output frame rate. Default value is @code{25}.
15535
15536 @item size, s
15537 Set the video size for the output. For the syntax of this option, check the
15538 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15539 Default value is @code{800x400}.
15540
15541 @item rc
15542 @item gc
15543 @item bc
15544 Specify the red, green, blue contrast. Default values are @code{2},
15545 @code{7} and @code{1}.
15546 Allowed range is @code{[0, 255]}.
15547
15548 @item mpc
15549 Set color which will be used for drawing median phase. If color is
15550 @code{none} which is default, no median phase value will be drawn.
15551 @end table
15552
15553 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
15554 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
15555 The @code{-1} means left and right channels are completely out of phase and
15556 @code{1} means channels are in phase.
15557
15558 @section avectorscope
15559
15560 Convert input audio to a video output, representing the audio vector
15561 scope.
15562
15563 The filter is used to measure the difference between channels of stereo
15564 audio stream. A monoaural signal, consisting of identical left and right
15565 signal, results in straight vertical line. Any stereo separation is visible
15566 as a deviation from this line, creating a Lissajous figure.
15567 If the straight (or deviation from it) but horizontal line appears this
15568 indicates that the left and right channels are out of phase.
15569
15570 The filter accepts the following options:
15571
15572 @table @option
15573 @item mode, m
15574 Set the vectorscope mode.
15575
15576 Available values are:
15577 @table @samp
15578 @item lissajous
15579 Lissajous rotated by 45 degrees.
15580
15581 @item lissajous_xy
15582 Same as above but not rotated.
15583
15584 @item polar
15585 Shape resembling half of circle.
15586 @end table
15587
15588 Default value is @samp{lissajous}.
15589
15590 @item size, s
15591 Set the video size for the output. For the syntax of this option, check the
15592 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15593 Default value is @code{400x400}.
15594
15595 @item rate, r
15596 Set the output frame rate. Default value is @code{25}.
15597
15598 @item rc
15599 @item gc
15600 @item bc
15601 @item ac
15602 Specify the red, green, blue and alpha contrast. Default values are @code{40},
15603 @code{160}, @code{80} and @code{255}.
15604 Allowed range is @code{[0, 255]}.
15605
15606 @item rf
15607 @item gf
15608 @item bf
15609 @item af
15610 Specify the red, green, blue and alpha fade. Default values are @code{15},
15611 @code{10}, @code{5} and @code{5}.
15612 Allowed range is @code{[0, 255]}.
15613
15614 @item zoom
15615 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
15616
15617 @item draw
15618 Set the vectorscope drawing mode.
15619
15620 Available values are:
15621 @table @samp
15622 @item dot
15623 Draw dot for each sample.
15624
15625 @item line
15626 Draw line between previous and current sample.
15627 @end table
15628
15629 Default value is @samp{dot}.
15630
15631 @item scale
15632 Specify amplitude scale of audio samples.
15633
15634 Available values are:
15635 @table @samp
15636 @item lin
15637 Linear.
15638
15639 @item sqrt
15640 Square root.
15641
15642 @item cbrt
15643 Cubic root.
15644
15645 @item log
15646 Logarithmic.
15647 @end table
15648
15649 @end table
15650
15651 @subsection Examples
15652
15653 @itemize
15654 @item
15655 Complete example using @command{ffplay}:
15656 @example
15657 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
15658              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
15659 @end example
15660 @end itemize
15661
15662 @section bench, abench
15663
15664 Benchmark part of a filtergraph.
15665
15666 The filter accepts the following options:
15667
15668 @table @option
15669 @item action
15670 Start or stop a timer.
15671
15672 Available values are:
15673 @table @samp
15674 @item start
15675 Get the current time, set it as frame metadata (using the key
15676 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
15677
15678 @item stop
15679 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
15680 the input frame metadata to get the time difference. Time difference, average,
15681 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
15682 @code{min}) are then printed. The timestamps are expressed in seconds.
15683 @end table
15684 @end table
15685
15686 @subsection Examples
15687
15688 @itemize
15689 @item
15690 Benchmark @ref{selectivecolor} filter:
15691 @example
15692 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
15693 @end example
15694 @end itemize
15695
15696 @section concat
15697
15698 Concatenate audio and video streams, joining them together one after the
15699 other.
15700
15701 The filter works on segments of synchronized video and audio streams. All
15702 segments must have the same number of streams of each type, and that will
15703 also be the number of streams at output.
15704
15705 The filter accepts the following options:
15706
15707 @table @option
15708
15709 @item n
15710 Set the number of segments. Default is 2.
15711
15712 @item v
15713 Set the number of output video streams, that is also the number of video
15714 streams in each segment. Default is 1.
15715
15716 @item a
15717 Set the number of output audio streams, that is also the number of audio
15718 streams in each segment. Default is 0.
15719
15720 @item unsafe
15721 Activate unsafe mode: do not fail if segments have a different format.
15722
15723 @end table
15724
15725 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
15726 @var{a} audio outputs.
15727
15728 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
15729 segment, in the same order as the outputs, then the inputs for the second
15730 segment, etc.
15731
15732 Related streams do not always have exactly the same duration, for various
15733 reasons including codec frame size or sloppy authoring. For that reason,
15734 related synchronized streams (e.g. a video and its audio track) should be
15735 concatenated at once. The concat filter will use the duration of the longest
15736 stream in each segment (except the last one), and if necessary pad shorter
15737 audio streams with silence.
15738
15739 For this filter to work correctly, all segments must start at timestamp 0.
15740
15741 All corresponding streams must have the same parameters in all segments; the
15742 filtering system will automatically select a common pixel format for video
15743 streams, and a common sample format, sample rate and channel layout for
15744 audio streams, but other settings, such as resolution, must be converted
15745 explicitly by the user.
15746
15747 Different frame rates are acceptable but will result in variable frame rate
15748 at output; be sure to configure the output file to handle it.
15749
15750 @subsection Examples
15751
15752 @itemize
15753 @item
15754 Concatenate an opening, an episode and an ending, all in bilingual version
15755 (video in stream 0, audio in streams 1 and 2):
15756 @example
15757 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
15758   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
15759    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
15760   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
15761 @end example
15762
15763 @item
15764 Concatenate two parts, handling audio and video separately, using the
15765 (a)movie sources, and adjusting the resolution:
15766 @example
15767 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
15768 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
15769 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
15770 @end example
15771 Note that a desync will happen at the stitch if the audio and video streams
15772 do not have exactly the same duration in the first file.
15773
15774 @end itemize
15775
15776 @section drawgraph, adrawgraph
15777
15778 Draw a graph using input video or audio metadata.
15779
15780 It accepts the following parameters:
15781
15782 @table @option
15783 @item m1
15784 Set 1st frame metadata key from which metadata values will be used to draw a graph.
15785
15786 @item fg1
15787 Set 1st foreground color expression.
15788
15789 @item m2
15790 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
15791
15792 @item fg2
15793 Set 2nd foreground color expression.
15794
15795 @item m3
15796 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
15797
15798 @item fg3
15799 Set 3rd foreground color expression.
15800
15801 @item m4
15802 Set 4th frame metadata key from which metadata values will be used to draw a graph.
15803
15804 @item fg4
15805 Set 4th foreground color expression.
15806
15807 @item min
15808 Set minimal value of metadata value.
15809
15810 @item max
15811 Set maximal value of metadata value.
15812
15813 @item bg
15814 Set graph background color. Default is white.
15815
15816 @item mode
15817 Set graph mode.
15818
15819 Available values for mode is:
15820 @table @samp
15821 @item bar
15822 @item dot
15823 @item line
15824 @end table
15825
15826 Default is @code{line}.
15827
15828 @item slide
15829 Set slide mode.
15830
15831 Available values for slide is:
15832 @table @samp
15833 @item frame
15834 Draw new frame when right border is reached.
15835
15836 @item replace
15837 Replace old columns with new ones.
15838
15839 @item scroll
15840 Scroll from right to left.
15841
15842 @item rscroll
15843 Scroll from left to right.
15844
15845 @item picture
15846 Draw single picture.
15847 @end table
15848
15849 Default is @code{frame}.
15850
15851 @item size
15852 Set size of graph video. For the syntax of this option, check the
15853 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15854 The default value is @code{900x256}.
15855
15856 The foreground color expressions can use the following variables:
15857 @table @option
15858 @item MIN
15859 Minimal value of metadata value.
15860
15861 @item MAX
15862 Maximal value of metadata value.
15863
15864 @item VAL
15865 Current metadata key value.
15866 @end table
15867
15868 The color is defined as 0xAABBGGRR.
15869 @end table
15870
15871 Example using metadata from @ref{signalstats} filter:
15872 @example
15873 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
15874 @end example
15875
15876 Example using metadata from @ref{ebur128} filter:
15877 @example
15878 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
15879 @end example
15880
15881 @anchor{ebur128}
15882 @section ebur128
15883
15884 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
15885 it unchanged. By default, it logs a message at a frequency of 10Hz with the
15886 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
15887 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
15888
15889 The filter also has a video output (see the @var{video} option) with a real
15890 time graph to observe the loudness evolution. The graphic contains the logged
15891 message mentioned above, so it is not printed anymore when this option is set,
15892 unless the verbose logging is set. The main graphing area contains the
15893 short-term loudness (3 seconds of analysis), and the gauge on the right is for
15894 the momentary loudness (400 milliseconds).
15895
15896 More information about the Loudness Recommendation EBU R128 on
15897 @url{http://tech.ebu.ch/loudness}.
15898
15899 The filter accepts the following options:
15900
15901 @table @option
15902
15903 @item video
15904 Activate the video output. The audio stream is passed unchanged whether this
15905 option is set or no. The video stream will be the first output stream if
15906 activated. Default is @code{0}.
15907
15908 @item size
15909 Set the video size. This option is for video only. For the syntax of this
15910 option, check the
15911 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15912 Default and minimum resolution is @code{640x480}.
15913
15914 @item meter
15915 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
15916 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
15917 other integer value between this range is allowed.
15918
15919 @item metadata
15920 Set metadata injection. If set to @code{1}, the audio input will be segmented
15921 into 100ms output frames, each of them containing various loudness information
15922 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
15923
15924 Default is @code{0}.
15925
15926 @item framelog
15927 Force the frame logging level.
15928
15929 Available values are:
15930 @table @samp
15931 @item info
15932 information logging level
15933 @item verbose
15934 verbose logging level
15935 @end table
15936
15937 By default, the logging level is set to @var{info}. If the @option{video} or
15938 the @option{metadata} options are set, it switches to @var{verbose}.
15939
15940 @item peak
15941 Set peak mode(s).
15942
15943 Available modes can be cumulated (the option is a @code{flag} type). Possible
15944 values are:
15945 @table @samp
15946 @item none
15947 Disable any peak mode (default).
15948 @item sample
15949 Enable sample-peak mode.
15950
15951 Simple peak mode looking for the higher sample value. It logs a message
15952 for sample-peak (identified by @code{SPK}).
15953 @item true
15954 Enable true-peak mode.
15955
15956 If enabled, the peak lookup is done on an over-sampled version of the input
15957 stream for better peak accuracy. It logs a message for true-peak.
15958 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
15959 This mode requires a build with @code{libswresample}.
15960 @end table
15961
15962 @item dualmono
15963 Treat mono input files as "dual mono". If a mono file is intended for playback
15964 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
15965 If set to @code{true}, this option will compensate for this effect.
15966 Multi-channel input files are not affected by this option.
15967
15968 @item panlaw
15969 Set a specific pan law to be used for the measurement of dual mono files.
15970 This parameter is optional, and has a default value of -3.01dB.
15971 @end table
15972
15973 @subsection Examples
15974
15975 @itemize
15976 @item
15977 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
15978 @example
15979 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
15980 @end example
15981
15982 @item
15983 Run an analysis with @command{ffmpeg}:
15984 @example
15985 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
15986 @end example
15987 @end itemize
15988
15989 @section interleave, ainterleave
15990
15991 Temporally interleave frames from several inputs.
15992
15993 @code{interleave} works with video inputs, @code{ainterleave} with audio.
15994
15995 These filters read frames from several inputs and send the oldest
15996 queued frame to the output.
15997
15998 Input streams must have well defined, monotonically increasing frame
15999 timestamp values.
16000
16001 In order to submit one frame to output, these filters need to enqueue
16002 at least one frame for each input, so they cannot work in case one
16003 input is not yet terminated and will not receive incoming frames.
16004
16005 For example consider the case when one input is a @code{select} filter
16006 which always drops input frames. The @code{interleave} filter will keep
16007 reading from that input, but it will never be able to send new frames
16008 to output until the input sends an end-of-stream signal.
16009
16010 Also, depending on inputs synchronization, the filters will drop
16011 frames in case one input receives more frames than the other ones, and
16012 the queue is already filled.
16013
16014 These filters accept the following options:
16015
16016 @table @option
16017 @item nb_inputs, n
16018 Set the number of different inputs, it is 2 by default.
16019 @end table
16020
16021 @subsection Examples
16022
16023 @itemize
16024 @item
16025 Interleave frames belonging to different streams using @command{ffmpeg}:
16026 @example
16027 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
16028 @end example
16029
16030 @item
16031 Add flickering blur effect:
16032 @example
16033 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
16034 @end example
16035 @end itemize
16036
16037 @section metadata, ametadata
16038
16039 Manipulate frame metadata.
16040
16041 This filter accepts the following options:
16042
16043 @table @option
16044 @item mode
16045 Set mode of operation of the filter.
16046
16047 Can be one of the following:
16048
16049 @table @samp
16050 @item select
16051 If both @code{value} and @code{key} is set, select frames
16052 which have such metadata. If only @code{key} is set, select
16053 every frame that has such key in metadata.
16054
16055 @item add
16056 Add new metadata @code{key} and @code{value}. If key is already available
16057 do nothing.
16058
16059 @item modify
16060 Modify value of already present key.
16061
16062 @item delete
16063 If @code{value} is set, delete only keys that have such value.
16064 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
16065 the frame.
16066
16067 @item print
16068 Print key and its value if metadata was found. If @code{key} is not set print all
16069 metadata values available in frame.
16070 @end table
16071
16072 @item key
16073 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
16074
16075 @item value
16076 Set metadata value which will be used. This option is mandatory for
16077 @code{modify} and @code{add} mode.
16078
16079 @item function
16080 Which function to use when comparing metadata value and @code{value}.
16081
16082 Can be one of following:
16083
16084 @table @samp
16085 @item same_str
16086 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
16087
16088 @item starts_with
16089 Values are interpreted as strings, returns true if metadata value starts with
16090 the @code{value} option string.
16091
16092 @item less
16093 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
16094
16095 @item equal
16096 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
16097
16098 @item greater
16099 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
16100
16101 @item expr
16102 Values are interpreted as floats, returns true if expression from option @code{expr}
16103 evaluates to true.
16104 @end table
16105
16106 @item expr
16107 Set expression which is used when @code{function} is set to @code{expr}.
16108 The expression is evaluated through the eval API and can contain the following
16109 constants:
16110
16111 @table @option
16112 @item VALUE1
16113 Float representation of @code{value} from metadata key.
16114
16115 @item VALUE2
16116 Float representation of @code{value} as supplied by user in @code{value} option.
16117
16118 @item file
16119 If specified in @code{print} mode, output is written to the named file. Instead of
16120 plain filename any writable url can be specified. Filename ``-'' is a shorthand
16121 for standard output. If @code{file} option is not set, output is written to the log
16122 with AV_LOG_INFO loglevel.
16123 @end table
16124
16125 @end table
16126
16127 @subsection Examples
16128
16129 @itemize
16130 @item
16131 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
16132 between 0 and 1.
16133 @example
16134 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
16135 @end example
16136 @item
16137 Print silencedetect output to file @file{metadata.txt}.
16138 @example
16139 silencedetect,ametadata=mode=print:file=metadata.txt
16140 @end example
16141 @item
16142 Direct all metadata to a pipe with file descriptor 4.
16143 @example
16144 metadata=mode=print:file='pipe\:4'
16145 @end example
16146 @end itemize
16147
16148 @section perms, aperms
16149
16150 Set read/write permissions for the output frames.
16151
16152 These filters are mainly aimed at developers to test direct path in the
16153 following filter in the filtergraph.
16154
16155 The filters accept the following options:
16156
16157 @table @option
16158 @item mode
16159 Select the permissions mode.
16160
16161 It accepts the following values:
16162 @table @samp
16163 @item none
16164 Do nothing. This is the default.
16165 @item ro
16166 Set all the output frames read-only.
16167 @item rw
16168 Set all the output frames directly writable.
16169 @item toggle
16170 Make the frame read-only if writable, and writable if read-only.
16171 @item random
16172 Set each output frame read-only or writable randomly.
16173 @end table
16174
16175 @item seed
16176 Set the seed for the @var{random} mode, must be an integer included between
16177 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16178 @code{-1}, the filter will try to use a good random seed on a best effort
16179 basis.
16180 @end table
16181
16182 Note: in case of auto-inserted filter between the permission filter and the
16183 following one, the permission might not be received as expected in that
16184 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
16185 perms/aperms filter can avoid this problem.
16186
16187 @section realtime, arealtime
16188
16189 Slow down filtering to match real time approximatively.
16190
16191 These filters will pause the filtering for a variable amount of time to
16192 match the output rate with the input timestamps.
16193 They are similar to the @option{re} option to @code{ffmpeg}.
16194
16195 They accept the following options:
16196
16197 @table @option
16198 @item limit
16199 Time limit for the pauses. Any pause longer than that will be considered
16200 a timestamp discontinuity and reset the timer. Default is 2 seconds.
16201 @end table
16202
16203 @anchor{select}
16204 @section select, aselect
16205
16206 Select frames to pass in output.
16207
16208 This filter accepts the following options:
16209
16210 @table @option
16211
16212 @item expr, e
16213 Set expression, which is evaluated for each input frame.
16214
16215 If the expression is evaluated to zero, the frame is discarded.
16216
16217 If the evaluation result is negative or NaN, the frame is sent to the
16218 first output; otherwise it is sent to the output with index
16219 @code{ceil(val)-1}, assuming that the input index starts from 0.
16220
16221 For example a value of @code{1.2} corresponds to the output with index
16222 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
16223
16224 @item outputs, n
16225 Set the number of outputs. The output to which to send the selected
16226 frame is based on the result of the evaluation. Default value is 1.
16227 @end table
16228
16229 The expression can contain the following constants:
16230
16231 @table @option
16232 @item n
16233 The (sequential) number of the filtered frame, starting from 0.
16234
16235 @item selected_n
16236 The (sequential) number of the selected frame, starting from 0.
16237
16238 @item prev_selected_n
16239 The sequential number of the last selected frame. It's NAN if undefined.
16240
16241 @item TB
16242 The timebase of the input timestamps.
16243
16244 @item pts
16245 The PTS (Presentation TimeStamp) of the filtered video frame,
16246 expressed in @var{TB} units. It's NAN if undefined.
16247
16248 @item t
16249 The PTS of the filtered video frame,
16250 expressed in seconds. It's NAN if undefined.
16251
16252 @item prev_pts
16253 The PTS of the previously filtered video frame. It's NAN if undefined.
16254
16255 @item prev_selected_pts
16256 The PTS of the last previously filtered video frame. It's NAN if undefined.
16257
16258 @item prev_selected_t
16259 The PTS of the last previously selected video frame. It's NAN if undefined.
16260
16261 @item start_pts
16262 The PTS of the first video frame in the video. It's NAN if undefined.
16263
16264 @item start_t
16265 The time of the first video frame in the video. It's NAN if undefined.
16266
16267 @item pict_type @emph{(video only)}
16268 The type of the filtered frame. It can assume one of the following
16269 values:
16270 @table @option
16271 @item I
16272 @item P
16273 @item B
16274 @item S
16275 @item SI
16276 @item SP
16277 @item BI
16278 @end table
16279
16280 @item interlace_type @emph{(video only)}
16281 The frame interlace type. It can assume one of the following values:
16282 @table @option
16283 @item PROGRESSIVE
16284 The frame is progressive (not interlaced).
16285 @item TOPFIRST
16286 The frame is top-field-first.
16287 @item BOTTOMFIRST
16288 The frame is bottom-field-first.
16289 @end table
16290
16291 @item consumed_sample_n @emph{(audio only)}
16292 the number of selected samples before the current frame
16293
16294 @item samples_n @emph{(audio only)}
16295 the number of samples in the current frame
16296
16297 @item sample_rate @emph{(audio only)}
16298 the input sample rate
16299
16300 @item key
16301 This is 1 if the filtered frame is a key-frame, 0 otherwise.
16302
16303 @item pos
16304 the position in the file of the filtered frame, -1 if the information
16305 is not available (e.g. for synthetic video)
16306
16307 @item scene @emph{(video only)}
16308 value between 0 and 1 to indicate a new scene; a low value reflects a low
16309 probability for the current frame to introduce a new scene, while a higher
16310 value means the current frame is more likely to be one (see the example below)
16311
16312 @item concatdec_select
16313 The concat demuxer can select only part of a concat input file by setting an
16314 inpoint and an outpoint, but the output packets may not be entirely contained
16315 in the selected interval. By using this variable, it is possible to skip frames
16316 generated by the concat demuxer which are not exactly contained in the selected
16317 interval.
16318
16319 This works by comparing the frame pts against the @var{lavf.concat.start_time}
16320 and the @var{lavf.concat.duration} packet metadata values which are also
16321 present in the decoded frames.
16322
16323 The @var{concatdec_select} variable is -1 if the frame pts is at least
16324 start_time and either the duration metadata is missing or the frame pts is less
16325 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
16326 missing.
16327
16328 That basically means that an input frame is selected if its pts is within the
16329 interval set by the concat demuxer.
16330
16331 @end table
16332
16333 The default value of the select expression is "1".
16334
16335 @subsection Examples
16336
16337 @itemize
16338 @item
16339 Select all frames in input:
16340 @example
16341 select
16342 @end example
16343
16344 The example above is the same as:
16345 @example
16346 select=1
16347 @end example
16348
16349 @item
16350 Skip all frames:
16351 @example
16352 select=0
16353 @end example
16354
16355 @item
16356 Select only I-frames:
16357 @example
16358 select='eq(pict_type\,I)'
16359 @end example
16360
16361 @item
16362 Select one frame every 100:
16363 @example
16364 select='not(mod(n\,100))'
16365 @end example
16366
16367 @item
16368 Select only frames contained in the 10-20 time interval:
16369 @example
16370 select=between(t\,10\,20)
16371 @end example
16372
16373 @item
16374 Select only I-frames contained in the 10-20 time interval:
16375 @example
16376 select=between(t\,10\,20)*eq(pict_type\,I)
16377 @end example
16378
16379 @item
16380 Select frames with a minimum distance of 10 seconds:
16381 @example
16382 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
16383 @end example
16384
16385 @item
16386 Use aselect to select only audio frames with samples number > 100:
16387 @example
16388 aselect='gt(samples_n\,100)'
16389 @end example
16390
16391 @item
16392 Create a mosaic of the first scenes:
16393 @example
16394 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
16395 @end example
16396
16397 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
16398 choice.
16399
16400 @item
16401 Send even and odd frames to separate outputs, and compose them:
16402 @example
16403 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
16404 @end example
16405
16406 @item
16407 Select useful frames from an ffconcat file which is using inpoints and
16408 outpoints but where the source files are not intra frame only.
16409 @example
16410 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
16411 @end example
16412 @end itemize
16413
16414 @section sendcmd, asendcmd
16415
16416 Send commands to filters in the filtergraph.
16417
16418 These filters read commands to be sent to other filters in the
16419 filtergraph.
16420
16421 @code{sendcmd} must be inserted between two video filters,
16422 @code{asendcmd} must be inserted between two audio filters, but apart
16423 from that they act the same way.
16424
16425 The specification of commands can be provided in the filter arguments
16426 with the @var{commands} option, or in a file specified by the
16427 @var{filename} option.
16428
16429 These filters accept the following options:
16430 @table @option
16431 @item commands, c
16432 Set the commands to be read and sent to the other filters.
16433 @item filename, f
16434 Set the filename of the commands to be read and sent to the other
16435 filters.
16436 @end table
16437
16438 @subsection Commands syntax
16439
16440 A commands description consists of a sequence of interval
16441 specifications, comprising a list of commands to be executed when a
16442 particular event related to that interval occurs. The occurring event
16443 is typically the current frame time entering or leaving a given time
16444 interval.
16445
16446 An interval is specified by the following syntax:
16447 @example
16448 @var{START}[-@var{END}] @var{COMMANDS};
16449 @end example
16450
16451 The time interval is specified by the @var{START} and @var{END} times.
16452 @var{END} is optional and defaults to the maximum time.
16453
16454 The current frame time is considered within the specified interval if
16455 it is included in the interval [@var{START}, @var{END}), that is when
16456 the time is greater or equal to @var{START} and is lesser than
16457 @var{END}.
16458
16459 @var{COMMANDS} consists of a sequence of one or more command
16460 specifications, separated by ",", relating to that interval.  The
16461 syntax of a command specification is given by:
16462 @example
16463 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
16464 @end example
16465
16466 @var{FLAGS} is optional and specifies the type of events relating to
16467 the time interval which enable sending the specified command, and must
16468 be a non-null sequence of identifier flags separated by "+" or "|" and
16469 enclosed between "[" and "]".
16470
16471 The following flags are recognized:
16472 @table @option
16473 @item enter
16474 The command is sent when the current frame timestamp enters the
16475 specified interval. In other words, the command is sent when the
16476 previous frame timestamp was not in the given interval, and the
16477 current is.
16478
16479 @item leave
16480 The command is sent when the current frame timestamp leaves the
16481 specified interval. In other words, the command is sent when the
16482 previous frame timestamp was in the given interval, and the
16483 current is not.
16484 @end table
16485
16486 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
16487 assumed.
16488
16489 @var{TARGET} specifies the target of the command, usually the name of
16490 the filter class or a specific filter instance name.
16491
16492 @var{COMMAND} specifies the name of the command for the target filter.
16493
16494 @var{ARG} is optional and specifies the optional list of argument for
16495 the given @var{COMMAND}.
16496
16497 Between one interval specification and another, whitespaces, or
16498 sequences of characters starting with @code{#} until the end of line,
16499 are ignored and can be used to annotate comments.
16500
16501 A simplified BNF description of the commands specification syntax
16502 follows:
16503 @example
16504 @var{COMMAND_FLAG}  ::= "enter" | "leave"
16505 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
16506 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
16507 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
16508 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
16509 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
16510 @end example
16511
16512 @subsection Examples
16513
16514 @itemize
16515 @item
16516 Specify audio tempo change at second 4:
16517 @example
16518 asendcmd=c='4.0 atempo tempo 1.5',atempo
16519 @end example
16520
16521 @item
16522 Specify a list of drawtext and hue commands in a file.
16523 @example
16524 # show text in the interval 5-10
16525 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
16526          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
16527
16528 # desaturate the image in the interval 15-20
16529 15.0-20.0 [enter] hue s 0,
16530           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
16531           [leave] hue s 1,
16532           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
16533
16534 # apply an exponential saturation fade-out effect, starting from time 25
16535 25 [enter] hue s exp(25-t)
16536 @end example
16537
16538 A filtergraph allowing to read and process the above command list
16539 stored in a file @file{test.cmd}, can be specified with:
16540 @example
16541 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
16542 @end example
16543 @end itemize
16544
16545 @anchor{setpts}
16546 @section setpts, asetpts
16547
16548 Change the PTS (presentation timestamp) of the input frames.
16549
16550 @code{setpts} works on video frames, @code{asetpts} on audio frames.
16551
16552 This filter accepts the following options:
16553
16554 @table @option
16555
16556 @item expr
16557 The expression which is evaluated for each frame to construct its timestamp.
16558
16559 @end table
16560
16561 The expression is evaluated through the eval API and can contain the following
16562 constants:
16563
16564 @table @option
16565 @item FRAME_RATE
16566 frame rate, only defined for constant frame-rate video
16567
16568 @item PTS
16569 The presentation timestamp in input
16570
16571 @item N
16572 The count of the input frame for video or the number of consumed samples,
16573 not including the current frame for audio, starting from 0.
16574
16575 @item NB_CONSUMED_SAMPLES
16576 The number of consumed samples, not including the current frame (only
16577 audio)
16578
16579 @item NB_SAMPLES, S
16580 The number of samples in the current frame (only audio)
16581
16582 @item SAMPLE_RATE, SR
16583 The audio sample rate.
16584
16585 @item STARTPTS
16586 The PTS of the first frame.
16587
16588 @item STARTT
16589 the time in seconds of the first frame
16590
16591 @item INTERLACED
16592 State whether the current frame is interlaced.
16593
16594 @item T
16595 the time in seconds of the current frame
16596
16597 @item POS
16598 original position in the file of the frame, or undefined if undefined
16599 for the current frame
16600
16601 @item PREV_INPTS
16602 The previous input PTS.
16603
16604 @item PREV_INT
16605 previous input time in seconds
16606
16607 @item PREV_OUTPTS
16608 The previous output PTS.
16609
16610 @item PREV_OUTT
16611 previous output time in seconds
16612
16613 @item RTCTIME
16614 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
16615 instead.
16616
16617 @item RTCSTART
16618 The wallclock (RTC) time at the start of the movie in microseconds.
16619
16620 @item TB
16621 The timebase of the input timestamps.
16622
16623 @end table
16624
16625 @subsection Examples
16626
16627 @itemize
16628 @item
16629 Start counting PTS from zero
16630 @example
16631 setpts=PTS-STARTPTS
16632 @end example
16633
16634 @item
16635 Apply fast motion effect:
16636 @example
16637 setpts=0.5*PTS
16638 @end example
16639
16640 @item
16641 Apply slow motion effect:
16642 @example
16643 setpts=2.0*PTS
16644 @end example
16645
16646 @item
16647 Set fixed rate of 25 frames per second:
16648 @example
16649 setpts=N/(25*TB)
16650 @end example
16651
16652 @item
16653 Set fixed rate 25 fps with some jitter:
16654 @example
16655 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
16656 @end example
16657
16658 @item
16659 Apply an offset of 10 seconds to the input PTS:
16660 @example
16661 setpts=PTS+10/TB
16662 @end example
16663
16664 @item
16665 Generate timestamps from a "live source" and rebase onto the current timebase:
16666 @example
16667 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
16668 @end example
16669
16670 @item
16671 Generate timestamps by counting samples:
16672 @example
16673 asetpts=N/SR/TB
16674 @end example
16675
16676 @end itemize
16677
16678 @section settb, asettb
16679
16680 Set the timebase to use for the output frames timestamps.
16681 It is mainly useful for testing timebase configuration.
16682
16683 It accepts the following parameters:
16684
16685 @table @option
16686
16687 @item expr, tb
16688 The expression which is evaluated into the output timebase.
16689
16690 @end table
16691
16692 The value for @option{tb} is an arithmetic expression representing a
16693 rational. The expression can contain the constants "AVTB" (the default
16694 timebase), "intb" (the input timebase) and "sr" (the sample rate,
16695 audio only). Default value is "intb".
16696
16697 @subsection Examples
16698
16699 @itemize
16700 @item
16701 Set the timebase to 1/25:
16702 @example
16703 settb=expr=1/25
16704 @end example
16705
16706 @item
16707 Set the timebase to 1/10:
16708 @example
16709 settb=expr=0.1
16710 @end example
16711
16712 @item
16713 Set the timebase to 1001/1000:
16714 @example
16715 settb=1+0.001
16716 @end example
16717
16718 @item
16719 Set the timebase to 2*intb:
16720 @example
16721 settb=2*intb
16722 @end example
16723
16724 @item
16725 Set the default timebase value:
16726 @example
16727 settb=AVTB
16728 @end example
16729 @end itemize
16730
16731 @section showcqt
16732 Convert input audio to a video output representing frequency spectrum
16733 logarithmically using Brown-Puckette constant Q transform algorithm with
16734 direct frequency domain coefficient calculation (but the transform itself
16735 is not really constant Q, instead the Q factor is actually variable/clamped),
16736 with musical tone scale, from E0 to D#10.
16737
16738 The filter accepts the following options:
16739
16740 @table @option
16741 @item size, s
16742 Specify the video size for the output. It must be even. For the syntax of this option,
16743 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16744 Default value is @code{1920x1080}.
16745
16746 @item fps, rate, r
16747 Set the output frame rate. Default value is @code{25}.
16748
16749 @item bar_h
16750 Set the bargraph height. It must be even. Default value is @code{-1} which
16751 computes the bargraph height automatically.
16752
16753 @item axis_h
16754 Set the axis height. It must be even. Default value is @code{-1} which computes
16755 the axis height automatically.
16756
16757 @item sono_h
16758 Set the sonogram height. It must be even. Default value is @code{-1} which
16759 computes the sonogram height automatically.
16760
16761 @item fullhd
16762 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
16763 instead. Default value is @code{1}.
16764
16765 @item sono_v, volume
16766 Specify the sonogram volume expression. It can contain variables:
16767 @table @option
16768 @item bar_v
16769 the @var{bar_v} evaluated expression
16770 @item frequency, freq, f
16771 the frequency where it is evaluated
16772 @item timeclamp, tc
16773 the value of @var{timeclamp} option
16774 @end table
16775 and functions:
16776 @table @option
16777 @item a_weighting(f)
16778 A-weighting of equal loudness
16779 @item b_weighting(f)
16780 B-weighting of equal loudness
16781 @item c_weighting(f)
16782 C-weighting of equal loudness.
16783 @end table
16784 Default value is @code{16}.
16785
16786 @item bar_v, volume2
16787 Specify the bargraph volume expression. It can contain variables:
16788 @table @option
16789 @item sono_v
16790 the @var{sono_v} evaluated expression
16791 @item frequency, freq, f
16792 the frequency where it is evaluated
16793 @item timeclamp, tc
16794 the value of @var{timeclamp} option
16795 @end table
16796 and functions:
16797 @table @option
16798 @item a_weighting(f)
16799 A-weighting of equal loudness
16800 @item b_weighting(f)
16801 B-weighting of equal loudness
16802 @item c_weighting(f)
16803 C-weighting of equal loudness.
16804 @end table
16805 Default value is @code{sono_v}.
16806
16807 @item sono_g, gamma
16808 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
16809 higher gamma makes the spectrum having more range. Default value is @code{3}.
16810 Acceptable range is @code{[1, 7]}.
16811
16812 @item bar_g, gamma2
16813 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
16814 @code{[1, 7]}.
16815
16816 @item timeclamp, tc
16817 Specify the transform timeclamp. At low frequency, there is trade-off between
16818 accuracy in time domain and frequency domain. If timeclamp is lower,
16819 event in time domain is represented more accurately (such as fast bass drum),
16820 otherwise event in frequency domain is represented more accurately
16821 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
16822
16823 @item basefreq
16824 Specify the transform base frequency. Default value is @code{20.01523126408007475},
16825 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
16826
16827 @item endfreq
16828 Specify the transform end frequency. Default value is @code{20495.59681441799654},
16829 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
16830
16831 @item coeffclamp
16832 This option is deprecated and ignored.
16833
16834 @item tlength
16835 Specify the transform length in time domain. Use this option to control accuracy
16836 trade-off between time domain and frequency domain at every frequency sample.
16837 It can contain variables:
16838 @table @option
16839 @item frequency, freq, f
16840 the frequency where it is evaluated
16841 @item timeclamp, tc
16842 the value of @var{timeclamp} option.
16843 @end table
16844 Default value is @code{384*tc/(384+tc*f)}.
16845
16846 @item count
16847 Specify the transform count for every video frame. Default value is @code{6}.
16848 Acceptable range is @code{[1, 30]}.
16849
16850 @item fcount
16851 Specify the transform count for every single pixel. Default value is @code{0},
16852 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
16853
16854 @item fontfile
16855 Specify font file for use with freetype to draw the axis. If not specified,
16856 use embedded font. Note that drawing with font file or embedded font is not
16857 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
16858 option instead.
16859
16860 @item fontcolor
16861 Specify font color expression. This is arithmetic expression that should return
16862 integer value 0xRRGGBB. It can contain variables:
16863 @table @option
16864 @item frequency, freq, f
16865 the frequency where it is evaluated
16866 @item timeclamp, tc
16867 the value of @var{timeclamp} option
16868 @end table
16869 and functions:
16870 @table @option
16871 @item midi(f)
16872 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
16873 @item r(x), g(x), b(x)
16874 red, green, and blue value of intensity x.
16875 @end table
16876 Default value is @code{st(0, (midi(f)-59.5)/12);
16877 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
16878 r(1-ld(1)) + b(ld(1))}.
16879
16880 @item axisfile
16881 Specify image file to draw the axis. This option override @var{fontfile} and
16882 @var{fontcolor} option.
16883
16884 @item axis, text
16885 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
16886 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
16887 Default value is @code{1}.
16888
16889 @item csp
16890 Set colorspace. The accepted values are:
16891 @table @samp
16892 @item unspecified
16893 Unspecified (default)
16894
16895 @item bt709
16896 BT.709
16897
16898 @item fcc
16899 FCC
16900
16901 @item bt470bg
16902 BT.470BG or BT.601-6 625
16903
16904 @item smpte170m
16905 SMPTE-170M or BT.601-6 525
16906
16907 @item smpte240m
16908 SMPTE-240M
16909
16910 @item bt2020ncl
16911 BT.2020 with non-constant luminance
16912
16913 @end table
16914
16915 @end table
16916
16917 @subsection Examples
16918
16919 @itemize
16920 @item
16921 Playing audio while showing the spectrum:
16922 @example
16923 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
16924 @end example
16925
16926 @item
16927 Same as above, but with frame rate 30 fps:
16928 @example
16929 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
16930 @end example
16931
16932 @item
16933 Playing at 1280x720:
16934 @example
16935 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
16936 @end example
16937
16938 @item
16939 Disable sonogram display:
16940 @example
16941 sono_h=0
16942 @end example
16943
16944 @item
16945 A1 and its harmonics: A1, A2, (near)E3, A3:
16946 @example
16947 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),
16948                  asplit[a][out1]; [a] showcqt [out0]'
16949 @end example
16950
16951 @item
16952 Same as above, but with more accuracy in frequency domain:
16953 @example
16954 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),
16955                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
16956 @end example
16957
16958 @item
16959 Custom volume:
16960 @example
16961 bar_v=10:sono_v=bar_v*a_weighting(f)
16962 @end example
16963
16964 @item
16965 Custom gamma, now spectrum is linear to the amplitude.
16966 @example
16967 bar_g=2:sono_g=2
16968 @end example
16969
16970 @item
16971 Custom tlength equation:
16972 @example
16973 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)))'
16974 @end example
16975
16976 @item
16977 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
16978 @example
16979 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
16980 @end example
16981
16982 @item
16983 Custom frequency range with custom axis using image file:
16984 @example
16985 axisfile=myaxis.png:basefreq=40:endfreq=10000
16986 @end example
16987 @end itemize
16988
16989 @section showfreqs
16990
16991 Convert input audio to video output representing the audio power spectrum.
16992 Audio amplitude is on Y-axis while frequency is on X-axis.
16993
16994 The filter accepts the following options:
16995
16996 @table @option
16997 @item size, s
16998 Specify size of video. For the syntax of this option, check the
16999 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17000 Default is @code{1024x512}.
17001
17002 @item mode
17003 Set display mode.
17004 This set how each frequency bin will be represented.
17005
17006 It accepts the following values:
17007 @table @samp
17008 @item line
17009 @item bar
17010 @item dot
17011 @end table
17012 Default is @code{bar}.
17013
17014 @item ascale
17015 Set amplitude scale.
17016
17017 It accepts the following values:
17018 @table @samp
17019 @item lin
17020 Linear scale.
17021
17022 @item sqrt
17023 Square root scale.
17024
17025 @item cbrt
17026 Cubic root scale.
17027
17028 @item log
17029 Logarithmic scale.
17030 @end table
17031 Default is @code{log}.
17032
17033 @item fscale
17034 Set frequency scale.
17035
17036 It accepts the following values:
17037 @table @samp
17038 @item lin
17039 Linear scale.
17040
17041 @item log
17042 Logarithmic scale.
17043
17044 @item rlog
17045 Reverse logarithmic scale.
17046 @end table
17047 Default is @code{lin}.
17048
17049 @item win_size
17050 Set window size.
17051
17052 It accepts the following values:
17053 @table @samp
17054 @item w16
17055 @item w32
17056 @item w64
17057 @item w128
17058 @item w256
17059 @item w512
17060 @item w1024
17061 @item w2048
17062 @item w4096
17063 @item w8192
17064 @item w16384
17065 @item w32768
17066 @item w65536
17067 @end table
17068 Default is @code{w2048}
17069
17070 @item win_func
17071 Set windowing function.
17072
17073 It accepts the following values:
17074 @table @samp
17075 @item rect
17076 @item bartlett
17077 @item hanning
17078 @item hamming
17079 @item blackman
17080 @item welch
17081 @item flattop
17082 @item bharris
17083 @item bnuttall
17084 @item bhann
17085 @item sine
17086 @item nuttall
17087 @item lanczos
17088 @item gauss
17089 @item tukey
17090 @item dolph
17091 @item cauchy
17092 @item parzen
17093 @item poisson
17094 @end table
17095 Default is @code{hanning}.
17096
17097 @item overlap
17098 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17099 which means optimal overlap for selected window function will be picked.
17100
17101 @item averaging
17102 Set time averaging. Setting this to 0 will display current maximal peaks.
17103 Default is @code{1}, which means time averaging is disabled.
17104
17105 @item colors
17106 Specify list of colors separated by space or by '|' which will be used to
17107 draw channel frequencies. Unrecognized or missing colors will be replaced
17108 by white color.
17109
17110 @item cmode
17111 Set channel display mode.
17112
17113 It accepts the following values:
17114 @table @samp
17115 @item combined
17116 @item separate
17117 @end table
17118 Default is @code{combined}.
17119
17120 @item minamp
17121 Set minimum amplitude used in @code{log} amplitude scaler.
17122
17123 @end table
17124
17125 @anchor{showspectrum}
17126 @section showspectrum
17127
17128 Convert input audio to a video output, representing the audio frequency
17129 spectrum.
17130
17131 The filter accepts the following options:
17132
17133 @table @option
17134 @item size, s
17135 Specify the video size for the output. For the syntax of this option, check the
17136 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17137 Default value is @code{640x512}.
17138
17139 @item slide
17140 Specify how the spectrum should slide along the window.
17141
17142 It accepts the following values:
17143 @table @samp
17144 @item replace
17145 the samples start again on the left when they reach the right
17146 @item scroll
17147 the samples scroll from right to left
17148 @item fullframe
17149 frames are only produced when the samples reach the right
17150 @item rscroll
17151 the samples scroll from left to right
17152 @end table
17153
17154 Default value is @code{replace}.
17155
17156 @item mode
17157 Specify display mode.
17158
17159 It accepts the following values:
17160 @table @samp
17161 @item combined
17162 all channels are displayed in the same row
17163 @item separate
17164 all channels are displayed in separate rows
17165 @end table
17166
17167 Default value is @samp{combined}.
17168
17169 @item color
17170 Specify display color mode.
17171
17172 It accepts the following values:
17173 @table @samp
17174 @item channel
17175 each channel is displayed in a separate color
17176 @item intensity
17177 each channel is displayed using the same color scheme
17178 @item rainbow
17179 each channel is displayed using the rainbow color scheme
17180 @item moreland
17181 each channel is displayed using the moreland color scheme
17182 @item nebulae
17183 each channel is displayed using the nebulae color scheme
17184 @item fire
17185 each channel is displayed using the fire color scheme
17186 @item fiery
17187 each channel is displayed using the fiery color scheme
17188 @item fruit
17189 each channel is displayed using the fruit color scheme
17190 @item cool
17191 each channel is displayed using the cool color scheme
17192 @end table
17193
17194 Default value is @samp{channel}.
17195
17196 @item scale
17197 Specify scale used for calculating intensity color values.
17198
17199 It accepts the following values:
17200 @table @samp
17201 @item lin
17202 linear
17203 @item sqrt
17204 square root, default
17205 @item cbrt
17206 cubic root
17207 @item log
17208 logarithmic
17209 @item 4thrt
17210 4th root
17211 @item 5thrt
17212 5th root
17213 @end table
17214
17215 Default value is @samp{sqrt}.
17216
17217 @item saturation
17218 Set saturation modifier for displayed colors. Negative values provide
17219 alternative color scheme. @code{0} is no saturation at all.
17220 Saturation must be in [-10.0, 10.0] range.
17221 Default value is @code{1}.
17222
17223 @item win_func
17224 Set window function.
17225
17226 It accepts the following values:
17227 @table @samp
17228 @item rect
17229 @item bartlett
17230 @item hann
17231 @item hanning
17232 @item hamming
17233 @item blackman
17234 @item welch
17235 @item flattop
17236 @item bharris
17237 @item bnuttall
17238 @item bhann
17239 @item sine
17240 @item nuttall
17241 @item lanczos
17242 @item gauss
17243 @item tukey
17244 @item dolph
17245 @item cauchy
17246 @item parzen
17247 @item poisson
17248 @end table
17249
17250 Default value is @code{hann}.
17251
17252 @item orientation
17253 Set orientation of time vs frequency axis. Can be @code{vertical} or
17254 @code{horizontal}. Default is @code{vertical}.
17255
17256 @item overlap
17257 Set ratio of overlap window. Default value is @code{0}.
17258 When value is @code{1} overlap is set to recommended size for specific
17259 window function currently used.
17260
17261 @item gain
17262 Set scale gain for calculating intensity color values.
17263 Default value is @code{1}.
17264
17265 @item data
17266 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
17267
17268 @item rotation
17269 Set color rotation, must be in [-1.0, 1.0] range.
17270 Default value is @code{0}.
17271 @end table
17272
17273 The usage is very similar to the showwaves filter; see the examples in that
17274 section.
17275
17276 @subsection Examples
17277
17278 @itemize
17279 @item
17280 Large window with logarithmic color scaling:
17281 @example
17282 showspectrum=s=1280x480:scale=log
17283 @end example
17284
17285 @item
17286 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
17287 @example
17288 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17289              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
17290 @end example
17291 @end itemize
17292
17293 @section showspectrumpic
17294
17295 Convert input audio to a single video frame, representing the audio frequency
17296 spectrum.
17297
17298 The filter accepts the following options:
17299
17300 @table @option
17301 @item size, s
17302 Specify the video size for the output. For the syntax of this option, check the
17303 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17304 Default value is @code{4096x2048}.
17305
17306 @item mode
17307 Specify display mode.
17308
17309 It accepts the following values:
17310 @table @samp
17311 @item combined
17312 all channels are displayed in the same row
17313 @item separate
17314 all channels are displayed in separate rows
17315 @end table
17316 Default value is @samp{combined}.
17317
17318 @item color
17319 Specify display color mode.
17320
17321 It accepts the following values:
17322 @table @samp
17323 @item channel
17324 each channel is displayed in a separate color
17325 @item intensity
17326 each channel is displayed using the same color scheme
17327 @item rainbow
17328 each channel is displayed using the rainbow color scheme
17329 @item moreland
17330 each channel is displayed using the moreland color scheme
17331 @item nebulae
17332 each channel is displayed using the nebulae color scheme
17333 @item fire
17334 each channel is displayed using the fire color scheme
17335 @item fiery
17336 each channel is displayed using the fiery color scheme
17337 @item fruit
17338 each channel is displayed using the fruit color scheme
17339 @item cool
17340 each channel is displayed using the cool color scheme
17341 @end table
17342 Default value is @samp{intensity}.
17343
17344 @item scale
17345 Specify scale used for calculating intensity color values.
17346
17347 It accepts the following values:
17348 @table @samp
17349 @item lin
17350 linear
17351 @item sqrt
17352 square root, default
17353 @item cbrt
17354 cubic root
17355 @item log
17356 logarithmic
17357 @item 4thrt
17358 4th root
17359 @item 5thrt
17360 5th root
17361 @end table
17362 Default value is @samp{log}.
17363
17364 @item saturation
17365 Set saturation modifier for displayed colors. Negative values provide
17366 alternative color scheme. @code{0} is no saturation at all.
17367 Saturation must be in [-10.0, 10.0] range.
17368 Default value is @code{1}.
17369
17370 @item win_func
17371 Set window function.
17372
17373 It accepts the following values:
17374 @table @samp
17375 @item rect
17376 @item bartlett
17377 @item hann
17378 @item hanning
17379 @item hamming
17380 @item blackman
17381 @item welch
17382 @item flattop
17383 @item bharris
17384 @item bnuttall
17385 @item bhann
17386 @item sine
17387 @item nuttall
17388 @item lanczos
17389 @item gauss
17390 @item tukey
17391 @item dolph
17392 @item cauchy
17393 @item parzen
17394 @item poisson
17395 @end table
17396 Default value is @code{hann}.
17397
17398 @item orientation
17399 Set orientation of time vs frequency axis. Can be @code{vertical} or
17400 @code{horizontal}. Default is @code{vertical}.
17401
17402 @item gain
17403 Set scale gain for calculating intensity color values.
17404 Default value is @code{1}.
17405
17406 @item legend
17407 Draw time and frequency axes and legends. Default is enabled.
17408
17409 @item rotation
17410 Set color rotation, must be in [-1.0, 1.0] range.
17411 Default value is @code{0}.
17412 @end table
17413
17414 @subsection Examples
17415
17416 @itemize
17417 @item
17418 Extract an audio spectrogram of a whole audio track
17419 in a 1024x1024 picture using @command{ffmpeg}:
17420 @example
17421 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
17422 @end example
17423 @end itemize
17424
17425 @section showvolume
17426
17427 Convert input audio volume to a video output.
17428
17429 The filter accepts the following options:
17430
17431 @table @option
17432 @item rate, r
17433 Set video rate.
17434
17435 @item b
17436 Set border width, allowed range is [0, 5]. Default is 1.
17437
17438 @item w
17439 Set channel width, allowed range is [80, 8192]. Default is 400.
17440
17441 @item h
17442 Set channel height, allowed range is [1, 900]. Default is 20.
17443
17444 @item f
17445 Set fade, allowed range is [0.001, 1]. Default is 0.95.
17446
17447 @item c
17448 Set volume color expression.
17449
17450 The expression can use the following variables:
17451
17452 @table @option
17453 @item VOLUME
17454 Current max volume of channel in dB.
17455
17456 @item PEAK
17457 Current peak.
17458
17459 @item CHANNEL
17460 Current channel number, starting from 0.
17461 @end table
17462
17463 @item t
17464 If set, displays channel names. Default is enabled.
17465
17466 @item v
17467 If set, displays volume values. Default is enabled.
17468
17469 @item o
17470 Set orientation, can be @code{horizontal} or @code{vertical},
17471 default is @code{horizontal}.
17472
17473 @item s
17474 Set step size, allowed range s [0, 5]. Default is 0, which means
17475 step is disabled.
17476 @end table
17477
17478 @section showwaves
17479
17480 Convert input audio to a video output, representing the samples waves.
17481
17482 The filter accepts the following options:
17483
17484 @table @option
17485 @item size, s
17486 Specify the video size for the output. For the syntax of this option, check the
17487 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17488 Default value is @code{600x240}.
17489
17490 @item mode
17491 Set display mode.
17492
17493 Available values are:
17494 @table @samp
17495 @item point
17496 Draw a point for each sample.
17497
17498 @item line
17499 Draw a vertical line for each sample.
17500
17501 @item p2p
17502 Draw a point for each sample and a line between them.
17503
17504 @item cline
17505 Draw a centered vertical line for each sample.
17506 @end table
17507
17508 Default value is @code{point}.
17509
17510 @item n
17511 Set the number of samples which are printed on the same column. A
17512 larger value will decrease the frame rate. Must be a positive
17513 integer. This option can be set only if the value for @var{rate}
17514 is not explicitly specified.
17515
17516 @item rate, r
17517 Set the (approximate) output frame rate. This is done by setting the
17518 option @var{n}. Default value is "25".
17519
17520 @item split_channels
17521 Set if channels should be drawn separately or overlap. Default value is 0.
17522
17523 @item colors
17524 Set colors separated by '|' which are going to be used for drawing of each channel.
17525
17526 @item scale
17527 Set amplitude scale.
17528
17529 Available values are:
17530 @table @samp
17531 @item lin
17532 Linear.
17533
17534 @item log
17535 Logarithmic.
17536
17537 @item sqrt
17538 Square root.
17539
17540 @item cbrt
17541 Cubic root.
17542 @end table
17543
17544 Default is linear.
17545 @end table
17546
17547 @subsection Examples
17548
17549 @itemize
17550 @item
17551 Output the input file audio and the corresponding video representation
17552 at the same time:
17553 @example
17554 amovie=a.mp3,asplit[out0],showwaves[out1]
17555 @end example
17556
17557 @item
17558 Create a synthetic signal and show it with showwaves, forcing a
17559 frame rate of 30 frames per second:
17560 @example
17561 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
17562 @end example
17563 @end itemize
17564
17565 @section showwavespic
17566
17567 Convert input audio to a single video frame, representing the samples waves.
17568
17569 The filter accepts the following options:
17570
17571 @table @option
17572 @item size, s
17573 Specify the video size for the output. For the syntax of this option, check the
17574 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17575 Default value is @code{600x240}.
17576
17577 @item split_channels
17578 Set if channels should be drawn separately or overlap. Default value is 0.
17579
17580 @item colors
17581 Set colors separated by '|' which are going to be used for drawing of each channel.
17582
17583 @item scale
17584 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
17585 Default is linear.
17586 @end table
17587
17588 @subsection Examples
17589
17590 @itemize
17591 @item
17592 Extract a channel split representation of the wave form of a whole audio track
17593 in a 1024x800 picture using @command{ffmpeg}:
17594 @example
17595 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
17596 @end example
17597 @end itemize
17598
17599 @section sidedata, asidedata
17600
17601 Delete frame side data, or select frames based on it.
17602
17603 This filter accepts the following options:
17604
17605 @table @option
17606 @item mode
17607 Set mode of operation of the filter.
17608
17609 Can be one of the following:
17610
17611 @table @samp
17612 @item select
17613 Select every frame with side data of @code{type}.
17614
17615 @item delete
17616 Delete side data of @code{type}. If @code{type} is not set, delete all side
17617 data in the frame.
17618
17619 @end table
17620
17621 @item type
17622 Set side data type used with all modes. Must be set for @code{select} mode. For
17623 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
17624 in @file{libavutil/frame.h}. For example, to choose
17625 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
17626
17627 @end table
17628
17629 @section spectrumsynth
17630
17631 Sythesize audio from 2 input video spectrums, first input stream represents
17632 magnitude across time and second represents phase across time.
17633 The filter will transform from frequency domain as displayed in videos back
17634 to time domain as presented in audio output.
17635
17636 This filter is primarly created for reversing processed @ref{showspectrum}
17637 filter outputs, but can synthesize sound from other spectrograms too.
17638 But in such case results are going to be poor if the phase data is not
17639 available, because in such cases phase data need to be recreated, usually
17640 its just recreated from random noise.
17641 For best results use gray only output (@code{channel} color mode in
17642 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
17643 @code{lin} scale for phase video. To produce phase, for 2nd video, use
17644 @code{data} option. Inputs videos should generally use @code{fullframe}
17645 slide mode as that saves resources needed for decoding video.
17646
17647 The filter accepts the following options:
17648
17649 @table @option
17650 @item sample_rate
17651 Specify sample rate of output audio, the sample rate of audio from which
17652 spectrum was generated may differ.
17653
17654 @item channels
17655 Set number of channels represented in input video spectrums.
17656
17657 @item scale
17658 Set scale which was used when generating magnitude input spectrum.
17659 Can be @code{lin} or @code{log}. Default is @code{log}.
17660
17661 @item slide
17662 Set slide which was used when generating inputs spectrums.
17663 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
17664 Default is @code{fullframe}.
17665
17666 @item win_func
17667 Set window function used for resynthesis.
17668
17669 @item overlap
17670 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17671 which means optimal overlap for selected window function will be picked.
17672
17673 @item orientation
17674 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
17675 Default is @code{vertical}.
17676 @end table
17677
17678 @subsection Examples
17679
17680 @itemize
17681 @item
17682 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
17683 then resynthesize videos back to audio with spectrumsynth:
17684 @example
17685 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
17686 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
17687 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
17688 @end example
17689 @end itemize
17690
17691 @section split, asplit
17692
17693 Split input into several identical outputs.
17694
17695 @code{asplit} works with audio input, @code{split} with video.
17696
17697 The filter accepts a single parameter which specifies the number of outputs. If
17698 unspecified, it defaults to 2.
17699
17700 @subsection Examples
17701
17702 @itemize
17703 @item
17704 Create two separate outputs from the same input:
17705 @example
17706 [in] split [out0][out1]
17707 @end example
17708
17709 @item
17710 To create 3 or more outputs, you need to specify the number of
17711 outputs, like in:
17712 @example
17713 [in] asplit=3 [out0][out1][out2]
17714 @end example
17715
17716 @item
17717 Create two separate outputs from the same input, one cropped and
17718 one padded:
17719 @example
17720 [in] split [splitout1][splitout2];
17721 [splitout1] crop=100:100:0:0    [cropout];
17722 [splitout2] pad=200:200:100:100 [padout];
17723 @end example
17724
17725 @item
17726 Create 5 copies of the input audio with @command{ffmpeg}:
17727 @example
17728 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
17729 @end example
17730 @end itemize
17731
17732 @section zmq, azmq
17733
17734 Receive commands sent through a libzmq client, and forward them to
17735 filters in the filtergraph.
17736
17737 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
17738 must be inserted between two video filters, @code{azmq} between two
17739 audio filters.
17740
17741 To enable these filters you need to install the libzmq library and
17742 headers and configure FFmpeg with @code{--enable-libzmq}.
17743
17744 For more information about libzmq see:
17745 @url{http://www.zeromq.org/}
17746
17747 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
17748 receives messages sent through a network interface defined by the
17749 @option{bind_address} option.
17750
17751 The received message must be in the form:
17752 @example
17753 @var{TARGET} @var{COMMAND} [@var{ARG}]
17754 @end example
17755
17756 @var{TARGET} specifies the target of the command, usually the name of
17757 the filter class or a specific filter instance name.
17758
17759 @var{COMMAND} specifies the name of the command for the target filter.
17760
17761 @var{ARG} is optional and specifies the optional argument list for the
17762 given @var{COMMAND}.
17763
17764 Upon reception, the message is processed and the corresponding command
17765 is injected into the filtergraph. Depending on the result, the filter
17766 will send a reply to the client, adopting the format:
17767 @example
17768 @var{ERROR_CODE} @var{ERROR_REASON}
17769 @var{MESSAGE}
17770 @end example
17771
17772 @var{MESSAGE} is optional.
17773
17774 @subsection Examples
17775
17776 Look at @file{tools/zmqsend} for an example of a zmq client which can
17777 be used to send commands processed by these filters.
17778
17779 Consider the following filtergraph generated by @command{ffplay}
17780 @example
17781 ffplay -dumpgraph 1 -f lavfi "
17782 color=s=100x100:c=red  [l];
17783 color=s=100x100:c=blue [r];
17784 nullsrc=s=200x100, zmq [bg];
17785 [bg][l]   overlay      [bg+l];
17786 [bg+l][r] overlay=x=100 "
17787 @end example
17788
17789 To change the color of the left side of the video, the following
17790 command can be used:
17791 @example
17792 echo Parsed_color_0 c yellow | tools/zmqsend
17793 @end example
17794
17795 To change the right side:
17796 @example
17797 echo Parsed_color_1 c pink | tools/zmqsend
17798 @end example
17799
17800 @c man end MULTIMEDIA FILTERS
17801
17802 @chapter Multimedia Sources
17803 @c man begin MULTIMEDIA SOURCES
17804
17805 Below is a description of the currently available multimedia sources.
17806
17807 @section amovie
17808
17809 This is the same as @ref{movie} source, except it selects an audio
17810 stream by default.
17811
17812 @anchor{movie}
17813 @section movie
17814
17815 Read audio and/or video stream(s) from a movie container.
17816
17817 It accepts the following parameters:
17818
17819 @table @option
17820 @item filename
17821 The name of the resource to read (not necessarily a file; it can also be a
17822 device or a stream accessed through some protocol).
17823
17824 @item format_name, f
17825 Specifies the format assumed for the movie to read, and can be either
17826 the name of a container or an input device. If not specified, the
17827 format is guessed from @var{movie_name} or by probing.
17828
17829 @item seek_point, sp
17830 Specifies the seek point in seconds. The frames will be output
17831 starting from this seek point. The parameter is evaluated with
17832 @code{av_strtod}, so the numerical value may be suffixed by an IS
17833 postfix. The default value is "0".
17834
17835 @item streams, s
17836 Specifies the streams to read. Several streams can be specified,
17837 separated by "+". The source will then have as many outputs, in the
17838 same order. The syntax is explained in the ``Stream specifiers''
17839 section in the ffmpeg manual. Two special names, "dv" and "da" specify
17840 respectively the default (best suited) video and audio stream. Default
17841 is "dv", or "da" if the filter is called as "amovie".
17842
17843 @item stream_index, si
17844 Specifies the index of the video stream to read. If the value is -1,
17845 the most suitable video stream will be automatically selected. The default
17846 value is "-1". Deprecated. If the filter is called "amovie", it will select
17847 audio instead of video.
17848
17849 @item loop
17850 Specifies how many times to read the stream in sequence.
17851 If the value is less than 1, the stream will be read again and again.
17852 Default value is "1".
17853
17854 Note that when the movie is looped the source timestamps are not
17855 changed, so it will generate non monotonically increasing timestamps.
17856
17857 @item discontinuity
17858 Specifies the time difference between frames above which the point is
17859 considered a timestamp discontinuity which is removed by adjusting the later
17860 timestamps.
17861 @end table
17862
17863 It allows overlaying a second video on top of the main input of
17864 a filtergraph, as shown in this graph:
17865 @example
17866 input -----------> deltapts0 --> overlay --> output
17867                                     ^
17868                                     |
17869 movie --> scale--> deltapts1 -------+
17870 @end example
17871 @subsection Examples
17872
17873 @itemize
17874 @item
17875 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
17876 on top of the input labelled "in":
17877 @example
17878 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
17879 [in] setpts=PTS-STARTPTS [main];
17880 [main][over] overlay=16:16 [out]
17881 @end example
17882
17883 @item
17884 Read from a video4linux2 device, and overlay it on top of the input
17885 labelled "in":
17886 @example
17887 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
17888 [in] setpts=PTS-STARTPTS [main];
17889 [main][over] overlay=16:16 [out]
17890 @end example
17891
17892 @item
17893 Read the first video stream and the audio stream with id 0x81 from
17894 dvd.vob; the video is connected to the pad named "video" and the audio is
17895 connected to the pad named "audio":
17896 @example
17897 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
17898 @end example
17899 @end itemize
17900
17901 @subsection Commands
17902
17903 Both movie and amovie support the following commands:
17904 @table @option
17905 @item seek
17906 Perform seek using "av_seek_frame".
17907 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
17908 @itemize
17909 @item
17910 @var{stream_index}: If stream_index is -1, a default
17911 stream is selected, and @var{timestamp} is automatically converted
17912 from AV_TIME_BASE units to the stream specific time_base.
17913 @item
17914 @var{timestamp}: Timestamp in AVStream.time_base units
17915 or, if no stream is specified, in AV_TIME_BASE units.
17916 @item
17917 @var{flags}: Flags which select direction and seeking mode.
17918 @end itemize
17919
17920 @item get_duration
17921 Get movie duration in AV_TIME_BASE units.
17922
17923 @end table
17924
17925 @c man end MULTIMEDIA SOURCES