]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/vf_zscale: make possible to change chroma location
[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 bbox
4406
4407 Compute the bounding box for the non-black pixels in the input frame
4408 luminance plane.
4409
4410 This filter computes the bounding box containing all the pixels with a
4411 luminance value greater than the minimum allowed value.
4412 The parameters describing the bounding box are printed on the filter
4413 log.
4414
4415 The filter accepts the following option:
4416
4417 @table @option
4418 @item min_val
4419 Set the minimal luminance value. Default is @code{16}.
4420 @end table
4421
4422 @section bitplanenoise
4423
4424 Show and measure bit plane noise.
4425
4426 The filter accepts the following options:
4427
4428 @table @option
4429 @item bitplane
4430 Set which plane to analyze. Default is @code{1}.
4431
4432 @item filter
4433 Filter out noisy pixels from @code{bitplane} set above.
4434 Default is disabled.
4435 @end table
4436
4437 @section blackdetect
4438
4439 Detect video intervals that are (almost) completely black. Can be
4440 useful to detect chapter transitions, commercials, or invalid
4441 recordings. Output lines contains the time for the start, end and
4442 duration of the detected black interval expressed in seconds.
4443
4444 In order to display the output lines, you need to set the loglevel at
4445 least to the AV_LOG_INFO value.
4446
4447 The filter accepts the following options:
4448
4449 @table @option
4450 @item black_min_duration, d
4451 Set the minimum detected black duration expressed in seconds. It must
4452 be a non-negative floating point number.
4453
4454 Default value is 2.0.
4455
4456 @item picture_black_ratio_th, pic_th
4457 Set the threshold for considering a picture "black".
4458 Express the minimum value for the ratio:
4459 @example
4460 @var{nb_black_pixels} / @var{nb_pixels}
4461 @end example
4462
4463 for which a picture is considered black.
4464 Default value is 0.98.
4465
4466 @item pixel_black_th, pix_th
4467 Set the threshold for considering a pixel "black".
4468
4469 The threshold expresses the maximum pixel luminance value for which a
4470 pixel is considered "black". The provided value is scaled according to
4471 the following equation:
4472 @example
4473 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4474 @end example
4475
4476 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4477 the input video format, the range is [0-255] for YUV full-range
4478 formats and [16-235] for YUV non full-range formats.
4479
4480 Default value is 0.10.
4481 @end table
4482
4483 The following example sets the maximum pixel threshold to the minimum
4484 value, and detects only black intervals of 2 or more seconds:
4485 @example
4486 blackdetect=d=2:pix_th=0.00
4487 @end example
4488
4489 @section blackframe
4490
4491 Detect frames that are (almost) completely black. Can be useful to
4492 detect chapter transitions or commercials. Output lines consist of
4493 the frame number of the detected frame, the percentage of blackness,
4494 the position in the file if known or -1 and the timestamp in seconds.
4495
4496 In order to display the output lines, you need to set the loglevel at
4497 least to the AV_LOG_INFO value.
4498
4499 It accepts the following parameters:
4500
4501 @table @option
4502
4503 @item amount
4504 The percentage of the pixels that have to be below the threshold; it defaults to
4505 @code{98}.
4506
4507 @item threshold, thresh
4508 The threshold below which a pixel value is considered black; it defaults to
4509 @code{32}.
4510
4511 @end table
4512
4513 @section blend, tblend
4514
4515 Blend two video frames into each other.
4516
4517 The @code{blend} filter takes two input streams and outputs one
4518 stream, the first input is the "top" layer and second input is
4519 "bottom" layer.  Output terminates when shortest input terminates.
4520
4521 The @code{tblend} (time blend) filter takes two consecutive frames
4522 from one single stream, and outputs the result obtained by blending
4523 the new frame on top of the old frame.
4524
4525 A description of the accepted options follows.
4526
4527 @table @option
4528 @item c0_mode
4529 @item c1_mode
4530 @item c2_mode
4531 @item c3_mode
4532 @item all_mode
4533 Set blend mode for specific pixel component or all pixel components in case
4534 of @var{all_mode}. Default value is @code{normal}.
4535
4536 Available values for component modes are:
4537 @table @samp
4538 @item addition
4539 @item addition128
4540 @item and
4541 @item average
4542 @item burn
4543 @item darken
4544 @item difference
4545 @item difference128
4546 @item divide
4547 @item dodge
4548 @item freeze
4549 @item exclusion
4550 @item glow
4551 @item hardlight
4552 @item hardmix
4553 @item heat
4554 @item lighten
4555 @item linearlight
4556 @item multiply
4557 @item multiply128
4558 @item negation
4559 @item normal
4560 @item or
4561 @item overlay
4562 @item phoenix
4563 @item pinlight
4564 @item reflect
4565 @item screen
4566 @item softlight
4567 @item subtract
4568 @item vividlight
4569 @item xor
4570 @end table
4571
4572 @item c0_opacity
4573 @item c1_opacity
4574 @item c2_opacity
4575 @item c3_opacity
4576 @item all_opacity
4577 Set blend opacity for specific pixel component or all pixel components in case
4578 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4579
4580 @item c0_expr
4581 @item c1_expr
4582 @item c2_expr
4583 @item c3_expr
4584 @item all_expr
4585 Set blend expression for specific pixel component or all pixel components in case
4586 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4587
4588 The expressions can use the following variables:
4589
4590 @table @option
4591 @item N
4592 The sequential number of the filtered frame, starting from @code{0}.
4593
4594 @item X
4595 @item Y
4596 the coordinates of the current sample
4597
4598 @item W
4599 @item H
4600 the width and height of currently filtered plane
4601
4602 @item SW
4603 @item SH
4604 Width and height scale depending on the currently filtered plane. It is the
4605 ratio between the corresponding luma plane number of pixels and the current
4606 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4607 @code{0.5,0.5} for chroma planes.
4608
4609 @item T
4610 Time of the current frame, expressed in seconds.
4611
4612 @item TOP, A
4613 Value of pixel component at current location for first video frame (top layer).
4614
4615 @item BOTTOM, B
4616 Value of pixel component at current location for second video frame (bottom layer).
4617 @end table
4618
4619 @item shortest
4620 Force termination when the shortest input terminates. Default is
4621 @code{0}. This option is only defined for the @code{blend} filter.
4622
4623 @item repeatlast
4624 Continue applying the last bottom frame after the end of the stream. A value of
4625 @code{0} disable the filter after the last frame of the bottom layer is reached.
4626 Default is @code{1}. This option is only defined for the @code{blend} filter.
4627 @end table
4628
4629 @subsection Examples
4630
4631 @itemize
4632 @item
4633 Apply transition from bottom layer to top layer in first 10 seconds:
4634 @example
4635 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4636 @end example
4637
4638 @item
4639 Apply 1x1 checkerboard effect:
4640 @example
4641 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4642 @end example
4643
4644 @item
4645 Apply uncover left effect:
4646 @example
4647 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4648 @end example
4649
4650 @item
4651 Apply uncover down effect:
4652 @example
4653 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4654 @end example
4655
4656 @item
4657 Apply uncover up-left effect:
4658 @example
4659 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4660 @end example
4661
4662 @item
4663 Split diagonally video and shows top and bottom layer on each side:
4664 @example
4665 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4666 @end example
4667
4668 @item
4669 Display differences between the current and the previous frame:
4670 @example
4671 tblend=all_mode=difference128
4672 @end example
4673 @end itemize
4674
4675 @section boxblur
4676
4677 Apply a boxblur algorithm to the input video.
4678
4679 It accepts the following parameters:
4680
4681 @table @option
4682
4683 @item luma_radius, lr
4684 @item luma_power, lp
4685 @item chroma_radius, cr
4686 @item chroma_power, cp
4687 @item alpha_radius, ar
4688 @item alpha_power, ap
4689
4690 @end table
4691
4692 A description of the accepted options follows.
4693
4694 @table @option
4695 @item luma_radius, lr
4696 @item chroma_radius, cr
4697 @item alpha_radius, ar
4698 Set an expression for the box radius in pixels used for blurring the
4699 corresponding input plane.
4700
4701 The radius value must be a non-negative number, and must not be
4702 greater than the value of the expression @code{min(w,h)/2} for the
4703 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4704 planes.
4705
4706 Default value for @option{luma_radius} is "2". If not specified,
4707 @option{chroma_radius} and @option{alpha_radius} default to the
4708 corresponding value set for @option{luma_radius}.
4709
4710 The expressions can contain the following constants:
4711 @table @option
4712 @item w
4713 @item h
4714 The input width and height in pixels.
4715
4716 @item cw
4717 @item ch
4718 The input chroma image width and height in pixels.
4719
4720 @item hsub
4721 @item vsub
4722 The horizontal and vertical chroma subsample values. For example, for the
4723 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4724 @end table
4725
4726 @item luma_power, lp
4727 @item chroma_power, cp
4728 @item alpha_power, ap
4729 Specify how many times the boxblur filter is applied to the
4730 corresponding plane.
4731
4732 Default value for @option{luma_power} is 2. If not specified,
4733 @option{chroma_power} and @option{alpha_power} default to the
4734 corresponding value set for @option{luma_power}.
4735
4736 A value of 0 will disable the effect.
4737 @end table
4738
4739 @subsection Examples
4740
4741 @itemize
4742 @item
4743 Apply a boxblur filter with the luma, chroma, and alpha radii
4744 set to 2:
4745 @example
4746 boxblur=luma_radius=2:luma_power=1
4747 boxblur=2:1
4748 @end example
4749
4750 @item
4751 Set the luma radius to 2, and alpha and chroma radius to 0:
4752 @example
4753 boxblur=2:1:cr=0:ar=0
4754 @end example
4755
4756 @item
4757 Set the luma and chroma radii to a fraction of the video dimension:
4758 @example
4759 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4760 @end example
4761 @end itemize
4762
4763 @section bwdif
4764
4765 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4766 Deinterlacing Filter").
4767
4768 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4769 interpolation algorithms.
4770 It accepts the following parameters:
4771
4772 @table @option
4773 @item mode
4774 The interlacing mode to adopt. It accepts one of the following values:
4775
4776 @table @option
4777 @item 0, send_frame
4778 Output one frame for each frame.
4779 @item 1, send_field
4780 Output one frame for each field.
4781 @end table
4782
4783 The default value is @code{send_field}.
4784
4785 @item parity
4786 The picture field parity assumed for the input interlaced video. It accepts one
4787 of the following values:
4788
4789 @table @option
4790 @item 0, tff
4791 Assume the top field is first.
4792 @item 1, bff
4793 Assume the bottom field is first.
4794 @item -1, auto
4795 Enable automatic detection of field parity.
4796 @end table
4797
4798 The default value is @code{auto}.
4799 If the interlacing is unknown or the decoder does not export this information,
4800 top field first will be assumed.
4801
4802 @item deint
4803 Specify which frames to deinterlace. Accept one of the following
4804 values:
4805
4806 @table @option
4807 @item 0, all
4808 Deinterlace all frames.
4809 @item 1, interlaced
4810 Only deinterlace frames marked as interlaced.
4811 @end table
4812
4813 The default value is @code{all}.
4814 @end table
4815
4816 @section chromakey
4817 YUV colorspace color/chroma keying.
4818
4819 The filter accepts the following options:
4820
4821 @table @option
4822 @item color
4823 The color which will be replaced with transparency.
4824
4825 @item similarity
4826 Similarity percentage with the key color.
4827
4828 0.01 matches only the exact key color, while 1.0 matches everything.
4829
4830 @item blend
4831 Blend percentage.
4832
4833 0.0 makes pixels either fully transparent, or not transparent at all.
4834
4835 Higher values result in semi-transparent pixels, with a higher transparency
4836 the more similar the pixels color is to the key color.
4837
4838 @item yuv
4839 Signals that the color passed is already in YUV instead of RGB.
4840
4841 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4842 This can be used to pass exact YUV values as hexadecimal numbers.
4843 @end table
4844
4845 @subsection Examples
4846
4847 @itemize
4848 @item
4849 Make every green pixel in the input image transparent:
4850 @example
4851 ffmpeg -i input.png -vf chromakey=green out.png
4852 @end example
4853
4854 @item
4855 Overlay a greenscreen-video on top of a static black background.
4856 @example
4857 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
4858 @end example
4859 @end itemize
4860
4861 @section ciescope
4862
4863 Display CIE color diagram with pixels overlaid onto it.
4864
4865 The filter accepts the following options:
4866
4867 @table @option
4868 @item system
4869 Set color system.
4870
4871 @table @samp
4872 @item ntsc, 470m
4873 @item ebu, 470bg
4874 @item smpte
4875 @item 240m
4876 @item apple
4877 @item widergb
4878 @item cie1931
4879 @item rec709, hdtv
4880 @item uhdtv, rec2020
4881 @end table
4882
4883 @item cie
4884 Set CIE system.
4885
4886 @table @samp
4887 @item xyy
4888 @item ucs
4889 @item luv
4890 @end table
4891
4892 @item gamuts
4893 Set what gamuts to draw.
4894
4895 See @code{system} option for available values.
4896
4897 @item size, s
4898 Set ciescope size, by default set to 512.
4899
4900 @item intensity, i
4901 Set intensity used to map input pixel values to CIE diagram.
4902
4903 @item contrast
4904 Set contrast used to draw tongue colors that are out of active color system gamut.
4905
4906 @item corrgamma
4907 Correct gamma displayed on scope, by default enabled.
4908
4909 @item showwhite
4910 Show white point on CIE diagram, by default disabled.
4911
4912 @item gamma
4913 Set input gamma. Used only with XYZ input color space.
4914 @end table
4915
4916 @section codecview
4917
4918 Visualize information exported by some codecs.
4919
4920 Some codecs can export information through frames using side-data or other
4921 means. For example, some MPEG based codecs export motion vectors through the
4922 @var{export_mvs} flag in the codec @option{flags2} option.
4923
4924 The filter accepts the following option:
4925
4926 @table @option
4927 @item mv
4928 Set motion vectors to visualize.
4929
4930 Available flags for @var{mv} are:
4931
4932 @table @samp
4933 @item pf
4934 forward predicted MVs of P-frames
4935 @item bf
4936 forward predicted MVs of B-frames
4937 @item bb
4938 backward predicted MVs of B-frames
4939 @end table
4940
4941 @item qp
4942 Display quantization parameters using the chroma planes.
4943
4944 @item mv_type, mvt
4945 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
4946
4947 Available flags for @var{mv_type} are:
4948
4949 @table @samp
4950 @item fp
4951 forward predicted MVs
4952 @item bp
4953 backward predicted MVs
4954 @end table
4955
4956 @item frame_type, ft
4957 Set frame type to visualize motion vectors of.
4958
4959 Available flags for @var{frame_type} are:
4960
4961 @table @samp
4962 @item if
4963 intra-coded frames (I-frames)
4964 @item pf
4965 predicted frames (P-frames)
4966 @item bf
4967 bi-directionally predicted frames (B-frames)
4968 @end table
4969 @end table
4970
4971 @subsection Examples
4972
4973 @itemize
4974 @item
4975 Visualize forward predicted MVs of all frames using @command{ffplay}:
4976 @example
4977 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
4978 @end example
4979
4980 @item
4981 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
4982 @example
4983 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
4984 @end example
4985 @end itemize
4986
4987 @section colorbalance
4988 Modify intensity of primary colors (red, green and blue) of input frames.
4989
4990 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
4991 regions for the red-cyan, green-magenta or blue-yellow balance.
4992
4993 A positive adjustment value shifts the balance towards the primary color, a negative
4994 value towards the complementary color.
4995
4996 The filter accepts the following options:
4997
4998 @table @option
4999 @item rs
5000 @item gs
5001 @item bs
5002 Adjust red, green and blue shadows (darkest pixels).
5003
5004 @item rm
5005 @item gm
5006 @item bm
5007 Adjust red, green and blue midtones (medium pixels).
5008
5009 @item rh
5010 @item gh
5011 @item bh
5012 Adjust red, green and blue highlights (brightest pixels).
5013
5014 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5015 @end table
5016
5017 @subsection Examples
5018
5019 @itemize
5020 @item
5021 Add red color cast to shadows:
5022 @example
5023 colorbalance=rs=.3
5024 @end example
5025 @end itemize
5026
5027 @section colorkey
5028 RGB colorspace color keying.
5029
5030 The filter accepts the following options:
5031
5032 @table @option
5033 @item color
5034 The color which will be replaced with transparency.
5035
5036 @item similarity
5037 Similarity percentage with the key color.
5038
5039 0.01 matches only the exact key color, while 1.0 matches everything.
5040
5041 @item blend
5042 Blend percentage.
5043
5044 0.0 makes pixels either fully transparent, or not transparent at all.
5045
5046 Higher values result in semi-transparent pixels, with a higher transparency
5047 the more similar the pixels color is to the key color.
5048 @end table
5049
5050 @subsection Examples
5051
5052 @itemize
5053 @item
5054 Make every green pixel in the input image transparent:
5055 @example
5056 ffmpeg -i input.png -vf colorkey=green out.png
5057 @end example
5058
5059 @item
5060 Overlay a greenscreen-video on top of a static background image.
5061 @example
5062 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
5063 @end example
5064 @end itemize
5065
5066 @section colorlevels
5067
5068 Adjust video input frames using levels.
5069
5070 The filter accepts the following options:
5071
5072 @table @option
5073 @item rimin
5074 @item gimin
5075 @item bimin
5076 @item aimin
5077 Adjust red, green, blue and alpha input black point.
5078 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5079
5080 @item rimax
5081 @item gimax
5082 @item bimax
5083 @item aimax
5084 Adjust red, green, blue and alpha input white point.
5085 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5086
5087 Input levels are used to lighten highlights (bright tones), darken shadows
5088 (dark tones), change the balance of bright and dark tones.
5089
5090 @item romin
5091 @item gomin
5092 @item bomin
5093 @item aomin
5094 Adjust red, green, blue and alpha output black point.
5095 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5096
5097 @item romax
5098 @item gomax
5099 @item bomax
5100 @item aomax
5101 Adjust red, green, blue and alpha output white point.
5102 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5103
5104 Output levels allows manual selection of a constrained output level range.
5105 @end table
5106
5107 @subsection Examples
5108
5109 @itemize
5110 @item
5111 Make video output darker:
5112 @example
5113 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5114 @end example
5115
5116 @item
5117 Increase contrast:
5118 @example
5119 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5120 @end example
5121
5122 @item
5123 Make video output lighter:
5124 @example
5125 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5126 @end example
5127
5128 @item
5129 Increase brightness:
5130 @example
5131 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5132 @end example
5133 @end itemize
5134
5135 @section colorchannelmixer
5136
5137 Adjust video input frames by re-mixing color channels.
5138
5139 This filter modifies a color channel by adding the values associated to
5140 the other channels of the same pixels. For example if the value to
5141 modify is red, the output value will be:
5142 @example
5143 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5144 @end example
5145
5146 The filter accepts the following options:
5147
5148 @table @option
5149 @item rr
5150 @item rg
5151 @item rb
5152 @item ra
5153 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5154 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5155
5156 @item gr
5157 @item gg
5158 @item gb
5159 @item ga
5160 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5161 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5162
5163 @item br
5164 @item bg
5165 @item bb
5166 @item ba
5167 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5168 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5169
5170 @item ar
5171 @item ag
5172 @item ab
5173 @item aa
5174 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5175 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5176
5177 Allowed ranges for options are @code{[-2.0, 2.0]}.
5178 @end table
5179
5180 @subsection Examples
5181
5182 @itemize
5183 @item
5184 Convert source to grayscale:
5185 @example
5186 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5187 @end example
5188 @item
5189 Simulate sepia tones:
5190 @example
5191 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5192 @end example
5193 @end itemize
5194
5195 @section colormatrix
5196
5197 Convert color matrix.
5198
5199 The filter accepts the following options:
5200
5201 @table @option
5202 @item src
5203 @item dst
5204 Specify the source and destination color matrix. Both values must be
5205 specified.
5206
5207 The accepted values are:
5208 @table @samp
5209 @item bt709
5210 BT.709
5211
5212 @item bt601
5213 BT.601
5214
5215 @item smpte240m
5216 SMPTE-240M
5217
5218 @item fcc
5219 FCC
5220
5221 @item bt2020
5222 BT.2020
5223 @end table
5224 @end table
5225
5226 For example to convert from BT.601 to SMPTE-240M, use the command:
5227 @example
5228 colormatrix=bt601:smpte240m
5229 @end example
5230
5231 @section colorspace
5232
5233 Convert colorspace, transfer characteristics or color primaries.
5234
5235 The filter accepts the following options:
5236
5237 @table @option
5238 @item all
5239 Specify all color properties at once.
5240
5241 The accepted values are:
5242 @table @samp
5243 @item bt470m
5244 BT.470M
5245
5246 @item bt470bg
5247 BT.470BG
5248
5249 @item bt601-6-525
5250 BT.601-6 525
5251
5252 @item bt601-6-625
5253 BT.601-6 625
5254
5255 @item bt709
5256 BT.709
5257
5258 @item smpte170m
5259 SMPTE-170M
5260
5261 @item smpte240m
5262 SMPTE-240M
5263
5264 @item bt2020
5265 BT.2020
5266
5267 @end table
5268
5269 @item space
5270 Specify output colorspace.
5271
5272 The accepted values are:
5273 @table @samp
5274 @item bt709
5275 BT.709
5276
5277 @item fcc
5278 FCC
5279
5280 @item bt470bg
5281 BT.470BG or BT.601-6 625
5282
5283 @item smpte170m
5284 SMPTE-170M or BT.601-6 525
5285
5286 @item smpte240m
5287 SMPTE-240M
5288
5289 @item bt2020ncl
5290 BT.2020 with non-constant luminance
5291
5292 @end table
5293
5294 @item trc
5295 Specify output transfer characteristics.
5296
5297 The accepted values are:
5298 @table @samp
5299 @item bt709
5300 BT.709
5301
5302 @item gamma22
5303 Constant gamma of 2.2
5304
5305 @item gamma28
5306 Constant gamma of 2.8
5307
5308 @item smpte170m
5309 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5310
5311 @item smpte240m
5312 SMPTE-240M
5313
5314 @item bt2020-10
5315 BT.2020 for 10-bits content
5316
5317 @item bt2020-12
5318 BT.2020 for 12-bits content
5319
5320 @end table
5321
5322 @item primaries
5323 Specify output color primaries.
5324
5325 The accepted values are:
5326 @table @samp
5327 @item bt709
5328 BT.709
5329
5330 @item bt470m
5331 BT.470M
5332
5333 @item bt470bg
5334 BT.470BG or BT.601-6 625
5335
5336 @item smpte170m
5337 SMPTE-170M or BT.601-6 525
5338
5339 @item smpte240m
5340 SMPTE-240M
5341
5342 @item bt2020
5343 BT.2020
5344
5345 @end table
5346
5347 @item range
5348 Specify output color range.
5349
5350 The accepted values are:
5351 @table @samp
5352 @item mpeg
5353 MPEG (restricted) range
5354
5355 @item jpeg
5356 JPEG (full) range
5357
5358 @end table
5359
5360 @item format
5361 Specify output color format.
5362
5363 The accepted values are:
5364 @table @samp
5365 @item yuv420p
5366 YUV 4:2:0 planar 8-bits
5367
5368 @item yuv420p10
5369 YUV 4:2:0 planar 10-bits
5370
5371 @item yuv420p12
5372 YUV 4:2:0 planar 12-bits
5373
5374 @item yuv422p
5375 YUV 4:2:2 planar 8-bits
5376
5377 @item yuv422p10
5378 YUV 4:2:2 planar 10-bits
5379
5380 @item yuv422p12
5381 YUV 4:2:2 planar 12-bits
5382
5383 @item yuv444p
5384 YUV 4:4:4 planar 8-bits
5385
5386 @item yuv444p10
5387 YUV 4:4:4 planar 10-bits
5388
5389 @item yuv444p12
5390 YUV 4:4:4 planar 12-bits
5391
5392 @end table
5393
5394 @item fast
5395 Do a fast conversion, which skips gamma/primary correction. This will take
5396 significantly less CPU, but will be mathematically incorrect. To get output
5397 compatible with that produced by the colormatrix filter, use fast=1.
5398
5399 @item dither
5400 Specify dithering mode.
5401
5402 The accepted values are:
5403 @table @samp
5404 @item none
5405 No dithering
5406
5407 @item fsb
5408 Floyd-Steinberg dithering
5409 @end table
5410
5411 @item wpadapt
5412 Whitepoint adaptation mode.
5413
5414 The accepted values are:
5415 @table @samp
5416 @item bradford
5417 Bradford whitepoint adaptation
5418
5419 @item vonkries
5420 von Kries whitepoint adaptation
5421
5422 @item identity
5423 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5424 @end table
5425
5426 @end table
5427
5428 The filter converts the transfer characteristics, color space and color
5429 primaries to the specified user values. The output value, if not specified,
5430 is set to a default value based on the "all" property. If that property is
5431 also not specified, the filter will log an error. The output color range and
5432 format default to the same value as the input color range and format. The
5433 input transfer characteristics, color space, color primaries and color range
5434 should be set on the input data. If any of these are missing, the filter will
5435 log an error and no conversion will take place.
5436
5437 For example to convert the input to SMPTE-240M, use the command:
5438 @example
5439 colorspace=smpte240m
5440 @end example
5441
5442 @section convolution
5443
5444 Apply convolution 3x3 or 5x5 filter.
5445
5446 The filter accepts the following options:
5447
5448 @table @option
5449 @item 0m
5450 @item 1m
5451 @item 2m
5452 @item 3m
5453 Set matrix for each plane.
5454 Matrix is sequence of 9 or 25 signed integers.
5455
5456 @item 0rdiv
5457 @item 1rdiv
5458 @item 2rdiv
5459 @item 3rdiv
5460 Set multiplier for calculated value for each plane.
5461
5462 @item 0bias
5463 @item 1bias
5464 @item 2bias
5465 @item 3bias
5466 Set bias for each plane. This value is added to the result of the multiplication.
5467 Useful for making the overall image brighter or darker. Default is 0.0.
5468 @end table
5469
5470 @subsection Examples
5471
5472 @itemize
5473 @item
5474 Apply sharpen:
5475 @example
5476 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"
5477 @end example
5478
5479 @item
5480 Apply blur:
5481 @example
5482 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"
5483 @end example
5484
5485 @item
5486 Apply edge enhance:
5487 @example
5488 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"
5489 @end example
5490
5491 @item
5492 Apply edge detect:
5493 @example
5494 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"
5495 @end example
5496
5497 @item
5498 Apply emboss:
5499 @example
5500 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"
5501 @end example
5502 @end itemize
5503
5504 @section copy
5505
5506 Copy the input source unchanged to the output. This is mainly useful for
5507 testing purposes.
5508
5509 @anchor{coreimage}
5510 @section coreimage
5511 Video filtering on GPU using Apple's CoreImage API on OSX.
5512
5513 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5514 processed by video hardware. However, software-based OpenGL implementations
5515 exist which means there is no guarantee for hardware processing. It depends on
5516 the respective OSX.
5517
5518 There are many filters and image generators provided by Apple that come with a
5519 large variety of options. The filter has to be referenced by its name along
5520 with its options.
5521
5522 The coreimage filter accepts the following options:
5523 @table @option
5524 @item list_filters
5525 List all available filters and generators along with all their respective
5526 options as well as possible minimum and maximum values along with the default
5527 values.
5528 @example
5529 list_filters=true
5530 @end example
5531
5532 @item filter
5533 Specify all filters by their respective name and options.
5534 Use @var{list_filters} to determine all valid filter names and options.
5535 Numerical options are specified by a float value and are automatically clamped
5536 to their respective value range.  Vector and color options have to be specified
5537 by a list of space separated float values. Character escaping has to be done.
5538 A special option name @code{default} is available to use default options for a
5539 filter.
5540
5541 It is required to specify either @code{default} or at least one of the filter options.
5542 All omitted options are used with their default values.
5543 The syntax of the filter string is as follows:
5544 @example
5545 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5546 @end example
5547
5548 @item output_rect
5549 Specify a rectangle where the output of the filter chain is copied into the
5550 input image. It is given by a list of space separated float values:
5551 @example
5552 output_rect=x\ y\ width\ height
5553 @end example
5554 If not given, the output rectangle equals the dimensions of the input image.
5555 The output rectangle is automatically cropped at the borders of the input
5556 image. Negative values are valid for each component.
5557 @example
5558 output_rect=25\ 25\ 100\ 100
5559 @end example
5560 @end table
5561
5562 Several filters can be chained for successive processing without GPU-HOST
5563 transfers allowing for fast processing of complex filter chains.
5564 Currently, only filters with zero (generators) or exactly one (filters) input
5565 image and one output image are supported. Also, transition filters are not yet
5566 usable as intended.
5567
5568 Some filters generate output images with additional padding depending on the
5569 respective filter kernel. The padding is automatically removed to ensure the
5570 filter output has the same size as the input image.
5571
5572 For image generators, the size of the output image is determined by the
5573 previous output image of the filter chain or the input image of the whole
5574 filterchain, respectively. The generators do not use the pixel information of
5575 this image to generate their output. However, the generated output is
5576 blended onto this image, resulting in partial or complete coverage of the
5577 output image.
5578
5579 The @ref{coreimagesrc} video source can be used for generating input images
5580 which are directly fed into the filter chain. By using it, providing input
5581 images by another video source or an input video is not required.
5582
5583 @subsection Examples
5584
5585 @itemize
5586
5587 @item
5588 List all filters available:
5589 @example
5590 coreimage=list_filters=true
5591 @end example
5592
5593 @item
5594 Use the CIBoxBlur filter with default options to blur an image:
5595 @example
5596 coreimage=filter=CIBoxBlur@@default
5597 @end example
5598
5599 @item
5600 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5601 its center at 100x100 and a radius of 50 pixels:
5602 @example
5603 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5604 @end example
5605
5606 @item
5607 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5608 given as complete and escaped command-line for Apple's standard bash shell:
5609 @example
5610 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5611 @end example
5612 @end itemize
5613
5614 @section crop
5615
5616 Crop the input video to given dimensions.
5617
5618 It accepts the following parameters:
5619
5620 @table @option
5621 @item w, out_w
5622 The width of the output video. It defaults to @code{iw}.
5623 This expression is evaluated only once during the filter
5624 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5625
5626 @item h, out_h
5627 The height of the output video. It defaults to @code{ih}.
5628 This expression is evaluated only once during the filter
5629 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5630
5631 @item x
5632 The horizontal position, in the input video, of the left edge of the output
5633 video. It defaults to @code{(in_w-out_w)/2}.
5634 This expression is evaluated per-frame.
5635
5636 @item y
5637 The vertical position, in the input video, of the top edge of the output video.
5638 It defaults to @code{(in_h-out_h)/2}.
5639 This expression is evaluated per-frame.
5640
5641 @item keep_aspect
5642 If set to 1 will force the output display aspect ratio
5643 to be the same of the input, by changing the output sample aspect
5644 ratio. It defaults to 0.
5645
5646 @item exact
5647 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
5648 width/height/x/y as specified and will not be rounded to nearest smaller value.
5649 It defaults to 0.
5650 @end table
5651
5652 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5653 expressions containing the following constants:
5654
5655 @table @option
5656 @item x
5657 @item y
5658 The computed values for @var{x} and @var{y}. They are evaluated for
5659 each new frame.
5660
5661 @item in_w
5662 @item in_h
5663 The input width and height.
5664
5665 @item iw
5666 @item ih
5667 These are the same as @var{in_w} and @var{in_h}.
5668
5669 @item out_w
5670 @item out_h
5671 The output (cropped) width and height.
5672
5673 @item ow
5674 @item oh
5675 These are the same as @var{out_w} and @var{out_h}.
5676
5677 @item a
5678 same as @var{iw} / @var{ih}
5679
5680 @item sar
5681 input sample aspect ratio
5682
5683 @item dar
5684 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5685
5686 @item hsub
5687 @item vsub
5688 horizontal and vertical chroma subsample values. For example for the
5689 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5690
5691 @item n
5692 The number of the input frame, starting from 0.
5693
5694 @item pos
5695 the position in the file of the input frame, NAN if unknown
5696
5697 @item t
5698 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5699
5700 @end table
5701
5702 The expression for @var{out_w} may depend on the value of @var{out_h},
5703 and the expression for @var{out_h} may depend on @var{out_w}, but they
5704 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5705 evaluated after @var{out_w} and @var{out_h}.
5706
5707 The @var{x} and @var{y} parameters specify the expressions for the
5708 position of the top-left corner of the output (non-cropped) area. They
5709 are evaluated for each frame. If the evaluated value is not valid, it
5710 is approximated to the nearest valid value.
5711
5712 The expression for @var{x} may depend on @var{y}, and the expression
5713 for @var{y} may depend on @var{x}.
5714
5715 @subsection Examples
5716
5717 @itemize
5718 @item
5719 Crop area with size 100x100 at position (12,34).
5720 @example
5721 crop=100:100:12:34
5722 @end example
5723
5724 Using named options, the example above becomes:
5725 @example
5726 crop=w=100:h=100:x=12:y=34
5727 @end example
5728
5729 @item
5730 Crop the central input area with size 100x100:
5731 @example
5732 crop=100:100
5733 @end example
5734
5735 @item
5736 Crop the central input area with size 2/3 of the input video:
5737 @example
5738 crop=2/3*in_w:2/3*in_h
5739 @end example
5740
5741 @item
5742 Crop the input video central square:
5743 @example
5744 crop=out_w=in_h
5745 crop=in_h
5746 @end example
5747
5748 @item
5749 Delimit the rectangle with the top-left corner placed at position
5750 100:100 and the right-bottom corner corresponding to the right-bottom
5751 corner of the input image.
5752 @example
5753 crop=in_w-100:in_h-100:100:100
5754 @end example
5755
5756 @item
5757 Crop 10 pixels from the left and right borders, and 20 pixels from
5758 the top and bottom borders
5759 @example
5760 crop=in_w-2*10:in_h-2*20
5761 @end example
5762
5763 @item
5764 Keep only the bottom right quarter of the input image:
5765 @example
5766 crop=in_w/2:in_h/2:in_w/2:in_h/2
5767 @end example
5768
5769 @item
5770 Crop height for getting Greek harmony:
5771 @example
5772 crop=in_w:1/PHI*in_w
5773 @end example
5774
5775 @item
5776 Apply trembling effect:
5777 @example
5778 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)
5779 @end example
5780
5781 @item
5782 Apply erratic camera effect depending on timestamp:
5783 @example
5784 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)"
5785 @end example
5786
5787 @item
5788 Set x depending on the value of y:
5789 @example
5790 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5791 @end example
5792 @end itemize
5793
5794 @subsection Commands
5795
5796 This filter supports the following commands:
5797 @table @option
5798 @item w, out_w
5799 @item h, out_h
5800 @item x
5801 @item y
5802 Set width/height of the output video and the horizontal/vertical position
5803 in the input video.
5804 The command accepts the same syntax of the corresponding option.
5805
5806 If the specified expression is not valid, it is kept at its current
5807 value.
5808 @end table
5809
5810 @section cropdetect
5811
5812 Auto-detect the crop size.
5813
5814 It calculates the necessary cropping parameters and prints the
5815 recommended parameters via the logging system. The detected dimensions
5816 correspond to the non-black area of the input video.
5817
5818 It accepts the following parameters:
5819
5820 @table @option
5821
5822 @item limit
5823 Set higher black value threshold, which can be optionally specified
5824 from nothing (0) to everything (255 for 8-bit based formats). An intensity
5825 value greater to the set value is considered non-black. It defaults to 24.
5826 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5827 on the bitdepth of the pixel format.
5828
5829 @item round
5830 The value which the width/height should be divisible by. It defaults to
5831 16. The offset is automatically adjusted to center the video. Use 2 to
5832 get only even dimensions (needed for 4:2:2 video). 16 is best when
5833 encoding to most video codecs.
5834
5835 @item reset_count, reset
5836 Set the counter that determines after how many frames cropdetect will
5837 reset the previously detected largest video area and start over to
5838 detect the current optimal crop area. Default value is 0.
5839
5840 This can be useful when channel logos distort the video area. 0
5841 indicates 'never reset', and returns the largest area encountered during
5842 playback.
5843 @end table
5844
5845 @anchor{curves}
5846 @section curves
5847
5848 Apply color adjustments using curves.
5849
5850 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5851 component (red, green and blue) has its values defined by @var{N} key points
5852 tied from each other using a smooth curve. The x-axis represents the pixel
5853 values from the input frame, and the y-axis the new pixel values to be set for
5854 the output frame.
5855
5856 By default, a component curve is defined by the two points @var{(0;0)} and
5857 @var{(1;1)}. This creates a straight line where each original pixel value is
5858 "adjusted" to its own value, which means no change to the image.
5859
5860 The filter allows you to redefine these two points and add some more. A new
5861 curve (using a natural cubic spline interpolation) will be define to pass
5862 smoothly through all these new coordinates. The new defined points needs to be
5863 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5864 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5865 the vector spaces, the values will be clipped accordingly.
5866
5867 The filter accepts the following options:
5868
5869 @table @option
5870 @item preset
5871 Select one of the available color presets. This option can be used in addition
5872 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5873 options takes priority on the preset values.
5874 Available presets are:
5875 @table @samp
5876 @item none
5877 @item color_negative
5878 @item cross_process
5879 @item darker
5880 @item increase_contrast
5881 @item lighter
5882 @item linear_contrast
5883 @item medium_contrast
5884 @item negative
5885 @item strong_contrast
5886 @item vintage
5887 @end table
5888 Default is @code{none}.
5889 @item master, m
5890 Set the master key points. These points will define a second pass mapping. It
5891 is sometimes called a "luminance" or "value" mapping. It can be used with
5892 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5893 post-processing LUT.
5894 @item red, r
5895 Set the key points for the red component.
5896 @item green, g
5897 Set the key points for the green component.
5898 @item blue, b
5899 Set the key points for the blue component.
5900 @item all
5901 Set the key points for all components (not including master).
5902 Can be used in addition to the other key points component
5903 options. In this case, the unset component(s) will fallback on this
5904 @option{all} setting.
5905 @item psfile
5906 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5907 @item plot
5908 Save Gnuplot script of the curves in specified file.
5909 @end table
5910
5911 To avoid some filtergraph syntax conflicts, each key points list need to be
5912 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5913
5914 @subsection Examples
5915
5916 @itemize
5917 @item
5918 Increase slightly the middle level of blue:
5919 @example
5920 curves=blue='0/0 0.5/0.58 1/1'
5921 @end example
5922
5923 @item
5924 Vintage effect:
5925 @example
5926 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'
5927 @end example
5928 Here we obtain the following coordinates for each components:
5929 @table @var
5930 @item red
5931 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5932 @item green
5933 @code{(0;0) (0.50;0.48) (1;1)}
5934 @item blue
5935 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5936 @end table
5937
5938 @item
5939 The previous example can also be achieved with the associated built-in preset:
5940 @example
5941 curves=preset=vintage
5942 @end example
5943
5944 @item
5945 Or simply:
5946 @example
5947 curves=vintage
5948 @end example
5949
5950 @item
5951 Use a Photoshop preset and redefine the points of the green component:
5952 @example
5953 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
5954 @end example
5955
5956 @item
5957 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
5958 and @command{gnuplot}:
5959 @example
5960 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
5961 gnuplot -p /tmp/curves.plt
5962 @end example
5963 @end itemize
5964
5965 @section datascope
5966
5967 Video data analysis filter.
5968
5969 This filter shows hexadecimal pixel values of part of video.
5970
5971 The filter accepts the following options:
5972
5973 @table @option
5974 @item size, s
5975 Set output video size.
5976
5977 @item x
5978 Set x offset from where to pick pixels.
5979
5980 @item y
5981 Set y offset from where to pick pixels.
5982
5983 @item mode
5984 Set scope mode, can be one of the following:
5985 @table @samp
5986 @item mono
5987 Draw hexadecimal pixel values with white color on black background.
5988
5989 @item color
5990 Draw hexadecimal pixel values with input video pixel color on black
5991 background.
5992
5993 @item color2
5994 Draw hexadecimal pixel values on color background picked from input video,
5995 the text color is picked in such way so its always visible.
5996 @end table
5997
5998 @item axis
5999 Draw rows and columns numbers on left and top of video.
6000 @end table
6001
6002 @section dctdnoiz
6003
6004 Denoise frames using 2D DCT (frequency domain filtering).
6005
6006 This filter is not designed for real time.
6007
6008 The filter accepts the following options:
6009
6010 @table @option
6011 @item sigma, s
6012 Set the noise sigma constant.
6013
6014 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6015 coefficient (absolute value) below this threshold with be dropped.
6016
6017 If you need a more advanced filtering, see @option{expr}.
6018
6019 Default is @code{0}.
6020
6021 @item overlap
6022 Set number overlapping pixels for each block. Since the filter can be slow, you
6023 may want to reduce this value, at the cost of a less effective filter and the
6024 risk of various artefacts.
6025
6026 If the overlapping value doesn't permit processing the whole input width or
6027 height, a warning will be displayed and according borders won't be denoised.
6028
6029 Default value is @var{blocksize}-1, which is the best possible setting.
6030
6031 @item expr, e
6032 Set the coefficient factor expression.
6033
6034 For each coefficient of a DCT block, this expression will be evaluated as a
6035 multiplier value for the coefficient.
6036
6037 If this is option is set, the @option{sigma} option will be ignored.
6038
6039 The absolute value of the coefficient can be accessed through the @var{c}
6040 variable.
6041
6042 @item n
6043 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6044 @var{blocksize}, which is the width and height of the processed blocks.
6045
6046 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6047 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6048 on the speed processing. Also, a larger block size does not necessarily means a
6049 better de-noising.
6050 @end table
6051
6052 @subsection Examples
6053
6054 Apply a denoise with a @option{sigma} of @code{4.5}:
6055 @example
6056 dctdnoiz=4.5
6057 @end example
6058
6059 The same operation can be achieved using the expression system:
6060 @example
6061 dctdnoiz=e='gte(c, 4.5*3)'
6062 @end example
6063
6064 Violent denoise using a block size of @code{16x16}:
6065 @example
6066 dctdnoiz=15:n=4
6067 @end example
6068
6069 @section deband
6070
6071 Remove banding artifacts from input video.
6072 It works by replacing banded pixels with average value of referenced pixels.
6073
6074 The filter accepts the following options:
6075
6076 @table @option
6077 @item 1thr
6078 @item 2thr
6079 @item 3thr
6080 @item 4thr
6081 Set banding detection threshold for each plane. Default is 0.02.
6082 Valid range is 0.00003 to 0.5.
6083 If difference between current pixel and reference pixel is less than threshold,
6084 it will be considered as banded.
6085
6086 @item range, r
6087 Banding detection range in pixels. Default is 16. If positive, random number
6088 in range 0 to set value will be used. If negative, exact absolute value
6089 will be used.
6090 The range defines square of four pixels around current pixel.
6091
6092 @item direction, d
6093 Set direction in radians from which four pixel will be compared. If positive,
6094 random direction from 0 to set direction will be picked. If negative, exact of
6095 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6096 will pick only pixels on same row and -PI/2 will pick only pixels on same
6097 column.
6098
6099 @item blur
6100 If enabled, current pixel is compared with average value of all four
6101 surrounding pixels. The default is enabled. If disabled current pixel is
6102 compared with all four surrounding pixels. The pixel is considered banded
6103 if only all four differences with surrounding pixels are less than threshold.
6104 @end table
6105
6106 @anchor{decimate}
6107 @section decimate
6108
6109 Drop duplicated frames at regular intervals.
6110
6111 The filter accepts the following options:
6112
6113 @table @option
6114 @item cycle
6115 Set the number of frames from which one will be dropped. Setting this to
6116 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6117 Default is @code{5}.
6118
6119 @item dupthresh
6120 Set the threshold for duplicate detection. If the difference metric for a frame
6121 is less than or equal to this value, then it is declared as duplicate. Default
6122 is @code{1.1}
6123
6124 @item scthresh
6125 Set scene change threshold. Default is @code{15}.
6126
6127 @item blockx
6128 @item blocky
6129 Set the size of the x and y-axis blocks used during metric calculations.
6130 Larger blocks give better noise suppression, but also give worse detection of
6131 small movements. Must be a power of two. Default is @code{32}.
6132
6133 @item ppsrc
6134 Mark main input as a pre-processed input and activate clean source input
6135 stream. This allows the input to be pre-processed with various filters to help
6136 the metrics calculation while keeping the frame selection lossless. When set to
6137 @code{1}, the first stream is for the pre-processed input, and the second
6138 stream is the clean source from where the kept frames are chosen. Default is
6139 @code{0}.
6140
6141 @item chroma
6142 Set whether or not chroma is considered in the metric calculations. Default is
6143 @code{1}.
6144 @end table
6145
6146 @section deflate
6147
6148 Apply deflate effect to the video.
6149
6150 This filter replaces the pixel by the local(3x3) average by taking into account
6151 only values lower than the pixel.
6152
6153 It accepts the following options:
6154
6155 @table @option
6156 @item threshold0
6157 @item threshold1
6158 @item threshold2
6159 @item threshold3
6160 Limit the maximum change for each plane, default is 65535.
6161 If 0, plane will remain unchanged.
6162 @end table
6163
6164 @section dejudder
6165
6166 Remove judder produced by partially interlaced telecined content.
6167
6168 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6169 source was partially telecined content then the output of @code{pullup,dejudder}
6170 will have a variable frame rate. May change the recorded frame rate of the
6171 container. Aside from that change, this filter will not affect constant frame
6172 rate video.
6173
6174 The option available in this filter is:
6175 @table @option
6176
6177 @item cycle
6178 Specify the length of the window over which the judder repeats.
6179
6180 Accepts any integer greater than 1. Useful values are:
6181 @table @samp
6182
6183 @item 4
6184 If the original was telecined from 24 to 30 fps (Film to NTSC).
6185
6186 @item 5
6187 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6188
6189 @item 20
6190 If a mixture of the two.
6191 @end table
6192
6193 The default is @samp{4}.
6194 @end table
6195
6196 @section delogo
6197
6198 Suppress a TV station logo by a simple interpolation of the surrounding
6199 pixels. Just set a rectangle covering the logo and watch it disappear
6200 (and sometimes something even uglier appear - your mileage may vary).
6201
6202 It accepts the following parameters:
6203 @table @option
6204
6205 @item x
6206 @item y
6207 Specify the top left corner coordinates of the logo. They must be
6208 specified.
6209
6210 @item w
6211 @item h
6212 Specify the width and height of the logo to clear. They must be
6213 specified.
6214
6215 @item band, t
6216 Specify the thickness of the fuzzy edge of the rectangle (added to
6217 @var{w} and @var{h}). The default value is 1. This option is
6218 deprecated, setting higher values should no longer be necessary and
6219 is not recommended.
6220
6221 @item show
6222 When set to 1, a green rectangle is drawn on the screen to simplify
6223 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6224 The default value is 0.
6225
6226 The rectangle is drawn on the outermost pixels which will be (partly)
6227 replaced with interpolated values. The values of the next pixels
6228 immediately outside this rectangle in each direction will be used to
6229 compute the interpolated pixel values inside the rectangle.
6230
6231 @end table
6232
6233 @subsection Examples
6234
6235 @itemize
6236 @item
6237 Set a rectangle covering the area with top left corner coordinates 0,0
6238 and size 100x77, and a band of size 10:
6239 @example
6240 delogo=x=0:y=0:w=100:h=77:band=10
6241 @end example
6242
6243 @end itemize
6244
6245 @section deshake
6246
6247 Attempt to fix small changes in horizontal and/or vertical shift. This
6248 filter helps remove camera shake from hand-holding a camera, bumping a
6249 tripod, moving on a vehicle, etc.
6250
6251 The filter accepts the following options:
6252
6253 @table @option
6254
6255 @item x
6256 @item y
6257 @item w
6258 @item h
6259 Specify a rectangular area where to limit the search for motion
6260 vectors.
6261 If desired the search for motion vectors can be limited to a
6262 rectangular area of the frame defined by its top left corner, width
6263 and height. These parameters have the same meaning as the drawbox
6264 filter which can be used to visualise the position of the bounding
6265 box.
6266
6267 This is useful when simultaneous movement of subjects within the frame
6268 might be confused for camera motion by the motion vector search.
6269
6270 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6271 then the full frame is used. This allows later options to be set
6272 without specifying the bounding box for the motion vector search.
6273
6274 Default - search the whole frame.
6275
6276 @item rx
6277 @item ry
6278 Specify the maximum extent of movement in x and y directions in the
6279 range 0-64 pixels. Default 16.
6280
6281 @item edge
6282 Specify how to generate pixels to fill blanks at the edge of the
6283 frame. Available values are:
6284 @table @samp
6285 @item blank, 0
6286 Fill zeroes at blank locations
6287 @item original, 1
6288 Original image at blank locations
6289 @item clamp, 2
6290 Extruded edge value at blank locations
6291 @item mirror, 3
6292 Mirrored edge at blank locations
6293 @end table
6294 Default value is @samp{mirror}.
6295
6296 @item blocksize
6297 Specify the blocksize to use for motion search. Range 4-128 pixels,
6298 default 8.
6299
6300 @item contrast
6301 Specify the contrast threshold for blocks. Only blocks with more than
6302 the specified contrast (difference between darkest and lightest
6303 pixels) will be considered. Range 1-255, default 125.
6304
6305 @item search
6306 Specify the search strategy. Available values are:
6307 @table @samp
6308 @item exhaustive, 0
6309 Set exhaustive search
6310 @item less, 1
6311 Set less exhaustive search.
6312 @end table
6313 Default value is @samp{exhaustive}.
6314
6315 @item filename
6316 If set then a detailed log of the motion search is written to the
6317 specified file.
6318
6319 @item opencl
6320 If set to 1, specify using OpenCL capabilities, only available if
6321 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6322
6323 @end table
6324
6325 @section detelecine
6326
6327 Apply an exact inverse of the telecine operation. It requires a predefined
6328 pattern specified using the pattern option which must be the same as that passed
6329 to the telecine filter.
6330
6331 This filter accepts the following options:
6332
6333 @table @option
6334 @item first_field
6335 @table @samp
6336 @item top, t
6337 top field first
6338 @item bottom, b
6339 bottom field first
6340 The default value is @code{top}.
6341 @end table
6342
6343 @item pattern
6344 A string of numbers representing the pulldown pattern you wish to apply.
6345 The default value is @code{23}.
6346
6347 @item start_frame
6348 A number representing position of the first frame with respect to the telecine
6349 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6350 @end table
6351
6352 @section dilation
6353
6354 Apply dilation effect to the video.
6355
6356 This filter replaces the pixel by the local(3x3) maximum.
6357
6358 It accepts the following options:
6359
6360 @table @option
6361 @item threshold0
6362 @item threshold1
6363 @item threshold2
6364 @item threshold3
6365 Limit the maximum change for each plane, default is 65535.
6366 If 0, plane will remain unchanged.
6367
6368 @item coordinates
6369 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6370 pixels are used.
6371
6372 Flags to local 3x3 coordinates maps like this:
6373
6374     1 2 3
6375     4   5
6376     6 7 8
6377 @end table
6378
6379 @section displace
6380
6381 Displace pixels as indicated by second and third input stream.
6382
6383 It takes three input streams and outputs one stream, the first input is the
6384 source, and second and third input are displacement maps.
6385
6386 The second input specifies how much to displace pixels along the
6387 x-axis, while the third input specifies how much to displace pixels
6388 along the y-axis.
6389 If one of displacement map streams terminates, last frame from that
6390 displacement map will be used.
6391
6392 Note that once generated, displacements maps can be reused over and over again.
6393
6394 A description of the accepted options follows.
6395
6396 @table @option
6397 @item edge
6398 Set displace behavior for pixels that are out of range.
6399
6400 Available values are:
6401 @table @samp
6402 @item blank
6403 Missing pixels are replaced by black pixels.
6404
6405 @item smear
6406 Adjacent pixels will spread out to replace missing pixels.
6407
6408 @item wrap
6409 Out of range pixels are wrapped so they point to pixels of other side.
6410 @end table
6411 Default is @samp{smear}.
6412
6413 @end table
6414
6415 @subsection Examples
6416
6417 @itemize
6418 @item
6419 Add ripple effect to rgb input of video size hd720:
6420 @example
6421 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
6422 @end example
6423
6424 @item
6425 Add wave effect to rgb input of video size hd720:
6426 @example
6427 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
6428 @end example
6429 @end itemize
6430
6431 @section drawbox
6432
6433 Draw a colored box on the input image.
6434
6435 It accepts the following parameters:
6436
6437 @table @option
6438 @item x
6439 @item y
6440 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6441
6442 @item width, w
6443 @item height, h
6444 The expressions which specify the width and height of the box; if 0 they are interpreted as
6445 the input width and height. It defaults to 0.
6446
6447 @item color, c
6448 Specify the color of the box to write. For the general syntax of this option,
6449 check the "Color" section in the ffmpeg-utils manual. If the special
6450 value @code{invert} is used, the box edge color is the same as the
6451 video with inverted luma.
6452
6453 @item thickness, t
6454 The expression which sets the thickness of the box edge. Default value is @code{3}.
6455
6456 See below for the list of accepted constants.
6457 @end table
6458
6459 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6460 following constants:
6461
6462 @table @option
6463 @item dar
6464 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6465
6466 @item hsub
6467 @item vsub
6468 horizontal and vertical chroma subsample values. For example for the
6469 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6470
6471 @item in_h, ih
6472 @item in_w, iw
6473 The input width and height.
6474
6475 @item sar
6476 The input sample aspect ratio.
6477
6478 @item x
6479 @item y
6480 The x and y offset coordinates where the box is drawn.
6481
6482 @item w
6483 @item h
6484 The width and height of the drawn box.
6485
6486 @item t
6487 The thickness of the drawn box.
6488
6489 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6490 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6491
6492 @end table
6493
6494 @subsection Examples
6495
6496 @itemize
6497 @item
6498 Draw a black box around the edge of the input image:
6499 @example
6500 drawbox
6501 @end example
6502
6503 @item
6504 Draw a box with color red and an opacity of 50%:
6505 @example
6506 drawbox=10:20:200:60:red@@0.5
6507 @end example
6508
6509 The previous example can be specified as:
6510 @example
6511 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6512 @end example
6513
6514 @item
6515 Fill the box with pink color:
6516 @example
6517 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6518 @end example
6519
6520 @item
6521 Draw a 2-pixel red 2.40:1 mask:
6522 @example
6523 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
6524 @end example
6525 @end itemize
6526
6527 @section drawgrid
6528
6529 Draw a grid on the input image.
6530
6531 It accepts the following parameters:
6532
6533 @table @option
6534 @item x
6535 @item y
6536 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6537
6538 @item width, w
6539 @item height, h
6540 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6541 input width and height, respectively, minus @code{thickness}, so image gets
6542 framed. Default to 0.
6543
6544 @item color, c
6545 Specify the color of the grid. For the general syntax of this option,
6546 check the "Color" section in the ffmpeg-utils manual. If the special
6547 value @code{invert} is used, the grid color is the same as the
6548 video with inverted luma.
6549
6550 @item thickness, t
6551 The expression which sets the thickness of the grid line. Default value is @code{1}.
6552
6553 See below for the list of accepted constants.
6554 @end table
6555
6556 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6557 following constants:
6558
6559 @table @option
6560 @item dar
6561 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6562
6563 @item hsub
6564 @item vsub
6565 horizontal and vertical chroma subsample values. For example for the
6566 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6567
6568 @item in_h, ih
6569 @item in_w, iw
6570 The input grid cell width and height.
6571
6572 @item sar
6573 The input sample aspect ratio.
6574
6575 @item x
6576 @item y
6577 The x and y coordinates of some point of grid intersection (meant to configure offset).
6578
6579 @item w
6580 @item h
6581 The width and height of the drawn cell.
6582
6583 @item t
6584 The thickness of the drawn cell.
6585
6586 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6587 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6588
6589 @end table
6590
6591 @subsection Examples
6592
6593 @itemize
6594 @item
6595 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6596 @example
6597 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6598 @end example
6599
6600 @item
6601 Draw a white 3x3 grid with an opacity of 50%:
6602 @example
6603 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6604 @end example
6605 @end itemize
6606
6607 @anchor{drawtext}
6608 @section drawtext
6609
6610 Draw a text string or text from a specified file on top of a video, using the
6611 libfreetype library.
6612
6613 To enable compilation of this filter, you need to configure FFmpeg with
6614 @code{--enable-libfreetype}.
6615 To enable default font fallback and the @var{font} option you need to
6616 configure FFmpeg with @code{--enable-libfontconfig}.
6617 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6618 @code{--enable-libfribidi}.
6619
6620 @subsection Syntax
6621
6622 It accepts the following parameters:
6623
6624 @table @option
6625
6626 @item box
6627 Used to draw a box around text using the background color.
6628 The value must be either 1 (enable) or 0 (disable).
6629 The default value of @var{box} is 0.
6630
6631 @item boxborderw
6632 Set the width of the border to be drawn around the box using @var{boxcolor}.
6633 The default value of @var{boxborderw} is 0.
6634
6635 @item boxcolor
6636 The color to be used for drawing box around text. For the syntax of this
6637 option, check the "Color" section in the ffmpeg-utils manual.
6638
6639 The default value of @var{boxcolor} is "white".
6640
6641 @item borderw
6642 Set the width of the border to be drawn around the text using @var{bordercolor}.
6643 The default value of @var{borderw} is 0.
6644
6645 @item bordercolor
6646 Set the color to be used for drawing border around text. For the syntax of this
6647 option, check the "Color" section in the ffmpeg-utils manual.
6648
6649 The default value of @var{bordercolor} is "black".
6650
6651 @item expansion
6652 Select how the @var{text} is expanded. Can be either @code{none},
6653 @code{strftime} (deprecated) or
6654 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6655 below for details.
6656
6657 @item fix_bounds
6658 If true, check and fix text coords to avoid clipping.
6659
6660 @item fontcolor
6661 The color to be used for drawing fonts. For the syntax of this option, check
6662 the "Color" section in the ffmpeg-utils manual.
6663
6664 The default value of @var{fontcolor} is "black".
6665
6666 @item fontcolor_expr
6667 String which is expanded the same way as @var{text} to obtain dynamic
6668 @var{fontcolor} value. By default this option has empty value and is not
6669 processed. When this option is set, it overrides @var{fontcolor} option.
6670
6671 @item font
6672 The font family to be used for drawing text. By default Sans.
6673
6674 @item fontfile
6675 The font file to be used for drawing text. The path must be included.
6676 This parameter is mandatory if the fontconfig support is disabled.
6677
6678 @item draw
6679 This option does not exist, please see the timeline system
6680
6681 @item alpha
6682 Draw the text applying alpha blending. The value can
6683 be either a number between 0.0 and 1.0
6684 The expression accepts the same variables @var{x, y} do.
6685 The default value is 1.
6686 Please see fontcolor_expr
6687
6688 @item fontsize
6689 The font size to be used for drawing text.
6690 The default value of @var{fontsize} is 16.
6691
6692 @item text_shaping
6693 If set to 1, attempt to shape the text (for example, reverse the order of
6694 right-to-left text and join Arabic characters) before drawing it.
6695 Otherwise, just draw the text exactly as given.
6696 By default 1 (if supported).
6697
6698 @item ft_load_flags
6699 The flags to be used for loading the fonts.
6700
6701 The flags map the corresponding flags supported by libfreetype, and are
6702 a combination of the following values:
6703 @table @var
6704 @item default
6705 @item no_scale
6706 @item no_hinting
6707 @item render
6708 @item no_bitmap
6709 @item vertical_layout
6710 @item force_autohint
6711 @item crop_bitmap
6712 @item pedantic
6713 @item ignore_global_advance_width
6714 @item no_recurse
6715 @item ignore_transform
6716 @item monochrome
6717 @item linear_design
6718 @item no_autohint
6719 @end table
6720
6721 Default value is "default".
6722
6723 For more information consult the documentation for the FT_LOAD_*
6724 libfreetype flags.
6725
6726 @item shadowcolor
6727 The color to be used for drawing a shadow behind the drawn text. For the
6728 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6729
6730 The default value of @var{shadowcolor} is "black".
6731
6732 @item shadowx
6733 @item shadowy
6734 The x and y offsets for the text shadow position with respect to the
6735 position of the text. They can be either positive or negative
6736 values. The default value for both is "0".
6737
6738 @item start_number
6739 The starting frame number for the n/frame_num variable. The default value
6740 is "0".
6741
6742 @item tabsize
6743 The size in number of spaces to use for rendering the tab.
6744 Default value is 4.
6745
6746 @item timecode
6747 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6748 format. It can be used with or without text parameter. @var{timecode_rate}
6749 option must be specified.
6750
6751 @item timecode_rate, rate, r
6752 Set the timecode frame rate (timecode only).
6753
6754 @item text
6755 The text string to be drawn. The text must be a sequence of UTF-8
6756 encoded characters.
6757 This parameter is mandatory if no file is specified with the parameter
6758 @var{textfile}.
6759
6760 @item textfile
6761 A text file containing text to be drawn. The text must be a sequence
6762 of UTF-8 encoded characters.
6763
6764 This parameter is mandatory if no text string is specified with the
6765 parameter @var{text}.
6766
6767 If both @var{text} and @var{textfile} are specified, an error is thrown.
6768
6769 @item reload
6770 If set to 1, the @var{textfile} will be reloaded before each frame.
6771 Be sure to update it atomically, or it may be read partially, or even fail.
6772
6773 @item x
6774 @item y
6775 The expressions which specify the offsets where text will be drawn
6776 within the video frame. They are relative to the top/left border of the
6777 output image.
6778
6779 The default value of @var{x} and @var{y} is "0".
6780
6781 See below for the list of accepted constants and functions.
6782 @end table
6783
6784 The parameters for @var{x} and @var{y} are expressions containing the
6785 following constants and functions:
6786
6787 @table @option
6788 @item dar
6789 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6790
6791 @item hsub
6792 @item vsub
6793 horizontal and vertical chroma subsample values. For example for the
6794 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6795
6796 @item line_h, lh
6797 the height of each text line
6798
6799 @item main_h, h, H
6800 the input height
6801
6802 @item main_w, w, W
6803 the input width
6804
6805 @item max_glyph_a, ascent
6806 the maximum distance from the baseline to the highest/upper grid
6807 coordinate used to place a glyph outline point, for all the rendered
6808 glyphs.
6809 It is a positive value, due to the grid's orientation with the Y axis
6810 upwards.
6811
6812 @item max_glyph_d, descent
6813 the maximum distance from the baseline to the lowest grid coordinate
6814 used to place a glyph outline point, for all the rendered glyphs.
6815 This is a negative value, due to the grid's orientation, with the Y axis
6816 upwards.
6817
6818 @item max_glyph_h
6819 maximum glyph height, that is the maximum height for all the glyphs
6820 contained in the rendered text, it is equivalent to @var{ascent} -
6821 @var{descent}.
6822
6823 @item max_glyph_w
6824 maximum glyph width, that is the maximum width for all the glyphs
6825 contained in the rendered text
6826
6827 @item n
6828 the number of input frame, starting from 0
6829
6830 @item rand(min, max)
6831 return a random number included between @var{min} and @var{max}
6832
6833 @item sar
6834 The input sample aspect ratio.
6835
6836 @item t
6837 timestamp expressed in seconds, NAN if the input timestamp is unknown
6838
6839 @item text_h, th
6840 the height of the rendered text
6841
6842 @item text_w, tw
6843 the width of the rendered text
6844
6845 @item x
6846 @item y
6847 the x and y offset coordinates where the text is drawn.
6848
6849 These parameters allow the @var{x} and @var{y} expressions to refer
6850 each other, so you can for example specify @code{y=x/dar}.
6851 @end table
6852
6853 @anchor{drawtext_expansion}
6854 @subsection Text expansion
6855
6856 If @option{expansion} is set to @code{strftime},
6857 the filter recognizes strftime() sequences in the provided text and
6858 expands them accordingly. Check the documentation of strftime(). This
6859 feature is deprecated.
6860
6861 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6862
6863 If @option{expansion} is set to @code{normal} (which is the default),
6864 the following expansion mechanism is used.
6865
6866 The backslash character @samp{\}, followed by any character, always expands to
6867 the second character.
6868
6869 Sequence of the form @code{%@{...@}} are expanded. The text between the
6870 braces is a function name, possibly followed by arguments separated by ':'.
6871 If the arguments contain special characters or delimiters (':' or '@}'),
6872 they should be escaped.
6873
6874 Note that they probably must also be escaped as the value for the
6875 @option{text} option in the filter argument string and as the filter
6876 argument in the filtergraph description, and possibly also for the shell,
6877 that makes up to four levels of escaping; using a text file avoids these
6878 problems.
6879
6880 The following functions are available:
6881
6882 @table @command
6883
6884 @item expr, e
6885 The expression evaluation result.
6886
6887 It must take one argument specifying the expression to be evaluated,
6888 which accepts the same constants and functions as the @var{x} and
6889 @var{y} values. Note that not all constants should be used, for
6890 example the text size is not known when evaluating the expression, so
6891 the constants @var{text_w} and @var{text_h} will have an undefined
6892 value.
6893
6894 @item expr_int_format, eif
6895 Evaluate the expression's value and output as formatted integer.
6896
6897 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6898 The second argument specifies the output format. Allowed values are @samp{x},
6899 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6900 @code{printf} function.
6901 The third parameter is optional and sets the number of positions taken by the output.
6902 It can be used to add padding with zeros from the left.
6903
6904 @item gmtime
6905 The time at which the filter is running, expressed in UTC.
6906 It can accept an argument: a strftime() format string.
6907
6908 @item localtime
6909 The time at which the filter is running, expressed in the local time zone.
6910 It can accept an argument: a strftime() format string.
6911
6912 @item metadata
6913 Frame metadata. Takes one or two arguments.
6914
6915 The first argument is mandatory and specifies the metadata key.
6916
6917 The second argument is optional and specifies a default value, used when the
6918 metadata key is not found or empty.
6919
6920 @item n, frame_num
6921 The frame number, starting from 0.
6922
6923 @item pict_type
6924 A 1 character description of the current picture type.
6925
6926 @item pts
6927 The timestamp of the current frame.
6928 It can take up to three arguments.
6929
6930 The first argument is the format of the timestamp; it defaults to @code{flt}
6931 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6932 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6933 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6934 @code{localtime} stands for the timestamp of the frame formatted as
6935 local time zone time.
6936
6937 The second argument is an offset added to the timestamp.
6938
6939 If the format is set to @code{localtime} or @code{gmtime},
6940 a third argument may be supplied: a strftime() format string.
6941 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6942 @end table
6943
6944 @subsection Examples
6945
6946 @itemize
6947 @item
6948 Draw "Test Text" with font FreeSerif, using the default values for the
6949 optional parameters.
6950
6951 @example
6952 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6953 @end example
6954
6955 @item
6956 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
6957 and y=50 (counting from the top-left corner of the screen), text is
6958 yellow with a red box around it. Both the text and the box have an
6959 opacity of 20%.
6960
6961 @example
6962 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
6963           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
6964 @end example
6965
6966 Note that the double quotes are not necessary if spaces are not used
6967 within the parameter list.
6968
6969 @item
6970 Show the text at the center of the video frame:
6971 @example
6972 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
6973 @end example
6974
6975 @item
6976 Show the text at a random position, switching to a new position every 30 seconds:
6977 @example
6978 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)"
6979 @end example
6980
6981 @item
6982 Show a text line sliding from right to left in the last row of the video
6983 frame. The file @file{LONG_LINE} is assumed to contain a single line
6984 with no newlines.
6985 @example
6986 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
6987 @end example
6988
6989 @item
6990 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
6991 @example
6992 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
6993 @end example
6994
6995 @item
6996 Draw a single green letter "g", at the center of the input video.
6997 The glyph baseline is placed at half screen height.
6998 @example
6999 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7000 @end example
7001
7002 @item
7003 Show text for 1 second every 3 seconds:
7004 @example
7005 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7006 @end example
7007
7008 @item
7009 Use fontconfig to set the font. Note that the colons need to be escaped.
7010 @example
7011 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7012 @end example
7013
7014 @item
7015 Print the date of a real-time encoding (see strftime(3)):
7016 @example
7017 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7018 @end example
7019
7020 @item
7021 Show text fading in and out (appearing/disappearing):
7022 @example
7023 #!/bin/sh
7024 DS=1.0 # display start
7025 DE=10.0 # display end
7026 FID=1.5 # fade in duration
7027 FOD=5 # fade out duration
7028 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 @}"
7029 @end example
7030
7031 @end itemize
7032
7033 For more information about libfreetype, check:
7034 @url{http://www.freetype.org/}.
7035
7036 For more information about fontconfig, check:
7037 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7038
7039 For more information about libfribidi, check:
7040 @url{http://fribidi.org/}.
7041
7042 @section edgedetect
7043
7044 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7045
7046 The filter accepts the following options:
7047
7048 @table @option
7049 @item low
7050 @item high
7051 Set low and high threshold values used by the Canny thresholding
7052 algorithm.
7053
7054 The high threshold selects the "strong" edge pixels, which are then
7055 connected through 8-connectivity with the "weak" edge pixels selected
7056 by the low threshold.
7057
7058 @var{low} and @var{high} threshold values must be chosen in the range
7059 [0,1], and @var{low} should be lesser or equal to @var{high}.
7060
7061 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7062 is @code{50/255}.
7063
7064 @item mode
7065 Define the drawing mode.
7066
7067 @table @samp
7068 @item wires
7069 Draw white/gray wires on black background.
7070
7071 @item colormix
7072 Mix the colors to create a paint/cartoon effect.
7073 @end table
7074
7075 Default value is @var{wires}.
7076 @end table
7077
7078 @subsection Examples
7079
7080 @itemize
7081 @item
7082 Standard edge detection with custom values for the hysteresis thresholding:
7083 @example
7084 edgedetect=low=0.1:high=0.4
7085 @end example
7086
7087 @item
7088 Painting effect without thresholding:
7089 @example
7090 edgedetect=mode=colormix:high=0
7091 @end example
7092 @end itemize
7093
7094 @section eq
7095 Set brightness, contrast, saturation and approximate gamma adjustment.
7096
7097 The filter accepts the following options:
7098
7099 @table @option
7100 @item contrast
7101 Set the contrast expression. The value must be a float value in range
7102 @code{-2.0} to @code{2.0}. The default value is "1".
7103
7104 @item brightness
7105 Set the brightness expression. The value must be a float value in
7106 range @code{-1.0} to @code{1.0}. The default value is "0".
7107
7108 @item saturation
7109 Set the saturation expression. The value must be a float in
7110 range @code{0.0} to @code{3.0}. The default value is "1".
7111
7112 @item gamma
7113 Set the gamma expression. The value must be a float in range
7114 @code{0.1} to @code{10.0}.  The default value is "1".
7115
7116 @item gamma_r
7117 Set the gamma expression for red. The value must be a float in
7118 range @code{0.1} to @code{10.0}. The default value is "1".
7119
7120 @item gamma_g
7121 Set the gamma expression for green. The value must be a float in range
7122 @code{0.1} to @code{10.0}. The default value is "1".
7123
7124 @item gamma_b
7125 Set the gamma expression for blue. The value must be a float in range
7126 @code{0.1} to @code{10.0}. The default value is "1".
7127
7128 @item gamma_weight
7129 Set the gamma weight expression. It can be used to reduce the effect
7130 of a high gamma value on bright image areas, e.g. keep them from
7131 getting overamplified and just plain white. The value must be a float
7132 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7133 gamma correction all the way down while @code{1.0} leaves it at its
7134 full strength. Default is "1".
7135
7136 @item eval
7137 Set when the expressions for brightness, contrast, saturation and
7138 gamma expressions are evaluated.
7139
7140 It accepts the following values:
7141 @table @samp
7142 @item init
7143 only evaluate expressions once during the filter initialization or
7144 when a command is processed
7145
7146 @item frame
7147 evaluate expressions for each incoming frame
7148 @end table
7149
7150 Default value is @samp{init}.
7151 @end table
7152
7153 The expressions accept the following parameters:
7154 @table @option
7155 @item n
7156 frame count of the input frame starting from 0
7157
7158 @item pos
7159 byte position of the corresponding packet in the input file, NAN if
7160 unspecified
7161
7162 @item r
7163 frame rate of the input video, NAN if the input frame rate is unknown
7164
7165 @item t
7166 timestamp expressed in seconds, NAN if the input timestamp is unknown
7167 @end table
7168
7169 @subsection Commands
7170 The filter supports the following commands:
7171
7172 @table @option
7173 @item contrast
7174 Set the contrast expression.
7175
7176 @item brightness
7177 Set the brightness expression.
7178
7179 @item saturation
7180 Set the saturation expression.
7181
7182 @item gamma
7183 Set the gamma expression.
7184
7185 @item gamma_r
7186 Set the gamma_r expression.
7187
7188 @item gamma_g
7189 Set gamma_g expression.
7190
7191 @item gamma_b
7192 Set gamma_b expression.
7193
7194 @item gamma_weight
7195 Set gamma_weight expression.
7196
7197 The command accepts the same syntax of the corresponding option.
7198
7199 If the specified expression is not valid, it is kept at its current
7200 value.
7201
7202 @end table
7203
7204 @section erosion
7205
7206 Apply erosion effect to the video.
7207
7208 This filter replaces the pixel by the local(3x3) minimum.
7209
7210 It accepts the following options:
7211
7212 @table @option
7213 @item threshold0
7214 @item threshold1
7215 @item threshold2
7216 @item threshold3
7217 Limit the maximum change for each plane, default is 65535.
7218 If 0, plane will remain unchanged.
7219
7220 @item coordinates
7221 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7222 pixels are used.
7223
7224 Flags to local 3x3 coordinates maps like this:
7225
7226     1 2 3
7227     4   5
7228     6 7 8
7229 @end table
7230
7231 @section extractplanes
7232
7233 Extract color channel components from input video stream into
7234 separate grayscale video streams.
7235
7236 The filter accepts the following option:
7237
7238 @table @option
7239 @item planes
7240 Set plane(s) to extract.
7241
7242 Available values for planes are:
7243 @table @samp
7244 @item y
7245 @item u
7246 @item v
7247 @item a
7248 @item r
7249 @item g
7250 @item b
7251 @end table
7252
7253 Choosing planes not available in the input will result in an error.
7254 That means you cannot select @code{r}, @code{g}, @code{b} planes
7255 with @code{y}, @code{u}, @code{v} planes at same time.
7256 @end table
7257
7258 @subsection Examples
7259
7260 @itemize
7261 @item
7262 Extract luma, u and v color channel component from input video frame
7263 into 3 grayscale outputs:
7264 @example
7265 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
7266 @end example
7267 @end itemize
7268
7269 @section elbg
7270
7271 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7272
7273 For each input image, the filter will compute the optimal mapping from
7274 the input to the output given the codebook length, that is the number
7275 of distinct output colors.
7276
7277 This filter accepts the following options.
7278
7279 @table @option
7280 @item codebook_length, l
7281 Set codebook length. The value must be a positive integer, and
7282 represents the number of distinct output colors. Default value is 256.
7283
7284 @item nb_steps, n
7285 Set the maximum number of iterations to apply for computing the optimal
7286 mapping. The higher the value the better the result and the higher the
7287 computation time. Default value is 1.
7288
7289 @item seed, s
7290 Set a random seed, must be an integer included between 0 and
7291 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7292 will try to use a good random seed on a best effort basis.
7293
7294 @item pal8
7295 Set pal8 output pixel format. This option does not work with codebook
7296 length greater than 256.
7297 @end table
7298
7299 @section fade
7300
7301 Apply a fade-in/out effect to the input video.
7302
7303 It accepts the following parameters:
7304
7305 @table @option
7306 @item type, t
7307 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7308 effect.
7309 Default is @code{in}.
7310
7311 @item start_frame, s
7312 Specify the number of the frame to start applying the fade
7313 effect at. Default is 0.
7314
7315 @item nb_frames, n
7316 The number of frames that the fade effect lasts. At the end of the
7317 fade-in effect, the output video will have the same intensity as the input video.
7318 At the end of the fade-out transition, the output video will be filled with the
7319 selected @option{color}.
7320 Default is 25.
7321
7322 @item alpha
7323 If set to 1, fade only alpha channel, if one exists on the input.
7324 Default value is 0.
7325
7326 @item start_time, st
7327 Specify the timestamp (in seconds) of the frame to start to apply the fade
7328 effect. If both start_frame and start_time are specified, the fade will start at
7329 whichever comes last.  Default is 0.
7330
7331 @item duration, d
7332 The number of seconds for which the fade effect has to last. At the end of the
7333 fade-in effect the output video will have the same intensity as the input video,
7334 at the end of the fade-out transition the output video will be filled with the
7335 selected @option{color}.
7336 If both duration and nb_frames are specified, duration is used. Default is 0
7337 (nb_frames is used by default).
7338
7339 @item color, c
7340 Specify the color of the fade. Default is "black".
7341 @end table
7342
7343 @subsection Examples
7344
7345 @itemize
7346 @item
7347 Fade in the first 30 frames of video:
7348 @example
7349 fade=in:0:30
7350 @end example
7351
7352 The command above is equivalent to:
7353 @example
7354 fade=t=in:s=0:n=30
7355 @end example
7356
7357 @item
7358 Fade out the last 45 frames of a 200-frame video:
7359 @example
7360 fade=out:155:45
7361 fade=type=out:start_frame=155:nb_frames=45
7362 @end example
7363
7364 @item
7365 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7366 @example
7367 fade=in:0:25, fade=out:975:25
7368 @end example
7369
7370 @item
7371 Make the first 5 frames yellow, then fade in from frame 5-24:
7372 @example
7373 fade=in:5:20:color=yellow
7374 @end example
7375
7376 @item
7377 Fade in alpha over first 25 frames of video:
7378 @example
7379 fade=in:0:25:alpha=1
7380 @end example
7381
7382 @item
7383 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7384 @example
7385 fade=t=in:st=5.5:d=0.5
7386 @end example
7387
7388 @end itemize
7389
7390 @section fftfilt
7391 Apply arbitrary expressions to samples in frequency domain
7392
7393 @table @option
7394 @item dc_Y
7395 Adjust the dc value (gain) of the luma plane of the image. The filter
7396 accepts an integer value in range @code{0} to @code{1000}. The default
7397 value is set to @code{0}.
7398
7399 @item dc_U
7400 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7401 filter accepts an integer value in range @code{0} to @code{1000}. The
7402 default value is set to @code{0}.
7403
7404 @item dc_V
7405 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7406 filter accepts an integer value in range @code{0} to @code{1000}. The
7407 default value is set to @code{0}.
7408
7409 @item weight_Y
7410 Set the frequency domain weight expression for the luma plane.
7411
7412 @item weight_U
7413 Set the frequency domain weight expression for the 1st chroma plane.
7414
7415 @item weight_V
7416 Set the frequency domain weight expression for the 2nd chroma plane.
7417
7418 The filter accepts the following variables:
7419 @item X
7420 @item Y
7421 The coordinates of the current sample.
7422
7423 @item W
7424 @item H
7425 The width and height of the image.
7426 @end table
7427
7428 @subsection Examples
7429
7430 @itemize
7431 @item
7432 High-pass:
7433 @example
7434 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7435 @end example
7436
7437 @item
7438 Low-pass:
7439 @example
7440 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7441 @end example
7442
7443 @item
7444 Sharpen:
7445 @example
7446 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7447 @end example
7448
7449 @item
7450 Blur:
7451 @example
7452 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7453 @end example
7454
7455 @end itemize
7456
7457 @section field
7458
7459 Extract a single field from an interlaced image using stride
7460 arithmetic to avoid wasting CPU time. The output frames are marked as
7461 non-interlaced.
7462
7463 The filter accepts the following options:
7464
7465 @table @option
7466 @item type
7467 Specify whether to extract the top (if the value is @code{0} or
7468 @code{top}) or the bottom field (if the value is @code{1} or
7469 @code{bottom}).
7470 @end table
7471
7472 @section fieldhint
7473
7474 Create new frames by copying the top and bottom fields from surrounding frames
7475 supplied as numbers by the hint file.
7476
7477 @table @option
7478 @item hint
7479 Set file containing hints: absolute/relative frame numbers.
7480
7481 There must be one line for each frame in a clip. Each line must contain two
7482 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7483 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7484 is current frame number for @code{absolute} mode or out of [-1, 1] range
7485 for @code{relative} mode. First number tells from which frame to pick up top
7486 field and second number tells from which frame to pick up bottom field.
7487
7488 If optionally followed by @code{+} output frame will be marked as interlaced,
7489 else if followed by @code{-} output frame will be marked as progressive, else
7490 it will be marked same as input frame.
7491 If line starts with @code{#} or @code{;} that line is skipped.
7492
7493 @item mode
7494 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7495 @end table
7496
7497 Example of first several lines of @code{hint} file for @code{relative} mode:
7498 @example
7499 0,0 - # first frame
7500 1,0 - # second frame, use third's frame top field and second's frame bottom field
7501 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7502 1,0 -
7503 0,0 -
7504 0,0 -
7505 1,0 -
7506 1,0 -
7507 1,0 -
7508 0,0 -
7509 0,0 -
7510 1,0 -
7511 1,0 -
7512 1,0 -
7513 0,0 -
7514 @end example
7515
7516 @section fieldmatch
7517
7518 Field matching filter for inverse telecine. It is meant to reconstruct the
7519 progressive frames from a telecined stream. The filter does not drop duplicated
7520 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7521 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7522
7523 The separation of the field matching and the decimation is notably motivated by
7524 the possibility of inserting a de-interlacing filter fallback between the two.
7525 If the source has mixed telecined and real interlaced content,
7526 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7527 But these remaining combed frames will be marked as interlaced, and thus can be
7528 de-interlaced by a later filter such as @ref{yadif} before decimation.
7529
7530 In addition to the various configuration options, @code{fieldmatch} can take an
7531 optional second stream, activated through the @option{ppsrc} option. If
7532 enabled, the frames reconstruction will be based on the fields and frames from
7533 this second stream. This allows the first input to be pre-processed in order to
7534 help the various algorithms of the filter, while keeping the output lossless
7535 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7536 or brightness/contrast adjustments can help.
7537
7538 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7539 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7540 which @code{fieldmatch} is based on. While the semantic and usage are very
7541 close, some behaviour and options names can differ.
7542
7543 The @ref{decimate} filter currently only works for constant frame rate input.
7544 If your input has mixed telecined (30fps) and progressive content with a lower
7545 framerate like 24fps use the following filterchain to produce the necessary cfr
7546 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7547
7548 The filter accepts the following options:
7549
7550 @table @option
7551 @item order
7552 Specify the assumed field order of the input stream. Available values are:
7553
7554 @table @samp
7555 @item auto
7556 Auto detect parity (use FFmpeg's internal parity value).
7557 @item bff
7558 Assume bottom field first.
7559 @item tff
7560 Assume top field first.
7561 @end table
7562
7563 Note that it is sometimes recommended not to trust the parity announced by the
7564 stream.
7565
7566 Default value is @var{auto}.
7567
7568 @item mode
7569 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7570 sense that it won't risk creating jerkiness due to duplicate frames when
7571 possible, but if there are bad edits or blended fields it will end up
7572 outputting combed frames when a good match might actually exist. On the other
7573 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7574 but will almost always find a good frame if there is one. The other values are
7575 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7576 jerkiness and creating duplicate frames versus finding good matches in sections
7577 with bad edits, orphaned fields, blended fields, etc.
7578
7579 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7580
7581 Available values are:
7582
7583 @table @samp
7584 @item pc
7585 2-way matching (p/c)
7586 @item pc_n
7587 2-way matching, and trying 3rd match if still combed (p/c + n)
7588 @item pc_u
7589 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7590 @item pc_n_ub
7591 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7592 still combed (p/c + n + u/b)
7593 @item pcn
7594 3-way matching (p/c/n)
7595 @item pcn_ub
7596 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7597 detected as combed (p/c/n + u/b)
7598 @end table
7599
7600 The parenthesis at the end indicate the matches that would be used for that
7601 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7602 @var{top}).
7603
7604 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7605 the slowest.
7606
7607 Default value is @var{pc_n}.
7608
7609 @item ppsrc
7610 Mark the main input stream as a pre-processed input, and enable the secondary
7611 input stream as the clean source to pick the fields from. See the filter
7612 introduction for more details. It is similar to the @option{clip2} feature from
7613 VFM/TFM.
7614
7615 Default value is @code{0} (disabled).
7616
7617 @item field
7618 Set the field to match from. It is recommended to set this to the same value as
7619 @option{order} unless you experience matching failures with that setting. In
7620 certain circumstances changing the field that is used to match from can have a
7621 large impact on matching performance. Available values are:
7622
7623 @table @samp
7624 @item auto
7625 Automatic (same value as @option{order}).
7626 @item bottom
7627 Match from the bottom field.
7628 @item top
7629 Match from the top field.
7630 @end table
7631
7632 Default value is @var{auto}.
7633
7634 @item mchroma
7635 Set whether or not chroma is included during the match comparisons. In most
7636 cases it is recommended to leave this enabled. You should set this to @code{0}
7637 only if your clip has bad chroma problems such as heavy rainbowing or other
7638 artifacts. Setting this to @code{0} could also be used to speed things up at
7639 the cost of some accuracy.
7640
7641 Default value is @code{1}.
7642
7643 @item y0
7644 @item y1
7645 These define an exclusion band which excludes the lines between @option{y0} and
7646 @option{y1} from being included in the field matching decision. An exclusion
7647 band can be used to ignore subtitles, a logo, or other things that may
7648 interfere with the matching. @option{y0} sets the starting scan line and
7649 @option{y1} sets the ending line; all lines in between @option{y0} and
7650 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7651 @option{y0} and @option{y1} to the same value will disable the feature.
7652 @option{y0} and @option{y1} defaults to @code{0}.
7653
7654 @item scthresh
7655 Set the scene change detection threshold as a percentage of maximum change on
7656 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7657 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7658 @option{scthresh} is @code{[0.0, 100.0]}.
7659
7660 Default value is @code{12.0}.
7661
7662 @item combmatch
7663 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7664 account the combed scores of matches when deciding what match to use as the
7665 final match. Available values are:
7666
7667 @table @samp
7668 @item none
7669 No final matching based on combed scores.
7670 @item sc
7671 Combed scores are only used when a scene change is detected.
7672 @item full
7673 Use combed scores all the time.
7674 @end table
7675
7676 Default is @var{sc}.
7677
7678 @item combdbg
7679 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7680 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7681 Available values are:
7682
7683 @table @samp
7684 @item none
7685 No forced calculation.
7686 @item pcn
7687 Force p/c/n calculations.
7688 @item pcnub
7689 Force p/c/n/u/b calculations.
7690 @end table
7691
7692 Default value is @var{none}.
7693
7694 @item cthresh
7695 This is the area combing threshold used for combed frame detection. This
7696 essentially controls how "strong" or "visible" combing must be to be detected.
7697 Larger values mean combing must be more visible and smaller values mean combing
7698 can be less visible or strong and still be detected. Valid settings are from
7699 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7700 be detected as combed). This is basically a pixel difference value. A good
7701 range is @code{[8, 12]}.
7702
7703 Default value is @code{9}.
7704
7705 @item chroma
7706 Sets whether or not chroma is considered in the combed frame decision.  Only
7707 disable this if your source has chroma problems (rainbowing, etc.) that are
7708 causing problems for the combed frame detection with chroma enabled. Actually,
7709 using @option{chroma}=@var{0} is usually more reliable, except for the case
7710 where there is chroma only combing in the source.
7711
7712 Default value is @code{0}.
7713
7714 @item blockx
7715 @item blocky
7716 Respectively set the x-axis and y-axis size of the window used during combed
7717 frame detection. This has to do with the size of the area in which
7718 @option{combpel} pixels are required to be detected as combed for a frame to be
7719 declared combed. See the @option{combpel} parameter description for more info.
7720 Possible values are any number that is a power of 2 starting at 4 and going up
7721 to 512.
7722
7723 Default value is @code{16}.
7724
7725 @item combpel
7726 The number of combed pixels inside any of the @option{blocky} by
7727 @option{blockx} size blocks on the frame for the frame to be detected as
7728 combed. While @option{cthresh} controls how "visible" the combing must be, this
7729 setting controls "how much" combing there must be in any localized area (a
7730 window defined by the @option{blockx} and @option{blocky} settings) on the
7731 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7732 which point no frames will ever be detected as combed). This setting is known
7733 as @option{MI} in TFM/VFM vocabulary.
7734
7735 Default value is @code{80}.
7736 @end table
7737
7738 @anchor{p/c/n/u/b meaning}
7739 @subsection p/c/n/u/b meaning
7740
7741 @subsubsection p/c/n
7742
7743 We assume the following telecined stream:
7744
7745 @example
7746 Top fields:     1 2 2 3 4
7747 Bottom fields:  1 2 3 4 4
7748 @end example
7749
7750 The numbers correspond to the progressive frame the fields relate to. Here, the
7751 first two frames are progressive, the 3rd and 4th are combed, and so on.
7752
7753 When @code{fieldmatch} is configured to run a matching from bottom
7754 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7755
7756 @example
7757 Input stream:
7758                 T     1 2 2 3 4
7759                 B     1 2 3 4 4   <-- matching reference
7760
7761 Matches:              c c n n c
7762
7763 Output stream:
7764                 T     1 2 3 4 4
7765                 B     1 2 3 4 4
7766 @end example
7767
7768 As a result of the field matching, we can see that some frames get duplicated.
7769 To perform a complete inverse telecine, you need to rely on a decimation filter
7770 after this operation. See for instance the @ref{decimate} filter.
7771
7772 The same operation now matching from top fields (@option{field}=@var{top})
7773 looks like this:
7774
7775 @example
7776 Input stream:
7777                 T     1 2 2 3 4   <-- matching reference
7778                 B     1 2 3 4 4
7779
7780 Matches:              c c p p c
7781
7782 Output stream:
7783                 T     1 2 2 3 4
7784                 B     1 2 2 3 4
7785 @end example
7786
7787 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7788 basically, they refer to the frame and field of the opposite parity:
7789
7790 @itemize
7791 @item @var{p} matches the field of the opposite parity in the previous frame
7792 @item @var{c} matches the field of the opposite parity in the current frame
7793 @item @var{n} matches the field of the opposite parity in the next frame
7794 @end itemize
7795
7796 @subsubsection u/b
7797
7798 The @var{u} and @var{b} matching are a bit special in the sense that they match
7799 from the opposite parity flag. In the following examples, we assume that we are
7800 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7801 'x' is placed above and below each matched fields.
7802
7803 With bottom matching (@option{field}=@var{bottom}):
7804 @example
7805 Match:           c         p           n          b          u
7806
7807                  x       x               x        x          x
7808   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7809   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7810                  x         x           x        x              x
7811
7812 Output frames:
7813                  2          1          2          2          2
7814                  2          2          2          1          3
7815 @end example
7816
7817 With top matching (@option{field}=@var{top}):
7818 @example
7819 Match:           c         p           n          b          u
7820
7821                  x         x           x        x              x
7822   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7823   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7824                  x       x               x        x          x
7825
7826 Output frames:
7827                  2          2          2          1          2
7828                  2          1          3          2          2
7829 @end example
7830
7831 @subsection Examples
7832
7833 Simple IVTC of a top field first telecined stream:
7834 @example
7835 fieldmatch=order=tff:combmatch=none, decimate
7836 @end example
7837
7838 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7839 @example
7840 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7841 @end example
7842
7843 @section fieldorder
7844
7845 Transform the field order of the input video.
7846
7847 It accepts the following parameters:
7848
7849 @table @option
7850
7851 @item order
7852 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7853 for bottom field first.
7854 @end table
7855
7856 The default value is @samp{tff}.
7857
7858 The transformation is done by shifting the picture content up or down
7859 by one line, and filling the remaining line with appropriate picture content.
7860 This method is consistent with most broadcast field order converters.
7861
7862 If the input video is not flagged as being interlaced, or it is already
7863 flagged as being of the required output field order, then this filter does
7864 not alter the incoming video.
7865
7866 It is very useful when converting to or from PAL DV material,
7867 which is bottom field first.
7868
7869 For example:
7870 @example
7871 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7872 @end example
7873
7874 @section fifo, afifo
7875
7876 Buffer input images and send them when they are requested.
7877
7878 It is mainly useful when auto-inserted by the libavfilter
7879 framework.
7880
7881 It does not take parameters.
7882
7883 @section find_rect
7884
7885 Find a rectangular object
7886
7887 It accepts the following options:
7888
7889 @table @option
7890 @item object
7891 Filepath of the object image, needs to be in gray8.
7892
7893 @item threshold
7894 Detection threshold, default is 0.5.
7895
7896 @item mipmaps
7897 Number of mipmaps, default is 3.
7898
7899 @item xmin, ymin, xmax, ymax
7900 Specifies the rectangle in which to search.
7901 @end table
7902
7903 @subsection Examples
7904
7905 @itemize
7906 @item
7907 Generate a representative palette of a given video using @command{ffmpeg}:
7908 @example
7909 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7910 @end example
7911 @end itemize
7912
7913 @section cover_rect
7914
7915 Cover a rectangular object
7916
7917 It accepts the following options:
7918
7919 @table @option
7920 @item cover
7921 Filepath of the optional cover image, needs to be in yuv420.
7922
7923 @item mode
7924 Set covering mode.
7925
7926 It accepts the following values:
7927 @table @samp
7928 @item cover
7929 cover it by the supplied image
7930 @item blur
7931 cover it by interpolating the surrounding pixels
7932 @end table
7933
7934 Default value is @var{blur}.
7935 @end table
7936
7937 @subsection Examples
7938
7939 @itemize
7940 @item
7941 Generate a representative palette of a given video using @command{ffmpeg}:
7942 @example
7943 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7944 @end example
7945 @end itemize
7946
7947 @anchor{format}
7948 @section format
7949
7950 Convert the input video to one of the specified pixel formats.
7951 Libavfilter will try to pick one that is suitable as input to
7952 the next filter.
7953
7954 It accepts the following parameters:
7955 @table @option
7956
7957 @item pix_fmts
7958 A '|'-separated list of pixel format names, such as
7959 "pix_fmts=yuv420p|monow|rgb24".
7960
7961 @end table
7962
7963 @subsection Examples
7964
7965 @itemize
7966 @item
7967 Convert the input video to the @var{yuv420p} format
7968 @example
7969 format=pix_fmts=yuv420p
7970 @end example
7971
7972 Convert the input video to any of the formats in the list
7973 @example
7974 format=pix_fmts=yuv420p|yuv444p|yuv410p
7975 @end example
7976 @end itemize
7977
7978 @anchor{fps}
7979 @section fps
7980
7981 Convert the video to specified constant frame rate by duplicating or dropping
7982 frames as necessary.
7983
7984 It accepts the following parameters:
7985 @table @option
7986
7987 @item fps
7988 The desired output frame rate. The default is @code{25}.
7989
7990 @item round
7991 Rounding method.
7992
7993 Possible values are:
7994 @table @option
7995 @item zero
7996 zero round towards 0
7997 @item inf
7998 round away from 0
7999 @item down
8000 round towards -infinity
8001 @item up
8002 round towards +infinity
8003 @item near
8004 round to nearest
8005 @end table
8006 The default is @code{near}.
8007
8008 @item start_time
8009 Assume the first PTS should be the given value, in seconds. This allows for
8010 padding/trimming at the start of stream. By default, no assumption is made
8011 about the first frame's expected PTS, so no padding or trimming is done.
8012 For example, this could be set to 0 to pad the beginning with duplicates of
8013 the first frame if a video stream starts after the audio stream or to trim any
8014 frames with a negative PTS.
8015
8016 @end table
8017
8018 Alternatively, the options can be specified as a flat string:
8019 @var{fps}[:@var{round}].
8020
8021 See also the @ref{setpts} filter.
8022
8023 @subsection Examples
8024
8025 @itemize
8026 @item
8027 A typical usage in order to set the fps to 25:
8028 @example
8029 fps=fps=25
8030 @end example
8031
8032 @item
8033 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8034 @example
8035 fps=fps=film:round=near
8036 @end example
8037 @end itemize
8038
8039 @section framepack
8040
8041 Pack two different video streams into a stereoscopic video, setting proper
8042 metadata on supported codecs. The two views should have the same size and
8043 framerate and processing will stop when the shorter video ends. Please note
8044 that you may conveniently adjust view properties with the @ref{scale} and
8045 @ref{fps} filters.
8046
8047 It accepts the following parameters:
8048 @table @option
8049
8050 @item format
8051 The desired packing format. Supported values are:
8052
8053 @table @option
8054
8055 @item sbs
8056 The views are next to each other (default).
8057
8058 @item tab
8059 The views are on top of each other.
8060
8061 @item lines
8062 The views are packed by line.
8063
8064 @item columns
8065 The views are packed by column.
8066
8067 @item frameseq
8068 The views are temporally interleaved.
8069
8070 @end table
8071
8072 @end table
8073
8074 Some examples:
8075
8076 @example
8077 # Convert left and right views into a frame-sequential video
8078 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8079
8080 # Convert views into a side-by-side video with the same output resolution as the input
8081 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
8082 @end example
8083
8084 @section framerate
8085
8086 Change the frame rate by interpolating new video output frames from the source
8087 frames.
8088
8089 This filter is not designed to function correctly with interlaced media. If
8090 you wish to change the frame rate of interlaced media then you are required
8091 to deinterlace before this filter and re-interlace after this filter.
8092
8093 A description of the accepted options follows.
8094
8095 @table @option
8096 @item fps
8097 Specify the output frames per second. This option can also be specified
8098 as a value alone. The default is @code{50}.
8099
8100 @item interp_start
8101 Specify the start of a range where the output frame will be created as a
8102 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8103 the default is @code{15}.
8104
8105 @item interp_end
8106 Specify the end of a range where the output frame will be created as a
8107 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8108 the default is @code{240}.
8109
8110 @item scene
8111 Specify the level at which a scene change is detected as a value between
8112 0 and 100 to indicate a new scene; a low value reflects a low
8113 probability for the current frame to introduce a new scene, while a higher
8114 value means the current frame is more likely to be one.
8115 The default is @code{7}.
8116
8117 @item flags
8118 Specify flags influencing the filter process.
8119
8120 Available value for @var{flags} is:
8121
8122 @table @option
8123 @item scene_change_detect, scd
8124 Enable scene change detection using the value of the option @var{scene}.
8125 This flag is enabled by default.
8126 @end table
8127 @end table
8128
8129 @section framestep
8130
8131 Select one frame every N-th frame.
8132
8133 This filter accepts the following option:
8134 @table @option
8135 @item step
8136 Select frame after every @code{step} frames.
8137 Allowed values are positive integers higher than 0. Default value is @code{1}.
8138 @end table
8139
8140 @anchor{frei0r}
8141 @section frei0r
8142
8143 Apply a frei0r effect to the input video.
8144
8145 To enable the compilation of this filter, you need to install the frei0r
8146 header and configure FFmpeg with @code{--enable-frei0r}.
8147
8148 It accepts the following parameters:
8149
8150 @table @option
8151
8152 @item filter_name
8153 The name of the frei0r effect to load. If the environment variable
8154 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8155 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8156 Otherwise, the standard frei0r paths are searched, in this order:
8157 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8158 @file{/usr/lib/frei0r-1/}.
8159
8160 @item filter_params
8161 A '|'-separated list of parameters to pass to the frei0r effect.
8162
8163 @end table
8164
8165 A frei0r effect parameter can be a boolean (its value is either
8166 "y" or "n"), a double, a color (specified as
8167 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8168 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8169 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8170 @var{X} and @var{Y} are floating point numbers) and/or a string.
8171
8172 The number and types of parameters depend on the loaded effect. If an
8173 effect parameter is not specified, the default value is set.
8174
8175 @subsection Examples
8176
8177 @itemize
8178 @item
8179 Apply the distort0r effect, setting the first two double parameters:
8180 @example
8181 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8182 @end example
8183
8184 @item
8185 Apply the colordistance effect, taking a color as the first parameter:
8186 @example
8187 frei0r=colordistance:0.2/0.3/0.4
8188 frei0r=colordistance:violet
8189 frei0r=colordistance:0x112233
8190 @end example
8191
8192 @item
8193 Apply the perspective effect, specifying the top left and top right image
8194 positions:
8195 @example
8196 frei0r=perspective:0.2/0.2|0.8/0.2
8197 @end example
8198 @end itemize
8199
8200 For more information, see
8201 @url{http://frei0r.dyne.org}
8202
8203 @section fspp
8204
8205 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8206
8207 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8208 processing filter, one of them is performed once per block, not per pixel.
8209 This allows for much higher speed.
8210
8211 The filter accepts the following options:
8212
8213 @table @option
8214 @item quality
8215 Set quality. This option defines the number of levels for averaging. It accepts
8216 an integer in the range 4-5. Default value is @code{4}.
8217
8218 @item qp
8219 Force a constant quantization parameter. It accepts an integer in range 0-63.
8220 If not set, the filter will use the QP from the video stream (if available).
8221
8222 @item strength
8223 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8224 more details but also more artifacts, while higher values make the image smoother
8225 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8226
8227 @item use_bframe_qp
8228 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8229 option may cause flicker since the B-Frames have often larger QP. Default is
8230 @code{0} (not enabled).
8231
8232 @end table
8233
8234 @section geq
8235
8236 The filter accepts the following options:
8237
8238 @table @option
8239 @item lum_expr, lum
8240 Set the luminance expression.
8241 @item cb_expr, cb
8242 Set the chrominance blue expression.
8243 @item cr_expr, cr
8244 Set the chrominance red expression.
8245 @item alpha_expr, a
8246 Set the alpha expression.
8247 @item red_expr, r
8248 Set the red expression.
8249 @item green_expr, g
8250 Set the green expression.
8251 @item blue_expr, b
8252 Set the blue expression.
8253 @end table
8254
8255 The colorspace is selected according to the specified options. If one
8256 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8257 options is specified, the filter will automatically select a YCbCr
8258 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8259 @option{blue_expr} options is specified, it will select an RGB
8260 colorspace.
8261
8262 If one of the chrominance expression is not defined, it falls back on the other
8263 one. If no alpha expression is specified it will evaluate to opaque value.
8264 If none of chrominance expressions are specified, they will evaluate
8265 to the luminance expression.
8266
8267 The expressions can use the following variables and functions:
8268
8269 @table @option
8270 @item N
8271 The sequential number of the filtered frame, starting from @code{0}.
8272
8273 @item X
8274 @item Y
8275 The coordinates of the current sample.
8276
8277 @item W
8278 @item H
8279 The width and height of the image.
8280
8281 @item SW
8282 @item SH
8283 Width and height scale depending on the currently filtered plane. It is the
8284 ratio between the corresponding luma plane number of pixels and the current
8285 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8286 @code{0.5,0.5} for chroma planes.
8287
8288 @item T
8289 Time of the current frame, expressed in seconds.
8290
8291 @item p(x, y)
8292 Return the value of the pixel at location (@var{x},@var{y}) of the current
8293 plane.
8294
8295 @item lum(x, y)
8296 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8297 plane.
8298
8299 @item cb(x, y)
8300 Return the value of the pixel at location (@var{x},@var{y}) of the
8301 blue-difference chroma plane. Return 0 if there is no such plane.
8302
8303 @item cr(x, y)
8304 Return the value of the pixel at location (@var{x},@var{y}) of the
8305 red-difference chroma plane. Return 0 if there is no such plane.
8306
8307 @item r(x, y)
8308 @item g(x, y)
8309 @item b(x, y)
8310 Return the value of the pixel at location (@var{x},@var{y}) of the
8311 red/green/blue component. Return 0 if there is no such component.
8312
8313 @item alpha(x, y)
8314 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8315 plane. Return 0 if there is no such plane.
8316 @end table
8317
8318 For functions, if @var{x} and @var{y} are outside the area, the value will be
8319 automatically clipped to the closer edge.
8320
8321 @subsection Examples
8322
8323 @itemize
8324 @item
8325 Flip the image horizontally:
8326 @example
8327 geq=p(W-X\,Y)
8328 @end example
8329
8330 @item
8331 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8332 wavelength of 100 pixels:
8333 @example
8334 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8335 @end example
8336
8337 @item
8338 Generate a fancy enigmatic moving light:
8339 @example
8340 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
8341 @end example
8342
8343 @item
8344 Generate a quick emboss effect:
8345 @example
8346 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8347 @end example
8348
8349 @item
8350 Modify RGB components depending on pixel position:
8351 @example
8352 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8353 @end example
8354
8355 @item
8356 Create a radial gradient that is the same size as the input (also see
8357 the @ref{vignette} filter):
8358 @example
8359 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8360 @end example
8361 @end itemize
8362
8363 @section gradfun
8364
8365 Fix the banding artifacts that are sometimes introduced into nearly flat
8366 regions by truncation to 8-bit color depth.
8367 Interpolate the gradients that should go where the bands are, and
8368 dither them.
8369
8370 It is designed for playback only.  Do not use it prior to
8371 lossy compression, because compression tends to lose the dither and
8372 bring back the bands.
8373
8374 It accepts the following parameters:
8375
8376 @table @option
8377
8378 @item strength
8379 The maximum amount by which the filter will change any one pixel. This is also
8380 the threshold for detecting nearly flat regions. Acceptable values range from
8381 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8382 valid range.
8383
8384 @item radius
8385 The neighborhood to fit the gradient to. A larger radius makes for smoother
8386 gradients, but also prevents the filter from modifying the pixels near detailed
8387 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8388 values will be clipped to the valid range.
8389
8390 @end table
8391
8392 Alternatively, the options can be specified as a flat string:
8393 @var{strength}[:@var{radius}]
8394
8395 @subsection Examples
8396
8397 @itemize
8398 @item
8399 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8400 @example
8401 gradfun=3.5:8
8402 @end example
8403
8404 @item
8405 Specify radius, omitting the strength (which will fall-back to the default
8406 value):
8407 @example
8408 gradfun=radius=8
8409 @end example
8410
8411 @end itemize
8412
8413 @anchor{haldclut}
8414 @section haldclut
8415
8416 Apply a Hald CLUT to a video stream.
8417
8418 First input is the video stream to process, and second one is the Hald CLUT.
8419 The Hald CLUT input can be a simple picture or a complete video stream.
8420
8421 The filter accepts the following options:
8422
8423 @table @option
8424 @item shortest
8425 Force termination when the shortest input terminates. Default is @code{0}.
8426 @item repeatlast
8427 Continue applying the last CLUT after the end of the stream. A value of
8428 @code{0} disable the filter after the last frame of the CLUT is reached.
8429 Default is @code{1}.
8430 @end table
8431
8432 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8433 filters share the same internals).
8434
8435 More information about the Hald CLUT can be found on Eskil Steenberg's website
8436 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8437
8438 @subsection Workflow examples
8439
8440 @subsubsection Hald CLUT video stream
8441
8442 Generate an identity Hald CLUT stream altered with various effects:
8443 @example
8444 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
8445 @end example
8446
8447 Note: make sure you use a lossless codec.
8448
8449 Then use it with @code{haldclut} to apply it on some random stream:
8450 @example
8451 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8452 @end example
8453
8454 The Hald CLUT will be applied to the 10 first seconds (duration of
8455 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8456 to the remaining frames of the @code{mandelbrot} stream.
8457
8458 @subsubsection Hald CLUT with preview
8459
8460 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8461 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8462 biggest possible square starting at the top left of the picture. The remaining
8463 padding pixels (bottom or right) will be ignored. This area can be used to add
8464 a preview of the Hald CLUT.
8465
8466 Typically, the following generated Hald CLUT will be supported by the
8467 @code{haldclut} filter:
8468
8469 @example
8470 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8471    pad=iw+320 [padded_clut];
8472    smptebars=s=320x256, split [a][b];
8473    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8474    [main][b] overlay=W-320" -frames:v 1 clut.png
8475 @end example
8476
8477 It contains the original and a preview of the effect of the CLUT: SMPTE color
8478 bars are displayed on the right-top, and below the same color bars processed by
8479 the color changes.
8480
8481 Then, the effect of this Hald CLUT can be visualized with:
8482 @example
8483 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8484 @end example
8485
8486 @section hflip
8487
8488 Flip the input video horizontally.
8489
8490 For example, to horizontally flip the input video with @command{ffmpeg}:
8491 @example
8492 ffmpeg -i in.avi -vf "hflip" out.avi
8493 @end example
8494
8495 @section histeq
8496 This filter applies a global color histogram equalization on a
8497 per-frame basis.
8498
8499 It can be used to correct video that has a compressed range of pixel
8500 intensities.  The filter redistributes the pixel intensities to
8501 equalize their distribution across the intensity range. It may be
8502 viewed as an "automatically adjusting contrast filter". This filter is
8503 useful only for correcting degraded or poorly captured source
8504 video.
8505
8506 The filter accepts the following options:
8507
8508 @table @option
8509 @item strength
8510 Determine the amount of equalization to be applied.  As the strength
8511 is reduced, the distribution of pixel intensities more-and-more
8512 approaches that of the input frame. The value must be a float number
8513 in the range [0,1] and defaults to 0.200.
8514
8515 @item intensity
8516 Set the maximum intensity that can generated and scale the output
8517 values appropriately.  The strength should be set as desired and then
8518 the intensity can be limited if needed to avoid washing-out. The value
8519 must be a float number in the range [0,1] and defaults to 0.210.
8520
8521 @item antibanding
8522 Set the antibanding level. If enabled the filter will randomly vary
8523 the luminance of output pixels by a small amount to avoid banding of
8524 the histogram. Possible values are @code{none}, @code{weak} or
8525 @code{strong}. It defaults to @code{none}.
8526 @end table
8527
8528 @section histogram
8529
8530 Compute and draw a color distribution histogram for the input video.
8531
8532 The computed histogram is a representation of the color component
8533 distribution in an image.
8534
8535 Standard histogram displays the color components distribution in an image.
8536 Displays color graph for each color component. Shows distribution of
8537 the Y, U, V, A or R, G, B components, depending on input format, in the
8538 current frame. Below each graph a color component scale meter is shown.
8539
8540 The filter accepts the following options:
8541
8542 @table @option
8543 @item level_height
8544 Set height of level. Default value is @code{200}.
8545 Allowed range is [50, 2048].
8546
8547 @item scale_height
8548 Set height of color scale. Default value is @code{12}.
8549 Allowed range is [0, 40].
8550
8551 @item display_mode
8552 Set display mode.
8553 It accepts the following values:
8554 @table @samp
8555 @item parade
8556 Per color component graphs are placed below each other.
8557
8558 @item overlay
8559 Presents information identical to that in the @code{parade}, except
8560 that the graphs representing color components are superimposed directly
8561 over one another.
8562 @end table
8563 Default is @code{parade}.
8564
8565 @item levels_mode
8566 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8567 Default is @code{linear}.
8568
8569 @item components
8570 Set what color components to display.
8571 Default is @code{7}.
8572
8573 @item fgopacity
8574 Set foreground opacity. Default is @code{0.7}.
8575
8576 @item bgopacity
8577 Set background opacity. Default is @code{0.5}.
8578 @end table
8579
8580 @subsection Examples
8581
8582 @itemize
8583
8584 @item
8585 Calculate and draw histogram:
8586 @example
8587 ffplay -i input -vf histogram
8588 @end example
8589
8590 @end itemize
8591
8592 @anchor{hqdn3d}
8593 @section hqdn3d
8594
8595 This is a high precision/quality 3d denoise filter. It aims to reduce
8596 image noise, producing smooth images and making still images really
8597 still. It should enhance compressibility.
8598
8599 It accepts the following optional parameters:
8600
8601 @table @option
8602 @item luma_spatial
8603 A non-negative floating point number which specifies spatial luma strength.
8604 It defaults to 4.0.
8605
8606 @item chroma_spatial
8607 A non-negative floating point number which specifies spatial chroma strength.
8608 It defaults to 3.0*@var{luma_spatial}/4.0.
8609
8610 @item luma_tmp
8611 A floating point number which specifies luma temporal strength. It defaults to
8612 6.0*@var{luma_spatial}/4.0.
8613
8614 @item chroma_tmp
8615 A floating point number which specifies chroma temporal strength. It defaults to
8616 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8617 @end table
8618
8619 @anchor{hwupload_cuda}
8620 @section hwupload_cuda
8621
8622 Upload system memory frames to a CUDA device.
8623
8624 It accepts the following optional parameters:
8625
8626 @table @option
8627 @item device
8628 The number of the CUDA device to use
8629 @end table
8630
8631 @section hqx
8632
8633 Apply a high-quality magnification filter designed for pixel art. This filter
8634 was originally created by Maxim Stepin.
8635
8636 It accepts the following option:
8637
8638 @table @option
8639 @item n
8640 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8641 @code{hq3x} and @code{4} for @code{hq4x}.
8642 Default is @code{3}.
8643 @end table
8644
8645 @section hstack
8646 Stack input videos horizontally.
8647
8648 All streams must be of same pixel format and of same height.
8649
8650 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8651 to create same output.
8652
8653 The filter accept the following option:
8654
8655 @table @option
8656 @item inputs
8657 Set number of input streams. Default is 2.
8658
8659 @item shortest
8660 If set to 1, force the output to terminate when the shortest input
8661 terminates. Default value is 0.
8662 @end table
8663
8664 @section hue
8665
8666 Modify the hue and/or the saturation of the input.
8667
8668 It accepts the following parameters:
8669
8670 @table @option
8671 @item h
8672 Specify the hue angle as a number of degrees. It accepts an expression,
8673 and defaults to "0".
8674
8675 @item s
8676 Specify the saturation in the [-10,10] range. It accepts an expression and
8677 defaults to "1".
8678
8679 @item H
8680 Specify the hue angle as a number of radians. It accepts an
8681 expression, and defaults to "0".
8682
8683 @item b
8684 Specify the brightness in the [-10,10] range. It accepts an expression and
8685 defaults to "0".
8686 @end table
8687
8688 @option{h} and @option{H} are mutually exclusive, and can't be
8689 specified at the same time.
8690
8691 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8692 expressions containing the following constants:
8693
8694 @table @option
8695 @item n
8696 frame count of the input frame starting from 0
8697
8698 @item pts
8699 presentation timestamp of the input frame expressed in time base units
8700
8701 @item r
8702 frame rate of the input video, NAN if the input frame rate is unknown
8703
8704 @item t
8705 timestamp expressed in seconds, NAN if the input timestamp is unknown
8706
8707 @item tb
8708 time base of the input video
8709 @end table
8710
8711 @subsection Examples
8712
8713 @itemize
8714 @item
8715 Set the hue to 90 degrees and the saturation to 1.0:
8716 @example
8717 hue=h=90:s=1
8718 @end example
8719
8720 @item
8721 Same command but expressing the hue in radians:
8722 @example
8723 hue=H=PI/2:s=1
8724 @end example
8725
8726 @item
8727 Rotate hue and make the saturation swing between 0
8728 and 2 over a period of 1 second:
8729 @example
8730 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8731 @end example
8732
8733 @item
8734 Apply a 3 seconds saturation fade-in effect starting at 0:
8735 @example
8736 hue="s=min(t/3\,1)"
8737 @end example
8738
8739 The general fade-in expression can be written as:
8740 @example
8741 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8742 @end example
8743
8744 @item
8745 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8746 @example
8747 hue="s=max(0\, min(1\, (8-t)/3))"
8748 @end example
8749
8750 The general fade-out expression can be written as:
8751 @example
8752 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8753 @end example
8754
8755 @end itemize
8756
8757 @subsection Commands
8758
8759 This filter supports the following commands:
8760 @table @option
8761 @item b
8762 @item s
8763 @item h
8764 @item H
8765 Modify the hue and/or the saturation and/or brightness of the input video.
8766 The command accepts the same syntax of the corresponding option.
8767
8768 If the specified expression is not valid, it is kept at its current
8769 value.
8770 @end table
8771
8772 @section hysteresis
8773
8774 Grow first stream into second stream by connecting components.
8775 This allows to build more robust edge masks.
8776
8777 This filter accepts the following options:
8778
8779 @table @option
8780 @item planes
8781 Set which planes will be processed as bitmap, unprocessed planes will be
8782 copied from first stream.
8783 By default value 0xf, all planes will be processed.
8784
8785 @item threshold
8786 Set threshold which is used in filtering. If pixel component value is higher than
8787 this value filter algorithm for connecting components is activated.
8788 By default value is 0.
8789 @end table
8790
8791 @section idet
8792
8793 Detect video interlacing type.
8794
8795 This filter tries to detect if the input frames as interlaced, progressive,
8796 top or bottom field first. It will also try and detect fields that are
8797 repeated between adjacent frames (a sign of telecine).
8798
8799 Single frame detection considers only immediately adjacent frames when classifying each frame.
8800 Multiple frame detection incorporates the classification history of previous frames.
8801
8802 The filter will log these metadata values:
8803
8804 @table @option
8805 @item single.current_frame
8806 Detected type of current frame using single-frame detection. One of:
8807 ``tff'' (top field first), ``bff'' (bottom field first),
8808 ``progressive'', or ``undetermined''
8809
8810 @item single.tff
8811 Cumulative number of frames detected as top field first using single-frame detection.
8812
8813 @item multiple.tff
8814 Cumulative number of frames detected as top field first using multiple-frame detection.
8815
8816 @item single.bff
8817 Cumulative number of frames detected as bottom field first using single-frame detection.
8818
8819 @item multiple.current_frame
8820 Detected type of current frame using multiple-frame detection. One of:
8821 ``tff'' (top field first), ``bff'' (bottom field first),
8822 ``progressive'', or ``undetermined''
8823
8824 @item multiple.bff
8825 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8826
8827 @item single.progressive
8828 Cumulative number of frames detected as progressive using single-frame detection.
8829
8830 @item multiple.progressive
8831 Cumulative number of frames detected as progressive using multiple-frame detection.
8832
8833 @item single.undetermined
8834 Cumulative number of frames that could not be classified using single-frame detection.
8835
8836 @item multiple.undetermined
8837 Cumulative number of frames that could not be classified using multiple-frame detection.
8838
8839 @item repeated.current_frame
8840 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8841
8842 @item repeated.neither
8843 Cumulative number of frames with no repeated field.
8844
8845 @item repeated.top
8846 Cumulative number of frames with the top field repeated from the previous frame's top field.
8847
8848 @item repeated.bottom
8849 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
8850 @end table
8851
8852 The filter accepts the following options:
8853
8854 @table @option
8855 @item intl_thres
8856 Set interlacing threshold.
8857 @item prog_thres
8858 Set progressive threshold.
8859 @item rep_thres
8860 Threshold for repeated field detection.
8861 @item half_life
8862 Number of frames after which a given frame's contribution to the
8863 statistics is halved (i.e., it contributes only 0.5 to it's
8864 classification). The default of 0 means that all frames seen are given
8865 full weight of 1.0 forever.
8866 @item analyze_interlaced_flag
8867 When this is not 0 then idet will use the specified number of frames to determine
8868 if the interlaced flag is accurate, it will not count undetermined frames.
8869 If the flag is found to be accurate it will be used without any further
8870 computations, if it is found to be inaccurate it will be cleared without any
8871 further computations. This allows inserting the idet filter as a low computational
8872 method to clean up the interlaced flag
8873 @end table
8874
8875 @section il
8876
8877 Deinterleave or interleave fields.
8878
8879 This filter allows one to process interlaced images fields without
8880 deinterlacing them. Deinterleaving splits the input frame into 2
8881 fields (so called half pictures). Odd lines are moved to the top
8882 half of the output image, even lines to the bottom half.
8883 You can process (filter) them independently and then re-interleave them.
8884
8885 The filter accepts the following options:
8886
8887 @table @option
8888 @item luma_mode, l
8889 @item chroma_mode, c
8890 @item alpha_mode, a
8891 Available values for @var{luma_mode}, @var{chroma_mode} and
8892 @var{alpha_mode} are:
8893
8894 @table @samp
8895 @item none
8896 Do nothing.
8897
8898 @item deinterleave, d
8899 Deinterleave fields, placing one above the other.
8900
8901 @item interleave, i
8902 Interleave fields. Reverse the effect of deinterleaving.
8903 @end table
8904 Default value is @code{none}.
8905
8906 @item luma_swap, ls
8907 @item chroma_swap, cs
8908 @item alpha_swap, as
8909 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8910 @end table
8911
8912 @section inflate
8913
8914 Apply inflate effect to the video.
8915
8916 This filter replaces the pixel by the local(3x3) average by taking into account
8917 only values higher than the pixel.
8918
8919 It accepts the following options:
8920
8921 @table @option
8922 @item threshold0
8923 @item threshold1
8924 @item threshold2
8925 @item threshold3
8926 Limit the maximum change for each plane, default is 65535.
8927 If 0, plane will remain unchanged.
8928 @end table
8929
8930 @section interlace
8931
8932 Simple interlacing filter from progressive contents. This interleaves upper (or
8933 lower) lines from odd frames with lower (or upper) lines from even frames,
8934 halving the frame rate and preserving image height.
8935
8936 @example
8937    Original        Original             New Frame
8938    Frame 'j'      Frame 'j+1'             (tff)
8939   ==========      ===========       ==================
8940     Line 0  -------------------->    Frame 'j' Line 0
8941     Line 1          Line 1  ---->   Frame 'j+1' Line 1
8942     Line 2 --------------------->    Frame 'j' Line 2
8943     Line 3          Line 3  ---->   Frame 'j+1' Line 3
8944      ...             ...                   ...
8945 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
8946 @end example
8947
8948 It accepts the following optional parameters:
8949
8950 @table @option
8951 @item scan
8952 This determines whether the interlaced frame is taken from the even
8953 (tff - default) or odd (bff) lines of the progressive frame.
8954
8955 @item lowpass
8956 Enable (default) or disable the vertical lowpass filter to avoid twitter
8957 interlacing and reduce moire patterns.
8958 @end table
8959
8960 @section kerndeint
8961
8962 Deinterlace input video by applying Donald Graft's adaptive kernel
8963 deinterling. Work on interlaced parts of a video to produce
8964 progressive frames.
8965
8966 The description of the accepted parameters follows.
8967
8968 @table @option
8969 @item thresh
8970 Set the threshold which affects the filter's tolerance when
8971 determining if a pixel line must be processed. It must be an integer
8972 in the range [0,255] and defaults to 10. A value of 0 will result in
8973 applying the process on every pixels.
8974
8975 @item map
8976 Paint pixels exceeding the threshold value to white if set to 1.
8977 Default is 0.
8978
8979 @item order
8980 Set the fields order. Swap fields if set to 1, leave fields alone if
8981 0. Default is 0.
8982
8983 @item sharp
8984 Enable additional sharpening if set to 1. Default is 0.
8985
8986 @item twoway
8987 Enable twoway sharpening if set to 1. Default is 0.
8988 @end table
8989
8990 @subsection Examples
8991
8992 @itemize
8993 @item
8994 Apply default values:
8995 @example
8996 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
8997 @end example
8998
8999 @item
9000 Enable additional sharpening:
9001 @example
9002 kerndeint=sharp=1
9003 @end example
9004
9005 @item
9006 Paint processed pixels in white:
9007 @example
9008 kerndeint=map=1
9009 @end example
9010 @end itemize
9011
9012 @section lenscorrection
9013
9014 Correct radial lens distortion
9015
9016 This filter can be used to correct for radial distortion as can result from the use
9017 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9018 one can use tools available for example as part of opencv or simply trial-and-error.
9019 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9020 and extract the k1 and k2 coefficients from the resulting matrix.
9021
9022 Note that effectively the same filter is available in the open-source tools Krita and
9023 Digikam from the KDE project.
9024
9025 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9026 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9027 brightness distribution, so you may want to use both filters together in certain
9028 cases, though you will have to take care of ordering, i.e. whether vignetting should
9029 be applied before or after lens correction.
9030
9031 @subsection Options
9032
9033 The filter accepts the following options:
9034
9035 @table @option
9036 @item cx
9037 Relative x-coordinate of the focal point of the image, and thereby the center of the
9038 distortion. This value has a range [0,1] and is expressed as fractions of the image
9039 width.
9040 @item cy
9041 Relative y-coordinate of the focal point of the image, and thereby the center of the
9042 distortion. This value has a range [0,1] and is expressed as fractions of the image
9043 height.
9044 @item k1
9045 Coefficient of the quadratic correction term. 0.5 means no correction.
9046 @item k2
9047 Coefficient of the double quadratic correction term. 0.5 means no correction.
9048 @end table
9049
9050 The formula that generates the correction is:
9051
9052 @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)
9053
9054 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9055 distances from the focal point in the source and target images, respectively.
9056
9057 @section loop
9058
9059 Loop video frames.
9060
9061 The filter accepts the following options:
9062
9063 @table @option
9064 @item loop
9065 Set the number of loops.
9066
9067 @item size
9068 Set maximal size in number of frames.
9069
9070 @item start
9071 Set first frame of loop.
9072 @end table
9073
9074 @anchor{lut3d}
9075 @section lut3d
9076
9077 Apply a 3D LUT to an input video.
9078
9079 The filter accepts the following options:
9080
9081 @table @option
9082 @item file
9083 Set the 3D LUT file name.
9084
9085 Currently supported formats:
9086 @table @samp
9087 @item 3dl
9088 AfterEffects
9089 @item cube
9090 Iridas
9091 @item dat
9092 DaVinci
9093 @item m3d
9094 Pandora
9095 @end table
9096 @item interp
9097 Select interpolation mode.
9098
9099 Available values are:
9100
9101 @table @samp
9102 @item nearest
9103 Use values from the nearest defined point.
9104 @item trilinear
9105 Interpolate values using the 8 points defining a cube.
9106 @item tetrahedral
9107 Interpolate values using a tetrahedron.
9108 @end table
9109 @end table
9110
9111 @section lut, lutrgb, lutyuv
9112
9113 Compute a look-up table for binding each pixel component input value
9114 to an output value, and apply it to the input video.
9115
9116 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9117 to an RGB input video.
9118
9119 These filters accept the following parameters:
9120 @table @option
9121 @item c0
9122 set first pixel component expression
9123 @item c1
9124 set second pixel component expression
9125 @item c2
9126 set third pixel component expression
9127 @item c3
9128 set fourth pixel component expression, corresponds to the alpha component
9129
9130 @item r
9131 set red component expression
9132 @item g
9133 set green component expression
9134 @item b
9135 set blue component expression
9136 @item a
9137 alpha component expression
9138
9139 @item y
9140 set Y/luminance component expression
9141 @item u
9142 set U/Cb component expression
9143 @item v
9144 set V/Cr component expression
9145 @end table
9146
9147 Each of them specifies the expression to use for computing the lookup table for
9148 the corresponding pixel component values.
9149
9150 The exact component associated to each of the @var{c*} options depends on the
9151 format in input.
9152
9153 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9154 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9155
9156 The expressions can contain the following constants and functions:
9157
9158 @table @option
9159 @item w
9160 @item h
9161 The input width and height.
9162
9163 @item val
9164 The input value for the pixel component.
9165
9166 @item clipval
9167 The input value, clipped to the @var{minval}-@var{maxval} range.
9168
9169 @item maxval
9170 The maximum value for the pixel component.
9171
9172 @item minval
9173 The minimum value for the pixel component.
9174
9175 @item negval
9176 The negated value for the pixel component value, clipped to the
9177 @var{minval}-@var{maxval} range; it corresponds to the expression
9178 "maxval-clipval+minval".
9179
9180 @item clip(val)
9181 The computed value in @var{val}, clipped to the
9182 @var{minval}-@var{maxval} range.
9183
9184 @item gammaval(gamma)
9185 The computed gamma correction value of the pixel component value,
9186 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9187 expression
9188 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9189
9190 @end table
9191
9192 All expressions default to "val".
9193
9194 @subsection Examples
9195
9196 @itemize
9197 @item
9198 Negate input video:
9199 @example
9200 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9201 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9202 @end example
9203
9204 The above is the same as:
9205 @example
9206 lutrgb="r=negval:g=negval:b=negval"
9207 lutyuv="y=negval:u=negval:v=negval"
9208 @end example
9209
9210 @item
9211 Negate luminance:
9212 @example
9213 lutyuv=y=negval
9214 @end example
9215
9216 @item
9217 Remove chroma components, turning the video into a graytone image:
9218 @example
9219 lutyuv="u=128:v=128"
9220 @end example
9221
9222 @item
9223 Apply a luma burning effect:
9224 @example
9225 lutyuv="y=2*val"
9226 @end example
9227
9228 @item
9229 Remove green and blue components:
9230 @example
9231 lutrgb="g=0:b=0"
9232 @end example
9233
9234 @item
9235 Set a constant alpha channel value on input:
9236 @example
9237 format=rgba,lutrgb=a="maxval-minval/2"
9238 @end example
9239
9240 @item
9241 Correct luminance gamma by a factor of 0.5:
9242 @example
9243 lutyuv=y=gammaval(0.5)
9244 @end example
9245
9246 @item
9247 Discard least significant bits of luma:
9248 @example
9249 lutyuv=y='bitand(val, 128+64+32)'
9250 @end example
9251
9252 @item
9253 Technicolor like effect:
9254 @example
9255 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9256 @end example
9257 @end itemize
9258
9259 @section lut2
9260
9261 Compute and apply a lookup table from two video inputs.
9262
9263 This filter accepts the following parameters:
9264 @table @option
9265 @item c0
9266 set first pixel component expression
9267 @item c1
9268 set second pixel component expression
9269 @item c2
9270 set third pixel component expression
9271 @item c3
9272 set fourth pixel component expression, corresponds to the alpha component
9273 @end table
9274
9275 Each of them specifies the expression to use for computing the lookup table for
9276 the corresponding pixel component values.
9277
9278 The exact component associated to each of the @var{c*} options depends on the
9279 format in inputs.
9280
9281 The expressions can contain the following constants:
9282
9283 @table @option
9284 @item w
9285 @item h
9286 The input width and height.
9287
9288 @item x
9289 The first input value for the pixel component.
9290
9291 @item y
9292 The second input value for the pixel component.
9293 @end table
9294
9295 All expressions default to "x".
9296
9297 @section maskedclamp
9298
9299 Clamp the first input stream with the second input and third input stream.
9300
9301 Returns the value of first stream to be between second input
9302 stream - @code{undershoot} and third input stream + @code{overshoot}.
9303
9304 This filter accepts the following options:
9305 @table @option
9306 @item undershoot
9307 Default value is @code{0}.
9308
9309 @item overshoot
9310 Default value is @code{0}.
9311
9312 @item planes
9313 Set which planes will be processed as bitmap, unprocessed planes will be
9314 copied from first stream.
9315 By default value 0xf, all planes will be processed.
9316 @end table
9317
9318 @section maskedmerge
9319
9320 Merge the first input stream with the second input stream using per pixel
9321 weights in the third input stream.
9322
9323 A value of 0 in the third stream pixel component means that pixel component
9324 from first stream is returned unchanged, while maximum value (eg. 255 for
9325 8-bit videos) means that pixel component from second stream is returned
9326 unchanged. Intermediate values define the amount of merging between both
9327 input stream's pixel components.
9328
9329 This filter accepts the following options:
9330 @table @option
9331 @item planes
9332 Set which planes will be processed as bitmap, unprocessed planes will be
9333 copied from first stream.
9334 By default value 0xf, all planes will be processed.
9335 @end table
9336
9337 @section mcdeint
9338
9339 Apply motion-compensation deinterlacing.
9340
9341 It needs one field per frame as input and must thus be used together
9342 with yadif=1/3 or equivalent.
9343
9344 This filter accepts the following options:
9345 @table @option
9346 @item mode
9347 Set the deinterlacing mode.
9348
9349 It accepts one of the following values:
9350 @table @samp
9351 @item fast
9352 @item medium
9353 @item slow
9354 use iterative motion estimation
9355 @item extra_slow
9356 like @samp{slow}, but use multiple reference frames.
9357 @end table
9358 Default value is @samp{fast}.
9359
9360 @item parity
9361 Set the picture field parity assumed for the input video. It must be
9362 one of the following values:
9363
9364 @table @samp
9365 @item 0, tff
9366 assume top field first
9367 @item 1, bff
9368 assume bottom field first
9369 @end table
9370
9371 Default value is @samp{bff}.
9372
9373 @item qp
9374 Set per-block quantization parameter (QP) used by the internal
9375 encoder.
9376
9377 Higher values should result in a smoother motion vector field but less
9378 optimal individual vectors. Default value is 1.
9379 @end table
9380
9381 @section mergeplanes
9382
9383 Merge color channel components from several video streams.
9384
9385 The filter accepts up to 4 input streams, and merge selected input
9386 planes to the output video.
9387
9388 This filter accepts the following options:
9389 @table @option
9390 @item mapping
9391 Set input to output plane mapping. Default is @code{0}.
9392
9393 The mappings is specified as a bitmap. It should be specified as a
9394 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9395 mapping for the first plane of the output stream. 'A' sets the number of
9396 the input stream to use (from 0 to 3), and 'a' the plane number of the
9397 corresponding input to use (from 0 to 3). The rest of the mappings is
9398 similar, 'Bb' describes the mapping for the output stream second
9399 plane, 'Cc' describes the mapping for the output stream third plane and
9400 'Dd' describes the mapping for the output stream fourth plane.
9401
9402 @item format
9403 Set output pixel format. Default is @code{yuva444p}.
9404 @end table
9405
9406 @subsection Examples
9407
9408 @itemize
9409 @item
9410 Merge three gray video streams of same width and height into single video stream:
9411 @example
9412 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9413 @end example
9414
9415 @item
9416 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9417 @example
9418 [a0][a1]mergeplanes=0x00010210:yuva444p
9419 @end example
9420
9421 @item
9422 Swap Y and A plane in yuva444p stream:
9423 @example
9424 format=yuva444p,mergeplanes=0x03010200:yuva444p
9425 @end example
9426
9427 @item
9428 Swap U and V plane in yuv420p stream:
9429 @example
9430 format=yuv420p,mergeplanes=0x000201:yuv420p
9431 @end example
9432
9433 @item
9434 Cast a rgb24 clip to yuv444p:
9435 @example
9436 format=rgb24,mergeplanes=0x000102:yuv444p
9437 @end example
9438 @end itemize
9439
9440 @section mestimate
9441
9442 Estimate and export motion vectors using block matching algorithms.
9443 Motion vectors are stored in frame side data to be used by other filters.
9444
9445 This filter accepts the following options:
9446 @table @option
9447 @item method
9448 Specify the motion estimation method. Accepts one of the following values:
9449
9450 @table @samp
9451 @item esa
9452 Exhaustive search algorithm.
9453 @item tss
9454 Three step search algorithm.
9455 @item tdls
9456 Two dimensional logarithmic search algorithm.
9457 @item ntss
9458 New three step search algorithm.
9459 @item fss
9460 Four step search algorithm.
9461 @item ds
9462 Diamond search algorithm.
9463 @item hexbs
9464 Hexagon-based search algorithm.
9465 @item epzs
9466 Enhanced predictive zonal search algorithm.
9467 @item umh
9468 Uneven multi-hexagon search algorithm.
9469 @end table
9470 Default value is @samp{esa}.
9471
9472 @item mb_size
9473 Macroblock size. Default @code{16}.
9474
9475 @item search_param
9476 Search parameter. Default @code{7}.
9477 @end table
9478
9479 @section minterpolate
9480
9481 Convert the video to specified frame rate using motion interpolation.
9482
9483 This filter accepts the following options:
9484 @table @option
9485 @item fps
9486 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}.
9487
9488 @item mi_mode
9489 Motion interpolation mode. Following values are accepted:
9490 @table @samp
9491 @item dup
9492 Duplicate previous or next frame for interpolating new ones.
9493 @item blend
9494 Blend source frames. Interpolated frame is mean of previous and next frames.
9495 @item mci
9496 Motion compensated interpolation. Following options are effective when this mode is selected:
9497
9498 @table @samp
9499 @item mc_mode
9500 Motion compensation mode. Following values are accepted:
9501 @table @samp
9502 @item obmc
9503 Overlapped block motion compensation.
9504 @item aobmc
9505 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
9506 @end table
9507 Default mode is @samp{obmc}.
9508
9509 @item me_mode
9510 Motion estimation mode. Following values are accepted:
9511 @table @samp
9512 @item bidir
9513 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
9514 @item bilat
9515 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
9516 @end table
9517 Default mode is @samp{bilat}.
9518
9519 @item me
9520 The algorithm to be used for motion estimation. Following values are accepted:
9521 @table @samp
9522 @item esa
9523 Exhaustive search algorithm.
9524 @item tss
9525 Three step search algorithm.
9526 @item tdls
9527 Two dimensional logarithmic search algorithm.
9528 @item ntss
9529 New three step search algorithm.
9530 @item fss
9531 Four step search algorithm.
9532 @item ds
9533 Diamond search algorithm.
9534 @item hexbs
9535 Hexagon-based search algorithm.
9536 @item epzs
9537 Enhanced predictive zonal search algorithm.
9538 @item umh
9539 Uneven multi-hexagon search algorithm.
9540 @end table
9541 Default algorithm is @samp{epzs}.
9542
9543 @item mb_size
9544 Macroblock size. Default @code{16}.
9545
9546 @item search_param
9547 Motion estimation search parameter. Default @code{32}.
9548
9549 @item vsmbc
9550 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).
9551 @end table
9552 @end table
9553
9554 @item scd
9555 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:
9556 @table @samp
9557 @item none
9558 Disable scene change detection.
9559 @item fdiff
9560 Frame difference. Corresponding pixel values are compared and if it statisfies @var{scd_threshold} scene change is detected.
9561 @end table
9562 Default method is @samp{fdiff}.
9563
9564 @item scd_threshold
9565 Scene change detection threshold. Default is @code{5.0}.
9566 @end table
9567
9568 @section mpdecimate
9569
9570 Drop frames that do not differ greatly from the previous frame in
9571 order to reduce frame rate.
9572
9573 The main use of this filter is for very-low-bitrate encoding
9574 (e.g. streaming over dialup modem), but it could in theory be used for
9575 fixing movies that were inverse-telecined incorrectly.
9576
9577 A description of the accepted options follows.
9578
9579 @table @option
9580 @item max
9581 Set the maximum number of consecutive frames which can be dropped (if
9582 positive), or the minimum interval between dropped frames (if
9583 negative). If the value is 0, the frame is dropped unregarding the
9584 number of previous sequentially dropped frames.
9585
9586 Default value is 0.
9587
9588 @item hi
9589 @item lo
9590 @item frac
9591 Set the dropping threshold values.
9592
9593 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9594 represent actual pixel value differences, so a threshold of 64
9595 corresponds to 1 unit of difference for each pixel, or the same spread
9596 out differently over the block.
9597
9598 A frame is a candidate for dropping if no 8x8 blocks differ by more
9599 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9600 meaning the whole image) differ by more than a threshold of @option{lo}.
9601
9602 Default value for @option{hi} is 64*12, default value for @option{lo} is
9603 64*5, and default value for @option{frac} is 0.33.
9604 @end table
9605
9606
9607 @section negate
9608
9609 Negate input video.
9610
9611 It accepts an integer in input; if non-zero it negates the
9612 alpha component (if available). The default value in input is 0.
9613
9614 @section nnedi
9615
9616 Deinterlace video using neural network edge directed interpolation.
9617
9618 This filter accepts the following options:
9619
9620 @table @option
9621 @item weights
9622 Mandatory option, without binary file filter can not work.
9623 Currently file can be found here:
9624 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9625
9626 @item deint
9627 Set which frames to deinterlace, by default it is @code{all}.
9628 Can be @code{all} or @code{interlaced}.
9629
9630 @item field
9631 Set mode of operation.
9632
9633 Can be one of the following:
9634
9635 @table @samp
9636 @item af
9637 Use frame flags, both fields.
9638 @item a
9639 Use frame flags, single field.
9640 @item t
9641 Use top field only.
9642 @item b
9643 Use bottom field only.
9644 @item tf
9645 Use both fields, top first.
9646 @item bf
9647 Use both fields, bottom first.
9648 @end table
9649
9650 @item planes
9651 Set which planes to process, by default filter process all frames.
9652
9653 @item nsize
9654 Set size of local neighborhood around each pixel, used by the predictor neural
9655 network.
9656
9657 Can be one of the following:
9658
9659 @table @samp
9660 @item s8x6
9661 @item s16x6
9662 @item s32x6
9663 @item s48x6
9664 @item s8x4
9665 @item s16x4
9666 @item s32x4
9667 @end table
9668
9669 @item nns
9670 Set the number of neurons in predicctor neural network.
9671 Can be one of the following:
9672
9673 @table @samp
9674 @item n16
9675 @item n32
9676 @item n64
9677 @item n128
9678 @item n256
9679 @end table
9680
9681 @item qual
9682 Controls the number of different neural network predictions that are blended
9683 together to compute the final output value. Can be @code{fast}, default or
9684 @code{slow}.
9685
9686 @item etype
9687 Set which set of weights to use in the predictor.
9688 Can be one of the following:
9689
9690 @table @samp
9691 @item a
9692 weights trained to minimize absolute error
9693 @item s
9694 weights trained to minimize squared error
9695 @end table
9696
9697 @item pscrn
9698 Controls whether or not the prescreener neural network is used to decide
9699 which pixels should be processed by the predictor neural network and which
9700 can be handled by simple cubic interpolation.
9701 The prescreener is trained to know whether cubic interpolation will be
9702 sufficient for a pixel or whether it should be predicted by the predictor nn.
9703 The computational complexity of the prescreener nn is much less than that of
9704 the predictor nn. Since most pixels can be handled by cubic interpolation,
9705 using the prescreener generally results in much faster processing.
9706 The prescreener is pretty accurate, so the difference between using it and not
9707 using it is almost always unnoticeable.
9708
9709 Can be one of the following:
9710
9711 @table @samp
9712 @item none
9713 @item original
9714 @item new
9715 @end table
9716
9717 Default is @code{new}.
9718
9719 @item fapprox
9720 Set various debugging flags.
9721 @end table
9722
9723 @section noformat
9724
9725 Force libavfilter not to use any of the specified pixel formats for the
9726 input to the next filter.
9727
9728 It accepts the following parameters:
9729 @table @option
9730
9731 @item pix_fmts
9732 A '|'-separated list of pixel format names, such as
9733 apix_fmts=yuv420p|monow|rgb24".
9734
9735 @end table
9736
9737 @subsection Examples
9738
9739 @itemize
9740 @item
9741 Force libavfilter to use a format different from @var{yuv420p} for the
9742 input to the vflip filter:
9743 @example
9744 noformat=pix_fmts=yuv420p,vflip
9745 @end example
9746
9747 @item
9748 Convert the input video to any of the formats not contained in the list:
9749 @example
9750 noformat=yuv420p|yuv444p|yuv410p
9751 @end example
9752 @end itemize
9753
9754 @section noise
9755
9756 Add noise on video input frame.
9757
9758 The filter accepts the following options:
9759
9760 @table @option
9761 @item all_seed
9762 @item c0_seed
9763 @item c1_seed
9764 @item c2_seed
9765 @item c3_seed
9766 Set noise seed for specific pixel component or all pixel components in case
9767 of @var{all_seed}. Default value is @code{123457}.
9768
9769 @item all_strength, alls
9770 @item c0_strength, c0s
9771 @item c1_strength, c1s
9772 @item c2_strength, c2s
9773 @item c3_strength, c3s
9774 Set noise strength for specific pixel component or all pixel components in case
9775 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
9776
9777 @item all_flags, allf
9778 @item c0_flags, c0f
9779 @item c1_flags, c1f
9780 @item c2_flags, c2f
9781 @item c3_flags, c3f
9782 Set pixel component flags or set flags for all components if @var{all_flags}.
9783 Available values for component flags are:
9784 @table @samp
9785 @item a
9786 averaged temporal noise (smoother)
9787 @item p
9788 mix random noise with a (semi)regular pattern
9789 @item t
9790 temporal noise (noise pattern changes between frames)
9791 @item u
9792 uniform noise (gaussian otherwise)
9793 @end table
9794 @end table
9795
9796 @subsection Examples
9797
9798 Add temporal and uniform noise to input video:
9799 @example
9800 noise=alls=20:allf=t+u
9801 @end example
9802
9803 @section null
9804
9805 Pass the video source unchanged to the output.
9806
9807 @section ocr
9808 Optical Character Recognition
9809
9810 This filter uses Tesseract for optical character recognition.
9811
9812 It accepts the following options:
9813
9814 @table @option
9815 @item datapath
9816 Set datapath to tesseract data. Default is to use whatever was
9817 set at installation.
9818
9819 @item language
9820 Set language, default is "eng".
9821
9822 @item whitelist
9823 Set character whitelist.
9824
9825 @item blacklist
9826 Set character blacklist.
9827 @end table
9828
9829 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
9830
9831 @section ocv
9832
9833 Apply a video transform using libopencv.
9834
9835 To enable this filter, install the libopencv library and headers and
9836 configure FFmpeg with @code{--enable-libopencv}.
9837
9838 It accepts the following parameters:
9839
9840 @table @option
9841
9842 @item filter_name
9843 The name of the libopencv filter to apply.
9844
9845 @item filter_params
9846 The parameters to pass to the libopencv filter. If not specified, the default
9847 values are assumed.
9848
9849 @end table
9850
9851 Refer to the official libopencv documentation for more precise
9852 information:
9853 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
9854
9855 Several libopencv filters are supported; see the following subsections.
9856
9857 @anchor{dilate}
9858 @subsection dilate
9859
9860 Dilate an image by using a specific structuring element.
9861 It corresponds to the libopencv function @code{cvDilate}.
9862
9863 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
9864
9865 @var{struct_el} represents a structuring element, and has the syntax:
9866 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
9867
9868 @var{cols} and @var{rows} represent the number of columns and rows of
9869 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
9870 point, and @var{shape} the shape for the structuring element. @var{shape}
9871 must be "rect", "cross", "ellipse", or "custom".
9872
9873 If the value for @var{shape} is "custom", it must be followed by a
9874 string of the form "=@var{filename}". The file with name
9875 @var{filename} is assumed to represent a binary image, with each
9876 printable character corresponding to a bright pixel. When a custom
9877 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
9878 or columns and rows of the read file are assumed instead.
9879
9880 The default value for @var{struct_el} is "3x3+0x0/rect".
9881
9882 @var{nb_iterations} specifies the number of times the transform is
9883 applied to the image, and defaults to 1.
9884
9885 Some examples:
9886 @example
9887 # Use the default values
9888 ocv=dilate
9889
9890 # Dilate using a structuring element with a 5x5 cross, iterating two times
9891 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
9892
9893 # Read the shape from the file diamond.shape, iterating two times.
9894 # The file diamond.shape may contain a pattern of characters like this
9895 #   *
9896 #  ***
9897 # *****
9898 #  ***
9899 #   *
9900 # The specified columns and rows are ignored
9901 # but the anchor point coordinates are not
9902 ocv=dilate:0x0+2x2/custom=diamond.shape|2
9903 @end example
9904
9905 @subsection erode
9906
9907 Erode an image by using a specific structuring element.
9908 It corresponds to the libopencv function @code{cvErode}.
9909
9910 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
9911 with the same syntax and semantics as the @ref{dilate} filter.
9912
9913 @subsection smooth
9914
9915 Smooth the input video.
9916
9917 The filter takes the following parameters:
9918 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
9919
9920 @var{type} is the type of smooth filter to apply, and must be one of
9921 the following values: "blur", "blur_no_scale", "median", "gaussian",
9922 or "bilateral". The default value is "gaussian".
9923
9924 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
9925 depend on the smooth type. @var{param1} and
9926 @var{param2} accept integer positive values or 0. @var{param3} and
9927 @var{param4} accept floating point values.
9928
9929 The default value for @var{param1} is 3. The default value for the
9930 other parameters is 0.
9931
9932 These parameters correspond to the parameters assigned to the
9933 libopencv function @code{cvSmooth}.
9934
9935 @anchor{overlay}
9936 @section overlay
9937
9938 Overlay one video on top of another.
9939
9940 It takes two inputs and has one output. The first input is the "main"
9941 video on which the second input is overlaid.
9942
9943 It accepts the following parameters:
9944
9945 A description of the accepted options follows.
9946
9947 @table @option
9948 @item x
9949 @item y
9950 Set the expression for the x and y coordinates of the overlaid video
9951 on the main video. Default value is "0" for both expressions. In case
9952 the expression is invalid, it is set to a huge value (meaning that the
9953 overlay will not be displayed within the output visible area).
9954
9955 @item eof_action
9956 The action to take when EOF is encountered on the secondary input; it accepts
9957 one of the following values:
9958
9959 @table @option
9960 @item repeat
9961 Repeat the last frame (the default).
9962 @item endall
9963 End both streams.
9964 @item pass
9965 Pass the main input through.
9966 @end table
9967
9968 @item eval
9969 Set when the expressions for @option{x}, and @option{y} are evaluated.
9970
9971 It accepts the following values:
9972 @table @samp
9973 @item init
9974 only evaluate expressions once during the filter initialization or
9975 when a command is processed
9976
9977 @item frame
9978 evaluate expressions for each incoming frame
9979 @end table
9980
9981 Default value is @samp{frame}.
9982
9983 @item shortest
9984 If set to 1, force the output to terminate when the shortest input
9985 terminates. Default value is 0.
9986
9987 @item format
9988 Set the format for the output video.
9989
9990 It accepts the following values:
9991 @table @samp
9992 @item yuv420
9993 force YUV420 output
9994
9995 @item yuv422
9996 force YUV422 output
9997
9998 @item yuv444
9999 force YUV444 output
10000
10001 @item rgb
10002 force RGB output
10003 @end table
10004
10005 Default value is @samp{yuv420}.
10006
10007 @item rgb @emph{(deprecated)}
10008 If set to 1, force the filter to accept inputs in the RGB
10009 color space. Default value is 0. This option is deprecated, use
10010 @option{format} instead.
10011
10012 @item repeatlast
10013 If set to 1, force the filter to draw the last overlay frame over the
10014 main input until the end of the stream. A value of 0 disables this
10015 behavior. Default value is 1.
10016 @end table
10017
10018 The @option{x}, and @option{y} expressions can contain the following
10019 parameters.
10020
10021 @table @option
10022 @item main_w, W
10023 @item main_h, H
10024 The main input width and height.
10025
10026 @item overlay_w, w
10027 @item overlay_h, h
10028 The overlay input width and height.
10029
10030 @item x
10031 @item y
10032 The computed values for @var{x} and @var{y}. They are evaluated for
10033 each new frame.
10034
10035 @item hsub
10036 @item vsub
10037 horizontal and vertical chroma subsample values of the output
10038 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
10039 @var{vsub} is 1.
10040
10041 @item n
10042 the number of input frame, starting from 0
10043
10044 @item pos
10045 the position in the file of the input frame, NAN if unknown
10046
10047 @item t
10048 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
10049
10050 @end table
10051
10052 Note that the @var{n}, @var{pos}, @var{t} variables are available only
10053 when evaluation is done @emph{per frame}, and will evaluate to NAN
10054 when @option{eval} is set to @samp{init}.
10055
10056 Be aware that frames are taken from each input video in timestamp
10057 order, hence, if their initial timestamps differ, it is a good idea
10058 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
10059 have them begin in the same zero timestamp, as the example for
10060 the @var{movie} filter does.
10061
10062 You can chain together more overlays but you should test the
10063 efficiency of such approach.
10064
10065 @subsection Commands
10066
10067 This filter supports the following commands:
10068 @table @option
10069 @item x
10070 @item y
10071 Modify the x and y of the overlay input.
10072 The command accepts the same syntax of the corresponding option.
10073
10074 If the specified expression is not valid, it is kept at its current
10075 value.
10076 @end table
10077
10078 @subsection Examples
10079
10080 @itemize
10081 @item
10082 Draw the overlay at 10 pixels from the bottom right corner of the main
10083 video:
10084 @example
10085 overlay=main_w-overlay_w-10:main_h-overlay_h-10
10086 @end example
10087
10088 Using named options the example above becomes:
10089 @example
10090 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
10091 @end example
10092
10093 @item
10094 Insert a transparent PNG logo in the bottom left corner of the input,
10095 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
10096 @example
10097 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
10098 @end example
10099
10100 @item
10101 Insert 2 different transparent PNG logos (second logo on bottom
10102 right corner) using the @command{ffmpeg} tool:
10103 @example
10104 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
10105 @end example
10106
10107 @item
10108 Add a transparent color layer on top of the main video; @code{WxH}
10109 must specify the size of the main input to the overlay filter:
10110 @example
10111 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
10112 @end example
10113
10114 @item
10115 Play an original video and a filtered version (here with the deshake
10116 filter) side by side using the @command{ffplay} tool:
10117 @example
10118 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
10119 @end example
10120
10121 The above command is the same as:
10122 @example
10123 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
10124 @end example
10125
10126 @item
10127 Make a sliding overlay appearing from the left to the right top part of the
10128 screen starting since time 2:
10129 @example
10130 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
10131 @end example
10132
10133 @item
10134 Compose output by putting two input videos side to side:
10135 @example
10136 ffmpeg -i left.avi -i right.avi -filter_complex "
10137 nullsrc=size=200x100 [background];
10138 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
10139 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
10140 [background][left]       overlay=shortest=1       [background+left];
10141 [background+left][right] overlay=shortest=1:x=100 [left+right]
10142 "
10143 @end example
10144
10145 @item
10146 Mask 10-20 seconds of a video by applying the delogo filter to a section
10147 @example
10148 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
10149 -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]'
10150 masked.avi
10151 @end example
10152
10153 @item
10154 Chain several overlays in cascade:
10155 @example
10156 nullsrc=s=200x200 [bg];
10157 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
10158 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
10159 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
10160 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
10161 [in3] null,       [mid2] overlay=100:100 [out0]
10162 @end example
10163
10164 @end itemize
10165
10166 @section owdenoise
10167
10168 Apply Overcomplete Wavelet denoiser.
10169
10170 The filter accepts the following options:
10171
10172 @table @option
10173 @item depth
10174 Set depth.
10175
10176 Larger depth values will denoise lower frequency components more, but
10177 slow down filtering.
10178
10179 Must be an int in the range 8-16, default is @code{8}.
10180
10181 @item luma_strength, ls
10182 Set luma strength.
10183
10184 Must be a double value in the range 0-1000, default is @code{1.0}.
10185
10186 @item chroma_strength, cs
10187 Set chroma strength.
10188
10189 Must be a double value in the range 0-1000, default is @code{1.0}.
10190 @end table
10191
10192 @anchor{pad}
10193 @section pad
10194
10195 Add paddings to the input image, and place the original input at the
10196 provided @var{x}, @var{y} coordinates.
10197
10198 It accepts the following parameters:
10199
10200 @table @option
10201 @item width, w
10202 @item height, h
10203 Specify an expression for the size of the output image with the
10204 paddings added. If the value for @var{width} or @var{height} is 0, the
10205 corresponding input size is used for the output.
10206
10207 The @var{width} expression can reference the value set by the
10208 @var{height} expression, and vice versa.
10209
10210 The default value of @var{width} and @var{height} is 0.
10211
10212 @item x
10213 @item y
10214 Specify the offsets to place the input image at within the padded area,
10215 with respect to the top/left border of the output image.
10216
10217 The @var{x} expression can reference the value set by the @var{y}
10218 expression, and vice versa.
10219
10220 The default value of @var{x} and @var{y} is 0.
10221
10222 @item color
10223 Specify the color of the padded area. For the syntax of this option,
10224 check the "Color" section in the ffmpeg-utils manual.
10225
10226 The default value of @var{color} is "black".
10227 @end table
10228
10229 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10230 options are expressions containing the following constants:
10231
10232 @table @option
10233 @item in_w
10234 @item in_h
10235 The input video width and height.
10236
10237 @item iw
10238 @item ih
10239 These are the same as @var{in_w} and @var{in_h}.
10240
10241 @item out_w
10242 @item out_h
10243 The output width and height (the size of the padded area), as
10244 specified by the @var{width} and @var{height} expressions.
10245
10246 @item ow
10247 @item oh
10248 These are the same as @var{out_w} and @var{out_h}.
10249
10250 @item x
10251 @item y
10252 The x and y offsets as specified by the @var{x} and @var{y}
10253 expressions, or NAN if not yet specified.
10254
10255 @item a
10256 same as @var{iw} / @var{ih}
10257
10258 @item sar
10259 input sample aspect ratio
10260
10261 @item dar
10262 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10263
10264 @item hsub
10265 @item vsub
10266 The horizontal and vertical chroma subsample values. For example for the
10267 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10268 @end table
10269
10270 @subsection Examples
10271
10272 @itemize
10273 @item
10274 Add paddings with the color "violet" to the input video. The output video
10275 size is 640x480, and the top-left corner of the input video is placed at
10276 column 0, row 40
10277 @example
10278 pad=640:480:0:40:violet
10279 @end example
10280
10281 The example above is equivalent to the following command:
10282 @example
10283 pad=width=640:height=480:x=0:y=40:color=violet
10284 @end example
10285
10286 @item
10287 Pad the input to get an output with dimensions increased by 3/2,
10288 and put the input video at the center of the padded area:
10289 @example
10290 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10291 @end example
10292
10293 @item
10294 Pad the input to get a squared output with size equal to the maximum
10295 value between the input width and height, and put the input video at
10296 the center of the padded area:
10297 @example
10298 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10299 @end example
10300
10301 @item
10302 Pad the input to get a final w/h ratio of 16:9:
10303 @example
10304 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10305 @end example
10306
10307 @item
10308 In case of anamorphic video, in order to set the output display aspect
10309 correctly, it is necessary to use @var{sar} in the expression,
10310 according to the relation:
10311 @example
10312 (ih * X / ih) * sar = output_dar
10313 X = output_dar / sar
10314 @end example
10315
10316 Thus the previous example needs to be modified to:
10317 @example
10318 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10319 @end example
10320
10321 @item
10322 Double the output size and put the input video in the bottom-right
10323 corner of the output padded area:
10324 @example
10325 pad="2*iw:2*ih:ow-iw:oh-ih"
10326 @end example
10327 @end itemize
10328
10329 @anchor{palettegen}
10330 @section palettegen
10331
10332 Generate one palette for a whole video stream.
10333
10334 It accepts the following options:
10335
10336 @table @option
10337 @item max_colors
10338 Set the maximum number of colors to quantize in the palette.
10339 Note: the palette will still contain 256 colors; the unused palette entries
10340 will be black.
10341
10342 @item reserve_transparent
10343 Create a palette of 255 colors maximum and reserve the last one for
10344 transparency. Reserving the transparency color is useful for GIF optimization.
10345 If not set, the maximum of colors in the palette will be 256. You probably want
10346 to disable this option for a standalone image.
10347 Set by default.
10348
10349 @item stats_mode
10350 Set statistics mode.
10351
10352 It accepts the following values:
10353 @table @samp
10354 @item full
10355 Compute full frame histograms.
10356 @item diff
10357 Compute histograms only for the part that differs from previous frame. This
10358 might be relevant to give more importance to the moving part of your input if
10359 the background is static.
10360 @end table
10361
10362 Default value is @var{full}.
10363 @end table
10364
10365 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10366 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10367 color quantization of the palette. This information is also visible at
10368 @var{info} logging level.
10369
10370 @subsection Examples
10371
10372 @itemize
10373 @item
10374 Generate a representative palette of a given video using @command{ffmpeg}:
10375 @example
10376 ffmpeg -i input.mkv -vf palettegen palette.png
10377 @end example
10378 @end itemize
10379
10380 @section paletteuse
10381
10382 Use a palette to downsample an input video stream.
10383
10384 The filter takes two inputs: one video stream and a palette. The palette must
10385 be a 256 pixels image.
10386
10387 It accepts the following options:
10388
10389 @table @option
10390 @item dither
10391 Select dithering mode. Available algorithms are:
10392 @table @samp
10393 @item bayer
10394 Ordered 8x8 bayer dithering (deterministic)
10395 @item heckbert
10396 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10397 Note: this dithering is sometimes considered "wrong" and is included as a
10398 reference.
10399 @item floyd_steinberg
10400 Floyd and Steingberg dithering (error diffusion)
10401 @item sierra2
10402 Frankie Sierra dithering v2 (error diffusion)
10403 @item sierra2_4a
10404 Frankie Sierra dithering v2 "Lite" (error diffusion)
10405 @end table
10406
10407 Default is @var{sierra2_4a}.
10408
10409 @item bayer_scale
10410 When @var{bayer} dithering is selected, this option defines the scale of the
10411 pattern (how much the crosshatch pattern is visible). A low value means more
10412 visible pattern for less banding, and higher value means less visible pattern
10413 at the cost of more banding.
10414
10415 The option must be an integer value in the range [0,5]. Default is @var{2}.
10416
10417 @item diff_mode
10418 If set, define the zone to process
10419
10420 @table @samp
10421 @item rectangle
10422 Only the changing rectangle will be reprocessed. This is similar to GIF
10423 cropping/offsetting compression mechanism. This option can be useful for speed
10424 if only a part of the image is changing, and has use cases such as limiting the
10425 scope of the error diffusal @option{dither} to the rectangle that bounds the
10426 moving scene (it leads to more deterministic output if the scene doesn't change
10427 much, and as a result less moving noise and better GIF compression).
10428 @end table
10429
10430 Default is @var{none}.
10431 @end table
10432
10433 @subsection Examples
10434
10435 @itemize
10436 @item
10437 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10438 using @command{ffmpeg}:
10439 @example
10440 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10441 @end example
10442 @end itemize
10443
10444 @section perspective
10445
10446 Correct perspective of video not recorded perpendicular to the screen.
10447
10448 A description of the accepted parameters follows.
10449
10450 @table @option
10451 @item x0
10452 @item y0
10453 @item x1
10454 @item y1
10455 @item x2
10456 @item y2
10457 @item x3
10458 @item y3
10459 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10460 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10461 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10462 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10463 then the corners of the source will be sent to the specified coordinates.
10464
10465 The expressions can use the following variables:
10466
10467 @table @option
10468 @item W
10469 @item H
10470 the width and height of video frame.
10471 @item in
10472 Input frame count.
10473 @item on
10474 Output frame count.
10475 @end table
10476
10477 @item interpolation
10478 Set interpolation for perspective correction.
10479
10480 It accepts the following values:
10481 @table @samp
10482 @item linear
10483 @item cubic
10484 @end table
10485
10486 Default value is @samp{linear}.
10487
10488 @item sense
10489 Set interpretation of coordinate options.
10490
10491 It accepts the following values:
10492 @table @samp
10493 @item 0, source
10494
10495 Send point in the source specified by the given coordinates to
10496 the corners of the destination.
10497
10498 @item 1, destination
10499
10500 Send the corners of the source to the point in the destination specified
10501 by the given coordinates.
10502
10503 Default value is @samp{source}.
10504 @end table
10505
10506 @item eval
10507 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10508
10509 It accepts the following values:
10510 @table @samp
10511 @item init
10512 only evaluate expressions once during the filter initialization or
10513 when a command is processed
10514
10515 @item frame
10516 evaluate expressions for each incoming frame
10517 @end table
10518
10519 Default value is @samp{init}.
10520 @end table
10521
10522 @section phase
10523
10524 Delay interlaced video by one field time so that the field order changes.
10525
10526 The intended use is to fix PAL movies that have been captured with the
10527 opposite field order to the film-to-video transfer.
10528
10529 A description of the accepted parameters follows.
10530
10531 @table @option
10532 @item mode
10533 Set phase mode.
10534
10535 It accepts the following values:
10536 @table @samp
10537 @item t
10538 Capture field order top-first, transfer bottom-first.
10539 Filter will delay the bottom field.
10540
10541 @item b
10542 Capture field order bottom-first, transfer top-first.
10543 Filter will delay the top field.
10544
10545 @item p
10546 Capture and transfer with the same field order. This mode only exists
10547 for the documentation of the other options to refer to, but if you
10548 actually select it, the filter will faithfully do nothing.
10549
10550 @item a
10551 Capture field order determined automatically by field flags, transfer
10552 opposite.
10553 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10554 basis using field flags. If no field information is available,
10555 then this works just like @samp{u}.
10556
10557 @item u
10558 Capture unknown or varying, transfer opposite.
10559 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10560 analyzing the images and selecting the alternative that produces best
10561 match between the fields.
10562
10563 @item T
10564 Capture top-first, transfer unknown or varying.
10565 Filter selects among @samp{t} and @samp{p} using image analysis.
10566
10567 @item B
10568 Capture bottom-first, transfer unknown or varying.
10569 Filter selects among @samp{b} and @samp{p} using image analysis.
10570
10571 @item A
10572 Capture determined by field flags, transfer unknown or varying.
10573 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10574 image analysis. If no field information is available, then this works just
10575 like @samp{U}. This is the default mode.
10576
10577 @item U
10578 Both capture and transfer unknown or varying.
10579 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10580 @end table
10581 @end table
10582
10583 @section pixdesctest
10584
10585 Pixel format descriptor test filter, mainly useful for internal
10586 testing. The output video should be equal to the input video.
10587
10588 For example:
10589 @example
10590 format=monow, pixdesctest
10591 @end example
10592
10593 can be used to test the monowhite pixel format descriptor definition.
10594
10595 @section pp
10596
10597 Enable the specified chain of postprocessing subfilters using libpostproc. This
10598 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10599 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10600 Each subfilter and some options have a short and a long name that can be used
10601 interchangeably, i.e. dr/dering are the same.
10602
10603 The filters accept the following options:
10604
10605 @table @option
10606 @item subfilters
10607 Set postprocessing subfilters string.
10608 @end table
10609
10610 All subfilters share common options to determine their scope:
10611
10612 @table @option
10613 @item a/autoq
10614 Honor the quality commands for this subfilter.
10615
10616 @item c/chrom
10617 Do chrominance filtering, too (default).
10618
10619 @item y/nochrom
10620 Do luminance filtering only (no chrominance).
10621
10622 @item n/noluma
10623 Do chrominance filtering only (no luminance).
10624 @end table
10625
10626 These options can be appended after the subfilter name, separated by a '|'.
10627
10628 Available subfilters are:
10629
10630 @table @option
10631 @item hb/hdeblock[|difference[|flatness]]
10632 Horizontal deblocking filter
10633 @table @option
10634 @item difference
10635 Difference factor where higher values mean more deblocking (default: @code{32}).
10636 @item flatness
10637 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10638 @end table
10639
10640 @item vb/vdeblock[|difference[|flatness]]
10641 Vertical deblocking filter
10642 @table @option
10643 @item difference
10644 Difference factor where higher values mean more deblocking (default: @code{32}).
10645 @item flatness
10646 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10647 @end table
10648
10649 @item ha/hadeblock[|difference[|flatness]]
10650 Accurate horizontal deblocking filter
10651 @table @option
10652 @item difference
10653 Difference factor where higher values mean more deblocking (default: @code{32}).
10654 @item flatness
10655 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10656 @end table
10657
10658 @item va/vadeblock[|difference[|flatness]]
10659 Accurate vertical deblocking filter
10660 @table @option
10661 @item difference
10662 Difference factor where higher values mean more deblocking (default: @code{32}).
10663 @item flatness
10664 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10665 @end table
10666 @end table
10667
10668 The horizontal and vertical deblocking filters share the difference and
10669 flatness values so you cannot set different horizontal and vertical
10670 thresholds.
10671
10672 @table @option
10673 @item h1/x1hdeblock
10674 Experimental horizontal deblocking filter
10675
10676 @item v1/x1vdeblock
10677 Experimental vertical deblocking filter
10678
10679 @item dr/dering
10680 Deringing filter
10681
10682 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10683 @table @option
10684 @item threshold1
10685 larger -> stronger filtering
10686 @item threshold2
10687 larger -> stronger filtering
10688 @item threshold3
10689 larger -> stronger filtering
10690 @end table
10691
10692 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10693 @table @option
10694 @item f/fullyrange
10695 Stretch luminance to @code{0-255}.
10696 @end table
10697
10698 @item lb/linblenddeint
10699 Linear blend deinterlacing filter that deinterlaces the given block by
10700 filtering all lines with a @code{(1 2 1)} filter.
10701
10702 @item li/linipoldeint
10703 Linear interpolating deinterlacing filter that deinterlaces the given block by
10704 linearly interpolating every second line.
10705
10706 @item ci/cubicipoldeint
10707 Cubic interpolating deinterlacing filter deinterlaces the given block by
10708 cubically interpolating every second line.
10709
10710 @item md/mediandeint
10711 Median deinterlacing filter that deinterlaces the given block by applying a
10712 median filter to every second line.
10713
10714 @item fd/ffmpegdeint
10715 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10716 second line with a @code{(-1 4 2 4 -1)} filter.
10717
10718 @item l5/lowpass5
10719 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10720 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10721
10722 @item fq/forceQuant[|quantizer]
10723 Overrides the quantizer table from the input with the constant quantizer you
10724 specify.
10725 @table @option
10726 @item quantizer
10727 Quantizer to use
10728 @end table
10729
10730 @item de/default
10731 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10732
10733 @item fa/fast
10734 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10735
10736 @item ac
10737 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10738 @end table
10739
10740 @subsection Examples
10741
10742 @itemize
10743 @item
10744 Apply horizontal and vertical deblocking, deringing and automatic
10745 brightness/contrast:
10746 @example
10747 pp=hb/vb/dr/al
10748 @end example
10749
10750 @item
10751 Apply default filters without brightness/contrast correction:
10752 @example
10753 pp=de/-al
10754 @end example
10755
10756 @item
10757 Apply default filters and temporal denoiser:
10758 @example
10759 pp=default/tmpnoise|1|2|3
10760 @end example
10761
10762 @item
10763 Apply deblocking on luminance only, and switch vertical deblocking on or off
10764 automatically depending on available CPU time:
10765 @example
10766 pp=hb|y/vb|a
10767 @end example
10768 @end itemize
10769
10770 @section pp7
10771 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
10772 similar to spp = 6 with 7 point DCT, where only the center sample is
10773 used after IDCT.
10774
10775 The filter accepts the following options:
10776
10777 @table @option
10778 @item qp
10779 Force a constant quantization parameter. It accepts an integer in range
10780 0 to 63. If not set, the filter will use the QP from the video stream
10781 (if available).
10782
10783 @item mode
10784 Set thresholding mode. Available modes are:
10785
10786 @table @samp
10787 @item hard
10788 Set hard thresholding.
10789 @item soft
10790 Set soft thresholding (better de-ringing effect, but likely blurrier).
10791 @item medium
10792 Set medium thresholding (good results, default).
10793 @end table
10794 @end table
10795
10796 @section psnr
10797
10798 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
10799 Ratio) between two input videos.
10800
10801 This filter takes in input two input videos, the first input is
10802 considered the "main" source and is passed unchanged to the
10803 output. The second input is used as a "reference" video for computing
10804 the PSNR.
10805
10806 Both video inputs must have the same resolution and pixel format for
10807 this filter to work correctly. Also it assumes that both inputs
10808 have the same number of frames, which are compared one by one.
10809
10810 The obtained average PSNR is printed through the logging system.
10811
10812 The filter stores the accumulated MSE (mean squared error) of each
10813 frame, and at the end of the processing it is averaged across all frames
10814 equally, and the following formula is applied to obtain the PSNR:
10815
10816 @example
10817 PSNR = 10*log10(MAX^2/MSE)
10818 @end example
10819
10820 Where MAX is the average of the maximum values of each component of the
10821 image.
10822
10823 The description of the accepted parameters follows.
10824
10825 @table @option
10826 @item stats_file, f
10827 If specified the filter will use the named file to save the PSNR of
10828 each individual frame. When filename equals "-" the data is sent to
10829 standard output.
10830
10831 @item stats_version
10832 Specifies which version of the stats file format to use. Details of
10833 each format are written below.
10834 Default value is 1.
10835
10836 @item stats_add_max
10837 Determines whether the max value is output to the stats log.
10838 Default value is 0.
10839 Requires stats_version >= 2. If this is set and stats_version < 2,
10840 the filter will return an error.
10841 @end table
10842
10843 The file printed if @var{stats_file} is selected, contains a sequence of
10844 key/value pairs of the form @var{key}:@var{value} for each compared
10845 couple of frames.
10846
10847 If a @var{stats_version} greater than 1 is specified, a header line precedes
10848 the list of per-frame-pair stats, with key value pairs following the frame
10849 format with the following parameters:
10850
10851 @table @option
10852 @item psnr_log_version
10853 The version of the log file format. Will match @var{stats_version}.
10854
10855 @item fields
10856 A comma separated list of the per-frame-pair parameters included in
10857 the log.
10858 @end table
10859
10860 A description of each shown per-frame-pair parameter follows:
10861
10862 @table @option
10863 @item n
10864 sequential number of the input frame, starting from 1
10865
10866 @item mse_avg
10867 Mean Square Error pixel-by-pixel average difference of the compared
10868 frames, averaged over all the image components.
10869
10870 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
10871 Mean Square Error pixel-by-pixel average difference of the compared
10872 frames for the component specified by the suffix.
10873
10874 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
10875 Peak Signal to Noise ratio of the compared frames for the component
10876 specified by the suffix.
10877
10878 @item max_avg, max_y, max_u, max_v
10879 Maximum allowed value for each channel, and average over all
10880 channels.
10881 @end table
10882
10883 For example:
10884 @example
10885 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10886 [main][ref] psnr="stats_file=stats.log" [out]
10887 @end example
10888
10889 On this example the input file being processed is compared with the
10890 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
10891 is stored in @file{stats.log}.
10892
10893 @anchor{pullup}
10894 @section pullup
10895
10896 Pulldown reversal (inverse telecine) filter, capable of handling mixed
10897 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
10898 content.
10899
10900 The pullup filter is designed to take advantage of future context in making
10901 its decisions. This filter is stateless in the sense that it does not lock
10902 onto a pattern to follow, but it instead looks forward to the following
10903 fields in order to identify matches and rebuild progressive frames.
10904
10905 To produce content with an even framerate, insert the fps filter after
10906 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
10907 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
10908
10909 The filter accepts the following options:
10910
10911 @table @option
10912 @item jl
10913 @item jr
10914 @item jt
10915 @item jb
10916 These options set the amount of "junk" to ignore at the left, right, top, and
10917 bottom of the image, respectively. Left and right are in units of 8 pixels,
10918 while top and bottom are in units of 2 lines.
10919 The default is 8 pixels on each side.
10920
10921 @item sb
10922 Set the strict breaks. Setting this option to 1 will reduce the chances of
10923 filter generating an occasional mismatched frame, but it may also cause an
10924 excessive number of frames to be dropped during high motion sequences.
10925 Conversely, setting it to -1 will make filter match fields more easily.
10926 This may help processing of video where there is slight blurring between
10927 the fields, but may also cause there to be interlaced frames in the output.
10928 Default value is @code{0}.
10929
10930 @item mp
10931 Set the metric plane to use. It accepts the following values:
10932 @table @samp
10933 @item l
10934 Use luma plane.
10935
10936 @item u
10937 Use chroma blue plane.
10938
10939 @item v
10940 Use chroma red plane.
10941 @end table
10942
10943 This option may be set to use chroma plane instead of the default luma plane
10944 for doing filter's computations. This may improve accuracy on very clean
10945 source material, but more likely will decrease accuracy, especially if there
10946 is chroma noise (rainbow effect) or any grayscale video.
10947 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
10948 load and make pullup usable in realtime on slow machines.
10949 @end table
10950
10951 For best results (without duplicated frames in the output file) it is
10952 necessary to change the output frame rate. For example, to inverse
10953 telecine NTSC input:
10954 @example
10955 ffmpeg -i input -vf pullup -r 24000/1001 ...
10956 @end example
10957
10958 @section qp
10959
10960 Change video quantization parameters (QP).
10961
10962 The filter accepts the following option:
10963
10964 @table @option
10965 @item qp
10966 Set expression for quantization parameter.
10967 @end table
10968
10969 The expression is evaluated through the eval API and can contain, among others,
10970 the following constants:
10971
10972 @table @var
10973 @item known
10974 1 if index is not 129, 0 otherwise.
10975
10976 @item qp
10977 Sequentional index starting from -129 to 128.
10978 @end table
10979
10980 @subsection Examples
10981
10982 @itemize
10983 @item
10984 Some equation like:
10985 @example
10986 qp=2+2*sin(PI*qp)
10987 @end example
10988 @end itemize
10989
10990 @section random
10991
10992 Flush video frames from internal cache of frames into a random order.
10993 No frame is discarded.
10994 Inspired by @ref{frei0r} nervous filter.
10995
10996 @table @option
10997 @item frames
10998 Set size in number of frames of internal cache, in range from @code{2} to
10999 @code{512}. Default is @code{30}.
11000
11001 @item seed
11002 Set seed for random number generator, must be an integer included between
11003 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
11004 less than @code{0}, the filter will try to use a good random seed on a
11005 best effort basis.
11006 @end table
11007
11008 @section readvitc
11009
11010 Read vertical interval timecode (VITC) information from the top lines of a
11011 video frame.
11012
11013 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
11014 timecode value, if a valid timecode has been detected. Further metadata key
11015 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
11016 timecode data has been found or not.
11017
11018 This filter accepts the following options:
11019
11020 @table @option
11021 @item scan_max
11022 Set the maximum number of lines to scan for VITC data. If the value is set to
11023 @code{-1} the full video frame is scanned. Default is @code{45}.
11024
11025 @item thr_b
11026 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
11027 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
11028
11029 @item thr_w
11030 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
11031 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
11032 @end table
11033
11034 @subsection Examples
11035
11036 @itemize
11037 @item
11038 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
11039 draw @code{--:--:--:--} as a placeholder:
11040 @example
11041 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
11042 @end example
11043 @end itemize
11044
11045 @section remap
11046
11047 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
11048
11049 Destination pixel at position (X, Y) will be picked from source (x, y) position
11050 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
11051 value for pixel will be used for destination pixel.
11052
11053 Xmap and Ymap input video streams must be of same dimensions. Output video stream
11054 will have Xmap/Ymap video stream dimensions.
11055 Xmap and Ymap input video streams are 16bit depth, single channel.
11056
11057 @section removegrain
11058
11059 The removegrain filter is a spatial denoiser for progressive video.
11060
11061 @table @option
11062 @item m0
11063 Set mode for the first plane.
11064
11065 @item m1
11066 Set mode for the second plane.
11067
11068 @item m2
11069 Set mode for the third plane.
11070
11071 @item m3
11072 Set mode for the fourth plane.
11073 @end table
11074
11075 Range of mode is from 0 to 24. Description of each mode follows:
11076
11077 @table @var
11078 @item 0
11079 Leave input plane unchanged. Default.
11080
11081 @item 1
11082 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
11083
11084 @item 2
11085 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
11086
11087 @item 3
11088 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
11089
11090 @item 4
11091 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
11092 This is equivalent to a median filter.
11093
11094 @item 5
11095 Line-sensitive clipping giving the minimal change.
11096
11097 @item 6
11098 Line-sensitive clipping, intermediate.
11099
11100 @item 7
11101 Line-sensitive clipping, intermediate.
11102
11103 @item 8
11104 Line-sensitive clipping, intermediate.
11105
11106 @item 9
11107 Line-sensitive clipping on a line where the neighbours pixels are the closest.
11108
11109 @item 10
11110 Replaces the target pixel with the closest neighbour.
11111
11112 @item 11
11113 [1 2 1] horizontal and vertical kernel blur.
11114
11115 @item 12
11116 Same as mode 11.
11117
11118 @item 13
11119 Bob mode, interpolates top field from the line where the neighbours
11120 pixels are the closest.
11121
11122 @item 14
11123 Bob mode, interpolates bottom field from the line where the neighbours
11124 pixels are the closest.
11125
11126 @item 15
11127 Bob mode, interpolates top field. Same as 13 but with a more complicated
11128 interpolation formula.
11129
11130 @item 16
11131 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
11132 interpolation formula.
11133
11134 @item 17
11135 Clips the pixel with the minimum and maximum of respectively the maximum and
11136 minimum of each pair of opposite neighbour pixels.
11137
11138 @item 18
11139 Line-sensitive clipping using opposite neighbours whose greatest distance from
11140 the current pixel is minimal.
11141
11142 @item 19
11143 Replaces the pixel with the average of its 8 neighbours.
11144
11145 @item 20
11146 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
11147
11148 @item 21
11149 Clips pixels using the averages of opposite neighbour.
11150
11151 @item 22
11152 Same as mode 21 but simpler and faster.
11153
11154 @item 23
11155 Small edge and halo removal, but reputed useless.
11156
11157 @item 24
11158 Similar as 23.
11159 @end table
11160
11161 @section removelogo
11162
11163 Suppress a TV station logo, using an image file to determine which
11164 pixels comprise the logo. It works by filling in the pixels that
11165 comprise the logo with neighboring pixels.
11166
11167 The filter accepts the following options:
11168
11169 @table @option
11170 @item filename, f
11171 Set the filter bitmap file, which can be any image format supported by
11172 libavformat. The width and height of the image file must match those of the
11173 video stream being processed.
11174 @end table
11175
11176 Pixels in the provided bitmap image with a value of zero are not
11177 considered part of the logo, non-zero pixels are considered part of
11178 the logo. If you use white (255) for the logo and black (0) for the
11179 rest, you will be safe. For making the filter bitmap, it is
11180 recommended to take a screen capture of a black frame with the logo
11181 visible, and then using a threshold filter followed by the erode
11182 filter once or twice.
11183
11184 If needed, little splotches can be fixed manually. Remember that if
11185 logo pixels are not covered, the filter quality will be much
11186 reduced. Marking too many pixels as part of the logo does not hurt as
11187 much, but it will increase the amount of blurring needed to cover over
11188 the image and will destroy more information than necessary, and extra
11189 pixels will slow things down on a large logo.
11190
11191 @section repeatfields
11192
11193 This filter uses the repeat_field flag from the Video ES headers and hard repeats
11194 fields based on its value.
11195
11196 @section reverse
11197
11198 Reverse a video clip.
11199
11200 Warning: This filter requires memory to buffer the entire clip, so trimming
11201 is suggested.
11202
11203 @subsection Examples
11204
11205 @itemize
11206 @item
11207 Take the first 5 seconds of a clip, and reverse it.
11208 @example
11209 trim=end=5,reverse
11210 @end example
11211 @end itemize
11212
11213 @section rotate
11214
11215 Rotate video by an arbitrary angle expressed in radians.
11216
11217 The filter accepts the following options:
11218
11219 A description of the optional parameters follows.
11220 @table @option
11221 @item angle, a
11222 Set an expression for the angle by which to rotate the input video
11223 clockwise, expressed as a number of radians. A negative value will
11224 result in a counter-clockwise rotation. By default it is set to "0".
11225
11226 This expression is evaluated for each frame.
11227
11228 @item out_w, ow
11229 Set the output width expression, default value is "iw".
11230 This expression is evaluated just once during configuration.
11231
11232 @item out_h, oh
11233 Set the output height expression, default value is "ih".
11234 This expression is evaluated just once during configuration.
11235
11236 @item bilinear
11237 Enable bilinear interpolation if set to 1, a value of 0 disables
11238 it. Default value is 1.
11239
11240 @item fillcolor, c
11241 Set the color used to fill the output area not covered by the rotated
11242 image. For the general syntax of this option, check the "Color" section in the
11243 ffmpeg-utils manual. If the special value "none" is selected then no
11244 background is printed (useful for example if the background is never shown).
11245
11246 Default value is "black".
11247 @end table
11248
11249 The expressions for the angle and the output size can contain the
11250 following constants and functions:
11251
11252 @table @option
11253 @item n
11254 sequential number of the input frame, starting from 0. It is always NAN
11255 before the first frame is filtered.
11256
11257 @item t
11258 time in seconds of the input frame, it is set to 0 when the filter is
11259 configured. It is always NAN before the first frame is filtered.
11260
11261 @item hsub
11262 @item vsub
11263 horizontal and vertical chroma subsample values. For example for the
11264 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11265
11266 @item in_w, iw
11267 @item in_h, ih
11268 the input video width and height
11269
11270 @item out_w, ow
11271 @item out_h, oh
11272 the output width and height, that is the size of the padded area as
11273 specified by the @var{width} and @var{height} expressions
11274
11275 @item rotw(a)
11276 @item roth(a)
11277 the minimal width/height required for completely containing the input
11278 video rotated by @var{a} radians.
11279
11280 These are only available when computing the @option{out_w} and
11281 @option{out_h} expressions.
11282 @end table
11283
11284 @subsection Examples
11285
11286 @itemize
11287 @item
11288 Rotate the input by PI/6 radians clockwise:
11289 @example
11290 rotate=PI/6
11291 @end example
11292
11293 @item
11294 Rotate the input by PI/6 radians counter-clockwise:
11295 @example
11296 rotate=-PI/6
11297 @end example
11298
11299 @item
11300 Rotate the input by 45 degrees clockwise:
11301 @example
11302 rotate=45*PI/180
11303 @end example
11304
11305 @item
11306 Apply a constant rotation with period T, starting from an angle of PI/3:
11307 @example
11308 rotate=PI/3+2*PI*t/T
11309 @end example
11310
11311 @item
11312 Make the input video rotation oscillating with a period of T
11313 seconds and an amplitude of A radians:
11314 @example
11315 rotate=A*sin(2*PI/T*t)
11316 @end example
11317
11318 @item
11319 Rotate the video, output size is chosen so that the whole rotating
11320 input video is always completely contained in the output:
11321 @example
11322 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11323 @end example
11324
11325 @item
11326 Rotate the video, reduce the output size so that no background is ever
11327 shown:
11328 @example
11329 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11330 @end example
11331 @end itemize
11332
11333 @subsection Commands
11334
11335 The filter supports the following commands:
11336
11337 @table @option
11338 @item a, angle
11339 Set the angle expression.
11340 The command accepts the same syntax of the corresponding option.
11341
11342 If the specified expression is not valid, it is kept at its current
11343 value.
11344 @end table
11345
11346 @section sab
11347
11348 Apply Shape Adaptive Blur.
11349
11350 The filter accepts the following options:
11351
11352 @table @option
11353 @item luma_radius, lr
11354 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11355 value is 1.0. A greater value will result in a more blurred image, and
11356 in slower processing.
11357
11358 @item luma_pre_filter_radius, lpfr
11359 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11360 value is 1.0.
11361
11362 @item luma_strength, ls
11363 Set luma maximum difference between pixels to still be considered, must
11364 be a value in the 0.1-100.0 range, default value is 1.0.
11365
11366 @item chroma_radius, cr
11367 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11368 greater value will result in a more blurred image, and in slower
11369 processing.
11370
11371 @item chroma_pre_filter_radius, cpfr
11372 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11373
11374 @item chroma_strength, cs
11375 Set chroma maximum difference between pixels to still be considered,
11376 must be a value in the -0.9-100.0 range.
11377 @end table
11378
11379 Each chroma option value, if not explicitly specified, is set to the
11380 corresponding luma option value.
11381
11382 @anchor{scale}
11383 @section scale
11384
11385 Scale (resize) the input video, using the libswscale library.
11386
11387 The scale filter forces the output display aspect ratio to be the same
11388 of the input, by changing the output sample aspect ratio.
11389
11390 If the input image format is different from the format requested by
11391 the next filter, the scale filter will convert the input to the
11392 requested format.
11393
11394 @subsection Options
11395 The filter accepts the following options, or any of the options
11396 supported by the libswscale scaler.
11397
11398 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11399 the complete list of scaler options.
11400
11401 @table @option
11402 @item width, w
11403 @item height, h
11404 Set the output video dimension expression. Default value is the input
11405 dimension.
11406
11407 If the value is 0, the input width is used for the output.
11408
11409 If one of the values is -1, the scale filter will use a value that
11410 maintains the aspect ratio of the input image, calculated from the
11411 other specified dimension. If both of them are -1, the input size is
11412 used
11413
11414 If one of the values is -n with n > 1, the scale filter will also use a value
11415 that maintains the aspect ratio of the input image, calculated from the other
11416 specified dimension. After that it will, however, make sure that the calculated
11417 dimension is divisible by n and adjust the value if necessary.
11418
11419 See below for the list of accepted constants for use in the dimension
11420 expression.
11421
11422 @item eval
11423 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11424
11425 @table @samp
11426 @item init
11427 Only evaluate expressions once during the filter initialization or when a command is processed.
11428
11429 @item frame
11430 Evaluate expressions for each incoming frame.
11431
11432 @end table
11433
11434 Default value is @samp{init}.
11435
11436
11437 @item interl
11438 Set the interlacing mode. It accepts the following values:
11439
11440 @table @samp
11441 @item 1
11442 Force interlaced aware scaling.
11443
11444 @item 0
11445 Do not apply interlaced scaling.
11446
11447 @item -1
11448 Select interlaced aware scaling depending on whether the source frames
11449 are flagged as interlaced or not.
11450 @end table
11451
11452 Default value is @samp{0}.
11453
11454 @item flags
11455 Set libswscale scaling flags. See
11456 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11457 complete list of values. If not explicitly specified the filter applies
11458 the default flags.
11459
11460
11461 @item param0, param1
11462 Set libswscale input parameters for scaling algorithms that need them. See
11463 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11464 complete documentation. If not explicitly specified the filter applies
11465 empty parameters.
11466
11467
11468
11469 @item size, s
11470 Set the video size. For the syntax of this option, check the
11471 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11472
11473 @item in_color_matrix
11474 @item out_color_matrix
11475 Set in/output YCbCr color space type.
11476
11477 This allows the autodetected value to be overridden as well as allows forcing
11478 a specific value used for the output and encoder.
11479
11480 If not specified, the color space type depends on the pixel format.
11481
11482 Possible values:
11483
11484 @table @samp
11485 @item auto
11486 Choose automatically.
11487
11488 @item bt709
11489 Format conforming to International Telecommunication Union (ITU)
11490 Recommendation BT.709.
11491
11492 @item fcc
11493 Set color space conforming to the United States Federal Communications
11494 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11495
11496 @item bt601
11497 Set color space conforming to:
11498
11499 @itemize
11500 @item
11501 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11502
11503 @item
11504 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11505
11506 @item
11507 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11508
11509 @end itemize
11510
11511 @item smpte240m
11512 Set color space conforming to SMPTE ST 240:1999.
11513 @end table
11514
11515 @item in_range
11516 @item out_range
11517 Set in/output YCbCr sample range.
11518
11519 This allows the autodetected value to be overridden as well as allows forcing
11520 a specific value used for the output and encoder. If not specified, the
11521 range depends on the pixel format. Possible values:
11522
11523 @table @samp
11524 @item auto
11525 Choose automatically.
11526
11527 @item jpeg/full/pc
11528 Set full range (0-255 in case of 8-bit luma).
11529
11530 @item mpeg/tv
11531 Set "MPEG" range (16-235 in case of 8-bit luma).
11532 @end table
11533
11534 @item force_original_aspect_ratio
11535 Enable decreasing or increasing output video width or height if necessary to
11536 keep the original aspect ratio. Possible values:
11537
11538 @table @samp
11539 @item disable
11540 Scale the video as specified and disable this feature.
11541
11542 @item decrease
11543 The output video dimensions will automatically be decreased if needed.
11544
11545 @item increase
11546 The output video dimensions will automatically be increased if needed.
11547
11548 @end table
11549
11550 One useful instance of this option is that when you know a specific device's
11551 maximum allowed resolution, you can use this to limit the output video to
11552 that, while retaining the aspect ratio. For example, device A allows
11553 1280x720 playback, and your video is 1920x800. Using this option (set it to
11554 decrease) and specifying 1280x720 to the command line makes the output
11555 1280x533.
11556
11557 Please note that this is a different thing than specifying -1 for @option{w}
11558 or @option{h}, you still need to specify the output resolution for this option
11559 to work.
11560
11561 @end table
11562
11563 The values of the @option{w} and @option{h} options are expressions
11564 containing the following constants:
11565
11566 @table @var
11567 @item in_w
11568 @item in_h
11569 The input width and height
11570
11571 @item iw
11572 @item ih
11573 These are the same as @var{in_w} and @var{in_h}.
11574
11575 @item out_w
11576 @item out_h
11577 The output (scaled) width and height
11578
11579 @item ow
11580 @item oh
11581 These are the same as @var{out_w} and @var{out_h}
11582
11583 @item a
11584 The same as @var{iw} / @var{ih}
11585
11586 @item sar
11587 input sample aspect ratio
11588
11589 @item dar
11590 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11591
11592 @item hsub
11593 @item vsub
11594 horizontal and vertical input chroma subsample values. For example for the
11595 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11596
11597 @item ohsub
11598 @item ovsub
11599 horizontal and vertical output chroma subsample values. For example for the
11600 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11601 @end table
11602
11603 @subsection Examples
11604
11605 @itemize
11606 @item
11607 Scale the input video to a size of 200x100
11608 @example
11609 scale=w=200:h=100
11610 @end example
11611
11612 This is equivalent to:
11613 @example
11614 scale=200:100
11615 @end example
11616
11617 or:
11618 @example
11619 scale=200x100
11620 @end example
11621
11622 @item
11623 Specify a size abbreviation for the output size:
11624 @example
11625 scale=qcif
11626 @end example
11627
11628 which can also be written as:
11629 @example
11630 scale=size=qcif
11631 @end example
11632
11633 @item
11634 Scale the input to 2x:
11635 @example
11636 scale=w=2*iw:h=2*ih
11637 @end example
11638
11639 @item
11640 The above is the same as:
11641 @example
11642 scale=2*in_w:2*in_h
11643 @end example
11644
11645 @item
11646 Scale the input to 2x with forced interlaced scaling:
11647 @example
11648 scale=2*iw:2*ih:interl=1
11649 @end example
11650
11651 @item
11652 Scale the input to half size:
11653 @example
11654 scale=w=iw/2:h=ih/2
11655 @end example
11656
11657 @item
11658 Increase the width, and set the height to the same size:
11659 @example
11660 scale=3/2*iw:ow
11661 @end example
11662
11663 @item
11664 Seek Greek harmony:
11665 @example
11666 scale=iw:1/PHI*iw
11667 scale=ih*PHI:ih
11668 @end example
11669
11670 @item
11671 Increase the height, and set the width to 3/2 of the height:
11672 @example
11673 scale=w=3/2*oh:h=3/5*ih
11674 @end example
11675
11676 @item
11677 Increase the size, making the size a multiple of the chroma
11678 subsample values:
11679 @example
11680 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
11681 @end example
11682
11683 @item
11684 Increase the width to a maximum of 500 pixels,
11685 keeping the same aspect ratio as the input:
11686 @example
11687 scale=w='min(500\, iw*3/2):h=-1'
11688 @end example
11689 @end itemize
11690
11691 @subsection Commands
11692
11693 This filter supports the following commands:
11694 @table @option
11695 @item width, w
11696 @item height, h
11697 Set the output video dimension expression.
11698 The command accepts the same syntax of the corresponding option.
11699
11700 If the specified expression is not valid, it is kept at its current
11701 value.
11702 @end table
11703
11704 @section scale_npp
11705
11706 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
11707 format conversion on CUDA video frames. Setting the output width and height
11708 works in the same way as for the @var{scale} filter.
11709
11710 The following additional options are accepted:
11711 @table @option
11712 @item format
11713 The pixel format of the output CUDA frames. If set to the string "same" (the
11714 default), the input format will be kept. Note that automatic format negotiation
11715 and conversion is not yet supported for hardware frames
11716
11717 @item interp_algo
11718 The interpolation algorithm used for resizing. One of the following:
11719 @table @option
11720 @item nn
11721 Nearest neighbour.
11722
11723 @item linear
11724 @item cubic
11725 @item cubic2p_bspline
11726 2-parameter cubic (B=1, C=0)
11727
11728 @item cubic2p_catmullrom
11729 2-parameter cubic (B=0, C=1/2)
11730
11731 @item cubic2p_b05c03
11732 2-parameter cubic (B=1/2, C=3/10)
11733
11734 @item super
11735 Supersampling
11736
11737 @item lanczos
11738 @end table
11739
11740 @end table
11741
11742 @section scale2ref
11743
11744 Scale (resize) the input video, based on a reference video.
11745
11746 See the scale filter for available options, scale2ref supports the same but
11747 uses the reference video instead of the main input as basis.
11748
11749 @subsection Examples
11750
11751 @itemize
11752 @item
11753 Scale a subtitle stream to match the main video in size before overlaying
11754 @example
11755 'scale2ref[b][a];[a][b]overlay'
11756 @end example
11757 @end itemize
11758
11759 @anchor{selectivecolor}
11760 @section selectivecolor
11761
11762 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
11763 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
11764 by the "purity" of the color (that is, how saturated it already is).
11765
11766 This filter is similar to the Adobe Photoshop Selective Color tool.
11767
11768 The filter accepts the following options:
11769
11770 @table @option
11771 @item correction_method
11772 Select color correction method.
11773
11774 Available values are:
11775 @table @samp
11776 @item absolute
11777 Specified adjustments are applied "as-is" (added/subtracted to original pixel
11778 component value).
11779 @item relative
11780 Specified adjustments are relative to the original component value.
11781 @end table
11782 Default is @code{absolute}.
11783 @item reds
11784 Adjustments for red pixels (pixels where the red component is the maximum)
11785 @item yellows
11786 Adjustments for yellow pixels (pixels where the blue component is the minimum)
11787 @item greens
11788 Adjustments for green pixels (pixels where the green component is the maximum)
11789 @item cyans
11790 Adjustments for cyan pixels (pixels where the red component is the minimum)
11791 @item blues
11792 Adjustments for blue pixels (pixels where the blue component is the maximum)
11793 @item magentas
11794 Adjustments for magenta pixels (pixels where the green component is the minimum)
11795 @item whites
11796 Adjustments for white pixels (pixels where all components are greater than 128)
11797 @item neutrals
11798 Adjustments for all pixels except pure black and pure white
11799 @item blacks
11800 Adjustments for black pixels (pixels where all components are lesser than 128)
11801 @item psfile
11802 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
11803 @end table
11804
11805 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
11806 4 space separated floating point adjustment values in the [-1,1] range,
11807 respectively to adjust the amount of cyan, magenta, yellow and black for the
11808 pixels of its range.
11809
11810 @subsection Examples
11811
11812 @itemize
11813 @item
11814 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
11815 increase magenta by 27% in blue areas:
11816 @example
11817 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
11818 @end example
11819
11820 @item
11821 Use a Photoshop selective color preset:
11822 @example
11823 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
11824 @end example
11825 @end itemize
11826
11827 @section separatefields
11828
11829 The @code{separatefields} takes a frame-based video input and splits
11830 each frame into its components fields, producing a new half height clip
11831 with twice the frame rate and twice the frame count.
11832
11833 This filter use field-dominance information in frame to decide which
11834 of each pair of fields to place first in the output.
11835 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
11836
11837 @section setdar, setsar
11838
11839 The @code{setdar} filter sets the Display Aspect Ratio for the filter
11840 output video.
11841
11842 This is done by changing the specified Sample (aka Pixel) Aspect
11843 Ratio, according to the following equation:
11844 @example
11845 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
11846 @end example
11847
11848 Keep in mind that the @code{setdar} filter does not modify the pixel
11849 dimensions of the video frame. Also, the display aspect ratio set by
11850 this filter may be changed by later filters in the filterchain,
11851 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
11852 applied.
11853
11854 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
11855 the filter output video.
11856
11857 Note that as a consequence of the application of this filter, the
11858 output display aspect ratio will change according to the equation
11859 above.
11860
11861 Keep in mind that the sample aspect ratio set by the @code{setsar}
11862 filter may be changed by later filters in the filterchain, e.g. if
11863 another "setsar" or a "setdar" filter is applied.
11864
11865 It accepts the following parameters:
11866
11867 @table @option
11868 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
11869 Set the aspect ratio used by the filter.
11870
11871 The parameter can be a floating point number string, an expression, or
11872 a string of the form @var{num}:@var{den}, where @var{num} and
11873 @var{den} are the numerator and denominator of the aspect ratio. If
11874 the parameter is not specified, it is assumed the value "0".
11875 In case the form "@var{num}:@var{den}" is used, the @code{:} character
11876 should be escaped.
11877
11878 @item max
11879 Set the maximum integer value to use for expressing numerator and
11880 denominator when reducing the expressed aspect ratio to a rational.
11881 Default value is @code{100}.
11882
11883 @end table
11884
11885 The parameter @var{sar} is an expression containing
11886 the following constants:
11887
11888 @table @option
11889 @item E, PI, PHI
11890 These are approximated values for the mathematical constants e
11891 (Euler's number), pi (Greek pi), and phi (the golden ratio).
11892
11893 @item w, h
11894 The input width and height.
11895
11896 @item a
11897 These are the same as @var{w} / @var{h}.
11898
11899 @item sar
11900 The input sample aspect ratio.
11901
11902 @item dar
11903 The input display aspect ratio. It is the same as
11904 (@var{w} / @var{h}) * @var{sar}.
11905
11906 @item hsub, vsub
11907 Horizontal and vertical chroma subsample values. For example, for the
11908 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11909 @end table
11910
11911 @subsection Examples
11912
11913 @itemize
11914
11915 @item
11916 To change the display aspect ratio to 16:9, specify one of the following:
11917 @example
11918 setdar=dar=1.77777
11919 setdar=dar=16/9
11920 @end example
11921
11922 @item
11923 To change the sample aspect ratio to 10:11, specify:
11924 @example
11925 setsar=sar=10/11
11926 @end example
11927
11928 @item
11929 To set a display aspect ratio of 16:9, and specify a maximum integer value of
11930 1000 in the aspect ratio reduction, use the command:
11931 @example
11932 setdar=ratio=16/9:max=1000
11933 @end example
11934
11935 @end itemize
11936
11937 @anchor{setfield}
11938 @section setfield
11939
11940 Force field for the output video frame.
11941
11942 The @code{setfield} filter marks the interlace type field for the
11943 output frames. It does not change the input frame, but only sets the
11944 corresponding property, which affects how the frame is treated by
11945 following filters (e.g. @code{fieldorder} or @code{yadif}).
11946
11947 The filter accepts the following options:
11948
11949 @table @option
11950
11951 @item mode
11952 Available values are:
11953
11954 @table @samp
11955 @item auto
11956 Keep the same field property.
11957
11958 @item bff
11959 Mark the frame as bottom-field-first.
11960
11961 @item tff
11962 Mark the frame as top-field-first.
11963
11964 @item prog
11965 Mark the frame as progressive.
11966 @end table
11967 @end table
11968
11969 @section showinfo
11970
11971 Show a line containing various information for each input video frame.
11972 The input video is not modified.
11973
11974 The shown line contains a sequence of key/value pairs of the form
11975 @var{key}:@var{value}.
11976
11977 The following values are shown in the output:
11978
11979 @table @option
11980 @item n
11981 The (sequential) number of the input frame, starting from 0.
11982
11983 @item pts
11984 The Presentation TimeStamp of the input frame, expressed as a number of
11985 time base units. The time base unit depends on the filter input pad.
11986
11987 @item pts_time
11988 The Presentation TimeStamp of the input frame, expressed as a number of
11989 seconds.
11990
11991 @item pos
11992 The position of the frame in the input stream, or -1 if this information is
11993 unavailable and/or meaningless (for example in case of synthetic video).
11994
11995 @item fmt
11996 The pixel format name.
11997
11998 @item sar
11999 The sample aspect ratio of the input frame, expressed in the form
12000 @var{num}/@var{den}.
12001
12002 @item s
12003 The size of the input frame. For the syntax of this option, check the
12004 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12005
12006 @item i
12007 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
12008 for bottom field first).
12009
12010 @item iskey
12011 This is 1 if the frame is a key frame, 0 otherwise.
12012
12013 @item type
12014 The picture type of the input frame ("I" for an I-frame, "P" for a
12015 P-frame, "B" for a B-frame, or "?" for an unknown type).
12016 Also refer to the documentation of the @code{AVPictureType} enum and of
12017 the @code{av_get_picture_type_char} function defined in
12018 @file{libavutil/avutil.h}.
12019
12020 @item checksum
12021 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
12022
12023 @item plane_checksum
12024 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
12025 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
12026 @end table
12027
12028 @section showpalette
12029
12030 Displays the 256 colors palette of each frame. This filter is only relevant for
12031 @var{pal8} pixel format frames.
12032
12033 It accepts the following option:
12034
12035 @table @option
12036 @item s
12037 Set the size of the box used to represent one palette color entry. Default is
12038 @code{30} (for a @code{30x30} pixel box).
12039 @end table
12040
12041 @section shuffleframes
12042
12043 Reorder and/or duplicate video frames.
12044
12045 It accepts the following parameters:
12046
12047 @table @option
12048 @item mapping
12049 Set the destination indexes of input frames.
12050 This is space or '|' separated list of indexes that maps input frames to output
12051 frames. Number of indexes also sets maximal value that each index may have.
12052 @end table
12053
12054 The first frame has the index 0. The default is to keep the input unchanged.
12055
12056 Swap second and third frame of every three frames of the input:
12057 @example
12058 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
12059 @end example
12060
12061 @section shuffleplanes
12062
12063 Reorder and/or duplicate video planes.
12064
12065 It accepts the following parameters:
12066
12067 @table @option
12068
12069 @item map0
12070 The index of the input plane to be used as the first output plane.
12071
12072 @item map1
12073 The index of the input plane to be used as the second output plane.
12074
12075 @item map2
12076 The index of the input plane to be used as the third output plane.
12077
12078 @item map3
12079 The index of the input plane to be used as the fourth output plane.
12080
12081 @end table
12082
12083 The first plane has the index 0. The default is to keep the input unchanged.
12084
12085 Swap the second and third planes of the input:
12086 @example
12087 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
12088 @end example
12089
12090 @anchor{signalstats}
12091 @section signalstats
12092 Evaluate various visual metrics that assist in determining issues associated
12093 with the digitization of analog video media.
12094
12095 By default the filter will log these metadata values:
12096
12097 @table @option
12098 @item YMIN
12099 Display the minimal Y value contained within the input frame. Expressed in
12100 range of [0-255].
12101
12102 @item YLOW
12103 Display the Y value at the 10% percentile within the input frame. Expressed in
12104 range of [0-255].
12105
12106 @item YAVG
12107 Display the average Y value within the input frame. Expressed in range of
12108 [0-255].
12109
12110 @item YHIGH
12111 Display the Y value at the 90% percentile within the input frame. Expressed in
12112 range of [0-255].
12113
12114 @item YMAX
12115 Display the maximum Y value contained within the input frame. Expressed in
12116 range of [0-255].
12117
12118 @item UMIN
12119 Display the minimal U value contained within the input frame. Expressed in
12120 range of [0-255].
12121
12122 @item ULOW
12123 Display the U value at the 10% percentile within the input frame. Expressed in
12124 range of [0-255].
12125
12126 @item UAVG
12127 Display the average U value within the input frame. Expressed in range of
12128 [0-255].
12129
12130 @item UHIGH
12131 Display the U value at the 90% percentile within the input frame. Expressed in
12132 range of [0-255].
12133
12134 @item UMAX
12135 Display the maximum U value contained within the input frame. Expressed in
12136 range of [0-255].
12137
12138 @item VMIN
12139 Display the minimal V value contained within the input frame. Expressed in
12140 range of [0-255].
12141
12142 @item VLOW
12143 Display the V value at the 10% percentile within the input frame. Expressed in
12144 range of [0-255].
12145
12146 @item VAVG
12147 Display the average V value within the input frame. Expressed in range of
12148 [0-255].
12149
12150 @item VHIGH
12151 Display the V value at the 90% percentile within the input frame. Expressed in
12152 range of [0-255].
12153
12154 @item VMAX
12155 Display the maximum V value contained within the input frame. Expressed in
12156 range of [0-255].
12157
12158 @item SATMIN
12159 Display the minimal saturation value contained within the input frame.
12160 Expressed in range of [0-~181.02].
12161
12162 @item SATLOW
12163 Display the saturation value at the 10% percentile within the input frame.
12164 Expressed in range of [0-~181.02].
12165
12166 @item SATAVG
12167 Display the average saturation value within the input frame. Expressed in range
12168 of [0-~181.02].
12169
12170 @item SATHIGH
12171 Display the saturation value at the 90% percentile within the input frame.
12172 Expressed in range of [0-~181.02].
12173
12174 @item SATMAX
12175 Display the maximum saturation value contained within the input frame.
12176 Expressed in range of [0-~181.02].
12177
12178 @item HUEMED
12179 Display the median value for hue within the input frame. Expressed in range of
12180 [0-360].
12181
12182 @item HUEAVG
12183 Display the average value for hue within the input frame. Expressed in range of
12184 [0-360].
12185
12186 @item YDIF
12187 Display the average of sample value difference between all values of the Y
12188 plane in the current frame and corresponding values of the previous input frame.
12189 Expressed in range of [0-255].
12190
12191 @item UDIF
12192 Display the average of sample value difference between all values of the U
12193 plane in the current frame and corresponding values of the previous input frame.
12194 Expressed in range of [0-255].
12195
12196 @item VDIF
12197 Display the average of sample value difference between all values of the V
12198 plane in the current frame and corresponding values of the previous input frame.
12199 Expressed in range of [0-255].
12200
12201 @item YBITDEPTH
12202 Display bit depth of Y plane in current frame.
12203 Expressed in range of [0-16].
12204
12205 @item UBITDEPTH
12206 Display bit depth of U plane in current frame.
12207 Expressed in range of [0-16].
12208
12209 @item VBITDEPTH
12210 Display bit depth of V plane in current frame.
12211 Expressed in range of [0-16].
12212 @end table
12213
12214 The filter accepts the following options:
12215
12216 @table @option
12217 @item stat
12218 @item out
12219
12220 @option{stat} specify an additional form of image analysis.
12221 @option{out} output video with the specified type of pixel highlighted.
12222
12223 Both options accept the following values:
12224
12225 @table @samp
12226 @item tout
12227 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
12228 unlike the neighboring pixels of the same field. Examples of temporal outliers
12229 include the results of video dropouts, head clogs, or tape tracking issues.
12230
12231 @item vrep
12232 Identify @var{vertical line repetition}. Vertical line repetition includes
12233 similar rows of pixels within a frame. In born-digital video vertical line
12234 repetition is common, but this pattern is uncommon in video digitized from an
12235 analog source. When it occurs in video that results from the digitization of an
12236 analog source it can indicate concealment from a dropout compensator.
12237
12238 @item brng
12239 Identify pixels that fall outside of legal broadcast range.
12240 @end table
12241
12242 @item color, c
12243 Set the highlight color for the @option{out} option. The default color is
12244 yellow.
12245 @end table
12246
12247 @subsection Examples
12248
12249 @itemize
12250 @item
12251 Output data of various video metrics:
12252 @example
12253 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
12254 @end example
12255
12256 @item
12257 Output specific data about the minimum and maximum values of the Y plane per frame:
12258 @example
12259 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
12260 @end example
12261
12262 @item
12263 Playback video while highlighting pixels that are outside of broadcast range in red.
12264 @example
12265 ffplay example.mov -vf signalstats="out=brng:color=red"
12266 @end example
12267
12268 @item
12269 Playback video with signalstats metadata drawn over the frame.
12270 @example
12271 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12272 @end example
12273
12274 The contents of signalstat_drawtext.txt used in the command are:
12275 @example
12276 time %@{pts:hms@}
12277 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12278 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12279 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12280 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12281
12282 @end example
12283 @end itemize
12284
12285 @anchor{smartblur}
12286 @section smartblur
12287
12288 Blur the input video without impacting the outlines.
12289
12290 It accepts the following options:
12291
12292 @table @option
12293 @item luma_radius, lr
12294 Set the luma radius. The option value must be a float number in
12295 the range [0.1,5.0] that specifies the variance of the gaussian filter
12296 used to blur the image (slower if larger). Default value is 1.0.
12297
12298 @item luma_strength, ls
12299 Set the luma strength. The option value must be a float number
12300 in the range [-1.0,1.0] that configures the blurring. A value included
12301 in [0.0,1.0] will blur the image whereas a value included in
12302 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12303
12304 @item luma_threshold, lt
12305 Set the luma threshold used as a coefficient to determine
12306 whether a pixel should be blurred or not. The option value must be an
12307 integer in the range [-30,30]. A value of 0 will filter all the image,
12308 a value included in [0,30] will filter flat areas and a value included
12309 in [-30,0] will filter edges. Default value is 0.
12310
12311 @item chroma_radius, cr
12312 Set the chroma radius. The option value must be a float number in
12313 the range [0.1,5.0] that specifies the variance of the gaussian filter
12314 used to blur the image (slower if larger). Default value is 1.0.
12315
12316 @item chroma_strength, cs
12317 Set the chroma strength. The option value must be a float number
12318 in the range [-1.0,1.0] that configures the blurring. A value included
12319 in [0.0,1.0] will blur the image whereas a value included in
12320 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12321
12322 @item chroma_threshold, ct
12323 Set the chroma threshold used as a coefficient to determine
12324 whether a pixel should be blurred or not. The option value must be an
12325 integer in the range [-30,30]. A value of 0 will filter all the image,
12326 a value included in [0,30] will filter flat areas and a value included
12327 in [-30,0] will filter edges. Default value is 0.
12328 @end table
12329
12330 If a chroma option is not explicitly set, the corresponding luma value
12331 is set.
12332
12333 @section ssim
12334
12335 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12336
12337 This filter takes in input two input videos, the first input is
12338 considered the "main" source and is passed unchanged to the
12339 output. The second input is used as a "reference" video for computing
12340 the SSIM.
12341
12342 Both video inputs must have the same resolution and pixel format for
12343 this filter to work correctly. Also it assumes that both inputs
12344 have the same number of frames, which are compared one by one.
12345
12346 The filter stores the calculated SSIM of each frame.
12347
12348 The description of the accepted parameters follows.
12349
12350 @table @option
12351 @item stats_file, f
12352 If specified the filter will use the named file to save the SSIM of
12353 each individual frame. When filename equals "-" the data is sent to
12354 standard output.
12355 @end table
12356
12357 The file printed if @var{stats_file} is selected, contains a sequence of
12358 key/value pairs of the form @var{key}:@var{value} for each compared
12359 couple of frames.
12360
12361 A description of each shown parameter follows:
12362
12363 @table @option
12364 @item n
12365 sequential number of the input frame, starting from 1
12366
12367 @item Y, U, V, R, G, B
12368 SSIM of the compared frames for the component specified by the suffix.
12369
12370 @item All
12371 SSIM of the compared frames for the whole frame.
12372
12373 @item dB
12374 Same as above but in dB representation.
12375 @end table
12376
12377 For example:
12378 @example
12379 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12380 [main][ref] ssim="stats_file=stats.log" [out]
12381 @end example
12382
12383 On this example the input file being processed is compared with the
12384 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12385 is stored in @file{stats.log}.
12386
12387 Another example with both psnr and ssim at same time:
12388 @example
12389 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12390 @end example
12391
12392 @section stereo3d
12393
12394 Convert between different stereoscopic image formats.
12395
12396 The filters accept the following options:
12397
12398 @table @option
12399 @item in
12400 Set stereoscopic image format of input.
12401
12402 Available values for input image formats are:
12403 @table @samp
12404 @item sbsl
12405 side by side parallel (left eye left, right eye right)
12406
12407 @item sbsr
12408 side by side crosseye (right eye left, left eye right)
12409
12410 @item sbs2l
12411 side by side parallel with half width resolution
12412 (left eye left, right eye right)
12413
12414 @item sbs2r
12415 side by side crosseye with half width resolution
12416 (right eye left, left eye right)
12417
12418 @item abl
12419 above-below (left eye above, right eye below)
12420
12421 @item abr
12422 above-below (right eye above, left eye below)
12423
12424 @item ab2l
12425 above-below with half height resolution
12426 (left eye above, right eye below)
12427
12428 @item ab2r
12429 above-below with half height resolution
12430 (right eye above, left eye below)
12431
12432 @item al
12433 alternating frames (left eye first, right eye second)
12434
12435 @item ar
12436 alternating frames (right eye first, left eye second)
12437
12438 @item irl
12439 interleaved rows (left eye has top row, right eye starts on next row)
12440
12441 @item irr
12442 interleaved rows (right eye has top row, left eye starts on next row)
12443
12444 @item icl
12445 interleaved columns, left eye first
12446
12447 @item icr
12448 interleaved columns, right eye first
12449
12450 Default value is @samp{sbsl}.
12451 @end table
12452
12453 @item out
12454 Set stereoscopic image format of output.
12455
12456 @table @samp
12457 @item sbsl
12458 side by side parallel (left eye left, right eye right)
12459
12460 @item sbsr
12461 side by side crosseye (right eye left, left eye right)
12462
12463 @item sbs2l
12464 side by side parallel with half width resolution
12465 (left eye left, right eye right)
12466
12467 @item sbs2r
12468 side by side crosseye with half width resolution
12469 (right eye left, left eye right)
12470
12471 @item abl
12472 above-below (left eye above, right eye below)
12473
12474 @item abr
12475 above-below (right eye above, left eye below)
12476
12477 @item ab2l
12478 above-below with half height resolution
12479 (left eye above, right eye below)
12480
12481 @item ab2r
12482 above-below with half height resolution
12483 (right eye above, left eye below)
12484
12485 @item al
12486 alternating frames (left eye first, right eye second)
12487
12488 @item ar
12489 alternating frames (right eye first, left eye second)
12490
12491 @item irl
12492 interleaved rows (left eye has top row, right eye starts on next row)
12493
12494 @item irr
12495 interleaved rows (right eye has top row, left eye starts on next row)
12496
12497 @item arbg
12498 anaglyph red/blue gray
12499 (red filter on left eye, blue filter on right eye)
12500
12501 @item argg
12502 anaglyph red/green gray
12503 (red filter on left eye, green filter on right eye)
12504
12505 @item arcg
12506 anaglyph red/cyan gray
12507 (red filter on left eye, cyan filter on right eye)
12508
12509 @item arch
12510 anaglyph red/cyan half colored
12511 (red filter on left eye, cyan filter on right eye)
12512
12513 @item arcc
12514 anaglyph red/cyan color
12515 (red filter on left eye, cyan filter on right eye)
12516
12517 @item arcd
12518 anaglyph red/cyan color optimized with the least squares projection of dubois
12519 (red filter on left eye, cyan filter on right eye)
12520
12521 @item agmg
12522 anaglyph green/magenta gray
12523 (green filter on left eye, magenta filter on right eye)
12524
12525 @item agmh
12526 anaglyph green/magenta half colored
12527 (green filter on left eye, magenta filter on right eye)
12528
12529 @item agmc
12530 anaglyph green/magenta colored
12531 (green filter on left eye, magenta filter on right eye)
12532
12533 @item agmd
12534 anaglyph green/magenta color optimized with the least squares projection of dubois
12535 (green filter on left eye, magenta filter on right eye)
12536
12537 @item aybg
12538 anaglyph yellow/blue gray
12539 (yellow filter on left eye, blue filter on right eye)
12540
12541 @item aybh
12542 anaglyph yellow/blue half colored
12543 (yellow filter on left eye, blue filter on right eye)
12544
12545 @item aybc
12546 anaglyph yellow/blue colored
12547 (yellow filter on left eye, blue filter on right eye)
12548
12549 @item aybd
12550 anaglyph yellow/blue color optimized with the least squares projection of dubois
12551 (yellow filter on left eye, blue filter on right eye)
12552
12553 @item ml
12554 mono output (left eye only)
12555
12556 @item mr
12557 mono output (right eye only)
12558
12559 @item chl
12560 checkerboard, left eye first
12561
12562 @item chr
12563 checkerboard, right eye first
12564
12565 @item icl
12566 interleaved columns, left eye first
12567
12568 @item icr
12569 interleaved columns, right eye first
12570
12571 @item hdmi
12572 HDMI frame pack
12573 @end table
12574
12575 Default value is @samp{arcd}.
12576 @end table
12577
12578 @subsection Examples
12579
12580 @itemize
12581 @item
12582 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12583 @example
12584 stereo3d=sbsl:aybd
12585 @end example
12586
12587 @item
12588 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12589 @example
12590 stereo3d=abl:sbsr
12591 @end example
12592 @end itemize
12593
12594 @section streamselect, astreamselect
12595 Select video or audio streams.
12596
12597 The filter accepts the following options:
12598
12599 @table @option
12600 @item inputs
12601 Set number of inputs. Default is 2.
12602
12603 @item map
12604 Set input indexes to remap to outputs.
12605 @end table
12606
12607 @subsection Commands
12608
12609 The @code{streamselect} and @code{astreamselect} filter supports the following
12610 commands:
12611
12612 @table @option
12613 @item map
12614 Set input indexes to remap to outputs.
12615 @end table
12616
12617 @subsection Examples
12618
12619 @itemize
12620 @item
12621 Select first 5 seconds 1st stream and rest of time 2nd stream:
12622 @example
12623 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12624 @end example
12625
12626 @item
12627 Same as above, but for audio:
12628 @example
12629 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12630 @end example
12631 @end itemize
12632
12633 @anchor{spp}
12634 @section spp
12635
12636 Apply a simple postprocessing filter that compresses and decompresses the image
12637 at several (or - in the case of @option{quality} level @code{6} - all) shifts
12638 and average the results.
12639
12640 The filter accepts the following options:
12641
12642 @table @option
12643 @item quality
12644 Set quality. This option defines the number of levels for averaging. It accepts
12645 an integer in the range 0-6. If set to @code{0}, the filter will have no
12646 effect. A value of @code{6} means the higher quality. For each increment of
12647 that value the speed drops by a factor of approximately 2.  Default value is
12648 @code{3}.
12649
12650 @item qp
12651 Force a constant quantization parameter. If not set, the filter will use the QP
12652 from the video stream (if available).
12653
12654 @item mode
12655 Set thresholding mode. Available modes are:
12656
12657 @table @samp
12658 @item hard
12659 Set hard thresholding (default).
12660 @item soft
12661 Set soft thresholding (better de-ringing effect, but likely blurrier).
12662 @end table
12663
12664 @item use_bframe_qp
12665 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12666 option may cause flicker since the B-Frames have often larger QP. Default is
12667 @code{0} (not enabled).
12668 @end table
12669
12670 @anchor{subtitles}
12671 @section subtitles
12672
12673 Draw subtitles on top of input video using the libass library.
12674
12675 To enable compilation of this filter you need to configure FFmpeg with
12676 @code{--enable-libass}. This filter also requires a build with libavcodec and
12677 libavformat to convert the passed subtitles file to ASS (Advanced Substation
12678 Alpha) subtitles format.
12679
12680 The filter accepts the following options:
12681
12682 @table @option
12683 @item filename, f
12684 Set the filename of the subtitle file to read. It must be specified.
12685
12686 @item original_size
12687 Specify the size of the original video, the video for which the ASS file
12688 was composed. For the syntax of this option, check the
12689 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12690 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
12691 correctly scale the fonts if the aspect ratio has been changed.
12692
12693 @item fontsdir
12694 Set a directory path containing fonts that can be used by the filter.
12695 These fonts will be used in addition to whatever the font provider uses.
12696
12697 @item charenc
12698 Set subtitles input character encoding. @code{subtitles} filter only. Only
12699 useful if not UTF-8.
12700
12701 @item stream_index, si
12702 Set subtitles stream index. @code{subtitles} filter only.
12703
12704 @item force_style
12705 Override default style or script info parameters of the subtitles. It accepts a
12706 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
12707 @end table
12708
12709 If the first key is not specified, it is assumed that the first value
12710 specifies the @option{filename}.
12711
12712 For example, to render the file @file{sub.srt} on top of the input
12713 video, use the command:
12714 @example
12715 subtitles=sub.srt
12716 @end example
12717
12718 which is equivalent to:
12719 @example
12720 subtitles=filename=sub.srt
12721 @end example
12722
12723 To render the default subtitles stream from file @file{video.mkv}, use:
12724 @example
12725 subtitles=video.mkv
12726 @end example
12727
12728 To render the second subtitles stream from that file, use:
12729 @example
12730 subtitles=video.mkv:si=1
12731 @end example
12732
12733 To make the subtitles stream from @file{sub.srt} appear in transparent green
12734 @code{DejaVu Serif}, use:
12735 @example
12736 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
12737 @end example
12738
12739 @section super2xsai
12740
12741 Scale the input by 2x and smooth using the Super2xSaI (Scale and
12742 Interpolate) pixel art scaling algorithm.
12743
12744 Useful for enlarging pixel art images without reducing sharpness.
12745
12746 @section swaprect
12747
12748 Swap two rectangular objects in video.
12749
12750 This filter accepts the following options:
12751
12752 @table @option
12753 @item w
12754 Set object width.
12755
12756 @item h
12757 Set object height.
12758
12759 @item x1
12760 Set 1st rect x coordinate.
12761
12762 @item y1
12763 Set 1st rect y coordinate.
12764
12765 @item x2
12766 Set 2nd rect x coordinate.
12767
12768 @item y2
12769 Set 2nd rect y coordinate.
12770
12771 All expressions are evaluated once for each frame.
12772 @end table
12773
12774 The all options are expressions containing the following constants:
12775
12776 @table @option
12777 @item w
12778 @item h
12779 The input width and height.
12780
12781 @item a
12782 same as @var{w} / @var{h}
12783
12784 @item sar
12785 input sample aspect ratio
12786
12787 @item dar
12788 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
12789
12790 @item n
12791 The number of the input frame, starting from 0.
12792
12793 @item t
12794 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
12795
12796 @item pos
12797 the position in the file of the input frame, NAN if unknown
12798 @end table
12799
12800 @section swapuv
12801 Swap U & V plane.
12802
12803 @section telecine
12804
12805 Apply telecine process to the video.
12806
12807 This filter accepts the following options:
12808
12809 @table @option
12810 @item first_field
12811 @table @samp
12812 @item top, t
12813 top field first
12814 @item bottom, b
12815 bottom field first
12816 The default value is @code{top}.
12817 @end table
12818
12819 @item pattern
12820 A string of numbers representing the pulldown pattern you wish to apply.
12821 The default value is @code{23}.
12822 @end table
12823
12824 @example
12825 Some typical patterns:
12826
12827 NTSC output (30i):
12828 27.5p: 32222
12829 24p: 23 (classic)
12830 24p: 2332 (preferred)
12831 20p: 33
12832 18p: 334
12833 16p: 3444
12834
12835 PAL output (25i):
12836 27.5p: 12222
12837 24p: 222222222223 ("Euro pulldown")
12838 16.67p: 33
12839 16p: 33333334
12840 @end example
12841
12842 @section thumbnail
12843 Select the most representative frame in a given sequence of consecutive frames.
12844
12845 The filter accepts the following options:
12846
12847 @table @option
12848 @item n
12849 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
12850 will pick one of them, and then handle the next batch of @var{n} frames until
12851 the end. Default is @code{100}.
12852 @end table
12853
12854 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
12855 value will result in a higher memory usage, so a high value is not recommended.
12856
12857 @subsection Examples
12858
12859 @itemize
12860 @item
12861 Extract one picture each 50 frames:
12862 @example
12863 thumbnail=50
12864 @end example
12865
12866 @item
12867 Complete example of a thumbnail creation with @command{ffmpeg}:
12868 @example
12869 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
12870 @end example
12871 @end itemize
12872
12873 @section tile
12874
12875 Tile several successive frames together.
12876
12877 The filter accepts the following options:
12878
12879 @table @option
12880
12881 @item layout
12882 Set the grid size (i.e. the number of lines and columns). For the syntax of
12883 this option, check the
12884 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12885
12886 @item nb_frames
12887 Set the maximum number of frames to render in the given area. It must be less
12888 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
12889 the area will be used.
12890
12891 @item margin
12892 Set the outer border margin in pixels.
12893
12894 @item padding
12895 Set the inner border thickness (i.e. the number of pixels between frames). For
12896 more advanced padding options (such as having different values for the edges),
12897 refer to the pad video filter.
12898
12899 @item color
12900 Specify the color of the unused area. For the syntax of this option, check the
12901 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
12902 is "black".
12903 @end table
12904
12905 @subsection Examples
12906
12907 @itemize
12908 @item
12909 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
12910 @example
12911 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
12912 @end example
12913 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
12914 duplicating each output frame to accommodate the originally detected frame
12915 rate.
12916
12917 @item
12918 Display @code{5} pictures in an area of @code{3x2} frames,
12919 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
12920 mixed flat and named options:
12921 @example
12922 tile=3x2:nb_frames=5:padding=7:margin=2
12923 @end example
12924 @end itemize
12925
12926 @section tinterlace
12927
12928 Perform various types of temporal field interlacing.
12929
12930 Frames are counted starting from 1, so the first input frame is
12931 considered odd.
12932
12933 The filter accepts the following options:
12934
12935 @table @option
12936
12937 @item mode
12938 Specify the mode of the interlacing. This option can also be specified
12939 as a value alone. See below for a list of values for this option.
12940
12941 Available values are:
12942
12943 @table @samp
12944 @item merge, 0
12945 Move odd frames into the upper field, even into the lower field,
12946 generating a double height frame at half frame rate.
12947 @example
12948  ------> time
12949 Input:
12950 Frame 1         Frame 2         Frame 3         Frame 4
12951
12952 11111           22222           33333           44444
12953 11111           22222           33333           44444
12954 11111           22222           33333           44444
12955 11111           22222           33333           44444
12956
12957 Output:
12958 11111                           33333
12959 22222                           44444
12960 11111                           33333
12961 22222                           44444
12962 11111                           33333
12963 22222                           44444
12964 11111                           33333
12965 22222                           44444
12966 @end example
12967
12968 @item drop_even, 1
12969 Only output odd frames, even frames are dropped, generating a frame with
12970 unchanged height at half frame rate.
12971
12972 @example
12973  ------> time
12974 Input:
12975 Frame 1         Frame 2         Frame 3         Frame 4
12976
12977 11111           22222           33333           44444
12978 11111           22222           33333           44444
12979 11111           22222           33333           44444
12980 11111           22222           33333           44444
12981
12982 Output:
12983 11111                           33333
12984 11111                           33333
12985 11111                           33333
12986 11111                           33333
12987 @end example
12988
12989 @item drop_odd, 2
12990 Only output even frames, odd frames are dropped, generating a frame with
12991 unchanged height at half frame rate.
12992
12993 @example
12994  ------> time
12995 Input:
12996 Frame 1         Frame 2         Frame 3         Frame 4
12997
12998 11111           22222           33333           44444
12999 11111           22222           33333           44444
13000 11111           22222           33333           44444
13001 11111           22222           33333           44444
13002
13003 Output:
13004                 22222                           44444
13005                 22222                           44444
13006                 22222                           44444
13007                 22222                           44444
13008 @end example
13009
13010 @item pad, 3
13011 Expand each frame to full height, but pad alternate lines with black,
13012 generating a frame with double height at the same input frame rate.
13013
13014 @example
13015  ------> time
13016 Input:
13017 Frame 1         Frame 2         Frame 3         Frame 4
13018
13019 11111           22222           33333           44444
13020 11111           22222           33333           44444
13021 11111           22222           33333           44444
13022 11111           22222           33333           44444
13023
13024 Output:
13025 11111           .....           33333           .....
13026 .....           22222           .....           44444
13027 11111           .....           33333           .....
13028 .....           22222           .....           44444
13029 11111           .....           33333           .....
13030 .....           22222           .....           44444
13031 11111           .....           33333           .....
13032 .....           22222           .....           44444
13033 @end example
13034
13035
13036 @item interleave_top, 4
13037 Interleave the upper field from odd frames with the lower field from
13038 even frames, generating a frame with unchanged height at half frame rate.
13039
13040 @example
13041  ------> time
13042 Input:
13043 Frame 1         Frame 2         Frame 3         Frame 4
13044
13045 11111<-         22222           33333<-         44444
13046 11111           22222<-         33333           44444<-
13047 11111<-         22222           33333<-         44444
13048 11111           22222<-         33333           44444<-
13049
13050 Output:
13051 11111                           33333
13052 22222                           44444
13053 11111                           33333
13054 22222                           44444
13055 @end example
13056
13057
13058 @item interleave_bottom, 5
13059 Interleave the lower field from odd frames with the upper field from
13060 even frames, generating a frame with unchanged height at half frame rate.
13061
13062 @example
13063  ------> time
13064 Input:
13065 Frame 1         Frame 2         Frame 3         Frame 4
13066
13067 11111           22222<-         33333           44444<-
13068 11111<-         22222           33333<-         44444
13069 11111           22222<-         33333           44444<-
13070 11111<-         22222           33333<-         44444
13071
13072 Output:
13073 22222                           44444
13074 11111                           33333
13075 22222                           44444
13076 11111                           33333
13077 @end example
13078
13079
13080 @item interlacex2, 6
13081 Double frame rate with unchanged height. Frames are inserted each
13082 containing the second temporal field from the previous input frame and
13083 the first temporal field from the next input frame. This mode relies on
13084 the top_field_first flag. Useful for interlaced video displays with no
13085 field synchronisation.
13086
13087 @example
13088  ------> time
13089 Input:
13090 Frame 1         Frame 2         Frame 3         Frame 4
13091
13092 11111           22222           33333           44444
13093  11111           22222           33333           44444
13094 11111           22222           33333           44444
13095  11111           22222           33333           44444
13096
13097 Output:
13098 11111   22222   22222   33333   33333   44444   44444
13099  11111   11111   22222   22222   33333   33333   44444
13100 11111   22222   22222   33333   33333   44444   44444
13101  11111   11111   22222   22222   33333   33333   44444
13102 @end example
13103
13104
13105 @item mergex2, 7
13106 Move odd frames into the upper field, even into the lower field,
13107 generating a double height frame at same frame rate.
13108
13109 @example
13110  ------> time
13111 Input:
13112 Frame 1         Frame 2         Frame 3         Frame 4
13113
13114 11111           22222           33333           44444
13115 11111           22222           33333           44444
13116 11111           22222           33333           44444
13117 11111           22222           33333           44444
13118
13119 Output:
13120 11111           33333           33333           55555
13121 22222           22222           44444           44444
13122 11111           33333           33333           55555
13123 22222           22222           44444           44444
13124 11111           33333           33333           55555
13125 22222           22222           44444           44444
13126 11111           33333           33333           55555
13127 22222           22222           44444           44444
13128 @end example
13129
13130 @end table
13131
13132 Numeric values are deprecated but are accepted for backward
13133 compatibility reasons.
13134
13135 Default mode is @code{merge}.
13136
13137 @item flags
13138 Specify flags influencing the filter process.
13139
13140 Available value for @var{flags} is:
13141
13142 @table @option
13143 @item low_pass_filter, vlfp
13144 Enable vertical low-pass filtering in the filter.
13145 Vertical low-pass filtering is required when creating an interlaced
13146 destination from a progressive source which contains high-frequency
13147 vertical detail. Filtering will reduce interlace 'twitter' and Moire
13148 patterning.
13149
13150 Vertical low-pass filtering can only be enabled for @option{mode}
13151 @var{interleave_top} and @var{interleave_bottom}.
13152
13153 @end table
13154 @end table
13155
13156 @section transpose
13157
13158 Transpose rows with columns in the input video and optionally flip it.
13159
13160 It accepts the following parameters:
13161
13162 @table @option
13163
13164 @item dir
13165 Specify the transposition direction.
13166
13167 Can assume the following values:
13168 @table @samp
13169 @item 0, 4, cclock_flip
13170 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
13171 @example
13172 L.R     L.l
13173 . . ->  . .
13174 l.r     R.r
13175 @end example
13176
13177 @item 1, 5, clock
13178 Rotate by 90 degrees clockwise, that is:
13179 @example
13180 L.R     l.L
13181 . . ->  . .
13182 l.r     r.R
13183 @end example
13184
13185 @item 2, 6, cclock
13186 Rotate by 90 degrees counterclockwise, that is:
13187 @example
13188 L.R     R.r
13189 . . ->  . .
13190 l.r     L.l
13191 @end example
13192
13193 @item 3, 7, clock_flip
13194 Rotate by 90 degrees clockwise and vertically flip, that is:
13195 @example
13196 L.R     r.R
13197 . . ->  . .
13198 l.r     l.L
13199 @end example
13200 @end table
13201
13202 For values between 4-7, the transposition is only done if the input
13203 video geometry is portrait and not landscape. These values are
13204 deprecated, the @code{passthrough} option should be used instead.
13205
13206 Numerical values are deprecated, and should be dropped in favor of
13207 symbolic constants.
13208
13209 @item passthrough
13210 Do not apply the transposition if the input geometry matches the one
13211 specified by the specified value. It accepts the following values:
13212 @table @samp
13213 @item none
13214 Always apply transposition.
13215 @item portrait
13216 Preserve portrait geometry (when @var{height} >= @var{width}).
13217 @item landscape
13218 Preserve landscape geometry (when @var{width} >= @var{height}).
13219 @end table
13220
13221 Default value is @code{none}.
13222 @end table
13223
13224 For example to rotate by 90 degrees clockwise and preserve portrait
13225 layout:
13226 @example
13227 transpose=dir=1:passthrough=portrait
13228 @end example
13229
13230 The command above can also be specified as:
13231 @example
13232 transpose=1:portrait
13233 @end example
13234
13235 @section trim
13236 Trim the input so that the output contains one continuous subpart of the input.
13237
13238 It accepts the following parameters:
13239 @table @option
13240 @item start
13241 Specify the time of the start of the kept section, i.e. the frame with the
13242 timestamp @var{start} will be the first frame in the output.
13243
13244 @item end
13245 Specify the time of the first frame that will be dropped, i.e. the frame
13246 immediately preceding the one with the timestamp @var{end} will be the last
13247 frame in the output.
13248
13249 @item start_pts
13250 This is the same as @var{start}, except this option sets the start timestamp
13251 in timebase units instead of seconds.
13252
13253 @item end_pts
13254 This is the same as @var{end}, except this option sets the end timestamp
13255 in timebase units instead of seconds.
13256
13257 @item duration
13258 The maximum duration of the output in seconds.
13259
13260 @item start_frame
13261 The number of the first frame that should be passed to the output.
13262
13263 @item end_frame
13264 The number of the first frame that should be dropped.
13265 @end table
13266
13267 @option{start}, @option{end}, and @option{duration} are expressed as time
13268 duration specifications; see
13269 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13270 for the accepted syntax.
13271
13272 Note that the first two sets of the start/end options and the @option{duration}
13273 option look at the frame timestamp, while the _frame variants simply count the
13274 frames that pass through the filter. Also note that this filter does not modify
13275 the timestamps. If you wish for the output timestamps to start at zero, insert a
13276 setpts filter after the trim filter.
13277
13278 If multiple start or end options are set, this filter tries to be greedy and
13279 keep all the frames that match at least one of the specified constraints. To keep
13280 only the part that matches all the constraints at once, chain multiple trim
13281 filters.
13282
13283 The defaults are such that all the input is kept. So it is possible to set e.g.
13284 just the end values to keep everything before the specified time.
13285
13286 Examples:
13287 @itemize
13288 @item
13289 Drop everything except the second minute of input:
13290 @example
13291 ffmpeg -i INPUT -vf trim=60:120
13292 @end example
13293
13294 @item
13295 Keep only the first second:
13296 @example
13297 ffmpeg -i INPUT -vf trim=duration=1
13298 @end example
13299
13300 @end itemize
13301
13302
13303 @anchor{unsharp}
13304 @section unsharp
13305
13306 Sharpen or blur the input video.
13307
13308 It accepts the following parameters:
13309
13310 @table @option
13311 @item luma_msize_x, lx
13312 Set the luma matrix horizontal size. It must be an odd integer between
13313 3 and 63. The default value is 5.
13314
13315 @item luma_msize_y, ly
13316 Set the luma matrix vertical size. It must be an odd integer between 3
13317 and 63. The default value is 5.
13318
13319 @item luma_amount, la
13320 Set the luma effect strength. It must be a floating point number, reasonable
13321 values lay between -1.5 and 1.5.
13322
13323 Negative values will blur the input video, while positive values will
13324 sharpen it, a value of zero will disable the effect.
13325
13326 Default value is 1.0.
13327
13328 @item chroma_msize_x, cx
13329 Set the chroma matrix horizontal size. It must be an odd integer
13330 between 3 and 63. The default value is 5.
13331
13332 @item chroma_msize_y, cy
13333 Set the chroma matrix vertical size. It must be an odd integer
13334 between 3 and 63. The default value is 5.
13335
13336 @item chroma_amount, ca
13337 Set the chroma effect strength. It must be a floating point number, reasonable
13338 values lay between -1.5 and 1.5.
13339
13340 Negative values will blur the input video, while positive values will
13341 sharpen it, a value of zero will disable the effect.
13342
13343 Default value is 0.0.
13344
13345 @item opencl
13346 If set to 1, specify using OpenCL capabilities, only available if
13347 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
13348
13349 @end table
13350
13351 All parameters are optional and default to the equivalent of the
13352 string '5:5:1.0:5:5:0.0'.
13353
13354 @subsection Examples
13355
13356 @itemize
13357 @item
13358 Apply strong luma sharpen effect:
13359 @example
13360 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13361 @end example
13362
13363 @item
13364 Apply a strong blur of both luma and chroma parameters:
13365 @example
13366 unsharp=7:7:-2:7:7:-2
13367 @end example
13368 @end itemize
13369
13370 @section uspp
13371
13372 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13373 the image at several (or - in the case of @option{quality} level @code{8} - all)
13374 shifts and average the results.
13375
13376 The way this differs from the behavior of spp is that uspp actually encodes &
13377 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13378 DCT similar to MJPEG.
13379
13380 The filter accepts the following options:
13381
13382 @table @option
13383 @item quality
13384 Set quality. This option defines the number of levels for averaging. It accepts
13385 an integer in the range 0-8. If set to @code{0}, the filter will have no
13386 effect. A value of @code{8} means the higher quality. For each increment of
13387 that value the speed drops by a factor of approximately 2.  Default value is
13388 @code{3}.
13389
13390 @item qp
13391 Force a constant quantization parameter. If not set, the filter will use the QP
13392 from the video stream (if available).
13393 @end table
13394
13395 @section vaguedenoiser
13396
13397 Apply a wavelet based denoiser.
13398
13399 It transforms each frame from the video input into the wavelet domain,
13400 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
13401 the obtained coefficients. It does an inverse wavelet transform after.
13402 Due to wavelet properties, it should give a nice smoothed result, and
13403 reduced noise, without blurring picture features.
13404
13405 This filter accepts the following options:
13406
13407 @table @option
13408 @item threshold
13409 The filtering strength. The higher, the more filtered the video will be.
13410 Hard thresholding can use a higher threshold than soft thresholding
13411 before the video looks overfiltered.
13412
13413 @item method
13414 The filtering method the filter will use.
13415
13416 It accepts the following values:
13417 @table @samp
13418 @item hard
13419 All values under the threshold will be zeroed.
13420
13421 @item soft
13422 All values under the threshold will be zeroed. All values above will be
13423 reduced by the threshold.
13424
13425 @item garrote
13426 Scales or nullifies coefficients - intermediary between (more) soft and
13427 (less) hard thresholding.
13428 @end table
13429
13430 @item nsteps
13431 Number of times, the wavelet will decompose the picture. Picture can't
13432 be decomposed beyond a particular point (typically, 8 for a 640x480
13433 frame - as 2^9 = 512 > 480)
13434
13435 @item percent
13436 Partial of full denoising (limited coefficients shrinking), from 0 to 100.
13437
13438 @item planes
13439 A list of the planes to process. By default all planes are processed.
13440 @end table
13441
13442 @section vectorscope
13443
13444 Display 2 color component values in the two dimensional graph (which is called
13445 a vectorscope).
13446
13447 This filter accepts the following options:
13448
13449 @table @option
13450 @item mode, m
13451 Set vectorscope mode.
13452
13453 It accepts the following values:
13454 @table @samp
13455 @item gray
13456 Gray values are displayed on graph, higher brightness means more pixels have
13457 same component color value on location in graph. This is the default mode.
13458
13459 @item color
13460 Gray values are displayed on graph. Surrounding pixels values which are not
13461 present in video frame are drawn in gradient of 2 color components which are
13462 set by option @code{x} and @code{y}. The 3rd color component is static.
13463
13464 @item color2
13465 Actual color components values present in video frame are displayed on graph.
13466
13467 @item color3
13468 Similar as color2 but higher frequency of same values @code{x} and @code{y}
13469 on graph increases value of another color component, which is luminance by
13470 default values of @code{x} and @code{y}.
13471
13472 @item color4
13473 Actual colors present in video frame are displayed on graph. If two different
13474 colors map to same position on graph then color with higher value of component
13475 not present in graph is picked.
13476
13477 @item color5
13478 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
13479 component picked from radial gradient.
13480 @end table
13481
13482 @item x
13483 Set which color component will be represented on X-axis. Default is @code{1}.
13484
13485 @item y
13486 Set which color component will be represented on Y-axis. Default is @code{2}.
13487
13488 @item intensity, i
13489 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
13490 of color component which represents frequency of (X, Y) location in graph.
13491
13492 @item envelope, e
13493 @table @samp
13494 @item none
13495 No envelope, this is default.
13496
13497 @item instant
13498 Instant envelope, even darkest single pixel will be clearly highlighted.
13499
13500 @item peak
13501 Hold maximum and minimum values presented in graph over time. This way you
13502 can still spot out of range values without constantly looking at vectorscope.
13503
13504 @item peak+instant
13505 Peak and instant envelope combined together.
13506 @end table
13507
13508 @item graticule, g
13509 Set what kind of graticule to draw.
13510 @table @samp
13511 @item none
13512 @item green
13513 @item color
13514 @end table
13515
13516 @item opacity, o
13517 Set graticule opacity.
13518
13519 @item flags, f
13520 Set graticule flags.
13521
13522 @table @samp
13523 @item white
13524 Draw graticule for white point.
13525
13526 @item black
13527 Draw graticule for black point.
13528
13529 @item name
13530 Draw color points short names.
13531 @end table
13532
13533 @item bgopacity, b
13534 Set background opacity.
13535
13536 @item lthreshold, l
13537 Set low threshold for color component not represented on X or Y axis.
13538 Values lower than this value will be ignored. Default is 0.
13539 Note this value is multiplied with actual max possible value one pixel component
13540 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13541 is 0.1 * 255 = 25.
13542
13543 @item hthreshold, h
13544 Set high threshold for color component not represented on X or Y axis.
13545 Values higher than this value will be ignored. Default is 1.
13546 Note this value is multiplied with actual max possible value one pixel component
13547 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13548 is 0.9 * 255 = 230.
13549
13550 @item colorspace, c
13551 Set what kind of colorspace to use when drawing graticule.
13552 @table @samp
13553 @item auto
13554 @item 601
13555 @item 709
13556 @end table
13557 Default is auto.
13558 @end table
13559
13560 @anchor{vidstabdetect}
13561 @section vidstabdetect
13562
13563 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
13564 @ref{vidstabtransform} for pass 2.
13565
13566 This filter generates a file with relative translation and rotation
13567 transform information about subsequent frames, which is then used by
13568 the @ref{vidstabtransform} filter.
13569
13570 To enable compilation of this filter you need to configure FFmpeg with
13571 @code{--enable-libvidstab}.
13572
13573 This filter accepts the following options:
13574
13575 @table @option
13576 @item result
13577 Set the path to the file used to write the transforms information.
13578 Default value is @file{transforms.trf}.
13579
13580 @item shakiness
13581 Set how shaky the video is and how quick the camera is. It accepts an
13582 integer in the range 1-10, a value of 1 means little shakiness, a
13583 value of 10 means strong shakiness. Default value is 5.
13584
13585 @item accuracy
13586 Set the accuracy of the detection process. It must be a value in the
13587 range 1-15. A value of 1 means low accuracy, a value of 15 means high
13588 accuracy. Default value is 15.
13589
13590 @item stepsize
13591 Set stepsize of the search process. The region around minimum is
13592 scanned with 1 pixel resolution. Default value is 6.
13593
13594 @item mincontrast
13595 Set minimum contrast. Below this value a local measurement field is
13596 discarded. Must be a floating point value in the range 0-1. Default
13597 value is 0.3.
13598
13599 @item tripod
13600 Set reference frame number for tripod mode.
13601
13602 If enabled, the motion of the frames is compared to a reference frame
13603 in the filtered stream, identified by the specified number. The idea
13604 is to compensate all movements in a more-or-less static scene and keep
13605 the camera view absolutely still.
13606
13607 If set to 0, it is disabled. The frames are counted starting from 1.
13608
13609 @item show
13610 Show fields and transforms in the resulting frames. It accepts an
13611 integer in the range 0-2. Default value is 0, which disables any
13612 visualization.
13613 @end table
13614
13615 @subsection Examples
13616
13617 @itemize
13618 @item
13619 Use default values:
13620 @example
13621 vidstabdetect
13622 @end example
13623
13624 @item
13625 Analyze strongly shaky movie and put the results in file
13626 @file{mytransforms.trf}:
13627 @example
13628 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
13629 @end example
13630
13631 @item
13632 Visualize the result of internal transformations in the resulting
13633 video:
13634 @example
13635 vidstabdetect=show=1
13636 @end example
13637
13638 @item
13639 Analyze a video with medium shakiness using @command{ffmpeg}:
13640 @example
13641 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
13642 @end example
13643 @end itemize
13644
13645 @anchor{vidstabtransform}
13646 @section vidstabtransform
13647
13648 Video stabilization/deshaking: pass 2 of 2,
13649 see @ref{vidstabdetect} for pass 1.
13650
13651 Read a file with transform information for each frame and
13652 apply/compensate them. Together with the @ref{vidstabdetect}
13653 filter this can be used to deshake videos. See also
13654 @url{http://public.hronopik.de/vid.stab}. It is important to also use
13655 the @ref{unsharp} filter, see below.
13656
13657 To enable compilation of this filter you need to configure FFmpeg with
13658 @code{--enable-libvidstab}.
13659
13660 @subsection Options
13661
13662 @table @option
13663 @item input
13664 Set path to the file used to read the transforms. Default value is
13665 @file{transforms.trf}.
13666
13667 @item smoothing
13668 Set the number of frames (value*2 + 1) used for lowpass filtering the
13669 camera movements. Default value is 10.
13670
13671 For example a number of 10 means that 21 frames are used (10 in the
13672 past and 10 in the future) to smoothen the motion in the video. A
13673 larger value leads to a smoother video, but limits the acceleration of
13674 the camera (pan/tilt movements). 0 is a special case where a static
13675 camera is simulated.
13676
13677 @item optalgo
13678 Set the camera path optimization algorithm.
13679
13680 Accepted values are:
13681 @table @samp
13682 @item gauss
13683 gaussian kernel low-pass filter on camera motion (default)
13684 @item avg
13685 averaging on transformations
13686 @end table
13687
13688 @item maxshift
13689 Set maximal number of pixels to translate frames. Default value is -1,
13690 meaning no limit.
13691
13692 @item maxangle
13693 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
13694 value is -1, meaning no limit.
13695
13696 @item crop
13697 Specify how to deal with borders that may be visible due to movement
13698 compensation.
13699
13700 Available values are:
13701 @table @samp
13702 @item keep
13703 keep image information from previous frame (default)
13704 @item black
13705 fill the border black
13706 @end table
13707
13708 @item invert
13709 Invert transforms if set to 1. Default value is 0.
13710
13711 @item relative
13712 Consider transforms as relative to previous frame if set to 1,
13713 absolute if set to 0. Default value is 0.
13714
13715 @item zoom
13716 Set percentage to zoom. A positive value will result in a zoom-in
13717 effect, a negative value in a zoom-out effect. Default value is 0 (no
13718 zoom).
13719
13720 @item optzoom
13721 Set optimal zooming to avoid borders.
13722
13723 Accepted values are:
13724 @table @samp
13725 @item 0
13726 disabled
13727 @item 1
13728 optimal static zoom value is determined (only very strong movements
13729 will lead to visible borders) (default)
13730 @item 2
13731 optimal adaptive zoom value is determined (no borders will be
13732 visible), see @option{zoomspeed}
13733 @end table
13734
13735 Note that the value given at zoom is added to the one calculated here.
13736
13737 @item zoomspeed
13738 Set percent to zoom maximally each frame (enabled when
13739 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
13740 0.25.
13741
13742 @item interpol
13743 Specify type of interpolation.
13744
13745 Available values are:
13746 @table @samp
13747 @item no
13748 no interpolation
13749 @item linear
13750 linear only horizontal
13751 @item bilinear
13752 linear in both directions (default)
13753 @item bicubic
13754 cubic in both directions (slow)
13755 @end table
13756
13757 @item tripod
13758 Enable virtual tripod mode if set to 1, which is equivalent to
13759 @code{relative=0:smoothing=0}. Default value is 0.
13760
13761 Use also @code{tripod} option of @ref{vidstabdetect}.
13762
13763 @item debug
13764 Increase log verbosity if set to 1. Also the detected global motions
13765 are written to the temporary file @file{global_motions.trf}. Default
13766 value is 0.
13767 @end table
13768
13769 @subsection Examples
13770
13771 @itemize
13772 @item
13773 Use @command{ffmpeg} for a typical stabilization with default values:
13774 @example
13775 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
13776 @end example
13777
13778 Note the use of the @ref{unsharp} filter which is always recommended.
13779
13780 @item
13781 Zoom in a bit more and load transform data from a given file:
13782 @example
13783 vidstabtransform=zoom=5:input="mytransforms.trf"
13784 @end example
13785
13786 @item
13787 Smoothen the video even more:
13788 @example
13789 vidstabtransform=smoothing=30
13790 @end example
13791 @end itemize
13792
13793 @section vflip
13794
13795 Flip the input video vertically.
13796
13797 For example, to vertically flip a video with @command{ffmpeg}:
13798 @example
13799 ffmpeg -i in.avi -vf "vflip" out.avi
13800 @end example
13801
13802 @anchor{vignette}
13803 @section vignette
13804
13805 Make or reverse a natural vignetting effect.
13806
13807 The filter accepts the following options:
13808
13809 @table @option
13810 @item angle, a
13811 Set lens angle expression as a number of radians.
13812
13813 The value is clipped in the @code{[0,PI/2]} range.
13814
13815 Default value: @code{"PI/5"}
13816
13817 @item x0
13818 @item y0
13819 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
13820 by default.
13821
13822 @item mode
13823 Set forward/backward mode.
13824
13825 Available modes are:
13826 @table @samp
13827 @item forward
13828 The larger the distance from the central point, the darker the image becomes.
13829
13830 @item backward
13831 The larger the distance from the central point, the brighter the image becomes.
13832 This can be used to reverse a vignette effect, though there is no automatic
13833 detection to extract the lens @option{angle} and other settings (yet). It can
13834 also be used to create a burning effect.
13835 @end table
13836
13837 Default value is @samp{forward}.
13838
13839 @item eval
13840 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
13841
13842 It accepts the following values:
13843 @table @samp
13844 @item init
13845 Evaluate expressions only once during the filter initialization.
13846
13847 @item frame
13848 Evaluate expressions for each incoming frame. This is way slower than the
13849 @samp{init} mode since it requires all the scalers to be re-computed, but it
13850 allows advanced dynamic expressions.
13851 @end table
13852
13853 Default value is @samp{init}.
13854
13855 @item dither
13856 Set dithering to reduce the circular banding effects. Default is @code{1}
13857 (enabled).
13858
13859 @item aspect
13860 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
13861 Setting this value to the SAR of the input will make a rectangular vignetting
13862 following the dimensions of the video.
13863
13864 Default is @code{1/1}.
13865 @end table
13866
13867 @subsection Expressions
13868
13869 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
13870 following parameters.
13871
13872 @table @option
13873 @item w
13874 @item h
13875 input width and height
13876
13877 @item n
13878 the number of input frame, starting from 0
13879
13880 @item pts
13881 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
13882 @var{TB} units, NAN if undefined
13883
13884 @item r
13885 frame rate of the input video, NAN if the input frame rate is unknown
13886
13887 @item t
13888 the PTS (Presentation TimeStamp) of the filtered video frame,
13889 expressed in seconds, NAN if undefined
13890
13891 @item tb
13892 time base of the input video
13893 @end table
13894
13895
13896 @subsection Examples
13897
13898 @itemize
13899 @item
13900 Apply simple strong vignetting effect:
13901 @example
13902 vignette=PI/4
13903 @end example
13904
13905 @item
13906 Make a flickering vignetting:
13907 @example
13908 vignette='PI/4+random(1)*PI/50':eval=frame
13909 @end example
13910
13911 @end itemize
13912
13913 @section vstack
13914 Stack input videos vertically.
13915
13916 All streams must be of same pixel format and of same width.
13917
13918 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13919 to create same output.
13920
13921 The filter accept the following option:
13922
13923 @table @option
13924 @item inputs
13925 Set number of input streams. Default is 2.
13926
13927 @item shortest
13928 If set to 1, force the output to terminate when the shortest input
13929 terminates. Default value is 0.
13930 @end table
13931
13932 @section w3fdif
13933
13934 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
13935 Deinterlacing Filter").
13936
13937 Based on the process described by Martin Weston for BBC R&D, and
13938 implemented based on the de-interlace algorithm written by Jim
13939 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
13940 uses filter coefficients calculated by BBC R&D.
13941
13942 There are two sets of filter coefficients, so called "simple":
13943 and "complex". Which set of filter coefficients is used can
13944 be set by passing an optional parameter:
13945
13946 @table @option
13947 @item filter
13948 Set the interlacing filter coefficients. Accepts one of the following values:
13949
13950 @table @samp
13951 @item simple
13952 Simple filter coefficient set.
13953 @item complex
13954 More-complex filter coefficient set.
13955 @end table
13956 Default value is @samp{complex}.
13957
13958 @item deint
13959 Specify which frames to deinterlace. Accept one of the following values:
13960
13961 @table @samp
13962 @item all
13963 Deinterlace all frames,
13964 @item interlaced
13965 Only deinterlace frames marked as interlaced.
13966 @end table
13967
13968 Default value is @samp{all}.
13969 @end table
13970
13971 @section waveform
13972 Video waveform monitor.
13973
13974 The waveform monitor plots color component intensity. By default luminance
13975 only. Each column of the waveform corresponds to a column of pixels in the
13976 source video.
13977
13978 It accepts the following options:
13979
13980 @table @option
13981 @item mode, m
13982 Can be either @code{row}, or @code{column}. Default is @code{column}.
13983 In row mode, the graph on the left side represents color component value 0 and
13984 the right side represents value = 255. In column mode, the top side represents
13985 color component value = 0 and bottom side represents value = 255.
13986
13987 @item intensity, i
13988 Set intensity. Smaller values are useful to find out how many values of the same
13989 luminance are distributed across input rows/columns.
13990 Default value is @code{0.04}. Allowed range is [0, 1].
13991
13992 @item mirror, r
13993 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
13994 In mirrored mode, higher values will be represented on the left
13995 side for @code{row} mode and at the top for @code{column} mode. Default is
13996 @code{1} (mirrored).
13997
13998 @item display, d
13999 Set display mode.
14000 It accepts the following values:
14001 @table @samp
14002 @item overlay
14003 Presents information identical to that in the @code{parade}, except
14004 that the graphs representing color components are superimposed directly
14005 over one another.
14006
14007 This display mode makes it easier to spot relative differences or similarities
14008 in overlapping areas of the color components that are supposed to be identical,
14009 such as neutral whites, grays, or blacks.
14010
14011 @item stack
14012 Display separate graph for the color components side by side in
14013 @code{row} mode or one below the other in @code{column} mode.
14014
14015 @item parade
14016 Display separate graph for the color components side by side in
14017 @code{column} mode or one below the other in @code{row} mode.
14018
14019 Using this display mode makes it easy to spot color casts in the highlights
14020 and shadows of an image, by comparing the contours of the top and the bottom
14021 graphs of each waveform. Since whites, grays, and blacks are characterized
14022 by exactly equal amounts of red, green, and blue, neutral areas of the picture
14023 should display three waveforms of roughly equal width/height. If not, the
14024 correction is easy to perform by making level adjustments the three waveforms.
14025 @end table
14026 Default is @code{stack}.
14027
14028 @item components, c
14029 Set which color components to display. Default is 1, which means only luminance
14030 or red color component if input is in RGB colorspace. If is set for example to
14031 7 it will display all 3 (if) available color components.
14032
14033 @item envelope, e
14034 @table @samp
14035 @item none
14036 No envelope, this is default.
14037
14038 @item instant
14039 Instant envelope, minimum and maximum values presented in graph will be easily
14040 visible even with small @code{step} value.
14041
14042 @item peak
14043 Hold minimum and maximum values presented in graph across time. This way you
14044 can still spot out of range values without constantly looking at waveforms.
14045
14046 @item peak+instant
14047 Peak and instant envelope combined together.
14048 @end table
14049
14050 @item filter, f
14051 @table @samp
14052 @item lowpass
14053 No filtering, this is default.
14054
14055 @item flat
14056 Luma and chroma combined together.
14057
14058 @item aflat
14059 Similar as above, but shows difference between blue and red chroma.
14060
14061 @item chroma
14062 Displays only chroma.
14063
14064 @item color
14065 Displays actual color value on waveform.
14066
14067 @item acolor
14068 Similar as above, but with luma showing frequency of chroma values.
14069 @end table
14070
14071 @item graticule, g
14072 Set which graticule to display.
14073
14074 @table @samp
14075 @item none
14076 Do not display graticule.
14077
14078 @item green
14079 Display green graticule showing legal broadcast ranges.
14080 @end table
14081
14082 @item opacity, o
14083 Set graticule opacity.
14084
14085 @item flags, fl
14086 Set graticule flags.
14087
14088 @table @samp
14089 @item numbers
14090 Draw numbers above lines. By default enabled.
14091
14092 @item dots
14093 Draw dots instead of lines.
14094 @end table
14095
14096 @item scale, s
14097 Set scale used for displaying graticule.
14098
14099 @table @samp
14100 @item digital
14101 @item millivolts
14102 @item ire
14103 @end table
14104 Default is digital.
14105 @end table
14106
14107 @section weave
14108
14109 The @code{weave} takes a field-based video input and join
14110 each two sequential fields into single frame, producing a new double
14111 height clip with half the frame rate and half the frame count.
14112
14113 It accepts the following option:
14114
14115 @table @option
14116 @item first_field
14117 Set first field. Available values are:
14118
14119 @table @samp
14120 @item top, t
14121 Set the frame as top-field-first.
14122
14123 @item bottom, b
14124 Set the frame as bottom-field-first.
14125 @end table
14126 @end table
14127
14128 @section xbr
14129 Apply the xBR high-quality magnification filter which is designed for pixel
14130 art. It follows a set of edge-detection rules, see
14131 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
14132
14133 It accepts the following option:
14134
14135 @table @option
14136 @item n
14137 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
14138 @code{3xBR} and @code{4} for @code{4xBR}.
14139 Default is @code{3}.
14140 @end table
14141
14142 @anchor{yadif}
14143 @section yadif
14144
14145 Deinterlace the input video ("yadif" means "yet another deinterlacing
14146 filter").
14147
14148 It accepts the following parameters:
14149
14150
14151 @table @option
14152
14153 @item mode
14154 The interlacing mode to adopt. It accepts one of the following values:
14155
14156 @table @option
14157 @item 0, send_frame
14158 Output one frame for each frame.
14159 @item 1, send_field
14160 Output one frame for each field.
14161 @item 2, send_frame_nospatial
14162 Like @code{send_frame}, but it skips the spatial interlacing check.
14163 @item 3, send_field_nospatial
14164 Like @code{send_field}, but it skips the spatial interlacing check.
14165 @end table
14166
14167 The default value is @code{send_frame}.
14168
14169 @item parity
14170 The picture field parity assumed for the input interlaced video. It accepts one
14171 of the following values:
14172
14173 @table @option
14174 @item 0, tff
14175 Assume the top field is first.
14176 @item 1, bff
14177 Assume the bottom field is first.
14178 @item -1, auto
14179 Enable automatic detection of field parity.
14180 @end table
14181
14182 The default value is @code{auto}.
14183 If the interlacing is unknown or the decoder does not export this information,
14184 top field first will be assumed.
14185
14186 @item deint
14187 Specify which frames to deinterlace. Accept one of the following
14188 values:
14189
14190 @table @option
14191 @item 0, all
14192 Deinterlace all frames.
14193 @item 1, interlaced
14194 Only deinterlace frames marked as interlaced.
14195 @end table
14196
14197 The default value is @code{all}.
14198 @end table
14199
14200 @section zoompan
14201
14202 Apply Zoom & Pan effect.
14203
14204 This filter accepts the following options:
14205
14206 @table @option
14207 @item zoom, z
14208 Set the zoom expression. Default is 1.
14209
14210 @item x
14211 @item y
14212 Set the x and y expression. Default is 0.
14213
14214 @item d
14215 Set the duration expression in number of frames.
14216 This sets for how many number of frames effect will last for
14217 single input image.
14218
14219 @item s
14220 Set the output image size, default is 'hd720'.
14221
14222 @item fps
14223 Set the output frame rate, default is '25'.
14224 @end table
14225
14226 Each expression can contain the following constants:
14227
14228 @table @option
14229 @item in_w, iw
14230 Input width.
14231
14232 @item in_h, ih
14233 Input height.
14234
14235 @item out_w, ow
14236 Output width.
14237
14238 @item out_h, oh
14239 Output height.
14240
14241 @item in
14242 Input frame count.
14243
14244 @item on
14245 Output frame count.
14246
14247 @item x
14248 @item y
14249 Last calculated 'x' and 'y' position from 'x' and 'y' expression
14250 for current input frame.
14251
14252 @item px
14253 @item py
14254 'x' and 'y' of last output frame of previous input frame or 0 when there was
14255 not yet such frame (first input frame).
14256
14257 @item zoom
14258 Last calculated zoom from 'z' expression for current input frame.
14259
14260 @item pzoom
14261 Last calculated zoom of last output frame of previous input frame.
14262
14263 @item duration
14264 Number of output frames for current input frame. Calculated from 'd' expression
14265 for each input frame.
14266
14267 @item pduration
14268 number of output frames created for previous input frame
14269
14270 @item a
14271 Rational number: input width / input height
14272
14273 @item sar
14274 sample aspect ratio
14275
14276 @item dar
14277 display aspect ratio
14278
14279 @end table
14280
14281 @subsection Examples
14282
14283 @itemize
14284 @item
14285 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
14286 @example
14287 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
14288 @end example
14289
14290 @item
14291 Zoom-in up to 1.5 and pan always at center of picture:
14292 @example
14293 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14294 @end example
14295
14296 @item
14297 Same as above but without pausing:
14298 @example
14299 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14300 @end example
14301 @end itemize
14302
14303 @section zscale
14304 Scale (resize) the input video, using the z.lib library:
14305 https://github.com/sekrit-twc/zimg.
14306
14307 The zscale filter forces the output display aspect ratio to be the same
14308 as the input, by changing the output sample aspect ratio.
14309
14310 If the input image format is different from the format requested by
14311 the next filter, the zscale filter will convert the input to the
14312 requested format.
14313
14314 @subsection Options
14315 The filter accepts the following options.
14316
14317 @table @option
14318 @item width, w
14319 @item height, h
14320 Set the output video dimension expression. Default value is the input
14321 dimension.
14322
14323 If the @var{width} or @var{w} is 0, the input width is used for the output.
14324 If the @var{height} or @var{h} is 0, the input height is used for the output.
14325
14326 If one of the values is -1, the zscale filter will use a value that
14327 maintains the aspect ratio of the input image, calculated from the
14328 other specified dimension. If both of them are -1, the input size is
14329 used
14330
14331 If one of the values is -n with n > 1, the zscale filter will also use a value
14332 that maintains the aspect ratio of the input image, calculated from the other
14333 specified dimension. After that it will, however, make sure that the calculated
14334 dimension is divisible by n and adjust the value if necessary.
14335
14336 See below for the list of accepted constants for use in the dimension
14337 expression.
14338
14339 @item size, s
14340 Set the video size. For the syntax of this option, check the
14341 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14342
14343 @item dither, d
14344 Set the dither type.
14345
14346 Possible values are:
14347 @table @var
14348 @item none
14349 @item ordered
14350 @item random
14351 @item error_diffusion
14352 @end table
14353
14354 Default is none.
14355
14356 @item filter, f
14357 Set the resize filter type.
14358
14359 Possible values are:
14360 @table @var
14361 @item point
14362 @item bilinear
14363 @item bicubic
14364 @item spline16
14365 @item spline36
14366 @item lanczos
14367 @end table
14368
14369 Default is bilinear.
14370
14371 @item range, r
14372 Set the color range.
14373
14374 Possible values are:
14375 @table @var
14376 @item input
14377 @item limited
14378 @item full
14379 @end table
14380
14381 Default is same as input.
14382
14383 @item primaries, p
14384 Set the color primaries.
14385
14386 Possible values are:
14387 @table @var
14388 @item input
14389 @item 709
14390 @item unspecified
14391 @item 170m
14392 @item 240m
14393 @item 2020
14394 @end table
14395
14396 Default is same as input.
14397
14398 @item transfer, t
14399 Set the transfer characteristics.
14400
14401 Possible values are:
14402 @table @var
14403 @item input
14404 @item 709
14405 @item unspecified
14406 @item 601
14407 @item linear
14408 @item 2020_10
14409 @item 2020_12
14410 @end table
14411
14412 Default is same as input.
14413
14414 @item matrix, m
14415 Set the colorspace matrix.
14416
14417 Possible value are:
14418 @table @var
14419 @item input
14420 @item 709
14421 @item unspecified
14422 @item 470bg
14423 @item 170m
14424 @item 2020_ncl
14425 @item 2020_cl
14426 @end table
14427
14428 Default is same as input.
14429
14430 @item rangein, rin
14431 Set the input color range.
14432
14433 Possible values are:
14434 @table @var
14435 @item input
14436 @item limited
14437 @item full
14438 @end table
14439
14440 Default is same as input.
14441
14442 @item primariesin, pin
14443 Set the input color primaries.
14444
14445 Possible values are:
14446 @table @var
14447 @item input
14448 @item 709
14449 @item unspecified
14450 @item 170m
14451 @item 240m
14452 @item 2020
14453 @end table
14454
14455 Default is same as input.
14456
14457 @item transferin, tin
14458 Set the input transfer characteristics.
14459
14460 Possible values are:
14461 @table @var
14462 @item input
14463 @item 709
14464 @item unspecified
14465 @item 601
14466 @item linear
14467 @item 2020_10
14468 @item 2020_12
14469 @end table
14470
14471 Default is same as input.
14472
14473 @item matrixin, min
14474 Set the input colorspace matrix.
14475
14476 Possible value are:
14477 @table @var
14478 @item input
14479 @item 709
14480 @item unspecified
14481 @item 470bg
14482 @item 170m
14483 @item 2020_ncl
14484 @item 2020_cl
14485 @end table
14486
14487 @item chromal, c
14488 Set the output chroma location.
14489
14490 Possible values are:
14491 @table @var
14492 @item input
14493 @item left
14494 @item center
14495 @item topleft
14496 @item top
14497 @item bottomleft
14498 @item bottom
14499 @end table
14500
14501 @item chromalin, cin
14502 Set the input chroma location.
14503
14504 Possible values are:
14505 @table @var
14506 @item input
14507 @item left
14508 @item center
14509 @item topleft
14510 @item top
14511 @item bottomleft
14512 @item bottom
14513 @end table
14514 @end table
14515
14516 The values of the @option{w} and @option{h} options are expressions
14517 containing the following constants:
14518
14519 @table @var
14520 @item in_w
14521 @item in_h
14522 The input width and height
14523
14524 @item iw
14525 @item ih
14526 These are the same as @var{in_w} and @var{in_h}.
14527
14528 @item out_w
14529 @item out_h
14530 The output (scaled) width and height
14531
14532 @item ow
14533 @item oh
14534 These are the same as @var{out_w} and @var{out_h}
14535
14536 @item a
14537 The same as @var{iw} / @var{ih}
14538
14539 @item sar
14540 input sample aspect ratio
14541
14542 @item dar
14543 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14544
14545 @item hsub
14546 @item vsub
14547 horizontal and vertical input chroma subsample values. For example for the
14548 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14549
14550 @item ohsub
14551 @item ovsub
14552 horizontal and vertical output chroma subsample values. For example for the
14553 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14554 @end table
14555
14556 @table @option
14557 @end table
14558
14559 @c man end VIDEO FILTERS
14560
14561 @chapter Video Sources
14562 @c man begin VIDEO SOURCES
14563
14564 Below is a description of the currently available video sources.
14565
14566 @section buffer
14567
14568 Buffer video frames, and make them available to the filter chain.
14569
14570 This source is mainly intended for a programmatic use, in particular
14571 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
14572
14573 It accepts the following parameters:
14574
14575 @table @option
14576
14577 @item video_size
14578 Specify the size (width and height) of the buffered video frames. For the
14579 syntax of this option, check the
14580 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14581
14582 @item width
14583 The input video width.
14584
14585 @item height
14586 The input video height.
14587
14588 @item pix_fmt
14589 A string representing the pixel format of the buffered video frames.
14590 It may be a number corresponding to a pixel format, or a pixel format
14591 name.
14592
14593 @item time_base
14594 Specify the timebase assumed by the timestamps of the buffered frames.
14595
14596 @item frame_rate
14597 Specify the frame rate expected for the video stream.
14598
14599 @item pixel_aspect, sar
14600 The sample (pixel) aspect ratio of the input video.
14601
14602 @item sws_param
14603 Specify the optional parameters to be used for the scale filter which
14604 is automatically inserted when an input change is detected in the
14605 input size or format.
14606
14607 @item hw_frames_ctx
14608 When using a hardware pixel format, this should be a reference to an
14609 AVHWFramesContext describing input frames.
14610 @end table
14611
14612 For example:
14613 @example
14614 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
14615 @end example
14616
14617 will instruct the source to accept video frames with size 320x240 and
14618 with format "yuv410p", assuming 1/24 as the timestamps timebase and
14619 square pixels (1:1 sample aspect ratio).
14620 Since the pixel format with name "yuv410p" corresponds to the number 6
14621 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
14622 this example corresponds to:
14623 @example
14624 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
14625 @end example
14626
14627 Alternatively, the options can be specified as a flat string, but this
14628 syntax is deprecated:
14629
14630 @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}]
14631
14632 @section cellauto
14633
14634 Create a pattern generated by an elementary cellular automaton.
14635
14636 The initial state of the cellular automaton can be defined through the
14637 @option{filename}, and @option{pattern} options. If such options are
14638 not specified an initial state is created randomly.
14639
14640 At each new frame a new row in the video is filled with the result of
14641 the cellular automaton next generation. The behavior when the whole
14642 frame is filled is defined by the @option{scroll} option.
14643
14644 This source accepts the following options:
14645
14646 @table @option
14647 @item filename, f
14648 Read the initial cellular automaton state, i.e. the starting row, from
14649 the specified file.
14650 In the file, each non-whitespace character is considered an alive
14651 cell, a newline will terminate the row, and further characters in the
14652 file will be ignored.
14653
14654 @item pattern, p
14655 Read the initial cellular automaton state, i.e. the starting row, from
14656 the specified string.
14657
14658 Each non-whitespace character in the string is considered an alive
14659 cell, a newline will terminate the row, and further characters in the
14660 string will be ignored.
14661
14662 @item rate, r
14663 Set the video rate, that is the number of frames generated per second.
14664 Default is 25.
14665
14666 @item random_fill_ratio, ratio
14667 Set the random fill ratio for the initial cellular automaton row. It
14668 is a floating point number value ranging from 0 to 1, defaults to
14669 1/PHI.
14670
14671 This option is ignored when a file or a pattern is specified.
14672
14673 @item random_seed, seed
14674 Set the seed for filling randomly the initial row, must be an integer
14675 included between 0 and UINT32_MAX. If not specified, or if explicitly
14676 set to -1, the filter will try to use a good random seed on a best
14677 effort basis.
14678
14679 @item rule
14680 Set the cellular automaton rule, it is a number ranging from 0 to 255.
14681 Default value is 110.
14682
14683 @item size, s
14684 Set the size of the output video. For the syntax of this option, check the
14685 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14686
14687 If @option{filename} or @option{pattern} is specified, the size is set
14688 by default to the width of the specified initial state row, and the
14689 height is set to @var{width} * PHI.
14690
14691 If @option{size} is set, it must contain the width of the specified
14692 pattern string, and the specified pattern will be centered in the
14693 larger row.
14694
14695 If a filename or a pattern string is not specified, the size value
14696 defaults to "320x518" (used for a randomly generated initial state).
14697
14698 @item scroll
14699 If set to 1, scroll the output upward when all the rows in the output
14700 have been already filled. If set to 0, the new generated row will be
14701 written over the top row just after the bottom row is filled.
14702 Defaults to 1.
14703
14704 @item start_full, full
14705 If set to 1, completely fill the output with generated rows before
14706 outputting the first frame.
14707 This is the default behavior, for disabling set the value to 0.
14708
14709 @item stitch
14710 If set to 1, stitch the left and right row edges together.
14711 This is the default behavior, for disabling set the value to 0.
14712 @end table
14713
14714 @subsection Examples
14715
14716 @itemize
14717 @item
14718 Read the initial state from @file{pattern}, and specify an output of
14719 size 200x400.
14720 @example
14721 cellauto=f=pattern:s=200x400
14722 @end example
14723
14724 @item
14725 Generate a random initial row with a width of 200 cells, with a fill
14726 ratio of 2/3:
14727 @example
14728 cellauto=ratio=2/3:s=200x200
14729 @end example
14730
14731 @item
14732 Create a pattern generated by rule 18 starting by a single alive cell
14733 centered on an initial row with width 100:
14734 @example
14735 cellauto=p=@@:s=100x400:full=0:rule=18
14736 @end example
14737
14738 @item
14739 Specify a more elaborated initial pattern:
14740 @example
14741 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
14742 @end example
14743
14744 @end itemize
14745
14746 @anchor{coreimagesrc}
14747 @section coreimagesrc
14748 Video source generated on GPU using Apple's CoreImage API on OSX.
14749
14750 This video source is a specialized version of the @ref{coreimage} video filter.
14751 Use a core image generator at the beginning of the applied filterchain to
14752 generate the content.
14753
14754 The coreimagesrc video source accepts the following options:
14755 @table @option
14756 @item list_generators
14757 List all available generators along with all their respective options as well as
14758 possible minimum and maximum values along with the default values.
14759 @example
14760 list_generators=true
14761 @end example
14762
14763 @item size, s
14764 Specify the size of the sourced video. For the syntax of this option, check the
14765 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14766 The default value is @code{320x240}.
14767
14768 @item rate, r
14769 Specify the frame rate of the sourced video, as the number of frames
14770 generated per second. It has to be a string in the format
14771 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14772 number or a valid video frame rate abbreviation. The default value is
14773 "25".
14774
14775 @item sar
14776 Set the sample aspect ratio of the sourced video.
14777
14778 @item duration, d
14779 Set the duration of the sourced video. See
14780 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14781 for the accepted syntax.
14782
14783 If not specified, or the expressed duration is negative, the video is
14784 supposed to be generated forever.
14785 @end table
14786
14787 Additionally, all options of the @ref{coreimage} video filter are accepted.
14788 A complete filterchain can be used for further processing of the
14789 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
14790 and examples for details.
14791
14792 @subsection Examples
14793
14794 @itemize
14795
14796 @item
14797 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
14798 given as complete and escaped command-line for Apple's standard bash shell:
14799 @example
14800 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
14801 @end example
14802 This example is equivalent to the QRCode example of @ref{coreimage} without the
14803 need for a nullsrc video source.
14804 @end itemize
14805
14806
14807 @section mandelbrot
14808
14809 Generate a Mandelbrot set fractal, and progressively zoom towards the
14810 point specified with @var{start_x} and @var{start_y}.
14811
14812 This source accepts the following options:
14813
14814 @table @option
14815
14816 @item end_pts
14817 Set the terminal pts value. Default value is 400.
14818
14819 @item end_scale
14820 Set the terminal scale value.
14821 Must be a floating point value. Default value is 0.3.
14822
14823 @item inner
14824 Set the inner coloring mode, that is the algorithm used to draw the
14825 Mandelbrot fractal internal region.
14826
14827 It shall assume one of the following values:
14828 @table @option
14829 @item black
14830 Set black mode.
14831 @item convergence
14832 Show time until convergence.
14833 @item mincol
14834 Set color based on point closest to the origin of the iterations.
14835 @item period
14836 Set period mode.
14837 @end table
14838
14839 Default value is @var{mincol}.
14840
14841 @item bailout
14842 Set the bailout value. Default value is 10.0.
14843
14844 @item maxiter
14845 Set the maximum of iterations performed by the rendering
14846 algorithm. Default value is 7189.
14847
14848 @item outer
14849 Set outer coloring mode.
14850 It shall assume one of following values:
14851 @table @option
14852 @item iteration_count
14853 Set iteration cound mode.
14854 @item normalized_iteration_count
14855 set normalized iteration count mode.
14856 @end table
14857 Default value is @var{normalized_iteration_count}.
14858
14859 @item rate, r
14860 Set frame rate, expressed as number of frames per second. Default
14861 value is "25".
14862
14863 @item size, s
14864 Set frame size. For the syntax of this option, check the "Video
14865 size" section in the ffmpeg-utils manual. Default value is "640x480".
14866
14867 @item start_scale
14868 Set the initial scale value. Default value is 3.0.
14869
14870 @item start_x
14871 Set the initial x position. Must be a floating point value between
14872 -100 and 100. Default value is -0.743643887037158704752191506114774.
14873
14874 @item start_y
14875 Set the initial y position. Must be a floating point value between
14876 -100 and 100. Default value is -0.131825904205311970493132056385139.
14877 @end table
14878
14879 @section mptestsrc
14880
14881 Generate various test patterns, as generated by the MPlayer test filter.
14882
14883 The size of the generated video is fixed, and is 256x256.
14884 This source is useful in particular for testing encoding features.
14885
14886 This source accepts the following options:
14887
14888 @table @option
14889
14890 @item rate, r
14891 Specify the frame rate of the sourced video, as the number of frames
14892 generated per second. It has to be a string in the format
14893 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14894 number or a valid video frame rate abbreviation. The default value is
14895 "25".
14896
14897 @item duration, d
14898 Set the duration of the sourced video. See
14899 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14900 for the accepted syntax.
14901
14902 If not specified, or the expressed duration is negative, the video is
14903 supposed to be generated forever.
14904
14905 @item test, t
14906
14907 Set the number or the name of the test to perform. Supported tests are:
14908 @table @option
14909 @item dc_luma
14910 @item dc_chroma
14911 @item freq_luma
14912 @item freq_chroma
14913 @item amp_luma
14914 @item amp_chroma
14915 @item cbp
14916 @item mv
14917 @item ring1
14918 @item ring2
14919 @item all
14920
14921 @end table
14922
14923 Default value is "all", which will cycle through the list of all tests.
14924 @end table
14925
14926 Some examples:
14927 @example
14928 mptestsrc=t=dc_luma
14929 @end example
14930
14931 will generate a "dc_luma" test pattern.
14932
14933 @section frei0r_src
14934
14935 Provide a frei0r source.
14936
14937 To enable compilation of this filter you need to install the frei0r
14938 header and configure FFmpeg with @code{--enable-frei0r}.
14939
14940 This source accepts the following parameters:
14941
14942 @table @option
14943
14944 @item size
14945 The size of the video to generate. For the syntax of this option, check the
14946 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14947
14948 @item framerate
14949 The framerate of the generated video. It may be a string of the form
14950 @var{num}/@var{den} or a frame rate abbreviation.
14951
14952 @item filter_name
14953 The name to the frei0r source to load. For more information regarding frei0r and
14954 how to set the parameters, read the @ref{frei0r} section in the video filters
14955 documentation.
14956
14957 @item filter_params
14958 A '|'-separated list of parameters to pass to the frei0r source.
14959
14960 @end table
14961
14962 For example, to generate a frei0r partik0l source with size 200x200
14963 and frame rate 10 which is overlaid on the overlay filter main input:
14964 @example
14965 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
14966 @end example
14967
14968 @section life
14969
14970 Generate a life pattern.
14971
14972 This source is based on a generalization of John Conway's life game.
14973
14974 The sourced input represents a life grid, each pixel represents a cell
14975 which can be in one of two possible states, alive or dead. Every cell
14976 interacts with its eight neighbours, which are the cells that are
14977 horizontally, vertically, or diagonally adjacent.
14978
14979 At each interaction the grid evolves according to the adopted rule,
14980 which specifies the number of neighbor alive cells which will make a
14981 cell stay alive or born. The @option{rule} option allows one to specify
14982 the rule to adopt.
14983
14984 This source accepts the following options:
14985
14986 @table @option
14987 @item filename, f
14988 Set the file from which to read the initial grid state. In the file,
14989 each non-whitespace character is considered an alive cell, and newline
14990 is used to delimit the end of each row.
14991
14992 If this option is not specified, the initial grid is generated
14993 randomly.
14994
14995 @item rate, r
14996 Set the video rate, that is the number of frames generated per second.
14997 Default is 25.
14998
14999 @item random_fill_ratio, ratio
15000 Set the random fill ratio for the initial random grid. It is a
15001 floating point number value ranging from 0 to 1, defaults to 1/PHI.
15002 It is ignored when a file is specified.
15003
15004 @item random_seed, seed
15005 Set the seed for filling the initial random grid, must be an integer
15006 included between 0 and UINT32_MAX. If not specified, or if explicitly
15007 set to -1, the filter will try to use a good random seed on a best
15008 effort basis.
15009
15010 @item rule
15011 Set the life rule.
15012
15013 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
15014 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
15015 @var{NS} specifies the number of alive neighbor cells which make a
15016 live cell stay alive, and @var{NB} the number of alive neighbor cells
15017 which make a dead cell to become alive (i.e. to "born").
15018 "s" and "b" can be used in place of "S" and "B", respectively.
15019
15020 Alternatively a rule can be specified by an 18-bits integer. The 9
15021 high order bits are used to encode the next cell state if it is alive
15022 for each number of neighbor alive cells, the low order bits specify
15023 the rule for "borning" new cells. Higher order bits encode for an
15024 higher number of neighbor cells.
15025 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
15026 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
15027
15028 Default value is "S23/B3", which is the original Conway's game of life
15029 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
15030 cells, and will born a new cell if there are three alive cells around
15031 a dead cell.
15032
15033 @item size, s
15034 Set the size of the output video. For the syntax of this option, check the
15035 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15036
15037 If @option{filename} is specified, the size is set by default to the
15038 same size of the input file. If @option{size} is set, it must contain
15039 the size specified in the input file, and the initial grid defined in
15040 that file is centered in the larger resulting area.
15041
15042 If a filename is not specified, the size value defaults to "320x240"
15043 (used for a randomly generated initial grid).
15044
15045 @item stitch
15046 If set to 1, stitch the left and right grid edges together, and the
15047 top and bottom edges also. Defaults to 1.
15048
15049 @item mold
15050 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
15051 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
15052 value from 0 to 255.
15053
15054 @item life_color
15055 Set the color of living (or new born) cells.
15056
15057 @item death_color
15058 Set the color of dead cells. If @option{mold} is set, this is the first color
15059 used to represent a dead cell.
15060
15061 @item mold_color
15062 Set mold color, for definitely dead and moldy cells.
15063
15064 For the syntax of these 3 color options, check the "Color" section in the
15065 ffmpeg-utils manual.
15066 @end table
15067
15068 @subsection Examples
15069
15070 @itemize
15071 @item
15072 Read a grid from @file{pattern}, and center it on a grid of size
15073 300x300 pixels:
15074 @example
15075 life=f=pattern:s=300x300
15076 @end example
15077
15078 @item
15079 Generate a random grid of size 200x200, with a fill ratio of 2/3:
15080 @example
15081 life=ratio=2/3:s=200x200
15082 @end example
15083
15084 @item
15085 Specify a custom rule for evolving a randomly generated grid:
15086 @example
15087 life=rule=S14/B34
15088 @end example
15089
15090 @item
15091 Full example with slow death effect (mold) using @command{ffplay}:
15092 @example
15093 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
15094 @end example
15095 @end itemize
15096
15097 @anchor{allrgb}
15098 @anchor{allyuv}
15099 @anchor{color}
15100 @anchor{haldclutsrc}
15101 @anchor{nullsrc}
15102 @anchor{rgbtestsrc}
15103 @anchor{smptebars}
15104 @anchor{smptehdbars}
15105 @anchor{testsrc}
15106 @anchor{testsrc2}
15107 @anchor{yuvtestsrc}
15108 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
15109
15110 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
15111
15112 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
15113
15114 The @code{color} source provides an uniformly colored input.
15115
15116 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
15117 @ref{haldclut} filter.
15118
15119 The @code{nullsrc} source returns unprocessed video frames. It is
15120 mainly useful to be employed in analysis / debugging tools, or as the
15121 source for filters which ignore the input data.
15122
15123 The @code{rgbtestsrc} source generates an RGB test pattern useful for
15124 detecting RGB vs BGR issues. You should see a red, green and blue
15125 stripe from top to bottom.
15126
15127 The @code{smptebars} source generates a color bars pattern, based on
15128 the SMPTE Engineering Guideline EG 1-1990.
15129
15130 The @code{smptehdbars} source generates a color bars pattern, based on
15131 the SMPTE RP 219-2002.
15132
15133 The @code{testsrc} source generates a test video pattern, showing a
15134 color pattern, a scrolling gradient and a timestamp. This is mainly
15135 intended for testing purposes.
15136
15137 The @code{testsrc2} source is similar to testsrc, but supports more
15138 pixel formats instead of just @code{rgb24}. This allows using it as an
15139 input for other tests without requiring a format conversion.
15140
15141 The @code{yuvtestsrc} source generates an YUV test pattern. You should
15142 see a y, cb and cr stripe from top to bottom.
15143
15144 The sources accept the following parameters:
15145
15146 @table @option
15147
15148 @item color, c
15149 Specify the color of the source, only available in the @code{color}
15150 source. For the syntax of this option, check the "Color" section in the
15151 ffmpeg-utils manual.
15152
15153 @item level
15154 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
15155 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
15156 pixels to be used as identity matrix for 3D lookup tables. Each component is
15157 coded on a @code{1/(N*N)} scale.
15158
15159 @item size, s
15160 Specify the size of the sourced video. For the syntax of this option, check the
15161 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15162 The default value is @code{320x240}.
15163
15164 This option is not available with the @code{haldclutsrc} filter.
15165
15166 @item rate, r
15167 Specify the frame rate of the sourced video, as the number of frames
15168 generated per second. It has to be a string in the format
15169 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15170 number or a valid video frame rate abbreviation. The default value is
15171 "25".
15172
15173 @item sar
15174 Set the sample aspect ratio of the sourced video.
15175
15176 @item duration, d
15177 Set the duration of the sourced video. See
15178 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15179 for the accepted syntax.
15180
15181 If not specified, or the expressed duration is negative, the video is
15182 supposed to be generated forever.
15183
15184 @item decimals, n
15185 Set the number of decimals to show in the timestamp, only available in the
15186 @code{testsrc} source.
15187
15188 The displayed timestamp value will correspond to the original
15189 timestamp value multiplied by the power of 10 of the specified
15190 value. Default value is 0.
15191 @end table
15192
15193 For example the following:
15194 @example
15195 testsrc=duration=5.3:size=qcif:rate=10
15196 @end example
15197
15198 will generate a video with a duration of 5.3 seconds, with size
15199 176x144 and a frame rate of 10 frames per second.
15200
15201 The following graph description will generate a red source
15202 with an opacity of 0.2, with size "qcif" and a frame rate of 10
15203 frames per second.
15204 @example
15205 color=c=red@@0.2:s=qcif:r=10
15206 @end example
15207
15208 If the input content is to be ignored, @code{nullsrc} can be used. The
15209 following command generates noise in the luminance plane by employing
15210 the @code{geq} filter:
15211 @example
15212 nullsrc=s=256x256, geq=random(1)*255:128:128
15213 @end example
15214
15215 @subsection Commands
15216
15217 The @code{color} source supports the following commands:
15218
15219 @table @option
15220 @item c, color
15221 Set the color of the created image. Accepts the same syntax of the
15222 corresponding @option{color} option.
15223 @end table
15224
15225 @c man end VIDEO SOURCES
15226
15227 @chapter Video Sinks
15228 @c man begin VIDEO SINKS
15229
15230 Below is a description of the currently available video sinks.
15231
15232 @section buffersink
15233
15234 Buffer video frames, and make them available to the end of the filter
15235 graph.
15236
15237 This sink is mainly intended for programmatic use, in particular
15238 through the interface defined in @file{libavfilter/buffersink.h}
15239 or the options system.
15240
15241 It accepts a pointer to an AVBufferSinkContext structure, which
15242 defines the incoming buffers' formats, to be passed as the opaque
15243 parameter to @code{avfilter_init_filter} for initialization.
15244
15245 @section nullsink
15246
15247 Null video sink: do absolutely nothing with the input video. It is
15248 mainly useful as a template and for use in analysis / debugging
15249 tools.
15250
15251 @c man end VIDEO SINKS
15252
15253 @chapter Multimedia Filters
15254 @c man begin MULTIMEDIA FILTERS
15255
15256 Below is a description of the currently available multimedia filters.
15257
15258 @section ahistogram
15259
15260 Convert input audio to a video output, displaying the volume histogram.
15261
15262 The filter accepts the following options:
15263
15264 @table @option
15265 @item dmode
15266 Specify how histogram is calculated.
15267
15268 It accepts the following values:
15269 @table @samp
15270 @item single
15271 Use single histogram for all channels.
15272 @item separate
15273 Use separate histogram for each channel.
15274 @end table
15275 Default is @code{single}.
15276
15277 @item rate, r
15278 Set frame rate, expressed as number of frames per second. Default
15279 value is "25".
15280
15281 @item size, s
15282 Specify the video size for the output. For the syntax of this option, check the
15283 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15284 Default value is @code{hd720}.
15285
15286 @item scale
15287 Set display scale.
15288
15289 It accepts the following values:
15290 @table @samp
15291 @item log
15292 logarithmic
15293 @item sqrt
15294 square root
15295 @item cbrt
15296 cubic root
15297 @item lin
15298 linear
15299 @item rlog
15300 reverse logarithmic
15301 @end table
15302 Default is @code{log}.
15303
15304 @item ascale
15305 Set amplitude scale.
15306
15307 It accepts the following values:
15308 @table @samp
15309 @item log
15310 logarithmic
15311 @item lin
15312 linear
15313 @end table
15314 Default is @code{log}.
15315
15316 @item acount
15317 Set how much frames to accumulate in histogram.
15318 Defauls is 1. Setting this to -1 accumulates all frames.
15319
15320 @item rheight
15321 Set histogram ratio of window height.
15322
15323 @item slide
15324 Set sonogram sliding.
15325
15326 It accepts the following values:
15327 @table @samp
15328 @item replace
15329 replace old rows with new ones.
15330 @item scroll
15331 scroll from top to bottom.
15332 @end table
15333 Default is @code{replace}.
15334 @end table
15335
15336 @section aphasemeter
15337
15338 Convert input audio to a video output, displaying the audio phase.
15339
15340 The filter accepts the following options:
15341
15342 @table @option
15343 @item rate, r
15344 Set the output frame rate. Default value is @code{25}.
15345
15346 @item size, s
15347 Set the video size for the output. For the syntax of this option, check the
15348 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15349 Default value is @code{800x400}.
15350
15351 @item rc
15352 @item gc
15353 @item bc
15354 Specify the red, green, blue contrast. Default values are @code{2},
15355 @code{7} and @code{1}.
15356 Allowed range is @code{[0, 255]}.
15357
15358 @item mpc
15359 Set color which will be used for drawing median phase. If color is
15360 @code{none} which is default, no median phase value will be drawn.
15361 @end table
15362
15363 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
15364 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
15365 The @code{-1} means left and right channels are completely out of phase and
15366 @code{1} means channels are in phase.
15367
15368 @section avectorscope
15369
15370 Convert input audio to a video output, representing the audio vector
15371 scope.
15372
15373 The filter is used to measure the difference between channels of stereo
15374 audio stream. A monoaural signal, consisting of identical left and right
15375 signal, results in straight vertical line. Any stereo separation is visible
15376 as a deviation from this line, creating a Lissajous figure.
15377 If the straight (or deviation from it) but horizontal line appears this
15378 indicates that the left and right channels are out of phase.
15379
15380 The filter accepts the following options:
15381
15382 @table @option
15383 @item mode, m
15384 Set the vectorscope mode.
15385
15386 Available values are:
15387 @table @samp
15388 @item lissajous
15389 Lissajous rotated by 45 degrees.
15390
15391 @item lissajous_xy
15392 Same as above but not rotated.
15393
15394 @item polar
15395 Shape resembling half of circle.
15396 @end table
15397
15398 Default value is @samp{lissajous}.
15399
15400 @item size, s
15401 Set the video size for the output. For the syntax of this option, check the
15402 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15403 Default value is @code{400x400}.
15404
15405 @item rate, r
15406 Set the output frame rate. Default value is @code{25}.
15407
15408 @item rc
15409 @item gc
15410 @item bc
15411 @item ac
15412 Specify the red, green, blue and alpha contrast. Default values are @code{40},
15413 @code{160}, @code{80} and @code{255}.
15414 Allowed range is @code{[0, 255]}.
15415
15416 @item rf
15417 @item gf
15418 @item bf
15419 @item af
15420 Specify the red, green, blue and alpha fade. Default values are @code{15},
15421 @code{10}, @code{5} and @code{5}.
15422 Allowed range is @code{[0, 255]}.
15423
15424 @item zoom
15425 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
15426
15427 @item draw
15428 Set the vectorscope drawing mode.
15429
15430 Available values are:
15431 @table @samp
15432 @item dot
15433 Draw dot for each sample.
15434
15435 @item line
15436 Draw line between previous and current sample.
15437 @end table
15438
15439 Default value is @samp{dot}.
15440
15441 @item scale
15442 Specify amplitude scale of audio samples.
15443
15444 Available values are:
15445 @table @samp
15446 @item lin
15447 Linear.
15448
15449 @item sqrt
15450 Square root.
15451
15452 @item cbrt
15453 Cubic root.
15454
15455 @item log
15456 Logarithmic.
15457 @end table
15458
15459 @end table
15460
15461 @subsection Examples
15462
15463 @itemize
15464 @item
15465 Complete example using @command{ffplay}:
15466 @example
15467 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
15468              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
15469 @end example
15470 @end itemize
15471
15472 @section bench, abench
15473
15474 Benchmark part of a filtergraph.
15475
15476 The filter accepts the following options:
15477
15478 @table @option
15479 @item action
15480 Start or stop a timer.
15481
15482 Available values are:
15483 @table @samp
15484 @item start
15485 Get the current time, set it as frame metadata (using the key
15486 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
15487
15488 @item stop
15489 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
15490 the input frame metadata to get the time difference. Time difference, average,
15491 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
15492 @code{min}) are then printed. The timestamps are expressed in seconds.
15493 @end table
15494 @end table
15495
15496 @subsection Examples
15497
15498 @itemize
15499 @item
15500 Benchmark @ref{selectivecolor} filter:
15501 @example
15502 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
15503 @end example
15504 @end itemize
15505
15506 @section concat
15507
15508 Concatenate audio and video streams, joining them together one after the
15509 other.
15510
15511 The filter works on segments of synchronized video and audio streams. All
15512 segments must have the same number of streams of each type, and that will
15513 also be the number of streams at output.
15514
15515 The filter accepts the following options:
15516
15517 @table @option
15518
15519 @item n
15520 Set the number of segments. Default is 2.
15521
15522 @item v
15523 Set the number of output video streams, that is also the number of video
15524 streams in each segment. Default is 1.
15525
15526 @item a
15527 Set the number of output audio streams, that is also the number of audio
15528 streams in each segment. Default is 0.
15529
15530 @item unsafe
15531 Activate unsafe mode: do not fail if segments have a different format.
15532
15533 @end table
15534
15535 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
15536 @var{a} audio outputs.
15537
15538 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
15539 segment, in the same order as the outputs, then the inputs for the second
15540 segment, etc.
15541
15542 Related streams do not always have exactly the same duration, for various
15543 reasons including codec frame size or sloppy authoring. For that reason,
15544 related synchronized streams (e.g. a video and its audio track) should be
15545 concatenated at once. The concat filter will use the duration of the longest
15546 stream in each segment (except the last one), and if necessary pad shorter
15547 audio streams with silence.
15548
15549 For this filter to work correctly, all segments must start at timestamp 0.
15550
15551 All corresponding streams must have the same parameters in all segments; the
15552 filtering system will automatically select a common pixel format for video
15553 streams, and a common sample format, sample rate and channel layout for
15554 audio streams, but other settings, such as resolution, must be converted
15555 explicitly by the user.
15556
15557 Different frame rates are acceptable but will result in variable frame rate
15558 at output; be sure to configure the output file to handle it.
15559
15560 @subsection Examples
15561
15562 @itemize
15563 @item
15564 Concatenate an opening, an episode and an ending, all in bilingual version
15565 (video in stream 0, audio in streams 1 and 2):
15566 @example
15567 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
15568   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
15569    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
15570   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
15571 @end example
15572
15573 @item
15574 Concatenate two parts, handling audio and video separately, using the
15575 (a)movie sources, and adjusting the resolution:
15576 @example
15577 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
15578 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
15579 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
15580 @end example
15581 Note that a desync will happen at the stitch if the audio and video streams
15582 do not have exactly the same duration in the first file.
15583
15584 @end itemize
15585
15586 @section drawgraph, adrawgraph
15587
15588 Draw a graph using input video or audio metadata.
15589
15590 It accepts the following parameters:
15591
15592 @table @option
15593 @item m1
15594 Set 1st frame metadata key from which metadata values will be used to draw a graph.
15595
15596 @item fg1
15597 Set 1st foreground color expression.
15598
15599 @item m2
15600 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
15601
15602 @item fg2
15603 Set 2nd foreground color expression.
15604
15605 @item m3
15606 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
15607
15608 @item fg3
15609 Set 3rd foreground color expression.
15610
15611 @item m4
15612 Set 4th frame metadata key from which metadata values will be used to draw a graph.
15613
15614 @item fg4
15615 Set 4th foreground color expression.
15616
15617 @item min
15618 Set minimal value of metadata value.
15619
15620 @item max
15621 Set maximal value of metadata value.
15622
15623 @item bg
15624 Set graph background color. Default is white.
15625
15626 @item mode
15627 Set graph mode.
15628
15629 Available values for mode is:
15630 @table @samp
15631 @item bar
15632 @item dot
15633 @item line
15634 @end table
15635
15636 Default is @code{line}.
15637
15638 @item slide
15639 Set slide mode.
15640
15641 Available values for slide is:
15642 @table @samp
15643 @item frame
15644 Draw new frame when right border is reached.
15645
15646 @item replace
15647 Replace old columns with new ones.
15648
15649 @item scroll
15650 Scroll from right to left.
15651
15652 @item rscroll
15653 Scroll from left to right.
15654
15655 @item picture
15656 Draw single picture.
15657 @end table
15658
15659 Default is @code{frame}.
15660
15661 @item size
15662 Set size of graph video. For the syntax of this option, check the
15663 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15664 The default value is @code{900x256}.
15665
15666 The foreground color expressions can use the following variables:
15667 @table @option
15668 @item MIN
15669 Minimal value of metadata value.
15670
15671 @item MAX
15672 Maximal value of metadata value.
15673
15674 @item VAL
15675 Current metadata key value.
15676 @end table
15677
15678 The color is defined as 0xAABBGGRR.
15679 @end table
15680
15681 Example using metadata from @ref{signalstats} filter:
15682 @example
15683 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
15684 @end example
15685
15686 Example using metadata from @ref{ebur128} filter:
15687 @example
15688 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
15689 @end example
15690
15691 @anchor{ebur128}
15692 @section ebur128
15693
15694 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
15695 it unchanged. By default, it logs a message at a frequency of 10Hz with the
15696 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
15697 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
15698
15699 The filter also has a video output (see the @var{video} option) with a real
15700 time graph to observe the loudness evolution. The graphic contains the logged
15701 message mentioned above, so it is not printed anymore when this option is set,
15702 unless the verbose logging is set. The main graphing area contains the
15703 short-term loudness (3 seconds of analysis), and the gauge on the right is for
15704 the momentary loudness (400 milliseconds).
15705
15706 More information about the Loudness Recommendation EBU R128 on
15707 @url{http://tech.ebu.ch/loudness}.
15708
15709 The filter accepts the following options:
15710
15711 @table @option
15712
15713 @item video
15714 Activate the video output. The audio stream is passed unchanged whether this
15715 option is set or no. The video stream will be the first output stream if
15716 activated. Default is @code{0}.
15717
15718 @item size
15719 Set the video size. This option is for video only. For the syntax of this
15720 option, check the
15721 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15722 Default and minimum resolution is @code{640x480}.
15723
15724 @item meter
15725 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
15726 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
15727 other integer value between this range is allowed.
15728
15729 @item metadata
15730 Set metadata injection. If set to @code{1}, the audio input will be segmented
15731 into 100ms output frames, each of them containing various loudness information
15732 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
15733
15734 Default is @code{0}.
15735
15736 @item framelog
15737 Force the frame logging level.
15738
15739 Available values are:
15740 @table @samp
15741 @item info
15742 information logging level
15743 @item verbose
15744 verbose logging level
15745 @end table
15746
15747 By default, the logging level is set to @var{info}. If the @option{video} or
15748 the @option{metadata} options are set, it switches to @var{verbose}.
15749
15750 @item peak
15751 Set peak mode(s).
15752
15753 Available modes can be cumulated (the option is a @code{flag} type). Possible
15754 values are:
15755 @table @samp
15756 @item none
15757 Disable any peak mode (default).
15758 @item sample
15759 Enable sample-peak mode.
15760
15761 Simple peak mode looking for the higher sample value. It logs a message
15762 for sample-peak (identified by @code{SPK}).
15763 @item true
15764 Enable true-peak mode.
15765
15766 If enabled, the peak lookup is done on an over-sampled version of the input
15767 stream for better peak accuracy. It logs a message for true-peak.
15768 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
15769 This mode requires a build with @code{libswresample}.
15770 @end table
15771
15772 @item dualmono
15773 Treat mono input files as "dual mono". If a mono file is intended for playback
15774 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
15775 If set to @code{true}, this option will compensate for this effect.
15776 Multi-channel input files are not affected by this option.
15777
15778 @item panlaw
15779 Set a specific pan law to be used for the measurement of dual mono files.
15780 This parameter is optional, and has a default value of -3.01dB.
15781 @end table
15782
15783 @subsection Examples
15784
15785 @itemize
15786 @item
15787 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
15788 @example
15789 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
15790 @end example
15791
15792 @item
15793 Run an analysis with @command{ffmpeg}:
15794 @example
15795 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
15796 @end example
15797 @end itemize
15798
15799 @section interleave, ainterleave
15800
15801 Temporally interleave frames from several inputs.
15802
15803 @code{interleave} works with video inputs, @code{ainterleave} with audio.
15804
15805 These filters read frames from several inputs and send the oldest
15806 queued frame to the output.
15807
15808 Input streams must have a well defined, monotonically increasing frame
15809 timestamp values.
15810
15811 In order to submit one frame to output, these filters need to enqueue
15812 at least one frame for each input, so they cannot work in case one
15813 input is not yet terminated and will not receive incoming frames.
15814
15815 For example consider the case when one input is a @code{select} filter
15816 which always drop input frames. The @code{interleave} filter will keep
15817 reading from that input, but it will never be able to send new frames
15818 to output until the input will send an end-of-stream signal.
15819
15820 Also, depending on inputs synchronization, the filters will drop
15821 frames in case one input receives more frames than the other ones, and
15822 the queue is already filled.
15823
15824 These filters accept the following options:
15825
15826 @table @option
15827 @item nb_inputs, n
15828 Set the number of different inputs, it is 2 by default.
15829 @end table
15830
15831 @subsection Examples
15832
15833 @itemize
15834 @item
15835 Interleave frames belonging to different streams using @command{ffmpeg}:
15836 @example
15837 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
15838 @end example
15839
15840 @item
15841 Add flickering blur effect:
15842 @example
15843 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
15844 @end example
15845 @end itemize
15846
15847 @section metadata, ametadata
15848
15849 Manipulate frame metadata.
15850
15851 This filter accepts the following options:
15852
15853 @table @option
15854 @item mode
15855 Set mode of operation of the filter.
15856
15857 Can be one of the following:
15858
15859 @table @samp
15860 @item select
15861 If both @code{value} and @code{key} is set, select frames
15862 which have such metadata. If only @code{key} is set, select
15863 every frame that has such key in metadata.
15864
15865 @item add
15866 Add new metadata @code{key} and @code{value}. If key is already available
15867 do nothing.
15868
15869 @item modify
15870 Modify value of already present key.
15871
15872 @item delete
15873 If @code{value} is set, delete only keys that have such value.
15874 Otherwise, delete key.
15875
15876 @item print
15877 Print key and its value if metadata was found. If @code{key} is not set print all
15878 metadata values available in frame.
15879 @end table
15880
15881 @item key
15882 Set key used with all modes. Must be set for all modes except @code{print}.
15883
15884 @item value
15885 Set metadata value which will be used. This option is mandatory for
15886 @code{modify} and @code{add} mode.
15887
15888 @item function
15889 Which function to use when comparing metadata value and @code{value}.
15890
15891 Can be one of following:
15892
15893 @table @samp
15894 @item same_str
15895 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
15896
15897 @item starts_with
15898 Values are interpreted as strings, returns true if metadata value starts with
15899 the @code{value} option string.
15900
15901 @item less
15902 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
15903
15904 @item equal
15905 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
15906
15907 @item greater
15908 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
15909
15910 @item expr
15911 Values are interpreted as floats, returns true if expression from option @code{expr}
15912 evaluates to true.
15913 @end table
15914
15915 @item expr
15916 Set expression which is used when @code{function} is set to @code{expr}.
15917 The expression is evaluated through the eval API and can contain the following
15918 constants:
15919
15920 @table @option
15921 @item VALUE1
15922 Float representation of @code{value} from metadata key.
15923
15924 @item VALUE2
15925 Float representation of @code{value} as supplied by user in @code{value} option.
15926
15927 @item file
15928 If specified in @code{print} mode, output is written to the named file. Instead of
15929 plain filename any writable url can be specified. Filename ``-'' is a shorthand
15930 for standard output. If @code{file} option is not set, output is written to the log
15931 with AV_LOG_INFO loglevel.
15932 @end table
15933
15934 @end table
15935
15936 @subsection Examples
15937
15938 @itemize
15939 @item
15940 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
15941 between 0 and 1.
15942 @example
15943 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
15944 @end example
15945 @item
15946 Print silencedetect output to file @file{metadata.txt}.
15947 @example
15948 silencedetect,ametadata=mode=print:file=metadata.txt
15949 @end example
15950 @item
15951 Direct all metadata to a pipe with file descriptor 4.
15952 @example
15953 metadata=mode=print:file='pipe\:4'
15954 @end example
15955 @end itemize
15956
15957 @section perms, aperms
15958
15959 Set read/write permissions for the output frames.
15960
15961 These filters are mainly aimed at developers to test direct path in the
15962 following filter in the filtergraph.
15963
15964 The filters accept the following options:
15965
15966 @table @option
15967 @item mode
15968 Select the permissions mode.
15969
15970 It accepts the following values:
15971 @table @samp
15972 @item none
15973 Do nothing. This is the default.
15974 @item ro
15975 Set all the output frames read-only.
15976 @item rw
15977 Set all the output frames directly writable.
15978 @item toggle
15979 Make the frame read-only if writable, and writable if read-only.
15980 @item random
15981 Set each output frame read-only or writable randomly.
15982 @end table
15983
15984 @item seed
15985 Set the seed for the @var{random} mode, must be an integer included between
15986 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15987 @code{-1}, the filter will try to use a good random seed on a best effort
15988 basis.
15989 @end table
15990
15991 Note: in case of auto-inserted filter between the permission filter and the
15992 following one, the permission might not be received as expected in that
15993 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
15994 perms/aperms filter can avoid this problem.
15995
15996 @section realtime, arealtime
15997
15998 Slow down filtering to match real time approximatively.
15999
16000 These filters will pause the filtering for a variable amount of time to
16001 match the output rate with the input timestamps.
16002 They are similar to the @option{re} option to @code{ffmpeg}.
16003
16004 They accept the following options:
16005
16006 @table @option
16007 @item limit
16008 Time limit for the pauses. Any pause longer than that will be considered
16009 a timestamp discontinuity and reset the timer. Default is 2 seconds.
16010 @end table
16011
16012 @section select, aselect
16013
16014 Select frames to pass in output.
16015
16016 This filter accepts the following options:
16017
16018 @table @option
16019
16020 @item expr, e
16021 Set expression, which is evaluated for each input frame.
16022
16023 If the expression is evaluated to zero, the frame is discarded.
16024
16025 If the evaluation result is negative or NaN, the frame is sent to the
16026 first output; otherwise it is sent to the output with index
16027 @code{ceil(val)-1}, assuming that the input index starts from 0.
16028
16029 For example a value of @code{1.2} corresponds to the output with index
16030 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
16031
16032 @item outputs, n
16033 Set the number of outputs. The output to which to send the selected
16034 frame is based on the result of the evaluation. Default value is 1.
16035 @end table
16036
16037 The expression can contain the following constants:
16038
16039 @table @option
16040 @item n
16041 The (sequential) number of the filtered frame, starting from 0.
16042
16043 @item selected_n
16044 The (sequential) number of the selected frame, starting from 0.
16045
16046 @item prev_selected_n
16047 The sequential number of the last selected frame. It's NAN if undefined.
16048
16049 @item TB
16050 The timebase of the input timestamps.
16051
16052 @item pts
16053 The PTS (Presentation TimeStamp) of the filtered video frame,
16054 expressed in @var{TB} units. It's NAN if undefined.
16055
16056 @item t
16057 The PTS of the filtered video frame,
16058 expressed in seconds. It's NAN if undefined.
16059
16060 @item prev_pts
16061 The PTS of the previously filtered video frame. It's NAN if undefined.
16062
16063 @item prev_selected_pts
16064 The PTS of the last previously filtered video frame. It's NAN if undefined.
16065
16066 @item prev_selected_t
16067 The PTS of the last previously selected video frame. It's NAN if undefined.
16068
16069 @item start_pts
16070 The PTS of the first video frame in the video. It's NAN if undefined.
16071
16072 @item start_t
16073 The time of the first video frame in the video. It's NAN if undefined.
16074
16075 @item pict_type @emph{(video only)}
16076 The type of the filtered frame. It can assume one of the following
16077 values:
16078 @table @option
16079 @item I
16080 @item P
16081 @item B
16082 @item S
16083 @item SI
16084 @item SP
16085 @item BI
16086 @end table
16087
16088 @item interlace_type @emph{(video only)}
16089 The frame interlace type. It can assume one of the following values:
16090 @table @option
16091 @item PROGRESSIVE
16092 The frame is progressive (not interlaced).
16093 @item TOPFIRST
16094 The frame is top-field-first.
16095 @item BOTTOMFIRST
16096 The frame is bottom-field-first.
16097 @end table
16098
16099 @item consumed_sample_n @emph{(audio only)}
16100 the number of selected samples before the current frame
16101
16102 @item samples_n @emph{(audio only)}
16103 the number of samples in the current frame
16104
16105 @item sample_rate @emph{(audio only)}
16106 the input sample rate
16107
16108 @item key
16109 This is 1 if the filtered frame is a key-frame, 0 otherwise.
16110
16111 @item pos
16112 the position in the file of the filtered frame, -1 if the information
16113 is not available (e.g. for synthetic video)
16114
16115 @item scene @emph{(video only)}
16116 value between 0 and 1 to indicate a new scene; a low value reflects a low
16117 probability for the current frame to introduce a new scene, while a higher
16118 value means the current frame is more likely to be one (see the example below)
16119
16120 @item concatdec_select
16121 The concat demuxer can select only part of a concat input file by setting an
16122 inpoint and an outpoint, but the output packets may not be entirely contained
16123 in the selected interval. By using this variable, it is possible to skip frames
16124 generated by the concat demuxer which are not exactly contained in the selected
16125 interval.
16126
16127 This works by comparing the frame pts against the @var{lavf.concat.start_time}
16128 and the @var{lavf.concat.duration} packet metadata values which are also
16129 present in the decoded frames.
16130
16131 The @var{concatdec_select} variable is -1 if the frame pts is at least
16132 start_time and either the duration metadata is missing or the frame pts is less
16133 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
16134 missing.
16135
16136 That basically means that an input frame is selected if its pts is within the
16137 interval set by the concat demuxer.
16138
16139 @end table
16140
16141 The default value of the select expression is "1".
16142
16143 @subsection Examples
16144
16145 @itemize
16146 @item
16147 Select all frames in input:
16148 @example
16149 select
16150 @end example
16151
16152 The example above is the same as:
16153 @example
16154 select=1
16155 @end example
16156
16157 @item
16158 Skip all frames:
16159 @example
16160 select=0
16161 @end example
16162
16163 @item
16164 Select only I-frames:
16165 @example
16166 select='eq(pict_type\,I)'
16167 @end example
16168
16169 @item
16170 Select one frame every 100:
16171 @example
16172 select='not(mod(n\,100))'
16173 @end example
16174
16175 @item
16176 Select only frames contained in the 10-20 time interval:
16177 @example
16178 select=between(t\,10\,20)
16179 @end example
16180
16181 @item
16182 Select only I-frames contained in the 10-20 time interval:
16183 @example
16184 select=between(t\,10\,20)*eq(pict_type\,I)
16185 @end example
16186
16187 @item
16188 Select frames with a minimum distance of 10 seconds:
16189 @example
16190 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
16191 @end example
16192
16193 @item
16194 Use aselect to select only audio frames with samples number > 100:
16195 @example
16196 aselect='gt(samples_n\,100)'
16197 @end example
16198
16199 @item
16200 Create a mosaic of the first scenes:
16201 @example
16202 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
16203 @end example
16204
16205 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
16206 choice.
16207
16208 @item
16209 Send even and odd frames to separate outputs, and compose them:
16210 @example
16211 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
16212 @end example
16213
16214 @item
16215 Select useful frames from an ffconcat file which is using inpoints and
16216 outpoints but where the source files are not intra frame only.
16217 @example
16218 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
16219 @end example
16220 @end itemize
16221
16222 @section sendcmd, asendcmd
16223
16224 Send commands to filters in the filtergraph.
16225
16226 These filters read commands to be sent to other filters in the
16227 filtergraph.
16228
16229 @code{sendcmd} must be inserted between two video filters,
16230 @code{asendcmd} must be inserted between two audio filters, but apart
16231 from that they act the same way.
16232
16233 The specification of commands can be provided in the filter arguments
16234 with the @var{commands} option, or in a file specified by the
16235 @var{filename} option.
16236
16237 These filters accept the following options:
16238 @table @option
16239 @item commands, c
16240 Set the commands to be read and sent to the other filters.
16241 @item filename, f
16242 Set the filename of the commands to be read and sent to the other
16243 filters.
16244 @end table
16245
16246 @subsection Commands syntax
16247
16248 A commands description consists of a sequence of interval
16249 specifications, comprising a list of commands to be executed when a
16250 particular event related to that interval occurs. The occurring event
16251 is typically the current frame time entering or leaving a given time
16252 interval.
16253
16254 An interval is specified by the following syntax:
16255 @example
16256 @var{START}[-@var{END}] @var{COMMANDS};
16257 @end example
16258
16259 The time interval is specified by the @var{START} and @var{END} times.
16260 @var{END} is optional and defaults to the maximum time.
16261
16262 The current frame time is considered within the specified interval if
16263 it is included in the interval [@var{START}, @var{END}), that is when
16264 the time is greater or equal to @var{START} and is lesser than
16265 @var{END}.
16266
16267 @var{COMMANDS} consists of a sequence of one or more command
16268 specifications, separated by ",", relating to that interval.  The
16269 syntax of a command specification is given by:
16270 @example
16271 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
16272 @end example
16273
16274 @var{FLAGS} is optional and specifies the type of events relating to
16275 the time interval which enable sending the specified command, and must
16276 be a non-null sequence of identifier flags separated by "+" or "|" and
16277 enclosed between "[" and "]".
16278
16279 The following flags are recognized:
16280 @table @option
16281 @item enter
16282 The command is sent when the current frame timestamp enters the
16283 specified interval. In other words, the command is sent when the
16284 previous frame timestamp was not in the given interval, and the
16285 current is.
16286
16287 @item leave
16288 The command is sent when the current frame timestamp leaves the
16289 specified interval. In other words, the command is sent when the
16290 previous frame timestamp was in the given interval, and the
16291 current is not.
16292 @end table
16293
16294 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
16295 assumed.
16296
16297 @var{TARGET} specifies the target of the command, usually the name of
16298 the filter class or a specific filter instance name.
16299
16300 @var{COMMAND} specifies the name of the command for the target filter.
16301
16302 @var{ARG} is optional and specifies the optional list of argument for
16303 the given @var{COMMAND}.
16304
16305 Between one interval specification and another, whitespaces, or
16306 sequences of characters starting with @code{#} until the end of line,
16307 are ignored and can be used to annotate comments.
16308
16309 A simplified BNF description of the commands specification syntax
16310 follows:
16311 @example
16312 @var{COMMAND_FLAG}  ::= "enter" | "leave"
16313 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
16314 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
16315 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
16316 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
16317 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
16318 @end example
16319
16320 @subsection Examples
16321
16322 @itemize
16323 @item
16324 Specify audio tempo change at second 4:
16325 @example
16326 asendcmd=c='4.0 atempo tempo 1.5',atempo
16327 @end example
16328
16329 @item
16330 Specify a list of drawtext and hue commands in a file.
16331 @example
16332 # show text in the interval 5-10
16333 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
16334          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
16335
16336 # desaturate the image in the interval 15-20
16337 15.0-20.0 [enter] hue s 0,
16338           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
16339           [leave] hue s 1,
16340           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
16341
16342 # apply an exponential saturation fade-out effect, starting from time 25
16343 25 [enter] hue s exp(25-t)
16344 @end example
16345
16346 A filtergraph allowing to read and process the above command list
16347 stored in a file @file{test.cmd}, can be specified with:
16348 @example
16349 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
16350 @end example
16351 @end itemize
16352
16353 @anchor{setpts}
16354 @section setpts, asetpts
16355
16356 Change the PTS (presentation timestamp) of the input frames.
16357
16358 @code{setpts} works on video frames, @code{asetpts} on audio frames.
16359
16360 This filter accepts the following options:
16361
16362 @table @option
16363
16364 @item expr
16365 The expression which is evaluated for each frame to construct its timestamp.
16366
16367 @end table
16368
16369 The expression is evaluated through the eval API and can contain the following
16370 constants:
16371
16372 @table @option
16373 @item FRAME_RATE
16374 frame rate, only defined for constant frame-rate video
16375
16376 @item PTS
16377 The presentation timestamp in input
16378
16379 @item N
16380 The count of the input frame for video or the number of consumed samples,
16381 not including the current frame for audio, starting from 0.
16382
16383 @item NB_CONSUMED_SAMPLES
16384 The number of consumed samples, not including the current frame (only
16385 audio)
16386
16387 @item NB_SAMPLES, S
16388 The number of samples in the current frame (only audio)
16389
16390 @item SAMPLE_RATE, SR
16391 The audio sample rate.
16392
16393 @item STARTPTS
16394 The PTS of the first frame.
16395
16396 @item STARTT
16397 the time in seconds of the first frame
16398
16399 @item INTERLACED
16400 State whether the current frame is interlaced.
16401
16402 @item T
16403 the time in seconds of the current frame
16404
16405 @item POS
16406 original position in the file of the frame, or undefined if undefined
16407 for the current frame
16408
16409 @item PREV_INPTS
16410 The previous input PTS.
16411
16412 @item PREV_INT
16413 previous input time in seconds
16414
16415 @item PREV_OUTPTS
16416 The previous output PTS.
16417
16418 @item PREV_OUTT
16419 previous output time in seconds
16420
16421 @item RTCTIME
16422 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
16423 instead.
16424
16425 @item RTCSTART
16426 The wallclock (RTC) time at the start of the movie in microseconds.
16427
16428 @item TB
16429 The timebase of the input timestamps.
16430
16431 @end table
16432
16433 @subsection Examples
16434
16435 @itemize
16436 @item
16437 Start counting PTS from zero
16438 @example
16439 setpts=PTS-STARTPTS
16440 @end example
16441
16442 @item
16443 Apply fast motion effect:
16444 @example
16445 setpts=0.5*PTS
16446 @end example
16447
16448 @item
16449 Apply slow motion effect:
16450 @example
16451 setpts=2.0*PTS
16452 @end example
16453
16454 @item
16455 Set fixed rate of 25 frames per second:
16456 @example
16457 setpts=N/(25*TB)
16458 @end example
16459
16460 @item
16461 Set fixed rate 25 fps with some jitter:
16462 @example
16463 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
16464 @end example
16465
16466 @item
16467 Apply an offset of 10 seconds to the input PTS:
16468 @example
16469 setpts=PTS+10/TB
16470 @end example
16471
16472 @item
16473 Generate timestamps from a "live source" and rebase onto the current timebase:
16474 @example
16475 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
16476 @end example
16477
16478 @item
16479 Generate timestamps by counting samples:
16480 @example
16481 asetpts=N/SR/TB
16482 @end example
16483
16484 @end itemize
16485
16486 @section settb, asettb
16487
16488 Set the timebase to use for the output frames timestamps.
16489 It is mainly useful for testing timebase configuration.
16490
16491 It accepts the following parameters:
16492
16493 @table @option
16494
16495 @item expr, tb
16496 The expression which is evaluated into the output timebase.
16497
16498 @end table
16499
16500 The value for @option{tb} is an arithmetic expression representing a
16501 rational. The expression can contain the constants "AVTB" (the default
16502 timebase), "intb" (the input timebase) and "sr" (the sample rate,
16503 audio only). Default value is "intb".
16504
16505 @subsection Examples
16506
16507 @itemize
16508 @item
16509 Set the timebase to 1/25:
16510 @example
16511 settb=expr=1/25
16512 @end example
16513
16514 @item
16515 Set the timebase to 1/10:
16516 @example
16517 settb=expr=0.1
16518 @end example
16519
16520 @item
16521 Set the timebase to 1001/1000:
16522 @example
16523 settb=1+0.001
16524 @end example
16525
16526 @item
16527 Set the timebase to 2*intb:
16528 @example
16529 settb=2*intb
16530 @end example
16531
16532 @item
16533 Set the default timebase value:
16534 @example
16535 settb=AVTB
16536 @end example
16537 @end itemize
16538
16539 @section showcqt
16540 Convert input audio to a video output representing frequency spectrum
16541 logarithmically using Brown-Puckette constant Q transform algorithm with
16542 direct frequency domain coefficient calculation (but the transform itself
16543 is not really constant Q, instead the Q factor is actually variable/clamped),
16544 with musical tone scale, from E0 to D#10.
16545
16546 The filter accepts the following options:
16547
16548 @table @option
16549 @item size, s
16550 Specify the video size for the output. It must be even. For the syntax of this option,
16551 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16552 Default value is @code{1920x1080}.
16553
16554 @item fps, rate, r
16555 Set the output frame rate. Default value is @code{25}.
16556
16557 @item bar_h
16558 Set the bargraph height. It must be even. Default value is @code{-1} which
16559 computes the bargraph height automatically.
16560
16561 @item axis_h
16562 Set the axis height. It must be even. Default value is @code{-1} which computes
16563 the axis height automatically.
16564
16565 @item sono_h
16566 Set the sonogram height. It must be even. Default value is @code{-1} which
16567 computes the sonogram height automatically.
16568
16569 @item fullhd
16570 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
16571 instead. Default value is @code{1}.
16572
16573 @item sono_v, volume
16574 Specify the sonogram volume expression. It can contain variables:
16575 @table @option
16576 @item bar_v
16577 the @var{bar_v} evaluated expression
16578 @item frequency, freq, f
16579 the frequency where it is evaluated
16580 @item timeclamp, tc
16581 the value of @var{timeclamp} option
16582 @end table
16583 and functions:
16584 @table @option
16585 @item a_weighting(f)
16586 A-weighting of equal loudness
16587 @item b_weighting(f)
16588 B-weighting of equal loudness
16589 @item c_weighting(f)
16590 C-weighting of equal loudness.
16591 @end table
16592 Default value is @code{16}.
16593
16594 @item bar_v, volume2
16595 Specify the bargraph volume expression. It can contain variables:
16596 @table @option
16597 @item sono_v
16598 the @var{sono_v} evaluated expression
16599 @item frequency, freq, f
16600 the frequency where it is evaluated
16601 @item timeclamp, tc
16602 the value of @var{timeclamp} option
16603 @end table
16604 and functions:
16605 @table @option
16606 @item a_weighting(f)
16607 A-weighting of equal loudness
16608 @item b_weighting(f)
16609 B-weighting of equal loudness
16610 @item c_weighting(f)
16611 C-weighting of equal loudness.
16612 @end table
16613 Default value is @code{sono_v}.
16614
16615 @item sono_g, gamma
16616 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
16617 higher gamma makes the spectrum having more range. Default value is @code{3}.
16618 Acceptable range is @code{[1, 7]}.
16619
16620 @item bar_g, gamma2
16621 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
16622 @code{[1, 7]}.
16623
16624 @item timeclamp, tc
16625 Specify the transform timeclamp. At low frequency, there is trade-off between
16626 accuracy in time domain and frequency domain. If timeclamp is lower,
16627 event in time domain is represented more accurately (such as fast bass drum),
16628 otherwise event in frequency domain is represented more accurately
16629 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
16630
16631 @item basefreq
16632 Specify the transform base frequency. Default value is @code{20.01523126408007475},
16633 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
16634
16635 @item endfreq
16636 Specify the transform end frequency. Default value is @code{20495.59681441799654},
16637 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
16638
16639 @item coeffclamp
16640 This option is deprecated and ignored.
16641
16642 @item tlength
16643 Specify the transform length in time domain. Use this option to control accuracy
16644 trade-off between time domain and frequency domain at every frequency sample.
16645 It can contain variables:
16646 @table @option
16647 @item frequency, freq, f
16648 the frequency where it is evaluated
16649 @item timeclamp, tc
16650 the value of @var{timeclamp} option.
16651 @end table
16652 Default value is @code{384*tc/(384+tc*f)}.
16653
16654 @item count
16655 Specify the transform count for every video frame. Default value is @code{6}.
16656 Acceptable range is @code{[1, 30]}.
16657
16658 @item fcount
16659 Specify the transform count for every single pixel. Default value is @code{0},
16660 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
16661
16662 @item fontfile
16663 Specify font file for use with freetype to draw the axis. If not specified,
16664 use embedded font. Note that drawing with font file or embedded font is not
16665 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
16666 option instead.
16667
16668 @item fontcolor
16669 Specify font color expression. This is arithmetic expression that should return
16670 integer value 0xRRGGBB. It can contain variables:
16671 @table @option
16672 @item frequency, freq, f
16673 the frequency where it is evaluated
16674 @item timeclamp, tc
16675 the value of @var{timeclamp} option
16676 @end table
16677 and functions:
16678 @table @option
16679 @item midi(f)
16680 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
16681 @item r(x), g(x), b(x)
16682 red, green, and blue value of intensity x.
16683 @end table
16684 Default value is @code{st(0, (midi(f)-59.5)/12);
16685 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
16686 r(1-ld(1)) + b(ld(1))}.
16687
16688 @item axisfile
16689 Specify image file to draw the axis. This option override @var{fontfile} and
16690 @var{fontcolor} option.
16691
16692 @item axis, text
16693 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
16694 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
16695 Default value is @code{1}.
16696
16697 @end table
16698
16699 @subsection Examples
16700
16701 @itemize
16702 @item
16703 Playing audio while showing the spectrum:
16704 @example
16705 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
16706 @end example
16707
16708 @item
16709 Same as above, but with frame rate 30 fps:
16710 @example
16711 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
16712 @end example
16713
16714 @item
16715 Playing at 1280x720:
16716 @example
16717 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
16718 @end example
16719
16720 @item
16721 Disable sonogram display:
16722 @example
16723 sono_h=0
16724 @end example
16725
16726 @item
16727 A1 and its harmonics: A1, A2, (near)E3, A3:
16728 @example
16729 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),
16730                  asplit[a][out1]; [a] showcqt [out0]'
16731 @end example
16732
16733 @item
16734 Same as above, but with more accuracy in frequency domain:
16735 @example
16736 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),
16737                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
16738 @end example
16739
16740 @item
16741 Custom volume:
16742 @example
16743 bar_v=10:sono_v=bar_v*a_weighting(f)
16744 @end example
16745
16746 @item
16747 Custom gamma, now spectrum is linear to the amplitude.
16748 @example
16749 bar_g=2:sono_g=2
16750 @end example
16751
16752 @item
16753 Custom tlength equation:
16754 @example
16755 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)))'
16756 @end example
16757
16758 @item
16759 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
16760 @example
16761 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
16762 @end example
16763
16764 @item
16765 Custom frequency range with custom axis using image file:
16766 @example
16767 axisfile=myaxis.png:basefreq=40:endfreq=10000
16768 @end example
16769 @end itemize
16770
16771 @section showfreqs
16772
16773 Convert input audio to video output representing the audio power spectrum.
16774 Audio amplitude is on Y-axis while frequency is on X-axis.
16775
16776 The filter accepts the following options:
16777
16778 @table @option
16779 @item size, s
16780 Specify size of video. For the syntax of this option, check the
16781 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16782 Default is @code{1024x512}.
16783
16784 @item mode
16785 Set display mode.
16786 This set how each frequency bin will be represented.
16787
16788 It accepts the following values:
16789 @table @samp
16790 @item line
16791 @item bar
16792 @item dot
16793 @end table
16794 Default is @code{bar}.
16795
16796 @item ascale
16797 Set amplitude scale.
16798
16799 It accepts the following values:
16800 @table @samp
16801 @item lin
16802 Linear scale.
16803
16804 @item sqrt
16805 Square root scale.
16806
16807 @item cbrt
16808 Cubic root scale.
16809
16810 @item log
16811 Logarithmic scale.
16812 @end table
16813 Default is @code{log}.
16814
16815 @item fscale
16816 Set frequency scale.
16817
16818 It accepts the following values:
16819 @table @samp
16820 @item lin
16821 Linear scale.
16822
16823 @item log
16824 Logarithmic scale.
16825
16826 @item rlog
16827 Reverse logarithmic scale.
16828 @end table
16829 Default is @code{lin}.
16830
16831 @item win_size
16832 Set window size.
16833
16834 It accepts the following values:
16835 @table @samp
16836 @item w16
16837 @item w32
16838 @item w64
16839 @item w128
16840 @item w256
16841 @item w512
16842 @item w1024
16843 @item w2048
16844 @item w4096
16845 @item w8192
16846 @item w16384
16847 @item w32768
16848 @item w65536
16849 @end table
16850 Default is @code{w2048}
16851
16852 @item win_func
16853 Set windowing function.
16854
16855 It accepts the following values:
16856 @table @samp
16857 @item rect
16858 @item bartlett
16859 @item hanning
16860 @item hamming
16861 @item blackman
16862 @item welch
16863 @item flattop
16864 @item bharris
16865 @item bnuttall
16866 @item bhann
16867 @item sine
16868 @item nuttall
16869 @item lanczos
16870 @item gauss
16871 @item tukey
16872 @item dolph
16873 @item cauchy
16874 @item parzen
16875 @item poisson
16876 @end table
16877 Default is @code{hanning}.
16878
16879 @item overlap
16880 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16881 which means optimal overlap for selected window function will be picked.
16882
16883 @item averaging
16884 Set time averaging. Setting this to 0 will display current maximal peaks.
16885 Default is @code{1}, which means time averaging is disabled.
16886
16887 @item colors
16888 Specify list of colors separated by space or by '|' which will be used to
16889 draw channel frequencies. Unrecognized or missing colors will be replaced
16890 by white color.
16891
16892 @item cmode
16893 Set channel display mode.
16894
16895 It accepts the following values:
16896 @table @samp
16897 @item combined
16898 @item separate
16899 @end table
16900 Default is @code{combined}.
16901
16902 @item minamp
16903 Set minimum amplitude used in @code{log} amplitude scaler.
16904
16905 @end table
16906
16907 @anchor{showspectrum}
16908 @section showspectrum
16909
16910 Convert input audio to a video output, representing the audio frequency
16911 spectrum.
16912
16913 The filter accepts the following options:
16914
16915 @table @option
16916 @item size, s
16917 Specify the video size for the output. For the syntax of this option, check the
16918 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16919 Default value is @code{640x512}.
16920
16921 @item slide
16922 Specify how the spectrum should slide along the window.
16923
16924 It accepts the following values:
16925 @table @samp
16926 @item replace
16927 the samples start again on the left when they reach the right
16928 @item scroll
16929 the samples scroll from right to left
16930 @item rscroll
16931 the samples scroll from left to right
16932 @item fullframe
16933 frames are only produced when the samples reach the right
16934 @end table
16935
16936 Default value is @code{replace}.
16937
16938 @item mode
16939 Specify display mode.
16940
16941 It accepts the following values:
16942 @table @samp
16943 @item combined
16944 all channels are displayed in the same row
16945 @item separate
16946 all channels are displayed in separate rows
16947 @end table
16948
16949 Default value is @samp{combined}.
16950
16951 @item color
16952 Specify display color mode.
16953
16954 It accepts the following values:
16955 @table @samp
16956 @item channel
16957 each channel is displayed in a separate color
16958 @item intensity
16959 each channel is displayed using the same color scheme
16960 @item rainbow
16961 each channel is displayed using the rainbow color scheme
16962 @item moreland
16963 each channel is displayed using the moreland color scheme
16964 @item nebulae
16965 each channel is displayed using the nebulae color scheme
16966 @item fire
16967 each channel is displayed using the fire color scheme
16968 @item fiery
16969 each channel is displayed using the fiery color scheme
16970 @item fruit
16971 each channel is displayed using the fruit color scheme
16972 @item cool
16973 each channel is displayed using the cool color scheme
16974 @end table
16975
16976 Default value is @samp{channel}.
16977
16978 @item scale
16979 Specify scale used for calculating intensity color values.
16980
16981 It accepts the following values:
16982 @table @samp
16983 @item lin
16984 linear
16985 @item sqrt
16986 square root, default
16987 @item cbrt
16988 cubic root
16989 @item 4thrt
16990 4th root
16991 @item 5thrt
16992 5th root
16993 @item log
16994 logarithmic
16995 @end table
16996
16997 Default value is @samp{sqrt}.
16998
16999 @item saturation
17000 Set saturation modifier for displayed colors. Negative values provide
17001 alternative color scheme. @code{0} is no saturation at all.
17002 Saturation must be in [-10.0, 10.0] range.
17003 Default value is @code{1}.
17004
17005 @item win_func
17006 Set window function.
17007
17008 It accepts the following values:
17009 @table @samp
17010 @item rect
17011 @item bartlett
17012 @item hann
17013 @item hanning
17014 @item hamming
17015 @item blackman
17016 @item welch
17017 @item flattop
17018 @item bharris
17019 @item bnuttall
17020 @item bhann
17021 @item sine
17022 @item nuttall
17023 @item lanczos
17024 @item gauss
17025 @item tukey
17026 @item dolph
17027 @item cauchy
17028 @item parzen
17029 @item poisson
17030 @end table
17031
17032 Default value is @code{hann}.
17033
17034 @item orientation
17035 Set orientation of time vs frequency axis. Can be @code{vertical} or
17036 @code{horizontal}. Default is @code{vertical}.
17037
17038 @item overlap
17039 Set ratio of overlap window. Default value is @code{0}.
17040 When value is @code{1} overlap is set to recommended size for specific
17041 window function currently used.
17042
17043 @item gain
17044 Set scale gain for calculating intensity color values.
17045 Default value is @code{1}.
17046
17047 @item data
17048 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
17049
17050 @item rotation
17051 Set color rotation, must be in [-1.0, 1.0] range.
17052 Default value is @code{0}.
17053 @end table
17054
17055 The usage is very similar to the showwaves filter; see the examples in that
17056 section.
17057
17058 @subsection Examples
17059
17060 @itemize
17061 @item
17062 Large window with logarithmic color scaling:
17063 @example
17064 showspectrum=s=1280x480:scale=log
17065 @end example
17066
17067 @item
17068 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
17069 @example
17070 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17071              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
17072 @end example
17073 @end itemize
17074
17075 @section showspectrumpic
17076
17077 Convert input audio to a single video frame, representing the audio frequency
17078 spectrum.
17079
17080 The filter accepts the following options:
17081
17082 @table @option
17083 @item size, s
17084 Specify the video size for the output. For the syntax of this option, check the
17085 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17086 Default value is @code{4096x2048}.
17087
17088 @item mode
17089 Specify display mode.
17090
17091 It accepts the following values:
17092 @table @samp
17093 @item combined
17094 all channels are displayed in the same row
17095 @item separate
17096 all channels are displayed in separate rows
17097 @end table
17098 Default value is @samp{combined}.
17099
17100 @item color
17101 Specify display color mode.
17102
17103 It accepts the following values:
17104 @table @samp
17105 @item channel
17106 each channel is displayed in a separate color
17107 @item intensity
17108 each channel is displayed using the same color scheme
17109 @item rainbow
17110 each channel is displayed using the rainbow color scheme
17111 @item moreland
17112 each channel is displayed using the moreland color scheme
17113 @item nebulae
17114 each channel is displayed using the nebulae color scheme
17115 @item fire
17116 each channel is displayed using the fire color scheme
17117 @item fiery
17118 each channel is displayed using the fiery color scheme
17119 @item fruit
17120 each channel is displayed using the fruit color scheme
17121 @item cool
17122 each channel is displayed using the cool color scheme
17123 @end table
17124 Default value is @samp{intensity}.
17125
17126 @item scale
17127 Specify scale used for calculating intensity color values.
17128
17129 It accepts the following values:
17130 @table @samp
17131 @item lin
17132 linear
17133 @item sqrt
17134 square root, default
17135 @item cbrt
17136 cubic root
17137 @item 4thrt
17138 4th root
17139 @item 5thrt
17140 5th root
17141 @item log
17142 logarithmic
17143 @end table
17144 Default value is @samp{log}.
17145
17146 @item saturation
17147 Set saturation modifier for displayed colors. Negative values provide
17148 alternative color scheme. @code{0} is no saturation at all.
17149 Saturation must be in [-10.0, 10.0] range.
17150 Default value is @code{1}.
17151
17152 @item win_func
17153 Set window function.
17154
17155 It accepts the following values:
17156 @table @samp
17157 @item rect
17158 @item bartlett
17159 @item hann
17160 @item hanning
17161 @item hamming
17162 @item blackman
17163 @item welch
17164 @item flattop
17165 @item bharris
17166 @item bnuttall
17167 @item bhann
17168 @item sine
17169 @item nuttall
17170 @item lanczos
17171 @item gauss
17172 @item tukey
17173 @item dolph
17174 @item cauchy
17175 @item parzen
17176 @item poisson
17177 @end table
17178 Default value is @code{hann}.
17179
17180 @item orientation
17181 Set orientation of time vs frequency axis. Can be @code{vertical} or
17182 @code{horizontal}. Default is @code{vertical}.
17183
17184 @item gain
17185 Set scale gain for calculating intensity color values.
17186 Default value is @code{1}.
17187
17188 @item legend
17189 Draw time and frequency axes and legends. Default is enabled.
17190
17191 @item rotation
17192 Set color rotation, must be in [-1.0, 1.0] range.
17193 Default value is @code{0}.
17194 @end table
17195
17196 @subsection Examples
17197
17198 @itemize
17199 @item
17200 Extract an audio spectrogram of a whole audio track
17201 in a 1024x1024 picture using @command{ffmpeg}:
17202 @example
17203 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
17204 @end example
17205 @end itemize
17206
17207 @section showvolume
17208
17209 Convert input audio volume to a video output.
17210
17211 The filter accepts the following options:
17212
17213 @table @option
17214 @item rate, r
17215 Set video rate.
17216
17217 @item b
17218 Set border width, allowed range is [0, 5]. Default is 1.
17219
17220 @item w
17221 Set channel width, allowed range is [80, 8192]. Default is 400.
17222
17223 @item h
17224 Set channel height, allowed range is [1, 900]. Default is 20.
17225
17226 @item f
17227 Set fade, allowed range is [0.001, 1]. Default is 0.95.
17228
17229 @item c
17230 Set volume color expression.
17231
17232 The expression can use the following variables:
17233
17234 @table @option
17235 @item VOLUME
17236 Current max volume of channel in dB.
17237
17238 @item PEAK
17239 Current peak.
17240
17241 @item CHANNEL
17242 Current channel number, starting from 0.
17243 @end table
17244
17245 @item t
17246 If set, displays channel names. Default is enabled.
17247
17248 @item v
17249 If set, displays volume values. Default is enabled.
17250
17251 @item o
17252 Set orientation, can be @code{horizontal} or @code{vertical},
17253 default is @code{horizontal}.
17254
17255 @item s
17256 Set step size, allowed range s [0, 5]. Default is 0, which means
17257 step is disabled.
17258 @end table
17259
17260 @section showwaves
17261
17262 Convert input audio to a video output, representing the samples waves.
17263
17264 The filter accepts the following options:
17265
17266 @table @option
17267 @item size, s
17268 Specify the video size for the output. For the syntax of this option, check the
17269 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17270 Default value is @code{600x240}.
17271
17272 @item mode
17273 Set display mode.
17274
17275 Available values are:
17276 @table @samp
17277 @item point
17278 Draw a point for each sample.
17279
17280 @item line
17281 Draw a vertical line for each sample.
17282
17283 @item p2p
17284 Draw a point for each sample and a line between them.
17285
17286 @item cline
17287 Draw a centered vertical line for each sample.
17288 @end table
17289
17290 Default value is @code{point}.
17291
17292 @item n
17293 Set the number of samples which are printed on the same column. A
17294 larger value will decrease the frame rate. Must be a positive
17295 integer. This option can be set only if the value for @var{rate}
17296 is not explicitly specified.
17297
17298 @item rate, r
17299 Set the (approximate) output frame rate. This is done by setting the
17300 option @var{n}. Default value is "25".
17301
17302 @item split_channels
17303 Set if channels should be drawn separately or overlap. Default value is 0.
17304
17305 @item colors
17306 Set colors separated by '|' which are going to be used for drawing of each channel.
17307
17308 @item scale
17309 Set amplitude scale.
17310
17311 Available values are:
17312 @table @samp
17313 @item lin
17314 Linear.
17315
17316 @item log
17317 Logarithmic.
17318
17319 @item sqrt
17320 Square root.
17321
17322 @item cbrt
17323 Cubic root.
17324 @end table
17325
17326 Default is linear.
17327 @end table
17328
17329 @subsection Examples
17330
17331 @itemize
17332 @item
17333 Output the input file audio and the corresponding video representation
17334 at the same time:
17335 @example
17336 amovie=a.mp3,asplit[out0],showwaves[out1]
17337 @end example
17338
17339 @item
17340 Create a synthetic signal and show it with showwaves, forcing a
17341 frame rate of 30 frames per second:
17342 @example
17343 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
17344 @end example
17345 @end itemize
17346
17347 @section showwavespic
17348
17349 Convert input audio to a single video frame, representing the samples waves.
17350
17351 The filter accepts the following options:
17352
17353 @table @option
17354 @item size, s
17355 Specify the video size for the output. For the syntax of this option, check the
17356 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17357 Default value is @code{600x240}.
17358
17359 @item split_channels
17360 Set if channels should be drawn separately or overlap. Default value is 0.
17361
17362 @item colors
17363 Set colors separated by '|' which are going to be used for drawing of each channel.
17364
17365 @item scale
17366 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
17367 Default is linear.
17368 @end table
17369
17370 @subsection Examples
17371
17372 @itemize
17373 @item
17374 Extract a channel split representation of the wave form of a whole audio track
17375 in a 1024x800 picture using @command{ffmpeg}:
17376 @example
17377 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
17378 @end example
17379 @end itemize
17380
17381 @section spectrumsynth
17382
17383 Sythesize audio from 2 input video spectrums, first input stream represents
17384 magnitude across time and second represents phase across time.
17385 The filter will transform from frequency domain as displayed in videos back
17386 to time domain as presented in audio output.
17387
17388 This filter is primarly created for reversing processed @ref{showspectrum}
17389 filter outputs, but can synthesize sound from other spectrograms too.
17390 But in such case results are going to be poor if the phase data is not
17391 available, because in such cases phase data need to be recreated, usually
17392 its just recreated from random noise.
17393 For best results use gray only output (@code{channel} color mode in
17394 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
17395 @code{lin} scale for phase video. To produce phase, for 2nd video, use
17396 @code{data} option. Inputs videos should generally use @code{fullframe}
17397 slide mode as that saves resources needed for decoding video.
17398
17399 The filter accepts the following options:
17400
17401 @table @option
17402 @item sample_rate
17403 Specify sample rate of output audio, the sample rate of audio from which
17404 spectrum was generated may differ.
17405
17406 @item channels
17407 Set number of channels represented in input video spectrums.
17408
17409 @item scale
17410 Set scale which was used when generating magnitude input spectrum.
17411 Can be @code{lin} or @code{log}. Default is @code{log}.
17412
17413 @item slide
17414 Set slide which was used when generating inputs spectrums.
17415 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
17416 Default is @code{fullframe}.
17417
17418 @item win_func
17419 Set window function used for resynthesis.
17420
17421 @item overlap
17422 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17423 which means optimal overlap for selected window function will be picked.
17424
17425 @item orientation
17426 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
17427 Default is @code{vertical}.
17428 @end table
17429
17430 @subsection Examples
17431
17432 @itemize
17433 @item
17434 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
17435 then resynthesize videos back to audio with spectrumsynth:
17436 @example
17437 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
17438 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
17439 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
17440 @end example
17441 @end itemize
17442
17443 @section split, asplit
17444
17445 Split input into several identical outputs.
17446
17447 @code{asplit} works with audio input, @code{split} with video.
17448
17449 The filter accepts a single parameter which specifies the number of outputs. If
17450 unspecified, it defaults to 2.
17451
17452 @subsection Examples
17453
17454 @itemize
17455 @item
17456 Create two separate outputs from the same input:
17457 @example
17458 [in] split [out0][out1]
17459 @end example
17460
17461 @item
17462 To create 3 or more outputs, you need to specify the number of
17463 outputs, like in:
17464 @example
17465 [in] asplit=3 [out0][out1][out2]
17466 @end example
17467
17468 @item
17469 Create two separate outputs from the same input, one cropped and
17470 one padded:
17471 @example
17472 [in] split [splitout1][splitout2];
17473 [splitout1] crop=100:100:0:0    [cropout];
17474 [splitout2] pad=200:200:100:100 [padout];
17475 @end example
17476
17477 @item
17478 Create 5 copies of the input audio with @command{ffmpeg}:
17479 @example
17480 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
17481 @end example
17482 @end itemize
17483
17484 @section zmq, azmq
17485
17486 Receive commands sent through a libzmq client, and forward them to
17487 filters in the filtergraph.
17488
17489 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
17490 must be inserted between two video filters, @code{azmq} between two
17491 audio filters.
17492
17493 To enable these filters you need to install the libzmq library and
17494 headers and configure FFmpeg with @code{--enable-libzmq}.
17495
17496 For more information about libzmq see:
17497 @url{http://www.zeromq.org/}
17498
17499 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
17500 receives messages sent through a network interface defined by the
17501 @option{bind_address} option.
17502
17503 The received message must be in the form:
17504 @example
17505 @var{TARGET} @var{COMMAND} [@var{ARG}]
17506 @end example
17507
17508 @var{TARGET} specifies the target of the command, usually the name of
17509 the filter class or a specific filter instance name.
17510
17511 @var{COMMAND} specifies the name of the command for the target filter.
17512
17513 @var{ARG} is optional and specifies the optional argument list for the
17514 given @var{COMMAND}.
17515
17516 Upon reception, the message is processed and the corresponding command
17517 is injected into the filtergraph. Depending on the result, the filter
17518 will send a reply to the client, adopting the format:
17519 @example
17520 @var{ERROR_CODE} @var{ERROR_REASON}
17521 @var{MESSAGE}
17522 @end example
17523
17524 @var{MESSAGE} is optional.
17525
17526 @subsection Examples
17527
17528 Look at @file{tools/zmqsend} for an example of a zmq client which can
17529 be used to send commands processed by these filters.
17530
17531 Consider the following filtergraph generated by @command{ffplay}
17532 @example
17533 ffplay -dumpgraph 1 -f lavfi "
17534 color=s=100x100:c=red  [l];
17535 color=s=100x100:c=blue [r];
17536 nullsrc=s=200x100, zmq [bg];
17537 [bg][l]   overlay      [bg+l];
17538 [bg+l][r] overlay=x=100 "
17539 @end example
17540
17541 To change the color of the left side of the video, the following
17542 command can be used:
17543 @example
17544 echo Parsed_color_0 c yellow | tools/zmqsend
17545 @end example
17546
17547 To change the right side:
17548 @example
17549 echo Parsed_color_1 c pink | tools/zmqsend
17550 @end example
17551
17552 @c man end MULTIMEDIA FILTERS
17553
17554 @chapter Multimedia Sources
17555 @c man begin MULTIMEDIA SOURCES
17556
17557 Below is a description of the currently available multimedia sources.
17558
17559 @section amovie
17560
17561 This is the same as @ref{movie} source, except it selects an audio
17562 stream by default.
17563
17564 @anchor{movie}
17565 @section movie
17566
17567 Read audio and/or video stream(s) from a movie container.
17568
17569 It accepts the following parameters:
17570
17571 @table @option
17572 @item filename
17573 The name of the resource to read (not necessarily a file; it can also be a
17574 device or a stream accessed through some protocol).
17575
17576 @item format_name, f
17577 Specifies the format assumed for the movie to read, and can be either
17578 the name of a container or an input device. If not specified, the
17579 format is guessed from @var{movie_name} or by probing.
17580
17581 @item seek_point, sp
17582 Specifies the seek point in seconds. The frames will be output
17583 starting from this seek point. The parameter is evaluated with
17584 @code{av_strtod}, so the numerical value may be suffixed by an IS
17585 postfix. The default value is "0".
17586
17587 @item streams, s
17588 Specifies the streams to read. Several streams can be specified,
17589 separated by "+". The source will then have as many outputs, in the
17590 same order. The syntax is explained in the ``Stream specifiers''
17591 section in the ffmpeg manual. Two special names, "dv" and "da" specify
17592 respectively the default (best suited) video and audio stream. Default
17593 is "dv", or "da" if the filter is called as "amovie".
17594
17595 @item stream_index, si
17596 Specifies the index of the video stream to read. If the value is -1,
17597 the most suitable video stream will be automatically selected. The default
17598 value is "-1". Deprecated. If the filter is called "amovie", it will select
17599 audio instead of video.
17600
17601 @item loop
17602 Specifies how many times to read the stream in sequence.
17603 If the value is less than 1, the stream will be read again and again.
17604 Default value is "1".
17605
17606 Note that when the movie is looped the source timestamps are not
17607 changed, so it will generate non monotonically increasing timestamps.
17608
17609 @item discontinuity
17610 Specifies the time difference between frames above which the point is
17611 considered a timestamp discontinuity which is removed by adjusting the later
17612 timestamps.
17613 @end table
17614
17615 It allows overlaying a second video on top of the main input of
17616 a filtergraph, as shown in this graph:
17617 @example
17618 input -----------> deltapts0 --> overlay --> output
17619                                     ^
17620                                     |
17621 movie --> scale--> deltapts1 -------+
17622 @end example
17623 @subsection Examples
17624
17625 @itemize
17626 @item
17627 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
17628 on top of the input labelled "in":
17629 @example
17630 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
17631 [in] setpts=PTS-STARTPTS [main];
17632 [main][over] overlay=16:16 [out]
17633 @end example
17634
17635 @item
17636 Read from a video4linux2 device, and overlay it on top of the input
17637 labelled "in":
17638 @example
17639 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
17640 [in] setpts=PTS-STARTPTS [main];
17641 [main][over] overlay=16:16 [out]
17642 @end example
17643
17644 @item
17645 Read the first video stream and the audio stream with id 0x81 from
17646 dvd.vob; the video is connected to the pad named "video" and the audio is
17647 connected to the pad named "audio":
17648 @example
17649 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
17650 @end example
17651 @end itemize
17652
17653 @subsection Commands
17654
17655 Both movie and amovie support the following commands:
17656 @table @option
17657 @item seek
17658 Perform seek using "av_seek_frame".
17659 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
17660 @itemize
17661 @item
17662 @var{stream_index}: If stream_index is -1, a default
17663 stream is selected, and @var{timestamp} is automatically converted
17664 from AV_TIME_BASE units to the stream specific time_base.
17665 @item
17666 @var{timestamp}: Timestamp in AVStream.time_base units
17667 or, if no stream is specified, in AV_TIME_BASE units.
17668 @item
17669 @var{flags}: Flags which select direction and seeking mode.
17670 @end itemize
17671
17672 @item get_duration
17673 Get movie duration in AV_TIME_BASE units.
17674
17675 @end table
17676
17677 @c man end MULTIMEDIA SOURCES