]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
86a9599544e139efe3c1160c1804385d1550975a
[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 divide 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 raise 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 about 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 rms. Can be peak or 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 average. Can be average or maximum.
967 @end table
968
969 @section alimiter
970
971 The limiter prevents input signal from raising 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 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 signal 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 @end table
2553
2554 @item fixed
2555 If enabled, use fixed number of audio samples. This improves speed when
2556 filtering with large delay. Default is disabled.
2557
2558 @item multi
2559 Enable multichannels evaluation on gain. Default is disabled.
2560
2561 @item zero_phase
2562 Enable zero phase mode by substracting timestamp to compensate delay.
2563 Default is disabled.
2564 @end table
2565
2566 @subsection Examples
2567 @itemize
2568 @item
2569 lowpass at 1000 Hz:
2570 @example
2571 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2572 @end example
2573 @item
2574 lowpass at 1000 Hz with gain_entry:
2575 @example
2576 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2577 @end example
2578 @item
2579 custom equalization:
2580 @example
2581 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2582 @end example
2583 @item
2584 higher delay with zero phase to compensate delay:
2585 @example
2586 firequalizer=delay=0.1:fixed=on:zero_phase=on
2587 @end example
2588 @item
2589 lowpass on left channel, highpass on right channel:
2590 @example
2591 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2592 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2593 @end example
2594 @end itemize
2595
2596 @section flanger
2597 Apply a flanging effect to the audio.
2598
2599 The filter accepts the following options:
2600
2601 @table @option
2602 @item delay
2603 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2604
2605 @item depth
2606 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2607
2608 @item regen
2609 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2610 Default value is 0.
2611
2612 @item width
2613 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2614 Default value is 71.
2615
2616 @item speed
2617 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2618
2619 @item shape
2620 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2621 Default value is @var{sinusoidal}.
2622
2623 @item phase
2624 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2625 Default value is 25.
2626
2627 @item interp
2628 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2629 Default is @var{linear}.
2630 @end table
2631
2632 @section hdcd
2633
2634 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
2635 embedded HDCD codes is expanded into a 20-bit PCM stream.
2636
2637 The filter supports the Peak Extend and Low-level Gain Adjustment features
2638 of HDCD, and detects the Transient Filter flag.
2639
2640 @example
2641 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
2642 @end example
2643
2644 When using the filter with wav, note the default encoding for wav is 16-bit,
2645 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
2646 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
2647 @example
2648 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
2649 ffmpeg -i HDCD16.wav -af hdcd -acodec pcm_s24le OUT24.wav
2650 @end example
2651
2652 The filter accepts the following options:
2653
2654 @table @option
2655 @item disable_autoconvert
2656 Disable any automatic format conversion or resampling in the filter graph.
2657
2658 @item process_stereo
2659 Process the stereo channels together. If target_gain does not match between
2660 channels, consider it invalid and use the last valid target_gain.
2661
2662 @item cdt_ms
2663 Set the code detect timer period in ms.
2664
2665 @item force_pe
2666 Always extend peaks above -3dBFS even if PE isn't signaled.
2667
2668 @item analyze_mode
2669 Replace audio with a solid tone and adjust the amplitude to signal some
2670 specific aspect of the decoding process. The output file can be loaded in
2671 an audio editor alongside the original to aid analysis.
2672
2673 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
2674
2675 Modes are:
2676 @table @samp
2677 @item 0, off
2678 Disabled
2679 @item 1, lle
2680 Gain adjustment level at each sample
2681 @item 2, pe
2682 Samples where peak extend occurs
2683 @item 3, cdt
2684 Samples where the code detect timer is active
2685 @item 4, tgm
2686 Samples where the target gain does not match between channels
2687 @end table
2688 @end table
2689
2690 @section highpass
2691
2692 Apply a high-pass filter with 3dB point frequency.
2693 The filter can be either single-pole, or double-pole (the default).
2694 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2695
2696 The filter accepts the following options:
2697
2698 @table @option
2699 @item frequency, f
2700 Set frequency in Hz. Default is 3000.
2701
2702 @item poles, p
2703 Set number of poles. Default is 2.
2704
2705 @item width_type
2706 Set method to specify band-width of filter.
2707 @table @option
2708 @item h
2709 Hz
2710 @item q
2711 Q-Factor
2712 @item o
2713 octave
2714 @item s
2715 slope
2716 @end table
2717
2718 @item width, w
2719 Specify the band-width of a filter in width_type units.
2720 Applies only to double-pole filter.
2721 The default is 0.707q and gives a Butterworth response.
2722 @end table
2723
2724 @section join
2725
2726 Join multiple input streams into one multi-channel stream.
2727
2728 It accepts the following parameters:
2729 @table @option
2730
2731 @item inputs
2732 The number of input streams. It defaults to 2.
2733
2734 @item channel_layout
2735 The desired output channel layout. It defaults to stereo.
2736
2737 @item map
2738 Map channels from inputs to output. The argument is a '|'-separated list of
2739 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2740 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2741 can be either the name of the input channel (e.g. FL for front left) or its
2742 index in the specified input stream. @var{out_channel} is the name of the output
2743 channel.
2744 @end table
2745
2746 The filter will attempt to guess the mappings when they are not specified
2747 explicitly. It does so by first trying to find an unused matching input channel
2748 and if that fails it picks the first unused input channel.
2749
2750 Join 3 inputs (with properly set channel layouts):
2751 @example
2752 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2753 @end example
2754
2755 Build a 5.1 output from 6 single-channel streams:
2756 @example
2757 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2758 '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'
2759 out
2760 @end example
2761
2762 @section ladspa
2763
2764 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2765
2766 To enable compilation of this filter you need to configure FFmpeg with
2767 @code{--enable-ladspa}.
2768
2769 @table @option
2770 @item file, f
2771 Specifies the name of LADSPA plugin library to load. If the environment
2772 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2773 each one of the directories specified by the colon separated list in
2774 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2775 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2776 @file{/usr/lib/ladspa/}.
2777
2778 @item plugin, p
2779 Specifies the plugin within the library. Some libraries contain only
2780 one plugin, but others contain many of them. If this is not set filter
2781 will list all available plugins within the specified library.
2782
2783 @item controls, c
2784 Set the '|' separated list of controls which are zero or more floating point
2785 values that determine the behavior of the loaded plugin (for example delay,
2786 threshold or gain).
2787 Controls need to be defined using the following syntax:
2788 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2789 @var{valuei} is the value set on the @var{i}-th control.
2790 Alternatively they can be also defined using the following syntax:
2791 @var{value0}|@var{value1}|@var{value2}|..., where
2792 @var{valuei} is the value set on the @var{i}-th control.
2793 If @option{controls} is set to @code{help}, all available controls and
2794 their valid ranges are printed.
2795
2796 @item sample_rate, s
2797 Specify the sample rate, default to 44100. Only used if plugin have
2798 zero inputs.
2799
2800 @item nb_samples, n
2801 Set the number of samples per channel per each output frame, default
2802 is 1024. Only used if plugin have zero inputs.
2803
2804 @item duration, d
2805 Set the minimum duration of the sourced audio. See
2806 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2807 for the accepted syntax.
2808 Note that the resulting duration may be greater than the specified duration,
2809 as the generated audio is always cut at the end of a complete frame.
2810 If not specified, or the expressed duration is negative, the audio is
2811 supposed to be generated forever.
2812 Only used if plugin have zero inputs.
2813
2814 @end table
2815
2816 @subsection Examples
2817
2818 @itemize
2819 @item
2820 List all available plugins within amp (LADSPA example plugin) library:
2821 @example
2822 ladspa=file=amp
2823 @end example
2824
2825 @item
2826 List all available controls and their valid ranges for @code{vcf_notch}
2827 plugin from @code{VCF} library:
2828 @example
2829 ladspa=f=vcf:p=vcf_notch:c=help
2830 @end example
2831
2832 @item
2833 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2834 plugin library:
2835 @example
2836 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2837 @end example
2838
2839 @item
2840 Add reverberation to the audio using TAP-plugins
2841 (Tom's Audio Processing plugins):
2842 @example
2843 ladspa=file=tap_reverb:tap_reverb
2844 @end example
2845
2846 @item
2847 Generate white noise, with 0.2 amplitude:
2848 @example
2849 ladspa=file=cmt:noise_source_white:c=c0=.2
2850 @end example
2851
2852 @item
2853 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2854 @code{C* Audio Plugin Suite} (CAPS) library:
2855 @example
2856 ladspa=file=caps:Click:c=c1=20'
2857 @end example
2858
2859 @item
2860 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2861 @example
2862 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2863 @end example
2864
2865 @item
2866 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2867 @code{SWH Plugins} collection:
2868 @example
2869 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2870 @end example
2871
2872 @item
2873 Attenuate low frequencies using Multiband EQ from Steve Harris
2874 @code{SWH Plugins} collection:
2875 @example
2876 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2877 @end example
2878 @end itemize
2879
2880 @subsection Commands
2881
2882 This filter supports the following commands:
2883 @table @option
2884 @item cN
2885 Modify the @var{N}-th control value.
2886
2887 If the specified value is not valid, it is ignored and prior one is kept.
2888 @end table
2889
2890 @section loudnorm
2891
2892 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
2893 Support for both single pass (livestreams, files) and double pass (files) modes.
2894 This algorithm can target IL, LRA, and maximum true peak.
2895
2896 To enable compilation of this filter you need to configure FFmpeg with
2897 @code{--enable-libebur128}.
2898
2899 The filter accepts the following options:
2900
2901 @table @option
2902 @item I, i
2903 Set integrated loudness target.
2904 Range is -70.0 - -5.0. Default value is -24.0.
2905
2906 @item LRA, lra
2907 Set loudness range target.
2908 Range is 1.0 - 20.0. Default value is 7.0.
2909
2910 @item TP, tp
2911 Set maximum true peak.
2912 Range is -9.0 - +0.0. Default value is -2.0.
2913
2914 @item measured_I, measured_i
2915 Measured IL of input file.
2916 Range is -99.0 - +0.0.
2917
2918 @item measured_LRA, measured_lra
2919 Measured LRA of input file.
2920 Range is  0.0 - 99.0.
2921
2922 @item measured_TP, measured_tp
2923 Measured true peak of input file.
2924 Range is  -99.0 - +99.0.
2925
2926 @item measured_thresh
2927 Measured threshold of input file.
2928 Range is -99.0 - +0.0.
2929
2930 @item offset
2931 Set offset gain. Gain is applied before the true-peak limiter.
2932 Range is  -99.0 - +99.0. Default is +0.0.
2933
2934 @item linear
2935 Normalize linearly if possible.
2936 measured_I, measured_LRA, measured_TP, and measured_thresh must also
2937 to be specified in order to use this mode.
2938 Options are true or false. Default is true.
2939
2940 @item dual_mono
2941 Treat mono input files as "dual-mono". If a mono file is intended for playback
2942 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
2943 If set to @code{true}, this option will compensate for this effect.
2944 Multi-channel input files are not affected by this option.
2945 Options are true or false. Default is false.
2946
2947 @item print_format
2948 Set print format for stats. Options are summary, json, or none.
2949 Default value is none.
2950 @end table
2951
2952 @section lowpass
2953
2954 Apply a low-pass filter with 3dB point frequency.
2955 The filter can be either single-pole or double-pole (the default).
2956 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2957
2958 The filter accepts the following options:
2959
2960 @table @option
2961 @item frequency, f
2962 Set frequency in Hz. Default is 500.
2963
2964 @item poles, p
2965 Set number of poles. Default is 2.
2966
2967 @item width_type
2968 Set method to specify band-width of filter.
2969 @table @option
2970 @item h
2971 Hz
2972 @item q
2973 Q-Factor
2974 @item o
2975 octave
2976 @item s
2977 slope
2978 @end table
2979
2980 @item width, w
2981 Specify the band-width of a filter in width_type units.
2982 Applies only to double-pole filter.
2983 The default is 0.707q and gives a Butterworth response.
2984 @end table
2985
2986 @anchor{pan}
2987 @section pan
2988
2989 Mix channels with specific gain levels. The filter accepts the output
2990 channel layout followed by a set of channels definitions.
2991
2992 This filter is also designed to efficiently remap the channels of an audio
2993 stream.
2994
2995 The filter accepts parameters of the form:
2996 "@var{l}|@var{outdef}|@var{outdef}|..."
2997
2998 @table @option
2999 @item l
3000 output channel layout or number of channels
3001
3002 @item outdef
3003 output channel specification, of the form:
3004 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
3005
3006 @item out_name
3007 output channel to define, either a channel name (FL, FR, etc.) or a channel
3008 number (c0, c1, etc.)
3009
3010 @item gain
3011 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3012
3013 @item in_name
3014 input channel to use, see out_name for details; it is not possible to mix
3015 named and numbered input channels
3016 @end table
3017
3018 If the `=' in a channel specification is replaced by `<', then the gains for
3019 that specification will be renormalized so that the total is 1, thus
3020 avoiding clipping noise.
3021
3022 @subsection Mixing examples
3023
3024 For example, if you want to down-mix from stereo to mono, but with a bigger
3025 factor for the left channel:
3026 @example
3027 pan=1c|c0=0.9*c0+0.1*c1
3028 @end example
3029
3030 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3031 7-channels surround:
3032 @example
3033 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3034 @end example
3035
3036 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3037 that should be preferred (see "-ac" option) unless you have very specific
3038 needs.
3039
3040 @subsection Remapping examples
3041
3042 The channel remapping will be effective if, and only if:
3043
3044 @itemize
3045 @item gain coefficients are zeroes or ones,
3046 @item only one input per channel output,
3047 @end itemize
3048
3049 If all these conditions are satisfied, the filter will notify the user ("Pure
3050 channel mapping detected"), and use an optimized and lossless method to do the
3051 remapping.
3052
3053 For example, if you have a 5.1 source and want a stereo audio stream by
3054 dropping the extra channels:
3055 @example
3056 pan="stereo| c0=FL | c1=FR"
3057 @end example
3058
3059 Given the same source, you can also switch front left and front right channels
3060 and keep the input channel layout:
3061 @example
3062 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3063 @end example
3064
3065 If the input is a stereo audio stream, you can mute the front left channel (and
3066 still keep the stereo channel layout) with:
3067 @example
3068 pan="stereo|c1=c1"
3069 @end example
3070
3071 Still with a stereo audio stream input, you can copy the right channel in both
3072 front left and right:
3073 @example
3074 pan="stereo| c0=FR | c1=FR"
3075 @end example
3076
3077 @section replaygain
3078
3079 ReplayGain scanner filter. This filter takes an audio stream as an input and
3080 outputs it unchanged.
3081 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3082
3083 @section resample
3084
3085 Convert the audio sample format, sample rate and channel layout. It is
3086 not meant to be used directly.
3087
3088 @section rubberband
3089 Apply time-stretching and pitch-shifting with librubberband.
3090
3091 The filter accepts the following options:
3092
3093 @table @option
3094 @item tempo
3095 Set tempo scale factor.
3096
3097 @item pitch
3098 Set pitch scale factor.
3099
3100 @item transients
3101 Set transients detector.
3102 Possible values are:
3103 @table @var
3104 @item crisp
3105 @item mixed
3106 @item smooth
3107 @end table
3108
3109 @item detector
3110 Set detector.
3111 Possible values are:
3112 @table @var
3113 @item compound
3114 @item percussive
3115 @item soft
3116 @end table
3117
3118 @item phase
3119 Set phase.
3120 Possible values are:
3121 @table @var
3122 @item laminar
3123 @item independent
3124 @end table
3125
3126 @item window
3127 Set processing window size.
3128 Possible values are:
3129 @table @var
3130 @item standard
3131 @item short
3132 @item long
3133 @end table
3134
3135 @item smoothing
3136 Set smoothing.
3137 Possible values are:
3138 @table @var
3139 @item off
3140 @item on
3141 @end table
3142
3143 @item formant
3144 Enable formant preservation when shift pitching.
3145 Possible values are:
3146 @table @var
3147 @item shifted
3148 @item preserved
3149 @end table
3150
3151 @item pitchq
3152 Set pitch quality.
3153 Possible values are:
3154 @table @var
3155 @item quality
3156 @item speed
3157 @item consistency
3158 @end table
3159
3160 @item channels
3161 Set channels.
3162 Possible values are:
3163 @table @var
3164 @item apart
3165 @item together
3166 @end table
3167 @end table
3168
3169 @section sidechaincompress
3170
3171 This filter acts like normal compressor but has the ability to compress
3172 detected signal using second input signal.
3173 It needs two input streams and returns one output stream.
3174 First input stream will be processed depending on second stream signal.
3175 The filtered signal then can be filtered with other filters in later stages of
3176 processing. See @ref{pan} and @ref{amerge} filter.
3177
3178 The filter accepts the following options:
3179
3180 @table @option
3181 @item level_in
3182 Set input gain. Default is 1. Range is between 0.015625 and 64.
3183
3184 @item threshold
3185 If a signal of second stream raises above this level it will affect the gain
3186 reduction of first stream.
3187 By default is 0.125. Range is between 0.00097563 and 1.
3188
3189 @item ratio
3190 Set a ratio about which the signal is reduced. 1:2 means that if the level
3191 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3192 Default is 2. Range is between 1 and 20.
3193
3194 @item attack
3195 Amount of milliseconds the signal has to rise above the threshold before gain
3196 reduction starts. Default is 20. Range is between 0.01 and 2000.
3197
3198 @item release
3199 Amount of milliseconds the signal has to fall below the threshold before
3200 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3201
3202 @item makeup
3203 Set the amount by how much signal will be amplified after processing.
3204 Default is 2. Range is from 1 and 64.
3205
3206 @item knee
3207 Curve the sharp knee around the threshold to enter gain reduction more softly.
3208 Default is 2.82843. Range is between 1 and 8.
3209
3210 @item link
3211 Choose if the @code{average} level between all channels of side-chain stream
3212 or the louder(@code{maximum}) channel of side-chain stream affects the
3213 reduction. Default is @code{average}.
3214
3215 @item detection
3216 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3217 of @code{rms}. Default is @code{rms} which is mainly smoother.
3218
3219 @item level_sc
3220 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3221
3222 @item mix
3223 How much to use compressed signal in output. Default is 1.
3224 Range is between 0 and 1.
3225 @end table
3226
3227 @subsection Examples
3228
3229 @itemize
3230 @item
3231 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3232 depending on the signal of 2nd input and later compressed signal to be
3233 merged with 2nd input:
3234 @example
3235 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3236 @end example
3237 @end itemize
3238
3239 @section sidechaingate
3240
3241 A sidechain gate acts like a normal (wideband) gate but has the ability to
3242 filter the detected signal before sending it to the gain reduction stage.
3243 Normally a gate uses the full range signal to detect a level above the
3244 threshold.
3245 For example: If you cut all lower frequencies from your sidechain signal
3246 the gate will decrease the volume of your track only if not enough highs
3247 appear. With this technique you are able to reduce the resonation of a
3248 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3249 guitar.
3250 It needs two input streams and returns one output stream.
3251 First input stream will be processed depending on second stream signal.
3252
3253 The filter accepts the following options:
3254
3255 @table @option
3256 @item level_in
3257 Set input level before filtering.
3258 Default is 1. Allowed range is from 0.015625 to 64.
3259
3260 @item range
3261 Set the level of gain reduction when the signal is below the threshold.
3262 Default is 0.06125. Allowed range is from 0 to 1.
3263
3264 @item threshold
3265 If a signal rises above this level the gain reduction is released.
3266 Default is 0.125. Allowed range is from 0 to 1.
3267
3268 @item ratio
3269 Set a ratio about which the signal is reduced.
3270 Default is 2. Allowed range is from 1 to 9000.
3271
3272 @item attack
3273 Amount of milliseconds the signal has to rise above the threshold before gain
3274 reduction stops.
3275 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3276
3277 @item release
3278 Amount of milliseconds the signal has to fall below the threshold before the
3279 reduction is increased again. Default is 250 milliseconds.
3280 Allowed range is from 0.01 to 9000.
3281
3282 @item makeup
3283 Set amount of amplification of signal after processing.
3284 Default is 1. Allowed range is from 1 to 64.
3285
3286 @item knee
3287 Curve the sharp knee around the threshold to enter gain reduction more softly.
3288 Default is 2.828427125. Allowed range is from 1 to 8.
3289
3290 @item detection
3291 Choose if exact signal should be taken for detection or an RMS like one.
3292 Default is rms. Can be peak or rms.
3293
3294 @item link
3295 Choose if the average level between all channels or the louder channel affects
3296 the reduction.
3297 Default is average. Can be average or maximum.
3298
3299 @item level_sc
3300 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3301 @end table
3302
3303 @section silencedetect
3304
3305 Detect silence in an audio stream.
3306
3307 This filter logs a message when it detects that the input audio volume is less
3308 or equal to a noise tolerance value for a duration greater or equal to the
3309 minimum detected noise duration.
3310
3311 The printed times and duration are expressed in seconds.
3312
3313 The filter accepts the following options:
3314
3315 @table @option
3316 @item duration, d
3317 Set silence duration until notification (default is 2 seconds).
3318
3319 @item noise, n
3320 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3321 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3322 @end table
3323
3324 @subsection Examples
3325
3326 @itemize
3327 @item
3328 Detect 5 seconds of silence with -50dB noise tolerance:
3329 @example
3330 silencedetect=n=-50dB:d=5
3331 @end example
3332
3333 @item
3334 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3335 tolerance in @file{silence.mp3}:
3336 @example
3337 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3338 @end example
3339 @end itemize
3340
3341 @section silenceremove
3342
3343 Remove silence from the beginning, middle or end of the audio.
3344
3345 The filter accepts the following options:
3346
3347 @table @option
3348 @item start_periods
3349 This value is used to indicate if audio should be trimmed at beginning of
3350 the audio. A value of zero indicates no silence should be trimmed from the
3351 beginning. When specifying a non-zero value, it trims audio up until it
3352 finds non-silence. Normally, when trimming silence from beginning of audio
3353 the @var{start_periods} will be @code{1} but it can be increased to higher
3354 values to trim all audio up to specific count of non-silence periods.
3355 Default value is @code{0}.
3356
3357 @item start_duration
3358 Specify the amount of time that non-silence must be detected before it stops
3359 trimming audio. By increasing the duration, bursts of noises can be treated
3360 as silence and trimmed off. Default value is @code{0}.
3361
3362 @item start_threshold
3363 This indicates what sample value should be treated as silence. For digital
3364 audio, a value of @code{0} may be fine but for audio recorded from analog,
3365 you may wish to increase the value to account for background noise.
3366 Can be specified in dB (in case "dB" is appended to the specified value)
3367 or amplitude ratio. Default value is @code{0}.
3368
3369 @item stop_periods
3370 Set the count for trimming silence from the end of audio.
3371 To remove silence from the middle of a file, specify a @var{stop_periods}
3372 that is negative. This value is then treated as a positive value and is
3373 used to indicate the effect should restart processing as specified by
3374 @var{start_periods}, making it suitable for removing periods of silence
3375 in the middle of the audio.
3376 Default value is @code{0}.
3377
3378 @item stop_duration
3379 Specify a duration of silence that must exist before audio is not copied any
3380 more. By specifying a higher duration, silence that is wanted can be left in
3381 the audio.
3382 Default value is @code{0}.
3383
3384 @item stop_threshold
3385 This is the same as @option{start_threshold} but for trimming silence from
3386 the end of audio.
3387 Can be specified in dB (in case "dB" is appended to the specified value)
3388 or amplitude ratio. Default value is @code{0}.
3389
3390 @item leave_silence
3391 This indicate that @var{stop_duration} length of audio should be left intact
3392 at the beginning of each period of silence.
3393 For example, if you want to remove long pauses between words but do not want
3394 to remove the pauses completely. Default value is @code{0}.
3395
3396 @item detection
3397 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3398 and works better with digital silence which is exactly 0.
3399 Default value is @code{rms}.
3400
3401 @item window
3402 Set ratio used to calculate size of window for detecting silence.
3403 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3404 @end table
3405
3406 @subsection Examples
3407
3408 @itemize
3409 @item
3410 The following example shows how this filter can be used to start a recording
3411 that does not contain the delay at the start which usually occurs between
3412 pressing the record button and the start of the performance:
3413 @example
3414 silenceremove=1:5:0.02
3415 @end example
3416
3417 @item
3418 Trim all silence encountered from beginning to end where there is more than 1
3419 second of silence in audio:
3420 @example
3421 silenceremove=0:0:0:-1:1:-90dB
3422 @end example
3423 @end itemize
3424
3425 @section sofalizer
3426
3427 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3428 loudspeakers around the user for binaural listening via headphones (audio
3429 formats up to 9 channels supported).
3430 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3431 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3432 Austrian Academy of Sciences.
3433
3434 To enable compilation of this filter you need to configure FFmpeg with
3435 @code{--enable-netcdf}.
3436
3437 The filter accepts the following options:
3438
3439 @table @option
3440 @item sofa
3441 Set the SOFA file used for rendering.
3442
3443 @item gain
3444 Set gain applied to audio. Value is in dB. Default is 0.
3445
3446 @item rotation
3447 Set rotation of virtual loudspeakers in deg. Default is 0.
3448
3449 @item elevation
3450 Set elevation of virtual speakers in deg. Default is 0.
3451
3452 @item radius
3453 Set distance in meters between loudspeakers and the listener with near-field
3454 HRTFs. Default is 1.
3455
3456 @item type
3457 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3458 processing audio in time domain which is slow.
3459 @var{freq} is processing audio in frequency domain which is fast.
3460 Default is @var{freq}.
3461
3462 @item speakers
3463 Set custom positions of virtual loudspeakers. Syntax for this option is:
3464 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3465 Each virtual loudspeaker is described with short channel name following with
3466 azimuth and elevation in degreees.
3467 Each virtual loudspeaker description is separated by '|'.
3468 For example to override front left and front right channel positions use:
3469 'speakers=FL 45 15|FR 345 15'.
3470 Descriptions with unrecognised channel names are ignored.
3471 @end table
3472
3473 @subsection Examples
3474
3475 @itemize
3476 @item
3477 Using ClubFritz6 sofa file:
3478 @example
3479 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3480 @end example
3481
3482 @item
3483 Using ClubFritz12 sofa file and bigger radius with small rotation:
3484 @example
3485 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3486 @end example
3487
3488 @item
3489 Similar as above but with custom speaker positions for front left, front right, rear left and rear right
3490 and also with custom gain:
3491 @example
3492 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|RL 135|RR 225:gain=28"
3493 @end example
3494 @end itemize
3495
3496 @section stereotools
3497
3498 This filter has some handy utilities to manage stereo signals, for converting
3499 M/S stereo recordings to L/R signal while having control over the parameters
3500 or spreading the stereo image of master track.
3501
3502 The filter accepts the following options:
3503
3504 @table @option
3505 @item level_in
3506 Set input level before filtering for both channels. Defaults is 1.
3507 Allowed range is from 0.015625 to 64.
3508
3509 @item level_out
3510 Set output level after filtering for both channels. Defaults is 1.
3511 Allowed range is from 0.015625 to 64.
3512
3513 @item balance_in
3514 Set input balance between both channels. Default is 0.
3515 Allowed range is from -1 to 1.
3516
3517 @item balance_out
3518 Set output balance between both channels. Default is 0.
3519 Allowed range is from -1 to 1.
3520
3521 @item softclip
3522 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3523 clipping. Disabled by default.
3524
3525 @item mutel
3526 Mute the left channel. Disabled by default.
3527
3528 @item muter
3529 Mute the right channel. Disabled by default.
3530
3531 @item phasel
3532 Change the phase of the left channel. Disabled by default.
3533
3534 @item phaser
3535 Change the phase of the right channel. Disabled by default.
3536
3537 @item mode
3538 Set stereo mode. Available values are:
3539
3540 @table @samp
3541 @item lr>lr
3542 Left/Right to Left/Right, this is default.
3543
3544 @item lr>ms
3545 Left/Right to Mid/Side.
3546
3547 @item ms>lr
3548 Mid/Side to Left/Right.
3549
3550 @item lr>ll
3551 Left/Right to Left/Left.
3552
3553 @item lr>rr
3554 Left/Right to Right/Right.
3555
3556 @item lr>l+r
3557 Left/Right to Left + Right.
3558
3559 @item lr>rl
3560 Left/Right to Right/Left.
3561 @end table
3562
3563 @item slev
3564 Set level of side signal. Default is 1.
3565 Allowed range is from 0.015625 to 64.
3566
3567 @item sbal
3568 Set balance of side signal. Default is 0.
3569 Allowed range is from -1 to 1.
3570
3571 @item mlev
3572 Set level of the middle signal. Default is 1.
3573 Allowed range is from 0.015625 to 64.
3574
3575 @item mpan
3576 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3577
3578 @item base
3579 Set stereo base between mono and inversed channels. Default is 0.
3580 Allowed range is from -1 to 1.
3581
3582 @item delay
3583 Set delay in milliseconds how much to delay left from right channel and
3584 vice versa. Default is 0. Allowed range is from -20 to 20.
3585
3586 @item sclevel
3587 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3588
3589 @item phase
3590 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3591 @end table
3592
3593 @subsection Examples
3594
3595 @itemize
3596 @item
3597 Apply karaoke like effect:
3598 @example
3599 stereotools=mlev=0.015625
3600 @end example
3601
3602 @item
3603 Convert M/S signal to L/R:
3604 @example
3605 "stereotools=mode=ms>lr"
3606 @end example
3607 @end itemize
3608
3609 @section stereowiden
3610
3611 This filter enhance the stereo effect by suppressing signal common to both
3612 channels and by delaying the signal of left into right and vice versa,
3613 thereby widening the stereo effect.
3614
3615 The filter accepts the following options:
3616
3617 @table @option
3618 @item delay
3619 Time in milliseconds of the delay of left signal into right and vice versa.
3620 Default is 20 milliseconds.
3621
3622 @item feedback
3623 Amount of gain in delayed signal into right and vice versa. Gives a delay
3624 effect of left signal in right output and vice versa which gives widening
3625 effect. Default is 0.3.
3626
3627 @item crossfeed
3628 Cross feed of left into right with inverted phase. This helps in suppressing
3629 the mono. If the value is 1 it will cancel all the signal common to both
3630 channels. Default is 0.3.
3631
3632 @item drymix
3633 Set level of input signal of original channel. Default is 0.8.
3634 @end table
3635
3636 @section treble
3637
3638 Boost or cut treble (upper) frequencies of the audio using a two-pole
3639 shelving filter with a response similar to that of a standard
3640 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3641
3642 The filter accepts the following options:
3643
3644 @table @option
3645 @item gain, g
3646 Give the gain at whichever is the lower of ~22 kHz and the
3647 Nyquist frequency. Its useful range is about -20 (for a large cut)
3648 to +20 (for a large boost). Beware of clipping when using a positive gain.
3649
3650 @item frequency, f
3651 Set the filter's central frequency and so can be used
3652 to extend or reduce the frequency range to be boosted or cut.
3653 The default value is @code{3000} Hz.
3654
3655 @item width_type
3656 Set method to specify band-width of filter.
3657 @table @option
3658 @item h
3659 Hz
3660 @item q
3661 Q-Factor
3662 @item o
3663 octave
3664 @item s
3665 slope
3666 @end table
3667
3668 @item width, w
3669 Determine how steep is the filter's shelf transition.
3670 @end table
3671
3672 @section tremolo
3673
3674 Sinusoidal amplitude modulation.
3675
3676 The filter accepts the following options:
3677
3678 @table @option
3679 @item f
3680 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3681 (20 Hz or lower) will result in a tremolo effect.
3682 This filter may also be used as a ring modulator by specifying
3683 a modulation frequency higher than 20 Hz.
3684 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3685
3686 @item d
3687 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3688 Default value is 0.5.
3689 @end table
3690
3691 @section vibrato
3692
3693 Sinusoidal phase modulation.
3694
3695 The filter accepts the following options:
3696
3697 @table @option
3698 @item f
3699 Modulation frequency in Hertz.
3700 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3701
3702 @item d
3703 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3704 Default value is 0.5.
3705 @end table
3706
3707 @section volume
3708
3709 Adjust the input audio volume.
3710
3711 It accepts the following parameters:
3712 @table @option
3713
3714 @item volume
3715 Set audio volume expression.
3716
3717 Output values are clipped to the maximum value.
3718
3719 The output audio volume is given by the relation:
3720 @example
3721 @var{output_volume} = @var{volume} * @var{input_volume}
3722 @end example
3723
3724 The default value for @var{volume} is "1.0".
3725
3726 @item precision
3727 This parameter represents the mathematical precision.
3728
3729 It determines which input sample formats will be allowed, which affects the
3730 precision of the volume scaling.
3731
3732 @table @option
3733 @item fixed
3734 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3735 @item float
3736 32-bit floating-point; this limits input sample format to FLT. (default)
3737 @item double
3738 64-bit floating-point; this limits input sample format to DBL.
3739 @end table
3740
3741 @item replaygain
3742 Choose the behaviour on encountering ReplayGain side data in input frames.
3743
3744 @table @option
3745 @item drop
3746 Remove ReplayGain side data, ignoring its contents (the default).
3747
3748 @item ignore
3749 Ignore ReplayGain side data, but leave it in the frame.
3750
3751 @item track
3752 Prefer the track gain, if present.
3753
3754 @item album
3755 Prefer the album gain, if present.
3756 @end table
3757
3758 @item replaygain_preamp
3759 Pre-amplification gain in dB to apply to the selected replaygain gain.
3760
3761 Default value for @var{replaygain_preamp} is 0.0.
3762
3763 @item eval
3764 Set when the volume expression is evaluated.
3765
3766 It accepts the following values:
3767 @table @samp
3768 @item once
3769 only evaluate expression once during the filter initialization, or
3770 when the @samp{volume} command is sent
3771
3772 @item frame
3773 evaluate expression for each incoming frame
3774 @end table
3775
3776 Default value is @samp{once}.
3777 @end table
3778
3779 The volume expression can contain the following parameters.
3780
3781 @table @option
3782 @item n
3783 frame number (starting at zero)
3784 @item nb_channels
3785 number of channels
3786 @item nb_consumed_samples
3787 number of samples consumed by the filter
3788 @item nb_samples
3789 number of samples in the current frame
3790 @item pos
3791 original frame position in the file
3792 @item pts
3793 frame PTS
3794 @item sample_rate
3795 sample rate
3796 @item startpts
3797 PTS at start of stream
3798 @item startt
3799 time at start of stream
3800 @item t
3801 frame time
3802 @item tb
3803 timestamp timebase
3804 @item volume
3805 last set volume value
3806 @end table
3807
3808 Note that when @option{eval} is set to @samp{once} only the
3809 @var{sample_rate} and @var{tb} variables are available, all other
3810 variables will evaluate to NAN.
3811
3812 @subsection Commands
3813
3814 This filter supports the following commands:
3815 @table @option
3816 @item volume
3817 Modify the volume expression.
3818 The command accepts the same syntax of the corresponding option.
3819
3820 If the specified expression is not valid, it is kept at its current
3821 value.
3822 @item replaygain_noclip
3823 Prevent clipping by limiting the gain applied.
3824
3825 Default value for @var{replaygain_noclip} is 1.
3826
3827 @end table
3828
3829 @subsection Examples
3830
3831 @itemize
3832 @item
3833 Halve the input audio volume:
3834 @example
3835 volume=volume=0.5
3836 volume=volume=1/2
3837 volume=volume=-6.0206dB
3838 @end example
3839
3840 In all the above example the named key for @option{volume} can be
3841 omitted, for example like in:
3842 @example
3843 volume=0.5
3844 @end example
3845
3846 @item
3847 Increase input audio power by 6 decibels using fixed-point precision:
3848 @example
3849 volume=volume=6dB:precision=fixed
3850 @end example
3851
3852 @item
3853 Fade volume after time 10 with an annihilation period of 5 seconds:
3854 @example
3855 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3856 @end example
3857 @end itemize
3858
3859 @section volumedetect
3860
3861 Detect the volume of the input video.
3862
3863 The filter has no parameters. The input is not modified. Statistics about
3864 the volume will be printed in the log when the input stream end is reached.
3865
3866 In particular it will show the mean volume (root mean square), maximum
3867 volume (on a per-sample basis), and the beginning of a histogram of the
3868 registered volume values (from the maximum value to a cumulated 1/1000 of
3869 the samples).
3870
3871 All volumes are in decibels relative to the maximum PCM value.
3872
3873 @subsection Examples
3874
3875 Here is an excerpt of the output:
3876 @example
3877 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3878 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3879 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3880 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3881 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3882 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3883 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3884 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3885 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3886 @end example
3887
3888 It means that:
3889 @itemize
3890 @item
3891 The mean square energy is approximately -27 dB, or 10^-2.7.
3892 @item
3893 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3894 @item
3895 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3896 @end itemize
3897
3898 In other words, raising the volume by +4 dB does not cause any clipping,
3899 raising it by +5 dB causes clipping for 6 samples, etc.
3900
3901 @c man end AUDIO FILTERS
3902
3903 @chapter Audio Sources
3904 @c man begin AUDIO SOURCES
3905
3906 Below is a description of the currently available audio sources.
3907
3908 @section abuffer
3909
3910 Buffer audio frames, and make them available to the filter chain.
3911
3912 This source is mainly intended for a programmatic use, in particular
3913 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3914
3915 It accepts the following parameters:
3916 @table @option
3917
3918 @item time_base
3919 The timebase which will be used for timestamps of submitted frames. It must be
3920 either a floating-point number or in @var{numerator}/@var{denominator} form.
3921
3922 @item sample_rate
3923 The sample rate of the incoming audio buffers.
3924
3925 @item sample_fmt
3926 The sample format of the incoming audio buffers.
3927 Either a sample format name or its corresponding integer representation from
3928 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3929
3930 @item channel_layout
3931 The channel layout of the incoming audio buffers.
3932 Either a channel layout name from channel_layout_map in
3933 @file{libavutil/channel_layout.c} or its corresponding integer representation
3934 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3935
3936 @item channels
3937 The number of channels of the incoming audio buffers.
3938 If both @var{channels} and @var{channel_layout} are specified, then they
3939 must be consistent.
3940
3941 @end table
3942
3943 @subsection Examples
3944
3945 @example
3946 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3947 @end example
3948
3949 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3950 Since the sample format with name "s16p" corresponds to the number
3951 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3952 equivalent to:
3953 @example
3954 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3955 @end example
3956
3957 @section aevalsrc
3958
3959 Generate an audio signal specified by an expression.
3960
3961 This source accepts in input one or more expressions (one for each
3962 channel), which are evaluated and used to generate a corresponding
3963 audio signal.
3964
3965 This source accepts the following options:
3966
3967 @table @option
3968 @item exprs
3969 Set the '|'-separated expressions list for each separate channel. In case the
3970 @option{channel_layout} option is not specified, the selected channel layout
3971 depends on the number of provided expressions. Otherwise the last
3972 specified expression is applied to the remaining output channels.
3973
3974 @item channel_layout, c
3975 Set the channel layout. The number of channels in the specified layout
3976 must be equal to the number of specified expressions.
3977
3978 @item duration, d
3979 Set the minimum duration of the sourced audio. See
3980 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3981 for the accepted syntax.
3982 Note that the resulting duration may be greater than the specified
3983 duration, as the generated audio is always cut at the end of a
3984 complete frame.
3985
3986 If not specified, or the expressed duration is negative, the audio is
3987 supposed to be generated forever.
3988
3989 @item nb_samples, n
3990 Set the number of samples per channel per each output frame,
3991 default to 1024.
3992
3993 @item sample_rate, s
3994 Specify the sample rate, default to 44100.
3995 @end table
3996
3997 Each expression in @var{exprs} can contain the following constants:
3998
3999 @table @option
4000 @item n
4001 number of the evaluated sample, starting from 0
4002
4003 @item t
4004 time of the evaluated sample expressed in seconds, starting from 0
4005
4006 @item s
4007 sample rate
4008
4009 @end table
4010
4011 @subsection Examples
4012
4013 @itemize
4014 @item
4015 Generate silence:
4016 @example
4017 aevalsrc=0
4018 @end example
4019
4020 @item
4021 Generate a sin signal with frequency of 440 Hz, set sample rate to
4022 8000 Hz:
4023 @example
4024 aevalsrc="sin(440*2*PI*t):s=8000"
4025 @end example
4026
4027 @item
4028 Generate a two channels signal, specify the channel layout (Front
4029 Center + Back Center) explicitly:
4030 @example
4031 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4032 @end example
4033
4034 @item
4035 Generate white noise:
4036 @example
4037 aevalsrc="-2+random(0)"
4038 @end example
4039
4040 @item
4041 Generate an amplitude modulated signal:
4042 @example
4043 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4044 @end example
4045
4046 @item
4047 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4048 @example
4049 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4050 @end example
4051
4052 @end itemize
4053
4054 @section anullsrc
4055
4056 The null audio source, return unprocessed audio frames. It is mainly useful
4057 as a template and to be employed in analysis / debugging tools, or as
4058 the source for filters which ignore the input data (for example the sox
4059 synth filter).
4060
4061 This source accepts the following options:
4062
4063 @table @option
4064
4065 @item channel_layout, cl
4066
4067 Specifies the channel layout, and can be either an integer or a string
4068 representing a channel layout. The default value of @var{channel_layout}
4069 is "stereo".
4070
4071 Check the channel_layout_map definition in
4072 @file{libavutil/channel_layout.c} for the mapping between strings and
4073 channel layout values.
4074
4075 @item sample_rate, r
4076 Specifies the sample rate, and defaults to 44100.
4077
4078 @item nb_samples, n
4079 Set the number of samples per requested frames.
4080
4081 @end table
4082
4083 @subsection Examples
4084
4085 @itemize
4086 @item
4087 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4088 @example
4089 anullsrc=r=48000:cl=4
4090 @end example
4091
4092 @item
4093 Do the same operation with a more obvious syntax:
4094 @example
4095 anullsrc=r=48000:cl=mono
4096 @end example
4097 @end itemize
4098
4099 All the parameters need to be explicitly defined.
4100
4101 @section flite
4102
4103 Synthesize a voice utterance using the libflite library.
4104
4105 To enable compilation of this filter you need to configure FFmpeg with
4106 @code{--enable-libflite}.
4107
4108 Note that the flite library is not thread-safe.
4109
4110 The filter accepts the following options:
4111
4112 @table @option
4113
4114 @item list_voices
4115 If set to 1, list the names of the available voices and exit
4116 immediately. Default value is 0.
4117
4118 @item nb_samples, n
4119 Set the maximum number of samples per frame. Default value is 512.
4120
4121 @item textfile
4122 Set the filename containing the text to speak.
4123
4124 @item text
4125 Set the text to speak.
4126
4127 @item voice, v
4128 Set the voice to use for the speech synthesis. Default value is
4129 @code{kal}. See also the @var{list_voices} option.
4130 @end table
4131
4132 @subsection Examples
4133
4134 @itemize
4135 @item
4136 Read from file @file{speech.txt}, and synthesize the text using the
4137 standard flite voice:
4138 @example
4139 flite=textfile=speech.txt
4140 @end example
4141
4142 @item
4143 Read the specified text selecting the @code{slt} voice:
4144 @example
4145 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4146 @end example
4147
4148 @item
4149 Input text to ffmpeg:
4150 @example
4151 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4152 @end example
4153
4154 @item
4155 Make @file{ffplay} speak the specified text, using @code{flite} and
4156 the @code{lavfi} device:
4157 @example
4158 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4159 @end example
4160 @end itemize
4161
4162 For more information about libflite, check:
4163 @url{http://www.speech.cs.cmu.edu/flite/}
4164
4165 @section anoisesrc
4166
4167 Generate a noise audio signal.
4168
4169 The filter accepts the following options:
4170
4171 @table @option
4172 @item sample_rate, r
4173 Specify the sample rate. Default value is 48000 Hz.
4174
4175 @item amplitude, a
4176 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4177 is 1.0.
4178
4179 @item duration, d
4180 Specify the duration of the generated audio stream. Not specifying this option
4181 results in noise with an infinite length.
4182
4183 @item color, colour, c
4184 Specify the color of noise. Available noise colors are white, pink, and brown.
4185 Default color is white.
4186
4187 @item seed, s
4188 Specify a value used to seed the PRNG.
4189
4190 @item nb_samples, n
4191 Set the number of samples per each output frame, default is 1024.
4192 @end table
4193
4194 @subsection Examples
4195
4196 @itemize
4197
4198 @item
4199 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4200 @example
4201 anoisesrc=d=60:c=pink:r=44100:a=0.5
4202 @end example
4203 @end itemize
4204
4205 @section sine
4206
4207 Generate an audio signal made of a sine wave with amplitude 1/8.
4208
4209 The audio signal is bit-exact.
4210
4211 The filter accepts the following options:
4212
4213 @table @option
4214
4215 @item frequency, f
4216 Set the carrier frequency. Default is 440 Hz.
4217
4218 @item beep_factor, b
4219 Enable a periodic beep every second with frequency @var{beep_factor} times
4220 the carrier frequency. Default is 0, meaning the beep is disabled.
4221
4222 @item sample_rate, r
4223 Specify the sample rate, default is 44100.
4224
4225 @item duration, d
4226 Specify the duration of the generated audio stream.
4227
4228 @item samples_per_frame
4229 Set the number of samples per output frame.
4230
4231 The expression can contain the following constants:
4232
4233 @table @option
4234 @item n
4235 The (sequential) number of the output audio frame, starting from 0.
4236
4237 @item pts
4238 The PTS (Presentation TimeStamp) of the output audio frame,
4239 expressed in @var{TB} units.
4240
4241 @item t
4242 The PTS of the output audio frame, expressed in seconds.
4243
4244 @item TB
4245 The timebase of the output audio frames.
4246 @end table
4247
4248 Default is @code{1024}.
4249 @end table
4250
4251 @subsection Examples
4252
4253 @itemize
4254
4255 @item
4256 Generate a simple 440 Hz sine wave:
4257 @example
4258 sine
4259 @end example
4260
4261 @item
4262 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4263 @example
4264 sine=220:4:d=5
4265 sine=f=220:b=4:d=5
4266 sine=frequency=220:beep_factor=4:duration=5
4267 @end example
4268
4269 @item
4270 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4271 pattern:
4272 @example
4273 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4274 @end example
4275 @end itemize
4276
4277 @c man end AUDIO SOURCES
4278
4279 @chapter Audio Sinks
4280 @c man begin AUDIO SINKS
4281
4282 Below is a description of the currently available audio sinks.
4283
4284 @section abuffersink
4285
4286 Buffer audio frames, and make them available to the end of filter chain.
4287
4288 This sink is mainly intended for programmatic use, in particular
4289 through the interface defined in @file{libavfilter/buffersink.h}
4290 or the options system.
4291
4292 It accepts a pointer to an AVABufferSinkContext structure, which
4293 defines the incoming buffers' formats, to be passed as the opaque
4294 parameter to @code{avfilter_init_filter} for initialization.
4295 @section anullsink
4296
4297 Null audio sink; do absolutely nothing with the input audio. It is
4298 mainly useful as a template and for use in analysis / debugging
4299 tools.
4300
4301 @c man end AUDIO SINKS
4302
4303 @chapter Video Filters
4304 @c man begin VIDEO FILTERS
4305
4306 When you configure your FFmpeg build, you can disable any of the
4307 existing filters using @code{--disable-filters}.
4308 The configure output will show the video filters included in your
4309 build.
4310
4311 Below is a description of the currently available video filters.
4312
4313 @section alphaextract
4314
4315 Extract the alpha component from the input as a grayscale video. This
4316 is especially useful with the @var{alphamerge} filter.
4317
4318 @section alphamerge
4319
4320 Add or replace the alpha component of the primary input with the
4321 grayscale value of a second input. This is intended for use with
4322 @var{alphaextract} to allow the transmission or storage of frame
4323 sequences that have alpha in a format that doesn't support an alpha
4324 channel.
4325
4326 For example, to reconstruct full frames from a normal YUV-encoded video
4327 and a separate video created with @var{alphaextract}, you might use:
4328 @example
4329 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4330 @end example
4331
4332 Since this filter is designed for reconstruction, it operates on frame
4333 sequences without considering timestamps, and terminates when either
4334 input reaches end of stream. This will cause problems if your encoding
4335 pipeline drops frames. If you're trying to apply an image as an
4336 overlay to a video stream, consider the @var{overlay} filter instead.
4337
4338 @section ass
4339
4340 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4341 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4342 Substation Alpha) subtitles files.
4343
4344 This filter accepts the following option in addition to the common options from
4345 the @ref{subtitles} filter:
4346
4347 @table @option
4348 @item shaping
4349 Set the shaping engine
4350
4351 Available values are:
4352 @table @samp
4353 @item auto
4354 The default libass shaping engine, which is the best available.
4355 @item simple
4356 Fast, font-agnostic shaper that can do only substitutions
4357 @item complex
4358 Slower shaper using OpenType for substitutions and positioning
4359 @end table
4360
4361 The default is @code{auto}.
4362 @end table
4363
4364 @section atadenoise
4365 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4366
4367 The filter accepts the following options:
4368
4369 @table @option
4370 @item 0a
4371 Set threshold A for 1st plane. Default is 0.02.
4372 Valid range is 0 to 0.3.
4373
4374 @item 0b
4375 Set threshold B for 1st plane. Default is 0.04.
4376 Valid range is 0 to 5.
4377
4378 @item 1a
4379 Set threshold A for 2nd plane. Default is 0.02.
4380 Valid range is 0 to 0.3.
4381
4382 @item 1b
4383 Set threshold B for 2nd plane. Default is 0.04.
4384 Valid range is 0 to 5.
4385
4386 @item 2a
4387 Set threshold A for 3rd plane. Default is 0.02.
4388 Valid range is 0 to 0.3.
4389
4390 @item 2b
4391 Set threshold B for 3rd plane. Default is 0.04.
4392 Valid range is 0 to 5.
4393
4394 Threshold A is designed to react on abrupt changes in the input signal and
4395 threshold B is designed to react on continuous changes in the input signal.
4396
4397 @item s
4398 Set number of frames filter will use for averaging. Default is 33. Must be odd
4399 number in range [5, 129].
4400
4401 @item p
4402 Set what planes of frame filter will use for averaging. Default is all.
4403 @end table
4404
4405 @section avgblur
4406
4407 Apply average blur filter.
4408
4409 The filter accepts the following options:
4410
4411 @table @option
4412 @item sizeX
4413 Set horizontal kernel size.
4414
4415 @item planes
4416 Set which planes to filter. By default all planes are filtered.
4417
4418 @item sizeY
4419 Set vertical kernel size, if zero it will be same as @code{sizeX}.
4420 Default is @code{0}.
4421 @end table
4422
4423 @section bbox
4424
4425 Compute the bounding box for the non-black pixels in the input frame
4426 luminance plane.
4427
4428 This filter computes the bounding box containing all the pixels with a
4429 luminance value greater than the minimum allowed value.
4430 The parameters describing the bounding box are printed on the filter
4431 log.
4432
4433 The filter accepts the following option:
4434
4435 @table @option
4436 @item min_val
4437 Set the minimal luminance value. Default is @code{16}.
4438 @end table
4439
4440 @section bitplanenoise
4441
4442 Show and measure bit plane noise.
4443
4444 The filter accepts the following options:
4445
4446 @table @option
4447 @item bitplane
4448 Set which plane to analyze. Default is @code{1}.
4449
4450 @item filter
4451 Filter out noisy pixels from @code{bitplane} set above.
4452 Default is disabled.
4453 @end table
4454
4455 @section blackdetect
4456
4457 Detect video intervals that are (almost) completely black. Can be
4458 useful to detect chapter transitions, commercials, or invalid
4459 recordings. Output lines contains the time for the start, end and
4460 duration of the detected black interval expressed in seconds.
4461
4462 In order to display the output lines, you need to set the loglevel at
4463 least to the AV_LOG_INFO value.
4464
4465 The filter accepts the following options:
4466
4467 @table @option
4468 @item black_min_duration, d
4469 Set the minimum detected black duration expressed in seconds. It must
4470 be a non-negative floating point number.
4471
4472 Default value is 2.0.
4473
4474 @item picture_black_ratio_th, pic_th
4475 Set the threshold for considering a picture "black".
4476 Express the minimum value for the ratio:
4477 @example
4478 @var{nb_black_pixels} / @var{nb_pixels}
4479 @end example
4480
4481 for which a picture is considered black.
4482 Default value is 0.98.
4483
4484 @item pixel_black_th, pix_th
4485 Set the threshold for considering a pixel "black".
4486
4487 The threshold expresses the maximum pixel luminance value for which a
4488 pixel is considered "black". The provided value is scaled according to
4489 the following equation:
4490 @example
4491 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4492 @end example
4493
4494 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4495 the input video format, the range is [0-255] for YUV full-range
4496 formats and [16-235] for YUV non full-range formats.
4497
4498 Default value is 0.10.
4499 @end table
4500
4501 The following example sets the maximum pixel threshold to the minimum
4502 value, and detects only black intervals of 2 or more seconds:
4503 @example
4504 blackdetect=d=2:pix_th=0.00
4505 @end example
4506
4507 @section blackframe
4508
4509 Detect frames that are (almost) completely black. Can be useful to
4510 detect chapter transitions or commercials. Output lines consist of
4511 the frame number of the detected frame, the percentage of blackness,
4512 the position in the file if known or -1 and the timestamp in seconds.
4513
4514 In order to display the output lines, you need to set the loglevel at
4515 least to the AV_LOG_INFO value.
4516
4517 It accepts the following parameters:
4518
4519 @table @option
4520
4521 @item amount
4522 The percentage of the pixels that have to be below the threshold; it defaults to
4523 @code{98}.
4524
4525 @item threshold, thresh
4526 The threshold below which a pixel value is considered black; it defaults to
4527 @code{32}.
4528
4529 @end table
4530
4531 @section blend, tblend
4532
4533 Blend two video frames into each other.
4534
4535 The @code{blend} filter takes two input streams and outputs one
4536 stream, the first input is the "top" layer and second input is
4537 "bottom" layer.  Output terminates when shortest input terminates.
4538
4539 The @code{tblend} (time blend) filter takes two consecutive frames
4540 from one single stream, and outputs the result obtained by blending
4541 the new frame on top of the old frame.
4542
4543 A description of the accepted options follows.
4544
4545 @table @option
4546 @item c0_mode
4547 @item c1_mode
4548 @item c2_mode
4549 @item c3_mode
4550 @item all_mode
4551 Set blend mode for specific pixel component or all pixel components in case
4552 of @var{all_mode}. Default value is @code{normal}.
4553
4554 Available values for component modes are:
4555 @table @samp
4556 @item addition
4557 @item addition128
4558 @item and
4559 @item average
4560 @item burn
4561 @item darken
4562 @item difference
4563 @item difference128
4564 @item divide
4565 @item dodge
4566 @item freeze
4567 @item exclusion
4568 @item glow
4569 @item hardlight
4570 @item hardmix
4571 @item heat
4572 @item lighten
4573 @item linearlight
4574 @item multiply
4575 @item multiply128
4576 @item negation
4577 @item normal
4578 @item or
4579 @item overlay
4580 @item phoenix
4581 @item pinlight
4582 @item reflect
4583 @item screen
4584 @item softlight
4585 @item subtract
4586 @item vividlight
4587 @item xor
4588 @end table
4589
4590 @item c0_opacity
4591 @item c1_opacity
4592 @item c2_opacity
4593 @item c3_opacity
4594 @item all_opacity
4595 Set blend opacity for specific pixel component or all pixel components in case
4596 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4597
4598 @item c0_expr
4599 @item c1_expr
4600 @item c2_expr
4601 @item c3_expr
4602 @item all_expr
4603 Set blend expression for specific pixel component or all pixel components in case
4604 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4605
4606 The expressions can use the following variables:
4607
4608 @table @option
4609 @item N
4610 The sequential number of the filtered frame, starting from @code{0}.
4611
4612 @item X
4613 @item Y
4614 the coordinates of the current sample
4615
4616 @item W
4617 @item H
4618 the width and height of currently filtered plane
4619
4620 @item SW
4621 @item SH
4622 Width and height scale depending on the currently filtered plane. It is the
4623 ratio between the corresponding luma plane number of pixels and the current
4624 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4625 @code{0.5,0.5} for chroma planes.
4626
4627 @item T
4628 Time of the current frame, expressed in seconds.
4629
4630 @item TOP, A
4631 Value of pixel component at current location for first video frame (top layer).
4632
4633 @item BOTTOM, B
4634 Value of pixel component at current location for second video frame (bottom layer).
4635 @end table
4636
4637 @item shortest
4638 Force termination when the shortest input terminates. Default is
4639 @code{0}. This option is only defined for the @code{blend} filter.
4640
4641 @item repeatlast
4642 Continue applying the last bottom frame after the end of the stream. A value of
4643 @code{0} disable the filter after the last frame of the bottom layer is reached.
4644 Default is @code{1}. This option is only defined for the @code{blend} filter.
4645 @end table
4646
4647 @subsection Examples
4648
4649 @itemize
4650 @item
4651 Apply transition from bottom layer to top layer in first 10 seconds:
4652 @example
4653 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4654 @end example
4655
4656 @item
4657 Apply 1x1 checkerboard effect:
4658 @example
4659 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4660 @end example
4661
4662 @item
4663 Apply uncover left effect:
4664 @example
4665 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4666 @end example
4667
4668 @item
4669 Apply uncover down effect:
4670 @example
4671 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4672 @end example
4673
4674 @item
4675 Apply uncover up-left effect:
4676 @example
4677 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4678 @end example
4679
4680 @item
4681 Split diagonally video and shows top and bottom layer on each side:
4682 @example
4683 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4684 @end example
4685
4686 @item
4687 Display differences between the current and the previous frame:
4688 @example
4689 tblend=all_mode=difference128
4690 @end example
4691 @end itemize
4692
4693 @section boxblur
4694
4695 Apply a boxblur algorithm to the input video.
4696
4697 It accepts the following parameters:
4698
4699 @table @option
4700
4701 @item luma_radius, lr
4702 @item luma_power, lp
4703 @item chroma_radius, cr
4704 @item chroma_power, cp
4705 @item alpha_radius, ar
4706 @item alpha_power, ap
4707
4708 @end table
4709
4710 A description of the accepted options follows.
4711
4712 @table @option
4713 @item luma_radius, lr
4714 @item chroma_radius, cr
4715 @item alpha_radius, ar
4716 Set an expression for the box radius in pixels used for blurring the
4717 corresponding input plane.
4718
4719 The radius value must be a non-negative number, and must not be
4720 greater than the value of the expression @code{min(w,h)/2} for the
4721 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4722 planes.
4723
4724 Default value for @option{luma_radius} is "2". If not specified,
4725 @option{chroma_radius} and @option{alpha_radius} default to the
4726 corresponding value set for @option{luma_radius}.
4727
4728 The expressions can contain the following constants:
4729 @table @option
4730 @item w
4731 @item h
4732 The input width and height in pixels.
4733
4734 @item cw
4735 @item ch
4736 The input chroma image width and height in pixels.
4737
4738 @item hsub
4739 @item vsub
4740 The horizontal and vertical chroma subsample values. For example, for the
4741 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4742 @end table
4743
4744 @item luma_power, lp
4745 @item chroma_power, cp
4746 @item alpha_power, ap
4747 Specify how many times the boxblur filter is applied to the
4748 corresponding plane.
4749
4750 Default value for @option{luma_power} is 2. If not specified,
4751 @option{chroma_power} and @option{alpha_power} default to the
4752 corresponding value set for @option{luma_power}.
4753
4754 A value of 0 will disable the effect.
4755 @end table
4756
4757 @subsection Examples
4758
4759 @itemize
4760 @item
4761 Apply a boxblur filter with the luma, chroma, and alpha radii
4762 set to 2:
4763 @example
4764 boxblur=luma_radius=2:luma_power=1
4765 boxblur=2:1
4766 @end example
4767
4768 @item
4769 Set the luma radius to 2, and alpha and chroma radius to 0:
4770 @example
4771 boxblur=2:1:cr=0:ar=0
4772 @end example
4773
4774 @item
4775 Set the luma and chroma radii to a fraction of the video dimension:
4776 @example
4777 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4778 @end example
4779 @end itemize
4780
4781 @section bwdif
4782
4783 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4784 Deinterlacing Filter").
4785
4786 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4787 interpolation algorithms.
4788 It accepts the following parameters:
4789
4790 @table @option
4791 @item mode
4792 The interlacing mode to adopt. It accepts one of the following values:
4793
4794 @table @option
4795 @item 0, send_frame
4796 Output one frame for each frame.
4797 @item 1, send_field
4798 Output one frame for each field.
4799 @end table
4800
4801 The default value is @code{send_field}.
4802
4803 @item parity
4804 The picture field parity assumed for the input interlaced video. It accepts one
4805 of the following values:
4806
4807 @table @option
4808 @item 0, tff
4809 Assume the top field is first.
4810 @item 1, bff
4811 Assume the bottom field is first.
4812 @item -1, auto
4813 Enable automatic detection of field parity.
4814 @end table
4815
4816 The default value is @code{auto}.
4817 If the interlacing is unknown or the decoder does not export this information,
4818 top field first will be assumed.
4819
4820 @item deint
4821 Specify which frames to deinterlace. Accept one of the following
4822 values:
4823
4824 @table @option
4825 @item 0, all
4826 Deinterlace all frames.
4827 @item 1, interlaced
4828 Only deinterlace frames marked as interlaced.
4829 @end table
4830
4831 The default value is @code{all}.
4832 @end table
4833
4834 @section chromakey
4835 YUV colorspace color/chroma keying.
4836
4837 The filter accepts the following options:
4838
4839 @table @option
4840 @item color
4841 The color which will be replaced with transparency.
4842
4843 @item similarity
4844 Similarity percentage with the key color.
4845
4846 0.01 matches only the exact key color, while 1.0 matches everything.
4847
4848 @item blend
4849 Blend percentage.
4850
4851 0.0 makes pixels either fully transparent, or not transparent at all.
4852
4853 Higher values result in semi-transparent pixels, with a higher transparency
4854 the more similar the pixels color is to the key color.
4855
4856 @item yuv
4857 Signals that the color passed is already in YUV instead of RGB.
4858
4859 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4860 This can be used to pass exact YUV values as hexadecimal numbers.
4861 @end table
4862
4863 @subsection Examples
4864
4865 @itemize
4866 @item
4867 Make every green pixel in the input image transparent:
4868 @example
4869 ffmpeg -i input.png -vf chromakey=green out.png
4870 @end example
4871
4872 @item
4873 Overlay a greenscreen-video on top of a static black background.
4874 @example
4875 ffmpeg -f lavfi -i color=c=black:s=1280x720 -i video.mp4 -shortest -filter_complex "[1:v]chromakey=0x70de77:0.1:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.mkv
4876 @end example
4877 @end itemize
4878
4879 @section ciescope
4880
4881 Display CIE color diagram with pixels overlaid onto it.
4882
4883 The filter accepts the following options:
4884
4885 @table @option
4886 @item system
4887 Set color system.
4888
4889 @table @samp
4890 @item ntsc, 470m
4891 @item ebu, 470bg
4892 @item smpte
4893 @item 240m
4894 @item apple
4895 @item widergb
4896 @item cie1931
4897 @item rec709, hdtv
4898 @item uhdtv, rec2020
4899 @end table
4900
4901 @item cie
4902 Set CIE system.
4903
4904 @table @samp
4905 @item xyy
4906 @item ucs
4907 @item luv
4908 @end table
4909
4910 @item gamuts
4911 Set what gamuts to draw.
4912
4913 See @code{system} option for available values.
4914
4915 @item size, s
4916 Set ciescope size, by default set to 512.
4917
4918 @item intensity, i
4919 Set intensity used to map input pixel values to CIE diagram.
4920
4921 @item contrast
4922 Set contrast used to draw tongue colors that are out of active color system gamut.
4923
4924 @item corrgamma
4925 Correct gamma displayed on scope, by default enabled.
4926
4927 @item showwhite
4928 Show white point on CIE diagram, by default disabled.
4929
4930 @item gamma
4931 Set input gamma. Used only with XYZ input color space.
4932 @end table
4933
4934 @section codecview
4935
4936 Visualize information exported by some codecs.
4937
4938 Some codecs can export information through frames using side-data or other
4939 means. For example, some MPEG based codecs export motion vectors through the
4940 @var{export_mvs} flag in the codec @option{flags2} option.
4941
4942 The filter accepts the following option:
4943
4944 @table @option
4945 @item mv
4946 Set motion vectors to visualize.
4947
4948 Available flags for @var{mv} are:
4949
4950 @table @samp
4951 @item pf
4952 forward predicted MVs of P-frames
4953 @item bf
4954 forward predicted MVs of B-frames
4955 @item bb
4956 backward predicted MVs of B-frames
4957 @end table
4958
4959 @item qp
4960 Display quantization parameters using the chroma planes.
4961
4962 @item mv_type, mvt
4963 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
4964
4965 Available flags for @var{mv_type} are:
4966
4967 @table @samp
4968 @item fp
4969 forward predicted MVs
4970 @item bp
4971 backward predicted MVs
4972 @end table
4973
4974 @item frame_type, ft
4975 Set frame type to visualize motion vectors of.
4976
4977 Available flags for @var{frame_type} are:
4978
4979 @table @samp
4980 @item if
4981 intra-coded frames (I-frames)
4982 @item pf
4983 predicted frames (P-frames)
4984 @item bf
4985 bi-directionally predicted frames (B-frames)
4986 @end table
4987 @end table
4988
4989 @subsection Examples
4990
4991 @itemize
4992 @item
4993 Visualize forward predicted MVs of all frames using @command{ffplay}:
4994 @example
4995 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
4996 @end example
4997
4998 @item
4999 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5000 @example
5001 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5002 @end example
5003 @end itemize
5004
5005 @section colorbalance
5006 Modify intensity of primary colors (red, green and blue) of input frames.
5007
5008 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5009 regions for the red-cyan, green-magenta or blue-yellow balance.
5010
5011 A positive adjustment value shifts the balance towards the primary color, a negative
5012 value towards the complementary color.
5013
5014 The filter accepts the following options:
5015
5016 @table @option
5017 @item rs
5018 @item gs
5019 @item bs
5020 Adjust red, green and blue shadows (darkest pixels).
5021
5022 @item rm
5023 @item gm
5024 @item bm
5025 Adjust red, green and blue midtones (medium pixels).
5026
5027 @item rh
5028 @item gh
5029 @item bh
5030 Adjust red, green and blue highlights (brightest pixels).
5031
5032 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5033 @end table
5034
5035 @subsection Examples
5036
5037 @itemize
5038 @item
5039 Add red color cast to shadows:
5040 @example
5041 colorbalance=rs=.3
5042 @end example
5043 @end itemize
5044
5045 @section colorkey
5046 RGB colorspace color keying.
5047
5048 The filter accepts the following options:
5049
5050 @table @option
5051 @item color
5052 The color which will be replaced with transparency.
5053
5054 @item similarity
5055 Similarity percentage with the key color.
5056
5057 0.01 matches only the exact key color, while 1.0 matches everything.
5058
5059 @item blend
5060 Blend percentage.
5061
5062 0.0 makes pixels either fully transparent, or not transparent at all.
5063
5064 Higher values result in semi-transparent pixels, with a higher transparency
5065 the more similar the pixels color is to the key color.
5066 @end table
5067
5068 @subsection Examples
5069
5070 @itemize
5071 @item
5072 Make every green pixel in the input image transparent:
5073 @example
5074 ffmpeg -i input.png -vf colorkey=green out.png
5075 @end example
5076
5077 @item
5078 Overlay a greenscreen-video on top of a static background image.
5079 @example
5080 ffmpeg -i background.png -i video.mp4 -filter_complex "[1:v]colorkey=0x3BBD1E:0.3:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.flv
5081 @end example
5082 @end itemize
5083
5084 @section colorlevels
5085
5086 Adjust video input frames using levels.
5087
5088 The filter accepts the following options:
5089
5090 @table @option
5091 @item rimin
5092 @item gimin
5093 @item bimin
5094 @item aimin
5095 Adjust red, green, blue and alpha input black point.
5096 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5097
5098 @item rimax
5099 @item gimax
5100 @item bimax
5101 @item aimax
5102 Adjust red, green, blue and alpha input white point.
5103 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5104
5105 Input levels are used to lighten highlights (bright tones), darken shadows
5106 (dark tones), change the balance of bright and dark tones.
5107
5108 @item romin
5109 @item gomin
5110 @item bomin
5111 @item aomin
5112 Adjust red, green, blue and alpha output black point.
5113 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5114
5115 @item romax
5116 @item gomax
5117 @item bomax
5118 @item aomax
5119 Adjust red, green, blue and alpha output white point.
5120 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5121
5122 Output levels allows manual selection of a constrained output level range.
5123 @end table
5124
5125 @subsection Examples
5126
5127 @itemize
5128 @item
5129 Make video output darker:
5130 @example
5131 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5132 @end example
5133
5134 @item
5135 Increase contrast:
5136 @example
5137 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5138 @end example
5139
5140 @item
5141 Make video output lighter:
5142 @example
5143 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5144 @end example
5145
5146 @item
5147 Increase brightness:
5148 @example
5149 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5150 @end example
5151 @end itemize
5152
5153 @section colorchannelmixer
5154
5155 Adjust video input frames by re-mixing color channels.
5156
5157 This filter modifies a color channel by adding the values associated to
5158 the other channels of the same pixels. For example if the value to
5159 modify is red, the output value will be:
5160 @example
5161 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5162 @end example
5163
5164 The filter accepts the following options:
5165
5166 @table @option
5167 @item rr
5168 @item rg
5169 @item rb
5170 @item ra
5171 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5172 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5173
5174 @item gr
5175 @item gg
5176 @item gb
5177 @item ga
5178 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5179 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5180
5181 @item br
5182 @item bg
5183 @item bb
5184 @item ba
5185 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5186 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5187
5188 @item ar
5189 @item ag
5190 @item ab
5191 @item aa
5192 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5193 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5194
5195 Allowed ranges for options are @code{[-2.0, 2.0]}.
5196 @end table
5197
5198 @subsection Examples
5199
5200 @itemize
5201 @item
5202 Convert source to grayscale:
5203 @example
5204 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5205 @end example
5206 @item
5207 Simulate sepia tones:
5208 @example
5209 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5210 @end example
5211 @end itemize
5212
5213 @section colormatrix
5214
5215 Convert color matrix.
5216
5217 The filter accepts the following options:
5218
5219 @table @option
5220 @item src
5221 @item dst
5222 Specify the source and destination color matrix. Both values must be
5223 specified.
5224
5225 The accepted values are:
5226 @table @samp
5227 @item bt709
5228 BT.709
5229
5230 @item bt601
5231 BT.601
5232
5233 @item smpte240m
5234 SMPTE-240M
5235
5236 @item fcc
5237 FCC
5238
5239 @item bt2020
5240 BT.2020
5241 @end table
5242 @end table
5243
5244 For example to convert from BT.601 to SMPTE-240M, use the command:
5245 @example
5246 colormatrix=bt601:smpte240m
5247 @end example
5248
5249 @section colorspace
5250
5251 Convert colorspace, transfer characteristics or color primaries.
5252
5253 The filter accepts the following options:
5254
5255 @table @option
5256 @anchor{all}
5257 @item all
5258 Specify all color properties at once.
5259
5260 The accepted values are:
5261 @table @samp
5262 @item bt470m
5263 BT.470M
5264
5265 @item bt470bg
5266 BT.470BG
5267
5268 @item bt601-6-525
5269 BT.601-6 525
5270
5271 @item bt601-6-625
5272 BT.601-6 625
5273
5274 @item bt709
5275 BT.709
5276
5277 @item smpte170m
5278 SMPTE-170M
5279
5280 @item smpte240m
5281 SMPTE-240M
5282
5283 @item bt2020
5284 BT.2020
5285
5286 @end table
5287
5288 @anchor{space}
5289 @item space
5290 Specify output colorspace.
5291
5292 The accepted values are:
5293 @table @samp
5294 @item bt709
5295 BT.709
5296
5297 @item fcc
5298 FCC
5299
5300 @item bt470bg
5301 BT.470BG or BT.601-6 625
5302
5303 @item smpte170m
5304 SMPTE-170M or BT.601-6 525
5305
5306 @item smpte240m
5307 SMPTE-240M
5308
5309 @item bt2020ncl
5310 BT.2020 with non-constant luminance
5311
5312 @end table
5313
5314 @anchor{trc}
5315 @item trc
5316 Specify output transfer characteristics.
5317
5318 The accepted values are:
5319 @table @samp
5320 @item bt709
5321 BT.709
5322
5323 @item gamma22
5324 Constant gamma of 2.2
5325
5326 @item gamma28
5327 Constant gamma of 2.8
5328
5329 @item smpte170m
5330 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5331
5332 @item smpte240m
5333 SMPTE-240M
5334
5335 @item bt2020-10
5336 BT.2020 for 10-bits content
5337
5338 @item bt2020-12
5339 BT.2020 for 12-bits content
5340
5341 @end table
5342
5343 @anchor{primaries}
5344 @item primaries
5345 Specify output color primaries.
5346
5347 The accepted values are:
5348 @table @samp
5349 @item bt709
5350 BT.709
5351
5352 @item bt470m
5353 BT.470M
5354
5355 @item bt470bg
5356 BT.470BG or BT.601-6 625
5357
5358 @item smpte170m
5359 SMPTE-170M or BT.601-6 525
5360
5361 @item smpte240m
5362 SMPTE-240M
5363
5364 @item bt2020
5365 BT.2020
5366
5367 @end table
5368
5369 @anchor{range}
5370 @item range
5371 Specify output color range.
5372
5373 The accepted values are:
5374 @table @samp
5375 @item mpeg
5376 MPEG (restricted) range
5377
5378 @item jpeg
5379 JPEG (full) range
5380
5381 @end table
5382
5383 @item format
5384 Specify output color format.
5385
5386 The accepted values are:
5387 @table @samp
5388 @item yuv420p
5389 YUV 4:2:0 planar 8-bits
5390
5391 @item yuv420p10
5392 YUV 4:2:0 planar 10-bits
5393
5394 @item yuv420p12
5395 YUV 4:2:0 planar 12-bits
5396
5397 @item yuv422p
5398 YUV 4:2:2 planar 8-bits
5399
5400 @item yuv422p10
5401 YUV 4:2:2 planar 10-bits
5402
5403 @item yuv422p12
5404 YUV 4:2:2 planar 12-bits
5405
5406 @item yuv444p
5407 YUV 4:4:4 planar 8-bits
5408
5409 @item yuv444p10
5410 YUV 4:4:4 planar 10-bits
5411
5412 @item yuv444p12
5413 YUV 4:4:4 planar 12-bits
5414
5415 @end table
5416
5417 @item fast
5418 Do a fast conversion, which skips gamma/primary correction. This will take
5419 significantly less CPU, but will be mathematically incorrect. To get output
5420 compatible with that produced by the colormatrix filter, use fast=1.
5421
5422 @item dither
5423 Specify dithering mode.
5424
5425 The accepted values are:
5426 @table @samp
5427 @item none
5428 No dithering
5429
5430 @item fsb
5431 Floyd-Steinberg dithering
5432 @end table
5433
5434 @item wpadapt
5435 Whitepoint adaptation mode.
5436
5437 The accepted values are:
5438 @table @samp
5439 @item bradford
5440 Bradford whitepoint adaptation
5441
5442 @item vonkries
5443 von Kries whitepoint adaptation
5444
5445 @item identity
5446 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5447 @end table
5448
5449 @item iall
5450 Override all input properties at once. Same accepted values as @ref{all}.
5451
5452 @item ispace
5453 Override input colorspace. Same accepted values as @ref{space}.
5454
5455 @item iprimaries
5456 Override input color primaries. Same accepted values as @ref{primaries}.
5457
5458 @item itrc
5459 Override input transfer characteristics. Same accepted values as @ref{trc}.
5460
5461 @item irange
5462 Override input color range. Same accepted values as @ref{range}.
5463
5464 @end table
5465
5466 The filter converts the transfer characteristics, color space and color
5467 primaries to the specified user values. The output value, if not specified,
5468 is set to a default value based on the "all" property. If that property is
5469 also not specified, the filter will log an error. The output color range and
5470 format default to the same value as the input color range and format. The
5471 input transfer characteristics, color space, color primaries and color range
5472 should be set on the input data. If any of these are missing, the filter will
5473 log an error and no conversion will take place.
5474
5475 For example to convert the input to SMPTE-240M, use the command:
5476 @example
5477 colorspace=smpte240m
5478 @end example
5479
5480 @section convolution
5481
5482 Apply convolution 3x3 or 5x5 filter.
5483
5484 The filter accepts the following options:
5485
5486 @table @option
5487 @item 0m
5488 @item 1m
5489 @item 2m
5490 @item 3m
5491 Set matrix for each plane.
5492 Matrix is sequence of 9 or 25 signed integers.
5493
5494 @item 0rdiv
5495 @item 1rdiv
5496 @item 2rdiv
5497 @item 3rdiv
5498 Set multiplier for calculated value for each plane.
5499
5500 @item 0bias
5501 @item 1bias
5502 @item 2bias
5503 @item 3bias
5504 Set bias for each plane. This value is added to the result of the multiplication.
5505 Useful for making the overall image brighter or darker. Default is 0.0.
5506 @end table
5507
5508 @subsection Examples
5509
5510 @itemize
5511 @item
5512 Apply sharpen:
5513 @example
5514 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"
5515 @end example
5516
5517 @item
5518 Apply blur:
5519 @example
5520 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"
5521 @end example
5522
5523 @item
5524 Apply edge enhance:
5525 @example
5526 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"
5527 @end example
5528
5529 @item
5530 Apply edge detect:
5531 @example
5532 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"
5533 @end example
5534
5535 @item
5536 Apply emboss:
5537 @example
5538 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"
5539 @end example
5540 @end itemize
5541
5542 @section copy
5543
5544 Copy the input source unchanged to the output. This is mainly useful for
5545 testing purposes.
5546
5547 @anchor{coreimage}
5548 @section coreimage
5549 Video filtering on GPU using Apple's CoreImage API on OSX.
5550
5551 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5552 processed by video hardware. However, software-based OpenGL implementations
5553 exist which means there is no guarantee for hardware processing. It depends on
5554 the respective OSX.
5555
5556 There are many filters and image generators provided by Apple that come with a
5557 large variety of options. The filter has to be referenced by its name along
5558 with its options.
5559
5560 The coreimage filter accepts the following options:
5561 @table @option
5562 @item list_filters
5563 List all available filters and generators along with all their respective
5564 options as well as possible minimum and maximum values along with the default
5565 values.
5566 @example
5567 list_filters=true
5568 @end example
5569
5570 @item filter
5571 Specify all filters by their respective name and options.
5572 Use @var{list_filters} to determine all valid filter names and options.
5573 Numerical options are specified by a float value and are automatically clamped
5574 to their respective value range.  Vector and color options have to be specified
5575 by a list of space separated float values. Character escaping has to be done.
5576 A special option name @code{default} is available to use default options for a
5577 filter.
5578
5579 It is required to specify either @code{default} or at least one of the filter options.
5580 All omitted options are used with their default values.
5581 The syntax of the filter string is as follows:
5582 @example
5583 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5584 @end example
5585
5586 @item output_rect
5587 Specify a rectangle where the output of the filter chain is copied into the
5588 input image. It is given by a list of space separated float values:
5589 @example
5590 output_rect=x\ y\ width\ height
5591 @end example
5592 If not given, the output rectangle equals the dimensions of the input image.
5593 The output rectangle is automatically cropped at the borders of the input
5594 image. Negative values are valid for each component.
5595 @example
5596 output_rect=25\ 25\ 100\ 100
5597 @end example
5598 @end table
5599
5600 Several filters can be chained for successive processing without GPU-HOST
5601 transfers allowing for fast processing of complex filter chains.
5602 Currently, only filters with zero (generators) or exactly one (filters) input
5603 image and one output image are supported. Also, transition filters are not yet
5604 usable as intended.
5605
5606 Some filters generate output images with additional padding depending on the
5607 respective filter kernel. The padding is automatically removed to ensure the
5608 filter output has the same size as the input image.
5609
5610 For image generators, the size of the output image is determined by the
5611 previous output image of the filter chain or the input image of the whole
5612 filterchain, respectively. The generators do not use the pixel information of
5613 this image to generate their output. However, the generated output is
5614 blended onto this image, resulting in partial or complete coverage of the
5615 output image.
5616
5617 The @ref{coreimagesrc} video source can be used for generating input images
5618 which are directly fed into the filter chain. By using it, providing input
5619 images by another video source or an input video is not required.
5620
5621 @subsection Examples
5622
5623 @itemize
5624
5625 @item
5626 List all filters available:
5627 @example
5628 coreimage=list_filters=true
5629 @end example
5630
5631 @item
5632 Use the CIBoxBlur filter with default options to blur an image:
5633 @example
5634 coreimage=filter=CIBoxBlur@@default
5635 @end example
5636
5637 @item
5638 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5639 its center at 100x100 and a radius of 50 pixels:
5640 @example
5641 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5642 @end example
5643
5644 @item
5645 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5646 given as complete and escaped command-line for Apple's standard bash shell:
5647 @example
5648 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5649 @end example
5650 @end itemize
5651
5652 @section crop
5653
5654 Crop the input video to given dimensions.
5655
5656 It accepts the following parameters:
5657
5658 @table @option
5659 @item w, out_w
5660 The width of the output video. It defaults to @code{iw}.
5661 This expression is evaluated only once during the filter
5662 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5663
5664 @item h, out_h
5665 The height of the output video. It defaults to @code{ih}.
5666 This expression is evaluated only once during the filter
5667 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5668
5669 @item x
5670 The horizontal position, in the input video, of the left edge of the output
5671 video. It defaults to @code{(in_w-out_w)/2}.
5672 This expression is evaluated per-frame.
5673
5674 @item y
5675 The vertical position, in the input video, of the top edge of the output video.
5676 It defaults to @code{(in_h-out_h)/2}.
5677 This expression is evaluated per-frame.
5678
5679 @item keep_aspect
5680 If set to 1 will force the output display aspect ratio
5681 to be the same of the input, by changing the output sample aspect
5682 ratio. It defaults to 0.
5683
5684 @item exact
5685 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
5686 width/height/x/y as specified and will not be rounded to nearest smaller value.
5687 It defaults to 0.
5688 @end table
5689
5690 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5691 expressions containing the following constants:
5692
5693 @table @option
5694 @item x
5695 @item y
5696 The computed values for @var{x} and @var{y}. They are evaluated for
5697 each new frame.
5698
5699 @item in_w
5700 @item in_h
5701 The input width and height.
5702
5703 @item iw
5704 @item ih
5705 These are the same as @var{in_w} and @var{in_h}.
5706
5707 @item out_w
5708 @item out_h
5709 The output (cropped) width and height.
5710
5711 @item ow
5712 @item oh
5713 These are the same as @var{out_w} and @var{out_h}.
5714
5715 @item a
5716 same as @var{iw} / @var{ih}
5717
5718 @item sar
5719 input sample aspect ratio
5720
5721 @item dar
5722 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5723
5724 @item hsub
5725 @item vsub
5726 horizontal and vertical chroma subsample values. For example for the
5727 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5728
5729 @item n
5730 The number of the input frame, starting from 0.
5731
5732 @item pos
5733 the position in the file of the input frame, NAN if unknown
5734
5735 @item t
5736 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5737
5738 @end table
5739
5740 The expression for @var{out_w} may depend on the value of @var{out_h},
5741 and the expression for @var{out_h} may depend on @var{out_w}, but they
5742 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5743 evaluated after @var{out_w} and @var{out_h}.
5744
5745 The @var{x} and @var{y} parameters specify the expressions for the
5746 position of the top-left corner of the output (non-cropped) area. They
5747 are evaluated for each frame. If the evaluated value is not valid, it
5748 is approximated to the nearest valid value.
5749
5750 The expression for @var{x} may depend on @var{y}, and the expression
5751 for @var{y} may depend on @var{x}.
5752
5753 @subsection Examples
5754
5755 @itemize
5756 @item
5757 Crop area with size 100x100 at position (12,34).
5758 @example
5759 crop=100:100:12:34
5760 @end example
5761
5762 Using named options, the example above becomes:
5763 @example
5764 crop=w=100:h=100:x=12:y=34
5765 @end example
5766
5767 @item
5768 Crop the central input area with size 100x100:
5769 @example
5770 crop=100:100
5771 @end example
5772
5773 @item
5774 Crop the central input area with size 2/3 of the input video:
5775 @example
5776 crop=2/3*in_w:2/3*in_h
5777 @end example
5778
5779 @item
5780 Crop the input video central square:
5781 @example
5782 crop=out_w=in_h
5783 crop=in_h
5784 @end example
5785
5786 @item
5787 Delimit the rectangle with the top-left corner placed at position
5788 100:100 and the right-bottom corner corresponding to the right-bottom
5789 corner of the input image.
5790 @example
5791 crop=in_w-100:in_h-100:100:100
5792 @end example
5793
5794 @item
5795 Crop 10 pixels from the left and right borders, and 20 pixels from
5796 the top and bottom borders
5797 @example
5798 crop=in_w-2*10:in_h-2*20
5799 @end example
5800
5801 @item
5802 Keep only the bottom right quarter of the input image:
5803 @example
5804 crop=in_w/2:in_h/2:in_w/2:in_h/2
5805 @end example
5806
5807 @item
5808 Crop height for getting Greek harmony:
5809 @example
5810 crop=in_w:1/PHI*in_w
5811 @end example
5812
5813 @item
5814 Apply trembling effect:
5815 @example
5816 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)
5817 @end example
5818
5819 @item
5820 Apply erratic camera effect depending on timestamp:
5821 @example
5822 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)"
5823 @end example
5824
5825 @item
5826 Set x depending on the value of y:
5827 @example
5828 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5829 @end example
5830 @end itemize
5831
5832 @subsection Commands
5833
5834 This filter supports the following commands:
5835 @table @option
5836 @item w, out_w
5837 @item h, out_h
5838 @item x
5839 @item y
5840 Set width/height of the output video and the horizontal/vertical position
5841 in the input video.
5842 The command accepts the same syntax of the corresponding option.
5843
5844 If the specified expression is not valid, it is kept at its current
5845 value.
5846 @end table
5847
5848 @section cropdetect
5849
5850 Auto-detect the crop size.
5851
5852 It calculates the necessary cropping parameters and prints the
5853 recommended parameters via the logging system. The detected dimensions
5854 correspond to the non-black area of the input video.
5855
5856 It accepts the following parameters:
5857
5858 @table @option
5859
5860 @item limit
5861 Set higher black value threshold, which can be optionally specified
5862 from nothing (0) to everything (255 for 8-bit based formats). An intensity
5863 value greater to the set value is considered non-black. It defaults to 24.
5864 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5865 on the bitdepth of the pixel format.
5866
5867 @item round
5868 The value which the width/height should be divisible by. It defaults to
5869 16. The offset is automatically adjusted to center the video. Use 2 to
5870 get only even dimensions (needed for 4:2:2 video). 16 is best when
5871 encoding to most video codecs.
5872
5873 @item reset_count, reset
5874 Set the counter that determines after how many frames cropdetect will
5875 reset the previously detected largest video area and start over to
5876 detect the current optimal crop area. Default value is 0.
5877
5878 This can be useful when channel logos distort the video area. 0
5879 indicates 'never reset', and returns the largest area encountered during
5880 playback.
5881 @end table
5882
5883 @anchor{curves}
5884 @section curves
5885
5886 Apply color adjustments using curves.
5887
5888 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5889 component (red, green and blue) has its values defined by @var{N} key points
5890 tied from each other using a smooth curve. The x-axis represents the pixel
5891 values from the input frame, and the y-axis the new pixel values to be set for
5892 the output frame.
5893
5894 By default, a component curve is defined by the two points @var{(0;0)} and
5895 @var{(1;1)}. This creates a straight line where each original pixel value is
5896 "adjusted" to its own value, which means no change to the image.
5897
5898 The filter allows you to redefine these two points and add some more. A new
5899 curve (using a natural cubic spline interpolation) will be define to pass
5900 smoothly through all these new coordinates. The new defined points needs to be
5901 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5902 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5903 the vector spaces, the values will be clipped accordingly.
5904
5905 The filter accepts the following options:
5906
5907 @table @option
5908 @item preset
5909 Select one of the available color presets. This option can be used in addition
5910 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5911 options takes priority on the preset values.
5912 Available presets are:
5913 @table @samp
5914 @item none
5915 @item color_negative
5916 @item cross_process
5917 @item darker
5918 @item increase_contrast
5919 @item lighter
5920 @item linear_contrast
5921 @item medium_contrast
5922 @item negative
5923 @item strong_contrast
5924 @item vintage
5925 @end table
5926 Default is @code{none}.
5927 @item master, m
5928 Set the master key points. These points will define a second pass mapping. It
5929 is sometimes called a "luminance" or "value" mapping. It can be used with
5930 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5931 post-processing LUT.
5932 @item red, r
5933 Set the key points for the red component.
5934 @item green, g
5935 Set the key points for the green component.
5936 @item blue, b
5937 Set the key points for the blue component.
5938 @item all
5939 Set the key points for all components (not including master).
5940 Can be used in addition to the other key points component
5941 options. In this case, the unset component(s) will fallback on this
5942 @option{all} setting.
5943 @item psfile
5944 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5945 @item plot
5946 Save Gnuplot script of the curves in specified file.
5947 @end table
5948
5949 To avoid some filtergraph syntax conflicts, each key points list need to be
5950 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5951
5952 @subsection Examples
5953
5954 @itemize
5955 @item
5956 Increase slightly the middle level of blue:
5957 @example
5958 curves=blue='0/0 0.5/0.58 1/1'
5959 @end example
5960
5961 @item
5962 Vintage effect:
5963 @example
5964 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'
5965 @end example
5966 Here we obtain the following coordinates for each components:
5967 @table @var
5968 @item red
5969 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5970 @item green
5971 @code{(0;0) (0.50;0.48) (1;1)}
5972 @item blue
5973 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5974 @end table
5975
5976 @item
5977 The previous example can also be achieved with the associated built-in preset:
5978 @example
5979 curves=preset=vintage
5980 @end example
5981
5982 @item
5983 Or simply:
5984 @example
5985 curves=vintage
5986 @end example
5987
5988 @item
5989 Use a Photoshop preset and redefine the points of the green component:
5990 @example
5991 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
5992 @end example
5993
5994 @item
5995 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
5996 and @command{gnuplot}:
5997 @example
5998 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
5999 gnuplot -p /tmp/curves.plt
6000 @end example
6001 @end itemize
6002
6003 @section datascope
6004
6005 Video data analysis filter.
6006
6007 This filter shows hexadecimal pixel values of part of video.
6008
6009 The filter accepts the following options:
6010
6011 @table @option
6012 @item size, s
6013 Set output video size.
6014
6015 @item x
6016 Set x offset from where to pick pixels.
6017
6018 @item y
6019 Set y offset from where to pick pixels.
6020
6021 @item mode
6022 Set scope mode, can be one of the following:
6023 @table @samp
6024 @item mono
6025 Draw hexadecimal pixel values with white color on black background.
6026
6027 @item color
6028 Draw hexadecimal pixel values with input video pixel color on black
6029 background.
6030
6031 @item color2
6032 Draw hexadecimal pixel values on color background picked from input video,
6033 the text color is picked in such way so its always visible.
6034 @end table
6035
6036 @item axis
6037 Draw rows and columns numbers on left and top of video.
6038 @end table
6039
6040 @section dctdnoiz
6041
6042 Denoise frames using 2D DCT (frequency domain filtering).
6043
6044 This filter is not designed for real time.
6045
6046 The filter accepts the following options:
6047
6048 @table @option
6049 @item sigma, s
6050 Set the noise sigma constant.
6051
6052 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6053 coefficient (absolute value) below this threshold with be dropped.
6054
6055 If you need a more advanced filtering, see @option{expr}.
6056
6057 Default is @code{0}.
6058
6059 @item overlap
6060 Set number overlapping pixels for each block. Since the filter can be slow, you
6061 may want to reduce this value, at the cost of a less effective filter and the
6062 risk of various artefacts.
6063
6064 If the overlapping value doesn't permit processing the whole input width or
6065 height, a warning will be displayed and according borders won't be denoised.
6066
6067 Default value is @var{blocksize}-1, which is the best possible setting.
6068
6069 @item expr, e
6070 Set the coefficient factor expression.
6071
6072 For each coefficient of a DCT block, this expression will be evaluated as a
6073 multiplier value for the coefficient.
6074
6075 If this is option is set, the @option{sigma} option will be ignored.
6076
6077 The absolute value of the coefficient can be accessed through the @var{c}
6078 variable.
6079
6080 @item n
6081 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6082 @var{blocksize}, which is the width and height of the processed blocks.
6083
6084 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6085 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6086 on the speed processing. Also, a larger block size does not necessarily means a
6087 better de-noising.
6088 @end table
6089
6090 @subsection Examples
6091
6092 Apply a denoise with a @option{sigma} of @code{4.5}:
6093 @example
6094 dctdnoiz=4.5
6095 @end example
6096
6097 The same operation can be achieved using the expression system:
6098 @example
6099 dctdnoiz=e='gte(c, 4.5*3)'
6100 @end example
6101
6102 Violent denoise using a block size of @code{16x16}:
6103 @example
6104 dctdnoiz=15:n=4
6105 @end example
6106
6107 @section deband
6108
6109 Remove banding artifacts from input video.
6110 It works by replacing banded pixels with average value of referenced pixels.
6111
6112 The filter accepts the following options:
6113
6114 @table @option
6115 @item 1thr
6116 @item 2thr
6117 @item 3thr
6118 @item 4thr
6119 Set banding detection threshold for each plane. Default is 0.02.
6120 Valid range is 0.00003 to 0.5.
6121 If difference between current pixel and reference pixel is less than threshold,
6122 it will be considered as banded.
6123
6124 @item range, r
6125 Banding detection range in pixels. Default is 16. If positive, random number
6126 in range 0 to set value will be used. If negative, exact absolute value
6127 will be used.
6128 The range defines square of four pixels around current pixel.
6129
6130 @item direction, d
6131 Set direction in radians from which four pixel will be compared. If positive,
6132 random direction from 0 to set direction will be picked. If negative, exact of
6133 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6134 will pick only pixels on same row and -PI/2 will pick only pixels on same
6135 column.
6136
6137 @item blur
6138 If enabled, current pixel is compared with average value of all four
6139 surrounding pixels. The default is enabled. If disabled current pixel is
6140 compared with all four surrounding pixels. The pixel is considered banded
6141 if only all four differences with surrounding pixels are less than threshold.
6142 @end table
6143
6144 @anchor{decimate}
6145 @section decimate
6146
6147 Drop duplicated frames at regular intervals.
6148
6149 The filter accepts the following options:
6150
6151 @table @option
6152 @item cycle
6153 Set the number of frames from which one will be dropped. Setting this to
6154 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6155 Default is @code{5}.
6156
6157 @item dupthresh
6158 Set the threshold for duplicate detection. If the difference metric for a frame
6159 is less than or equal to this value, then it is declared as duplicate. Default
6160 is @code{1.1}
6161
6162 @item scthresh
6163 Set scene change threshold. Default is @code{15}.
6164
6165 @item blockx
6166 @item blocky
6167 Set the size of the x and y-axis blocks used during metric calculations.
6168 Larger blocks give better noise suppression, but also give worse detection of
6169 small movements. Must be a power of two. Default is @code{32}.
6170
6171 @item ppsrc
6172 Mark main input as a pre-processed input and activate clean source input
6173 stream. This allows the input to be pre-processed with various filters to help
6174 the metrics calculation while keeping the frame selection lossless. When set to
6175 @code{1}, the first stream is for the pre-processed input, and the second
6176 stream is the clean source from where the kept frames are chosen. Default is
6177 @code{0}.
6178
6179 @item chroma
6180 Set whether or not chroma is considered in the metric calculations. Default is
6181 @code{1}.
6182 @end table
6183
6184 @section deflate
6185
6186 Apply deflate effect to the video.
6187
6188 This filter replaces the pixel by the local(3x3) average by taking into account
6189 only values lower than the pixel.
6190
6191 It accepts the following options:
6192
6193 @table @option
6194 @item threshold0
6195 @item threshold1
6196 @item threshold2
6197 @item threshold3
6198 Limit the maximum change for each plane, default is 65535.
6199 If 0, plane will remain unchanged.
6200 @end table
6201
6202 @section dejudder
6203
6204 Remove judder produced by partially interlaced telecined content.
6205
6206 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6207 source was partially telecined content then the output of @code{pullup,dejudder}
6208 will have a variable frame rate. May change the recorded frame rate of the
6209 container. Aside from that change, this filter will not affect constant frame
6210 rate video.
6211
6212 The option available in this filter is:
6213 @table @option
6214
6215 @item cycle
6216 Specify the length of the window over which the judder repeats.
6217
6218 Accepts any integer greater than 1. Useful values are:
6219 @table @samp
6220
6221 @item 4
6222 If the original was telecined from 24 to 30 fps (Film to NTSC).
6223
6224 @item 5
6225 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6226
6227 @item 20
6228 If a mixture of the two.
6229 @end table
6230
6231 The default is @samp{4}.
6232 @end table
6233
6234 @section delogo
6235
6236 Suppress a TV station logo by a simple interpolation of the surrounding
6237 pixels. Just set a rectangle covering the logo and watch it disappear
6238 (and sometimes something even uglier appear - your mileage may vary).
6239
6240 It accepts the following parameters:
6241 @table @option
6242
6243 @item x
6244 @item y
6245 Specify the top left corner coordinates of the logo. They must be
6246 specified.
6247
6248 @item w
6249 @item h
6250 Specify the width and height of the logo to clear. They must be
6251 specified.
6252
6253 @item band, t
6254 Specify the thickness of the fuzzy edge of the rectangle (added to
6255 @var{w} and @var{h}). The default value is 1. This option is
6256 deprecated, setting higher values should no longer be necessary and
6257 is not recommended.
6258
6259 @item show
6260 When set to 1, a green rectangle is drawn on the screen to simplify
6261 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6262 The default value is 0.
6263
6264 The rectangle is drawn on the outermost pixels which will be (partly)
6265 replaced with interpolated values. The values of the next pixels
6266 immediately outside this rectangle in each direction will be used to
6267 compute the interpolated pixel values inside the rectangle.
6268
6269 @end table
6270
6271 @subsection Examples
6272
6273 @itemize
6274 @item
6275 Set a rectangle covering the area with top left corner coordinates 0,0
6276 and size 100x77, and a band of size 10:
6277 @example
6278 delogo=x=0:y=0:w=100:h=77:band=10
6279 @end example
6280
6281 @end itemize
6282
6283 @section deshake
6284
6285 Attempt to fix small changes in horizontal and/or vertical shift. This
6286 filter helps remove camera shake from hand-holding a camera, bumping a
6287 tripod, moving on a vehicle, etc.
6288
6289 The filter accepts the following options:
6290
6291 @table @option
6292
6293 @item x
6294 @item y
6295 @item w
6296 @item h
6297 Specify a rectangular area where to limit the search for motion
6298 vectors.
6299 If desired the search for motion vectors can be limited to a
6300 rectangular area of the frame defined by its top left corner, width
6301 and height. These parameters have the same meaning as the drawbox
6302 filter which can be used to visualise the position of the bounding
6303 box.
6304
6305 This is useful when simultaneous movement of subjects within the frame
6306 might be confused for camera motion by the motion vector search.
6307
6308 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6309 then the full frame is used. This allows later options to be set
6310 without specifying the bounding box for the motion vector search.
6311
6312 Default - search the whole frame.
6313
6314 @item rx
6315 @item ry
6316 Specify the maximum extent of movement in x and y directions in the
6317 range 0-64 pixels. Default 16.
6318
6319 @item edge
6320 Specify how to generate pixels to fill blanks at the edge of the
6321 frame. Available values are:
6322 @table @samp
6323 @item blank, 0
6324 Fill zeroes at blank locations
6325 @item original, 1
6326 Original image at blank locations
6327 @item clamp, 2
6328 Extruded edge value at blank locations
6329 @item mirror, 3
6330 Mirrored edge at blank locations
6331 @end table
6332 Default value is @samp{mirror}.
6333
6334 @item blocksize
6335 Specify the blocksize to use for motion search. Range 4-128 pixels,
6336 default 8.
6337
6338 @item contrast
6339 Specify the contrast threshold for blocks. Only blocks with more than
6340 the specified contrast (difference between darkest and lightest
6341 pixels) will be considered. Range 1-255, default 125.
6342
6343 @item search
6344 Specify the search strategy. Available values are:
6345 @table @samp
6346 @item exhaustive, 0
6347 Set exhaustive search
6348 @item less, 1
6349 Set less exhaustive search.
6350 @end table
6351 Default value is @samp{exhaustive}.
6352
6353 @item filename
6354 If set then a detailed log of the motion search is written to the
6355 specified file.
6356
6357 @item opencl
6358 If set to 1, specify using OpenCL capabilities, only available if
6359 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6360
6361 @end table
6362
6363 @section detelecine
6364
6365 Apply an exact inverse of the telecine operation. It requires a predefined
6366 pattern specified using the pattern option which must be the same as that passed
6367 to the telecine filter.
6368
6369 This filter accepts the following options:
6370
6371 @table @option
6372 @item first_field
6373 @table @samp
6374 @item top, t
6375 top field first
6376 @item bottom, b
6377 bottom field first
6378 The default value is @code{top}.
6379 @end table
6380
6381 @item pattern
6382 A string of numbers representing the pulldown pattern you wish to apply.
6383 The default value is @code{23}.
6384
6385 @item start_frame
6386 A number representing position of the first frame with respect to the telecine
6387 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6388 @end table
6389
6390 @section dilation
6391
6392 Apply dilation effect to the video.
6393
6394 This filter replaces the pixel by the local(3x3) maximum.
6395
6396 It accepts the following options:
6397
6398 @table @option
6399 @item threshold0
6400 @item threshold1
6401 @item threshold2
6402 @item threshold3
6403 Limit the maximum change for each plane, default is 65535.
6404 If 0, plane will remain unchanged.
6405
6406 @item coordinates
6407 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6408 pixels are used.
6409
6410 Flags to local 3x3 coordinates maps like this:
6411
6412     1 2 3
6413     4   5
6414     6 7 8
6415 @end table
6416
6417 @section displace
6418
6419 Displace pixels as indicated by second and third input stream.
6420
6421 It takes three input streams and outputs one stream, the first input is the
6422 source, and second and third input are displacement maps.
6423
6424 The second input specifies how much to displace pixels along the
6425 x-axis, while the third input specifies how much to displace pixels
6426 along the y-axis.
6427 If one of displacement map streams terminates, last frame from that
6428 displacement map will be used.
6429
6430 Note that once generated, displacements maps can be reused over and over again.
6431
6432 A description of the accepted options follows.
6433
6434 @table @option
6435 @item edge
6436 Set displace behavior for pixels that are out of range.
6437
6438 Available values are:
6439 @table @samp
6440 @item blank
6441 Missing pixels are replaced by black pixels.
6442
6443 @item smear
6444 Adjacent pixels will spread out to replace missing pixels.
6445
6446 @item wrap
6447 Out of range pixels are wrapped so they point to pixels of other side.
6448 @end table
6449 Default is @samp{smear}.
6450
6451 @end table
6452
6453 @subsection Examples
6454
6455 @itemize
6456 @item
6457 Add ripple effect to rgb input of video size hd720:
6458 @example
6459 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
6460 @end example
6461
6462 @item
6463 Add wave effect to rgb input of video size hd720:
6464 @example
6465 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
6466 @end example
6467 @end itemize
6468
6469 @section drawbox
6470
6471 Draw a colored box on the input image.
6472
6473 It accepts the following parameters:
6474
6475 @table @option
6476 @item x
6477 @item y
6478 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6479
6480 @item width, w
6481 @item height, h
6482 The expressions which specify the width and height of the box; if 0 they are interpreted as
6483 the input width and height. It defaults to 0.
6484
6485 @item color, c
6486 Specify the color of the box to write. For the general syntax of this option,
6487 check the "Color" section in the ffmpeg-utils manual. If the special
6488 value @code{invert} is used, the box edge color is the same as the
6489 video with inverted luma.
6490
6491 @item thickness, t
6492 The expression which sets the thickness of the box edge. Default value is @code{3}.
6493
6494 See below for the list of accepted constants.
6495 @end table
6496
6497 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6498 following constants:
6499
6500 @table @option
6501 @item dar
6502 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6503
6504 @item hsub
6505 @item vsub
6506 horizontal and vertical chroma subsample values. For example for the
6507 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6508
6509 @item in_h, ih
6510 @item in_w, iw
6511 The input width and height.
6512
6513 @item sar
6514 The input sample aspect ratio.
6515
6516 @item x
6517 @item y
6518 The x and y offset coordinates where the box is drawn.
6519
6520 @item w
6521 @item h
6522 The width and height of the drawn box.
6523
6524 @item t
6525 The thickness of the drawn box.
6526
6527 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6528 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6529
6530 @end table
6531
6532 @subsection Examples
6533
6534 @itemize
6535 @item
6536 Draw a black box around the edge of the input image:
6537 @example
6538 drawbox
6539 @end example
6540
6541 @item
6542 Draw a box with color red and an opacity of 50%:
6543 @example
6544 drawbox=10:20:200:60:red@@0.5
6545 @end example
6546
6547 The previous example can be specified as:
6548 @example
6549 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6550 @end example
6551
6552 @item
6553 Fill the box with pink color:
6554 @example
6555 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6556 @end example
6557
6558 @item
6559 Draw a 2-pixel red 2.40:1 mask:
6560 @example
6561 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
6562 @end example
6563 @end itemize
6564
6565 @section drawgrid
6566
6567 Draw a grid on the input image.
6568
6569 It accepts the following parameters:
6570
6571 @table @option
6572 @item x
6573 @item y
6574 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6575
6576 @item width, w
6577 @item height, h
6578 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6579 input width and height, respectively, minus @code{thickness}, so image gets
6580 framed. Default to 0.
6581
6582 @item color, c
6583 Specify the color of the grid. For the general syntax of this option,
6584 check the "Color" section in the ffmpeg-utils manual. If the special
6585 value @code{invert} is used, the grid color is the same as the
6586 video with inverted luma.
6587
6588 @item thickness, t
6589 The expression which sets the thickness of the grid line. Default value is @code{1}.
6590
6591 See below for the list of accepted constants.
6592 @end table
6593
6594 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6595 following constants:
6596
6597 @table @option
6598 @item dar
6599 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6600
6601 @item hsub
6602 @item vsub
6603 horizontal and vertical chroma subsample values. For example for the
6604 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6605
6606 @item in_h, ih
6607 @item in_w, iw
6608 The input grid cell width and height.
6609
6610 @item sar
6611 The input sample aspect ratio.
6612
6613 @item x
6614 @item y
6615 The x and y coordinates of some point of grid intersection (meant to configure offset).
6616
6617 @item w
6618 @item h
6619 The width and height of the drawn cell.
6620
6621 @item t
6622 The thickness of the drawn cell.
6623
6624 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6625 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6626
6627 @end table
6628
6629 @subsection Examples
6630
6631 @itemize
6632 @item
6633 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6634 @example
6635 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6636 @end example
6637
6638 @item
6639 Draw a white 3x3 grid with an opacity of 50%:
6640 @example
6641 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6642 @end example
6643 @end itemize
6644
6645 @anchor{drawtext}
6646 @section drawtext
6647
6648 Draw a text string or text from a specified file on top of a video, using the
6649 libfreetype library.
6650
6651 To enable compilation of this filter, you need to configure FFmpeg with
6652 @code{--enable-libfreetype}.
6653 To enable default font fallback and the @var{font} option you need to
6654 configure FFmpeg with @code{--enable-libfontconfig}.
6655 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6656 @code{--enable-libfribidi}.
6657
6658 @subsection Syntax
6659
6660 It accepts the following parameters:
6661
6662 @table @option
6663
6664 @item box
6665 Used to draw a box around text using the background color.
6666 The value must be either 1 (enable) or 0 (disable).
6667 The default value of @var{box} is 0.
6668
6669 @item boxborderw
6670 Set the width of the border to be drawn around the box using @var{boxcolor}.
6671 The default value of @var{boxborderw} is 0.
6672
6673 @item boxcolor
6674 The color to be used for drawing box around text. For the syntax of this
6675 option, check the "Color" section in the ffmpeg-utils manual.
6676
6677 The default value of @var{boxcolor} is "white".
6678
6679 @item borderw
6680 Set the width of the border to be drawn around the text using @var{bordercolor}.
6681 The default value of @var{borderw} is 0.
6682
6683 @item bordercolor
6684 Set the color to be used for drawing border around text. For the syntax of this
6685 option, check the "Color" section in the ffmpeg-utils manual.
6686
6687 The default value of @var{bordercolor} is "black".
6688
6689 @item expansion
6690 Select how the @var{text} is expanded. Can be either @code{none},
6691 @code{strftime} (deprecated) or
6692 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6693 below for details.
6694
6695 @item fix_bounds
6696 If true, check and fix text coords to avoid clipping.
6697
6698 @item fontcolor
6699 The color to be used for drawing fonts. For the syntax of this option, check
6700 the "Color" section in the ffmpeg-utils manual.
6701
6702 The default value of @var{fontcolor} is "black".
6703
6704 @item fontcolor_expr
6705 String which is expanded the same way as @var{text} to obtain dynamic
6706 @var{fontcolor} value. By default this option has empty value and is not
6707 processed. When this option is set, it overrides @var{fontcolor} option.
6708
6709 @item font
6710 The font family to be used for drawing text. By default Sans.
6711
6712 @item fontfile
6713 The font file to be used for drawing text. The path must be included.
6714 This parameter is mandatory if the fontconfig support is disabled.
6715
6716 @item draw
6717 This option does not exist, please see the timeline system
6718
6719 @item alpha
6720 Draw the text applying alpha blending. The value can
6721 be either a number between 0.0 and 1.0
6722 The expression accepts the same variables @var{x, y} do.
6723 The default value is 1.
6724 Please see fontcolor_expr
6725
6726 @item fontsize
6727 The font size to be used for drawing text.
6728 The default value of @var{fontsize} is 16.
6729
6730 @item text_shaping
6731 If set to 1, attempt to shape the text (for example, reverse the order of
6732 right-to-left text and join Arabic characters) before drawing it.
6733 Otherwise, just draw the text exactly as given.
6734 By default 1 (if supported).
6735
6736 @item ft_load_flags
6737 The flags to be used for loading the fonts.
6738
6739 The flags map the corresponding flags supported by libfreetype, and are
6740 a combination of the following values:
6741 @table @var
6742 @item default
6743 @item no_scale
6744 @item no_hinting
6745 @item render
6746 @item no_bitmap
6747 @item vertical_layout
6748 @item force_autohint
6749 @item crop_bitmap
6750 @item pedantic
6751 @item ignore_global_advance_width
6752 @item no_recurse
6753 @item ignore_transform
6754 @item monochrome
6755 @item linear_design
6756 @item no_autohint
6757 @end table
6758
6759 Default value is "default".
6760
6761 For more information consult the documentation for the FT_LOAD_*
6762 libfreetype flags.
6763
6764 @item shadowcolor
6765 The color to be used for drawing a shadow behind the drawn text. For the
6766 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6767
6768 The default value of @var{shadowcolor} is "black".
6769
6770 @item shadowx
6771 @item shadowy
6772 The x and y offsets for the text shadow position with respect to the
6773 position of the text. They can be either positive or negative
6774 values. The default value for both is "0".
6775
6776 @item start_number
6777 The starting frame number for the n/frame_num variable. The default value
6778 is "0".
6779
6780 @item tabsize
6781 The size in number of spaces to use for rendering the tab.
6782 Default value is 4.
6783
6784 @item timecode
6785 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6786 format. It can be used with or without text parameter. @var{timecode_rate}
6787 option must be specified.
6788
6789 @item timecode_rate, rate, r
6790 Set the timecode frame rate (timecode only).
6791
6792 @item text
6793 The text string to be drawn. The text must be a sequence of UTF-8
6794 encoded characters.
6795 This parameter is mandatory if no file is specified with the parameter
6796 @var{textfile}.
6797
6798 @item textfile
6799 A text file containing text to be drawn. The text must be a sequence
6800 of UTF-8 encoded characters.
6801
6802 This parameter is mandatory if no text string is specified with the
6803 parameter @var{text}.
6804
6805 If both @var{text} and @var{textfile} are specified, an error is thrown.
6806
6807 @item reload
6808 If set to 1, the @var{textfile} will be reloaded before each frame.
6809 Be sure to update it atomically, or it may be read partially, or even fail.
6810
6811 @item x
6812 @item y
6813 The expressions which specify the offsets where text will be drawn
6814 within the video frame. They are relative to the top/left border of the
6815 output image.
6816
6817 The default value of @var{x} and @var{y} is "0".
6818
6819 See below for the list of accepted constants and functions.
6820 @end table
6821
6822 The parameters for @var{x} and @var{y} are expressions containing the
6823 following constants and functions:
6824
6825 @table @option
6826 @item dar
6827 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6828
6829 @item hsub
6830 @item vsub
6831 horizontal and vertical chroma subsample values. For example for the
6832 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6833
6834 @item line_h, lh
6835 the height of each text line
6836
6837 @item main_h, h, H
6838 the input height
6839
6840 @item main_w, w, W
6841 the input width
6842
6843 @item max_glyph_a, ascent
6844 the maximum distance from the baseline to the highest/upper grid
6845 coordinate used to place a glyph outline point, for all the rendered
6846 glyphs.
6847 It is a positive value, due to the grid's orientation with the Y axis
6848 upwards.
6849
6850 @item max_glyph_d, descent
6851 the maximum distance from the baseline to the lowest grid coordinate
6852 used to place a glyph outline point, for all the rendered glyphs.
6853 This is a negative value, due to the grid's orientation, with the Y axis
6854 upwards.
6855
6856 @item max_glyph_h
6857 maximum glyph height, that is the maximum height for all the glyphs
6858 contained in the rendered text, it is equivalent to @var{ascent} -
6859 @var{descent}.
6860
6861 @item max_glyph_w
6862 maximum glyph width, that is the maximum width for all the glyphs
6863 contained in the rendered text
6864
6865 @item n
6866 the number of input frame, starting from 0
6867
6868 @item rand(min, max)
6869 return a random number included between @var{min} and @var{max}
6870
6871 @item sar
6872 The input sample aspect ratio.
6873
6874 @item t
6875 timestamp expressed in seconds, NAN if the input timestamp is unknown
6876
6877 @item text_h, th
6878 the height of the rendered text
6879
6880 @item text_w, tw
6881 the width of the rendered text
6882
6883 @item x
6884 @item y
6885 the x and y offset coordinates where the text is drawn.
6886
6887 These parameters allow the @var{x} and @var{y} expressions to refer
6888 each other, so you can for example specify @code{y=x/dar}.
6889 @end table
6890
6891 @anchor{drawtext_expansion}
6892 @subsection Text expansion
6893
6894 If @option{expansion} is set to @code{strftime},
6895 the filter recognizes strftime() sequences in the provided text and
6896 expands them accordingly. Check the documentation of strftime(). This
6897 feature is deprecated.
6898
6899 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6900
6901 If @option{expansion} is set to @code{normal} (which is the default),
6902 the following expansion mechanism is used.
6903
6904 The backslash character @samp{\}, followed by any character, always expands to
6905 the second character.
6906
6907 Sequence of the form @code{%@{...@}} are expanded. The text between the
6908 braces is a function name, possibly followed by arguments separated by ':'.
6909 If the arguments contain special characters or delimiters (':' or '@}'),
6910 they should be escaped.
6911
6912 Note that they probably must also be escaped as the value for the
6913 @option{text} option in the filter argument string and as the filter
6914 argument in the filtergraph description, and possibly also for the shell,
6915 that makes up to four levels of escaping; using a text file avoids these
6916 problems.
6917
6918 The following functions are available:
6919
6920 @table @command
6921
6922 @item expr, e
6923 The expression evaluation result.
6924
6925 It must take one argument specifying the expression to be evaluated,
6926 which accepts the same constants and functions as the @var{x} and
6927 @var{y} values. Note that not all constants should be used, for
6928 example the text size is not known when evaluating the expression, so
6929 the constants @var{text_w} and @var{text_h} will have an undefined
6930 value.
6931
6932 @item expr_int_format, eif
6933 Evaluate the expression's value and output as formatted integer.
6934
6935 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6936 The second argument specifies the output format. Allowed values are @samp{x},
6937 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6938 @code{printf} function.
6939 The third parameter is optional and sets the number of positions taken by the output.
6940 It can be used to add padding with zeros from the left.
6941
6942 @item gmtime
6943 The time at which the filter is running, expressed in UTC.
6944 It can accept an argument: a strftime() format string.
6945
6946 @item localtime
6947 The time at which the filter is running, expressed in the local time zone.
6948 It can accept an argument: a strftime() format string.
6949
6950 @item metadata
6951 Frame metadata. Takes one or two arguments.
6952
6953 The first argument is mandatory and specifies the metadata key.
6954
6955 The second argument is optional and specifies a default value, used when the
6956 metadata key is not found or empty.
6957
6958 @item n, frame_num
6959 The frame number, starting from 0.
6960
6961 @item pict_type
6962 A 1 character description of the current picture type.
6963
6964 @item pts
6965 The timestamp of the current frame.
6966 It can take up to three arguments.
6967
6968 The first argument is the format of the timestamp; it defaults to @code{flt}
6969 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6970 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6971 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6972 @code{localtime} stands for the timestamp of the frame formatted as
6973 local time zone time.
6974
6975 The second argument is an offset added to the timestamp.
6976
6977 If the format is set to @code{localtime} or @code{gmtime},
6978 a third argument may be supplied: a strftime() format string.
6979 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6980 @end table
6981
6982 @subsection Examples
6983
6984 @itemize
6985 @item
6986 Draw "Test Text" with font FreeSerif, using the default values for the
6987 optional parameters.
6988
6989 @example
6990 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6991 @end example
6992
6993 @item
6994 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
6995 and y=50 (counting from the top-left corner of the screen), text is
6996 yellow with a red box around it. Both the text and the box have an
6997 opacity of 20%.
6998
6999 @example
7000 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
7001           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
7002 @end example
7003
7004 Note that the double quotes are not necessary if spaces are not used
7005 within the parameter list.
7006
7007 @item
7008 Show the text at the center of the video frame:
7009 @example
7010 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
7011 @end example
7012
7013 @item
7014 Show the text at a random position, switching to a new position every 30 seconds:
7015 @example
7016 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)"
7017 @end example
7018
7019 @item
7020 Show a text line sliding from right to left in the last row of the video
7021 frame. The file @file{LONG_LINE} is assumed to contain a single line
7022 with no newlines.
7023 @example
7024 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
7025 @end example
7026
7027 @item
7028 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
7029 @example
7030 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
7031 @end example
7032
7033 @item
7034 Draw a single green letter "g", at the center of the input video.
7035 The glyph baseline is placed at half screen height.
7036 @example
7037 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7038 @end example
7039
7040 @item
7041 Show text for 1 second every 3 seconds:
7042 @example
7043 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7044 @end example
7045
7046 @item
7047 Use fontconfig to set the font. Note that the colons need to be escaped.
7048 @example
7049 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7050 @end example
7051
7052 @item
7053 Print the date of a real-time encoding (see strftime(3)):
7054 @example
7055 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7056 @end example
7057
7058 @item
7059 Show text fading in and out (appearing/disappearing):
7060 @example
7061 #!/bin/sh
7062 DS=1.0 # display start
7063 DE=10.0 # display end
7064 FID=1.5 # fade in duration
7065 FOD=5 # fade out duration
7066 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 @}"
7067 @end example
7068
7069 @end itemize
7070
7071 For more information about libfreetype, check:
7072 @url{http://www.freetype.org/}.
7073
7074 For more information about fontconfig, check:
7075 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7076
7077 For more information about libfribidi, check:
7078 @url{http://fribidi.org/}.
7079
7080 @section edgedetect
7081
7082 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7083
7084 The filter accepts the following options:
7085
7086 @table @option
7087 @item low
7088 @item high
7089 Set low and high threshold values used by the Canny thresholding
7090 algorithm.
7091
7092 The high threshold selects the "strong" edge pixels, which are then
7093 connected through 8-connectivity with the "weak" edge pixels selected
7094 by the low threshold.
7095
7096 @var{low} and @var{high} threshold values must be chosen in the range
7097 [0,1], and @var{low} should be lesser or equal to @var{high}.
7098
7099 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7100 is @code{50/255}.
7101
7102 @item mode
7103 Define the drawing mode.
7104
7105 @table @samp
7106 @item wires
7107 Draw white/gray wires on black background.
7108
7109 @item colormix
7110 Mix the colors to create a paint/cartoon effect.
7111 @end table
7112
7113 Default value is @var{wires}.
7114 @end table
7115
7116 @subsection Examples
7117
7118 @itemize
7119 @item
7120 Standard edge detection with custom values for the hysteresis thresholding:
7121 @example
7122 edgedetect=low=0.1:high=0.4
7123 @end example
7124
7125 @item
7126 Painting effect without thresholding:
7127 @example
7128 edgedetect=mode=colormix:high=0
7129 @end example
7130 @end itemize
7131
7132 @section eq
7133 Set brightness, contrast, saturation and approximate gamma adjustment.
7134
7135 The filter accepts the following options:
7136
7137 @table @option
7138 @item contrast
7139 Set the contrast expression. The value must be a float value in range
7140 @code{-2.0} to @code{2.0}. The default value is "1".
7141
7142 @item brightness
7143 Set the brightness expression. The value must be a float value in
7144 range @code{-1.0} to @code{1.0}. The default value is "0".
7145
7146 @item saturation
7147 Set the saturation expression. The value must be a float in
7148 range @code{0.0} to @code{3.0}. The default value is "1".
7149
7150 @item gamma
7151 Set the gamma expression. The value must be a float in range
7152 @code{0.1} to @code{10.0}.  The default value is "1".
7153
7154 @item gamma_r
7155 Set the gamma expression for red. The value must be a float in
7156 range @code{0.1} to @code{10.0}. The default value is "1".
7157
7158 @item gamma_g
7159 Set the gamma expression for green. The value must be a float in range
7160 @code{0.1} to @code{10.0}. The default value is "1".
7161
7162 @item gamma_b
7163 Set the gamma expression for blue. The value must be a float in range
7164 @code{0.1} to @code{10.0}. The default value is "1".
7165
7166 @item gamma_weight
7167 Set the gamma weight expression. It can be used to reduce the effect
7168 of a high gamma value on bright image areas, e.g. keep them from
7169 getting overamplified and just plain white. The value must be a float
7170 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7171 gamma correction all the way down while @code{1.0} leaves it at its
7172 full strength. Default is "1".
7173
7174 @item eval
7175 Set when the expressions for brightness, contrast, saturation and
7176 gamma expressions are evaluated.
7177
7178 It accepts the following values:
7179 @table @samp
7180 @item init
7181 only evaluate expressions once during the filter initialization or
7182 when a command is processed
7183
7184 @item frame
7185 evaluate expressions for each incoming frame
7186 @end table
7187
7188 Default value is @samp{init}.
7189 @end table
7190
7191 The expressions accept the following parameters:
7192 @table @option
7193 @item n
7194 frame count of the input frame starting from 0
7195
7196 @item pos
7197 byte position of the corresponding packet in the input file, NAN if
7198 unspecified
7199
7200 @item r
7201 frame rate of the input video, NAN if the input frame rate is unknown
7202
7203 @item t
7204 timestamp expressed in seconds, NAN if the input timestamp is unknown
7205 @end table
7206
7207 @subsection Commands
7208 The filter supports the following commands:
7209
7210 @table @option
7211 @item contrast
7212 Set the contrast expression.
7213
7214 @item brightness
7215 Set the brightness expression.
7216
7217 @item saturation
7218 Set the saturation expression.
7219
7220 @item gamma
7221 Set the gamma expression.
7222
7223 @item gamma_r
7224 Set the gamma_r expression.
7225
7226 @item gamma_g
7227 Set gamma_g expression.
7228
7229 @item gamma_b
7230 Set gamma_b expression.
7231
7232 @item gamma_weight
7233 Set gamma_weight expression.
7234
7235 The command accepts the same syntax of the corresponding option.
7236
7237 If the specified expression is not valid, it is kept at its current
7238 value.
7239
7240 @end table
7241
7242 @section erosion
7243
7244 Apply erosion effect to the video.
7245
7246 This filter replaces the pixel by the local(3x3) minimum.
7247
7248 It accepts the following options:
7249
7250 @table @option
7251 @item threshold0
7252 @item threshold1
7253 @item threshold2
7254 @item threshold3
7255 Limit the maximum change for each plane, default is 65535.
7256 If 0, plane will remain unchanged.
7257
7258 @item coordinates
7259 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7260 pixels are used.
7261
7262 Flags to local 3x3 coordinates maps like this:
7263
7264     1 2 3
7265     4   5
7266     6 7 8
7267 @end table
7268
7269 @section extractplanes
7270
7271 Extract color channel components from input video stream into
7272 separate grayscale video streams.
7273
7274 The filter accepts the following option:
7275
7276 @table @option
7277 @item planes
7278 Set plane(s) to extract.
7279
7280 Available values for planes are:
7281 @table @samp
7282 @item y
7283 @item u
7284 @item v
7285 @item a
7286 @item r
7287 @item g
7288 @item b
7289 @end table
7290
7291 Choosing planes not available in the input will result in an error.
7292 That means you cannot select @code{r}, @code{g}, @code{b} planes
7293 with @code{y}, @code{u}, @code{v} planes at same time.
7294 @end table
7295
7296 @subsection Examples
7297
7298 @itemize
7299 @item
7300 Extract luma, u and v color channel component from input video frame
7301 into 3 grayscale outputs:
7302 @example
7303 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
7304 @end example
7305 @end itemize
7306
7307 @section elbg
7308
7309 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7310
7311 For each input image, the filter will compute the optimal mapping from
7312 the input to the output given the codebook length, that is the number
7313 of distinct output colors.
7314
7315 This filter accepts the following options.
7316
7317 @table @option
7318 @item codebook_length, l
7319 Set codebook length. The value must be a positive integer, and
7320 represents the number of distinct output colors. Default value is 256.
7321
7322 @item nb_steps, n
7323 Set the maximum number of iterations to apply for computing the optimal
7324 mapping. The higher the value the better the result and the higher the
7325 computation time. Default value is 1.
7326
7327 @item seed, s
7328 Set a random seed, must be an integer included between 0 and
7329 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7330 will try to use a good random seed on a best effort basis.
7331
7332 @item pal8
7333 Set pal8 output pixel format. This option does not work with codebook
7334 length greater than 256.
7335 @end table
7336
7337 @section fade
7338
7339 Apply a fade-in/out effect to the input video.
7340
7341 It accepts the following parameters:
7342
7343 @table @option
7344 @item type, t
7345 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7346 effect.
7347 Default is @code{in}.
7348
7349 @item start_frame, s
7350 Specify the number of the frame to start applying the fade
7351 effect at. Default is 0.
7352
7353 @item nb_frames, n
7354 The number of frames that the fade effect lasts. At the end of the
7355 fade-in effect, the output video will have the same intensity as the input video.
7356 At the end of the fade-out transition, the output video will be filled with the
7357 selected @option{color}.
7358 Default is 25.
7359
7360 @item alpha
7361 If set to 1, fade only alpha channel, if one exists on the input.
7362 Default value is 0.
7363
7364 @item start_time, st
7365 Specify the timestamp (in seconds) of the frame to start to apply the fade
7366 effect. If both start_frame and start_time are specified, the fade will start at
7367 whichever comes last.  Default is 0.
7368
7369 @item duration, d
7370 The number of seconds for which the fade effect has to last. At the end of the
7371 fade-in effect the output video will have the same intensity as the input video,
7372 at the end of the fade-out transition the output video will be filled with the
7373 selected @option{color}.
7374 If both duration and nb_frames are specified, duration is used. Default is 0
7375 (nb_frames is used by default).
7376
7377 @item color, c
7378 Specify the color of the fade. Default is "black".
7379 @end table
7380
7381 @subsection Examples
7382
7383 @itemize
7384 @item
7385 Fade in the first 30 frames of video:
7386 @example
7387 fade=in:0:30
7388 @end example
7389
7390 The command above is equivalent to:
7391 @example
7392 fade=t=in:s=0:n=30
7393 @end example
7394
7395 @item
7396 Fade out the last 45 frames of a 200-frame video:
7397 @example
7398 fade=out:155:45
7399 fade=type=out:start_frame=155:nb_frames=45
7400 @end example
7401
7402 @item
7403 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7404 @example
7405 fade=in:0:25, fade=out:975:25
7406 @end example
7407
7408 @item
7409 Make the first 5 frames yellow, then fade in from frame 5-24:
7410 @example
7411 fade=in:5:20:color=yellow
7412 @end example
7413
7414 @item
7415 Fade in alpha over first 25 frames of video:
7416 @example
7417 fade=in:0:25:alpha=1
7418 @end example
7419
7420 @item
7421 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7422 @example
7423 fade=t=in:st=5.5:d=0.5
7424 @end example
7425
7426 @end itemize
7427
7428 @section fftfilt
7429 Apply arbitrary expressions to samples in frequency domain
7430
7431 @table @option
7432 @item dc_Y
7433 Adjust the dc value (gain) of the luma plane of the image. The filter
7434 accepts an integer value in range @code{0} to @code{1000}. The default
7435 value is set to @code{0}.
7436
7437 @item dc_U
7438 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7439 filter accepts an integer value in range @code{0} to @code{1000}. The
7440 default value is set to @code{0}.
7441
7442 @item dc_V
7443 Adjust the dc value (gain) of the 2nd 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 weight_Y
7448 Set the frequency domain weight expression for the luma plane.
7449
7450 @item weight_U
7451 Set the frequency domain weight expression for the 1st chroma plane.
7452
7453 @item weight_V
7454 Set the frequency domain weight expression for the 2nd chroma plane.
7455
7456 The filter accepts the following variables:
7457 @item X
7458 @item Y
7459 The coordinates of the current sample.
7460
7461 @item W
7462 @item H
7463 The width and height of the image.
7464 @end table
7465
7466 @subsection Examples
7467
7468 @itemize
7469 @item
7470 High-pass:
7471 @example
7472 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7473 @end example
7474
7475 @item
7476 Low-pass:
7477 @example
7478 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7479 @end example
7480
7481 @item
7482 Sharpen:
7483 @example
7484 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7485 @end example
7486
7487 @item
7488 Blur:
7489 @example
7490 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7491 @end example
7492
7493 @end itemize
7494
7495 @section field
7496
7497 Extract a single field from an interlaced image using stride
7498 arithmetic to avoid wasting CPU time. The output frames are marked as
7499 non-interlaced.
7500
7501 The filter accepts the following options:
7502
7503 @table @option
7504 @item type
7505 Specify whether to extract the top (if the value is @code{0} or
7506 @code{top}) or the bottom field (if the value is @code{1} or
7507 @code{bottom}).
7508 @end table
7509
7510 @section fieldhint
7511
7512 Create new frames by copying the top and bottom fields from surrounding frames
7513 supplied as numbers by the hint file.
7514
7515 @table @option
7516 @item hint
7517 Set file containing hints: absolute/relative frame numbers.
7518
7519 There must be one line for each frame in a clip. Each line must contain two
7520 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7521 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7522 is current frame number for @code{absolute} mode or out of [-1, 1] range
7523 for @code{relative} mode. First number tells from which frame to pick up top
7524 field and second number tells from which frame to pick up bottom field.
7525
7526 If optionally followed by @code{+} output frame will be marked as interlaced,
7527 else if followed by @code{-} output frame will be marked as progressive, else
7528 it will be marked same as input frame.
7529 If line starts with @code{#} or @code{;} that line is skipped.
7530
7531 @item mode
7532 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7533 @end table
7534
7535 Example of first several lines of @code{hint} file for @code{relative} mode:
7536 @example
7537 0,0 - # first frame
7538 1,0 - # second frame, use third's frame top field and second's frame bottom field
7539 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7540 1,0 -
7541 0,0 -
7542 0,0 -
7543 1,0 -
7544 1,0 -
7545 1,0 -
7546 0,0 -
7547 0,0 -
7548 1,0 -
7549 1,0 -
7550 1,0 -
7551 0,0 -
7552 @end example
7553
7554 @section fieldmatch
7555
7556 Field matching filter for inverse telecine. It is meant to reconstruct the
7557 progressive frames from a telecined stream. The filter does not drop duplicated
7558 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7559 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7560
7561 The separation of the field matching and the decimation is notably motivated by
7562 the possibility of inserting a de-interlacing filter fallback between the two.
7563 If the source has mixed telecined and real interlaced content,
7564 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7565 But these remaining combed frames will be marked as interlaced, and thus can be
7566 de-interlaced by a later filter such as @ref{yadif} before decimation.
7567
7568 In addition to the various configuration options, @code{fieldmatch} can take an
7569 optional second stream, activated through the @option{ppsrc} option. If
7570 enabled, the frames reconstruction will be based on the fields and frames from
7571 this second stream. This allows the first input to be pre-processed in order to
7572 help the various algorithms of the filter, while keeping the output lossless
7573 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7574 or brightness/contrast adjustments can help.
7575
7576 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7577 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7578 which @code{fieldmatch} is based on. While the semantic and usage are very
7579 close, some behaviour and options names can differ.
7580
7581 The @ref{decimate} filter currently only works for constant frame rate input.
7582 If your input has mixed telecined (30fps) and progressive content with a lower
7583 framerate like 24fps use the following filterchain to produce the necessary cfr
7584 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7585
7586 The filter accepts the following options:
7587
7588 @table @option
7589 @item order
7590 Specify the assumed field order of the input stream. Available values are:
7591
7592 @table @samp
7593 @item auto
7594 Auto detect parity (use FFmpeg's internal parity value).
7595 @item bff
7596 Assume bottom field first.
7597 @item tff
7598 Assume top field first.
7599 @end table
7600
7601 Note that it is sometimes recommended not to trust the parity announced by the
7602 stream.
7603
7604 Default value is @var{auto}.
7605
7606 @item mode
7607 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7608 sense that it won't risk creating jerkiness due to duplicate frames when
7609 possible, but if there are bad edits or blended fields it will end up
7610 outputting combed frames when a good match might actually exist. On the other
7611 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7612 but will almost always find a good frame if there is one. The other values are
7613 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7614 jerkiness and creating duplicate frames versus finding good matches in sections
7615 with bad edits, orphaned fields, blended fields, etc.
7616
7617 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7618
7619 Available values are:
7620
7621 @table @samp
7622 @item pc
7623 2-way matching (p/c)
7624 @item pc_n
7625 2-way matching, and trying 3rd match if still combed (p/c + n)
7626 @item pc_u
7627 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7628 @item pc_n_ub
7629 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7630 still combed (p/c + n + u/b)
7631 @item pcn
7632 3-way matching (p/c/n)
7633 @item pcn_ub
7634 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7635 detected as combed (p/c/n + u/b)
7636 @end table
7637
7638 The parenthesis at the end indicate the matches that would be used for that
7639 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7640 @var{top}).
7641
7642 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7643 the slowest.
7644
7645 Default value is @var{pc_n}.
7646
7647 @item ppsrc
7648 Mark the main input stream as a pre-processed input, and enable the secondary
7649 input stream as the clean source to pick the fields from. See the filter
7650 introduction for more details. It is similar to the @option{clip2} feature from
7651 VFM/TFM.
7652
7653 Default value is @code{0} (disabled).
7654
7655 @item field
7656 Set the field to match from. It is recommended to set this to the same value as
7657 @option{order} unless you experience matching failures with that setting. In
7658 certain circumstances changing the field that is used to match from can have a
7659 large impact on matching performance. Available values are:
7660
7661 @table @samp
7662 @item auto
7663 Automatic (same value as @option{order}).
7664 @item bottom
7665 Match from the bottom field.
7666 @item top
7667 Match from the top field.
7668 @end table
7669
7670 Default value is @var{auto}.
7671
7672 @item mchroma
7673 Set whether or not chroma is included during the match comparisons. In most
7674 cases it is recommended to leave this enabled. You should set this to @code{0}
7675 only if your clip has bad chroma problems such as heavy rainbowing or other
7676 artifacts. Setting this to @code{0} could also be used to speed things up at
7677 the cost of some accuracy.
7678
7679 Default value is @code{1}.
7680
7681 @item y0
7682 @item y1
7683 These define an exclusion band which excludes the lines between @option{y0} and
7684 @option{y1} from being included in the field matching decision. An exclusion
7685 band can be used to ignore subtitles, a logo, or other things that may
7686 interfere with the matching. @option{y0} sets the starting scan line and
7687 @option{y1} sets the ending line; all lines in between @option{y0} and
7688 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7689 @option{y0} and @option{y1} to the same value will disable the feature.
7690 @option{y0} and @option{y1} defaults to @code{0}.
7691
7692 @item scthresh
7693 Set the scene change detection threshold as a percentage of maximum change on
7694 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7695 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7696 @option{scthresh} is @code{[0.0, 100.0]}.
7697
7698 Default value is @code{12.0}.
7699
7700 @item combmatch
7701 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7702 account the combed scores of matches when deciding what match to use as the
7703 final match. Available values are:
7704
7705 @table @samp
7706 @item none
7707 No final matching based on combed scores.
7708 @item sc
7709 Combed scores are only used when a scene change is detected.
7710 @item full
7711 Use combed scores all the time.
7712 @end table
7713
7714 Default is @var{sc}.
7715
7716 @item combdbg
7717 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7718 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7719 Available values are:
7720
7721 @table @samp
7722 @item none
7723 No forced calculation.
7724 @item pcn
7725 Force p/c/n calculations.
7726 @item pcnub
7727 Force p/c/n/u/b calculations.
7728 @end table
7729
7730 Default value is @var{none}.
7731
7732 @item cthresh
7733 This is the area combing threshold used for combed frame detection. This
7734 essentially controls how "strong" or "visible" combing must be to be detected.
7735 Larger values mean combing must be more visible and smaller values mean combing
7736 can be less visible or strong and still be detected. Valid settings are from
7737 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7738 be detected as combed). This is basically a pixel difference value. A good
7739 range is @code{[8, 12]}.
7740
7741 Default value is @code{9}.
7742
7743 @item chroma
7744 Sets whether or not chroma is considered in the combed frame decision.  Only
7745 disable this if your source has chroma problems (rainbowing, etc.) that are
7746 causing problems for the combed frame detection with chroma enabled. Actually,
7747 using @option{chroma}=@var{0} is usually more reliable, except for the case
7748 where there is chroma only combing in the source.
7749
7750 Default value is @code{0}.
7751
7752 @item blockx
7753 @item blocky
7754 Respectively set the x-axis and y-axis size of the window used during combed
7755 frame detection. This has to do with the size of the area in which
7756 @option{combpel} pixels are required to be detected as combed for a frame to be
7757 declared combed. See the @option{combpel} parameter description for more info.
7758 Possible values are any number that is a power of 2 starting at 4 and going up
7759 to 512.
7760
7761 Default value is @code{16}.
7762
7763 @item combpel
7764 The number of combed pixels inside any of the @option{blocky} by
7765 @option{blockx} size blocks on the frame for the frame to be detected as
7766 combed. While @option{cthresh} controls how "visible" the combing must be, this
7767 setting controls "how much" combing there must be in any localized area (a
7768 window defined by the @option{blockx} and @option{blocky} settings) on the
7769 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7770 which point no frames will ever be detected as combed). This setting is known
7771 as @option{MI} in TFM/VFM vocabulary.
7772
7773 Default value is @code{80}.
7774 @end table
7775
7776 @anchor{p/c/n/u/b meaning}
7777 @subsection p/c/n/u/b meaning
7778
7779 @subsubsection p/c/n
7780
7781 We assume the following telecined stream:
7782
7783 @example
7784 Top fields:     1 2 2 3 4
7785 Bottom fields:  1 2 3 4 4
7786 @end example
7787
7788 The numbers correspond to the progressive frame the fields relate to. Here, the
7789 first two frames are progressive, the 3rd and 4th are combed, and so on.
7790
7791 When @code{fieldmatch} is configured to run a matching from bottom
7792 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7793
7794 @example
7795 Input stream:
7796                 T     1 2 2 3 4
7797                 B     1 2 3 4 4   <-- matching reference
7798
7799 Matches:              c c n n c
7800
7801 Output stream:
7802                 T     1 2 3 4 4
7803                 B     1 2 3 4 4
7804 @end example
7805
7806 As a result of the field matching, we can see that some frames get duplicated.
7807 To perform a complete inverse telecine, you need to rely on a decimation filter
7808 after this operation. See for instance the @ref{decimate} filter.
7809
7810 The same operation now matching from top fields (@option{field}=@var{top})
7811 looks like this:
7812
7813 @example
7814 Input stream:
7815                 T     1 2 2 3 4   <-- matching reference
7816                 B     1 2 3 4 4
7817
7818 Matches:              c c p p c
7819
7820 Output stream:
7821                 T     1 2 2 3 4
7822                 B     1 2 2 3 4
7823 @end example
7824
7825 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7826 basically, they refer to the frame and field of the opposite parity:
7827
7828 @itemize
7829 @item @var{p} matches the field of the opposite parity in the previous frame
7830 @item @var{c} matches the field of the opposite parity in the current frame
7831 @item @var{n} matches the field of the opposite parity in the next frame
7832 @end itemize
7833
7834 @subsubsection u/b
7835
7836 The @var{u} and @var{b} matching are a bit special in the sense that they match
7837 from the opposite parity flag. In the following examples, we assume that we are
7838 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7839 'x' is placed above and below each matched fields.
7840
7841 With bottom matching (@option{field}=@var{bottom}):
7842 @example
7843 Match:           c         p           n          b          u
7844
7845                  x       x               x        x          x
7846   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7847   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7848                  x         x           x        x              x
7849
7850 Output frames:
7851                  2          1          2          2          2
7852                  2          2          2          1          3
7853 @end example
7854
7855 With top matching (@option{field}=@var{top}):
7856 @example
7857 Match:           c         p           n          b          u
7858
7859                  x         x           x        x              x
7860   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7861   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7862                  x       x               x        x          x
7863
7864 Output frames:
7865                  2          2          2          1          2
7866                  2          1          3          2          2
7867 @end example
7868
7869 @subsection Examples
7870
7871 Simple IVTC of a top field first telecined stream:
7872 @example
7873 fieldmatch=order=tff:combmatch=none, decimate
7874 @end example
7875
7876 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7877 @example
7878 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7879 @end example
7880
7881 @section fieldorder
7882
7883 Transform the field order of the input video.
7884
7885 It accepts the following parameters:
7886
7887 @table @option
7888
7889 @item order
7890 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7891 for bottom field first.
7892 @end table
7893
7894 The default value is @samp{tff}.
7895
7896 The transformation is done by shifting the picture content up or down
7897 by one line, and filling the remaining line with appropriate picture content.
7898 This method is consistent with most broadcast field order converters.
7899
7900 If the input video is not flagged as being interlaced, or it is already
7901 flagged as being of the required output field order, then this filter does
7902 not alter the incoming video.
7903
7904 It is very useful when converting to or from PAL DV material,
7905 which is bottom field first.
7906
7907 For example:
7908 @example
7909 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7910 @end example
7911
7912 @section fifo, afifo
7913
7914 Buffer input images and send them when they are requested.
7915
7916 It is mainly useful when auto-inserted by the libavfilter
7917 framework.
7918
7919 It does not take parameters.
7920
7921 @section find_rect
7922
7923 Find a rectangular object
7924
7925 It accepts the following options:
7926
7927 @table @option
7928 @item object
7929 Filepath of the object image, needs to be in gray8.
7930
7931 @item threshold
7932 Detection threshold, default is 0.5.
7933
7934 @item mipmaps
7935 Number of mipmaps, default is 3.
7936
7937 @item xmin, ymin, xmax, ymax
7938 Specifies the rectangle in which to search.
7939 @end table
7940
7941 @subsection Examples
7942
7943 @itemize
7944 @item
7945 Generate a representative palette of a given video using @command{ffmpeg}:
7946 @example
7947 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7948 @end example
7949 @end itemize
7950
7951 @section cover_rect
7952
7953 Cover a rectangular object
7954
7955 It accepts the following options:
7956
7957 @table @option
7958 @item cover
7959 Filepath of the optional cover image, needs to be in yuv420.
7960
7961 @item mode
7962 Set covering mode.
7963
7964 It accepts the following values:
7965 @table @samp
7966 @item cover
7967 cover it by the supplied image
7968 @item blur
7969 cover it by interpolating the surrounding pixels
7970 @end table
7971
7972 Default value is @var{blur}.
7973 @end table
7974
7975 @subsection Examples
7976
7977 @itemize
7978 @item
7979 Generate a representative palette of a given video using @command{ffmpeg}:
7980 @example
7981 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7982 @end example
7983 @end itemize
7984
7985 @anchor{format}
7986 @section format
7987
7988 Convert the input video to one of the specified pixel formats.
7989 Libavfilter will try to pick one that is suitable as input to
7990 the next filter.
7991
7992 It accepts the following parameters:
7993 @table @option
7994
7995 @item pix_fmts
7996 A '|'-separated list of pixel format names, such as
7997 "pix_fmts=yuv420p|monow|rgb24".
7998
7999 @end table
8000
8001 @subsection Examples
8002
8003 @itemize
8004 @item
8005 Convert the input video to the @var{yuv420p} format
8006 @example
8007 format=pix_fmts=yuv420p
8008 @end example
8009
8010 Convert the input video to any of the formats in the list
8011 @example
8012 format=pix_fmts=yuv420p|yuv444p|yuv410p
8013 @end example
8014 @end itemize
8015
8016 @anchor{fps}
8017 @section fps
8018
8019 Convert the video to specified constant frame rate by duplicating or dropping
8020 frames as necessary.
8021
8022 It accepts the following parameters:
8023 @table @option
8024
8025 @item fps
8026 The desired output frame rate. The default is @code{25}.
8027
8028 @item round
8029 Rounding method.
8030
8031 Possible values are:
8032 @table @option
8033 @item zero
8034 zero round towards 0
8035 @item inf
8036 round away from 0
8037 @item down
8038 round towards -infinity
8039 @item up
8040 round towards +infinity
8041 @item near
8042 round to nearest
8043 @end table
8044 The default is @code{near}.
8045
8046 @item start_time
8047 Assume the first PTS should be the given value, in seconds. This allows for
8048 padding/trimming at the start of stream. By default, no assumption is made
8049 about the first frame's expected PTS, so no padding or trimming is done.
8050 For example, this could be set to 0 to pad the beginning with duplicates of
8051 the first frame if a video stream starts after the audio stream or to trim any
8052 frames with a negative PTS.
8053
8054 @end table
8055
8056 Alternatively, the options can be specified as a flat string:
8057 @var{fps}[:@var{round}].
8058
8059 See also the @ref{setpts} filter.
8060
8061 @subsection Examples
8062
8063 @itemize
8064 @item
8065 A typical usage in order to set the fps to 25:
8066 @example
8067 fps=fps=25
8068 @end example
8069
8070 @item
8071 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8072 @example
8073 fps=fps=film:round=near
8074 @end example
8075 @end itemize
8076
8077 @section framepack
8078
8079 Pack two different video streams into a stereoscopic video, setting proper
8080 metadata on supported codecs. The two views should have the same size and
8081 framerate and processing will stop when the shorter video ends. Please note
8082 that you may conveniently adjust view properties with the @ref{scale} and
8083 @ref{fps} filters.
8084
8085 It accepts the following parameters:
8086 @table @option
8087
8088 @item format
8089 The desired packing format. Supported values are:
8090
8091 @table @option
8092
8093 @item sbs
8094 The views are next to each other (default).
8095
8096 @item tab
8097 The views are on top of each other.
8098
8099 @item lines
8100 The views are packed by line.
8101
8102 @item columns
8103 The views are packed by column.
8104
8105 @item frameseq
8106 The views are temporally interleaved.
8107
8108 @end table
8109
8110 @end table
8111
8112 Some examples:
8113
8114 @example
8115 # Convert left and right views into a frame-sequential video
8116 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8117
8118 # Convert views into a side-by-side video with the same output resolution as the input
8119 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
8120 @end example
8121
8122 @section framerate
8123
8124 Change the frame rate by interpolating new video output frames from the source
8125 frames.
8126
8127 This filter is not designed to function correctly with interlaced media. If
8128 you wish to change the frame rate of interlaced media then you are required
8129 to deinterlace before this filter and re-interlace after this filter.
8130
8131 A description of the accepted options follows.
8132
8133 @table @option
8134 @item fps
8135 Specify the output frames per second. This option can also be specified
8136 as a value alone. The default is @code{50}.
8137
8138 @item interp_start
8139 Specify the start of a range where the output frame will be created as a
8140 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8141 the default is @code{15}.
8142
8143 @item interp_end
8144 Specify the end 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{240}.
8147
8148 @item scene
8149 Specify the level at which a scene change is detected as a value between
8150 0 and 100 to indicate a new scene; a low value reflects a low
8151 probability for the current frame to introduce a new scene, while a higher
8152 value means the current frame is more likely to be one.
8153 The default is @code{7}.
8154
8155 @item flags
8156 Specify flags influencing the filter process.
8157
8158 Available value for @var{flags} is:
8159
8160 @table @option
8161 @item scene_change_detect, scd
8162 Enable scene change detection using the value of the option @var{scene}.
8163 This flag is enabled by default.
8164 @end table
8165 @end table
8166
8167 @section framestep
8168
8169 Select one frame every N-th frame.
8170
8171 This filter accepts the following option:
8172 @table @option
8173 @item step
8174 Select frame after every @code{step} frames.
8175 Allowed values are positive integers higher than 0. Default value is @code{1}.
8176 @end table
8177
8178 @anchor{frei0r}
8179 @section frei0r
8180
8181 Apply a frei0r effect to the input video.
8182
8183 To enable the compilation of this filter, you need to install the frei0r
8184 header and configure FFmpeg with @code{--enable-frei0r}.
8185
8186 It accepts the following parameters:
8187
8188 @table @option
8189
8190 @item filter_name
8191 The name of the frei0r effect to load. If the environment variable
8192 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8193 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8194 Otherwise, the standard frei0r paths are searched, in this order:
8195 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8196 @file{/usr/lib/frei0r-1/}.
8197
8198 @item filter_params
8199 A '|'-separated list of parameters to pass to the frei0r effect.
8200
8201 @end table
8202
8203 A frei0r effect parameter can be a boolean (its value is either
8204 "y" or "n"), a double, a color (specified as
8205 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8206 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8207 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8208 @var{X} and @var{Y} are floating point numbers) and/or a string.
8209
8210 The number and types of parameters depend on the loaded effect. If an
8211 effect parameter is not specified, the default value is set.
8212
8213 @subsection Examples
8214
8215 @itemize
8216 @item
8217 Apply the distort0r effect, setting the first two double parameters:
8218 @example
8219 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8220 @end example
8221
8222 @item
8223 Apply the colordistance effect, taking a color as the first parameter:
8224 @example
8225 frei0r=colordistance:0.2/0.3/0.4
8226 frei0r=colordistance:violet
8227 frei0r=colordistance:0x112233
8228 @end example
8229
8230 @item
8231 Apply the perspective effect, specifying the top left and top right image
8232 positions:
8233 @example
8234 frei0r=perspective:0.2/0.2|0.8/0.2
8235 @end example
8236 @end itemize
8237
8238 For more information, see
8239 @url{http://frei0r.dyne.org}
8240
8241 @section fspp
8242
8243 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8244
8245 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8246 processing filter, one of them is performed once per block, not per pixel.
8247 This allows for much higher speed.
8248
8249 The filter accepts the following options:
8250
8251 @table @option
8252 @item quality
8253 Set quality. This option defines the number of levels for averaging. It accepts
8254 an integer in the range 4-5. Default value is @code{4}.
8255
8256 @item qp
8257 Force a constant quantization parameter. It accepts an integer in range 0-63.
8258 If not set, the filter will use the QP from the video stream (if available).
8259
8260 @item strength
8261 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8262 more details but also more artifacts, while higher values make the image smoother
8263 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8264
8265 @item use_bframe_qp
8266 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8267 option may cause flicker since the B-Frames have often larger QP. Default is
8268 @code{0} (not enabled).
8269
8270 @end table
8271
8272 @section gblur
8273
8274 Apply Gaussian blur filter.
8275
8276 The filter accepts the following options:
8277
8278 @table @option
8279 @item sigma
8280 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
8281
8282 @item steps
8283 Set number of steps for Gaussian approximation. Defauls is @code{1}.
8284
8285 @item planes
8286 Set which planes to filter. By default all planes are filtered.
8287
8288 @item sigmaV
8289 Set vertical sigma, if negative it will be same as @code{sigma}.
8290 Default is @code{-1}.
8291 @end table
8292
8293 @section geq
8294
8295 The filter accepts the following options:
8296
8297 @table @option
8298 @item lum_expr, lum
8299 Set the luminance expression.
8300 @item cb_expr, cb
8301 Set the chrominance blue expression.
8302 @item cr_expr, cr
8303 Set the chrominance red expression.
8304 @item alpha_expr, a
8305 Set the alpha expression.
8306 @item red_expr, r
8307 Set the red expression.
8308 @item green_expr, g
8309 Set the green expression.
8310 @item blue_expr, b
8311 Set the blue expression.
8312 @end table
8313
8314 The colorspace is selected according to the specified options. If one
8315 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8316 options is specified, the filter will automatically select a YCbCr
8317 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8318 @option{blue_expr} options is specified, it will select an RGB
8319 colorspace.
8320
8321 If one of the chrominance expression is not defined, it falls back on the other
8322 one. If no alpha expression is specified it will evaluate to opaque value.
8323 If none of chrominance expressions are specified, they will evaluate
8324 to the luminance expression.
8325
8326 The expressions can use the following variables and functions:
8327
8328 @table @option
8329 @item N
8330 The sequential number of the filtered frame, starting from @code{0}.
8331
8332 @item X
8333 @item Y
8334 The coordinates of the current sample.
8335
8336 @item W
8337 @item H
8338 The width and height of the image.
8339
8340 @item SW
8341 @item SH
8342 Width and height scale depending on the currently filtered plane. It is the
8343 ratio between the corresponding luma plane number of pixels and the current
8344 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8345 @code{0.5,0.5} for chroma planes.
8346
8347 @item T
8348 Time of the current frame, expressed in seconds.
8349
8350 @item p(x, y)
8351 Return the value of the pixel at location (@var{x},@var{y}) of the current
8352 plane.
8353
8354 @item lum(x, y)
8355 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8356 plane.
8357
8358 @item cb(x, y)
8359 Return the value of the pixel at location (@var{x},@var{y}) of the
8360 blue-difference chroma plane. Return 0 if there is no such plane.
8361
8362 @item cr(x, y)
8363 Return the value of the pixel at location (@var{x},@var{y}) of the
8364 red-difference chroma plane. Return 0 if there is no such plane.
8365
8366 @item r(x, y)
8367 @item g(x, y)
8368 @item b(x, y)
8369 Return the value of the pixel at location (@var{x},@var{y}) of the
8370 red/green/blue component. Return 0 if there is no such component.
8371
8372 @item alpha(x, y)
8373 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8374 plane. Return 0 if there is no such plane.
8375 @end table
8376
8377 For functions, if @var{x} and @var{y} are outside the area, the value will be
8378 automatically clipped to the closer edge.
8379
8380 @subsection Examples
8381
8382 @itemize
8383 @item
8384 Flip the image horizontally:
8385 @example
8386 geq=p(W-X\,Y)
8387 @end example
8388
8389 @item
8390 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8391 wavelength of 100 pixels:
8392 @example
8393 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8394 @end example
8395
8396 @item
8397 Generate a fancy enigmatic moving light:
8398 @example
8399 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
8400 @end example
8401
8402 @item
8403 Generate a quick emboss effect:
8404 @example
8405 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8406 @end example
8407
8408 @item
8409 Modify RGB components depending on pixel position:
8410 @example
8411 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8412 @end example
8413
8414 @item
8415 Create a radial gradient that is the same size as the input (also see
8416 the @ref{vignette} filter):
8417 @example
8418 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8419 @end example
8420 @end itemize
8421
8422 @section gradfun
8423
8424 Fix the banding artifacts that are sometimes introduced into nearly flat
8425 regions by truncation to 8-bit color depth.
8426 Interpolate the gradients that should go where the bands are, and
8427 dither them.
8428
8429 It is designed for playback only.  Do not use it prior to
8430 lossy compression, because compression tends to lose the dither and
8431 bring back the bands.
8432
8433 It accepts the following parameters:
8434
8435 @table @option
8436
8437 @item strength
8438 The maximum amount by which the filter will change any one pixel. This is also
8439 the threshold for detecting nearly flat regions. Acceptable values range from
8440 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8441 valid range.
8442
8443 @item radius
8444 The neighborhood to fit the gradient to. A larger radius makes for smoother
8445 gradients, but also prevents the filter from modifying the pixels near detailed
8446 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8447 values will be clipped to the valid range.
8448
8449 @end table
8450
8451 Alternatively, the options can be specified as a flat string:
8452 @var{strength}[:@var{radius}]
8453
8454 @subsection Examples
8455
8456 @itemize
8457 @item
8458 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8459 @example
8460 gradfun=3.5:8
8461 @end example
8462
8463 @item
8464 Specify radius, omitting the strength (which will fall-back to the default
8465 value):
8466 @example
8467 gradfun=radius=8
8468 @end example
8469
8470 @end itemize
8471
8472 @anchor{haldclut}
8473 @section haldclut
8474
8475 Apply a Hald CLUT to a video stream.
8476
8477 First input is the video stream to process, and second one is the Hald CLUT.
8478 The Hald CLUT input can be a simple picture or a complete video stream.
8479
8480 The filter accepts the following options:
8481
8482 @table @option
8483 @item shortest
8484 Force termination when the shortest input terminates. Default is @code{0}.
8485 @item repeatlast
8486 Continue applying the last CLUT after the end of the stream. A value of
8487 @code{0} disable the filter after the last frame of the CLUT is reached.
8488 Default is @code{1}.
8489 @end table
8490
8491 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8492 filters share the same internals).
8493
8494 More information about the Hald CLUT can be found on Eskil Steenberg's website
8495 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8496
8497 @subsection Workflow examples
8498
8499 @subsubsection Hald CLUT video stream
8500
8501 Generate an identity Hald CLUT stream altered with various effects:
8502 @example
8503 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
8504 @end example
8505
8506 Note: make sure you use a lossless codec.
8507
8508 Then use it with @code{haldclut} to apply it on some random stream:
8509 @example
8510 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8511 @end example
8512
8513 The Hald CLUT will be applied to the 10 first seconds (duration of
8514 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8515 to the remaining frames of the @code{mandelbrot} stream.
8516
8517 @subsubsection Hald CLUT with preview
8518
8519 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8520 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8521 biggest possible square starting at the top left of the picture. The remaining
8522 padding pixels (bottom or right) will be ignored. This area can be used to add
8523 a preview of the Hald CLUT.
8524
8525 Typically, the following generated Hald CLUT will be supported by the
8526 @code{haldclut} filter:
8527
8528 @example
8529 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8530    pad=iw+320 [padded_clut];
8531    smptebars=s=320x256, split [a][b];
8532    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8533    [main][b] overlay=W-320" -frames:v 1 clut.png
8534 @end example
8535
8536 It contains the original and a preview of the effect of the CLUT: SMPTE color
8537 bars are displayed on the right-top, and below the same color bars processed by
8538 the color changes.
8539
8540 Then, the effect of this Hald CLUT can be visualized with:
8541 @example
8542 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8543 @end example
8544
8545 @section hflip
8546
8547 Flip the input video horizontally.
8548
8549 For example, to horizontally flip the input video with @command{ffmpeg}:
8550 @example
8551 ffmpeg -i in.avi -vf "hflip" out.avi
8552 @end example
8553
8554 @section histeq
8555 This filter applies a global color histogram equalization on a
8556 per-frame basis.
8557
8558 It can be used to correct video that has a compressed range of pixel
8559 intensities.  The filter redistributes the pixel intensities to
8560 equalize their distribution across the intensity range. It may be
8561 viewed as an "automatically adjusting contrast filter". This filter is
8562 useful only for correcting degraded or poorly captured source
8563 video.
8564
8565 The filter accepts the following options:
8566
8567 @table @option
8568 @item strength
8569 Determine the amount of equalization to be applied.  As the strength
8570 is reduced, the distribution of pixel intensities more-and-more
8571 approaches that of the input frame. The value must be a float number
8572 in the range [0,1] and defaults to 0.200.
8573
8574 @item intensity
8575 Set the maximum intensity that can generated and scale the output
8576 values appropriately.  The strength should be set as desired and then
8577 the intensity can be limited if needed to avoid washing-out. The value
8578 must be a float number in the range [0,1] and defaults to 0.210.
8579
8580 @item antibanding
8581 Set the antibanding level. If enabled the filter will randomly vary
8582 the luminance of output pixels by a small amount to avoid banding of
8583 the histogram. Possible values are @code{none}, @code{weak} or
8584 @code{strong}. It defaults to @code{none}.
8585 @end table
8586
8587 @section histogram
8588
8589 Compute and draw a color distribution histogram for the input video.
8590
8591 The computed histogram is a representation of the color component
8592 distribution in an image.
8593
8594 Standard histogram displays the color components distribution in an image.
8595 Displays color graph for each color component. Shows distribution of
8596 the Y, U, V, A or R, G, B components, depending on input format, in the
8597 current frame. Below each graph a color component scale meter is shown.
8598
8599 The filter accepts the following options:
8600
8601 @table @option
8602 @item level_height
8603 Set height of level. Default value is @code{200}.
8604 Allowed range is [50, 2048].
8605
8606 @item scale_height
8607 Set height of color scale. Default value is @code{12}.
8608 Allowed range is [0, 40].
8609
8610 @item display_mode
8611 Set display mode.
8612 It accepts the following values:
8613 @table @samp
8614 @item parade
8615 Per color component graphs are placed below each other.
8616
8617 @item overlay
8618 Presents information identical to that in the @code{parade}, except
8619 that the graphs representing color components are superimposed directly
8620 over one another.
8621 @end table
8622 Default is @code{parade}.
8623
8624 @item levels_mode
8625 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8626 Default is @code{linear}.
8627
8628 @item components
8629 Set what color components to display.
8630 Default is @code{7}.
8631
8632 @item fgopacity
8633 Set foreground opacity. Default is @code{0.7}.
8634
8635 @item bgopacity
8636 Set background opacity. Default is @code{0.5}.
8637 @end table
8638
8639 @subsection Examples
8640
8641 @itemize
8642
8643 @item
8644 Calculate and draw histogram:
8645 @example
8646 ffplay -i input -vf histogram
8647 @end example
8648
8649 @end itemize
8650
8651 @anchor{hqdn3d}
8652 @section hqdn3d
8653
8654 This is a high precision/quality 3d denoise filter. It aims to reduce
8655 image noise, producing smooth images and making still images really
8656 still. It should enhance compressibility.
8657
8658 It accepts the following optional parameters:
8659
8660 @table @option
8661 @item luma_spatial
8662 A non-negative floating point number which specifies spatial luma strength.
8663 It defaults to 4.0.
8664
8665 @item chroma_spatial
8666 A non-negative floating point number which specifies spatial chroma strength.
8667 It defaults to 3.0*@var{luma_spatial}/4.0.
8668
8669 @item luma_tmp
8670 A floating point number which specifies luma temporal strength. It defaults to
8671 6.0*@var{luma_spatial}/4.0.
8672
8673 @item chroma_tmp
8674 A floating point number which specifies chroma temporal strength. It defaults to
8675 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8676 @end table
8677
8678 @anchor{hwupload_cuda}
8679 @section hwupload_cuda
8680
8681 Upload system memory frames to a CUDA device.
8682
8683 It accepts the following optional parameters:
8684
8685 @table @option
8686 @item device
8687 The number of the CUDA device to use
8688 @end table
8689
8690 @section hqx
8691
8692 Apply a high-quality magnification filter designed for pixel art. This filter
8693 was originally created by Maxim Stepin.
8694
8695 It accepts the following option:
8696
8697 @table @option
8698 @item n
8699 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8700 @code{hq3x} and @code{4} for @code{hq4x}.
8701 Default is @code{3}.
8702 @end table
8703
8704 @section hstack
8705 Stack input videos horizontally.
8706
8707 All streams must be of same pixel format and of same height.
8708
8709 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8710 to create same output.
8711
8712 The filter accept the following option:
8713
8714 @table @option
8715 @item inputs
8716 Set number of input streams. Default is 2.
8717
8718 @item shortest
8719 If set to 1, force the output to terminate when the shortest input
8720 terminates. Default value is 0.
8721 @end table
8722
8723 @section hue
8724
8725 Modify the hue and/or the saturation of the input.
8726
8727 It accepts the following parameters:
8728
8729 @table @option
8730 @item h
8731 Specify the hue angle as a number of degrees. It accepts an expression,
8732 and defaults to "0".
8733
8734 @item s
8735 Specify the saturation in the [-10,10] range. It accepts an expression and
8736 defaults to "1".
8737
8738 @item H
8739 Specify the hue angle as a number of radians. It accepts an
8740 expression, and defaults to "0".
8741
8742 @item b
8743 Specify the brightness in the [-10,10] range. It accepts an expression and
8744 defaults to "0".
8745 @end table
8746
8747 @option{h} and @option{H} are mutually exclusive, and can't be
8748 specified at the same time.
8749
8750 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8751 expressions containing the following constants:
8752
8753 @table @option
8754 @item n
8755 frame count of the input frame starting from 0
8756
8757 @item pts
8758 presentation timestamp of the input frame expressed in time base units
8759
8760 @item r
8761 frame rate of the input video, NAN if the input frame rate is unknown
8762
8763 @item t
8764 timestamp expressed in seconds, NAN if the input timestamp is unknown
8765
8766 @item tb
8767 time base of the input video
8768 @end table
8769
8770 @subsection Examples
8771
8772 @itemize
8773 @item
8774 Set the hue to 90 degrees and the saturation to 1.0:
8775 @example
8776 hue=h=90:s=1
8777 @end example
8778
8779 @item
8780 Same command but expressing the hue in radians:
8781 @example
8782 hue=H=PI/2:s=1
8783 @end example
8784
8785 @item
8786 Rotate hue and make the saturation swing between 0
8787 and 2 over a period of 1 second:
8788 @example
8789 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8790 @end example
8791
8792 @item
8793 Apply a 3 seconds saturation fade-in effect starting at 0:
8794 @example
8795 hue="s=min(t/3\,1)"
8796 @end example
8797
8798 The general fade-in expression can be written as:
8799 @example
8800 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8801 @end example
8802
8803 @item
8804 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8805 @example
8806 hue="s=max(0\, min(1\, (8-t)/3))"
8807 @end example
8808
8809 The general fade-out expression can be written as:
8810 @example
8811 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8812 @end example
8813
8814 @end itemize
8815
8816 @subsection Commands
8817
8818 This filter supports the following commands:
8819 @table @option
8820 @item b
8821 @item s
8822 @item h
8823 @item H
8824 Modify the hue and/or the saturation and/or brightness of the input video.
8825 The command accepts the same syntax of the corresponding option.
8826
8827 If the specified expression is not valid, it is kept at its current
8828 value.
8829 @end table
8830
8831 @section hysteresis
8832
8833 Grow first stream into second stream by connecting components.
8834 This allows to build more robust edge masks.
8835
8836 This filter accepts the following options:
8837
8838 @table @option
8839 @item planes
8840 Set which planes will be processed as bitmap, unprocessed planes will be
8841 copied from first stream.
8842 By default value 0xf, all planes will be processed.
8843
8844 @item threshold
8845 Set threshold which is used in filtering. If pixel component value is higher than
8846 this value filter algorithm for connecting components is activated.
8847 By default value is 0.
8848 @end table
8849
8850 @section idet
8851
8852 Detect video interlacing type.
8853
8854 This filter tries to detect if the input frames as interlaced, progressive,
8855 top or bottom field first. It will also try and detect fields that are
8856 repeated between adjacent frames (a sign of telecine).
8857
8858 Single frame detection considers only immediately adjacent frames when classifying each frame.
8859 Multiple frame detection incorporates the classification history of previous frames.
8860
8861 The filter will log these metadata values:
8862
8863 @table @option
8864 @item single.current_frame
8865 Detected type of current frame using single-frame detection. One of:
8866 ``tff'' (top field first), ``bff'' (bottom field first),
8867 ``progressive'', or ``undetermined''
8868
8869 @item single.tff
8870 Cumulative number of frames detected as top field first using single-frame detection.
8871
8872 @item multiple.tff
8873 Cumulative number of frames detected as top field first using multiple-frame detection.
8874
8875 @item single.bff
8876 Cumulative number of frames detected as bottom field first using single-frame detection.
8877
8878 @item multiple.current_frame
8879 Detected type of current frame using multiple-frame detection. One of:
8880 ``tff'' (top field first), ``bff'' (bottom field first),
8881 ``progressive'', or ``undetermined''
8882
8883 @item multiple.bff
8884 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8885
8886 @item single.progressive
8887 Cumulative number of frames detected as progressive using single-frame detection.
8888
8889 @item multiple.progressive
8890 Cumulative number of frames detected as progressive using multiple-frame detection.
8891
8892 @item single.undetermined
8893 Cumulative number of frames that could not be classified using single-frame detection.
8894
8895 @item multiple.undetermined
8896 Cumulative number of frames that could not be classified using multiple-frame detection.
8897
8898 @item repeated.current_frame
8899 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8900
8901 @item repeated.neither
8902 Cumulative number of frames with no repeated field.
8903
8904 @item repeated.top
8905 Cumulative number of frames with the top field repeated from the previous frame's top field.
8906
8907 @item repeated.bottom
8908 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
8909 @end table
8910
8911 The filter accepts the following options:
8912
8913 @table @option
8914 @item intl_thres
8915 Set interlacing threshold.
8916 @item prog_thres
8917 Set progressive threshold.
8918 @item rep_thres
8919 Threshold for repeated field detection.
8920 @item half_life
8921 Number of frames after which a given frame's contribution to the
8922 statistics is halved (i.e., it contributes only 0.5 to it's
8923 classification). The default of 0 means that all frames seen are given
8924 full weight of 1.0 forever.
8925 @item analyze_interlaced_flag
8926 When this is not 0 then idet will use the specified number of frames to determine
8927 if the interlaced flag is accurate, it will not count undetermined frames.
8928 If the flag is found to be accurate it will be used without any further
8929 computations, if it is found to be inaccurate it will be cleared without any
8930 further computations. This allows inserting the idet filter as a low computational
8931 method to clean up the interlaced flag
8932 @end table
8933
8934 @section il
8935
8936 Deinterleave or interleave fields.
8937
8938 This filter allows one to process interlaced images fields without
8939 deinterlacing them. Deinterleaving splits the input frame into 2
8940 fields (so called half pictures). Odd lines are moved to the top
8941 half of the output image, even lines to the bottom half.
8942 You can process (filter) them independently and then re-interleave them.
8943
8944 The filter accepts the following options:
8945
8946 @table @option
8947 @item luma_mode, l
8948 @item chroma_mode, c
8949 @item alpha_mode, a
8950 Available values for @var{luma_mode}, @var{chroma_mode} and
8951 @var{alpha_mode} are:
8952
8953 @table @samp
8954 @item none
8955 Do nothing.
8956
8957 @item deinterleave, d
8958 Deinterleave fields, placing one above the other.
8959
8960 @item interleave, i
8961 Interleave fields. Reverse the effect of deinterleaving.
8962 @end table
8963 Default value is @code{none}.
8964
8965 @item luma_swap, ls
8966 @item chroma_swap, cs
8967 @item alpha_swap, as
8968 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8969 @end table
8970
8971 @section inflate
8972
8973 Apply inflate effect to the video.
8974
8975 This filter replaces the pixel by the local(3x3) average by taking into account
8976 only values higher than the pixel.
8977
8978 It accepts the following options:
8979
8980 @table @option
8981 @item threshold0
8982 @item threshold1
8983 @item threshold2
8984 @item threshold3
8985 Limit the maximum change for each plane, default is 65535.
8986 If 0, plane will remain unchanged.
8987 @end table
8988
8989 @section interlace
8990
8991 Simple interlacing filter from progressive contents. This interleaves upper (or
8992 lower) lines from odd frames with lower (or upper) lines from even frames,
8993 halving the frame rate and preserving image height.
8994
8995 @example
8996    Original        Original             New Frame
8997    Frame 'j'      Frame 'j+1'             (tff)
8998   ==========      ===========       ==================
8999     Line 0  -------------------->    Frame 'j' Line 0
9000     Line 1          Line 1  ---->   Frame 'j+1' Line 1
9001     Line 2 --------------------->    Frame 'j' Line 2
9002     Line 3          Line 3  ---->   Frame 'j+1' Line 3
9003      ...             ...                   ...
9004 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
9005 @end example
9006
9007 It accepts the following optional parameters:
9008
9009 @table @option
9010 @item scan
9011 This determines whether the interlaced frame is taken from the even
9012 (tff - default) or odd (bff) lines of the progressive frame.
9013
9014 @item lowpass
9015 Enable (default) or disable the vertical lowpass filter to avoid twitter
9016 interlacing and reduce moire patterns.
9017 @end table
9018
9019 @section kerndeint
9020
9021 Deinterlace input video by applying Donald Graft's adaptive kernel
9022 deinterling. Work on interlaced parts of a video to produce
9023 progressive frames.
9024
9025 The description of the accepted parameters follows.
9026
9027 @table @option
9028 @item thresh
9029 Set the threshold which affects the filter's tolerance when
9030 determining if a pixel line must be processed. It must be an integer
9031 in the range [0,255] and defaults to 10. A value of 0 will result in
9032 applying the process on every pixels.
9033
9034 @item map
9035 Paint pixels exceeding the threshold value to white if set to 1.
9036 Default is 0.
9037
9038 @item order
9039 Set the fields order. Swap fields if set to 1, leave fields alone if
9040 0. Default is 0.
9041
9042 @item sharp
9043 Enable additional sharpening if set to 1. Default is 0.
9044
9045 @item twoway
9046 Enable twoway sharpening if set to 1. Default is 0.
9047 @end table
9048
9049 @subsection Examples
9050
9051 @itemize
9052 @item
9053 Apply default values:
9054 @example
9055 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9056 @end example
9057
9058 @item
9059 Enable additional sharpening:
9060 @example
9061 kerndeint=sharp=1
9062 @end example
9063
9064 @item
9065 Paint processed pixels in white:
9066 @example
9067 kerndeint=map=1
9068 @end example
9069 @end itemize
9070
9071 @section lenscorrection
9072
9073 Correct radial lens distortion
9074
9075 This filter can be used to correct for radial distortion as can result from the use
9076 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9077 one can use tools available for example as part of opencv or simply trial-and-error.
9078 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9079 and extract the k1 and k2 coefficients from the resulting matrix.
9080
9081 Note that effectively the same filter is available in the open-source tools Krita and
9082 Digikam from the KDE project.
9083
9084 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9085 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9086 brightness distribution, so you may want to use both filters together in certain
9087 cases, though you will have to take care of ordering, i.e. whether vignetting should
9088 be applied before or after lens correction.
9089
9090 @subsection Options
9091
9092 The filter accepts the following options:
9093
9094 @table @option
9095 @item cx
9096 Relative x-coordinate of the focal point of the image, and thereby the center of the
9097 distortion. This value has a range [0,1] and is expressed as fractions of the image
9098 width.
9099 @item cy
9100 Relative y-coordinate of the focal point of the image, and thereby the center of the
9101 distortion. This value has a range [0,1] and is expressed as fractions of the image
9102 height.
9103 @item k1
9104 Coefficient of the quadratic correction term. 0.5 means no correction.
9105 @item k2
9106 Coefficient of the double quadratic correction term. 0.5 means no correction.
9107 @end table
9108
9109 The formula that generates the correction is:
9110
9111 @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)
9112
9113 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9114 distances from the focal point in the source and target images, respectively.
9115
9116 @section loop
9117
9118 Loop video frames.
9119
9120 The filter accepts the following options:
9121
9122 @table @option
9123 @item loop
9124 Set the number of loops.
9125
9126 @item size
9127 Set maximal size in number of frames.
9128
9129 @item start
9130 Set first frame of loop.
9131 @end table
9132
9133 @anchor{lut3d}
9134 @section lut3d
9135
9136 Apply a 3D LUT to an input video.
9137
9138 The filter accepts the following options:
9139
9140 @table @option
9141 @item file
9142 Set the 3D LUT file name.
9143
9144 Currently supported formats:
9145 @table @samp
9146 @item 3dl
9147 AfterEffects
9148 @item cube
9149 Iridas
9150 @item dat
9151 DaVinci
9152 @item m3d
9153 Pandora
9154 @end table
9155 @item interp
9156 Select interpolation mode.
9157
9158 Available values are:
9159
9160 @table @samp
9161 @item nearest
9162 Use values from the nearest defined point.
9163 @item trilinear
9164 Interpolate values using the 8 points defining a cube.
9165 @item tetrahedral
9166 Interpolate values using a tetrahedron.
9167 @end table
9168 @end table
9169
9170 @section lut, lutrgb, lutyuv
9171
9172 Compute a look-up table for binding each pixel component input value
9173 to an output value, and apply it to the input video.
9174
9175 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9176 to an RGB input video.
9177
9178 These filters accept the following parameters:
9179 @table @option
9180 @item c0
9181 set first pixel component expression
9182 @item c1
9183 set second pixel component expression
9184 @item c2
9185 set third pixel component expression
9186 @item c3
9187 set fourth pixel component expression, corresponds to the alpha component
9188
9189 @item r
9190 set red component expression
9191 @item g
9192 set green component expression
9193 @item b
9194 set blue component expression
9195 @item a
9196 alpha component expression
9197
9198 @item y
9199 set Y/luminance component expression
9200 @item u
9201 set U/Cb component expression
9202 @item v
9203 set V/Cr component expression
9204 @end table
9205
9206 Each of them specifies the expression to use for computing the lookup table for
9207 the corresponding pixel component values.
9208
9209 The exact component associated to each of the @var{c*} options depends on the
9210 format in input.
9211
9212 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9213 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9214
9215 The expressions can contain the following constants and functions:
9216
9217 @table @option
9218 @item w
9219 @item h
9220 The input width and height.
9221
9222 @item val
9223 The input value for the pixel component.
9224
9225 @item clipval
9226 The input value, clipped to the @var{minval}-@var{maxval} range.
9227
9228 @item maxval
9229 The maximum value for the pixel component.
9230
9231 @item minval
9232 The minimum value for the pixel component.
9233
9234 @item negval
9235 The negated value for the pixel component value, clipped to the
9236 @var{minval}-@var{maxval} range; it corresponds to the expression
9237 "maxval-clipval+minval".
9238
9239 @item clip(val)
9240 The computed value in @var{val}, clipped to the
9241 @var{minval}-@var{maxval} range.
9242
9243 @item gammaval(gamma)
9244 The computed gamma correction value of the pixel component value,
9245 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9246 expression
9247 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9248
9249 @end table
9250
9251 All expressions default to "val".
9252
9253 @subsection Examples
9254
9255 @itemize
9256 @item
9257 Negate input video:
9258 @example
9259 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9260 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9261 @end example
9262
9263 The above is the same as:
9264 @example
9265 lutrgb="r=negval:g=negval:b=negval"
9266 lutyuv="y=negval:u=negval:v=negval"
9267 @end example
9268
9269 @item
9270 Negate luminance:
9271 @example
9272 lutyuv=y=negval
9273 @end example
9274
9275 @item
9276 Remove chroma components, turning the video into a graytone image:
9277 @example
9278 lutyuv="u=128:v=128"
9279 @end example
9280
9281 @item
9282 Apply a luma burning effect:
9283 @example
9284 lutyuv="y=2*val"
9285 @end example
9286
9287 @item
9288 Remove green and blue components:
9289 @example
9290 lutrgb="g=0:b=0"
9291 @end example
9292
9293 @item
9294 Set a constant alpha channel value on input:
9295 @example
9296 format=rgba,lutrgb=a="maxval-minval/2"
9297 @end example
9298
9299 @item
9300 Correct luminance gamma by a factor of 0.5:
9301 @example
9302 lutyuv=y=gammaval(0.5)
9303 @end example
9304
9305 @item
9306 Discard least significant bits of luma:
9307 @example
9308 lutyuv=y='bitand(val, 128+64+32)'
9309 @end example
9310
9311 @item
9312 Technicolor like effect:
9313 @example
9314 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9315 @end example
9316 @end itemize
9317
9318 @section lut2
9319
9320 Compute and apply a lookup table from two video inputs.
9321
9322 This filter accepts the following parameters:
9323 @table @option
9324 @item c0
9325 set first pixel component expression
9326 @item c1
9327 set second pixel component expression
9328 @item c2
9329 set third pixel component expression
9330 @item c3
9331 set fourth pixel component expression, corresponds to the alpha component
9332 @end table
9333
9334 Each of them specifies the expression to use for computing the lookup table for
9335 the corresponding pixel component values.
9336
9337 The exact component associated to each of the @var{c*} options depends on the
9338 format in inputs.
9339
9340 The expressions can contain the following constants:
9341
9342 @table @option
9343 @item w
9344 @item h
9345 The input width and height.
9346
9347 @item x
9348 The first input value for the pixel component.
9349
9350 @item y
9351 The second input value for the pixel component.
9352 @end table
9353
9354 All expressions default to "x".
9355
9356 @section maskedclamp
9357
9358 Clamp the first input stream with the second input and third input stream.
9359
9360 Returns the value of first stream to be between second input
9361 stream - @code{undershoot} and third input stream + @code{overshoot}.
9362
9363 This filter accepts the following options:
9364 @table @option
9365 @item undershoot
9366 Default value is @code{0}.
9367
9368 @item overshoot
9369 Default value is @code{0}.
9370
9371 @item planes
9372 Set which planes will be processed as bitmap, unprocessed planes will be
9373 copied from first stream.
9374 By default value 0xf, all planes will be processed.
9375 @end table
9376
9377 @section maskedmerge
9378
9379 Merge the first input stream with the second input stream using per pixel
9380 weights in the third input stream.
9381
9382 A value of 0 in the third stream pixel component means that pixel component
9383 from first stream is returned unchanged, while maximum value (eg. 255 for
9384 8-bit videos) means that pixel component from second stream is returned
9385 unchanged. Intermediate values define the amount of merging between both
9386 input stream's pixel components.
9387
9388 This filter accepts the following options:
9389 @table @option
9390 @item planes
9391 Set which planes will be processed as bitmap, unprocessed planes will be
9392 copied from first stream.
9393 By default value 0xf, all planes will be processed.
9394 @end table
9395
9396 @section mcdeint
9397
9398 Apply motion-compensation deinterlacing.
9399
9400 It needs one field per frame as input and must thus be used together
9401 with yadif=1/3 or equivalent.
9402
9403 This filter accepts the following options:
9404 @table @option
9405 @item mode
9406 Set the deinterlacing mode.
9407
9408 It accepts one of the following values:
9409 @table @samp
9410 @item fast
9411 @item medium
9412 @item slow
9413 use iterative motion estimation
9414 @item extra_slow
9415 like @samp{slow}, but use multiple reference frames.
9416 @end table
9417 Default value is @samp{fast}.
9418
9419 @item parity
9420 Set the picture field parity assumed for the input video. It must be
9421 one of the following values:
9422
9423 @table @samp
9424 @item 0, tff
9425 assume top field first
9426 @item 1, bff
9427 assume bottom field first
9428 @end table
9429
9430 Default value is @samp{bff}.
9431
9432 @item qp
9433 Set per-block quantization parameter (QP) used by the internal
9434 encoder.
9435
9436 Higher values should result in a smoother motion vector field but less
9437 optimal individual vectors. Default value is 1.
9438 @end table
9439
9440 @section mergeplanes
9441
9442 Merge color channel components from several video streams.
9443
9444 The filter accepts up to 4 input streams, and merge selected input
9445 planes to the output video.
9446
9447 This filter accepts the following options:
9448 @table @option
9449 @item mapping
9450 Set input to output plane mapping. Default is @code{0}.
9451
9452 The mappings is specified as a bitmap. It should be specified as a
9453 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9454 mapping for the first plane of the output stream. 'A' sets the number of
9455 the input stream to use (from 0 to 3), and 'a' the plane number of the
9456 corresponding input to use (from 0 to 3). The rest of the mappings is
9457 similar, 'Bb' describes the mapping for the output stream second
9458 plane, 'Cc' describes the mapping for the output stream third plane and
9459 'Dd' describes the mapping for the output stream fourth plane.
9460
9461 @item format
9462 Set output pixel format. Default is @code{yuva444p}.
9463 @end table
9464
9465 @subsection Examples
9466
9467 @itemize
9468 @item
9469 Merge three gray video streams of same width and height into single video stream:
9470 @example
9471 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9472 @end example
9473
9474 @item
9475 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9476 @example
9477 [a0][a1]mergeplanes=0x00010210:yuva444p
9478 @end example
9479
9480 @item
9481 Swap Y and A plane in yuva444p stream:
9482 @example
9483 format=yuva444p,mergeplanes=0x03010200:yuva444p
9484 @end example
9485
9486 @item
9487 Swap U and V plane in yuv420p stream:
9488 @example
9489 format=yuv420p,mergeplanes=0x000201:yuv420p
9490 @end example
9491
9492 @item
9493 Cast a rgb24 clip to yuv444p:
9494 @example
9495 format=rgb24,mergeplanes=0x000102:yuv444p
9496 @end example
9497 @end itemize
9498
9499 @section mestimate
9500
9501 Estimate and export motion vectors using block matching algorithms.
9502 Motion vectors are stored in frame side data to be used by other filters.
9503
9504 This filter accepts the following options:
9505 @table @option
9506 @item method
9507 Specify the motion estimation method. Accepts one of the following values:
9508
9509 @table @samp
9510 @item esa
9511 Exhaustive search algorithm.
9512 @item tss
9513 Three step search algorithm.
9514 @item tdls
9515 Two dimensional logarithmic search algorithm.
9516 @item ntss
9517 New three step search algorithm.
9518 @item fss
9519 Four step search algorithm.
9520 @item ds
9521 Diamond search algorithm.
9522 @item hexbs
9523 Hexagon-based search algorithm.
9524 @item epzs
9525 Enhanced predictive zonal search algorithm.
9526 @item umh
9527 Uneven multi-hexagon search algorithm.
9528 @end table
9529 Default value is @samp{esa}.
9530
9531 @item mb_size
9532 Macroblock size. Default @code{16}.
9533
9534 @item search_param
9535 Search parameter. Default @code{7}.
9536 @end table
9537
9538 @section minterpolate
9539
9540 Convert the video to specified frame rate using motion interpolation.
9541
9542 This filter accepts the following options:
9543 @table @option
9544 @item fps
9545 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}.
9546
9547 @item mi_mode
9548 Motion interpolation mode. Following values are accepted:
9549 @table @samp
9550 @item dup
9551 Duplicate previous or next frame for interpolating new ones.
9552 @item blend
9553 Blend source frames. Interpolated frame is mean of previous and next frames.
9554 @item mci
9555 Motion compensated interpolation. Following options are effective when this mode is selected:
9556
9557 @table @samp
9558 @item mc_mode
9559 Motion compensation mode. Following values are accepted:
9560 @table @samp
9561 @item obmc
9562 Overlapped block motion compensation.
9563 @item aobmc
9564 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
9565 @end table
9566 Default mode is @samp{obmc}.
9567
9568 @item me_mode
9569 Motion estimation mode. Following values are accepted:
9570 @table @samp
9571 @item bidir
9572 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
9573 @item bilat
9574 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
9575 @end table
9576 Default mode is @samp{bilat}.
9577
9578 @item me
9579 The algorithm to be used for motion estimation. Following values are accepted:
9580 @table @samp
9581 @item esa
9582 Exhaustive search algorithm.
9583 @item tss
9584 Three step search algorithm.
9585 @item tdls
9586 Two dimensional logarithmic search algorithm.
9587 @item ntss
9588 New three step search algorithm.
9589 @item fss
9590 Four step search algorithm.
9591 @item ds
9592 Diamond search algorithm.
9593 @item hexbs
9594 Hexagon-based search algorithm.
9595 @item epzs
9596 Enhanced predictive zonal search algorithm.
9597 @item umh
9598 Uneven multi-hexagon search algorithm.
9599 @end table
9600 Default algorithm is @samp{epzs}.
9601
9602 @item mb_size
9603 Macroblock size. Default @code{16}.
9604
9605 @item search_param
9606 Motion estimation search parameter. Default @code{32}.
9607
9608 @item vsmbc
9609 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).
9610 @end table
9611 @end table
9612
9613 @item scd
9614 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:
9615 @table @samp
9616 @item none
9617 Disable scene change detection.
9618 @item fdiff
9619 Frame difference. Corresponding pixel values are compared and if it statisfies @var{scd_threshold} scene change is detected.
9620 @end table
9621 Default method is @samp{fdiff}.
9622
9623 @item scd_threshold
9624 Scene change detection threshold. Default is @code{5.0}.
9625 @end table
9626
9627 @section mpdecimate
9628
9629 Drop frames that do not differ greatly from the previous frame in
9630 order to reduce frame rate.
9631
9632 The main use of this filter is for very-low-bitrate encoding
9633 (e.g. streaming over dialup modem), but it could in theory be used for
9634 fixing movies that were inverse-telecined incorrectly.
9635
9636 A description of the accepted options follows.
9637
9638 @table @option
9639 @item max
9640 Set the maximum number of consecutive frames which can be dropped (if
9641 positive), or the minimum interval between dropped frames (if
9642 negative). If the value is 0, the frame is dropped unregarding the
9643 number of previous sequentially dropped frames.
9644
9645 Default value is 0.
9646
9647 @item hi
9648 @item lo
9649 @item frac
9650 Set the dropping threshold values.
9651
9652 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9653 represent actual pixel value differences, so a threshold of 64
9654 corresponds to 1 unit of difference for each pixel, or the same spread
9655 out differently over the block.
9656
9657 A frame is a candidate for dropping if no 8x8 blocks differ by more
9658 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9659 meaning the whole image) differ by more than a threshold of @option{lo}.
9660
9661 Default value for @option{hi} is 64*12, default value for @option{lo} is
9662 64*5, and default value for @option{frac} is 0.33.
9663 @end table
9664
9665
9666 @section negate
9667
9668 Negate input video.
9669
9670 It accepts an integer in input; if non-zero it negates the
9671 alpha component (if available). The default value in input is 0.
9672
9673 @section nnedi
9674
9675 Deinterlace video using neural network edge directed interpolation.
9676
9677 This filter accepts the following options:
9678
9679 @table @option
9680 @item weights
9681 Mandatory option, without binary file filter can not work.
9682 Currently file can be found here:
9683 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9684
9685 @item deint
9686 Set which frames to deinterlace, by default it is @code{all}.
9687 Can be @code{all} or @code{interlaced}.
9688
9689 @item field
9690 Set mode of operation.
9691
9692 Can be one of the following:
9693
9694 @table @samp
9695 @item af
9696 Use frame flags, both fields.
9697 @item a
9698 Use frame flags, single field.
9699 @item t
9700 Use top field only.
9701 @item b
9702 Use bottom field only.
9703 @item tf
9704 Use both fields, top first.
9705 @item bf
9706 Use both fields, bottom first.
9707 @end table
9708
9709 @item planes
9710 Set which planes to process, by default filter process all frames.
9711
9712 @item nsize
9713 Set size of local neighborhood around each pixel, used by the predictor neural
9714 network.
9715
9716 Can be one of the following:
9717
9718 @table @samp
9719 @item s8x6
9720 @item s16x6
9721 @item s32x6
9722 @item s48x6
9723 @item s8x4
9724 @item s16x4
9725 @item s32x4
9726 @end table
9727
9728 @item nns
9729 Set the number of neurons in predicctor neural network.
9730 Can be one of the following:
9731
9732 @table @samp
9733 @item n16
9734 @item n32
9735 @item n64
9736 @item n128
9737 @item n256
9738 @end table
9739
9740 @item qual
9741 Controls the number of different neural network predictions that are blended
9742 together to compute the final output value. Can be @code{fast}, default or
9743 @code{slow}.
9744
9745 @item etype
9746 Set which set of weights to use in the predictor.
9747 Can be one of the following:
9748
9749 @table @samp
9750 @item a
9751 weights trained to minimize absolute error
9752 @item s
9753 weights trained to minimize squared error
9754 @end table
9755
9756 @item pscrn
9757 Controls whether or not the prescreener neural network is used to decide
9758 which pixels should be processed by the predictor neural network and which
9759 can be handled by simple cubic interpolation.
9760 The prescreener is trained to know whether cubic interpolation will be
9761 sufficient for a pixel or whether it should be predicted by the predictor nn.
9762 The computational complexity of the prescreener nn is much less than that of
9763 the predictor nn. Since most pixels can be handled by cubic interpolation,
9764 using the prescreener generally results in much faster processing.
9765 The prescreener is pretty accurate, so the difference between using it and not
9766 using it is almost always unnoticeable.
9767
9768 Can be one of the following:
9769
9770 @table @samp
9771 @item none
9772 @item original
9773 @item new
9774 @end table
9775
9776 Default is @code{new}.
9777
9778 @item fapprox
9779 Set various debugging flags.
9780 @end table
9781
9782 @section noformat
9783
9784 Force libavfilter not to use any of the specified pixel formats for the
9785 input to the next filter.
9786
9787 It accepts the following parameters:
9788 @table @option
9789
9790 @item pix_fmts
9791 A '|'-separated list of pixel format names, such as
9792 apix_fmts=yuv420p|monow|rgb24".
9793
9794 @end table
9795
9796 @subsection Examples
9797
9798 @itemize
9799 @item
9800 Force libavfilter to use a format different from @var{yuv420p} for the
9801 input to the vflip filter:
9802 @example
9803 noformat=pix_fmts=yuv420p,vflip
9804 @end example
9805
9806 @item
9807 Convert the input video to any of the formats not contained in the list:
9808 @example
9809 noformat=yuv420p|yuv444p|yuv410p
9810 @end example
9811 @end itemize
9812
9813 @section noise
9814
9815 Add noise on video input frame.
9816
9817 The filter accepts the following options:
9818
9819 @table @option
9820 @item all_seed
9821 @item c0_seed
9822 @item c1_seed
9823 @item c2_seed
9824 @item c3_seed
9825 Set noise seed for specific pixel component or all pixel components in case
9826 of @var{all_seed}. Default value is @code{123457}.
9827
9828 @item all_strength, alls
9829 @item c0_strength, c0s
9830 @item c1_strength, c1s
9831 @item c2_strength, c2s
9832 @item c3_strength, c3s
9833 Set noise strength for specific pixel component or all pixel components in case
9834 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
9835
9836 @item all_flags, allf
9837 @item c0_flags, c0f
9838 @item c1_flags, c1f
9839 @item c2_flags, c2f
9840 @item c3_flags, c3f
9841 Set pixel component flags or set flags for all components if @var{all_flags}.
9842 Available values for component flags are:
9843 @table @samp
9844 @item a
9845 averaged temporal noise (smoother)
9846 @item p
9847 mix random noise with a (semi)regular pattern
9848 @item t
9849 temporal noise (noise pattern changes between frames)
9850 @item u
9851 uniform noise (gaussian otherwise)
9852 @end table
9853 @end table
9854
9855 @subsection Examples
9856
9857 Add temporal and uniform noise to input video:
9858 @example
9859 noise=alls=20:allf=t+u
9860 @end example
9861
9862 @section null
9863
9864 Pass the video source unchanged to the output.
9865
9866 @section ocr
9867 Optical Character Recognition
9868
9869 This filter uses Tesseract for optical character recognition.
9870
9871 It accepts the following options:
9872
9873 @table @option
9874 @item datapath
9875 Set datapath to tesseract data. Default is to use whatever was
9876 set at installation.
9877
9878 @item language
9879 Set language, default is "eng".
9880
9881 @item whitelist
9882 Set character whitelist.
9883
9884 @item blacklist
9885 Set character blacklist.
9886 @end table
9887
9888 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
9889
9890 @section ocv
9891
9892 Apply a video transform using libopencv.
9893
9894 To enable this filter, install the libopencv library and headers and
9895 configure FFmpeg with @code{--enable-libopencv}.
9896
9897 It accepts the following parameters:
9898
9899 @table @option
9900
9901 @item filter_name
9902 The name of the libopencv filter to apply.
9903
9904 @item filter_params
9905 The parameters to pass to the libopencv filter. If not specified, the default
9906 values are assumed.
9907
9908 @end table
9909
9910 Refer to the official libopencv documentation for more precise
9911 information:
9912 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
9913
9914 Several libopencv filters are supported; see the following subsections.
9915
9916 @anchor{dilate}
9917 @subsection dilate
9918
9919 Dilate an image by using a specific structuring element.
9920 It corresponds to the libopencv function @code{cvDilate}.
9921
9922 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
9923
9924 @var{struct_el} represents a structuring element, and has the syntax:
9925 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
9926
9927 @var{cols} and @var{rows} represent the number of columns and rows of
9928 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
9929 point, and @var{shape} the shape for the structuring element. @var{shape}
9930 must be "rect", "cross", "ellipse", or "custom".
9931
9932 If the value for @var{shape} is "custom", it must be followed by a
9933 string of the form "=@var{filename}". The file with name
9934 @var{filename} is assumed to represent a binary image, with each
9935 printable character corresponding to a bright pixel. When a custom
9936 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
9937 or columns and rows of the read file are assumed instead.
9938
9939 The default value for @var{struct_el} is "3x3+0x0/rect".
9940
9941 @var{nb_iterations} specifies the number of times the transform is
9942 applied to the image, and defaults to 1.
9943
9944 Some examples:
9945 @example
9946 # Use the default values
9947 ocv=dilate
9948
9949 # Dilate using a structuring element with a 5x5 cross, iterating two times
9950 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
9951
9952 # Read the shape from the file diamond.shape, iterating two times.
9953 # The file diamond.shape may contain a pattern of characters like this
9954 #   *
9955 #  ***
9956 # *****
9957 #  ***
9958 #   *
9959 # The specified columns and rows are ignored
9960 # but the anchor point coordinates are not
9961 ocv=dilate:0x0+2x2/custom=diamond.shape|2
9962 @end example
9963
9964 @subsection erode
9965
9966 Erode an image by using a specific structuring element.
9967 It corresponds to the libopencv function @code{cvErode}.
9968
9969 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
9970 with the same syntax and semantics as the @ref{dilate} filter.
9971
9972 @subsection smooth
9973
9974 Smooth the input video.
9975
9976 The filter takes the following parameters:
9977 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
9978
9979 @var{type} is the type of smooth filter to apply, and must be one of
9980 the following values: "blur", "blur_no_scale", "median", "gaussian",
9981 or "bilateral". The default value is "gaussian".
9982
9983 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
9984 depend on the smooth type. @var{param1} and
9985 @var{param2} accept integer positive values or 0. @var{param3} and
9986 @var{param4} accept floating point values.
9987
9988 The default value for @var{param1} is 3. The default value for the
9989 other parameters is 0.
9990
9991 These parameters correspond to the parameters assigned to the
9992 libopencv function @code{cvSmooth}.
9993
9994 @anchor{overlay}
9995 @section overlay
9996
9997 Overlay one video on top of another.
9998
9999 It takes two inputs and has one output. The first input is the "main"
10000 video on which the second input is overlaid.
10001
10002 It accepts the following parameters:
10003
10004 A description of the accepted options follows.
10005
10006 @table @option
10007 @item x
10008 @item y
10009 Set the expression for the x and y coordinates of the overlaid video
10010 on the main video. Default value is "0" for both expressions. In case
10011 the expression is invalid, it is set to a huge value (meaning that the
10012 overlay will not be displayed within the output visible area).
10013
10014 @item eof_action
10015 The action to take when EOF is encountered on the secondary input; it accepts
10016 one of the following values:
10017
10018 @table @option
10019 @item repeat
10020 Repeat the last frame (the default).
10021 @item endall
10022 End both streams.
10023 @item pass
10024 Pass the main input through.
10025 @end table
10026
10027 @item eval
10028 Set when the expressions for @option{x}, and @option{y} are evaluated.
10029
10030 It accepts the following values:
10031 @table @samp
10032 @item init
10033 only evaluate expressions once during the filter initialization or
10034 when a command is processed
10035
10036 @item frame
10037 evaluate expressions for each incoming frame
10038 @end table
10039
10040 Default value is @samp{frame}.
10041
10042 @item shortest
10043 If set to 1, force the output to terminate when the shortest input
10044 terminates. Default value is 0.
10045
10046 @item format
10047 Set the format for the output video.
10048
10049 It accepts the following values:
10050 @table @samp
10051 @item yuv420
10052 force YUV420 output
10053
10054 @item yuv422
10055 force YUV422 output
10056
10057 @item yuv444
10058 force YUV444 output
10059
10060 @item rgb
10061 force RGB output
10062 @end table
10063
10064 Default value is @samp{yuv420}.
10065
10066 @item rgb @emph{(deprecated)}
10067 If set to 1, force the filter to accept inputs in the RGB
10068 color space. Default value is 0. This option is deprecated, use
10069 @option{format} instead.
10070
10071 @item repeatlast
10072 If set to 1, force the filter to draw the last overlay frame over the
10073 main input until the end of the stream. A value of 0 disables this
10074 behavior. Default value is 1.
10075 @end table
10076
10077 The @option{x}, and @option{y} expressions can contain the following
10078 parameters.
10079
10080 @table @option
10081 @item main_w, W
10082 @item main_h, H
10083 The main input width and height.
10084
10085 @item overlay_w, w
10086 @item overlay_h, h
10087 The overlay input width and height.
10088
10089 @item x
10090 @item y
10091 The computed values for @var{x} and @var{y}. They are evaluated for
10092 each new frame.
10093
10094 @item hsub
10095 @item vsub
10096 horizontal and vertical chroma subsample values of the output
10097 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
10098 @var{vsub} is 1.
10099
10100 @item n
10101 the number of input frame, starting from 0
10102
10103 @item pos
10104 the position in the file of the input frame, NAN if unknown
10105
10106 @item t
10107 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
10108
10109 @end table
10110
10111 Note that the @var{n}, @var{pos}, @var{t} variables are available only
10112 when evaluation is done @emph{per frame}, and will evaluate to NAN
10113 when @option{eval} is set to @samp{init}.
10114
10115 Be aware that frames are taken from each input video in timestamp
10116 order, hence, if their initial timestamps differ, it is a good idea
10117 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
10118 have them begin in the same zero timestamp, as the example for
10119 the @var{movie} filter does.
10120
10121 You can chain together more overlays but you should test the
10122 efficiency of such approach.
10123
10124 @subsection Commands
10125
10126 This filter supports the following commands:
10127 @table @option
10128 @item x
10129 @item y
10130 Modify the x and y of the overlay input.
10131 The command accepts the same syntax of the corresponding option.
10132
10133 If the specified expression is not valid, it is kept at its current
10134 value.
10135 @end table
10136
10137 @subsection Examples
10138
10139 @itemize
10140 @item
10141 Draw the overlay at 10 pixels from the bottom right corner of the main
10142 video:
10143 @example
10144 overlay=main_w-overlay_w-10:main_h-overlay_h-10
10145 @end example
10146
10147 Using named options the example above becomes:
10148 @example
10149 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
10150 @end example
10151
10152 @item
10153 Insert a transparent PNG logo in the bottom left corner of the input,
10154 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
10155 @example
10156 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
10157 @end example
10158
10159 @item
10160 Insert 2 different transparent PNG logos (second logo on bottom
10161 right corner) using the @command{ffmpeg} tool:
10162 @example
10163 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
10164 @end example
10165
10166 @item
10167 Add a transparent color layer on top of the main video; @code{WxH}
10168 must specify the size of the main input to the overlay filter:
10169 @example
10170 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
10171 @end example
10172
10173 @item
10174 Play an original video and a filtered version (here with the deshake
10175 filter) side by side using the @command{ffplay} tool:
10176 @example
10177 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
10178 @end example
10179
10180 The above command is the same as:
10181 @example
10182 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
10183 @end example
10184
10185 @item
10186 Make a sliding overlay appearing from the left to the right top part of the
10187 screen starting since time 2:
10188 @example
10189 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
10190 @end example
10191
10192 @item
10193 Compose output by putting two input videos side to side:
10194 @example
10195 ffmpeg -i left.avi -i right.avi -filter_complex "
10196 nullsrc=size=200x100 [background];
10197 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
10198 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
10199 [background][left]       overlay=shortest=1       [background+left];
10200 [background+left][right] overlay=shortest=1:x=100 [left+right]
10201 "
10202 @end example
10203
10204 @item
10205 Mask 10-20 seconds of a video by applying the delogo filter to a section
10206 @example
10207 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
10208 -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]'
10209 masked.avi
10210 @end example
10211
10212 @item
10213 Chain several overlays in cascade:
10214 @example
10215 nullsrc=s=200x200 [bg];
10216 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
10217 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
10218 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
10219 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
10220 [in3] null,       [mid2] overlay=100:100 [out0]
10221 @end example
10222
10223 @end itemize
10224
10225 @section owdenoise
10226
10227 Apply Overcomplete Wavelet denoiser.
10228
10229 The filter accepts the following options:
10230
10231 @table @option
10232 @item depth
10233 Set depth.
10234
10235 Larger depth values will denoise lower frequency components more, but
10236 slow down filtering.
10237
10238 Must be an int in the range 8-16, default is @code{8}.
10239
10240 @item luma_strength, ls
10241 Set luma strength.
10242
10243 Must be a double value in the range 0-1000, default is @code{1.0}.
10244
10245 @item chroma_strength, cs
10246 Set chroma strength.
10247
10248 Must be a double value in the range 0-1000, default is @code{1.0}.
10249 @end table
10250
10251 @anchor{pad}
10252 @section pad
10253
10254 Add paddings to the input image, and place the original input at the
10255 provided @var{x}, @var{y} coordinates.
10256
10257 It accepts the following parameters:
10258
10259 @table @option
10260 @item width, w
10261 @item height, h
10262 Specify an expression for the size of the output image with the
10263 paddings added. If the value for @var{width} or @var{height} is 0, the
10264 corresponding input size is used for the output.
10265
10266 The @var{width} expression can reference the value set by the
10267 @var{height} expression, and vice versa.
10268
10269 The default value of @var{width} and @var{height} is 0.
10270
10271 @item x
10272 @item y
10273 Specify the offsets to place the input image at within the padded area,
10274 with respect to the top/left border of the output image.
10275
10276 The @var{x} expression can reference the value set by the @var{y}
10277 expression, and vice versa.
10278
10279 The default value of @var{x} and @var{y} is 0.
10280
10281 @item color
10282 Specify the color of the padded area. For the syntax of this option,
10283 check the "Color" section in the ffmpeg-utils manual.
10284
10285 The default value of @var{color} is "black".
10286 @end table
10287
10288 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10289 options are expressions containing the following constants:
10290
10291 @table @option
10292 @item in_w
10293 @item in_h
10294 The input video width and height.
10295
10296 @item iw
10297 @item ih
10298 These are the same as @var{in_w} and @var{in_h}.
10299
10300 @item out_w
10301 @item out_h
10302 The output width and height (the size of the padded area), as
10303 specified by the @var{width} and @var{height} expressions.
10304
10305 @item ow
10306 @item oh
10307 These are the same as @var{out_w} and @var{out_h}.
10308
10309 @item x
10310 @item y
10311 The x and y offsets as specified by the @var{x} and @var{y}
10312 expressions, or NAN if not yet specified.
10313
10314 @item a
10315 same as @var{iw} / @var{ih}
10316
10317 @item sar
10318 input sample aspect ratio
10319
10320 @item dar
10321 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10322
10323 @item hsub
10324 @item vsub
10325 The horizontal and vertical chroma subsample values. For example for the
10326 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10327 @end table
10328
10329 @subsection Examples
10330
10331 @itemize
10332 @item
10333 Add paddings with the color "violet" to the input video. The output video
10334 size is 640x480, and the top-left corner of the input video is placed at
10335 column 0, row 40
10336 @example
10337 pad=640:480:0:40:violet
10338 @end example
10339
10340 The example above is equivalent to the following command:
10341 @example
10342 pad=width=640:height=480:x=0:y=40:color=violet
10343 @end example
10344
10345 @item
10346 Pad the input to get an output with dimensions increased by 3/2,
10347 and put the input video at the center of the padded area:
10348 @example
10349 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10350 @end example
10351
10352 @item
10353 Pad the input to get a squared output with size equal to the maximum
10354 value between the input width and height, and put the input video at
10355 the center of the padded area:
10356 @example
10357 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10358 @end example
10359
10360 @item
10361 Pad the input to get a final w/h ratio of 16:9:
10362 @example
10363 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10364 @end example
10365
10366 @item
10367 In case of anamorphic video, in order to set the output display aspect
10368 correctly, it is necessary to use @var{sar} in the expression,
10369 according to the relation:
10370 @example
10371 (ih * X / ih) * sar = output_dar
10372 X = output_dar / sar
10373 @end example
10374
10375 Thus the previous example needs to be modified to:
10376 @example
10377 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10378 @end example
10379
10380 @item
10381 Double the output size and put the input video in the bottom-right
10382 corner of the output padded area:
10383 @example
10384 pad="2*iw:2*ih:ow-iw:oh-ih"
10385 @end example
10386 @end itemize
10387
10388 @anchor{palettegen}
10389 @section palettegen
10390
10391 Generate one palette for a whole video stream.
10392
10393 It accepts the following options:
10394
10395 @table @option
10396 @item max_colors
10397 Set the maximum number of colors to quantize in the palette.
10398 Note: the palette will still contain 256 colors; the unused palette entries
10399 will be black.
10400
10401 @item reserve_transparent
10402 Create a palette of 255 colors maximum and reserve the last one for
10403 transparency. Reserving the transparency color is useful for GIF optimization.
10404 If not set, the maximum of colors in the palette will be 256. You probably want
10405 to disable this option for a standalone image.
10406 Set by default.
10407
10408 @item stats_mode
10409 Set statistics mode.
10410
10411 It accepts the following values:
10412 @table @samp
10413 @item full
10414 Compute full frame histograms.
10415 @item diff
10416 Compute histograms only for the part that differs from previous frame. This
10417 might be relevant to give more importance to the moving part of your input if
10418 the background is static.
10419 @end table
10420
10421 Default value is @var{full}.
10422 @end table
10423
10424 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10425 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10426 color quantization of the palette. This information is also visible at
10427 @var{info} logging level.
10428
10429 @subsection Examples
10430
10431 @itemize
10432 @item
10433 Generate a representative palette of a given video using @command{ffmpeg}:
10434 @example
10435 ffmpeg -i input.mkv -vf palettegen palette.png
10436 @end example
10437 @end itemize
10438
10439 @section paletteuse
10440
10441 Use a palette to downsample an input video stream.
10442
10443 The filter takes two inputs: one video stream and a palette. The palette must
10444 be a 256 pixels image.
10445
10446 It accepts the following options:
10447
10448 @table @option
10449 @item dither
10450 Select dithering mode. Available algorithms are:
10451 @table @samp
10452 @item bayer
10453 Ordered 8x8 bayer dithering (deterministic)
10454 @item heckbert
10455 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10456 Note: this dithering is sometimes considered "wrong" and is included as a
10457 reference.
10458 @item floyd_steinberg
10459 Floyd and Steingberg dithering (error diffusion)
10460 @item sierra2
10461 Frankie Sierra dithering v2 (error diffusion)
10462 @item sierra2_4a
10463 Frankie Sierra dithering v2 "Lite" (error diffusion)
10464 @end table
10465
10466 Default is @var{sierra2_4a}.
10467
10468 @item bayer_scale
10469 When @var{bayer} dithering is selected, this option defines the scale of the
10470 pattern (how much the crosshatch pattern is visible). A low value means more
10471 visible pattern for less banding, and higher value means less visible pattern
10472 at the cost of more banding.
10473
10474 The option must be an integer value in the range [0,5]. Default is @var{2}.
10475
10476 @item diff_mode
10477 If set, define the zone to process
10478
10479 @table @samp
10480 @item rectangle
10481 Only the changing rectangle will be reprocessed. This is similar to GIF
10482 cropping/offsetting compression mechanism. This option can be useful for speed
10483 if only a part of the image is changing, and has use cases such as limiting the
10484 scope of the error diffusal @option{dither} to the rectangle that bounds the
10485 moving scene (it leads to more deterministic output if the scene doesn't change
10486 much, and as a result less moving noise and better GIF compression).
10487 @end table
10488
10489 Default is @var{none}.
10490 @end table
10491
10492 @subsection Examples
10493
10494 @itemize
10495 @item
10496 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10497 using @command{ffmpeg}:
10498 @example
10499 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10500 @end example
10501 @end itemize
10502
10503 @section perspective
10504
10505 Correct perspective of video not recorded perpendicular to the screen.
10506
10507 A description of the accepted parameters follows.
10508
10509 @table @option
10510 @item x0
10511 @item y0
10512 @item x1
10513 @item y1
10514 @item x2
10515 @item y2
10516 @item x3
10517 @item y3
10518 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10519 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10520 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10521 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10522 then the corners of the source will be sent to the specified coordinates.
10523
10524 The expressions can use the following variables:
10525
10526 @table @option
10527 @item W
10528 @item H
10529 the width and height of video frame.
10530 @item in
10531 Input frame count.
10532 @item on
10533 Output frame count.
10534 @end table
10535
10536 @item interpolation
10537 Set interpolation for perspective correction.
10538
10539 It accepts the following values:
10540 @table @samp
10541 @item linear
10542 @item cubic
10543 @end table
10544
10545 Default value is @samp{linear}.
10546
10547 @item sense
10548 Set interpretation of coordinate options.
10549
10550 It accepts the following values:
10551 @table @samp
10552 @item 0, source
10553
10554 Send point in the source specified by the given coordinates to
10555 the corners of the destination.
10556
10557 @item 1, destination
10558
10559 Send the corners of the source to the point in the destination specified
10560 by the given coordinates.
10561
10562 Default value is @samp{source}.
10563 @end table
10564
10565 @item eval
10566 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10567
10568 It accepts the following values:
10569 @table @samp
10570 @item init
10571 only evaluate expressions once during the filter initialization or
10572 when a command is processed
10573
10574 @item frame
10575 evaluate expressions for each incoming frame
10576 @end table
10577
10578 Default value is @samp{init}.
10579 @end table
10580
10581 @section phase
10582
10583 Delay interlaced video by one field time so that the field order changes.
10584
10585 The intended use is to fix PAL movies that have been captured with the
10586 opposite field order to the film-to-video transfer.
10587
10588 A description of the accepted parameters follows.
10589
10590 @table @option
10591 @item mode
10592 Set phase mode.
10593
10594 It accepts the following values:
10595 @table @samp
10596 @item t
10597 Capture field order top-first, transfer bottom-first.
10598 Filter will delay the bottom field.
10599
10600 @item b
10601 Capture field order bottom-first, transfer top-first.
10602 Filter will delay the top field.
10603
10604 @item p
10605 Capture and transfer with the same field order. This mode only exists
10606 for the documentation of the other options to refer to, but if you
10607 actually select it, the filter will faithfully do nothing.
10608
10609 @item a
10610 Capture field order determined automatically by field flags, transfer
10611 opposite.
10612 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10613 basis using field flags. If no field information is available,
10614 then this works just like @samp{u}.
10615
10616 @item u
10617 Capture unknown or varying, transfer opposite.
10618 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10619 analyzing the images and selecting the alternative that produces best
10620 match between the fields.
10621
10622 @item T
10623 Capture top-first, transfer unknown or varying.
10624 Filter selects among @samp{t} and @samp{p} using image analysis.
10625
10626 @item B
10627 Capture bottom-first, transfer unknown or varying.
10628 Filter selects among @samp{b} and @samp{p} using image analysis.
10629
10630 @item A
10631 Capture determined by field flags, transfer unknown or varying.
10632 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10633 image analysis. If no field information is available, then this works just
10634 like @samp{U}. This is the default mode.
10635
10636 @item U
10637 Both capture and transfer unknown or varying.
10638 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10639 @end table
10640 @end table
10641
10642 @section pixdesctest
10643
10644 Pixel format descriptor test filter, mainly useful for internal
10645 testing. The output video should be equal to the input video.
10646
10647 For example:
10648 @example
10649 format=monow, pixdesctest
10650 @end example
10651
10652 can be used to test the monowhite pixel format descriptor definition.
10653
10654 @section pp
10655
10656 Enable the specified chain of postprocessing subfilters using libpostproc. This
10657 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10658 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10659 Each subfilter and some options have a short and a long name that can be used
10660 interchangeably, i.e. dr/dering are the same.
10661
10662 The filters accept the following options:
10663
10664 @table @option
10665 @item subfilters
10666 Set postprocessing subfilters string.
10667 @end table
10668
10669 All subfilters share common options to determine their scope:
10670
10671 @table @option
10672 @item a/autoq
10673 Honor the quality commands for this subfilter.
10674
10675 @item c/chrom
10676 Do chrominance filtering, too (default).
10677
10678 @item y/nochrom
10679 Do luminance filtering only (no chrominance).
10680
10681 @item n/noluma
10682 Do chrominance filtering only (no luminance).
10683 @end table
10684
10685 These options can be appended after the subfilter name, separated by a '|'.
10686
10687 Available subfilters are:
10688
10689 @table @option
10690 @item hb/hdeblock[|difference[|flatness]]
10691 Horizontal deblocking filter
10692 @table @option
10693 @item difference
10694 Difference factor where higher values mean more deblocking (default: @code{32}).
10695 @item flatness
10696 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10697 @end table
10698
10699 @item vb/vdeblock[|difference[|flatness]]
10700 Vertical deblocking filter
10701 @table @option
10702 @item difference
10703 Difference factor where higher values mean more deblocking (default: @code{32}).
10704 @item flatness
10705 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10706 @end table
10707
10708 @item ha/hadeblock[|difference[|flatness]]
10709 Accurate horizontal deblocking filter
10710 @table @option
10711 @item difference
10712 Difference factor where higher values mean more deblocking (default: @code{32}).
10713 @item flatness
10714 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10715 @end table
10716
10717 @item va/vadeblock[|difference[|flatness]]
10718 Accurate vertical deblocking filter
10719 @table @option
10720 @item difference
10721 Difference factor where higher values mean more deblocking (default: @code{32}).
10722 @item flatness
10723 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10724 @end table
10725 @end table
10726
10727 The horizontal and vertical deblocking filters share the difference and
10728 flatness values so you cannot set different horizontal and vertical
10729 thresholds.
10730
10731 @table @option
10732 @item h1/x1hdeblock
10733 Experimental horizontal deblocking filter
10734
10735 @item v1/x1vdeblock
10736 Experimental vertical deblocking filter
10737
10738 @item dr/dering
10739 Deringing filter
10740
10741 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10742 @table @option
10743 @item threshold1
10744 larger -> stronger filtering
10745 @item threshold2
10746 larger -> stronger filtering
10747 @item threshold3
10748 larger -> stronger filtering
10749 @end table
10750
10751 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10752 @table @option
10753 @item f/fullyrange
10754 Stretch luminance to @code{0-255}.
10755 @end table
10756
10757 @item lb/linblenddeint
10758 Linear blend deinterlacing filter that deinterlaces the given block by
10759 filtering all lines with a @code{(1 2 1)} filter.
10760
10761 @item li/linipoldeint
10762 Linear interpolating deinterlacing filter that deinterlaces the given block by
10763 linearly interpolating every second line.
10764
10765 @item ci/cubicipoldeint
10766 Cubic interpolating deinterlacing filter deinterlaces the given block by
10767 cubically interpolating every second line.
10768
10769 @item md/mediandeint
10770 Median deinterlacing filter that deinterlaces the given block by applying a
10771 median filter to every second line.
10772
10773 @item fd/ffmpegdeint
10774 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10775 second line with a @code{(-1 4 2 4 -1)} filter.
10776
10777 @item l5/lowpass5
10778 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10779 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10780
10781 @item fq/forceQuant[|quantizer]
10782 Overrides the quantizer table from the input with the constant quantizer you
10783 specify.
10784 @table @option
10785 @item quantizer
10786 Quantizer to use
10787 @end table
10788
10789 @item de/default
10790 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10791
10792 @item fa/fast
10793 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10794
10795 @item ac
10796 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10797 @end table
10798
10799 @subsection Examples
10800
10801 @itemize
10802 @item
10803 Apply horizontal and vertical deblocking, deringing and automatic
10804 brightness/contrast:
10805 @example
10806 pp=hb/vb/dr/al
10807 @end example
10808
10809 @item
10810 Apply default filters without brightness/contrast correction:
10811 @example
10812 pp=de/-al
10813 @end example
10814
10815 @item
10816 Apply default filters and temporal denoiser:
10817 @example
10818 pp=default/tmpnoise|1|2|3
10819 @end example
10820
10821 @item
10822 Apply deblocking on luminance only, and switch vertical deblocking on or off
10823 automatically depending on available CPU time:
10824 @example
10825 pp=hb|y/vb|a
10826 @end example
10827 @end itemize
10828
10829 @section pp7
10830 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
10831 similar to spp = 6 with 7 point DCT, where only the center sample is
10832 used after IDCT.
10833
10834 The filter accepts the following options:
10835
10836 @table @option
10837 @item qp
10838 Force a constant quantization parameter. It accepts an integer in range
10839 0 to 63. If not set, the filter will use the QP from the video stream
10840 (if available).
10841
10842 @item mode
10843 Set thresholding mode. Available modes are:
10844
10845 @table @samp
10846 @item hard
10847 Set hard thresholding.
10848 @item soft
10849 Set soft thresholding (better de-ringing effect, but likely blurrier).
10850 @item medium
10851 Set medium thresholding (good results, default).
10852 @end table
10853 @end table
10854
10855 @section psnr
10856
10857 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
10858 Ratio) between two input videos.
10859
10860 This filter takes in input two input videos, the first input is
10861 considered the "main" source and is passed unchanged to the
10862 output. The second input is used as a "reference" video for computing
10863 the PSNR.
10864
10865 Both video inputs must have the same resolution and pixel format for
10866 this filter to work correctly. Also it assumes that both inputs
10867 have the same number of frames, which are compared one by one.
10868
10869 The obtained average PSNR is printed through the logging system.
10870
10871 The filter stores the accumulated MSE (mean squared error) of each
10872 frame, and at the end of the processing it is averaged across all frames
10873 equally, and the following formula is applied to obtain the PSNR:
10874
10875 @example
10876 PSNR = 10*log10(MAX^2/MSE)
10877 @end example
10878
10879 Where MAX is the average of the maximum values of each component of the
10880 image.
10881
10882 The description of the accepted parameters follows.
10883
10884 @table @option
10885 @item stats_file, f
10886 If specified the filter will use the named file to save the PSNR of
10887 each individual frame. When filename equals "-" the data is sent to
10888 standard output.
10889
10890 @item stats_version
10891 Specifies which version of the stats file format to use. Details of
10892 each format are written below.
10893 Default value is 1.
10894
10895 @item stats_add_max
10896 Determines whether the max value is output to the stats log.
10897 Default value is 0.
10898 Requires stats_version >= 2. If this is set and stats_version < 2,
10899 the filter will return an error.
10900 @end table
10901
10902 The file printed if @var{stats_file} is selected, contains a sequence of
10903 key/value pairs of the form @var{key}:@var{value} for each compared
10904 couple of frames.
10905
10906 If a @var{stats_version} greater than 1 is specified, a header line precedes
10907 the list of per-frame-pair stats, with key value pairs following the frame
10908 format with the following parameters:
10909
10910 @table @option
10911 @item psnr_log_version
10912 The version of the log file format. Will match @var{stats_version}.
10913
10914 @item fields
10915 A comma separated list of the per-frame-pair parameters included in
10916 the log.
10917 @end table
10918
10919 A description of each shown per-frame-pair parameter follows:
10920
10921 @table @option
10922 @item n
10923 sequential number of the input frame, starting from 1
10924
10925 @item mse_avg
10926 Mean Square Error pixel-by-pixel average difference of the compared
10927 frames, averaged over all the image components.
10928
10929 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
10930 Mean Square Error pixel-by-pixel average difference of the compared
10931 frames for the component specified by the suffix.
10932
10933 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
10934 Peak Signal to Noise ratio of the compared frames for the component
10935 specified by the suffix.
10936
10937 @item max_avg, max_y, max_u, max_v
10938 Maximum allowed value for each channel, and average over all
10939 channels.
10940 @end table
10941
10942 For example:
10943 @example
10944 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10945 [main][ref] psnr="stats_file=stats.log" [out]
10946 @end example
10947
10948 On this example the input file being processed is compared with the
10949 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
10950 is stored in @file{stats.log}.
10951
10952 @anchor{pullup}
10953 @section pullup
10954
10955 Pulldown reversal (inverse telecine) filter, capable of handling mixed
10956 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
10957 content.
10958
10959 The pullup filter is designed to take advantage of future context in making
10960 its decisions. This filter is stateless in the sense that it does not lock
10961 onto a pattern to follow, but it instead looks forward to the following
10962 fields in order to identify matches and rebuild progressive frames.
10963
10964 To produce content with an even framerate, insert the fps filter after
10965 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
10966 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
10967
10968 The filter accepts the following options:
10969
10970 @table @option
10971 @item jl
10972 @item jr
10973 @item jt
10974 @item jb
10975 These options set the amount of "junk" to ignore at the left, right, top, and
10976 bottom of the image, respectively. Left and right are in units of 8 pixels,
10977 while top and bottom are in units of 2 lines.
10978 The default is 8 pixels on each side.
10979
10980 @item sb
10981 Set the strict breaks. Setting this option to 1 will reduce the chances of
10982 filter generating an occasional mismatched frame, but it may also cause an
10983 excessive number of frames to be dropped during high motion sequences.
10984 Conversely, setting it to -1 will make filter match fields more easily.
10985 This may help processing of video where there is slight blurring between
10986 the fields, but may also cause there to be interlaced frames in the output.
10987 Default value is @code{0}.
10988
10989 @item mp
10990 Set the metric plane to use. It accepts the following values:
10991 @table @samp
10992 @item l
10993 Use luma plane.
10994
10995 @item u
10996 Use chroma blue plane.
10997
10998 @item v
10999 Use chroma red plane.
11000 @end table
11001
11002 This option may be set to use chroma plane instead of the default luma plane
11003 for doing filter's computations. This may improve accuracy on very clean
11004 source material, but more likely will decrease accuracy, especially if there
11005 is chroma noise (rainbow effect) or any grayscale video.
11006 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
11007 load and make pullup usable in realtime on slow machines.
11008 @end table
11009
11010 For best results (without duplicated frames in the output file) it is
11011 necessary to change the output frame rate. For example, to inverse
11012 telecine NTSC input:
11013 @example
11014 ffmpeg -i input -vf pullup -r 24000/1001 ...
11015 @end example
11016
11017 @section qp
11018
11019 Change video quantization parameters (QP).
11020
11021 The filter accepts the following option:
11022
11023 @table @option
11024 @item qp
11025 Set expression for quantization parameter.
11026 @end table
11027
11028 The expression is evaluated through the eval API and can contain, among others,
11029 the following constants:
11030
11031 @table @var
11032 @item known
11033 1 if index is not 129, 0 otherwise.
11034
11035 @item qp
11036 Sequentional index starting from -129 to 128.
11037 @end table
11038
11039 @subsection Examples
11040
11041 @itemize
11042 @item
11043 Some equation like:
11044 @example
11045 qp=2+2*sin(PI*qp)
11046 @end example
11047 @end itemize
11048
11049 @section random
11050
11051 Flush video frames from internal cache of frames into a random order.
11052 No frame is discarded.
11053 Inspired by @ref{frei0r} nervous filter.
11054
11055 @table @option
11056 @item frames
11057 Set size in number of frames of internal cache, in range from @code{2} to
11058 @code{512}. Default is @code{30}.
11059
11060 @item seed
11061 Set seed for random number generator, must be an integer included between
11062 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
11063 less than @code{0}, the filter will try to use a good random seed on a
11064 best effort basis.
11065 @end table
11066
11067 @section readvitc
11068
11069 Read vertical interval timecode (VITC) information from the top lines of a
11070 video frame.
11071
11072 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
11073 timecode value, if a valid timecode has been detected. Further metadata key
11074 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
11075 timecode data has been found or not.
11076
11077 This filter accepts the following options:
11078
11079 @table @option
11080 @item scan_max
11081 Set the maximum number of lines to scan for VITC data. If the value is set to
11082 @code{-1} the full video frame is scanned. Default is @code{45}.
11083
11084 @item thr_b
11085 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
11086 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
11087
11088 @item thr_w
11089 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
11090 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
11091 @end table
11092
11093 @subsection Examples
11094
11095 @itemize
11096 @item
11097 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
11098 draw @code{--:--:--:--} as a placeholder:
11099 @example
11100 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
11101 @end example
11102 @end itemize
11103
11104 @section remap
11105
11106 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
11107
11108 Destination pixel at position (X, Y) will be picked from source (x, y) position
11109 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
11110 value for pixel will be used for destination pixel.
11111
11112 Xmap and Ymap input video streams must be of same dimensions. Output video stream
11113 will have Xmap/Ymap video stream dimensions.
11114 Xmap and Ymap input video streams are 16bit depth, single channel.
11115
11116 @section removegrain
11117
11118 The removegrain filter is a spatial denoiser for progressive video.
11119
11120 @table @option
11121 @item m0
11122 Set mode for the first plane.
11123
11124 @item m1
11125 Set mode for the second plane.
11126
11127 @item m2
11128 Set mode for the third plane.
11129
11130 @item m3
11131 Set mode for the fourth plane.
11132 @end table
11133
11134 Range of mode is from 0 to 24. Description of each mode follows:
11135
11136 @table @var
11137 @item 0
11138 Leave input plane unchanged. Default.
11139
11140 @item 1
11141 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
11142
11143 @item 2
11144 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
11145
11146 @item 3
11147 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
11148
11149 @item 4
11150 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
11151 This is equivalent to a median filter.
11152
11153 @item 5
11154 Line-sensitive clipping giving the minimal change.
11155
11156 @item 6
11157 Line-sensitive clipping, intermediate.
11158
11159 @item 7
11160 Line-sensitive clipping, intermediate.
11161
11162 @item 8
11163 Line-sensitive clipping, intermediate.
11164
11165 @item 9
11166 Line-sensitive clipping on a line where the neighbours pixels are the closest.
11167
11168 @item 10
11169 Replaces the target pixel with the closest neighbour.
11170
11171 @item 11
11172 [1 2 1] horizontal and vertical kernel blur.
11173
11174 @item 12
11175 Same as mode 11.
11176
11177 @item 13
11178 Bob mode, interpolates top field from the line where the neighbours
11179 pixels are the closest.
11180
11181 @item 14
11182 Bob mode, interpolates bottom field from the line where the neighbours
11183 pixels are the closest.
11184
11185 @item 15
11186 Bob mode, interpolates top field. Same as 13 but with a more complicated
11187 interpolation formula.
11188
11189 @item 16
11190 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
11191 interpolation formula.
11192
11193 @item 17
11194 Clips the pixel with the minimum and maximum of respectively the maximum and
11195 minimum of each pair of opposite neighbour pixels.
11196
11197 @item 18
11198 Line-sensitive clipping using opposite neighbours whose greatest distance from
11199 the current pixel is minimal.
11200
11201 @item 19
11202 Replaces the pixel with the average of its 8 neighbours.
11203
11204 @item 20
11205 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
11206
11207 @item 21
11208 Clips pixels using the averages of opposite neighbour.
11209
11210 @item 22
11211 Same as mode 21 but simpler and faster.
11212
11213 @item 23
11214 Small edge and halo removal, but reputed useless.
11215
11216 @item 24
11217 Similar as 23.
11218 @end table
11219
11220 @section removelogo
11221
11222 Suppress a TV station logo, using an image file to determine which
11223 pixels comprise the logo. It works by filling in the pixels that
11224 comprise the logo with neighboring pixels.
11225
11226 The filter accepts the following options:
11227
11228 @table @option
11229 @item filename, f
11230 Set the filter bitmap file, which can be any image format supported by
11231 libavformat. The width and height of the image file must match those of the
11232 video stream being processed.
11233 @end table
11234
11235 Pixels in the provided bitmap image with a value of zero are not
11236 considered part of the logo, non-zero pixels are considered part of
11237 the logo. If you use white (255) for the logo and black (0) for the
11238 rest, you will be safe. For making the filter bitmap, it is
11239 recommended to take a screen capture of a black frame with the logo
11240 visible, and then using a threshold filter followed by the erode
11241 filter once or twice.
11242
11243 If needed, little splotches can be fixed manually. Remember that if
11244 logo pixels are not covered, the filter quality will be much
11245 reduced. Marking too many pixels as part of the logo does not hurt as
11246 much, but it will increase the amount of blurring needed to cover over
11247 the image and will destroy more information than necessary, and extra
11248 pixels will slow things down on a large logo.
11249
11250 @section repeatfields
11251
11252 This filter uses the repeat_field flag from the Video ES headers and hard repeats
11253 fields based on its value.
11254
11255 @section reverse
11256
11257 Reverse a video clip.
11258
11259 Warning: This filter requires memory to buffer the entire clip, so trimming
11260 is suggested.
11261
11262 @subsection Examples
11263
11264 @itemize
11265 @item
11266 Take the first 5 seconds of a clip, and reverse it.
11267 @example
11268 trim=end=5,reverse
11269 @end example
11270 @end itemize
11271
11272 @section rotate
11273
11274 Rotate video by an arbitrary angle expressed in radians.
11275
11276 The filter accepts the following options:
11277
11278 A description of the optional parameters follows.
11279 @table @option
11280 @item angle, a
11281 Set an expression for the angle by which to rotate the input video
11282 clockwise, expressed as a number of radians. A negative value will
11283 result in a counter-clockwise rotation. By default it is set to "0".
11284
11285 This expression is evaluated for each frame.
11286
11287 @item out_w, ow
11288 Set the output width expression, default value is "iw".
11289 This expression is evaluated just once during configuration.
11290
11291 @item out_h, oh
11292 Set the output height expression, default value is "ih".
11293 This expression is evaluated just once during configuration.
11294
11295 @item bilinear
11296 Enable bilinear interpolation if set to 1, a value of 0 disables
11297 it. Default value is 1.
11298
11299 @item fillcolor, c
11300 Set the color used to fill the output area not covered by the rotated
11301 image. For the general syntax of this option, check the "Color" section in the
11302 ffmpeg-utils manual. If the special value "none" is selected then no
11303 background is printed (useful for example if the background is never shown).
11304
11305 Default value is "black".
11306 @end table
11307
11308 The expressions for the angle and the output size can contain the
11309 following constants and functions:
11310
11311 @table @option
11312 @item n
11313 sequential number of the input frame, starting from 0. It is always NAN
11314 before the first frame is filtered.
11315
11316 @item t
11317 time in seconds of the input frame, it is set to 0 when the filter is
11318 configured. It is always NAN before the first frame is filtered.
11319
11320 @item hsub
11321 @item vsub
11322 horizontal and vertical chroma subsample values. For example for the
11323 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11324
11325 @item in_w, iw
11326 @item in_h, ih
11327 the input video width and height
11328
11329 @item out_w, ow
11330 @item out_h, oh
11331 the output width and height, that is the size of the padded area as
11332 specified by the @var{width} and @var{height} expressions
11333
11334 @item rotw(a)
11335 @item roth(a)
11336 the minimal width/height required for completely containing the input
11337 video rotated by @var{a} radians.
11338
11339 These are only available when computing the @option{out_w} and
11340 @option{out_h} expressions.
11341 @end table
11342
11343 @subsection Examples
11344
11345 @itemize
11346 @item
11347 Rotate the input by PI/6 radians clockwise:
11348 @example
11349 rotate=PI/6
11350 @end example
11351
11352 @item
11353 Rotate the input by PI/6 radians counter-clockwise:
11354 @example
11355 rotate=-PI/6
11356 @end example
11357
11358 @item
11359 Rotate the input by 45 degrees clockwise:
11360 @example
11361 rotate=45*PI/180
11362 @end example
11363
11364 @item
11365 Apply a constant rotation with period T, starting from an angle of PI/3:
11366 @example
11367 rotate=PI/3+2*PI*t/T
11368 @end example
11369
11370 @item
11371 Make the input video rotation oscillating with a period of T
11372 seconds and an amplitude of A radians:
11373 @example
11374 rotate=A*sin(2*PI/T*t)
11375 @end example
11376
11377 @item
11378 Rotate the video, output size is chosen so that the whole rotating
11379 input video is always completely contained in the output:
11380 @example
11381 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11382 @end example
11383
11384 @item
11385 Rotate the video, reduce the output size so that no background is ever
11386 shown:
11387 @example
11388 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11389 @end example
11390 @end itemize
11391
11392 @subsection Commands
11393
11394 The filter supports the following commands:
11395
11396 @table @option
11397 @item a, angle
11398 Set the angle expression.
11399 The command accepts the same syntax of the corresponding option.
11400
11401 If the specified expression is not valid, it is kept at its current
11402 value.
11403 @end table
11404
11405 @section sab
11406
11407 Apply Shape Adaptive Blur.
11408
11409 The filter accepts the following options:
11410
11411 @table @option
11412 @item luma_radius, lr
11413 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11414 value is 1.0. A greater value will result in a more blurred image, and
11415 in slower processing.
11416
11417 @item luma_pre_filter_radius, lpfr
11418 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11419 value is 1.0.
11420
11421 @item luma_strength, ls
11422 Set luma maximum difference between pixels to still be considered, must
11423 be a value in the 0.1-100.0 range, default value is 1.0.
11424
11425 @item chroma_radius, cr
11426 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11427 greater value will result in a more blurred image, and in slower
11428 processing.
11429
11430 @item chroma_pre_filter_radius, cpfr
11431 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11432
11433 @item chroma_strength, cs
11434 Set chroma maximum difference between pixels to still be considered,
11435 must be a value in the -0.9-100.0 range.
11436 @end table
11437
11438 Each chroma option value, if not explicitly specified, is set to the
11439 corresponding luma option value.
11440
11441 @anchor{scale}
11442 @section scale
11443
11444 Scale (resize) the input video, using the libswscale library.
11445
11446 The scale filter forces the output display aspect ratio to be the same
11447 of the input, by changing the output sample aspect ratio.
11448
11449 If the input image format is different from the format requested by
11450 the next filter, the scale filter will convert the input to the
11451 requested format.
11452
11453 @subsection Options
11454 The filter accepts the following options, or any of the options
11455 supported by the libswscale scaler.
11456
11457 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11458 the complete list of scaler options.
11459
11460 @table @option
11461 @item width, w
11462 @item height, h
11463 Set the output video dimension expression. Default value is the input
11464 dimension.
11465
11466 If the value is 0, the input width is used for the output.
11467
11468 If one of the values is -1, the scale filter will use a value that
11469 maintains the aspect ratio of the input image, calculated from the
11470 other specified dimension. If both of them are -1, the input size is
11471 used
11472
11473 If one of the values is -n with n > 1, the scale filter will also use a value
11474 that maintains the aspect ratio of the input image, calculated from the other
11475 specified dimension. After that it will, however, make sure that the calculated
11476 dimension is divisible by n and adjust the value if necessary.
11477
11478 See below for the list of accepted constants for use in the dimension
11479 expression.
11480
11481 @item eval
11482 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11483
11484 @table @samp
11485 @item init
11486 Only evaluate expressions once during the filter initialization or when a command is processed.
11487
11488 @item frame
11489 Evaluate expressions for each incoming frame.
11490
11491 @end table
11492
11493 Default value is @samp{init}.
11494
11495
11496 @item interl
11497 Set the interlacing mode. It accepts the following values:
11498
11499 @table @samp
11500 @item 1
11501 Force interlaced aware scaling.
11502
11503 @item 0
11504 Do not apply interlaced scaling.
11505
11506 @item -1
11507 Select interlaced aware scaling depending on whether the source frames
11508 are flagged as interlaced or not.
11509 @end table
11510
11511 Default value is @samp{0}.
11512
11513 @item flags
11514 Set libswscale scaling flags. See
11515 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11516 complete list of values. If not explicitly specified the filter applies
11517 the default flags.
11518
11519
11520 @item param0, param1
11521 Set libswscale input parameters for scaling algorithms that need them. See
11522 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11523 complete documentation. If not explicitly specified the filter applies
11524 empty parameters.
11525
11526
11527
11528 @item size, s
11529 Set the video size. For the syntax of this option, check the
11530 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11531
11532 @item in_color_matrix
11533 @item out_color_matrix
11534 Set in/output YCbCr color space type.
11535
11536 This allows the autodetected value to be overridden as well as allows forcing
11537 a specific value used for the output and encoder.
11538
11539 If not specified, the color space type depends on the pixel format.
11540
11541 Possible values:
11542
11543 @table @samp
11544 @item auto
11545 Choose automatically.
11546
11547 @item bt709
11548 Format conforming to International Telecommunication Union (ITU)
11549 Recommendation BT.709.
11550
11551 @item fcc
11552 Set color space conforming to the United States Federal Communications
11553 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11554
11555 @item bt601
11556 Set color space conforming to:
11557
11558 @itemize
11559 @item
11560 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11561
11562 @item
11563 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11564
11565 @item
11566 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11567
11568 @end itemize
11569
11570 @item smpte240m
11571 Set color space conforming to SMPTE ST 240:1999.
11572 @end table
11573
11574 @item in_range
11575 @item out_range
11576 Set in/output YCbCr sample range.
11577
11578 This allows the autodetected value to be overridden as well as allows forcing
11579 a specific value used for the output and encoder. If not specified, the
11580 range depends on the pixel format. Possible values:
11581
11582 @table @samp
11583 @item auto
11584 Choose automatically.
11585
11586 @item jpeg/full/pc
11587 Set full range (0-255 in case of 8-bit luma).
11588
11589 @item mpeg/tv
11590 Set "MPEG" range (16-235 in case of 8-bit luma).
11591 @end table
11592
11593 @item force_original_aspect_ratio
11594 Enable decreasing or increasing output video width or height if necessary to
11595 keep the original aspect ratio. Possible values:
11596
11597 @table @samp
11598 @item disable
11599 Scale the video as specified and disable this feature.
11600
11601 @item decrease
11602 The output video dimensions will automatically be decreased if needed.
11603
11604 @item increase
11605 The output video dimensions will automatically be increased if needed.
11606
11607 @end table
11608
11609 One useful instance of this option is that when you know a specific device's
11610 maximum allowed resolution, you can use this to limit the output video to
11611 that, while retaining the aspect ratio. For example, device A allows
11612 1280x720 playback, and your video is 1920x800. Using this option (set it to
11613 decrease) and specifying 1280x720 to the command line makes the output
11614 1280x533.
11615
11616 Please note that this is a different thing than specifying -1 for @option{w}
11617 or @option{h}, you still need to specify the output resolution for this option
11618 to work.
11619
11620 @end table
11621
11622 The values of the @option{w} and @option{h} options are expressions
11623 containing the following constants:
11624
11625 @table @var
11626 @item in_w
11627 @item in_h
11628 The input width and height
11629
11630 @item iw
11631 @item ih
11632 These are the same as @var{in_w} and @var{in_h}.
11633
11634 @item out_w
11635 @item out_h
11636 The output (scaled) width and height
11637
11638 @item ow
11639 @item oh
11640 These are the same as @var{out_w} and @var{out_h}
11641
11642 @item a
11643 The same as @var{iw} / @var{ih}
11644
11645 @item sar
11646 input sample aspect ratio
11647
11648 @item dar
11649 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11650
11651 @item hsub
11652 @item vsub
11653 horizontal and vertical input chroma subsample values. For example for the
11654 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11655
11656 @item ohsub
11657 @item ovsub
11658 horizontal and vertical output chroma subsample values. For example for the
11659 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11660 @end table
11661
11662 @subsection Examples
11663
11664 @itemize
11665 @item
11666 Scale the input video to a size of 200x100
11667 @example
11668 scale=w=200:h=100
11669 @end example
11670
11671 This is equivalent to:
11672 @example
11673 scale=200:100
11674 @end example
11675
11676 or:
11677 @example
11678 scale=200x100
11679 @end example
11680
11681 @item
11682 Specify a size abbreviation for the output size:
11683 @example
11684 scale=qcif
11685 @end example
11686
11687 which can also be written as:
11688 @example
11689 scale=size=qcif
11690 @end example
11691
11692 @item
11693 Scale the input to 2x:
11694 @example
11695 scale=w=2*iw:h=2*ih
11696 @end example
11697
11698 @item
11699 The above is the same as:
11700 @example
11701 scale=2*in_w:2*in_h
11702 @end example
11703
11704 @item
11705 Scale the input to 2x with forced interlaced scaling:
11706 @example
11707 scale=2*iw:2*ih:interl=1
11708 @end example
11709
11710 @item
11711 Scale the input to half size:
11712 @example
11713 scale=w=iw/2:h=ih/2
11714 @end example
11715
11716 @item
11717 Increase the width, and set the height to the same size:
11718 @example
11719 scale=3/2*iw:ow
11720 @end example
11721
11722 @item
11723 Seek Greek harmony:
11724 @example
11725 scale=iw:1/PHI*iw
11726 scale=ih*PHI:ih
11727 @end example
11728
11729 @item
11730 Increase the height, and set the width to 3/2 of the height:
11731 @example
11732 scale=w=3/2*oh:h=3/5*ih
11733 @end example
11734
11735 @item
11736 Increase the size, making the size a multiple of the chroma
11737 subsample values:
11738 @example
11739 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
11740 @end example
11741
11742 @item
11743 Increase the width to a maximum of 500 pixels,
11744 keeping the same aspect ratio as the input:
11745 @example
11746 scale=w='min(500\, iw*3/2):h=-1'
11747 @end example
11748 @end itemize
11749
11750 @subsection Commands
11751
11752 This filter supports the following commands:
11753 @table @option
11754 @item width, w
11755 @item height, h
11756 Set the output video dimension expression.
11757 The command accepts the same syntax of the corresponding option.
11758
11759 If the specified expression is not valid, it is kept at its current
11760 value.
11761 @end table
11762
11763 @section scale_npp
11764
11765 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
11766 format conversion on CUDA video frames. Setting the output width and height
11767 works in the same way as for the @var{scale} filter.
11768
11769 The following additional options are accepted:
11770 @table @option
11771 @item format
11772 The pixel format of the output CUDA frames. If set to the string "same" (the
11773 default), the input format will be kept. Note that automatic format negotiation
11774 and conversion is not yet supported for hardware frames
11775
11776 @item interp_algo
11777 The interpolation algorithm used for resizing. One of the following:
11778 @table @option
11779 @item nn
11780 Nearest neighbour.
11781
11782 @item linear
11783 @item cubic
11784 @item cubic2p_bspline
11785 2-parameter cubic (B=1, C=0)
11786
11787 @item cubic2p_catmullrom
11788 2-parameter cubic (B=0, C=1/2)
11789
11790 @item cubic2p_b05c03
11791 2-parameter cubic (B=1/2, C=3/10)
11792
11793 @item super
11794 Supersampling
11795
11796 @item lanczos
11797 @end table
11798
11799 @end table
11800
11801 @section scale2ref
11802
11803 Scale (resize) the input video, based on a reference video.
11804
11805 See the scale filter for available options, scale2ref supports the same but
11806 uses the reference video instead of the main input as basis.
11807
11808 @subsection Examples
11809
11810 @itemize
11811 @item
11812 Scale a subtitle stream to match the main video in size before overlaying
11813 @example
11814 'scale2ref[b][a];[a][b]overlay'
11815 @end example
11816 @end itemize
11817
11818 @anchor{selectivecolor}
11819 @section selectivecolor
11820
11821 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
11822 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
11823 by the "purity" of the color (that is, how saturated it already is).
11824
11825 This filter is similar to the Adobe Photoshop Selective Color tool.
11826
11827 The filter accepts the following options:
11828
11829 @table @option
11830 @item correction_method
11831 Select color correction method.
11832
11833 Available values are:
11834 @table @samp
11835 @item absolute
11836 Specified adjustments are applied "as-is" (added/subtracted to original pixel
11837 component value).
11838 @item relative
11839 Specified adjustments are relative to the original component value.
11840 @end table
11841 Default is @code{absolute}.
11842 @item reds
11843 Adjustments for red pixels (pixels where the red component is the maximum)
11844 @item yellows
11845 Adjustments for yellow pixels (pixels where the blue component is the minimum)
11846 @item greens
11847 Adjustments for green pixels (pixels where the green component is the maximum)
11848 @item cyans
11849 Adjustments for cyan pixels (pixels where the red component is the minimum)
11850 @item blues
11851 Adjustments for blue pixels (pixels where the blue component is the maximum)
11852 @item magentas
11853 Adjustments for magenta pixels (pixels where the green component is the minimum)
11854 @item whites
11855 Adjustments for white pixels (pixels where all components are greater than 128)
11856 @item neutrals
11857 Adjustments for all pixels except pure black and pure white
11858 @item blacks
11859 Adjustments for black pixels (pixels where all components are lesser than 128)
11860 @item psfile
11861 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
11862 @end table
11863
11864 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
11865 4 space separated floating point adjustment values in the [-1,1] range,
11866 respectively to adjust the amount of cyan, magenta, yellow and black for the
11867 pixels of its range.
11868
11869 @subsection Examples
11870
11871 @itemize
11872 @item
11873 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
11874 increase magenta by 27% in blue areas:
11875 @example
11876 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
11877 @end example
11878
11879 @item
11880 Use a Photoshop selective color preset:
11881 @example
11882 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
11883 @end example
11884 @end itemize
11885
11886 @anchor{separatefields}
11887 @section separatefields
11888
11889 The @code{separatefields} takes a frame-based video input and splits
11890 each frame into its components fields, producing a new half height clip
11891 with twice the frame rate and twice the frame count.
11892
11893 This filter use field-dominance information in frame to decide which
11894 of each pair of fields to place first in the output.
11895 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
11896
11897 @section setdar, setsar
11898
11899 The @code{setdar} filter sets the Display Aspect Ratio for the filter
11900 output video.
11901
11902 This is done by changing the specified Sample (aka Pixel) Aspect
11903 Ratio, according to the following equation:
11904 @example
11905 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
11906 @end example
11907
11908 Keep in mind that the @code{setdar} filter does not modify the pixel
11909 dimensions of the video frame. Also, the display aspect ratio set by
11910 this filter may be changed by later filters in the filterchain,
11911 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
11912 applied.
11913
11914 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
11915 the filter output video.
11916
11917 Note that as a consequence of the application of this filter, the
11918 output display aspect ratio will change according to the equation
11919 above.
11920
11921 Keep in mind that the sample aspect ratio set by the @code{setsar}
11922 filter may be changed by later filters in the filterchain, e.g. if
11923 another "setsar" or a "setdar" filter is applied.
11924
11925 It accepts the following parameters:
11926
11927 @table @option
11928 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
11929 Set the aspect ratio used by the filter.
11930
11931 The parameter can be a floating point number string, an expression, or
11932 a string of the form @var{num}:@var{den}, where @var{num} and
11933 @var{den} are the numerator and denominator of the aspect ratio. If
11934 the parameter is not specified, it is assumed the value "0".
11935 In case the form "@var{num}:@var{den}" is used, the @code{:} character
11936 should be escaped.
11937
11938 @item max
11939 Set the maximum integer value to use for expressing numerator and
11940 denominator when reducing the expressed aspect ratio to a rational.
11941 Default value is @code{100}.
11942
11943 @end table
11944
11945 The parameter @var{sar} is an expression containing
11946 the following constants:
11947
11948 @table @option
11949 @item E, PI, PHI
11950 These are approximated values for the mathematical constants e
11951 (Euler's number), pi (Greek pi), and phi (the golden ratio).
11952
11953 @item w, h
11954 The input width and height.
11955
11956 @item a
11957 These are the same as @var{w} / @var{h}.
11958
11959 @item sar
11960 The input sample aspect ratio.
11961
11962 @item dar
11963 The input display aspect ratio. It is the same as
11964 (@var{w} / @var{h}) * @var{sar}.
11965
11966 @item hsub, vsub
11967 Horizontal and vertical chroma subsample values. For example, for the
11968 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11969 @end table
11970
11971 @subsection Examples
11972
11973 @itemize
11974
11975 @item
11976 To change the display aspect ratio to 16:9, specify one of the following:
11977 @example
11978 setdar=dar=1.77777
11979 setdar=dar=16/9
11980 @end example
11981
11982 @item
11983 To change the sample aspect ratio to 10:11, specify:
11984 @example
11985 setsar=sar=10/11
11986 @end example
11987
11988 @item
11989 To set a display aspect ratio of 16:9, and specify a maximum integer value of
11990 1000 in the aspect ratio reduction, use the command:
11991 @example
11992 setdar=ratio=16/9:max=1000
11993 @end example
11994
11995 @end itemize
11996
11997 @anchor{setfield}
11998 @section setfield
11999
12000 Force field for the output video frame.
12001
12002 The @code{setfield} filter marks the interlace type field for the
12003 output frames. It does not change the input frame, but only sets the
12004 corresponding property, which affects how the frame is treated by
12005 following filters (e.g. @code{fieldorder} or @code{yadif}).
12006
12007 The filter accepts the following options:
12008
12009 @table @option
12010
12011 @item mode
12012 Available values are:
12013
12014 @table @samp
12015 @item auto
12016 Keep the same field property.
12017
12018 @item bff
12019 Mark the frame as bottom-field-first.
12020
12021 @item tff
12022 Mark the frame as top-field-first.
12023
12024 @item prog
12025 Mark the frame as progressive.
12026 @end table
12027 @end table
12028
12029 @section showinfo
12030
12031 Show a line containing various information for each input video frame.
12032 The input video is not modified.
12033
12034 The shown line contains a sequence of key/value pairs of the form
12035 @var{key}:@var{value}.
12036
12037 The following values are shown in the output:
12038
12039 @table @option
12040 @item n
12041 The (sequential) number of the input frame, starting from 0.
12042
12043 @item pts
12044 The Presentation TimeStamp of the input frame, expressed as a number of
12045 time base units. The time base unit depends on the filter input pad.
12046
12047 @item pts_time
12048 The Presentation TimeStamp of the input frame, expressed as a number of
12049 seconds.
12050
12051 @item pos
12052 The position of the frame in the input stream, or -1 if this information is
12053 unavailable and/or meaningless (for example in case of synthetic video).
12054
12055 @item fmt
12056 The pixel format name.
12057
12058 @item sar
12059 The sample aspect ratio of the input frame, expressed in the form
12060 @var{num}/@var{den}.
12061
12062 @item s
12063 The size of the input frame. For the syntax of this option, check the
12064 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12065
12066 @item i
12067 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
12068 for bottom field first).
12069
12070 @item iskey
12071 This is 1 if the frame is a key frame, 0 otherwise.
12072
12073 @item type
12074 The picture type of the input frame ("I" for an I-frame, "P" for a
12075 P-frame, "B" for a B-frame, or "?" for an unknown type).
12076 Also refer to the documentation of the @code{AVPictureType} enum and of
12077 the @code{av_get_picture_type_char} function defined in
12078 @file{libavutil/avutil.h}.
12079
12080 @item checksum
12081 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
12082
12083 @item plane_checksum
12084 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
12085 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
12086 @end table
12087
12088 @section showpalette
12089
12090 Displays the 256 colors palette of each frame. This filter is only relevant for
12091 @var{pal8} pixel format frames.
12092
12093 It accepts the following option:
12094
12095 @table @option
12096 @item s
12097 Set the size of the box used to represent one palette color entry. Default is
12098 @code{30} (for a @code{30x30} pixel box).
12099 @end table
12100
12101 @section shuffleframes
12102
12103 Reorder and/or duplicate video frames.
12104
12105 It accepts the following parameters:
12106
12107 @table @option
12108 @item mapping
12109 Set the destination indexes of input frames.
12110 This is space or '|' separated list of indexes that maps input frames to output
12111 frames. Number of indexes also sets maximal value that each index may have.
12112 @end table
12113
12114 The first frame has the index 0. The default is to keep the input unchanged.
12115
12116 Swap second and third frame of every three frames of the input:
12117 @example
12118 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
12119 @end example
12120
12121 @section shuffleplanes
12122
12123 Reorder and/or duplicate video planes.
12124
12125 It accepts the following parameters:
12126
12127 @table @option
12128
12129 @item map0
12130 The index of the input plane to be used as the first output plane.
12131
12132 @item map1
12133 The index of the input plane to be used as the second output plane.
12134
12135 @item map2
12136 The index of the input plane to be used as the third output plane.
12137
12138 @item map3
12139 The index of the input plane to be used as the fourth output plane.
12140
12141 @end table
12142
12143 The first plane has the index 0. The default is to keep the input unchanged.
12144
12145 Swap the second and third planes of the input:
12146 @example
12147 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
12148 @end example
12149
12150 @anchor{signalstats}
12151 @section signalstats
12152 Evaluate various visual metrics that assist in determining issues associated
12153 with the digitization of analog video media.
12154
12155 By default the filter will log these metadata values:
12156
12157 @table @option
12158 @item YMIN
12159 Display the minimal Y value contained within the input frame. Expressed in
12160 range of [0-255].
12161
12162 @item YLOW
12163 Display the Y value at the 10% percentile within the input frame. Expressed in
12164 range of [0-255].
12165
12166 @item YAVG
12167 Display the average Y value within the input frame. Expressed in range of
12168 [0-255].
12169
12170 @item YHIGH
12171 Display the Y value at the 90% percentile within the input frame. Expressed in
12172 range of [0-255].
12173
12174 @item YMAX
12175 Display the maximum Y value contained within the input frame. Expressed in
12176 range of [0-255].
12177
12178 @item UMIN
12179 Display the minimal U value contained within the input frame. Expressed in
12180 range of [0-255].
12181
12182 @item ULOW
12183 Display the U value at the 10% percentile within the input frame. Expressed in
12184 range of [0-255].
12185
12186 @item UAVG
12187 Display the average U value within the input frame. Expressed in range of
12188 [0-255].
12189
12190 @item UHIGH
12191 Display the U value at the 90% percentile within the input frame. Expressed in
12192 range of [0-255].
12193
12194 @item UMAX
12195 Display the maximum U value contained within the input frame. Expressed in
12196 range of [0-255].
12197
12198 @item VMIN
12199 Display the minimal V value contained within the input frame. Expressed in
12200 range of [0-255].
12201
12202 @item VLOW
12203 Display the V value at the 10% percentile within the input frame. Expressed in
12204 range of [0-255].
12205
12206 @item VAVG
12207 Display the average V value within the input frame. Expressed in range of
12208 [0-255].
12209
12210 @item VHIGH
12211 Display the V value at the 90% percentile within the input frame. Expressed in
12212 range of [0-255].
12213
12214 @item VMAX
12215 Display the maximum V value contained within the input frame. Expressed in
12216 range of [0-255].
12217
12218 @item SATMIN
12219 Display the minimal saturation value contained within the input frame.
12220 Expressed in range of [0-~181.02].
12221
12222 @item SATLOW
12223 Display the saturation value at the 10% percentile within the input frame.
12224 Expressed in range of [0-~181.02].
12225
12226 @item SATAVG
12227 Display the average saturation value within the input frame. Expressed in range
12228 of [0-~181.02].
12229
12230 @item SATHIGH
12231 Display the saturation value at the 90% percentile within the input frame.
12232 Expressed in range of [0-~181.02].
12233
12234 @item SATMAX
12235 Display the maximum saturation value contained within the input frame.
12236 Expressed in range of [0-~181.02].
12237
12238 @item HUEMED
12239 Display the median value for hue within the input frame. Expressed in range of
12240 [0-360].
12241
12242 @item HUEAVG
12243 Display the average value for hue within the input frame. Expressed in range of
12244 [0-360].
12245
12246 @item YDIF
12247 Display the average of sample value difference between all values of the Y
12248 plane in the current frame and corresponding values of the previous input frame.
12249 Expressed in range of [0-255].
12250
12251 @item UDIF
12252 Display the average of sample value difference between all values of the U
12253 plane in the current frame and corresponding values of the previous input frame.
12254 Expressed in range of [0-255].
12255
12256 @item VDIF
12257 Display the average of sample value difference between all values of the V
12258 plane in the current frame and corresponding values of the previous input frame.
12259 Expressed in range of [0-255].
12260
12261 @item YBITDEPTH
12262 Display bit depth of Y plane in current frame.
12263 Expressed in range of [0-16].
12264
12265 @item UBITDEPTH
12266 Display bit depth of U plane in current frame.
12267 Expressed in range of [0-16].
12268
12269 @item VBITDEPTH
12270 Display bit depth of V plane in current frame.
12271 Expressed in range of [0-16].
12272 @end table
12273
12274 The filter accepts the following options:
12275
12276 @table @option
12277 @item stat
12278 @item out
12279
12280 @option{stat} specify an additional form of image analysis.
12281 @option{out} output video with the specified type of pixel highlighted.
12282
12283 Both options accept the following values:
12284
12285 @table @samp
12286 @item tout
12287 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
12288 unlike the neighboring pixels of the same field. Examples of temporal outliers
12289 include the results of video dropouts, head clogs, or tape tracking issues.
12290
12291 @item vrep
12292 Identify @var{vertical line repetition}. Vertical line repetition includes
12293 similar rows of pixels within a frame. In born-digital video vertical line
12294 repetition is common, but this pattern is uncommon in video digitized from an
12295 analog source. When it occurs in video that results from the digitization of an
12296 analog source it can indicate concealment from a dropout compensator.
12297
12298 @item brng
12299 Identify pixels that fall outside of legal broadcast range.
12300 @end table
12301
12302 @item color, c
12303 Set the highlight color for the @option{out} option. The default color is
12304 yellow.
12305 @end table
12306
12307 @subsection Examples
12308
12309 @itemize
12310 @item
12311 Output data of various video metrics:
12312 @example
12313 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
12314 @end example
12315
12316 @item
12317 Output specific data about the minimum and maximum values of the Y plane per frame:
12318 @example
12319 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
12320 @end example
12321
12322 @item
12323 Playback video while highlighting pixels that are outside of broadcast range in red.
12324 @example
12325 ffplay example.mov -vf signalstats="out=brng:color=red"
12326 @end example
12327
12328 @item
12329 Playback video with signalstats metadata drawn over the frame.
12330 @example
12331 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12332 @end example
12333
12334 The contents of signalstat_drawtext.txt used in the command are:
12335 @example
12336 time %@{pts:hms@}
12337 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12338 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12339 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12340 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12341
12342 @end example
12343 @end itemize
12344
12345 @anchor{smartblur}
12346 @section smartblur
12347
12348 Blur the input video without impacting the outlines.
12349
12350 It accepts the following options:
12351
12352 @table @option
12353 @item luma_radius, lr
12354 Set the luma radius. The option value must be a float number in
12355 the range [0.1,5.0] that specifies the variance of the gaussian filter
12356 used to blur the image (slower if larger). Default value is 1.0.
12357
12358 @item luma_strength, ls
12359 Set the luma strength. The option value must be a float number
12360 in the range [-1.0,1.0] that configures the blurring. A value included
12361 in [0.0,1.0] will blur the image whereas a value included in
12362 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12363
12364 @item luma_threshold, lt
12365 Set the luma threshold used as a coefficient to determine
12366 whether a pixel should be blurred or not. The option value must be an
12367 integer in the range [-30,30]. A value of 0 will filter all the image,
12368 a value included in [0,30] will filter flat areas and a value included
12369 in [-30,0] will filter edges. Default value is 0.
12370
12371 @item chroma_radius, cr
12372 Set the chroma radius. The option value must be a float number in
12373 the range [0.1,5.0] that specifies the variance of the gaussian filter
12374 used to blur the image (slower if larger). Default value is 1.0.
12375
12376 @item chroma_strength, cs
12377 Set the chroma strength. The option value must be a float number
12378 in the range [-1.0,1.0] that configures the blurring. A value included
12379 in [0.0,1.0] will blur the image whereas a value included in
12380 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12381
12382 @item chroma_threshold, ct
12383 Set the chroma threshold used as a coefficient to determine
12384 whether a pixel should be blurred or not. The option value must be an
12385 integer in the range [-30,30]. A value of 0 will filter all the image,
12386 a value included in [0,30] will filter flat areas and a value included
12387 in [-30,0] will filter edges. Default value is 0.
12388 @end table
12389
12390 If a chroma option is not explicitly set, the corresponding luma value
12391 is set.
12392
12393 @section ssim
12394
12395 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12396
12397 This filter takes in input two input videos, the first input is
12398 considered the "main" source and is passed unchanged to the
12399 output. The second input is used as a "reference" video for computing
12400 the SSIM.
12401
12402 Both video inputs must have the same resolution and pixel format for
12403 this filter to work correctly. Also it assumes that both inputs
12404 have the same number of frames, which are compared one by one.
12405
12406 The filter stores the calculated SSIM of each frame.
12407
12408 The description of the accepted parameters follows.
12409
12410 @table @option
12411 @item stats_file, f
12412 If specified the filter will use the named file to save the SSIM of
12413 each individual frame. When filename equals "-" the data is sent to
12414 standard output.
12415 @end table
12416
12417 The file printed if @var{stats_file} is selected, contains a sequence of
12418 key/value pairs of the form @var{key}:@var{value} for each compared
12419 couple of frames.
12420
12421 A description of each shown parameter follows:
12422
12423 @table @option
12424 @item n
12425 sequential number of the input frame, starting from 1
12426
12427 @item Y, U, V, R, G, B
12428 SSIM of the compared frames for the component specified by the suffix.
12429
12430 @item All
12431 SSIM of the compared frames for the whole frame.
12432
12433 @item dB
12434 Same as above but in dB representation.
12435 @end table
12436
12437 For example:
12438 @example
12439 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12440 [main][ref] ssim="stats_file=stats.log" [out]
12441 @end example
12442
12443 On this example the input file being processed is compared with the
12444 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12445 is stored in @file{stats.log}.
12446
12447 Another example with both psnr and ssim at same time:
12448 @example
12449 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12450 @end example
12451
12452 @section stereo3d
12453
12454 Convert between different stereoscopic image formats.
12455
12456 The filters accept the following options:
12457
12458 @table @option
12459 @item in
12460 Set stereoscopic image format of input.
12461
12462 Available values for input image formats are:
12463 @table @samp
12464 @item sbsl
12465 side by side parallel (left eye left, right eye right)
12466
12467 @item sbsr
12468 side by side crosseye (right eye left, left eye right)
12469
12470 @item sbs2l
12471 side by side parallel with half width resolution
12472 (left eye left, right eye right)
12473
12474 @item sbs2r
12475 side by side crosseye with half width resolution
12476 (right eye left, left eye right)
12477
12478 @item abl
12479 above-below (left eye above, right eye below)
12480
12481 @item abr
12482 above-below (right eye above, left eye below)
12483
12484 @item ab2l
12485 above-below with half height resolution
12486 (left eye above, right eye below)
12487
12488 @item ab2r
12489 above-below with half height resolution
12490 (right eye above, left eye below)
12491
12492 @item al
12493 alternating frames (left eye first, right eye second)
12494
12495 @item ar
12496 alternating frames (right eye first, left eye second)
12497
12498 @item irl
12499 interleaved rows (left eye has top row, right eye starts on next row)
12500
12501 @item irr
12502 interleaved rows (right eye has top row, left eye starts on next row)
12503
12504 @item icl
12505 interleaved columns, left eye first
12506
12507 @item icr
12508 interleaved columns, right eye first
12509
12510 Default value is @samp{sbsl}.
12511 @end table
12512
12513 @item out
12514 Set stereoscopic image format of output.
12515
12516 @table @samp
12517 @item sbsl
12518 side by side parallel (left eye left, right eye right)
12519
12520 @item sbsr
12521 side by side crosseye (right eye left, left eye right)
12522
12523 @item sbs2l
12524 side by side parallel with half width resolution
12525 (left eye left, right eye right)
12526
12527 @item sbs2r
12528 side by side crosseye with half width resolution
12529 (right eye left, left eye right)
12530
12531 @item abl
12532 above-below (left eye above, right eye below)
12533
12534 @item abr
12535 above-below (right eye above, left eye below)
12536
12537 @item ab2l
12538 above-below with half height resolution
12539 (left eye above, right eye below)
12540
12541 @item ab2r
12542 above-below with half height resolution
12543 (right eye above, left eye below)
12544
12545 @item al
12546 alternating frames (left eye first, right eye second)
12547
12548 @item ar
12549 alternating frames (right eye first, left eye second)
12550
12551 @item irl
12552 interleaved rows (left eye has top row, right eye starts on next row)
12553
12554 @item irr
12555 interleaved rows (right eye has top row, left eye starts on next row)
12556
12557 @item arbg
12558 anaglyph red/blue gray
12559 (red filter on left eye, blue filter on right eye)
12560
12561 @item argg
12562 anaglyph red/green gray
12563 (red filter on left eye, green filter on right eye)
12564
12565 @item arcg
12566 anaglyph red/cyan gray
12567 (red filter on left eye, cyan filter on right eye)
12568
12569 @item arch
12570 anaglyph red/cyan half colored
12571 (red filter on left eye, cyan filter on right eye)
12572
12573 @item arcc
12574 anaglyph red/cyan color
12575 (red filter on left eye, cyan filter on right eye)
12576
12577 @item arcd
12578 anaglyph red/cyan color optimized with the least squares projection of dubois
12579 (red filter on left eye, cyan filter on right eye)
12580
12581 @item agmg
12582 anaglyph green/magenta gray
12583 (green filter on left eye, magenta filter on right eye)
12584
12585 @item agmh
12586 anaglyph green/magenta half colored
12587 (green filter on left eye, magenta filter on right eye)
12588
12589 @item agmc
12590 anaglyph green/magenta colored
12591 (green filter on left eye, magenta filter on right eye)
12592
12593 @item agmd
12594 anaglyph green/magenta color optimized with the least squares projection of dubois
12595 (green filter on left eye, magenta filter on right eye)
12596
12597 @item aybg
12598 anaglyph yellow/blue gray
12599 (yellow filter on left eye, blue filter on right eye)
12600
12601 @item aybh
12602 anaglyph yellow/blue half colored
12603 (yellow filter on left eye, blue filter on right eye)
12604
12605 @item aybc
12606 anaglyph yellow/blue colored
12607 (yellow filter on left eye, blue filter on right eye)
12608
12609 @item aybd
12610 anaglyph yellow/blue color optimized with the least squares projection of dubois
12611 (yellow filter on left eye, blue filter on right eye)
12612
12613 @item ml
12614 mono output (left eye only)
12615
12616 @item mr
12617 mono output (right eye only)
12618
12619 @item chl
12620 checkerboard, left eye first
12621
12622 @item chr
12623 checkerboard, right eye first
12624
12625 @item icl
12626 interleaved columns, left eye first
12627
12628 @item icr
12629 interleaved columns, right eye first
12630
12631 @item hdmi
12632 HDMI frame pack
12633 @end table
12634
12635 Default value is @samp{arcd}.
12636 @end table
12637
12638 @subsection Examples
12639
12640 @itemize
12641 @item
12642 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12643 @example
12644 stereo3d=sbsl:aybd
12645 @end example
12646
12647 @item
12648 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12649 @example
12650 stereo3d=abl:sbsr
12651 @end example
12652 @end itemize
12653
12654 @section streamselect, astreamselect
12655 Select video or audio streams.
12656
12657 The filter accepts the following options:
12658
12659 @table @option
12660 @item inputs
12661 Set number of inputs. Default is 2.
12662
12663 @item map
12664 Set input indexes to remap to outputs.
12665 @end table
12666
12667 @subsection Commands
12668
12669 The @code{streamselect} and @code{astreamselect} filter supports the following
12670 commands:
12671
12672 @table @option
12673 @item map
12674 Set input indexes to remap to outputs.
12675 @end table
12676
12677 @subsection Examples
12678
12679 @itemize
12680 @item
12681 Select first 5 seconds 1st stream and rest of time 2nd stream:
12682 @example
12683 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12684 @end example
12685
12686 @item
12687 Same as above, but for audio:
12688 @example
12689 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12690 @end example
12691 @end itemize
12692
12693 @anchor{spp}
12694 @section spp
12695
12696 Apply a simple postprocessing filter that compresses and decompresses the image
12697 at several (or - in the case of @option{quality} level @code{6} - all) shifts
12698 and average the results.
12699
12700 The filter accepts the following options:
12701
12702 @table @option
12703 @item quality
12704 Set quality. This option defines the number of levels for averaging. It accepts
12705 an integer in the range 0-6. If set to @code{0}, the filter will have no
12706 effect. A value of @code{6} means the higher quality. For each increment of
12707 that value the speed drops by a factor of approximately 2.  Default value is
12708 @code{3}.
12709
12710 @item qp
12711 Force a constant quantization parameter. If not set, the filter will use the QP
12712 from the video stream (if available).
12713
12714 @item mode
12715 Set thresholding mode. Available modes are:
12716
12717 @table @samp
12718 @item hard
12719 Set hard thresholding (default).
12720 @item soft
12721 Set soft thresholding (better de-ringing effect, but likely blurrier).
12722 @end table
12723
12724 @item use_bframe_qp
12725 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12726 option may cause flicker since the B-Frames have often larger QP. Default is
12727 @code{0} (not enabled).
12728 @end table
12729
12730 @anchor{subtitles}
12731 @section subtitles
12732
12733 Draw subtitles on top of input video using the libass library.
12734
12735 To enable compilation of this filter you need to configure FFmpeg with
12736 @code{--enable-libass}. This filter also requires a build with libavcodec and
12737 libavformat to convert the passed subtitles file to ASS (Advanced Substation
12738 Alpha) subtitles format.
12739
12740 The filter accepts the following options:
12741
12742 @table @option
12743 @item filename, f
12744 Set the filename of the subtitle file to read. It must be specified.
12745
12746 @item original_size
12747 Specify the size of the original video, the video for which the ASS file
12748 was composed. For the syntax of this option, check the
12749 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12750 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
12751 correctly scale the fonts if the aspect ratio has been changed.
12752
12753 @item fontsdir
12754 Set a directory path containing fonts that can be used by the filter.
12755 These fonts will be used in addition to whatever the font provider uses.
12756
12757 @item charenc
12758 Set subtitles input character encoding. @code{subtitles} filter only. Only
12759 useful if not UTF-8.
12760
12761 @item stream_index, si
12762 Set subtitles stream index. @code{subtitles} filter only.
12763
12764 @item force_style
12765 Override default style or script info parameters of the subtitles. It accepts a
12766 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
12767 @end table
12768
12769 If the first key is not specified, it is assumed that the first value
12770 specifies the @option{filename}.
12771
12772 For example, to render the file @file{sub.srt} on top of the input
12773 video, use the command:
12774 @example
12775 subtitles=sub.srt
12776 @end example
12777
12778 which is equivalent to:
12779 @example
12780 subtitles=filename=sub.srt
12781 @end example
12782
12783 To render the default subtitles stream from file @file{video.mkv}, use:
12784 @example
12785 subtitles=video.mkv
12786 @end example
12787
12788 To render the second subtitles stream from that file, use:
12789 @example
12790 subtitles=video.mkv:si=1
12791 @end example
12792
12793 To make the subtitles stream from @file{sub.srt} appear in transparent green
12794 @code{DejaVu Serif}, use:
12795 @example
12796 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
12797 @end example
12798
12799 @section super2xsai
12800
12801 Scale the input by 2x and smooth using the Super2xSaI (Scale and
12802 Interpolate) pixel art scaling algorithm.
12803
12804 Useful for enlarging pixel art images without reducing sharpness.
12805
12806 @section swaprect
12807
12808 Swap two rectangular objects in video.
12809
12810 This filter accepts the following options:
12811
12812 @table @option
12813 @item w
12814 Set object width.
12815
12816 @item h
12817 Set object height.
12818
12819 @item x1
12820 Set 1st rect x coordinate.
12821
12822 @item y1
12823 Set 1st rect y coordinate.
12824
12825 @item x2
12826 Set 2nd rect x coordinate.
12827
12828 @item y2
12829 Set 2nd rect y coordinate.
12830
12831 All expressions are evaluated once for each frame.
12832 @end table
12833
12834 The all options are expressions containing the following constants:
12835
12836 @table @option
12837 @item w
12838 @item h
12839 The input width and height.
12840
12841 @item a
12842 same as @var{w} / @var{h}
12843
12844 @item sar
12845 input sample aspect ratio
12846
12847 @item dar
12848 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
12849
12850 @item n
12851 The number of the input frame, starting from 0.
12852
12853 @item t
12854 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
12855
12856 @item pos
12857 the position in the file of the input frame, NAN if unknown
12858 @end table
12859
12860 @section swapuv
12861 Swap U & V plane.
12862
12863 @section telecine
12864
12865 Apply telecine process to the video.
12866
12867 This filter accepts the following options:
12868
12869 @table @option
12870 @item first_field
12871 @table @samp
12872 @item top, t
12873 top field first
12874 @item bottom, b
12875 bottom field first
12876 The default value is @code{top}.
12877 @end table
12878
12879 @item pattern
12880 A string of numbers representing the pulldown pattern you wish to apply.
12881 The default value is @code{23}.
12882 @end table
12883
12884 @example
12885 Some typical patterns:
12886
12887 NTSC output (30i):
12888 27.5p: 32222
12889 24p: 23 (classic)
12890 24p: 2332 (preferred)
12891 20p: 33
12892 18p: 334
12893 16p: 3444
12894
12895 PAL output (25i):
12896 27.5p: 12222
12897 24p: 222222222223 ("Euro pulldown")
12898 16.67p: 33
12899 16p: 33333334
12900 @end example
12901
12902 @section thumbnail
12903 Select the most representative frame in a given sequence of consecutive frames.
12904
12905 The filter accepts the following options:
12906
12907 @table @option
12908 @item n
12909 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
12910 will pick one of them, and then handle the next batch of @var{n} frames until
12911 the end. Default is @code{100}.
12912 @end table
12913
12914 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
12915 value will result in a higher memory usage, so a high value is not recommended.
12916
12917 @subsection Examples
12918
12919 @itemize
12920 @item
12921 Extract one picture each 50 frames:
12922 @example
12923 thumbnail=50
12924 @end example
12925
12926 @item
12927 Complete example of a thumbnail creation with @command{ffmpeg}:
12928 @example
12929 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
12930 @end example
12931 @end itemize
12932
12933 @section tile
12934
12935 Tile several successive frames together.
12936
12937 The filter accepts the following options:
12938
12939 @table @option
12940
12941 @item layout
12942 Set the grid size (i.e. the number of lines and columns). For the syntax of
12943 this option, check the
12944 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12945
12946 @item nb_frames
12947 Set the maximum number of frames to render in the given area. It must be less
12948 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
12949 the area will be used.
12950
12951 @item margin
12952 Set the outer border margin in pixels.
12953
12954 @item padding
12955 Set the inner border thickness (i.e. the number of pixels between frames). For
12956 more advanced padding options (such as having different values for the edges),
12957 refer to the pad video filter.
12958
12959 @item color
12960 Specify the color of the unused area. For the syntax of this option, check the
12961 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
12962 is "black".
12963 @end table
12964
12965 @subsection Examples
12966
12967 @itemize
12968 @item
12969 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
12970 @example
12971 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
12972 @end example
12973 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
12974 duplicating each output frame to accommodate the originally detected frame
12975 rate.
12976
12977 @item
12978 Display @code{5} pictures in an area of @code{3x2} frames,
12979 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
12980 mixed flat and named options:
12981 @example
12982 tile=3x2:nb_frames=5:padding=7:margin=2
12983 @end example
12984 @end itemize
12985
12986 @section tinterlace
12987
12988 Perform various types of temporal field interlacing.
12989
12990 Frames are counted starting from 1, so the first input frame is
12991 considered odd.
12992
12993 The filter accepts the following options:
12994
12995 @table @option
12996
12997 @item mode
12998 Specify the mode of the interlacing. This option can also be specified
12999 as a value alone. See below for a list of values for this option.
13000
13001 Available values are:
13002
13003 @table @samp
13004 @item merge, 0
13005 Move odd frames into the upper field, even into the lower field,
13006 generating a double height frame at half frame rate.
13007 @example
13008  ------> time
13009 Input:
13010 Frame 1         Frame 2         Frame 3         Frame 4
13011
13012 11111           22222           33333           44444
13013 11111           22222           33333           44444
13014 11111           22222           33333           44444
13015 11111           22222           33333           44444
13016
13017 Output:
13018 11111                           33333
13019 22222                           44444
13020 11111                           33333
13021 22222                           44444
13022 11111                           33333
13023 22222                           44444
13024 11111                           33333
13025 22222                           44444
13026 @end example
13027
13028 @item drop_even, 1
13029 Only output odd frames, even frames are dropped, generating a frame with
13030 unchanged height at half frame rate.
13031
13032 @example
13033  ------> time
13034 Input:
13035 Frame 1         Frame 2         Frame 3         Frame 4
13036
13037 11111           22222           33333           44444
13038 11111           22222           33333           44444
13039 11111           22222           33333           44444
13040 11111           22222           33333           44444
13041
13042 Output:
13043 11111                           33333
13044 11111                           33333
13045 11111                           33333
13046 11111                           33333
13047 @end example
13048
13049 @item drop_odd, 2
13050 Only output even frames, odd frames are dropped, generating a frame with
13051 unchanged height at half frame rate.
13052
13053 @example
13054  ------> time
13055 Input:
13056 Frame 1         Frame 2         Frame 3         Frame 4
13057
13058 11111           22222           33333           44444
13059 11111           22222           33333           44444
13060 11111           22222           33333           44444
13061 11111           22222           33333           44444
13062
13063 Output:
13064                 22222                           44444
13065                 22222                           44444
13066                 22222                           44444
13067                 22222                           44444
13068 @end example
13069
13070 @item pad, 3
13071 Expand each frame to full height, but pad alternate lines with black,
13072 generating a frame with double height at the same input frame rate.
13073
13074 @example
13075  ------> time
13076 Input:
13077 Frame 1         Frame 2         Frame 3         Frame 4
13078
13079 11111           22222           33333           44444
13080 11111           22222           33333           44444
13081 11111           22222           33333           44444
13082 11111           22222           33333           44444
13083
13084 Output:
13085 11111           .....           33333           .....
13086 .....           22222           .....           44444
13087 11111           .....           33333           .....
13088 .....           22222           .....           44444
13089 11111           .....           33333           .....
13090 .....           22222           .....           44444
13091 11111           .....           33333           .....
13092 .....           22222           .....           44444
13093 @end example
13094
13095
13096 @item interleave_top, 4
13097 Interleave the upper field from odd frames with the lower field from
13098 even frames, generating a frame with unchanged height at half frame rate.
13099
13100 @example
13101  ------> time
13102 Input:
13103 Frame 1         Frame 2         Frame 3         Frame 4
13104
13105 11111<-         22222           33333<-         44444
13106 11111           22222<-         33333           44444<-
13107 11111<-         22222           33333<-         44444
13108 11111           22222<-         33333           44444<-
13109
13110 Output:
13111 11111                           33333
13112 22222                           44444
13113 11111                           33333
13114 22222                           44444
13115 @end example
13116
13117
13118 @item interleave_bottom, 5
13119 Interleave the lower field from odd frames with the upper field from
13120 even frames, generating a frame with unchanged height at half frame rate.
13121
13122 @example
13123  ------> time
13124 Input:
13125 Frame 1         Frame 2         Frame 3         Frame 4
13126
13127 11111           22222<-         33333           44444<-
13128 11111<-         22222           33333<-         44444
13129 11111           22222<-         33333           44444<-
13130 11111<-         22222           33333<-         44444
13131
13132 Output:
13133 22222                           44444
13134 11111                           33333
13135 22222                           44444
13136 11111                           33333
13137 @end example
13138
13139
13140 @item interlacex2, 6
13141 Double frame rate with unchanged height. Frames are inserted each
13142 containing the second temporal field from the previous input frame and
13143 the first temporal field from the next input frame. This mode relies on
13144 the top_field_first flag. Useful for interlaced video displays with no
13145 field synchronisation.
13146
13147 @example
13148  ------> time
13149 Input:
13150 Frame 1         Frame 2         Frame 3         Frame 4
13151
13152 11111           22222           33333           44444
13153  11111           22222           33333           44444
13154 11111           22222           33333           44444
13155  11111           22222           33333           44444
13156
13157 Output:
13158 11111   22222   22222   33333   33333   44444   44444
13159  11111   11111   22222   22222   33333   33333   44444
13160 11111   22222   22222   33333   33333   44444   44444
13161  11111   11111   22222   22222   33333   33333   44444
13162 @end example
13163
13164
13165 @item mergex2, 7
13166 Move odd frames into the upper field, even into the lower field,
13167 generating a double height frame at same frame rate.
13168
13169 @example
13170  ------> time
13171 Input:
13172 Frame 1         Frame 2         Frame 3         Frame 4
13173
13174 11111           22222           33333           44444
13175 11111           22222           33333           44444
13176 11111           22222           33333           44444
13177 11111           22222           33333           44444
13178
13179 Output:
13180 11111           33333           33333           55555
13181 22222           22222           44444           44444
13182 11111           33333           33333           55555
13183 22222           22222           44444           44444
13184 11111           33333           33333           55555
13185 22222           22222           44444           44444
13186 11111           33333           33333           55555
13187 22222           22222           44444           44444
13188 @end example
13189
13190 @end table
13191
13192 Numeric values are deprecated but are accepted for backward
13193 compatibility reasons.
13194
13195 Default mode is @code{merge}.
13196
13197 @item flags
13198 Specify flags influencing the filter process.
13199
13200 Available value for @var{flags} is:
13201
13202 @table @option
13203 @item low_pass_filter, vlfp
13204 Enable vertical low-pass filtering in the filter.
13205 Vertical low-pass filtering is required when creating an interlaced
13206 destination from a progressive source which contains high-frequency
13207 vertical detail. Filtering will reduce interlace 'twitter' and Moire
13208 patterning.
13209
13210 Vertical low-pass filtering can only be enabled for @option{mode}
13211 @var{interleave_top} and @var{interleave_bottom}.
13212
13213 @end table
13214 @end table
13215
13216 @section transpose
13217
13218 Transpose rows with columns in the input video and optionally flip it.
13219
13220 It accepts the following parameters:
13221
13222 @table @option
13223
13224 @item dir
13225 Specify the transposition direction.
13226
13227 Can assume the following values:
13228 @table @samp
13229 @item 0, 4, cclock_flip
13230 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
13231 @example
13232 L.R     L.l
13233 . . ->  . .
13234 l.r     R.r
13235 @end example
13236
13237 @item 1, 5, clock
13238 Rotate by 90 degrees clockwise, that is:
13239 @example
13240 L.R     l.L
13241 . . ->  . .
13242 l.r     r.R
13243 @end example
13244
13245 @item 2, 6, cclock
13246 Rotate by 90 degrees counterclockwise, that is:
13247 @example
13248 L.R     R.r
13249 . . ->  . .
13250 l.r     L.l
13251 @end example
13252
13253 @item 3, 7, clock_flip
13254 Rotate by 90 degrees clockwise and vertically flip, that is:
13255 @example
13256 L.R     r.R
13257 . . ->  . .
13258 l.r     l.L
13259 @end example
13260 @end table
13261
13262 For values between 4-7, the transposition is only done if the input
13263 video geometry is portrait and not landscape. These values are
13264 deprecated, the @code{passthrough} option should be used instead.
13265
13266 Numerical values are deprecated, and should be dropped in favor of
13267 symbolic constants.
13268
13269 @item passthrough
13270 Do not apply the transposition if the input geometry matches the one
13271 specified by the specified value. It accepts the following values:
13272 @table @samp
13273 @item none
13274 Always apply transposition.
13275 @item portrait
13276 Preserve portrait geometry (when @var{height} >= @var{width}).
13277 @item landscape
13278 Preserve landscape geometry (when @var{width} >= @var{height}).
13279 @end table
13280
13281 Default value is @code{none}.
13282 @end table
13283
13284 For example to rotate by 90 degrees clockwise and preserve portrait
13285 layout:
13286 @example
13287 transpose=dir=1:passthrough=portrait
13288 @end example
13289
13290 The command above can also be specified as:
13291 @example
13292 transpose=1:portrait
13293 @end example
13294
13295 @section trim
13296 Trim the input so that the output contains one continuous subpart of the input.
13297
13298 It accepts the following parameters:
13299 @table @option
13300 @item start
13301 Specify the time of the start of the kept section, i.e. the frame with the
13302 timestamp @var{start} will be the first frame in the output.
13303
13304 @item end
13305 Specify the time of the first frame that will be dropped, i.e. the frame
13306 immediately preceding the one with the timestamp @var{end} will be the last
13307 frame in the output.
13308
13309 @item start_pts
13310 This is the same as @var{start}, except this option sets the start timestamp
13311 in timebase units instead of seconds.
13312
13313 @item end_pts
13314 This is the same as @var{end}, except this option sets the end timestamp
13315 in timebase units instead of seconds.
13316
13317 @item duration
13318 The maximum duration of the output in seconds.
13319
13320 @item start_frame
13321 The number of the first frame that should be passed to the output.
13322
13323 @item end_frame
13324 The number of the first frame that should be dropped.
13325 @end table
13326
13327 @option{start}, @option{end}, and @option{duration} are expressed as time
13328 duration specifications; see
13329 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13330 for the accepted syntax.
13331
13332 Note that the first two sets of the start/end options and the @option{duration}
13333 option look at the frame timestamp, while the _frame variants simply count the
13334 frames that pass through the filter. Also note that this filter does not modify
13335 the timestamps. If you wish for the output timestamps to start at zero, insert a
13336 setpts filter after the trim filter.
13337
13338 If multiple start or end options are set, this filter tries to be greedy and
13339 keep all the frames that match at least one of the specified constraints. To keep
13340 only the part that matches all the constraints at once, chain multiple trim
13341 filters.
13342
13343 The defaults are such that all the input is kept. So it is possible to set e.g.
13344 just the end values to keep everything before the specified time.
13345
13346 Examples:
13347 @itemize
13348 @item
13349 Drop everything except the second minute of input:
13350 @example
13351 ffmpeg -i INPUT -vf trim=60:120
13352 @end example
13353
13354 @item
13355 Keep only the first second:
13356 @example
13357 ffmpeg -i INPUT -vf trim=duration=1
13358 @end example
13359
13360 @end itemize
13361
13362
13363 @anchor{unsharp}
13364 @section unsharp
13365
13366 Sharpen or blur the input video.
13367
13368 It accepts the following parameters:
13369
13370 @table @option
13371 @item luma_msize_x, lx
13372 Set the luma matrix horizontal size. It must be an odd integer between
13373 3 and 63. The default value is 5.
13374
13375 @item luma_msize_y, ly
13376 Set the luma matrix vertical size. It must be an odd integer between 3
13377 and 63. The default value is 5.
13378
13379 @item luma_amount, la
13380 Set the luma effect strength. It must be a floating point number, reasonable
13381 values lay between -1.5 and 1.5.
13382
13383 Negative values will blur the input video, while positive values will
13384 sharpen it, a value of zero will disable the effect.
13385
13386 Default value is 1.0.
13387
13388 @item chroma_msize_x, cx
13389 Set the chroma matrix horizontal size. It must be an odd integer
13390 between 3 and 63. The default value is 5.
13391
13392 @item chroma_msize_y, cy
13393 Set the chroma matrix vertical size. It must be an odd integer
13394 between 3 and 63. The default value is 5.
13395
13396 @item chroma_amount, ca
13397 Set the chroma effect strength. It must be a floating point number, reasonable
13398 values lay between -1.5 and 1.5.
13399
13400 Negative values will blur the input video, while positive values will
13401 sharpen it, a value of zero will disable the effect.
13402
13403 Default value is 0.0.
13404
13405 @item opencl
13406 If set to 1, specify using OpenCL capabilities, only available if
13407 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
13408
13409 @end table
13410
13411 All parameters are optional and default to the equivalent of the
13412 string '5:5:1.0:5:5:0.0'.
13413
13414 @subsection Examples
13415
13416 @itemize
13417 @item
13418 Apply strong luma sharpen effect:
13419 @example
13420 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13421 @end example
13422
13423 @item
13424 Apply a strong blur of both luma and chroma parameters:
13425 @example
13426 unsharp=7:7:-2:7:7:-2
13427 @end example
13428 @end itemize
13429
13430 @section uspp
13431
13432 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13433 the image at several (or - in the case of @option{quality} level @code{8} - all)
13434 shifts and average the results.
13435
13436 The way this differs from the behavior of spp is that uspp actually encodes &
13437 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13438 DCT similar to MJPEG.
13439
13440 The filter accepts the following options:
13441
13442 @table @option
13443 @item quality
13444 Set quality. This option defines the number of levels for averaging. It accepts
13445 an integer in the range 0-8. If set to @code{0}, the filter will have no
13446 effect. A value of @code{8} means the higher quality. For each increment of
13447 that value the speed drops by a factor of approximately 2.  Default value is
13448 @code{3}.
13449
13450 @item qp
13451 Force a constant quantization parameter. If not set, the filter will use the QP
13452 from the video stream (if available).
13453 @end table
13454
13455 @section vaguedenoiser
13456
13457 Apply a wavelet based denoiser.
13458
13459 It transforms each frame from the video input into the wavelet domain,
13460 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
13461 the obtained coefficients. It does an inverse wavelet transform after.
13462 Due to wavelet properties, it should give a nice smoothed result, and
13463 reduced noise, without blurring picture features.
13464
13465 This filter accepts the following options:
13466
13467 @table @option
13468 @item threshold
13469 The filtering strength. The higher, the more filtered the video will be.
13470 Hard thresholding can use a higher threshold than soft thresholding
13471 before the video looks overfiltered.
13472
13473 @item method
13474 The filtering method the filter will use.
13475
13476 It accepts the following values:
13477 @table @samp
13478 @item hard
13479 All values under the threshold will be zeroed.
13480
13481 @item soft
13482 All values under the threshold will be zeroed. All values above will be
13483 reduced by the threshold.
13484
13485 @item garrote
13486 Scales or nullifies coefficients - intermediary between (more) soft and
13487 (less) hard thresholding.
13488 @end table
13489
13490 @item nsteps
13491 Number of times, the wavelet will decompose the picture. Picture can't
13492 be decomposed beyond a particular point (typically, 8 for a 640x480
13493 frame - as 2^9 = 512 > 480)
13494
13495 @item percent
13496 Partial of full denoising (limited coefficients shrinking), from 0 to 100.
13497
13498 @item planes
13499 A list of the planes to process. By default all planes are processed.
13500 @end table
13501
13502 @section vectorscope
13503
13504 Display 2 color component values in the two dimensional graph (which is called
13505 a vectorscope).
13506
13507 This filter accepts the following options:
13508
13509 @table @option
13510 @item mode, m
13511 Set vectorscope mode.
13512
13513 It accepts the following values:
13514 @table @samp
13515 @item gray
13516 Gray values are displayed on graph, higher brightness means more pixels have
13517 same component color value on location in graph. This is the default mode.
13518
13519 @item color
13520 Gray values are displayed on graph. Surrounding pixels values which are not
13521 present in video frame are drawn in gradient of 2 color components which are
13522 set by option @code{x} and @code{y}. The 3rd color component is static.
13523
13524 @item color2
13525 Actual color components values present in video frame are displayed on graph.
13526
13527 @item color3
13528 Similar as color2 but higher frequency of same values @code{x} and @code{y}
13529 on graph increases value of another color component, which is luminance by
13530 default values of @code{x} and @code{y}.
13531
13532 @item color4
13533 Actual colors present in video frame are displayed on graph. If two different
13534 colors map to same position on graph then color with higher value of component
13535 not present in graph is picked.
13536
13537 @item color5
13538 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
13539 component picked from radial gradient.
13540 @end table
13541
13542 @item x
13543 Set which color component will be represented on X-axis. Default is @code{1}.
13544
13545 @item y
13546 Set which color component will be represented on Y-axis. Default is @code{2}.
13547
13548 @item intensity, i
13549 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
13550 of color component which represents frequency of (X, Y) location in graph.
13551
13552 @item envelope, e
13553 @table @samp
13554 @item none
13555 No envelope, this is default.
13556
13557 @item instant
13558 Instant envelope, even darkest single pixel will be clearly highlighted.
13559
13560 @item peak
13561 Hold maximum and minimum values presented in graph over time. This way you
13562 can still spot out of range values without constantly looking at vectorscope.
13563
13564 @item peak+instant
13565 Peak and instant envelope combined together.
13566 @end table
13567
13568 @item graticule, g
13569 Set what kind of graticule to draw.
13570 @table @samp
13571 @item none
13572 @item green
13573 @item color
13574 @end table
13575
13576 @item opacity, o
13577 Set graticule opacity.
13578
13579 @item flags, f
13580 Set graticule flags.
13581
13582 @table @samp
13583 @item white
13584 Draw graticule for white point.
13585
13586 @item black
13587 Draw graticule for black point.
13588
13589 @item name
13590 Draw color points short names.
13591 @end table
13592
13593 @item bgopacity, b
13594 Set background opacity.
13595
13596 @item lthreshold, l
13597 Set low threshold for color component not represented on X or Y axis.
13598 Values lower than this value will be ignored. Default is 0.
13599 Note this value is multiplied with actual max possible value one pixel component
13600 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13601 is 0.1 * 255 = 25.
13602
13603 @item hthreshold, h
13604 Set high threshold for color component not represented on X or Y axis.
13605 Values higher than this value will be ignored. Default is 1.
13606 Note this value is multiplied with actual max possible value one pixel component
13607 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13608 is 0.9 * 255 = 230.
13609
13610 @item colorspace, c
13611 Set what kind of colorspace to use when drawing graticule.
13612 @table @samp
13613 @item auto
13614 @item 601
13615 @item 709
13616 @end table
13617 Default is auto.
13618 @end table
13619
13620 @anchor{vidstabdetect}
13621 @section vidstabdetect
13622
13623 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
13624 @ref{vidstabtransform} for pass 2.
13625
13626 This filter generates a file with relative translation and rotation
13627 transform information about subsequent frames, which is then used by
13628 the @ref{vidstabtransform} filter.
13629
13630 To enable compilation of this filter you need to configure FFmpeg with
13631 @code{--enable-libvidstab}.
13632
13633 This filter accepts the following options:
13634
13635 @table @option
13636 @item result
13637 Set the path to the file used to write the transforms information.
13638 Default value is @file{transforms.trf}.
13639
13640 @item shakiness
13641 Set how shaky the video is and how quick the camera is. It accepts an
13642 integer in the range 1-10, a value of 1 means little shakiness, a
13643 value of 10 means strong shakiness. Default value is 5.
13644
13645 @item accuracy
13646 Set the accuracy of the detection process. It must be a value in the
13647 range 1-15. A value of 1 means low accuracy, a value of 15 means high
13648 accuracy. Default value is 15.
13649
13650 @item stepsize
13651 Set stepsize of the search process. The region around minimum is
13652 scanned with 1 pixel resolution. Default value is 6.
13653
13654 @item mincontrast
13655 Set minimum contrast. Below this value a local measurement field is
13656 discarded. Must be a floating point value in the range 0-1. Default
13657 value is 0.3.
13658
13659 @item tripod
13660 Set reference frame number for tripod mode.
13661
13662 If enabled, the motion of the frames is compared to a reference frame
13663 in the filtered stream, identified by the specified number. The idea
13664 is to compensate all movements in a more-or-less static scene and keep
13665 the camera view absolutely still.
13666
13667 If set to 0, it is disabled. The frames are counted starting from 1.
13668
13669 @item show
13670 Show fields and transforms in the resulting frames. It accepts an
13671 integer in the range 0-2. Default value is 0, which disables any
13672 visualization.
13673 @end table
13674
13675 @subsection Examples
13676
13677 @itemize
13678 @item
13679 Use default values:
13680 @example
13681 vidstabdetect
13682 @end example
13683
13684 @item
13685 Analyze strongly shaky movie and put the results in file
13686 @file{mytransforms.trf}:
13687 @example
13688 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
13689 @end example
13690
13691 @item
13692 Visualize the result of internal transformations in the resulting
13693 video:
13694 @example
13695 vidstabdetect=show=1
13696 @end example
13697
13698 @item
13699 Analyze a video with medium shakiness using @command{ffmpeg}:
13700 @example
13701 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
13702 @end example
13703 @end itemize
13704
13705 @anchor{vidstabtransform}
13706 @section vidstabtransform
13707
13708 Video stabilization/deshaking: pass 2 of 2,
13709 see @ref{vidstabdetect} for pass 1.
13710
13711 Read a file with transform information for each frame and
13712 apply/compensate them. Together with the @ref{vidstabdetect}
13713 filter this can be used to deshake videos. See also
13714 @url{http://public.hronopik.de/vid.stab}. It is important to also use
13715 the @ref{unsharp} filter, see below.
13716
13717 To enable compilation of this filter you need to configure FFmpeg with
13718 @code{--enable-libvidstab}.
13719
13720 @subsection Options
13721
13722 @table @option
13723 @item input
13724 Set path to the file used to read the transforms. Default value is
13725 @file{transforms.trf}.
13726
13727 @item smoothing
13728 Set the number of frames (value*2 + 1) used for lowpass filtering the
13729 camera movements. Default value is 10.
13730
13731 For example a number of 10 means that 21 frames are used (10 in the
13732 past and 10 in the future) to smoothen the motion in the video. A
13733 larger value leads to a smoother video, but limits the acceleration of
13734 the camera (pan/tilt movements). 0 is a special case where a static
13735 camera is simulated.
13736
13737 @item optalgo
13738 Set the camera path optimization algorithm.
13739
13740 Accepted values are:
13741 @table @samp
13742 @item gauss
13743 gaussian kernel low-pass filter on camera motion (default)
13744 @item avg
13745 averaging on transformations
13746 @end table
13747
13748 @item maxshift
13749 Set maximal number of pixels to translate frames. Default value is -1,
13750 meaning no limit.
13751
13752 @item maxangle
13753 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
13754 value is -1, meaning no limit.
13755
13756 @item crop
13757 Specify how to deal with borders that may be visible due to movement
13758 compensation.
13759
13760 Available values are:
13761 @table @samp
13762 @item keep
13763 keep image information from previous frame (default)
13764 @item black
13765 fill the border black
13766 @end table
13767
13768 @item invert
13769 Invert transforms if set to 1. Default value is 0.
13770
13771 @item relative
13772 Consider transforms as relative to previous frame if set to 1,
13773 absolute if set to 0. Default value is 0.
13774
13775 @item zoom
13776 Set percentage to zoom. A positive value will result in a zoom-in
13777 effect, a negative value in a zoom-out effect. Default value is 0 (no
13778 zoom).
13779
13780 @item optzoom
13781 Set optimal zooming to avoid borders.
13782
13783 Accepted values are:
13784 @table @samp
13785 @item 0
13786 disabled
13787 @item 1
13788 optimal static zoom value is determined (only very strong movements
13789 will lead to visible borders) (default)
13790 @item 2
13791 optimal adaptive zoom value is determined (no borders will be
13792 visible), see @option{zoomspeed}
13793 @end table
13794
13795 Note that the value given at zoom is added to the one calculated here.
13796
13797 @item zoomspeed
13798 Set percent to zoom maximally each frame (enabled when
13799 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
13800 0.25.
13801
13802 @item interpol
13803 Specify type of interpolation.
13804
13805 Available values are:
13806 @table @samp
13807 @item no
13808 no interpolation
13809 @item linear
13810 linear only horizontal
13811 @item bilinear
13812 linear in both directions (default)
13813 @item bicubic
13814 cubic in both directions (slow)
13815 @end table
13816
13817 @item tripod
13818 Enable virtual tripod mode if set to 1, which is equivalent to
13819 @code{relative=0:smoothing=0}. Default value is 0.
13820
13821 Use also @code{tripod} option of @ref{vidstabdetect}.
13822
13823 @item debug
13824 Increase log verbosity if set to 1. Also the detected global motions
13825 are written to the temporary file @file{global_motions.trf}. Default
13826 value is 0.
13827 @end table
13828
13829 @subsection Examples
13830
13831 @itemize
13832 @item
13833 Use @command{ffmpeg} for a typical stabilization with default values:
13834 @example
13835 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
13836 @end example
13837
13838 Note the use of the @ref{unsharp} filter which is always recommended.
13839
13840 @item
13841 Zoom in a bit more and load transform data from a given file:
13842 @example
13843 vidstabtransform=zoom=5:input="mytransforms.trf"
13844 @end example
13845
13846 @item
13847 Smoothen the video even more:
13848 @example
13849 vidstabtransform=smoothing=30
13850 @end example
13851 @end itemize
13852
13853 @section vflip
13854
13855 Flip the input video vertically.
13856
13857 For example, to vertically flip a video with @command{ffmpeg}:
13858 @example
13859 ffmpeg -i in.avi -vf "vflip" out.avi
13860 @end example
13861
13862 @anchor{vignette}
13863 @section vignette
13864
13865 Make or reverse a natural vignetting effect.
13866
13867 The filter accepts the following options:
13868
13869 @table @option
13870 @item angle, a
13871 Set lens angle expression as a number of radians.
13872
13873 The value is clipped in the @code{[0,PI/2]} range.
13874
13875 Default value: @code{"PI/5"}
13876
13877 @item x0
13878 @item y0
13879 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
13880 by default.
13881
13882 @item mode
13883 Set forward/backward mode.
13884
13885 Available modes are:
13886 @table @samp
13887 @item forward
13888 The larger the distance from the central point, the darker the image becomes.
13889
13890 @item backward
13891 The larger the distance from the central point, the brighter the image becomes.
13892 This can be used to reverse a vignette effect, though there is no automatic
13893 detection to extract the lens @option{angle} and other settings (yet). It can
13894 also be used to create a burning effect.
13895 @end table
13896
13897 Default value is @samp{forward}.
13898
13899 @item eval
13900 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
13901
13902 It accepts the following values:
13903 @table @samp
13904 @item init
13905 Evaluate expressions only once during the filter initialization.
13906
13907 @item frame
13908 Evaluate expressions for each incoming frame. This is way slower than the
13909 @samp{init} mode since it requires all the scalers to be re-computed, but it
13910 allows advanced dynamic expressions.
13911 @end table
13912
13913 Default value is @samp{init}.
13914
13915 @item dither
13916 Set dithering to reduce the circular banding effects. Default is @code{1}
13917 (enabled).
13918
13919 @item aspect
13920 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
13921 Setting this value to the SAR of the input will make a rectangular vignetting
13922 following the dimensions of the video.
13923
13924 Default is @code{1/1}.
13925 @end table
13926
13927 @subsection Expressions
13928
13929 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
13930 following parameters.
13931
13932 @table @option
13933 @item w
13934 @item h
13935 input width and height
13936
13937 @item n
13938 the number of input frame, starting from 0
13939
13940 @item pts
13941 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
13942 @var{TB} units, NAN if undefined
13943
13944 @item r
13945 frame rate of the input video, NAN if the input frame rate is unknown
13946
13947 @item t
13948 the PTS (Presentation TimeStamp) of the filtered video frame,
13949 expressed in seconds, NAN if undefined
13950
13951 @item tb
13952 time base of the input video
13953 @end table
13954
13955
13956 @subsection Examples
13957
13958 @itemize
13959 @item
13960 Apply simple strong vignetting effect:
13961 @example
13962 vignette=PI/4
13963 @end example
13964
13965 @item
13966 Make a flickering vignetting:
13967 @example
13968 vignette='PI/4+random(1)*PI/50':eval=frame
13969 @end example
13970
13971 @end itemize
13972
13973 @section vstack
13974 Stack input videos vertically.
13975
13976 All streams must be of same pixel format and of same width.
13977
13978 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13979 to create same output.
13980
13981 The filter accept the following option:
13982
13983 @table @option
13984 @item inputs
13985 Set number of input streams. Default is 2.
13986
13987 @item shortest
13988 If set to 1, force the output to terminate when the shortest input
13989 terminates. Default value is 0.
13990 @end table
13991
13992 @section w3fdif
13993
13994 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
13995 Deinterlacing Filter").
13996
13997 Based on the process described by Martin Weston for BBC R&D, and
13998 implemented based on the de-interlace algorithm written by Jim
13999 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
14000 uses filter coefficients calculated by BBC R&D.
14001
14002 There are two sets of filter coefficients, so called "simple":
14003 and "complex". Which set of filter coefficients is used can
14004 be set by passing an optional parameter:
14005
14006 @table @option
14007 @item filter
14008 Set the interlacing filter coefficients. Accepts one of the following values:
14009
14010 @table @samp
14011 @item simple
14012 Simple filter coefficient set.
14013 @item complex
14014 More-complex filter coefficient set.
14015 @end table
14016 Default value is @samp{complex}.
14017
14018 @item deint
14019 Specify which frames to deinterlace. Accept one of the following values:
14020
14021 @table @samp
14022 @item all
14023 Deinterlace all frames,
14024 @item interlaced
14025 Only deinterlace frames marked as interlaced.
14026 @end table
14027
14028 Default value is @samp{all}.
14029 @end table
14030
14031 @section waveform
14032 Video waveform monitor.
14033
14034 The waveform monitor plots color component intensity. By default luminance
14035 only. Each column of the waveform corresponds to a column of pixels in the
14036 source video.
14037
14038 It accepts the following options:
14039
14040 @table @option
14041 @item mode, m
14042 Can be either @code{row}, or @code{column}. Default is @code{column}.
14043 In row mode, the graph on the left side represents color component value 0 and
14044 the right side represents value = 255. In column mode, the top side represents
14045 color component value = 0 and bottom side represents value = 255.
14046
14047 @item intensity, i
14048 Set intensity. Smaller values are useful to find out how many values of the same
14049 luminance are distributed across input rows/columns.
14050 Default value is @code{0.04}. Allowed range is [0, 1].
14051
14052 @item mirror, r
14053 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
14054 In mirrored mode, higher values will be represented on the left
14055 side for @code{row} mode and at the top for @code{column} mode. Default is
14056 @code{1} (mirrored).
14057
14058 @item display, d
14059 Set display mode.
14060 It accepts the following values:
14061 @table @samp
14062 @item overlay
14063 Presents information identical to that in the @code{parade}, except
14064 that the graphs representing color components are superimposed directly
14065 over one another.
14066
14067 This display mode makes it easier to spot relative differences or similarities
14068 in overlapping areas of the color components that are supposed to be identical,
14069 such as neutral whites, grays, or blacks.
14070
14071 @item stack
14072 Display separate graph for the color components side by side in
14073 @code{row} mode or one below the other in @code{column} mode.
14074
14075 @item parade
14076 Display separate graph for the color components side by side in
14077 @code{column} mode or one below the other in @code{row} mode.
14078
14079 Using this display mode makes it easy to spot color casts in the highlights
14080 and shadows of an image, by comparing the contours of the top and the bottom
14081 graphs of each waveform. Since whites, grays, and blacks are characterized
14082 by exactly equal amounts of red, green, and blue, neutral areas of the picture
14083 should display three waveforms of roughly equal width/height. If not, the
14084 correction is easy to perform by making level adjustments the three waveforms.
14085 @end table
14086 Default is @code{stack}.
14087
14088 @item components, c
14089 Set which color components to display. Default is 1, which means only luminance
14090 or red color component if input is in RGB colorspace. If is set for example to
14091 7 it will display all 3 (if) available color components.
14092
14093 @item envelope, e
14094 @table @samp
14095 @item none
14096 No envelope, this is default.
14097
14098 @item instant
14099 Instant envelope, minimum and maximum values presented in graph will be easily
14100 visible even with small @code{step} value.
14101
14102 @item peak
14103 Hold minimum and maximum values presented in graph across time. This way you
14104 can still spot out of range values without constantly looking at waveforms.
14105
14106 @item peak+instant
14107 Peak and instant envelope combined together.
14108 @end table
14109
14110 @item filter, f
14111 @table @samp
14112 @item lowpass
14113 No filtering, this is default.
14114
14115 @item flat
14116 Luma and chroma combined together.
14117
14118 @item aflat
14119 Similar as above, but shows difference between blue and red chroma.
14120
14121 @item chroma
14122 Displays only chroma.
14123
14124 @item color
14125 Displays actual color value on waveform.
14126
14127 @item acolor
14128 Similar as above, but with luma showing frequency of chroma values.
14129 @end table
14130
14131 @item graticule, g
14132 Set which graticule to display.
14133
14134 @table @samp
14135 @item none
14136 Do not display graticule.
14137
14138 @item green
14139 Display green graticule showing legal broadcast ranges.
14140 @end table
14141
14142 @item opacity, o
14143 Set graticule opacity.
14144
14145 @item flags, fl
14146 Set graticule flags.
14147
14148 @table @samp
14149 @item numbers
14150 Draw numbers above lines. By default enabled.
14151
14152 @item dots
14153 Draw dots instead of lines.
14154 @end table
14155
14156 @item scale, s
14157 Set scale used for displaying graticule.
14158
14159 @table @samp
14160 @item digital
14161 @item millivolts
14162 @item ire
14163 @end table
14164 Default is digital.
14165
14166 @item bgopacity, b
14167 Set background opacity.
14168 @end table
14169
14170 @section weave
14171
14172 The @code{weave} takes a field-based video input and join
14173 each two sequential fields into single frame, producing a new double
14174 height clip with half the frame rate and half the frame count.
14175
14176 It accepts the following option:
14177
14178 @table @option
14179 @item first_field
14180 Set first field. Available values are:
14181
14182 @table @samp
14183 @item top, t
14184 Set the frame as top-field-first.
14185
14186 @item bottom, b
14187 Set the frame as bottom-field-first.
14188 @end table
14189 @end table
14190
14191 @subsection Examples
14192
14193 @itemize
14194 @item
14195 Interlace video using @ref{select} and @ref{separatefields} filter:
14196 @example
14197 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
14198 @end example
14199 @end itemize
14200
14201 @section xbr
14202 Apply the xBR high-quality magnification filter which is designed for pixel
14203 art. It follows a set of edge-detection rules, see
14204 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
14205
14206 It accepts the following option:
14207
14208 @table @option
14209 @item n
14210 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
14211 @code{3xBR} and @code{4} for @code{4xBR}.
14212 Default is @code{3}.
14213 @end table
14214
14215 @anchor{yadif}
14216 @section yadif
14217
14218 Deinterlace the input video ("yadif" means "yet another deinterlacing
14219 filter").
14220
14221 It accepts the following parameters:
14222
14223
14224 @table @option
14225
14226 @item mode
14227 The interlacing mode to adopt. It accepts one of the following values:
14228
14229 @table @option
14230 @item 0, send_frame
14231 Output one frame for each frame.
14232 @item 1, send_field
14233 Output one frame for each field.
14234 @item 2, send_frame_nospatial
14235 Like @code{send_frame}, but it skips the spatial interlacing check.
14236 @item 3, send_field_nospatial
14237 Like @code{send_field}, but it skips the spatial interlacing check.
14238 @end table
14239
14240 The default value is @code{send_frame}.
14241
14242 @item parity
14243 The picture field parity assumed for the input interlaced video. It accepts one
14244 of the following values:
14245
14246 @table @option
14247 @item 0, tff
14248 Assume the top field is first.
14249 @item 1, bff
14250 Assume the bottom field is first.
14251 @item -1, auto
14252 Enable automatic detection of field parity.
14253 @end table
14254
14255 The default value is @code{auto}.
14256 If the interlacing is unknown or the decoder does not export this information,
14257 top field first will be assumed.
14258
14259 @item deint
14260 Specify which frames to deinterlace. Accept one of the following
14261 values:
14262
14263 @table @option
14264 @item 0, all
14265 Deinterlace all frames.
14266 @item 1, interlaced
14267 Only deinterlace frames marked as interlaced.
14268 @end table
14269
14270 The default value is @code{all}.
14271 @end table
14272
14273 @section zoompan
14274
14275 Apply Zoom & Pan effect.
14276
14277 This filter accepts the following options:
14278
14279 @table @option
14280 @item zoom, z
14281 Set the zoom expression. Default is 1.
14282
14283 @item x
14284 @item y
14285 Set the x and y expression. Default is 0.
14286
14287 @item d
14288 Set the duration expression in number of frames.
14289 This sets for how many number of frames effect will last for
14290 single input image.
14291
14292 @item s
14293 Set the output image size, default is 'hd720'.
14294
14295 @item fps
14296 Set the output frame rate, default is '25'.
14297 @end table
14298
14299 Each expression can contain the following constants:
14300
14301 @table @option
14302 @item in_w, iw
14303 Input width.
14304
14305 @item in_h, ih
14306 Input height.
14307
14308 @item out_w, ow
14309 Output width.
14310
14311 @item out_h, oh
14312 Output height.
14313
14314 @item in
14315 Input frame count.
14316
14317 @item on
14318 Output frame count.
14319
14320 @item x
14321 @item y
14322 Last calculated 'x' and 'y' position from 'x' and 'y' expression
14323 for current input frame.
14324
14325 @item px
14326 @item py
14327 'x' and 'y' of last output frame of previous input frame or 0 when there was
14328 not yet such frame (first input frame).
14329
14330 @item zoom
14331 Last calculated zoom from 'z' expression for current input frame.
14332
14333 @item pzoom
14334 Last calculated zoom of last output frame of previous input frame.
14335
14336 @item duration
14337 Number of output frames for current input frame. Calculated from 'd' expression
14338 for each input frame.
14339
14340 @item pduration
14341 number of output frames created for previous input frame
14342
14343 @item a
14344 Rational number: input width / input height
14345
14346 @item sar
14347 sample aspect ratio
14348
14349 @item dar
14350 display aspect ratio
14351
14352 @end table
14353
14354 @subsection Examples
14355
14356 @itemize
14357 @item
14358 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
14359 @example
14360 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
14361 @end example
14362
14363 @item
14364 Zoom-in up to 1.5 and pan always at center of picture:
14365 @example
14366 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14367 @end example
14368
14369 @item
14370 Same as above but without pausing:
14371 @example
14372 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14373 @end example
14374 @end itemize
14375
14376 @section zscale
14377 Scale (resize) the input video, using the z.lib library:
14378 https://github.com/sekrit-twc/zimg.
14379
14380 The zscale filter forces the output display aspect ratio to be the same
14381 as the input, by changing the output sample aspect ratio.
14382
14383 If the input image format is different from the format requested by
14384 the next filter, the zscale filter will convert the input to the
14385 requested format.
14386
14387 @subsection Options
14388 The filter accepts the following options.
14389
14390 @table @option
14391 @item width, w
14392 @item height, h
14393 Set the output video dimension expression. Default value is the input
14394 dimension.
14395
14396 If the @var{width} or @var{w} is 0, the input width is used for the output.
14397 If the @var{height} or @var{h} is 0, the input height is used for the output.
14398
14399 If one of the values is -1, the zscale filter will use a value that
14400 maintains the aspect ratio of the input image, calculated from the
14401 other specified dimension. If both of them are -1, the input size is
14402 used
14403
14404 If one of the values is -n with n > 1, the zscale filter will also use a value
14405 that maintains the aspect ratio of the input image, calculated from the other
14406 specified dimension. After that it will, however, make sure that the calculated
14407 dimension is divisible by n and adjust the value if necessary.
14408
14409 See below for the list of accepted constants for use in the dimension
14410 expression.
14411
14412 @item size, s
14413 Set the video size. For the syntax of this option, check the
14414 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14415
14416 @item dither, d
14417 Set the dither type.
14418
14419 Possible values are:
14420 @table @var
14421 @item none
14422 @item ordered
14423 @item random
14424 @item error_diffusion
14425 @end table
14426
14427 Default is none.
14428
14429 @item filter, f
14430 Set the resize filter type.
14431
14432 Possible values are:
14433 @table @var
14434 @item point
14435 @item bilinear
14436 @item bicubic
14437 @item spline16
14438 @item spline36
14439 @item lanczos
14440 @end table
14441
14442 Default is bilinear.
14443
14444 @item range, r
14445 Set the color range.
14446
14447 Possible values are:
14448 @table @var
14449 @item input
14450 @item limited
14451 @item full
14452 @end table
14453
14454 Default is same as input.
14455
14456 @item primaries, p
14457 Set the color primaries.
14458
14459 Possible values are:
14460 @table @var
14461 @item input
14462 @item 709
14463 @item unspecified
14464 @item 170m
14465 @item 240m
14466 @item 2020
14467 @end table
14468
14469 Default is same as input.
14470
14471 @item transfer, t
14472 Set the transfer characteristics.
14473
14474 Possible values are:
14475 @table @var
14476 @item input
14477 @item 709
14478 @item unspecified
14479 @item 601
14480 @item linear
14481 @item 2020_10
14482 @item 2020_12
14483 @end table
14484
14485 Default is same as input.
14486
14487 @item matrix, m
14488 Set the colorspace matrix.
14489
14490 Possible value are:
14491 @table @var
14492 @item input
14493 @item 709
14494 @item unspecified
14495 @item 470bg
14496 @item 170m
14497 @item 2020_ncl
14498 @item 2020_cl
14499 @end table
14500
14501 Default is same as input.
14502
14503 @item rangein, rin
14504 Set the input color range.
14505
14506 Possible values are:
14507 @table @var
14508 @item input
14509 @item limited
14510 @item full
14511 @end table
14512
14513 Default is same as input.
14514
14515 @item primariesin, pin
14516 Set the input color primaries.
14517
14518 Possible values are:
14519 @table @var
14520 @item input
14521 @item 709
14522 @item unspecified
14523 @item 170m
14524 @item 240m
14525 @item 2020
14526 @end table
14527
14528 Default is same as input.
14529
14530 @item transferin, tin
14531 Set the input transfer characteristics.
14532
14533 Possible values are:
14534 @table @var
14535 @item input
14536 @item 709
14537 @item unspecified
14538 @item 601
14539 @item linear
14540 @item 2020_10
14541 @item 2020_12
14542 @end table
14543
14544 Default is same as input.
14545
14546 @item matrixin, min
14547 Set the input colorspace matrix.
14548
14549 Possible value are:
14550 @table @var
14551 @item input
14552 @item 709
14553 @item unspecified
14554 @item 470bg
14555 @item 170m
14556 @item 2020_ncl
14557 @item 2020_cl
14558 @end table
14559
14560 @item chromal, c
14561 Set the output chroma location.
14562
14563 Possible values are:
14564 @table @var
14565 @item input
14566 @item left
14567 @item center
14568 @item topleft
14569 @item top
14570 @item bottomleft
14571 @item bottom
14572 @end table
14573
14574 @item chromalin, cin
14575 Set the input chroma location.
14576
14577 Possible values are:
14578 @table @var
14579 @item input
14580 @item left
14581 @item center
14582 @item topleft
14583 @item top
14584 @item bottomleft
14585 @item bottom
14586 @end table
14587 @end table
14588
14589 The values of the @option{w} and @option{h} options are expressions
14590 containing the following constants:
14591
14592 @table @var
14593 @item in_w
14594 @item in_h
14595 The input width and height
14596
14597 @item iw
14598 @item ih
14599 These are the same as @var{in_w} and @var{in_h}.
14600
14601 @item out_w
14602 @item out_h
14603 The output (scaled) width and height
14604
14605 @item ow
14606 @item oh
14607 These are the same as @var{out_w} and @var{out_h}
14608
14609 @item a
14610 The same as @var{iw} / @var{ih}
14611
14612 @item sar
14613 input sample aspect ratio
14614
14615 @item dar
14616 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14617
14618 @item hsub
14619 @item vsub
14620 horizontal and vertical input chroma subsample values. For example for the
14621 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14622
14623 @item ohsub
14624 @item ovsub
14625 horizontal and vertical output chroma subsample values. For example for the
14626 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14627 @end table
14628
14629 @table @option
14630 @end table
14631
14632 @c man end VIDEO FILTERS
14633
14634 @chapter Video Sources
14635 @c man begin VIDEO SOURCES
14636
14637 Below is a description of the currently available video sources.
14638
14639 @section buffer
14640
14641 Buffer video frames, and make them available to the filter chain.
14642
14643 This source is mainly intended for a programmatic use, in particular
14644 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
14645
14646 It accepts the following parameters:
14647
14648 @table @option
14649
14650 @item video_size
14651 Specify the size (width and height) of the buffered video frames. For the
14652 syntax of this option, check the
14653 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14654
14655 @item width
14656 The input video width.
14657
14658 @item height
14659 The input video height.
14660
14661 @item pix_fmt
14662 A string representing the pixel format of the buffered video frames.
14663 It may be a number corresponding to a pixel format, or a pixel format
14664 name.
14665
14666 @item time_base
14667 Specify the timebase assumed by the timestamps of the buffered frames.
14668
14669 @item frame_rate
14670 Specify the frame rate expected for the video stream.
14671
14672 @item pixel_aspect, sar
14673 The sample (pixel) aspect ratio of the input video.
14674
14675 @item sws_param
14676 Specify the optional parameters to be used for the scale filter which
14677 is automatically inserted when an input change is detected in the
14678 input size or format.
14679
14680 @item hw_frames_ctx
14681 When using a hardware pixel format, this should be a reference to an
14682 AVHWFramesContext describing input frames.
14683 @end table
14684
14685 For example:
14686 @example
14687 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
14688 @end example
14689
14690 will instruct the source to accept video frames with size 320x240 and
14691 with format "yuv410p", assuming 1/24 as the timestamps timebase and
14692 square pixels (1:1 sample aspect ratio).
14693 Since the pixel format with name "yuv410p" corresponds to the number 6
14694 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
14695 this example corresponds to:
14696 @example
14697 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
14698 @end example
14699
14700 Alternatively, the options can be specified as a flat string, but this
14701 syntax is deprecated:
14702
14703 @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}]
14704
14705 @section cellauto
14706
14707 Create a pattern generated by an elementary cellular automaton.
14708
14709 The initial state of the cellular automaton can be defined through the
14710 @option{filename}, and @option{pattern} options. If such options are
14711 not specified an initial state is created randomly.
14712
14713 At each new frame a new row in the video is filled with the result of
14714 the cellular automaton next generation. The behavior when the whole
14715 frame is filled is defined by the @option{scroll} option.
14716
14717 This source accepts the following options:
14718
14719 @table @option
14720 @item filename, f
14721 Read the initial cellular automaton state, i.e. the starting row, from
14722 the specified file.
14723 In the file, each non-whitespace character is considered an alive
14724 cell, a newline will terminate the row, and further characters in the
14725 file will be ignored.
14726
14727 @item pattern, p
14728 Read the initial cellular automaton state, i.e. the starting row, from
14729 the specified string.
14730
14731 Each non-whitespace character in the string is considered an alive
14732 cell, a newline will terminate the row, and further characters in the
14733 string will be ignored.
14734
14735 @item rate, r
14736 Set the video rate, that is the number of frames generated per second.
14737 Default is 25.
14738
14739 @item random_fill_ratio, ratio
14740 Set the random fill ratio for the initial cellular automaton row. It
14741 is a floating point number value ranging from 0 to 1, defaults to
14742 1/PHI.
14743
14744 This option is ignored when a file or a pattern is specified.
14745
14746 @item random_seed, seed
14747 Set the seed for filling randomly the initial row, must be an integer
14748 included between 0 and UINT32_MAX. If not specified, or if explicitly
14749 set to -1, the filter will try to use a good random seed on a best
14750 effort basis.
14751
14752 @item rule
14753 Set the cellular automaton rule, it is a number ranging from 0 to 255.
14754 Default value is 110.
14755
14756 @item size, s
14757 Set the size of the output video. For the syntax of this option, check the
14758 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14759
14760 If @option{filename} or @option{pattern} is specified, the size is set
14761 by default to the width of the specified initial state row, and the
14762 height is set to @var{width} * PHI.
14763
14764 If @option{size} is set, it must contain the width of the specified
14765 pattern string, and the specified pattern will be centered in the
14766 larger row.
14767
14768 If a filename or a pattern string is not specified, the size value
14769 defaults to "320x518" (used for a randomly generated initial state).
14770
14771 @item scroll
14772 If set to 1, scroll the output upward when all the rows in the output
14773 have been already filled. If set to 0, the new generated row will be
14774 written over the top row just after the bottom row is filled.
14775 Defaults to 1.
14776
14777 @item start_full, full
14778 If set to 1, completely fill the output with generated rows before
14779 outputting the first frame.
14780 This is the default behavior, for disabling set the value to 0.
14781
14782 @item stitch
14783 If set to 1, stitch the left and right row edges together.
14784 This is the default behavior, for disabling set the value to 0.
14785 @end table
14786
14787 @subsection Examples
14788
14789 @itemize
14790 @item
14791 Read the initial state from @file{pattern}, and specify an output of
14792 size 200x400.
14793 @example
14794 cellauto=f=pattern:s=200x400
14795 @end example
14796
14797 @item
14798 Generate a random initial row with a width of 200 cells, with a fill
14799 ratio of 2/3:
14800 @example
14801 cellauto=ratio=2/3:s=200x200
14802 @end example
14803
14804 @item
14805 Create a pattern generated by rule 18 starting by a single alive cell
14806 centered on an initial row with width 100:
14807 @example
14808 cellauto=p=@@:s=100x400:full=0:rule=18
14809 @end example
14810
14811 @item
14812 Specify a more elaborated initial pattern:
14813 @example
14814 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
14815 @end example
14816
14817 @end itemize
14818
14819 @anchor{coreimagesrc}
14820 @section coreimagesrc
14821 Video source generated on GPU using Apple's CoreImage API on OSX.
14822
14823 This video source is a specialized version of the @ref{coreimage} video filter.
14824 Use a core image generator at the beginning of the applied filterchain to
14825 generate the content.
14826
14827 The coreimagesrc video source accepts the following options:
14828 @table @option
14829 @item list_generators
14830 List all available generators along with all their respective options as well as
14831 possible minimum and maximum values along with the default values.
14832 @example
14833 list_generators=true
14834 @end example
14835
14836 @item size, s
14837 Specify the size of the sourced video. For the syntax of this option, check the
14838 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14839 The default value is @code{320x240}.
14840
14841 @item rate, r
14842 Specify the frame rate of the sourced video, as the number of frames
14843 generated per second. It has to be a string in the format
14844 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14845 number or a valid video frame rate abbreviation. The default value is
14846 "25".
14847
14848 @item sar
14849 Set the sample aspect ratio of the sourced video.
14850
14851 @item duration, d
14852 Set the duration of the sourced video. See
14853 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14854 for the accepted syntax.
14855
14856 If not specified, or the expressed duration is negative, the video is
14857 supposed to be generated forever.
14858 @end table
14859
14860 Additionally, all options of the @ref{coreimage} video filter are accepted.
14861 A complete filterchain can be used for further processing of the
14862 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
14863 and examples for details.
14864
14865 @subsection Examples
14866
14867 @itemize
14868
14869 @item
14870 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
14871 given as complete and escaped command-line for Apple's standard bash shell:
14872 @example
14873 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
14874 @end example
14875 This example is equivalent to the QRCode example of @ref{coreimage} without the
14876 need for a nullsrc video source.
14877 @end itemize
14878
14879
14880 @section mandelbrot
14881
14882 Generate a Mandelbrot set fractal, and progressively zoom towards the
14883 point specified with @var{start_x} and @var{start_y}.
14884
14885 This source accepts the following options:
14886
14887 @table @option
14888
14889 @item end_pts
14890 Set the terminal pts value. Default value is 400.
14891
14892 @item end_scale
14893 Set the terminal scale value.
14894 Must be a floating point value. Default value is 0.3.
14895
14896 @item inner
14897 Set the inner coloring mode, that is the algorithm used to draw the
14898 Mandelbrot fractal internal region.
14899
14900 It shall assume one of the following values:
14901 @table @option
14902 @item black
14903 Set black mode.
14904 @item convergence
14905 Show time until convergence.
14906 @item mincol
14907 Set color based on point closest to the origin of the iterations.
14908 @item period
14909 Set period mode.
14910 @end table
14911
14912 Default value is @var{mincol}.
14913
14914 @item bailout
14915 Set the bailout value. Default value is 10.0.
14916
14917 @item maxiter
14918 Set the maximum of iterations performed by the rendering
14919 algorithm. Default value is 7189.
14920
14921 @item outer
14922 Set outer coloring mode.
14923 It shall assume one of following values:
14924 @table @option
14925 @item iteration_count
14926 Set iteration cound mode.
14927 @item normalized_iteration_count
14928 set normalized iteration count mode.
14929 @end table
14930 Default value is @var{normalized_iteration_count}.
14931
14932 @item rate, r
14933 Set frame rate, expressed as number of frames per second. Default
14934 value is "25".
14935
14936 @item size, s
14937 Set frame size. For the syntax of this option, check the "Video
14938 size" section in the ffmpeg-utils manual. Default value is "640x480".
14939
14940 @item start_scale
14941 Set the initial scale value. Default value is 3.0.
14942
14943 @item start_x
14944 Set the initial x position. Must be a floating point value between
14945 -100 and 100. Default value is -0.743643887037158704752191506114774.
14946
14947 @item start_y
14948 Set the initial y position. Must be a floating point value between
14949 -100 and 100. Default value is -0.131825904205311970493132056385139.
14950 @end table
14951
14952 @section mptestsrc
14953
14954 Generate various test patterns, as generated by the MPlayer test filter.
14955
14956 The size of the generated video is fixed, and is 256x256.
14957 This source is useful in particular for testing encoding features.
14958
14959 This source accepts the following options:
14960
14961 @table @option
14962
14963 @item rate, r
14964 Specify the frame rate of the sourced video, as the number of frames
14965 generated per second. It has to be a string in the format
14966 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14967 number or a valid video frame rate abbreviation. The default value is
14968 "25".
14969
14970 @item duration, d
14971 Set the duration of the sourced video. See
14972 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14973 for the accepted syntax.
14974
14975 If not specified, or the expressed duration is negative, the video is
14976 supposed to be generated forever.
14977
14978 @item test, t
14979
14980 Set the number or the name of the test to perform. Supported tests are:
14981 @table @option
14982 @item dc_luma
14983 @item dc_chroma
14984 @item freq_luma
14985 @item freq_chroma
14986 @item amp_luma
14987 @item amp_chroma
14988 @item cbp
14989 @item mv
14990 @item ring1
14991 @item ring2
14992 @item all
14993
14994 @end table
14995
14996 Default value is "all", which will cycle through the list of all tests.
14997 @end table
14998
14999 Some examples:
15000 @example
15001 mptestsrc=t=dc_luma
15002 @end example
15003
15004 will generate a "dc_luma" test pattern.
15005
15006 @section frei0r_src
15007
15008 Provide a frei0r source.
15009
15010 To enable compilation of this filter you need to install the frei0r
15011 header and configure FFmpeg with @code{--enable-frei0r}.
15012
15013 This source accepts the following parameters:
15014
15015 @table @option
15016
15017 @item size
15018 The size of the video to generate. For the syntax of this option, check the
15019 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15020
15021 @item framerate
15022 The framerate of the generated video. It may be a string of the form
15023 @var{num}/@var{den} or a frame rate abbreviation.
15024
15025 @item filter_name
15026 The name to the frei0r source to load. For more information regarding frei0r and
15027 how to set the parameters, read the @ref{frei0r} section in the video filters
15028 documentation.
15029
15030 @item filter_params
15031 A '|'-separated list of parameters to pass to the frei0r source.
15032
15033 @end table
15034
15035 For example, to generate a frei0r partik0l source with size 200x200
15036 and frame rate 10 which is overlaid on the overlay filter main input:
15037 @example
15038 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
15039 @end example
15040
15041 @section life
15042
15043 Generate a life pattern.
15044
15045 This source is based on a generalization of John Conway's life game.
15046
15047 The sourced input represents a life grid, each pixel represents a cell
15048 which can be in one of two possible states, alive or dead. Every cell
15049 interacts with its eight neighbours, which are the cells that are
15050 horizontally, vertically, or diagonally adjacent.
15051
15052 At each interaction the grid evolves according to the adopted rule,
15053 which specifies the number of neighbor alive cells which will make a
15054 cell stay alive or born. The @option{rule} option allows one to specify
15055 the rule to adopt.
15056
15057 This source accepts the following options:
15058
15059 @table @option
15060 @item filename, f
15061 Set the file from which to read the initial grid state. In the file,
15062 each non-whitespace character is considered an alive cell, and newline
15063 is used to delimit the end of each row.
15064
15065 If this option is not specified, the initial grid is generated
15066 randomly.
15067
15068 @item rate, r
15069 Set the video rate, that is the number of frames generated per second.
15070 Default is 25.
15071
15072 @item random_fill_ratio, ratio
15073 Set the random fill ratio for the initial random grid. It is a
15074 floating point number value ranging from 0 to 1, defaults to 1/PHI.
15075 It is ignored when a file is specified.
15076
15077 @item random_seed, seed
15078 Set the seed for filling the initial random grid, must be an integer
15079 included between 0 and UINT32_MAX. If not specified, or if explicitly
15080 set to -1, the filter will try to use a good random seed on a best
15081 effort basis.
15082
15083 @item rule
15084 Set the life rule.
15085
15086 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
15087 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
15088 @var{NS} specifies the number of alive neighbor cells which make a
15089 live cell stay alive, and @var{NB} the number of alive neighbor cells
15090 which make a dead cell to become alive (i.e. to "born").
15091 "s" and "b" can be used in place of "S" and "B", respectively.
15092
15093 Alternatively a rule can be specified by an 18-bits integer. The 9
15094 high order bits are used to encode the next cell state if it is alive
15095 for each number of neighbor alive cells, the low order bits specify
15096 the rule for "borning" new cells. Higher order bits encode for an
15097 higher number of neighbor cells.
15098 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
15099 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
15100
15101 Default value is "S23/B3", which is the original Conway's game of life
15102 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
15103 cells, and will born a new cell if there are three alive cells around
15104 a dead cell.
15105
15106 @item size, s
15107 Set the size of the output video. For the syntax of this option, check the
15108 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15109
15110 If @option{filename} is specified, the size is set by default to the
15111 same size of the input file. If @option{size} is set, it must contain
15112 the size specified in the input file, and the initial grid defined in
15113 that file is centered in the larger resulting area.
15114
15115 If a filename is not specified, the size value defaults to "320x240"
15116 (used for a randomly generated initial grid).
15117
15118 @item stitch
15119 If set to 1, stitch the left and right grid edges together, and the
15120 top and bottom edges also. Defaults to 1.
15121
15122 @item mold
15123 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
15124 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
15125 value from 0 to 255.
15126
15127 @item life_color
15128 Set the color of living (or new born) cells.
15129
15130 @item death_color
15131 Set the color of dead cells. If @option{mold} is set, this is the first color
15132 used to represent a dead cell.
15133
15134 @item mold_color
15135 Set mold color, for definitely dead and moldy cells.
15136
15137 For the syntax of these 3 color options, check the "Color" section in the
15138 ffmpeg-utils manual.
15139 @end table
15140
15141 @subsection Examples
15142
15143 @itemize
15144 @item
15145 Read a grid from @file{pattern}, and center it on a grid of size
15146 300x300 pixels:
15147 @example
15148 life=f=pattern:s=300x300
15149 @end example
15150
15151 @item
15152 Generate a random grid of size 200x200, with a fill ratio of 2/3:
15153 @example
15154 life=ratio=2/3:s=200x200
15155 @end example
15156
15157 @item
15158 Specify a custom rule for evolving a randomly generated grid:
15159 @example
15160 life=rule=S14/B34
15161 @end example
15162
15163 @item
15164 Full example with slow death effect (mold) using @command{ffplay}:
15165 @example
15166 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
15167 @end example
15168 @end itemize
15169
15170 @anchor{allrgb}
15171 @anchor{allyuv}
15172 @anchor{color}
15173 @anchor{haldclutsrc}
15174 @anchor{nullsrc}
15175 @anchor{rgbtestsrc}
15176 @anchor{smptebars}
15177 @anchor{smptehdbars}
15178 @anchor{testsrc}
15179 @anchor{testsrc2}
15180 @anchor{yuvtestsrc}
15181 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
15182
15183 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
15184
15185 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
15186
15187 The @code{color} source provides an uniformly colored input.
15188
15189 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
15190 @ref{haldclut} filter.
15191
15192 The @code{nullsrc} source returns unprocessed video frames. It is
15193 mainly useful to be employed in analysis / debugging tools, or as the
15194 source for filters which ignore the input data.
15195
15196 The @code{rgbtestsrc} source generates an RGB test pattern useful for
15197 detecting RGB vs BGR issues. You should see a red, green and blue
15198 stripe from top to bottom.
15199
15200 The @code{smptebars} source generates a color bars pattern, based on
15201 the SMPTE Engineering Guideline EG 1-1990.
15202
15203 The @code{smptehdbars} source generates a color bars pattern, based on
15204 the SMPTE RP 219-2002.
15205
15206 The @code{testsrc} source generates a test video pattern, showing a
15207 color pattern, a scrolling gradient and a timestamp. This is mainly
15208 intended for testing purposes.
15209
15210 The @code{testsrc2} source is similar to testsrc, but supports more
15211 pixel formats instead of just @code{rgb24}. This allows using it as an
15212 input for other tests without requiring a format conversion.
15213
15214 The @code{yuvtestsrc} source generates an YUV test pattern. You should
15215 see a y, cb and cr stripe from top to bottom.
15216
15217 The sources accept the following parameters:
15218
15219 @table @option
15220
15221 @item color, c
15222 Specify the color of the source, only available in the @code{color}
15223 source. For the syntax of this option, check the "Color" section in the
15224 ffmpeg-utils manual.
15225
15226 @item level
15227 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
15228 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
15229 pixels to be used as identity matrix for 3D lookup tables. Each component is
15230 coded on a @code{1/(N*N)} scale.
15231
15232 @item size, s
15233 Specify the size of the sourced video. For the syntax of this option, check the
15234 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15235 The default value is @code{320x240}.
15236
15237 This option is not available with the @code{haldclutsrc} filter.
15238
15239 @item rate, r
15240 Specify the frame rate of the sourced video, as the number of frames
15241 generated per second. It has to be a string in the format
15242 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15243 number or a valid video frame rate abbreviation. The default value is
15244 "25".
15245
15246 @item sar
15247 Set the sample aspect ratio of the sourced video.
15248
15249 @item duration, d
15250 Set the duration of the sourced video. See
15251 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15252 for the accepted syntax.
15253
15254 If not specified, or the expressed duration is negative, the video is
15255 supposed to be generated forever.
15256
15257 @item decimals, n
15258 Set the number of decimals to show in the timestamp, only available in the
15259 @code{testsrc} source.
15260
15261 The displayed timestamp value will correspond to the original
15262 timestamp value multiplied by the power of 10 of the specified
15263 value. Default value is 0.
15264 @end table
15265
15266 For example the following:
15267 @example
15268 testsrc=duration=5.3:size=qcif:rate=10
15269 @end example
15270
15271 will generate a video with a duration of 5.3 seconds, with size
15272 176x144 and a frame rate of 10 frames per second.
15273
15274 The following graph description will generate a red source
15275 with an opacity of 0.2, with size "qcif" and a frame rate of 10
15276 frames per second.
15277 @example
15278 color=c=red@@0.2:s=qcif:r=10
15279 @end example
15280
15281 If the input content is to be ignored, @code{nullsrc} can be used. The
15282 following command generates noise in the luminance plane by employing
15283 the @code{geq} filter:
15284 @example
15285 nullsrc=s=256x256, geq=random(1)*255:128:128
15286 @end example
15287
15288 @subsection Commands
15289
15290 The @code{color} source supports the following commands:
15291
15292 @table @option
15293 @item c, color
15294 Set the color of the created image. Accepts the same syntax of the
15295 corresponding @option{color} option.
15296 @end table
15297
15298 @c man end VIDEO SOURCES
15299
15300 @chapter Video Sinks
15301 @c man begin VIDEO SINKS
15302
15303 Below is a description of the currently available video sinks.
15304
15305 @section buffersink
15306
15307 Buffer video frames, and make them available to the end of the filter
15308 graph.
15309
15310 This sink is mainly intended for programmatic use, in particular
15311 through the interface defined in @file{libavfilter/buffersink.h}
15312 or the options system.
15313
15314 It accepts a pointer to an AVBufferSinkContext structure, which
15315 defines the incoming buffers' formats, to be passed as the opaque
15316 parameter to @code{avfilter_init_filter} for initialization.
15317
15318 @section nullsink
15319
15320 Null video sink: do absolutely nothing with the input video. It is
15321 mainly useful as a template and for use in analysis / debugging
15322 tools.
15323
15324 @c man end VIDEO SINKS
15325
15326 @chapter Multimedia Filters
15327 @c man begin MULTIMEDIA FILTERS
15328
15329 Below is a description of the currently available multimedia filters.
15330
15331 @section ahistogram
15332
15333 Convert input audio to a video output, displaying the volume histogram.
15334
15335 The filter accepts the following options:
15336
15337 @table @option
15338 @item dmode
15339 Specify how histogram is calculated.
15340
15341 It accepts the following values:
15342 @table @samp
15343 @item single
15344 Use single histogram for all channels.
15345 @item separate
15346 Use separate histogram for each channel.
15347 @end table
15348 Default is @code{single}.
15349
15350 @item rate, r
15351 Set frame rate, expressed as number of frames per second. Default
15352 value is "25".
15353
15354 @item size, s
15355 Specify the video size for the output. For the syntax of this option, check the
15356 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15357 Default value is @code{hd720}.
15358
15359 @item scale
15360 Set display scale.
15361
15362 It accepts the following values:
15363 @table @samp
15364 @item log
15365 logarithmic
15366 @item sqrt
15367 square root
15368 @item cbrt
15369 cubic root
15370 @item lin
15371 linear
15372 @item rlog
15373 reverse logarithmic
15374 @end table
15375 Default is @code{log}.
15376
15377 @item ascale
15378 Set amplitude scale.
15379
15380 It accepts the following values:
15381 @table @samp
15382 @item log
15383 logarithmic
15384 @item lin
15385 linear
15386 @end table
15387 Default is @code{log}.
15388
15389 @item acount
15390 Set how much frames to accumulate in histogram.
15391 Defauls is 1. Setting this to -1 accumulates all frames.
15392
15393 @item rheight
15394 Set histogram ratio of window height.
15395
15396 @item slide
15397 Set sonogram sliding.
15398
15399 It accepts the following values:
15400 @table @samp
15401 @item replace
15402 replace old rows with new ones.
15403 @item scroll
15404 scroll from top to bottom.
15405 @end table
15406 Default is @code{replace}.
15407 @end table
15408
15409 @section aphasemeter
15410
15411 Convert input audio to a video output, displaying the audio phase.
15412
15413 The filter accepts the following options:
15414
15415 @table @option
15416 @item rate, r
15417 Set the output frame rate. Default value is @code{25}.
15418
15419 @item size, s
15420 Set the video size for the output. For the syntax of this option, check the
15421 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15422 Default value is @code{800x400}.
15423
15424 @item rc
15425 @item gc
15426 @item bc
15427 Specify the red, green, blue contrast. Default values are @code{2},
15428 @code{7} and @code{1}.
15429 Allowed range is @code{[0, 255]}.
15430
15431 @item mpc
15432 Set color which will be used for drawing median phase. If color is
15433 @code{none} which is default, no median phase value will be drawn.
15434 @end table
15435
15436 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
15437 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
15438 The @code{-1} means left and right channels are completely out of phase and
15439 @code{1} means channels are in phase.
15440
15441 @section avectorscope
15442
15443 Convert input audio to a video output, representing the audio vector
15444 scope.
15445
15446 The filter is used to measure the difference between channels of stereo
15447 audio stream. A monoaural signal, consisting of identical left and right
15448 signal, results in straight vertical line. Any stereo separation is visible
15449 as a deviation from this line, creating a Lissajous figure.
15450 If the straight (or deviation from it) but horizontal line appears this
15451 indicates that the left and right channels are out of phase.
15452
15453 The filter accepts the following options:
15454
15455 @table @option
15456 @item mode, m
15457 Set the vectorscope mode.
15458
15459 Available values are:
15460 @table @samp
15461 @item lissajous
15462 Lissajous rotated by 45 degrees.
15463
15464 @item lissajous_xy
15465 Same as above but not rotated.
15466
15467 @item polar
15468 Shape resembling half of circle.
15469 @end table
15470
15471 Default value is @samp{lissajous}.
15472
15473 @item size, s
15474 Set the video size for the output. For the syntax of this option, check the
15475 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15476 Default value is @code{400x400}.
15477
15478 @item rate, r
15479 Set the output frame rate. Default value is @code{25}.
15480
15481 @item rc
15482 @item gc
15483 @item bc
15484 @item ac
15485 Specify the red, green, blue and alpha contrast. Default values are @code{40},
15486 @code{160}, @code{80} and @code{255}.
15487 Allowed range is @code{[0, 255]}.
15488
15489 @item rf
15490 @item gf
15491 @item bf
15492 @item af
15493 Specify the red, green, blue and alpha fade. Default values are @code{15},
15494 @code{10}, @code{5} and @code{5}.
15495 Allowed range is @code{[0, 255]}.
15496
15497 @item zoom
15498 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
15499
15500 @item draw
15501 Set the vectorscope drawing mode.
15502
15503 Available values are:
15504 @table @samp
15505 @item dot
15506 Draw dot for each sample.
15507
15508 @item line
15509 Draw line between previous and current sample.
15510 @end table
15511
15512 Default value is @samp{dot}.
15513
15514 @item scale
15515 Specify amplitude scale of audio samples.
15516
15517 Available values are:
15518 @table @samp
15519 @item lin
15520 Linear.
15521
15522 @item sqrt
15523 Square root.
15524
15525 @item cbrt
15526 Cubic root.
15527
15528 @item log
15529 Logarithmic.
15530 @end table
15531
15532 @end table
15533
15534 @subsection Examples
15535
15536 @itemize
15537 @item
15538 Complete example using @command{ffplay}:
15539 @example
15540 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
15541              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
15542 @end example
15543 @end itemize
15544
15545 @section bench, abench
15546
15547 Benchmark part of a filtergraph.
15548
15549 The filter accepts the following options:
15550
15551 @table @option
15552 @item action
15553 Start or stop a timer.
15554
15555 Available values are:
15556 @table @samp
15557 @item start
15558 Get the current time, set it as frame metadata (using the key
15559 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
15560
15561 @item stop
15562 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
15563 the input frame metadata to get the time difference. Time difference, average,
15564 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
15565 @code{min}) are then printed. The timestamps are expressed in seconds.
15566 @end table
15567 @end table
15568
15569 @subsection Examples
15570
15571 @itemize
15572 @item
15573 Benchmark @ref{selectivecolor} filter:
15574 @example
15575 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
15576 @end example
15577 @end itemize
15578
15579 @section concat
15580
15581 Concatenate audio and video streams, joining them together one after the
15582 other.
15583
15584 The filter works on segments of synchronized video and audio streams. All
15585 segments must have the same number of streams of each type, and that will
15586 also be the number of streams at output.
15587
15588 The filter accepts the following options:
15589
15590 @table @option
15591
15592 @item n
15593 Set the number of segments. Default is 2.
15594
15595 @item v
15596 Set the number of output video streams, that is also the number of video
15597 streams in each segment. Default is 1.
15598
15599 @item a
15600 Set the number of output audio streams, that is also the number of audio
15601 streams in each segment. Default is 0.
15602
15603 @item unsafe
15604 Activate unsafe mode: do not fail if segments have a different format.
15605
15606 @end table
15607
15608 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
15609 @var{a} audio outputs.
15610
15611 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
15612 segment, in the same order as the outputs, then the inputs for the second
15613 segment, etc.
15614
15615 Related streams do not always have exactly the same duration, for various
15616 reasons including codec frame size or sloppy authoring. For that reason,
15617 related synchronized streams (e.g. a video and its audio track) should be
15618 concatenated at once. The concat filter will use the duration of the longest
15619 stream in each segment (except the last one), and if necessary pad shorter
15620 audio streams with silence.
15621
15622 For this filter to work correctly, all segments must start at timestamp 0.
15623
15624 All corresponding streams must have the same parameters in all segments; the
15625 filtering system will automatically select a common pixel format for video
15626 streams, and a common sample format, sample rate and channel layout for
15627 audio streams, but other settings, such as resolution, must be converted
15628 explicitly by the user.
15629
15630 Different frame rates are acceptable but will result in variable frame rate
15631 at output; be sure to configure the output file to handle it.
15632
15633 @subsection Examples
15634
15635 @itemize
15636 @item
15637 Concatenate an opening, an episode and an ending, all in bilingual version
15638 (video in stream 0, audio in streams 1 and 2):
15639 @example
15640 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
15641   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
15642    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
15643   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
15644 @end example
15645
15646 @item
15647 Concatenate two parts, handling audio and video separately, using the
15648 (a)movie sources, and adjusting the resolution:
15649 @example
15650 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
15651 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
15652 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
15653 @end example
15654 Note that a desync will happen at the stitch if the audio and video streams
15655 do not have exactly the same duration in the first file.
15656
15657 @end itemize
15658
15659 @section drawgraph, adrawgraph
15660
15661 Draw a graph using input video or audio metadata.
15662
15663 It accepts the following parameters:
15664
15665 @table @option
15666 @item m1
15667 Set 1st frame metadata key from which metadata values will be used to draw a graph.
15668
15669 @item fg1
15670 Set 1st foreground color expression.
15671
15672 @item m2
15673 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
15674
15675 @item fg2
15676 Set 2nd foreground color expression.
15677
15678 @item m3
15679 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
15680
15681 @item fg3
15682 Set 3rd foreground color expression.
15683
15684 @item m4
15685 Set 4th frame metadata key from which metadata values will be used to draw a graph.
15686
15687 @item fg4
15688 Set 4th foreground color expression.
15689
15690 @item min
15691 Set minimal value of metadata value.
15692
15693 @item max
15694 Set maximal value of metadata value.
15695
15696 @item bg
15697 Set graph background color. Default is white.
15698
15699 @item mode
15700 Set graph mode.
15701
15702 Available values for mode is:
15703 @table @samp
15704 @item bar
15705 @item dot
15706 @item line
15707 @end table
15708
15709 Default is @code{line}.
15710
15711 @item slide
15712 Set slide mode.
15713
15714 Available values for slide is:
15715 @table @samp
15716 @item frame
15717 Draw new frame when right border is reached.
15718
15719 @item replace
15720 Replace old columns with new ones.
15721
15722 @item scroll
15723 Scroll from right to left.
15724
15725 @item rscroll
15726 Scroll from left to right.
15727
15728 @item picture
15729 Draw single picture.
15730 @end table
15731
15732 Default is @code{frame}.
15733
15734 @item size
15735 Set size of graph video. For the syntax of this option, check the
15736 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15737 The default value is @code{900x256}.
15738
15739 The foreground color expressions can use the following variables:
15740 @table @option
15741 @item MIN
15742 Minimal value of metadata value.
15743
15744 @item MAX
15745 Maximal value of metadata value.
15746
15747 @item VAL
15748 Current metadata key value.
15749 @end table
15750
15751 The color is defined as 0xAABBGGRR.
15752 @end table
15753
15754 Example using metadata from @ref{signalstats} filter:
15755 @example
15756 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
15757 @end example
15758
15759 Example using metadata from @ref{ebur128} filter:
15760 @example
15761 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
15762 @end example
15763
15764 @anchor{ebur128}
15765 @section ebur128
15766
15767 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
15768 it unchanged. By default, it logs a message at a frequency of 10Hz with the
15769 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
15770 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
15771
15772 The filter also has a video output (see the @var{video} option) with a real
15773 time graph to observe the loudness evolution. The graphic contains the logged
15774 message mentioned above, so it is not printed anymore when this option is set,
15775 unless the verbose logging is set. The main graphing area contains the
15776 short-term loudness (3 seconds of analysis), and the gauge on the right is for
15777 the momentary loudness (400 milliseconds).
15778
15779 More information about the Loudness Recommendation EBU R128 on
15780 @url{http://tech.ebu.ch/loudness}.
15781
15782 The filter accepts the following options:
15783
15784 @table @option
15785
15786 @item video
15787 Activate the video output. The audio stream is passed unchanged whether this
15788 option is set or no. The video stream will be the first output stream if
15789 activated. Default is @code{0}.
15790
15791 @item size
15792 Set the video size. This option is for video only. For the syntax of this
15793 option, check the
15794 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15795 Default and minimum resolution is @code{640x480}.
15796
15797 @item meter
15798 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
15799 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
15800 other integer value between this range is allowed.
15801
15802 @item metadata
15803 Set metadata injection. If set to @code{1}, the audio input will be segmented
15804 into 100ms output frames, each of them containing various loudness information
15805 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
15806
15807 Default is @code{0}.
15808
15809 @item framelog
15810 Force the frame logging level.
15811
15812 Available values are:
15813 @table @samp
15814 @item info
15815 information logging level
15816 @item verbose
15817 verbose logging level
15818 @end table
15819
15820 By default, the logging level is set to @var{info}. If the @option{video} or
15821 the @option{metadata} options are set, it switches to @var{verbose}.
15822
15823 @item peak
15824 Set peak mode(s).
15825
15826 Available modes can be cumulated (the option is a @code{flag} type). Possible
15827 values are:
15828 @table @samp
15829 @item none
15830 Disable any peak mode (default).
15831 @item sample
15832 Enable sample-peak mode.
15833
15834 Simple peak mode looking for the higher sample value. It logs a message
15835 for sample-peak (identified by @code{SPK}).
15836 @item true
15837 Enable true-peak mode.
15838
15839 If enabled, the peak lookup is done on an over-sampled version of the input
15840 stream for better peak accuracy. It logs a message for true-peak.
15841 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
15842 This mode requires a build with @code{libswresample}.
15843 @end table
15844
15845 @item dualmono
15846 Treat mono input files as "dual mono". If a mono file is intended for playback
15847 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
15848 If set to @code{true}, this option will compensate for this effect.
15849 Multi-channel input files are not affected by this option.
15850
15851 @item panlaw
15852 Set a specific pan law to be used for the measurement of dual mono files.
15853 This parameter is optional, and has a default value of -3.01dB.
15854 @end table
15855
15856 @subsection Examples
15857
15858 @itemize
15859 @item
15860 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
15861 @example
15862 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
15863 @end example
15864
15865 @item
15866 Run an analysis with @command{ffmpeg}:
15867 @example
15868 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
15869 @end example
15870 @end itemize
15871
15872 @section interleave, ainterleave
15873
15874 Temporally interleave frames from several inputs.
15875
15876 @code{interleave} works with video inputs, @code{ainterleave} with audio.
15877
15878 These filters read frames from several inputs and send the oldest
15879 queued frame to the output.
15880
15881 Input streams must have a well defined, monotonically increasing frame
15882 timestamp values.
15883
15884 In order to submit one frame to output, these filters need to enqueue
15885 at least one frame for each input, so they cannot work in case one
15886 input is not yet terminated and will not receive incoming frames.
15887
15888 For example consider the case when one input is a @code{select} filter
15889 which always drop input frames. The @code{interleave} filter will keep
15890 reading from that input, but it will never be able to send new frames
15891 to output until the input will send an end-of-stream signal.
15892
15893 Also, depending on inputs synchronization, the filters will drop
15894 frames in case one input receives more frames than the other ones, and
15895 the queue is already filled.
15896
15897 These filters accept the following options:
15898
15899 @table @option
15900 @item nb_inputs, n
15901 Set the number of different inputs, it is 2 by default.
15902 @end table
15903
15904 @subsection Examples
15905
15906 @itemize
15907 @item
15908 Interleave frames belonging to different streams using @command{ffmpeg}:
15909 @example
15910 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
15911 @end example
15912
15913 @item
15914 Add flickering blur effect:
15915 @example
15916 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
15917 @end example
15918 @end itemize
15919
15920 @section metadata, ametadata
15921
15922 Manipulate frame metadata.
15923
15924 This filter accepts the following options:
15925
15926 @table @option
15927 @item mode
15928 Set mode of operation of the filter.
15929
15930 Can be one of the following:
15931
15932 @table @samp
15933 @item select
15934 If both @code{value} and @code{key} is set, select frames
15935 which have such metadata. If only @code{key} is set, select
15936 every frame that has such key in metadata.
15937
15938 @item add
15939 Add new metadata @code{key} and @code{value}. If key is already available
15940 do nothing.
15941
15942 @item modify
15943 Modify value of already present key.
15944
15945 @item delete
15946 If @code{value} is set, delete only keys that have such value.
15947 Otherwise, delete key.
15948
15949 @item print
15950 Print key and its value if metadata was found. If @code{key} is not set print all
15951 metadata values available in frame.
15952 @end table
15953
15954 @item key
15955 Set key used with all modes. Must be set for all modes except @code{print}.
15956
15957 @item value
15958 Set metadata value which will be used. This option is mandatory for
15959 @code{modify} and @code{add} mode.
15960
15961 @item function
15962 Which function to use when comparing metadata value and @code{value}.
15963
15964 Can be one of following:
15965
15966 @table @samp
15967 @item same_str
15968 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
15969
15970 @item starts_with
15971 Values are interpreted as strings, returns true if metadata value starts with
15972 the @code{value} option string.
15973
15974 @item less
15975 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
15976
15977 @item equal
15978 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
15979
15980 @item greater
15981 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
15982
15983 @item expr
15984 Values are interpreted as floats, returns true if expression from option @code{expr}
15985 evaluates to true.
15986 @end table
15987
15988 @item expr
15989 Set expression which is used when @code{function} is set to @code{expr}.
15990 The expression is evaluated through the eval API and can contain the following
15991 constants:
15992
15993 @table @option
15994 @item VALUE1
15995 Float representation of @code{value} from metadata key.
15996
15997 @item VALUE2
15998 Float representation of @code{value} as supplied by user in @code{value} option.
15999
16000 @item file
16001 If specified in @code{print} mode, output is written to the named file. Instead of
16002 plain filename any writable url can be specified. Filename ``-'' is a shorthand
16003 for standard output. If @code{file} option is not set, output is written to the log
16004 with AV_LOG_INFO loglevel.
16005 @end table
16006
16007 @end table
16008
16009 @subsection Examples
16010
16011 @itemize
16012 @item
16013 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
16014 between 0 and 1.
16015 @example
16016 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
16017 @end example
16018 @item
16019 Print silencedetect output to file @file{metadata.txt}.
16020 @example
16021 silencedetect,ametadata=mode=print:file=metadata.txt
16022 @end example
16023 @item
16024 Direct all metadata to a pipe with file descriptor 4.
16025 @example
16026 metadata=mode=print:file='pipe\:4'
16027 @end example
16028 @end itemize
16029
16030 @section perms, aperms
16031
16032 Set read/write permissions for the output frames.
16033
16034 These filters are mainly aimed at developers to test direct path in the
16035 following filter in the filtergraph.
16036
16037 The filters accept the following options:
16038
16039 @table @option
16040 @item mode
16041 Select the permissions mode.
16042
16043 It accepts the following values:
16044 @table @samp
16045 @item none
16046 Do nothing. This is the default.
16047 @item ro
16048 Set all the output frames read-only.
16049 @item rw
16050 Set all the output frames directly writable.
16051 @item toggle
16052 Make the frame read-only if writable, and writable if read-only.
16053 @item random
16054 Set each output frame read-only or writable randomly.
16055 @end table
16056
16057 @item seed
16058 Set the seed for the @var{random} mode, must be an integer included between
16059 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16060 @code{-1}, the filter will try to use a good random seed on a best effort
16061 basis.
16062 @end table
16063
16064 Note: in case of auto-inserted filter between the permission filter and the
16065 following one, the permission might not be received as expected in that
16066 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
16067 perms/aperms filter can avoid this problem.
16068
16069 @section realtime, arealtime
16070
16071 Slow down filtering to match real time approximatively.
16072
16073 These filters will pause the filtering for a variable amount of time to
16074 match the output rate with the input timestamps.
16075 They are similar to the @option{re} option to @code{ffmpeg}.
16076
16077 They accept the following options:
16078
16079 @table @option
16080 @item limit
16081 Time limit for the pauses. Any pause longer than that will be considered
16082 a timestamp discontinuity and reset the timer. Default is 2 seconds.
16083 @end table
16084
16085 @anchor{select}
16086 @section select, aselect
16087
16088 Select frames to pass in output.
16089
16090 This filter accepts the following options:
16091
16092 @table @option
16093
16094 @item expr, e
16095 Set expression, which is evaluated for each input frame.
16096
16097 If the expression is evaluated to zero, the frame is discarded.
16098
16099 If the evaluation result is negative or NaN, the frame is sent to the
16100 first output; otherwise it is sent to the output with index
16101 @code{ceil(val)-1}, assuming that the input index starts from 0.
16102
16103 For example a value of @code{1.2} corresponds to the output with index
16104 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
16105
16106 @item outputs, n
16107 Set the number of outputs. The output to which to send the selected
16108 frame is based on the result of the evaluation. Default value is 1.
16109 @end table
16110
16111 The expression can contain the following constants:
16112
16113 @table @option
16114 @item n
16115 The (sequential) number of the filtered frame, starting from 0.
16116
16117 @item selected_n
16118 The (sequential) number of the selected frame, starting from 0.
16119
16120 @item prev_selected_n
16121 The sequential number of the last selected frame. It's NAN if undefined.
16122
16123 @item TB
16124 The timebase of the input timestamps.
16125
16126 @item pts
16127 The PTS (Presentation TimeStamp) of the filtered video frame,
16128 expressed in @var{TB} units. It's NAN if undefined.
16129
16130 @item t
16131 The PTS of the filtered video frame,
16132 expressed in seconds. It's NAN if undefined.
16133
16134 @item prev_pts
16135 The PTS of the previously filtered video frame. It's NAN if undefined.
16136
16137 @item prev_selected_pts
16138 The PTS of the last previously filtered video frame. It's NAN if undefined.
16139
16140 @item prev_selected_t
16141 The PTS of the last previously selected video frame. It's NAN if undefined.
16142
16143 @item start_pts
16144 The PTS of the first video frame in the video. It's NAN if undefined.
16145
16146 @item start_t
16147 The time of the first video frame in the video. It's NAN if undefined.
16148
16149 @item pict_type @emph{(video only)}
16150 The type of the filtered frame. It can assume one of the following
16151 values:
16152 @table @option
16153 @item I
16154 @item P
16155 @item B
16156 @item S
16157 @item SI
16158 @item SP
16159 @item BI
16160 @end table
16161
16162 @item interlace_type @emph{(video only)}
16163 The frame interlace type. It can assume one of the following values:
16164 @table @option
16165 @item PROGRESSIVE
16166 The frame is progressive (not interlaced).
16167 @item TOPFIRST
16168 The frame is top-field-first.
16169 @item BOTTOMFIRST
16170 The frame is bottom-field-first.
16171 @end table
16172
16173 @item consumed_sample_n @emph{(audio only)}
16174 the number of selected samples before the current frame
16175
16176 @item samples_n @emph{(audio only)}
16177 the number of samples in the current frame
16178
16179 @item sample_rate @emph{(audio only)}
16180 the input sample rate
16181
16182 @item key
16183 This is 1 if the filtered frame is a key-frame, 0 otherwise.
16184
16185 @item pos
16186 the position in the file of the filtered frame, -1 if the information
16187 is not available (e.g. for synthetic video)
16188
16189 @item scene @emph{(video only)}
16190 value between 0 and 1 to indicate a new scene; a low value reflects a low
16191 probability for the current frame to introduce a new scene, while a higher
16192 value means the current frame is more likely to be one (see the example below)
16193
16194 @item concatdec_select
16195 The concat demuxer can select only part of a concat input file by setting an
16196 inpoint and an outpoint, but the output packets may not be entirely contained
16197 in the selected interval. By using this variable, it is possible to skip frames
16198 generated by the concat demuxer which are not exactly contained in the selected
16199 interval.
16200
16201 This works by comparing the frame pts against the @var{lavf.concat.start_time}
16202 and the @var{lavf.concat.duration} packet metadata values which are also
16203 present in the decoded frames.
16204
16205 The @var{concatdec_select} variable is -1 if the frame pts is at least
16206 start_time and either the duration metadata is missing or the frame pts is less
16207 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
16208 missing.
16209
16210 That basically means that an input frame is selected if its pts is within the
16211 interval set by the concat demuxer.
16212
16213 @end table
16214
16215 The default value of the select expression is "1".
16216
16217 @subsection Examples
16218
16219 @itemize
16220 @item
16221 Select all frames in input:
16222 @example
16223 select
16224 @end example
16225
16226 The example above is the same as:
16227 @example
16228 select=1
16229 @end example
16230
16231 @item
16232 Skip all frames:
16233 @example
16234 select=0
16235 @end example
16236
16237 @item
16238 Select only I-frames:
16239 @example
16240 select='eq(pict_type\,I)'
16241 @end example
16242
16243 @item
16244 Select one frame every 100:
16245 @example
16246 select='not(mod(n\,100))'
16247 @end example
16248
16249 @item
16250 Select only frames contained in the 10-20 time interval:
16251 @example
16252 select=between(t\,10\,20)
16253 @end example
16254
16255 @item
16256 Select only I-frames contained in the 10-20 time interval:
16257 @example
16258 select=between(t\,10\,20)*eq(pict_type\,I)
16259 @end example
16260
16261 @item
16262 Select frames with a minimum distance of 10 seconds:
16263 @example
16264 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
16265 @end example
16266
16267 @item
16268 Use aselect to select only audio frames with samples number > 100:
16269 @example
16270 aselect='gt(samples_n\,100)'
16271 @end example
16272
16273 @item
16274 Create a mosaic of the first scenes:
16275 @example
16276 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
16277 @end example
16278
16279 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
16280 choice.
16281
16282 @item
16283 Send even and odd frames to separate outputs, and compose them:
16284 @example
16285 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
16286 @end example
16287
16288 @item
16289 Select useful frames from an ffconcat file which is using inpoints and
16290 outpoints but where the source files are not intra frame only.
16291 @example
16292 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
16293 @end example
16294 @end itemize
16295
16296 @section sendcmd, asendcmd
16297
16298 Send commands to filters in the filtergraph.
16299
16300 These filters read commands to be sent to other filters in the
16301 filtergraph.
16302
16303 @code{sendcmd} must be inserted between two video filters,
16304 @code{asendcmd} must be inserted between two audio filters, but apart
16305 from that they act the same way.
16306
16307 The specification of commands can be provided in the filter arguments
16308 with the @var{commands} option, or in a file specified by the
16309 @var{filename} option.
16310
16311 These filters accept the following options:
16312 @table @option
16313 @item commands, c
16314 Set the commands to be read and sent to the other filters.
16315 @item filename, f
16316 Set the filename of the commands to be read and sent to the other
16317 filters.
16318 @end table
16319
16320 @subsection Commands syntax
16321
16322 A commands description consists of a sequence of interval
16323 specifications, comprising a list of commands to be executed when a
16324 particular event related to that interval occurs. The occurring event
16325 is typically the current frame time entering or leaving a given time
16326 interval.
16327
16328 An interval is specified by the following syntax:
16329 @example
16330 @var{START}[-@var{END}] @var{COMMANDS};
16331 @end example
16332
16333 The time interval is specified by the @var{START} and @var{END} times.
16334 @var{END} is optional and defaults to the maximum time.
16335
16336 The current frame time is considered within the specified interval if
16337 it is included in the interval [@var{START}, @var{END}), that is when
16338 the time is greater or equal to @var{START} and is lesser than
16339 @var{END}.
16340
16341 @var{COMMANDS} consists of a sequence of one or more command
16342 specifications, separated by ",", relating to that interval.  The
16343 syntax of a command specification is given by:
16344 @example
16345 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
16346 @end example
16347
16348 @var{FLAGS} is optional and specifies the type of events relating to
16349 the time interval which enable sending the specified command, and must
16350 be a non-null sequence of identifier flags separated by "+" or "|" and
16351 enclosed between "[" and "]".
16352
16353 The following flags are recognized:
16354 @table @option
16355 @item enter
16356 The command is sent when the current frame timestamp enters the
16357 specified interval. In other words, the command is sent when the
16358 previous frame timestamp was not in the given interval, and the
16359 current is.
16360
16361 @item leave
16362 The command is sent when the current frame timestamp leaves the
16363 specified interval. In other words, the command is sent when the
16364 previous frame timestamp was in the given interval, and the
16365 current is not.
16366 @end table
16367
16368 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
16369 assumed.
16370
16371 @var{TARGET} specifies the target of the command, usually the name of
16372 the filter class or a specific filter instance name.
16373
16374 @var{COMMAND} specifies the name of the command for the target filter.
16375
16376 @var{ARG} is optional and specifies the optional list of argument for
16377 the given @var{COMMAND}.
16378
16379 Between one interval specification and another, whitespaces, or
16380 sequences of characters starting with @code{#} until the end of line,
16381 are ignored and can be used to annotate comments.
16382
16383 A simplified BNF description of the commands specification syntax
16384 follows:
16385 @example
16386 @var{COMMAND_FLAG}  ::= "enter" | "leave"
16387 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
16388 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
16389 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
16390 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
16391 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
16392 @end example
16393
16394 @subsection Examples
16395
16396 @itemize
16397 @item
16398 Specify audio tempo change at second 4:
16399 @example
16400 asendcmd=c='4.0 atempo tempo 1.5',atempo
16401 @end example
16402
16403 @item
16404 Specify a list of drawtext and hue commands in a file.
16405 @example
16406 # show text in the interval 5-10
16407 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
16408          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
16409
16410 # desaturate the image in the interval 15-20
16411 15.0-20.0 [enter] hue s 0,
16412           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
16413           [leave] hue s 1,
16414           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
16415
16416 # apply an exponential saturation fade-out effect, starting from time 25
16417 25 [enter] hue s exp(25-t)
16418 @end example
16419
16420 A filtergraph allowing to read and process the above command list
16421 stored in a file @file{test.cmd}, can be specified with:
16422 @example
16423 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
16424 @end example
16425 @end itemize
16426
16427 @anchor{setpts}
16428 @section setpts, asetpts
16429
16430 Change the PTS (presentation timestamp) of the input frames.
16431
16432 @code{setpts} works on video frames, @code{asetpts} on audio frames.
16433
16434 This filter accepts the following options:
16435
16436 @table @option
16437
16438 @item expr
16439 The expression which is evaluated for each frame to construct its timestamp.
16440
16441 @end table
16442
16443 The expression is evaluated through the eval API and can contain the following
16444 constants:
16445
16446 @table @option
16447 @item FRAME_RATE
16448 frame rate, only defined for constant frame-rate video
16449
16450 @item PTS
16451 The presentation timestamp in input
16452
16453 @item N
16454 The count of the input frame for video or the number of consumed samples,
16455 not including the current frame for audio, starting from 0.
16456
16457 @item NB_CONSUMED_SAMPLES
16458 The number of consumed samples, not including the current frame (only
16459 audio)
16460
16461 @item NB_SAMPLES, S
16462 The number of samples in the current frame (only audio)
16463
16464 @item SAMPLE_RATE, SR
16465 The audio sample rate.
16466
16467 @item STARTPTS
16468 The PTS of the first frame.
16469
16470 @item STARTT
16471 the time in seconds of the first frame
16472
16473 @item INTERLACED
16474 State whether the current frame is interlaced.
16475
16476 @item T
16477 the time in seconds of the current frame
16478
16479 @item POS
16480 original position in the file of the frame, or undefined if undefined
16481 for the current frame
16482
16483 @item PREV_INPTS
16484 The previous input PTS.
16485
16486 @item PREV_INT
16487 previous input time in seconds
16488
16489 @item PREV_OUTPTS
16490 The previous output PTS.
16491
16492 @item PREV_OUTT
16493 previous output time in seconds
16494
16495 @item RTCTIME
16496 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
16497 instead.
16498
16499 @item RTCSTART
16500 The wallclock (RTC) time at the start of the movie in microseconds.
16501
16502 @item TB
16503 The timebase of the input timestamps.
16504
16505 @end table
16506
16507 @subsection Examples
16508
16509 @itemize
16510 @item
16511 Start counting PTS from zero
16512 @example
16513 setpts=PTS-STARTPTS
16514 @end example
16515
16516 @item
16517 Apply fast motion effect:
16518 @example
16519 setpts=0.5*PTS
16520 @end example
16521
16522 @item
16523 Apply slow motion effect:
16524 @example
16525 setpts=2.0*PTS
16526 @end example
16527
16528 @item
16529 Set fixed rate of 25 frames per second:
16530 @example
16531 setpts=N/(25*TB)
16532 @end example
16533
16534 @item
16535 Set fixed rate 25 fps with some jitter:
16536 @example
16537 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
16538 @end example
16539
16540 @item
16541 Apply an offset of 10 seconds to the input PTS:
16542 @example
16543 setpts=PTS+10/TB
16544 @end example
16545
16546 @item
16547 Generate timestamps from a "live source" and rebase onto the current timebase:
16548 @example
16549 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
16550 @end example
16551
16552 @item
16553 Generate timestamps by counting samples:
16554 @example
16555 asetpts=N/SR/TB
16556 @end example
16557
16558 @end itemize
16559
16560 @section settb, asettb
16561
16562 Set the timebase to use for the output frames timestamps.
16563 It is mainly useful for testing timebase configuration.
16564
16565 It accepts the following parameters:
16566
16567 @table @option
16568
16569 @item expr, tb
16570 The expression which is evaluated into the output timebase.
16571
16572 @end table
16573
16574 The value for @option{tb} is an arithmetic expression representing a
16575 rational. The expression can contain the constants "AVTB" (the default
16576 timebase), "intb" (the input timebase) and "sr" (the sample rate,
16577 audio only). Default value is "intb".
16578
16579 @subsection Examples
16580
16581 @itemize
16582 @item
16583 Set the timebase to 1/25:
16584 @example
16585 settb=expr=1/25
16586 @end example
16587
16588 @item
16589 Set the timebase to 1/10:
16590 @example
16591 settb=expr=0.1
16592 @end example
16593
16594 @item
16595 Set the timebase to 1001/1000:
16596 @example
16597 settb=1+0.001
16598 @end example
16599
16600 @item
16601 Set the timebase to 2*intb:
16602 @example
16603 settb=2*intb
16604 @end example
16605
16606 @item
16607 Set the default timebase value:
16608 @example
16609 settb=AVTB
16610 @end example
16611 @end itemize
16612
16613 @section showcqt
16614 Convert input audio to a video output representing frequency spectrum
16615 logarithmically using Brown-Puckette constant Q transform algorithm with
16616 direct frequency domain coefficient calculation (but the transform itself
16617 is not really constant Q, instead the Q factor is actually variable/clamped),
16618 with musical tone scale, from E0 to D#10.
16619
16620 The filter accepts the following options:
16621
16622 @table @option
16623 @item size, s
16624 Specify the video size for the output. It must be even. For the syntax of this option,
16625 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16626 Default value is @code{1920x1080}.
16627
16628 @item fps, rate, r
16629 Set the output frame rate. Default value is @code{25}.
16630
16631 @item bar_h
16632 Set the bargraph height. It must be even. Default value is @code{-1} which
16633 computes the bargraph height automatically.
16634
16635 @item axis_h
16636 Set the axis height. It must be even. Default value is @code{-1} which computes
16637 the axis height automatically.
16638
16639 @item sono_h
16640 Set the sonogram height. It must be even. Default value is @code{-1} which
16641 computes the sonogram height automatically.
16642
16643 @item fullhd
16644 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
16645 instead. Default value is @code{1}.
16646
16647 @item sono_v, volume
16648 Specify the sonogram volume expression. It can contain variables:
16649 @table @option
16650 @item bar_v
16651 the @var{bar_v} evaluated expression
16652 @item frequency, freq, f
16653 the frequency where it is evaluated
16654 @item timeclamp, tc
16655 the value of @var{timeclamp} option
16656 @end table
16657 and functions:
16658 @table @option
16659 @item a_weighting(f)
16660 A-weighting of equal loudness
16661 @item b_weighting(f)
16662 B-weighting of equal loudness
16663 @item c_weighting(f)
16664 C-weighting of equal loudness.
16665 @end table
16666 Default value is @code{16}.
16667
16668 @item bar_v, volume2
16669 Specify the bargraph volume expression. It can contain variables:
16670 @table @option
16671 @item sono_v
16672 the @var{sono_v} evaluated expression
16673 @item frequency, freq, f
16674 the frequency where it is evaluated
16675 @item timeclamp, tc
16676 the value of @var{timeclamp} option
16677 @end table
16678 and functions:
16679 @table @option
16680 @item a_weighting(f)
16681 A-weighting of equal loudness
16682 @item b_weighting(f)
16683 B-weighting of equal loudness
16684 @item c_weighting(f)
16685 C-weighting of equal loudness.
16686 @end table
16687 Default value is @code{sono_v}.
16688
16689 @item sono_g, gamma
16690 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
16691 higher gamma makes the spectrum having more range. Default value is @code{3}.
16692 Acceptable range is @code{[1, 7]}.
16693
16694 @item bar_g, gamma2
16695 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
16696 @code{[1, 7]}.
16697
16698 @item timeclamp, tc
16699 Specify the transform timeclamp. At low frequency, there is trade-off between
16700 accuracy in time domain and frequency domain. If timeclamp is lower,
16701 event in time domain is represented more accurately (such as fast bass drum),
16702 otherwise event in frequency domain is represented more accurately
16703 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
16704
16705 @item basefreq
16706 Specify the transform base frequency. Default value is @code{20.01523126408007475},
16707 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
16708
16709 @item endfreq
16710 Specify the transform end frequency. Default value is @code{20495.59681441799654},
16711 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
16712
16713 @item coeffclamp
16714 This option is deprecated and ignored.
16715
16716 @item tlength
16717 Specify the transform length in time domain. Use this option to control accuracy
16718 trade-off between time domain and frequency domain at every frequency sample.
16719 It can contain variables:
16720 @table @option
16721 @item frequency, freq, f
16722 the frequency where it is evaluated
16723 @item timeclamp, tc
16724 the value of @var{timeclamp} option.
16725 @end table
16726 Default value is @code{384*tc/(384+tc*f)}.
16727
16728 @item count
16729 Specify the transform count for every video frame. Default value is @code{6}.
16730 Acceptable range is @code{[1, 30]}.
16731
16732 @item fcount
16733 Specify the transform count for every single pixel. Default value is @code{0},
16734 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
16735
16736 @item fontfile
16737 Specify font file for use with freetype to draw the axis. If not specified,
16738 use embedded font. Note that drawing with font file or embedded font is not
16739 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
16740 option instead.
16741
16742 @item fontcolor
16743 Specify font color expression. This is arithmetic expression that should return
16744 integer value 0xRRGGBB. It can contain variables:
16745 @table @option
16746 @item frequency, freq, f
16747 the frequency where it is evaluated
16748 @item timeclamp, tc
16749 the value of @var{timeclamp} option
16750 @end table
16751 and functions:
16752 @table @option
16753 @item midi(f)
16754 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
16755 @item r(x), g(x), b(x)
16756 red, green, and blue value of intensity x.
16757 @end table
16758 Default value is @code{st(0, (midi(f)-59.5)/12);
16759 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
16760 r(1-ld(1)) + b(ld(1))}.
16761
16762 @item axisfile
16763 Specify image file to draw the axis. This option override @var{fontfile} and
16764 @var{fontcolor} option.
16765
16766 @item axis, text
16767 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
16768 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
16769 Default value is @code{1}.
16770
16771 @end table
16772
16773 @subsection Examples
16774
16775 @itemize
16776 @item
16777 Playing audio while showing the spectrum:
16778 @example
16779 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
16780 @end example
16781
16782 @item
16783 Same as above, but with frame rate 30 fps:
16784 @example
16785 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
16786 @end example
16787
16788 @item
16789 Playing at 1280x720:
16790 @example
16791 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
16792 @end example
16793
16794 @item
16795 Disable sonogram display:
16796 @example
16797 sono_h=0
16798 @end example
16799
16800 @item
16801 A1 and its harmonics: A1, A2, (near)E3, A3:
16802 @example
16803 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),
16804                  asplit[a][out1]; [a] showcqt [out0]'
16805 @end example
16806
16807 @item
16808 Same as above, but with more accuracy in frequency domain:
16809 @example
16810 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),
16811                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
16812 @end example
16813
16814 @item
16815 Custom volume:
16816 @example
16817 bar_v=10:sono_v=bar_v*a_weighting(f)
16818 @end example
16819
16820 @item
16821 Custom gamma, now spectrum is linear to the amplitude.
16822 @example
16823 bar_g=2:sono_g=2
16824 @end example
16825
16826 @item
16827 Custom tlength equation:
16828 @example
16829 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)))'
16830 @end example
16831
16832 @item
16833 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
16834 @example
16835 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
16836 @end example
16837
16838 @item
16839 Custom frequency range with custom axis using image file:
16840 @example
16841 axisfile=myaxis.png:basefreq=40:endfreq=10000
16842 @end example
16843 @end itemize
16844
16845 @section showfreqs
16846
16847 Convert input audio to video output representing the audio power spectrum.
16848 Audio amplitude is on Y-axis while frequency is on X-axis.
16849
16850 The filter accepts the following options:
16851
16852 @table @option
16853 @item size, s
16854 Specify size of video. For the syntax of this option, check the
16855 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16856 Default is @code{1024x512}.
16857
16858 @item mode
16859 Set display mode.
16860 This set how each frequency bin will be represented.
16861
16862 It accepts the following values:
16863 @table @samp
16864 @item line
16865 @item bar
16866 @item dot
16867 @end table
16868 Default is @code{bar}.
16869
16870 @item ascale
16871 Set amplitude scale.
16872
16873 It accepts the following values:
16874 @table @samp
16875 @item lin
16876 Linear scale.
16877
16878 @item sqrt
16879 Square root scale.
16880
16881 @item cbrt
16882 Cubic root scale.
16883
16884 @item log
16885 Logarithmic scale.
16886 @end table
16887 Default is @code{log}.
16888
16889 @item fscale
16890 Set frequency scale.
16891
16892 It accepts the following values:
16893 @table @samp
16894 @item lin
16895 Linear scale.
16896
16897 @item log
16898 Logarithmic scale.
16899
16900 @item rlog
16901 Reverse logarithmic scale.
16902 @end table
16903 Default is @code{lin}.
16904
16905 @item win_size
16906 Set window size.
16907
16908 It accepts the following values:
16909 @table @samp
16910 @item w16
16911 @item w32
16912 @item w64
16913 @item w128
16914 @item w256
16915 @item w512
16916 @item w1024
16917 @item w2048
16918 @item w4096
16919 @item w8192
16920 @item w16384
16921 @item w32768
16922 @item w65536
16923 @end table
16924 Default is @code{w2048}
16925
16926 @item win_func
16927 Set windowing function.
16928
16929 It accepts the following values:
16930 @table @samp
16931 @item rect
16932 @item bartlett
16933 @item hanning
16934 @item hamming
16935 @item blackman
16936 @item welch
16937 @item flattop
16938 @item bharris
16939 @item bnuttall
16940 @item bhann
16941 @item sine
16942 @item nuttall
16943 @item lanczos
16944 @item gauss
16945 @item tukey
16946 @item dolph
16947 @item cauchy
16948 @item parzen
16949 @item poisson
16950 @end table
16951 Default is @code{hanning}.
16952
16953 @item overlap
16954 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16955 which means optimal overlap for selected window function will be picked.
16956
16957 @item averaging
16958 Set time averaging. Setting this to 0 will display current maximal peaks.
16959 Default is @code{1}, which means time averaging is disabled.
16960
16961 @item colors
16962 Specify list of colors separated by space or by '|' which will be used to
16963 draw channel frequencies. Unrecognized or missing colors will be replaced
16964 by white color.
16965
16966 @item cmode
16967 Set channel display mode.
16968
16969 It accepts the following values:
16970 @table @samp
16971 @item combined
16972 @item separate
16973 @end table
16974 Default is @code{combined}.
16975
16976 @item minamp
16977 Set minimum amplitude used in @code{log} amplitude scaler.
16978
16979 @end table
16980
16981 @anchor{showspectrum}
16982 @section showspectrum
16983
16984 Convert input audio to a video output, representing the audio frequency
16985 spectrum.
16986
16987 The filter accepts the following options:
16988
16989 @table @option
16990 @item size, s
16991 Specify the video size for the output. For the syntax of this option, check the
16992 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16993 Default value is @code{640x512}.
16994
16995 @item slide
16996 Specify how the spectrum should slide along the window.
16997
16998 It accepts the following values:
16999 @table @samp
17000 @item replace
17001 the samples start again on the left when they reach the right
17002 @item scroll
17003 the samples scroll from right to left
17004 @item fullframe
17005 frames are only produced when the samples reach the right
17006 @item rscroll
17007 the samples scroll from left to right
17008 @end table
17009
17010 Default value is @code{replace}.
17011
17012 @item mode
17013 Specify display mode.
17014
17015 It accepts the following values:
17016 @table @samp
17017 @item combined
17018 all channels are displayed in the same row
17019 @item separate
17020 all channels are displayed in separate rows
17021 @end table
17022
17023 Default value is @samp{combined}.
17024
17025 @item color
17026 Specify display color mode.
17027
17028 It accepts the following values:
17029 @table @samp
17030 @item channel
17031 each channel is displayed in a separate color
17032 @item intensity
17033 each channel is displayed using the same color scheme
17034 @item rainbow
17035 each channel is displayed using the rainbow color scheme
17036 @item moreland
17037 each channel is displayed using the moreland color scheme
17038 @item nebulae
17039 each channel is displayed using the nebulae color scheme
17040 @item fire
17041 each channel is displayed using the fire color scheme
17042 @item fiery
17043 each channel is displayed using the fiery color scheme
17044 @item fruit
17045 each channel is displayed using the fruit color scheme
17046 @item cool
17047 each channel is displayed using the cool color scheme
17048 @end table
17049
17050 Default value is @samp{channel}.
17051
17052 @item scale
17053 Specify scale used for calculating intensity color values.
17054
17055 It accepts the following values:
17056 @table @samp
17057 @item lin
17058 linear
17059 @item sqrt
17060 square root, default
17061 @item cbrt
17062 cubic root
17063 @item log
17064 logarithmic
17065 @item 4thrt
17066 4th root
17067 @item 5thrt
17068 5th root
17069 @end table
17070
17071 Default value is @samp{sqrt}.
17072
17073 @item saturation
17074 Set saturation modifier for displayed colors. Negative values provide
17075 alternative color scheme. @code{0} is no saturation at all.
17076 Saturation must be in [-10.0, 10.0] range.
17077 Default value is @code{1}.
17078
17079 @item win_func
17080 Set window function.
17081
17082 It accepts the following values:
17083 @table @samp
17084 @item rect
17085 @item bartlett
17086 @item hann
17087 @item hanning
17088 @item hamming
17089 @item blackman
17090 @item welch
17091 @item flattop
17092 @item bharris
17093 @item bnuttall
17094 @item bhann
17095 @item sine
17096 @item nuttall
17097 @item lanczos
17098 @item gauss
17099 @item tukey
17100 @item dolph
17101 @item cauchy
17102 @item parzen
17103 @item poisson
17104 @end table
17105
17106 Default value is @code{hann}.
17107
17108 @item orientation
17109 Set orientation of time vs frequency axis. Can be @code{vertical} or
17110 @code{horizontal}. Default is @code{vertical}.
17111
17112 @item overlap
17113 Set ratio of overlap window. Default value is @code{0}.
17114 When value is @code{1} overlap is set to recommended size for specific
17115 window function currently used.
17116
17117 @item gain
17118 Set scale gain for calculating intensity color values.
17119 Default value is @code{1}.
17120
17121 @item data
17122 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
17123
17124 @item rotation
17125 Set color rotation, must be in [-1.0, 1.0] range.
17126 Default value is @code{0}.
17127 @end table
17128
17129 The usage is very similar to the showwaves filter; see the examples in that
17130 section.
17131
17132 @subsection Examples
17133
17134 @itemize
17135 @item
17136 Large window with logarithmic color scaling:
17137 @example
17138 showspectrum=s=1280x480:scale=log
17139 @end example
17140
17141 @item
17142 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
17143 @example
17144 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17145              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
17146 @end example
17147 @end itemize
17148
17149 @section showspectrumpic
17150
17151 Convert input audio to a single video frame, representing the audio frequency
17152 spectrum.
17153
17154 The filter accepts the following options:
17155
17156 @table @option
17157 @item size, s
17158 Specify the video size for the output. For the syntax of this option, check the
17159 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17160 Default value is @code{4096x2048}.
17161
17162 @item mode
17163 Specify display mode.
17164
17165 It accepts the following values:
17166 @table @samp
17167 @item combined
17168 all channels are displayed in the same row
17169 @item separate
17170 all channels are displayed in separate rows
17171 @end table
17172 Default value is @samp{combined}.
17173
17174 @item color
17175 Specify display color mode.
17176
17177 It accepts the following values:
17178 @table @samp
17179 @item channel
17180 each channel is displayed in a separate color
17181 @item intensity
17182 each channel is displayed using the same color scheme
17183 @item rainbow
17184 each channel is displayed using the rainbow color scheme
17185 @item moreland
17186 each channel is displayed using the moreland color scheme
17187 @item nebulae
17188 each channel is displayed using the nebulae color scheme
17189 @item fire
17190 each channel is displayed using the fire color scheme
17191 @item fiery
17192 each channel is displayed using the fiery color scheme
17193 @item fruit
17194 each channel is displayed using the fruit color scheme
17195 @item cool
17196 each channel is displayed using the cool color scheme
17197 @end table
17198 Default value is @samp{intensity}.
17199
17200 @item scale
17201 Specify scale used for calculating intensity color values.
17202
17203 It accepts the following values:
17204 @table @samp
17205 @item lin
17206 linear
17207 @item sqrt
17208 square root, default
17209 @item cbrt
17210 cubic root
17211 @item log
17212 logarithmic
17213 @item 4thrt
17214 4th root
17215 @item 5thrt
17216 5th root
17217 @end table
17218 Default value is @samp{log}.
17219
17220 @item saturation
17221 Set saturation modifier for displayed colors. Negative values provide
17222 alternative color scheme. @code{0} is no saturation at all.
17223 Saturation must be in [-10.0, 10.0] range.
17224 Default value is @code{1}.
17225
17226 @item win_func
17227 Set window function.
17228
17229 It accepts the following values:
17230 @table @samp
17231 @item rect
17232 @item bartlett
17233 @item hann
17234 @item hanning
17235 @item hamming
17236 @item blackman
17237 @item welch
17238 @item flattop
17239 @item bharris
17240 @item bnuttall
17241 @item bhann
17242 @item sine
17243 @item nuttall
17244 @item lanczos
17245 @item gauss
17246 @item tukey
17247 @item dolph
17248 @item cauchy
17249 @item parzen
17250 @item poisson
17251 @end table
17252 Default value is @code{hann}.
17253
17254 @item orientation
17255 Set orientation of time vs frequency axis. Can be @code{vertical} or
17256 @code{horizontal}. Default is @code{vertical}.
17257
17258 @item gain
17259 Set scale gain for calculating intensity color values.
17260 Default value is @code{1}.
17261
17262 @item legend
17263 Draw time and frequency axes and legends. Default is enabled.
17264
17265 @item rotation
17266 Set color rotation, must be in [-1.0, 1.0] range.
17267 Default value is @code{0}.
17268 @end table
17269
17270 @subsection Examples
17271
17272 @itemize
17273 @item
17274 Extract an audio spectrogram of a whole audio track
17275 in a 1024x1024 picture using @command{ffmpeg}:
17276 @example
17277 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
17278 @end example
17279 @end itemize
17280
17281 @section showvolume
17282
17283 Convert input audio volume to a video output.
17284
17285 The filter accepts the following options:
17286
17287 @table @option
17288 @item rate, r
17289 Set video rate.
17290
17291 @item b
17292 Set border width, allowed range is [0, 5]. Default is 1.
17293
17294 @item w
17295 Set channel width, allowed range is [80, 8192]. Default is 400.
17296
17297 @item h
17298 Set channel height, allowed range is [1, 900]. Default is 20.
17299
17300 @item f
17301 Set fade, allowed range is [0.001, 1]. Default is 0.95.
17302
17303 @item c
17304 Set volume color expression.
17305
17306 The expression can use the following variables:
17307
17308 @table @option
17309 @item VOLUME
17310 Current max volume of channel in dB.
17311
17312 @item PEAK
17313 Current peak.
17314
17315 @item CHANNEL
17316 Current channel number, starting from 0.
17317 @end table
17318
17319 @item t
17320 If set, displays channel names. Default is enabled.
17321
17322 @item v
17323 If set, displays volume values. Default is enabled.
17324
17325 @item o
17326 Set orientation, can be @code{horizontal} or @code{vertical},
17327 default is @code{horizontal}.
17328
17329 @item s
17330 Set step size, allowed range s [0, 5]. Default is 0, which means
17331 step is disabled.
17332 @end table
17333
17334 @section showwaves
17335
17336 Convert input audio to a video output, representing the samples waves.
17337
17338 The filter accepts the following options:
17339
17340 @table @option
17341 @item size, s
17342 Specify the video size for the output. For the syntax of this option, check the
17343 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17344 Default value is @code{600x240}.
17345
17346 @item mode
17347 Set display mode.
17348
17349 Available values are:
17350 @table @samp
17351 @item point
17352 Draw a point for each sample.
17353
17354 @item line
17355 Draw a vertical line for each sample.
17356
17357 @item p2p
17358 Draw a point for each sample and a line between them.
17359
17360 @item cline
17361 Draw a centered vertical line for each sample.
17362 @end table
17363
17364 Default value is @code{point}.
17365
17366 @item n
17367 Set the number of samples which are printed on the same column. A
17368 larger value will decrease the frame rate. Must be a positive
17369 integer. This option can be set only if the value for @var{rate}
17370 is not explicitly specified.
17371
17372 @item rate, r
17373 Set the (approximate) output frame rate. This is done by setting the
17374 option @var{n}. Default value is "25".
17375
17376 @item split_channels
17377 Set if channels should be drawn separately or overlap. Default value is 0.
17378
17379 @item colors
17380 Set colors separated by '|' which are going to be used for drawing of each channel.
17381
17382 @item scale
17383 Set amplitude scale.
17384
17385 Available values are:
17386 @table @samp
17387 @item lin
17388 Linear.
17389
17390 @item log
17391 Logarithmic.
17392
17393 @item sqrt
17394 Square root.
17395
17396 @item cbrt
17397 Cubic root.
17398 @end table
17399
17400 Default is linear.
17401 @end table
17402
17403 @subsection Examples
17404
17405 @itemize
17406 @item
17407 Output the input file audio and the corresponding video representation
17408 at the same time:
17409 @example
17410 amovie=a.mp3,asplit[out0],showwaves[out1]
17411 @end example
17412
17413 @item
17414 Create a synthetic signal and show it with showwaves, forcing a
17415 frame rate of 30 frames per second:
17416 @example
17417 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
17418 @end example
17419 @end itemize
17420
17421 @section showwavespic
17422
17423 Convert input audio to a single video frame, representing the samples waves.
17424
17425 The filter accepts the following options:
17426
17427 @table @option
17428 @item size, s
17429 Specify the video size for the output. For the syntax of this option, check the
17430 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17431 Default value is @code{600x240}.
17432
17433 @item split_channels
17434 Set if channels should be drawn separately or overlap. Default value is 0.
17435
17436 @item colors
17437 Set colors separated by '|' which are going to be used for drawing of each channel.
17438
17439 @item scale
17440 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
17441 Default is linear.
17442 @end table
17443
17444 @subsection Examples
17445
17446 @itemize
17447 @item
17448 Extract a channel split representation of the wave form of a whole audio track
17449 in a 1024x800 picture using @command{ffmpeg}:
17450 @example
17451 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
17452 @end example
17453 @end itemize
17454
17455 @section spectrumsynth
17456
17457 Sythesize audio from 2 input video spectrums, first input stream represents
17458 magnitude across time and second represents phase across time.
17459 The filter will transform from frequency domain as displayed in videos back
17460 to time domain as presented in audio output.
17461
17462 This filter is primarly created for reversing processed @ref{showspectrum}
17463 filter outputs, but can synthesize sound from other spectrograms too.
17464 But in such case results are going to be poor if the phase data is not
17465 available, because in such cases phase data need to be recreated, usually
17466 its just recreated from random noise.
17467 For best results use gray only output (@code{channel} color mode in
17468 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
17469 @code{lin} scale for phase video. To produce phase, for 2nd video, use
17470 @code{data} option. Inputs videos should generally use @code{fullframe}
17471 slide mode as that saves resources needed for decoding video.
17472
17473 The filter accepts the following options:
17474
17475 @table @option
17476 @item sample_rate
17477 Specify sample rate of output audio, the sample rate of audio from which
17478 spectrum was generated may differ.
17479
17480 @item channels
17481 Set number of channels represented in input video spectrums.
17482
17483 @item scale
17484 Set scale which was used when generating magnitude input spectrum.
17485 Can be @code{lin} or @code{log}. Default is @code{log}.
17486
17487 @item slide
17488 Set slide which was used when generating inputs spectrums.
17489 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
17490 Default is @code{fullframe}.
17491
17492 @item win_func
17493 Set window function used for resynthesis.
17494
17495 @item overlap
17496 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17497 which means optimal overlap for selected window function will be picked.
17498
17499 @item orientation
17500 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
17501 Default is @code{vertical}.
17502 @end table
17503
17504 @subsection Examples
17505
17506 @itemize
17507 @item
17508 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
17509 then resynthesize videos back to audio with spectrumsynth:
17510 @example
17511 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
17512 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
17513 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
17514 @end example
17515 @end itemize
17516
17517 @section split, asplit
17518
17519 Split input into several identical outputs.
17520
17521 @code{asplit} works with audio input, @code{split} with video.
17522
17523 The filter accepts a single parameter which specifies the number of outputs. If
17524 unspecified, it defaults to 2.
17525
17526 @subsection Examples
17527
17528 @itemize
17529 @item
17530 Create two separate outputs from the same input:
17531 @example
17532 [in] split [out0][out1]
17533 @end example
17534
17535 @item
17536 To create 3 or more outputs, you need to specify the number of
17537 outputs, like in:
17538 @example
17539 [in] asplit=3 [out0][out1][out2]
17540 @end example
17541
17542 @item
17543 Create two separate outputs from the same input, one cropped and
17544 one padded:
17545 @example
17546 [in] split [splitout1][splitout2];
17547 [splitout1] crop=100:100:0:0    [cropout];
17548 [splitout2] pad=200:200:100:100 [padout];
17549 @end example
17550
17551 @item
17552 Create 5 copies of the input audio with @command{ffmpeg}:
17553 @example
17554 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
17555 @end example
17556 @end itemize
17557
17558 @section zmq, azmq
17559
17560 Receive commands sent through a libzmq client, and forward them to
17561 filters in the filtergraph.
17562
17563 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
17564 must be inserted between two video filters, @code{azmq} between two
17565 audio filters.
17566
17567 To enable these filters you need to install the libzmq library and
17568 headers and configure FFmpeg with @code{--enable-libzmq}.
17569
17570 For more information about libzmq see:
17571 @url{http://www.zeromq.org/}
17572
17573 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
17574 receives messages sent through a network interface defined by the
17575 @option{bind_address} option.
17576
17577 The received message must be in the form:
17578 @example
17579 @var{TARGET} @var{COMMAND} [@var{ARG}]
17580 @end example
17581
17582 @var{TARGET} specifies the target of the command, usually the name of
17583 the filter class or a specific filter instance name.
17584
17585 @var{COMMAND} specifies the name of the command for the target filter.
17586
17587 @var{ARG} is optional and specifies the optional argument list for the
17588 given @var{COMMAND}.
17589
17590 Upon reception, the message is processed and the corresponding command
17591 is injected into the filtergraph. Depending on the result, the filter
17592 will send a reply to the client, adopting the format:
17593 @example
17594 @var{ERROR_CODE} @var{ERROR_REASON}
17595 @var{MESSAGE}
17596 @end example
17597
17598 @var{MESSAGE} is optional.
17599
17600 @subsection Examples
17601
17602 Look at @file{tools/zmqsend} for an example of a zmq client which can
17603 be used to send commands processed by these filters.
17604
17605 Consider the following filtergraph generated by @command{ffplay}
17606 @example
17607 ffplay -dumpgraph 1 -f lavfi "
17608 color=s=100x100:c=red  [l];
17609 color=s=100x100:c=blue [r];
17610 nullsrc=s=200x100, zmq [bg];
17611 [bg][l]   overlay      [bg+l];
17612 [bg+l][r] overlay=x=100 "
17613 @end example
17614
17615 To change the color of the left side of the video, the following
17616 command can be used:
17617 @example
17618 echo Parsed_color_0 c yellow | tools/zmqsend
17619 @end example
17620
17621 To change the right side:
17622 @example
17623 echo Parsed_color_1 c pink | tools/zmqsend
17624 @end example
17625
17626 @c man end MULTIMEDIA FILTERS
17627
17628 @chapter Multimedia Sources
17629 @c man begin MULTIMEDIA SOURCES
17630
17631 Below is a description of the currently available multimedia sources.
17632
17633 @section amovie
17634
17635 This is the same as @ref{movie} source, except it selects an audio
17636 stream by default.
17637
17638 @anchor{movie}
17639 @section movie
17640
17641 Read audio and/or video stream(s) from a movie container.
17642
17643 It accepts the following parameters:
17644
17645 @table @option
17646 @item filename
17647 The name of the resource to read (not necessarily a file; it can also be a
17648 device or a stream accessed through some protocol).
17649
17650 @item format_name, f
17651 Specifies the format assumed for the movie to read, and can be either
17652 the name of a container or an input device. If not specified, the
17653 format is guessed from @var{movie_name} or by probing.
17654
17655 @item seek_point, sp
17656 Specifies the seek point in seconds. The frames will be output
17657 starting from this seek point. The parameter is evaluated with
17658 @code{av_strtod}, so the numerical value may be suffixed by an IS
17659 postfix. The default value is "0".
17660
17661 @item streams, s
17662 Specifies the streams to read. Several streams can be specified,
17663 separated by "+". The source will then have as many outputs, in the
17664 same order. The syntax is explained in the ``Stream specifiers''
17665 section in the ffmpeg manual. Two special names, "dv" and "da" specify
17666 respectively the default (best suited) video and audio stream. Default
17667 is "dv", or "da" if the filter is called as "amovie".
17668
17669 @item stream_index, si
17670 Specifies the index of the video stream to read. If the value is -1,
17671 the most suitable video stream will be automatically selected. The default
17672 value is "-1". Deprecated. If the filter is called "amovie", it will select
17673 audio instead of video.
17674
17675 @item loop
17676 Specifies how many times to read the stream in sequence.
17677 If the value is less than 1, the stream will be read again and again.
17678 Default value is "1".
17679
17680 Note that when the movie is looped the source timestamps are not
17681 changed, so it will generate non monotonically increasing timestamps.
17682
17683 @item discontinuity
17684 Specifies the time difference between frames above which the point is
17685 considered a timestamp discontinuity which is removed by adjusting the later
17686 timestamps.
17687 @end table
17688
17689 It allows overlaying a second video on top of the main input of
17690 a filtergraph, as shown in this graph:
17691 @example
17692 input -----------> deltapts0 --> overlay --> output
17693                                     ^
17694                                     |
17695 movie --> scale--> deltapts1 -------+
17696 @end example
17697 @subsection Examples
17698
17699 @itemize
17700 @item
17701 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
17702 on top of the input labelled "in":
17703 @example
17704 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
17705 [in] setpts=PTS-STARTPTS [main];
17706 [main][over] overlay=16:16 [out]
17707 @end example
17708
17709 @item
17710 Read from a video4linux2 device, and overlay it on top of the input
17711 labelled "in":
17712 @example
17713 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
17714 [in] setpts=PTS-STARTPTS [main];
17715 [main][over] overlay=16:16 [out]
17716 @end example
17717
17718 @item
17719 Read the first video stream and the audio stream with id 0x81 from
17720 dvd.vob; the video is connected to the pad named "video" and the audio is
17721 connected to the pad named "audio":
17722 @example
17723 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
17724 @end example
17725 @end itemize
17726
17727 @subsection Commands
17728
17729 Both movie and amovie support the following commands:
17730 @table @option
17731 @item seek
17732 Perform seek using "av_seek_frame".
17733 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
17734 @itemize
17735 @item
17736 @var{stream_index}: If stream_index is -1, a default
17737 stream is selected, and @var{timestamp} is automatically converted
17738 from AV_TIME_BASE units to the stream specific time_base.
17739 @item
17740 @var{timestamp}: Timestamp in AVStream.time_base units
17741 or, if no stream is specified, in AV_TIME_BASE units.
17742 @item
17743 @var{flags}: Flags which select direction and seeking mode.
17744 @end itemize
17745
17746 @item get_duration
17747 Get movie duration in AV_TIME_BASE units.
17748
17749 @end table
17750
17751 @c man end MULTIMEDIA SOURCES