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