]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit '9e2af0e9071a1229cfe21efff394691d91f979b2'
[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 adelay
445
446 Delay one or more audio channels.
447
448 Samples in delayed channel are filled with silence.
449
450 The filter accepts the following option:
451
452 @table @option
453 @item delays
454 Set list of delays in milliseconds for each channel separated by '|'.
455 At least one delay greater than 0 should be provided.
456 Unused delays will be silently ignored. If number of given delays is
457 smaller than number of channels all remaining channels will not be delayed.
458 @end table
459
460 @subsection Examples
461
462 @itemize
463 @item
464 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
465 the second channel (and any other channels that may be present) unchanged.
466 @example
467 adelay=1500|0|500
468 @end example
469 @end itemize
470
471 @section aecho
472
473 Apply echoing to the input audio.
474
475 Echoes are reflected sound and can occur naturally amongst mountains
476 (and sometimes large buildings) when talking or shouting; digital echo
477 effects emulate this behaviour and are often used to help fill out the
478 sound of a single instrument or vocal. The time difference between the
479 original signal and the reflection is the @code{delay}, and the
480 loudness of the reflected signal is the @code{decay}.
481 Multiple echoes can have different delays and decays.
482
483 A description of the accepted parameters follows.
484
485 @table @option
486 @item in_gain
487 Set input gain of reflected signal. Default is @code{0.6}.
488
489 @item out_gain
490 Set output gain of reflected signal. Default is @code{0.3}.
491
492 @item delays
493 Set list of time intervals in milliseconds between original signal and reflections
494 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
495 Default is @code{1000}.
496
497 @item decays
498 Set list of loudnesses of reflected signals separated by '|'.
499 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
500 Default is @code{0.5}.
501 @end table
502
503 @subsection Examples
504
505 @itemize
506 @item
507 Make it sound as if there are twice as many instruments as are actually playing:
508 @example
509 aecho=0.8:0.88:60:0.4
510 @end example
511
512 @item
513 If delay is very short, then it sound like a (metallic) robot playing music:
514 @example
515 aecho=0.8:0.88:6:0.4
516 @end example
517
518 @item
519 A longer delay will sound like an open air concert in the mountains:
520 @example
521 aecho=0.8:0.9:1000:0.3
522 @end example
523
524 @item
525 Same as above but with one more mountain:
526 @example
527 aecho=0.8:0.9:1000|1800:0.3|0.25
528 @end example
529 @end itemize
530
531 @section aemphasis
532 Audio emphasis filter creates or restores material directly taken from LPs or
533 emphased CDs with different filter curves. E.g. to store music on vinyl the
534 signal has to be altered by a filter first to even out the disadvantages of
535 this recording medium.
536 Once the material is played back the inverse filter has to be applied to
537 restore the distortion of the frequency response.
538
539 The filter accepts the following options:
540
541 @table @option
542 @item level_in
543 Set input gain.
544
545 @item level_out
546 Set output gain.
547
548 @item mode
549 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
550 use @code{production} mode. Default is @code{reproduction} mode.
551
552 @item type
553 Set filter type. Selects medium. Can be one of the following:
554
555 @table @option
556 @item col
557 select Columbia.
558 @item emi
559 select EMI.
560 @item bsi
561 select BSI (78RPM).
562 @item riaa
563 select RIAA.
564 @item cd
565 select Compact Disc (CD).
566 @item 50fm
567 select 50µs (FM).
568 @item 75fm
569 select 75µs (FM).
570 @item 50kf
571 select 50µs (FM-KF).
572 @item 75kf
573 select 75µs (FM-KF).
574 @end table
575 @end table
576
577 @section aeval
578
579 Modify an audio signal according to the specified expressions.
580
581 This filter accepts one or more expressions (one for each channel),
582 which are evaluated and used to modify a corresponding audio signal.
583
584 It accepts the following parameters:
585
586 @table @option
587 @item exprs
588 Set the '|'-separated expressions list for each separate channel. If
589 the number of input channels is greater than the number of
590 expressions, the last specified expression is used for the remaining
591 output channels.
592
593 @item channel_layout, c
594 Set output channel layout. If not specified, the channel layout is
595 specified by the number of expressions. If set to @samp{same}, it will
596 use by default the same input channel layout.
597 @end table
598
599 Each expression in @var{exprs} can contain the following constants and functions:
600
601 @table @option
602 @item ch
603 channel number of the current expression
604
605 @item n
606 number of the evaluated sample, starting from 0
607
608 @item s
609 sample rate
610
611 @item t
612 time of the evaluated sample expressed in seconds
613
614 @item nb_in_channels
615 @item nb_out_channels
616 input and output number of channels
617
618 @item val(CH)
619 the value of input channel with number @var{CH}
620 @end table
621
622 Note: this filter is slow. For faster processing you should use a
623 dedicated filter.
624
625 @subsection Examples
626
627 @itemize
628 @item
629 Half volume:
630 @example
631 aeval=val(ch)/2:c=same
632 @end example
633
634 @item
635 Invert phase of the second channel:
636 @example
637 aeval=val(0)|-val(1)
638 @end example
639 @end itemize
640
641 @anchor{afade}
642 @section afade
643
644 Apply fade-in/out effect to input audio.
645
646 A description of the accepted parameters follows.
647
648 @table @option
649 @item type, t
650 Specify the effect type, can be either @code{in} for fade-in, or
651 @code{out} for a fade-out effect. Default is @code{in}.
652
653 @item start_sample, ss
654 Specify the number of the start sample for starting to apply the fade
655 effect. Default is 0.
656
657 @item nb_samples, ns
658 Specify the number of samples for which the fade effect has to last. At
659 the end of the fade-in effect the output audio will have the same
660 volume as the input audio, at the end of the fade-out transition
661 the output audio will be silence. Default is 44100.
662
663 @item start_time, st
664 Specify the start time of the fade effect. Default is 0.
665 The value must be specified as a time duration; see
666 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
667 for the accepted syntax.
668 If set this option is used instead of @var{start_sample}.
669
670 @item duration, d
671 Specify the duration of the fade effect. See
672 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
673 for the accepted syntax.
674 At the end of the fade-in effect the output audio will have the same
675 volume as the input audio, at the end of the fade-out transition
676 the output audio will be silence.
677 By default the duration is determined by @var{nb_samples}.
678 If set this option is used instead of @var{nb_samples}.
679
680 @item curve
681 Set curve for fade transition.
682
683 It accepts the following values:
684 @table @option
685 @item tri
686 select triangular, linear slope (default)
687 @item qsin
688 select quarter of sine wave
689 @item hsin
690 select half of sine wave
691 @item esin
692 select exponential sine wave
693 @item log
694 select logarithmic
695 @item ipar
696 select inverted parabola
697 @item qua
698 select quadratic
699 @item cub
700 select cubic
701 @item squ
702 select square root
703 @item cbr
704 select cubic root
705 @item par
706 select parabola
707 @item exp
708 select exponential
709 @item iqsin
710 select inverted quarter of sine wave
711 @item ihsin
712 select inverted half of sine wave
713 @item dese
714 select double-exponential seat
715 @item desi
716 select double-exponential sigmoid
717 @end table
718 @end table
719
720 @subsection Examples
721
722 @itemize
723 @item
724 Fade in first 15 seconds of audio:
725 @example
726 afade=t=in:ss=0:d=15
727 @end example
728
729 @item
730 Fade out last 25 seconds of a 900 seconds audio:
731 @example
732 afade=t=out:st=875:d=25
733 @end example
734 @end itemize
735
736 @section afftfilt
737 Apply arbitrary expressions to samples in frequency domain.
738
739 @table @option
740 @item real
741 Set frequency domain real expression for each separate channel separated
742 by '|'. Default is "1".
743 If the number of input channels is greater than the number of
744 expressions, the last specified expression is used for the remaining
745 output channels.
746
747 @item imag
748 Set frequency domain imaginary expression for each separate channel
749 separated by '|'. If not set, @var{real} option is used.
750
751 Each expression in @var{real} and @var{imag} can contain the following
752 constants:
753
754 @table @option
755 @item sr
756 sample rate
757
758 @item b
759 current frequency bin number
760
761 @item nb
762 number of available bins
763
764 @item ch
765 channel number of the current expression
766
767 @item chs
768 number of channels
769
770 @item pts
771 current frame pts
772 @end table
773
774 @item win_size
775 Set window size.
776
777 It accepts the following values:
778 @table @samp
779 @item w16
780 @item w32
781 @item w64
782 @item w128
783 @item w256
784 @item w512
785 @item w1024
786 @item w2048
787 @item w4096
788 @item w8192
789 @item w16384
790 @item w32768
791 @item w65536
792 @end table
793 Default is @code{w4096}
794
795 @item win_func
796 Set window function. Default is @code{hann}.
797
798 @item overlap
799 Set window overlap. If set to 1, the recommended overlap for selected
800 window function will be picked. Default is @code{0.75}.
801 @end table
802
803 @subsection Examples
804
805 @itemize
806 @item
807 Leave almost only low frequencies in audio:
808 @example
809 afftfilt="1-clip((b/nb)*b,0,1)"
810 @end example
811 @end itemize
812
813 @anchor{aformat}
814 @section aformat
815
816 Set output format constraints for the input audio. The framework will
817 negotiate the most appropriate format to minimize conversions.
818
819 It accepts the following parameters:
820 @table @option
821
822 @item sample_fmts
823 A '|'-separated list of requested sample formats.
824
825 @item sample_rates
826 A '|'-separated list of requested sample rates.
827
828 @item channel_layouts
829 A '|'-separated list of requested channel layouts.
830
831 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
832 for the required syntax.
833 @end table
834
835 If a parameter is omitted, all values are allowed.
836
837 Force the output to either unsigned 8-bit or signed 16-bit stereo
838 @example
839 aformat=sample_fmts=u8|s16:channel_layouts=stereo
840 @end example
841
842 @section agate
843
844 A gate is mainly used to reduce lower parts of a signal. This kind of signal
845 processing reduces disturbing noise between useful signals.
846
847 Gating is done by detecting the volume below a chosen level @var{threshold}
848 and divide it by the factor set with @var{ratio}. The bottom of the noise
849 floor is set via @var{range}. Because an exact manipulation of the signal
850 would cause distortion of the waveform the reduction can be levelled over
851 time. This is done by setting @var{attack} and @var{release}.
852
853 @var{attack} determines how long the signal has to fall below the threshold
854 before any reduction will occur and @var{release} sets the time the signal
855 has to raise above the threshold to reduce the reduction again.
856 Shorter signals than the chosen attack time will be left untouched.
857
858 @table @option
859 @item level_in
860 Set input level before filtering.
861 Default is 1. Allowed range is from 0.015625 to 64.
862
863 @item range
864 Set the level of gain reduction when the signal is below the threshold.
865 Default is 0.06125. Allowed range is from 0 to 1.
866
867 @item threshold
868 If a signal rises above this level the gain reduction is released.
869 Default is 0.125. Allowed range is from 0 to 1.
870
871 @item ratio
872 Set a ratio about which the signal is reduced.
873 Default is 2. Allowed range is from 1 to 9000.
874
875 @item attack
876 Amount of milliseconds the signal has to rise above the threshold before gain
877 reduction stops.
878 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
879
880 @item release
881 Amount of milliseconds the signal has to fall below the threshold before the
882 reduction is increased again. Default is 250 milliseconds.
883 Allowed range is from 0.01 to 9000.
884
885 @item makeup
886 Set amount of amplification of signal after processing.
887 Default is 1. Allowed range is from 1 to 64.
888
889 @item knee
890 Curve the sharp knee around the threshold to enter gain reduction more softly.
891 Default is 2.828427125. Allowed range is from 1 to 8.
892
893 @item detection
894 Choose if exact signal should be taken for detection or an RMS like one.
895 Default is rms. Can be peak or rms.
896
897 @item link
898 Choose if the average level between all channels or the louder channel affects
899 the reduction.
900 Default is average. Can be average or maximum.
901 @end table
902
903 @section alimiter
904
905 The limiter prevents input signal from raising over a desired threshold.
906 This limiter uses lookahead technology to prevent your signal from distorting.
907 It means that there is a small delay after signal is processed. Keep in mind
908 that the delay it produces is the attack time you set.
909
910 The filter accepts the following options:
911
912 @table @option
913 @item level_in
914 Set input gain. Default is 1.
915
916 @item level_out
917 Set output gain. Default is 1.
918
919 @item limit
920 Don't let signals above this level pass the limiter. Default is 1.
921
922 @item attack
923 The limiter will reach its attenuation level in this amount of time in
924 milliseconds. Default is 5 milliseconds.
925
926 @item release
927 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
928 Default is 50 milliseconds.
929
930 @item asc
931 When gain reduction is always needed ASC takes care of releasing to an
932 average reduction level rather than reaching a reduction of 0 in the release
933 time.
934
935 @item asc_level
936 Select how much the release time is affected by ASC, 0 means nearly no changes
937 in release time while 1 produces higher release times.
938
939 @item level
940 Auto level output signal. Default is enabled.
941 This normalizes audio back to 0dB if enabled.
942 @end table
943
944 Depending on picked setting it is recommended to upsample input 2x or 4x times
945 with @ref{aresample} before applying this filter.
946
947 @section allpass
948
949 Apply a two-pole all-pass filter with central frequency (in Hz)
950 @var{frequency}, and filter-width @var{width}.
951 An all-pass filter changes the audio's frequency to phase relationship
952 without changing its frequency to amplitude relationship.
953
954 The filter accepts the following options:
955
956 @table @option
957 @item frequency, f
958 Set frequency in Hz.
959
960 @item width_type
961 Set method to specify band-width of filter.
962 @table @option
963 @item h
964 Hz
965 @item q
966 Q-Factor
967 @item o
968 octave
969 @item s
970 slope
971 @end table
972
973 @item width, w
974 Specify the band-width of a filter in width_type units.
975 @end table
976
977 @anchor{amerge}
978 @section amerge
979
980 Merge two or more audio streams into a single multi-channel stream.
981
982 The filter accepts the following options:
983
984 @table @option
985
986 @item inputs
987 Set the number of inputs. Default is 2.
988
989 @end table
990
991 If the channel layouts of the inputs are disjoint, and therefore compatible,
992 the channel layout of the output will be set accordingly and the channels
993 will be reordered as necessary. If the channel layouts of the inputs are not
994 disjoint, the output will have all the channels of the first input then all
995 the channels of the second input, in that order, and the channel layout of
996 the output will be the default value corresponding to the total number of
997 channels.
998
999 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1000 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1001 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1002 first input, b1 is the first channel of the second input).
1003
1004 On the other hand, if both input are in stereo, the output channels will be
1005 in the default order: a1, a2, b1, b2, and the channel layout will be
1006 arbitrarily set to 4.0, which may or may not be the expected value.
1007
1008 All inputs must have the same sample rate, and format.
1009
1010 If inputs do not have the same duration, the output will stop with the
1011 shortest.
1012
1013 @subsection Examples
1014
1015 @itemize
1016 @item
1017 Merge two mono files into a stereo stream:
1018 @example
1019 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1020 @end example
1021
1022 @item
1023 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1024 @example
1025 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
1026 @end example
1027 @end itemize
1028
1029 @section amix
1030
1031 Mixes multiple audio inputs into a single output.
1032
1033 Note that this filter only supports float samples (the @var{amerge}
1034 and @var{pan} audio filters support many formats). If the @var{amix}
1035 input has integer samples then @ref{aresample} will be automatically
1036 inserted to perform the conversion to float samples.
1037
1038 For example
1039 @example
1040 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1041 @end example
1042 will mix 3 input audio streams to a single output with the same duration as the
1043 first input and a dropout transition time of 3 seconds.
1044
1045 It accepts the following parameters:
1046 @table @option
1047
1048 @item inputs
1049 The number of inputs. If unspecified, it defaults to 2.
1050
1051 @item duration
1052 How to determine the end-of-stream.
1053 @table @option
1054
1055 @item longest
1056 The duration of the longest input. (default)
1057
1058 @item shortest
1059 The duration of the shortest input.
1060
1061 @item first
1062 The duration of the first input.
1063
1064 @end table
1065
1066 @item dropout_transition
1067 The transition time, in seconds, for volume renormalization when an input
1068 stream ends. The default value is 2 seconds.
1069
1070 @end table
1071
1072 @section anequalizer
1073
1074 High-order parametric multiband equalizer for each channel.
1075
1076 It accepts the following parameters:
1077 @table @option
1078 @item params
1079
1080 This option string is in format:
1081 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1082 Each equalizer band is separated by '|'.
1083
1084 @table @option
1085 @item chn
1086 Set channel number to which equalization will be applied.
1087 If input doesn't have that channel the entry is ignored.
1088
1089 @item cf
1090 Set central frequency for band.
1091 If input doesn't have that frequency the entry is ignored.
1092
1093 @item w
1094 Set band width in hertz.
1095
1096 @item g
1097 Set band gain in dB.
1098
1099 @item f
1100 Set filter type for band, optional, can be:
1101
1102 @table @samp
1103 @item 0
1104 Butterworth, this is default.
1105
1106 @item 1
1107 Chebyshev type 1.
1108
1109 @item 2
1110 Chebyshev type 2.
1111 @end table
1112 @end table
1113
1114 @item curves
1115 With this option activated frequency response of anequalizer is displayed
1116 in video stream.
1117
1118 @item size
1119 Set video stream size. Only useful if curves option is activated.
1120
1121 @item mgain
1122 Set max gain that will be displayed. Only useful if curves option is activated.
1123 Setting this to reasonable value allows to display gain which is derived from
1124 neighbour bands which are too close to each other and thus produce higher gain
1125 when both are activated.
1126
1127 @item fscale
1128 Set frequency scale used to draw frequency response in video output.
1129 Can be linear or logarithmic. Default is logarithmic.
1130
1131 @item colors
1132 Set color for each channel curve which is going to be displayed in video stream.
1133 This is list of color names separated by space or by '|'.
1134 Unrecognised or missing colors will be replaced by white color.
1135 @end table
1136
1137 @subsection Examples
1138
1139 @itemize
1140 @item
1141 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1142 for first 2 channels using Chebyshev type 1 filter:
1143 @example
1144 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1145 @end example
1146 @end itemize
1147
1148 @subsection Commands
1149
1150 This filter supports the following commands:
1151 @table @option
1152 @item change
1153 Alter existing filter parameters.
1154 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1155
1156 @var{fN} is existing filter number, starting from 0, if no such filter is available
1157 error is returned.
1158 @var{freq} set new frequency parameter.
1159 @var{width} set new width parameter in herz.
1160 @var{gain} set new gain parameter in dB.
1161
1162 Full filter invocation with asendcmd may look like this:
1163 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1164 @end table
1165
1166 @section anull
1167
1168 Pass the audio source unchanged to the output.
1169
1170 @section apad
1171
1172 Pad the end of an audio stream with silence.
1173
1174 This can be used together with @command{ffmpeg} @option{-shortest} to
1175 extend audio streams to the same length as the video stream.
1176
1177 A description of the accepted options follows.
1178
1179 @table @option
1180 @item packet_size
1181 Set silence packet size. Default value is 4096.
1182
1183 @item pad_len
1184 Set the number of samples of silence to add to the end. After the
1185 value is reached, the stream is terminated. This option is mutually
1186 exclusive with @option{whole_len}.
1187
1188 @item whole_len
1189 Set the minimum total number of samples in the output audio stream. If
1190 the value is longer than the input audio length, silence is added to
1191 the end, until the value is reached. This option is mutually exclusive
1192 with @option{pad_len}.
1193 @end table
1194
1195 If neither the @option{pad_len} nor the @option{whole_len} option is
1196 set, the filter will add silence to the end of the input stream
1197 indefinitely.
1198
1199 @subsection Examples
1200
1201 @itemize
1202 @item
1203 Add 1024 samples of silence to the end of the input:
1204 @example
1205 apad=pad_len=1024
1206 @end example
1207
1208 @item
1209 Make sure the audio output will contain at least 10000 samples, pad
1210 the input with silence if required:
1211 @example
1212 apad=whole_len=10000
1213 @end example
1214
1215 @item
1216 Use @command{ffmpeg} to pad the audio input with silence, so that the
1217 video stream will always result the shortest and will be converted
1218 until the end in the output file when using the @option{shortest}
1219 option:
1220 @example
1221 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1222 @end example
1223 @end itemize
1224
1225 @section aphaser
1226 Add a phasing effect to the input audio.
1227
1228 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1229 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1230
1231 A description of the accepted parameters follows.
1232
1233 @table @option
1234 @item in_gain
1235 Set input gain. Default is 0.4.
1236
1237 @item out_gain
1238 Set output gain. Default is 0.74
1239
1240 @item delay
1241 Set delay in milliseconds. Default is 3.0.
1242
1243 @item decay
1244 Set decay. Default is 0.4.
1245
1246 @item speed
1247 Set modulation speed in Hz. Default is 0.5.
1248
1249 @item type
1250 Set modulation type. Default is triangular.
1251
1252 It accepts the following values:
1253 @table @samp
1254 @item triangular, t
1255 @item sinusoidal, s
1256 @end table
1257 @end table
1258
1259 @section apulsator
1260
1261 Audio pulsator is something between an autopanner and a tremolo.
1262 But it can produce funny stereo effects as well. Pulsator changes the volume
1263 of the left and right channel based on a LFO (low frequency oscillator) with
1264 different waveforms and shifted phases.
1265 This filter have the ability to define an offset between left and right
1266 channel. An offset of 0 means that both LFO shapes match each other.
1267 The left and right channel are altered equally - a conventional tremolo.
1268 An offset of 50% means that the shape of the right channel is exactly shifted
1269 in phase (or moved backwards about half of the frequency) - pulsator acts as
1270 an autopanner. At 1 both curves match again. Every setting in between moves the
1271 phase shift gapless between all stages and produces some "bypassing" sounds with
1272 sine and triangle waveforms. The more you set the offset near 1 (starting from
1273 the 0.5) the faster the signal passes from the left to the right speaker.
1274
1275 The filter accepts the following options:
1276
1277 @table @option
1278 @item level_in
1279 Set input gain. By default it is 1. Range is [0.015625 - 64].
1280
1281 @item level_out
1282 Set output gain. By default it is 1. Range is [0.015625 - 64].
1283
1284 @item mode
1285 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1286 sawup or sawdown. Default is sine.
1287
1288 @item amount
1289 Set modulation. Define how much of original signal is affected by the LFO.
1290
1291 @item offset_l
1292 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1293
1294 @item offset_r
1295 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1296
1297 @item width
1298 Set pulse width. Default is 1. Allowed range is [0 - 2].
1299
1300 @item timing
1301 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1302
1303 @item bpm
1304 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1305 is set to bpm.
1306
1307 @item ms
1308 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1309 is set to ms.
1310
1311 @item hz
1312 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1313 if timing is set to hz.
1314 @end table
1315
1316 @anchor{aresample}
1317 @section aresample
1318
1319 Resample the input audio to the specified parameters, using the
1320 libswresample library. If none are specified then the filter will
1321 automatically convert between its input and output.
1322
1323 This filter is also able to stretch/squeeze the audio data to make it match
1324 the timestamps or to inject silence / cut out audio to make it match the
1325 timestamps, do a combination of both or do neither.
1326
1327 The filter accepts the syntax
1328 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1329 expresses a sample rate and @var{resampler_options} is a list of
1330 @var{key}=@var{value} pairs, separated by ":". See the
1331 ffmpeg-resampler manual for the complete list of supported options.
1332
1333 @subsection Examples
1334
1335 @itemize
1336 @item
1337 Resample the input audio to 44100Hz:
1338 @example
1339 aresample=44100
1340 @end example
1341
1342 @item
1343 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1344 samples per second compensation:
1345 @example
1346 aresample=async=1000
1347 @end example
1348 @end itemize
1349
1350 @section asetnsamples
1351
1352 Set the number of samples per each output audio frame.
1353
1354 The last output packet may contain a different number of samples, as
1355 the filter will flush all the remaining samples when the input audio
1356 signal its end.
1357
1358 The filter accepts the following options:
1359
1360 @table @option
1361
1362 @item nb_out_samples, n
1363 Set the number of frames per each output audio frame. The number is
1364 intended as the number of samples @emph{per each channel}.
1365 Default value is 1024.
1366
1367 @item pad, p
1368 If set to 1, the filter will pad the last audio frame with zeroes, so
1369 that the last frame will contain the same number of samples as the
1370 previous ones. Default value is 1.
1371 @end table
1372
1373 For example, to set the number of per-frame samples to 1234 and
1374 disable padding for the last frame, use:
1375 @example
1376 asetnsamples=n=1234:p=0
1377 @end example
1378
1379 @section asetrate
1380
1381 Set the sample rate without altering the PCM data.
1382 This will result in a change of speed and pitch.
1383
1384 The filter accepts the following options:
1385
1386 @table @option
1387 @item sample_rate, r
1388 Set the output sample rate. Default is 44100 Hz.
1389 @end table
1390
1391 @section ashowinfo
1392
1393 Show a line containing various information for each input audio frame.
1394 The input audio is not modified.
1395
1396 The shown line contains a sequence of key/value pairs of the form
1397 @var{key}:@var{value}.
1398
1399 The following values are shown in the output:
1400
1401 @table @option
1402 @item n
1403 The (sequential) number of the input frame, starting from 0.
1404
1405 @item pts
1406 The presentation timestamp of the input frame, in time base units; the time base
1407 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1408
1409 @item pts_time
1410 The presentation timestamp of the input frame in seconds.
1411
1412 @item pos
1413 position of the frame in the input stream, -1 if this information in
1414 unavailable and/or meaningless (for example in case of synthetic audio)
1415
1416 @item fmt
1417 The sample format.
1418
1419 @item chlayout
1420 The channel layout.
1421
1422 @item rate
1423 The sample rate for the audio frame.
1424
1425 @item nb_samples
1426 The number of samples (per channel) in the frame.
1427
1428 @item checksum
1429 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1430 audio, the data is treated as if all the planes were concatenated.
1431
1432 @item plane_checksums
1433 A list of Adler-32 checksums for each data plane.
1434 @end table
1435
1436 @anchor{astats}
1437 @section astats
1438
1439 Display time domain statistical information about the audio channels.
1440 Statistics are calculated and displayed for each audio channel and,
1441 where applicable, an overall figure is also given.
1442
1443 It accepts the following option:
1444 @table @option
1445 @item length
1446 Short window length in seconds, used for peak and trough RMS measurement.
1447 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1448
1449 @item metadata
1450
1451 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1452 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1453 disabled.
1454
1455 Available keys for each channel are:
1456 DC_offset
1457 Min_level
1458 Max_level
1459 Min_difference
1460 Max_difference
1461 Mean_difference
1462 Peak_level
1463 RMS_peak
1464 RMS_trough
1465 Crest_factor
1466 Flat_factor
1467 Peak_count
1468 Bit_depth
1469
1470 and for Overall:
1471 DC_offset
1472 Min_level
1473 Max_level
1474 Min_difference
1475 Max_difference
1476 Mean_difference
1477 Peak_level
1478 RMS_level
1479 RMS_peak
1480 RMS_trough
1481 Flat_factor
1482 Peak_count
1483 Bit_depth
1484 Number_of_samples
1485
1486 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1487 this @code{lavfi.astats.Overall.Peak_count}.
1488
1489 For description what each key means read below.
1490
1491 @item reset
1492 Set number of frame after which stats are going to be recalculated.
1493 Default is disabled.
1494 @end table
1495
1496 A description of each shown parameter follows:
1497
1498 @table @option
1499 @item DC offset
1500 Mean amplitude displacement from zero.
1501
1502 @item Min level
1503 Minimal sample level.
1504
1505 @item Max level
1506 Maximal sample level.
1507
1508 @item Min difference
1509 Minimal difference between two consecutive samples.
1510
1511 @item Max difference
1512 Maximal difference between two consecutive samples.
1513
1514 @item Mean difference
1515 Mean difference between two consecutive samples.
1516 The average of each difference between two consecutive samples.
1517
1518 @item Peak level dB
1519 @item RMS level dB
1520 Standard peak and RMS level measured in dBFS.
1521
1522 @item RMS peak dB
1523 @item RMS trough dB
1524 Peak and trough values for RMS level measured over a short window.
1525
1526 @item Crest factor
1527 Standard ratio of peak to RMS level (note: not in dB).
1528
1529 @item Flat factor
1530 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1531 (i.e. either @var{Min level} or @var{Max level}).
1532
1533 @item Peak count
1534 Number of occasions (not the number of samples) that the signal attained either
1535 @var{Min level} or @var{Max level}.
1536
1537 @item Bit depth
1538 Overall bit depth of audio. Number of bits used for each sample.
1539 @end table
1540
1541 @section asyncts
1542
1543 Synchronize audio data with timestamps by squeezing/stretching it and/or
1544 dropping samples/adding silence when needed.
1545
1546 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1547
1548 It accepts the following parameters:
1549 @table @option
1550
1551 @item compensate
1552 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1553 by default. When disabled, time gaps are covered with silence.
1554
1555 @item min_delta
1556 The minimum difference between timestamps and audio data (in seconds) to trigger
1557 adding/dropping samples. The default value is 0.1. If you get an imperfect
1558 sync with this filter, try setting this parameter to 0.
1559
1560 @item max_comp
1561 The maximum compensation in samples per second. Only relevant with compensate=1.
1562 The default value is 500.
1563
1564 @item first_pts
1565 Assume that the first PTS should be this value. The time base is 1 / sample
1566 rate. This allows for padding/trimming at the start of the stream. By default,
1567 no assumption is made about the first frame's expected PTS, so no padding or
1568 trimming is done. For example, this could be set to 0 to pad the beginning with
1569 silence if an audio stream starts after the video stream or to trim any samples
1570 with a negative PTS due to encoder delay.
1571
1572 @end table
1573
1574 @section atempo
1575
1576 Adjust audio tempo.
1577
1578 The filter accepts exactly one parameter, the audio tempo. If not
1579 specified then the filter will assume nominal 1.0 tempo. Tempo must
1580 be in the [0.5, 2.0] range.
1581
1582 @subsection Examples
1583
1584 @itemize
1585 @item
1586 Slow down audio to 80% tempo:
1587 @example
1588 atempo=0.8
1589 @end example
1590
1591 @item
1592 To speed up audio to 125% tempo:
1593 @example
1594 atempo=1.25
1595 @end example
1596 @end itemize
1597
1598 @section atrim
1599
1600 Trim the input so that the output contains one continuous subpart of the input.
1601
1602 It accepts the following parameters:
1603 @table @option
1604 @item start
1605 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1606 sample with the timestamp @var{start} will be the first sample in the output.
1607
1608 @item end
1609 Specify time of the first audio sample that will be dropped, i.e. the
1610 audio sample immediately preceding the one with the timestamp @var{end} will be
1611 the last sample in the output.
1612
1613 @item start_pts
1614 Same as @var{start}, except this option sets the start timestamp in samples
1615 instead of seconds.
1616
1617 @item end_pts
1618 Same as @var{end}, except this option sets the end timestamp in samples instead
1619 of seconds.
1620
1621 @item duration
1622 The maximum duration of the output in seconds.
1623
1624 @item start_sample
1625 The number of the first sample that should be output.
1626
1627 @item end_sample
1628 The number of the first sample that should be dropped.
1629 @end table
1630
1631 @option{start}, @option{end}, and @option{duration} are expressed as time
1632 duration specifications; see
1633 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1634
1635 Note that the first two sets of the start/end options and the @option{duration}
1636 option look at the frame timestamp, while the _sample options simply count the
1637 samples that pass through the filter. So start/end_pts and start/end_sample will
1638 give different results when the timestamps are wrong, inexact or do not start at
1639 zero. Also note that this filter does not modify the timestamps. If you wish
1640 to have the output timestamps start at zero, insert the asetpts filter after the
1641 atrim filter.
1642
1643 If multiple start or end options are set, this filter tries to be greedy and
1644 keep all samples that match at least one of the specified constraints. To keep
1645 only the part that matches all the constraints at once, chain multiple atrim
1646 filters.
1647
1648 The defaults are such that all the input is kept. So it is possible to set e.g.
1649 just the end values to keep everything before the specified time.
1650
1651 Examples:
1652 @itemize
1653 @item
1654 Drop everything except the second minute of input:
1655 @example
1656 ffmpeg -i INPUT -af atrim=60:120
1657 @end example
1658
1659 @item
1660 Keep only the first 1000 samples:
1661 @example
1662 ffmpeg -i INPUT -af atrim=end_sample=1000
1663 @end example
1664
1665 @end itemize
1666
1667 @section bandpass
1668
1669 Apply a two-pole Butterworth band-pass filter with central
1670 frequency @var{frequency}, and (3dB-point) band-width width.
1671 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1672 instead of the default: constant 0dB peak gain.
1673 The filter roll off at 6dB per octave (20dB per decade).
1674
1675 The filter accepts the following options:
1676
1677 @table @option
1678 @item frequency, f
1679 Set the filter's central frequency. Default is @code{3000}.
1680
1681 @item csg
1682 Constant skirt gain if set to 1. Defaults to 0.
1683
1684 @item width_type
1685 Set method to specify band-width of filter.
1686 @table @option
1687 @item h
1688 Hz
1689 @item q
1690 Q-Factor
1691 @item o
1692 octave
1693 @item s
1694 slope
1695 @end table
1696
1697 @item width, w
1698 Specify the band-width of a filter in width_type units.
1699 @end table
1700
1701 @section bandreject
1702
1703 Apply a two-pole Butterworth band-reject filter with central
1704 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1705 The filter roll off at 6dB per octave (20dB per decade).
1706
1707 The filter accepts the following options:
1708
1709 @table @option
1710 @item frequency, f
1711 Set the filter's central frequency. Default is @code{3000}.
1712
1713 @item width_type
1714 Set method to specify band-width of filter.
1715 @table @option
1716 @item h
1717 Hz
1718 @item q
1719 Q-Factor
1720 @item o
1721 octave
1722 @item s
1723 slope
1724 @end table
1725
1726 @item width, w
1727 Specify the band-width of a filter in width_type units.
1728 @end table
1729
1730 @section bass
1731
1732 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1733 shelving filter with a response similar to that of a standard
1734 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1735
1736 The filter accepts the following options:
1737
1738 @table @option
1739 @item gain, g
1740 Give the gain at 0 Hz. Its useful range is about -20
1741 (for a large cut) to +20 (for a large boost).
1742 Beware of clipping when using a positive gain.
1743
1744 @item frequency, f
1745 Set the filter's central frequency and so can be used
1746 to extend or reduce the frequency range to be boosted or cut.
1747 The default value is @code{100} Hz.
1748
1749 @item width_type
1750 Set method to specify band-width of filter.
1751 @table @option
1752 @item h
1753 Hz
1754 @item q
1755 Q-Factor
1756 @item o
1757 octave
1758 @item s
1759 slope
1760 @end table
1761
1762 @item width, w
1763 Determine how steep is the filter's shelf transition.
1764 @end table
1765
1766 @section biquad
1767
1768 Apply a biquad IIR filter with the given coefficients.
1769 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1770 are the numerator and denominator coefficients respectively.
1771
1772 @section bs2b
1773 Bauer stereo to binaural transformation, which improves headphone listening of
1774 stereo audio records.
1775
1776 It accepts the following parameters:
1777 @table @option
1778
1779 @item profile
1780 Pre-defined crossfeed level.
1781 @table @option
1782
1783 @item default
1784 Default level (fcut=700, feed=50).
1785
1786 @item cmoy
1787 Chu Moy circuit (fcut=700, feed=60).
1788
1789 @item jmeier
1790 Jan Meier circuit (fcut=650, feed=95).
1791
1792 @end table
1793
1794 @item fcut
1795 Cut frequency (in Hz).
1796
1797 @item feed
1798 Feed level (in Hz).
1799
1800 @end table
1801
1802 @section channelmap
1803
1804 Remap input channels to new locations.
1805
1806 It accepts the following parameters:
1807 @table @option
1808 @item channel_layout
1809 The channel layout of the output stream.
1810
1811 @item map
1812 Map channels from input to output. The argument is a '|'-separated list of
1813 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1814 @var{in_channel} form. @var{in_channel} can be either the name of the input
1815 channel (e.g. FL for front left) or its index in the input channel layout.
1816 @var{out_channel} is the name of the output channel or its index in the output
1817 channel layout. If @var{out_channel} is not given then it is implicitly an
1818 index, starting with zero and increasing by one for each mapping.
1819 @end table
1820
1821 If no mapping is present, the filter will implicitly map input channels to
1822 output channels, preserving indices.
1823
1824 For example, assuming a 5.1+downmix input MOV file,
1825 @example
1826 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1827 @end example
1828 will create an output WAV file tagged as stereo from the downmix channels of
1829 the input.
1830
1831 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1832 @example
1833 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1834 @end example
1835
1836 @section channelsplit
1837
1838 Split each channel from an input audio stream into a separate output stream.
1839
1840 It accepts the following parameters:
1841 @table @option
1842 @item channel_layout
1843 The channel layout of the input stream. The default is "stereo".
1844 @end table
1845
1846 For example, assuming a stereo input MP3 file,
1847 @example
1848 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1849 @end example
1850 will create an output Matroska file with two audio streams, one containing only
1851 the left channel and the other the right channel.
1852
1853 Split a 5.1 WAV file into per-channel files:
1854 @example
1855 ffmpeg -i in.wav -filter_complex
1856 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1857 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1858 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1859 side_right.wav
1860 @end example
1861
1862 @section chorus
1863 Add a chorus effect to the audio.
1864
1865 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1866
1867 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1868 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1869 The modulation depth defines the range the modulated delay is played before or after
1870 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1871 sound tuned around the original one, like in a chorus where some vocals are slightly
1872 off key.
1873
1874 It accepts the following parameters:
1875 @table @option
1876 @item in_gain
1877 Set input gain. Default is 0.4.
1878
1879 @item out_gain
1880 Set output gain. Default is 0.4.
1881
1882 @item delays
1883 Set delays. A typical delay is around 40ms to 60ms.
1884
1885 @item decays
1886 Set decays.
1887
1888 @item speeds
1889 Set speeds.
1890
1891 @item depths
1892 Set depths.
1893 @end table
1894
1895 @subsection Examples
1896
1897 @itemize
1898 @item
1899 A single delay:
1900 @example
1901 chorus=0.7:0.9:55:0.4:0.25:2
1902 @end example
1903
1904 @item
1905 Two delays:
1906 @example
1907 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1908 @end example
1909
1910 @item
1911 Fuller sounding chorus with three delays:
1912 @example
1913 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
1914 @end example
1915 @end itemize
1916
1917 @section compand
1918 Compress or expand the audio's dynamic range.
1919
1920 It accepts the following parameters:
1921
1922 @table @option
1923
1924 @item attacks
1925 @item decays
1926 A list of times in seconds for each channel over which the instantaneous level
1927 of the input signal is averaged to determine its volume. @var{attacks} refers to
1928 increase of volume and @var{decays} refers to decrease of volume. For most
1929 situations, the attack time (response to the audio getting louder) should be
1930 shorter than the decay time, because the human ear is more sensitive to sudden
1931 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
1932 a typical value for decay is 0.8 seconds.
1933 If specified number of attacks & decays is lower than number of channels, the last
1934 set attack/decay will be used for all remaining channels.
1935
1936 @item points
1937 A list of points for the transfer function, specified in dB relative to the
1938 maximum possible signal amplitude. Each key points list must be defined using
1939 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
1940 @code{x0/y0 x1/y1 x2/y2 ....}
1941
1942 The input values must be in strictly increasing order but the transfer function
1943 does not have to be monotonically rising. The point @code{0/0} is assumed but
1944 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
1945 function are @code{-70/-70|-60/-20}.
1946
1947 @item soft-knee
1948 Set the curve radius in dB for all joints. It defaults to 0.01.
1949
1950 @item gain
1951 Set the additional gain in dB to be applied at all points on the transfer
1952 function. This allows for easy adjustment of the overall gain.
1953 It defaults to 0.
1954
1955 @item volume
1956 Set an initial volume, in dB, to be assumed for each channel when filtering
1957 starts. This permits the user to supply a nominal level initially, so that, for
1958 example, a very large gain is not applied to initial signal levels before the
1959 companding has begun to operate. A typical value for audio which is initially
1960 quiet is -90 dB. It defaults to 0.
1961
1962 @item delay
1963 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
1964 delayed before being fed to the volume adjuster. Specifying a delay
1965 approximately equal to the attack/decay times allows the filter to effectively
1966 operate in predictive rather than reactive mode. It defaults to 0.
1967
1968 @end table
1969
1970 @subsection Examples
1971
1972 @itemize
1973 @item
1974 Make music with both quiet and loud passages suitable for listening to in a
1975 noisy environment:
1976 @example
1977 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
1978 @end example
1979
1980 Another example for audio with whisper and explosion parts:
1981 @example
1982 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
1983 @end example
1984
1985 @item
1986 A noise gate for when the noise is at a lower level than the signal:
1987 @example
1988 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
1989 @end example
1990
1991 @item
1992 Here is another noise gate, this time for when the noise is at a higher level
1993 than the signal (making it, in some ways, similar to squelch):
1994 @example
1995 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
1996 @end example
1997
1998 @item
1999 2:1 compression starting at -6dB:
2000 @example
2001 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2002 @end example
2003
2004 @item
2005 2:1 compression starting at -9dB:
2006 @example
2007 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2008 @end example
2009
2010 @item
2011 2:1 compression starting at -12dB:
2012 @example
2013 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2014 @end example
2015
2016 @item
2017 2:1 compression starting at -18dB:
2018 @example
2019 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2020 @end example
2021
2022 @item
2023 3:1 compression starting at -15dB:
2024 @example
2025 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2026 @end example
2027
2028 @item
2029 Compressor/Gate:
2030 @example
2031 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2032 @end example
2033
2034 @item
2035 Expander:
2036 @example
2037 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
2038 @end example
2039
2040 @item
2041 Hard limiter at -6dB:
2042 @example
2043 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2044 @end example
2045
2046 @item
2047 Hard limiter at -12dB:
2048 @example
2049 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2050 @end example
2051
2052 @item
2053 Hard noise gate at -35 dB:
2054 @example
2055 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2056 @end example
2057
2058 @item
2059 Soft limiter:
2060 @example
2061 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2062 @end example
2063 @end itemize
2064
2065 @section compensationdelay
2066
2067 Compensation Delay Line is a metric based delay to compensate differing
2068 positions of microphones or speakers.
2069
2070 For example, you have recorded guitar with two microphones placed in
2071 different location. Because the front of sound wave has fixed speed in
2072 normal conditions, the phasing of microphones can vary and depends on
2073 their location and interposition. The best sound mix can be achieved when
2074 these microphones are in phase (synchronized). Note that distance of
2075 ~30 cm between microphones makes one microphone to capture signal in
2076 antiphase to another microphone. That makes the final mix sounding moody.
2077 This filter helps to solve phasing problems by adding different delays
2078 to each microphone track and make them synchronized.
2079
2080 The best result can be reached when you take one track as base and
2081 synchronize other tracks one by one with it.
2082 Remember that synchronization/delay tolerance depends on sample rate, too.
2083 Higher sample rates will give more tolerance.
2084
2085 It accepts the following parameters:
2086
2087 @table @option
2088 @item mm
2089 Set millimeters distance. This is compensation distance for fine tuning.
2090 Default is 0.
2091
2092 @item cm
2093 Set cm distance. This is compensation distance for tightening distance setup.
2094 Default is 0.
2095
2096 @item m
2097 Set meters distance. This is compensation distance for hard distance setup.
2098 Default is 0.
2099
2100 @item dry
2101 Set dry amount. Amount of unprocessed (dry) signal.
2102 Default is 0.
2103
2104 @item wet
2105 Set wet amount. Amount of processed (wet) signal.
2106 Default is 1.
2107
2108 @item temp
2109 Set temperature degree in Celsius. This is the temperature of the environment.
2110 Default is 20.
2111 @end table
2112
2113 @section dcshift
2114 Apply a DC shift to the audio.
2115
2116 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2117 in the recording chain) from the audio. The effect of a DC offset is reduced
2118 headroom and hence volume. The @ref{astats} filter can be used to determine if
2119 a signal has a DC offset.
2120
2121 @table @option
2122 @item shift
2123 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2124 the audio.
2125
2126 @item limitergain
2127 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2128 used to prevent clipping.
2129 @end table
2130
2131 @section dynaudnorm
2132 Dynamic Audio Normalizer.
2133
2134 This filter applies a certain amount of gain to the input audio in order
2135 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2136 contrast to more "simple" normalization algorithms, the Dynamic Audio
2137 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2138 This allows for applying extra gain to the "quiet" sections of the audio
2139 while avoiding distortions or clipping the "loud" sections. In other words:
2140 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2141 sections, in the sense that the volume of each section is brought to the
2142 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2143 this goal *without* applying "dynamic range compressing". It will retain 100%
2144 of the dynamic range *within* each section of the audio file.
2145
2146 @table @option
2147 @item f
2148 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2149 Default is 500 milliseconds.
2150 The Dynamic Audio Normalizer processes the input audio in small chunks,
2151 referred to as frames. This is required, because a peak magnitude has no
2152 meaning for just a single sample value. Instead, we need to determine the
2153 peak magnitude for a contiguous sequence of sample values. While a "standard"
2154 normalizer would simply use the peak magnitude of the complete file, the
2155 Dynamic Audio Normalizer determines the peak magnitude individually for each
2156 frame. The length of a frame is specified in milliseconds. By default, the
2157 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2158 been found to give good results with most files.
2159 Note that the exact frame length, in number of samples, will be determined
2160 automatically, based on the sampling rate of the individual input audio file.
2161
2162 @item g
2163 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2164 number. Default is 31.
2165 Probably the most important parameter of the Dynamic Audio Normalizer is the
2166 @code{window size} of the Gaussian smoothing filter. The filter's window size
2167 is specified in frames, centered around the current frame. For the sake of
2168 simplicity, this must be an odd number. Consequently, the default value of 31
2169 takes into account the current frame, as well as the 15 preceding frames and
2170 the 15 subsequent frames. Using a larger window results in a stronger
2171 smoothing effect and thus in less gain variation, i.e. slower gain
2172 adaptation. Conversely, using a smaller window results in a weaker smoothing
2173 effect and thus in more gain variation, i.e. faster gain adaptation.
2174 In other words, the more you increase this value, the more the Dynamic Audio
2175 Normalizer will behave like a "traditional" normalization filter. On the
2176 contrary, the more you decrease this value, the more the Dynamic Audio
2177 Normalizer will behave like a dynamic range compressor.
2178
2179 @item p
2180 Set the target peak value. This specifies the highest permissible magnitude
2181 level for the normalized audio input. This filter will try to approach the
2182 target peak magnitude as closely as possible, but at the same time it also
2183 makes sure that the normalized signal will never exceed the peak magnitude.
2184 A frame's maximum local gain factor is imposed directly by the target peak
2185 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2186 It is not recommended to go above this value.
2187
2188 @item m
2189 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2190 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2191 factor for each input frame, i.e. the maximum gain factor that does not
2192 result in clipping or distortion. The maximum gain factor is determined by
2193 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2194 additionally bounds the frame's maximum gain factor by a predetermined
2195 (global) maximum gain factor. This is done in order to avoid excessive gain
2196 factors in "silent" or almost silent frames. By default, the maximum gain
2197 factor is 10.0, For most inputs the default value should be sufficient and
2198 it usually is not recommended to increase this value. Though, for input
2199 with an extremely low overall volume level, it may be necessary to allow even
2200 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2201 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2202 Instead, a "sigmoid" threshold function will be applied. This way, the
2203 gain factors will smoothly approach the threshold value, but never exceed that
2204 value.
2205
2206 @item r
2207 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2208 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2209 This means that the maximum local gain factor for each frame is defined
2210 (only) by the frame's highest magnitude sample. This way, the samples can
2211 be amplified as much as possible without exceeding the maximum signal
2212 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2213 Normalizer can also take into account the frame's root mean square,
2214 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2215 determine the power of a time-varying signal. It is therefore considered
2216 that the RMS is a better approximation of the "perceived loudness" than
2217 just looking at the signal's peak magnitude. Consequently, by adjusting all
2218 frames to a constant RMS value, a uniform "perceived loudness" can be
2219 established. If a target RMS value has been specified, a frame's local gain
2220 factor is defined as the factor that would result in exactly that RMS value.
2221 Note, however, that the maximum local gain factor is still restricted by the
2222 frame's highest magnitude sample, in order to prevent clipping.
2223
2224 @item n
2225 Enable channels coupling. By default is enabled.
2226 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2227 amount. This means the same gain factor will be applied to all channels, i.e.
2228 the maximum possible gain factor is determined by the "loudest" channel.
2229 However, in some recordings, it may happen that the volume of the different
2230 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2231 In this case, this option can be used to disable the channel coupling. This way,
2232 the gain factor will be determined independently for each channel, depending
2233 only on the individual channel's highest magnitude sample. This allows for
2234 harmonizing the volume of the different channels.
2235
2236 @item c
2237 Enable DC bias correction. By default is disabled.
2238 An audio signal (in the time domain) is a sequence of sample values.
2239 In the Dynamic Audio Normalizer these sample values are represented in the
2240 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2241 audio signal, or "waveform", should be centered around the zero point.
2242 That means if we calculate the mean value of all samples in a file, or in a
2243 single frame, then the result should be 0.0 or at least very close to that
2244 value. If, however, there is a significant deviation of the mean value from
2245 0.0, in either positive or negative direction, this is referred to as a
2246 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2247 Audio Normalizer provides optional DC bias correction.
2248 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2249 the mean value, or "DC correction" offset, of each input frame and subtract
2250 that value from all of the frame's sample values which ensures those samples
2251 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2252 boundaries, the DC correction offset values will be interpolated smoothly
2253 between neighbouring frames.
2254
2255 @item b
2256 Enable alternative boundary mode. By default is disabled.
2257 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2258 around each frame. This includes the preceding frames as well as the
2259 subsequent frames. However, for the "boundary" frames, located at the very
2260 beginning and at the very end of the audio file, not all neighbouring
2261 frames are available. In particular, for the first few frames in the audio
2262 file, the preceding frames are not known. And, similarly, for the last few
2263 frames in the audio file, the subsequent frames are not known. Thus, the
2264 question arises which gain factors should be assumed for the missing frames
2265 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2266 to deal with this situation. The default boundary mode assumes a gain factor
2267 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2268 "fade out" at the beginning and at the end of the input, respectively.
2269
2270 @item s
2271 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2272 By default, the Dynamic Audio Normalizer does not apply "traditional"
2273 compression. This means that signal peaks will not be pruned and thus the
2274 full dynamic range will be retained within each local neighbourhood. However,
2275 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2276 normalization algorithm with a more "traditional" compression.
2277 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2278 (thresholding) function. If (and only if) the compression feature is enabled,
2279 all input frames will be processed by a soft knee thresholding function prior
2280 to the actual normalization process. Put simply, the thresholding function is
2281 going to prune all samples whose magnitude exceeds a certain threshold value.
2282 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2283 value. Instead, the threshold value will be adjusted for each individual
2284 frame.
2285 In general, smaller parameters result in stronger compression, and vice versa.
2286 Values below 3.0 are not recommended, because audible distortion may appear.
2287 @end table
2288
2289 @section earwax
2290
2291 Make audio easier to listen to on headphones.
2292
2293 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2294 so that when listened to on headphones the stereo image is moved from
2295 inside your head (standard for headphones) to outside and in front of
2296 the listener (standard for speakers).
2297
2298 Ported from SoX.
2299
2300 @section equalizer
2301
2302 Apply a two-pole peaking equalisation (EQ) filter. With this
2303 filter, the signal-level at and around a selected frequency can
2304 be increased or decreased, whilst (unlike bandpass and bandreject
2305 filters) that at all other frequencies is unchanged.
2306
2307 In order to produce complex equalisation curves, this filter can
2308 be given several times, each with a different central frequency.
2309
2310 The filter accepts the following options:
2311
2312 @table @option
2313 @item frequency, f
2314 Set the filter's central frequency in Hz.
2315
2316 @item width_type
2317 Set method to specify band-width of filter.
2318 @table @option
2319 @item h
2320 Hz
2321 @item q
2322 Q-Factor
2323 @item o
2324 octave
2325 @item s
2326 slope
2327 @end table
2328
2329 @item width, w
2330 Specify the band-width of a filter in width_type units.
2331
2332 @item gain, g
2333 Set the required gain or attenuation in dB.
2334 Beware of clipping when using a positive gain.
2335 @end table
2336
2337 @subsection Examples
2338 @itemize
2339 @item
2340 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2341 @example
2342 equalizer=f=1000:width_type=h:width=200:g=-10
2343 @end example
2344
2345 @item
2346 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2347 @example
2348 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2349 @end example
2350 @end itemize
2351
2352 @section extrastereo
2353
2354 Linearly increases the difference between left and right channels which
2355 adds some sort of "live" effect to playback.
2356
2357 The filter accepts the following option:
2358
2359 @table @option
2360 @item m
2361 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2362 (average of both channels), with 1.0 sound will be unchanged, with
2363 -1.0 left and right channels will be swapped.
2364
2365 @item c
2366 Enable clipping. By default is enabled.
2367 @end table
2368
2369 @section firequalizer
2370 Apply FIR Equalization using arbitrary frequency response.
2371
2372 The filter accepts the following option:
2373
2374 @table @option
2375 @item gain
2376 Set gain curve equation (in dB). The expression can contain variables:
2377 @table @option
2378 @item f
2379 the evaluated frequency
2380 @item sr
2381 sample rate
2382 @item ch
2383 channel number, set to 0 when multichannels evaluation is disabled
2384 @item chid
2385 channel id, see libavutil/channel_layout.h, set to the first channel id when
2386 multichannels evaluation is disabled
2387 @item chs
2388 number of channels
2389 @item chlayout
2390 channel_layout, see libavutil/channel_layout.h
2391
2392 @end table
2393 and functions:
2394 @table @option
2395 @item gain_interpolate(f)
2396 interpolate gain on frequency f based on gain_entry
2397 @end table
2398 This option is also available as command. Default is @code{gain_interpolate(f)}.
2399
2400 @item gain_entry
2401 Set gain entry for gain_interpolate function. The expression can
2402 contain functions:
2403 @table @option
2404 @item entry(f, g)
2405 store gain entry at frequency f with value g
2406 @end table
2407 This option is also available as command.
2408
2409 @item delay
2410 Set filter delay in seconds. Higher value means more accurate.
2411 Default is @code{0.01}.
2412
2413 @item accuracy
2414 Set filter accuracy in Hz. Lower value means more accurate.
2415 Default is @code{5}.
2416
2417 @item wfunc
2418 Set window function. Acceptable values are:
2419 @table @option
2420 @item rectangular
2421 rectangular window, useful when gain curve is already smooth
2422 @item hann
2423 hann window (default)
2424 @item hamming
2425 hamming window
2426 @item blackman
2427 blackman window
2428 @item nuttall3
2429 3-terms continuous 1st derivative nuttall window
2430 @item mnuttall3
2431 minimum 3-terms discontinuous nuttall window
2432 @item nuttall
2433 4-terms continuous 1st derivative nuttall window
2434 @item bnuttall
2435 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2436 @item bharris
2437 blackman-harris window
2438 @end table
2439
2440 @item fixed
2441 If enabled, use fixed number of audio samples. This improves speed when
2442 filtering with large delay. Default is disabled.
2443
2444 @item multi
2445 Enable multichannels evaluation on gain. Default is disabled.
2446 @end table
2447
2448 @subsection Examples
2449 @itemize
2450 @item
2451 lowpass at 1000 Hz:
2452 @example
2453 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2454 @end example
2455 @item
2456 lowpass at 1000 Hz with gain_entry:
2457 @example
2458 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2459 @end example
2460 @item
2461 custom equalization:
2462 @example
2463 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2464 @end example
2465 @item
2466 higher delay:
2467 @example
2468 firequalizer=delay=0.1:fixed=on
2469 @end example
2470 @item
2471 lowpass on left channel, highpass on right channel:
2472 @example
2473 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2474 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2475 @end example
2476 @end itemize
2477
2478 @section flanger
2479 Apply a flanging effect to the audio.
2480
2481 The filter accepts the following options:
2482
2483 @table @option
2484 @item delay
2485 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2486
2487 @item depth
2488 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2489
2490 @item regen
2491 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2492 Default value is 0.
2493
2494 @item width
2495 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2496 Default value is 71.
2497
2498 @item speed
2499 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2500
2501 @item shape
2502 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2503 Default value is @var{sinusoidal}.
2504
2505 @item phase
2506 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2507 Default value is 25.
2508
2509 @item interp
2510 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2511 Default is @var{linear}.
2512 @end table
2513
2514 @section highpass
2515
2516 Apply a high-pass filter with 3dB point frequency.
2517 The filter can be either single-pole, or double-pole (the default).
2518 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2519
2520 The filter accepts the following options:
2521
2522 @table @option
2523 @item frequency, f
2524 Set frequency in Hz. Default is 3000.
2525
2526 @item poles, p
2527 Set number of poles. Default is 2.
2528
2529 @item width_type
2530 Set method to specify band-width of filter.
2531 @table @option
2532 @item h
2533 Hz
2534 @item q
2535 Q-Factor
2536 @item o
2537 octave
2538 @item s
2539 slope
2540 @end table
2541
2542 @item width, w
2543 Specify the band-width of a filter in width_type units.
2544 Applies only to double-pole filter.
2545 The default is 0.707q and gives a Butterworth response.
2546 @end table
2547
2548 @section join
2549
2550 Join multiple input streams into one multi-channel stream.
2551
2552 It accepts the following parameters:
2553 @table @option
2554
2555 @item inputs
2556 The number of input streams. It defaults to 2.
2557
2558 @item channel_layout
2559 The desired output channel layout. It defaults to stereo.
2560
2561 @item map
2562 Map channels from inputs to output. The argument is a '|'-separated list of
2563 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2564 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2565 can be either the name of the input channel (e.g. FL for front left) or its
2566 index in the specified input stream. @var{out_channel} is the name of the output
2567 channel.
2568 @end table
2569
2570 The filter will attempt to guess the mappings when they are not specified
2571 explicitly. It does so by first trying to find an unused matching input channel
2572 and if that fails it picks the first unused input channel.
2573
2574 Join 3 inputs (with properly set channel layouts):
2575 @example
2576 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2577 @end example
2578
2579 Build a 5.1 output from 6 single-channel streams:
2580 @example
2581 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2582 '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'
2583 out
2584 @end example
2585
2586 @section ladspa
2587
2588 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2589
2590 To enable compilation of this filter you need to configure FFmpeg with
2591 @code{--enable-ladspa}.
2592
2593 @table @option
2594 @item file, f
2595 Specifies the name of LADSPA plugin library to load. If the environment
2596 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2597 each one of the directories specified by the colon separated list in
2598 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2599 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2600 @file{/usr/lib/ladspa/}.
2601
2602 @item plugin, p
2603 Specifies the plugin within the library. Some libraries contain only
2604 one plugin, but others contain many of them. If this is not set filter
2605 will list all available plugins within the specified library.
2606
2607 @item controls, c
2608 Set the '|' separated list of controls which are zero or more floating point
2609 values that determine the behavior of the loaded plugin (for example delay,
2610 threshold or gain).
2611 Controls need to be defined using the following syntax:
2612 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2613 @var{valuei} is the value set on the @var{i}-th control.
2614 Alternatively they can be also defined using the following syntax:
2615 @var{value0}|@var{value1}|@var{value2}|..., where
2616 @var{valuei} is the value set on the @var{i}-th control.
2617 If @option{controls} is set to @code{help}, all available controls and
2618 their valid ranges are printed.
2619
2620 @item sample_rate, s
2621 Specify the sample rate, default to 44100. Only used if plugin have
2622 zero inputs.
2623
2624 @item nb_samples, n
2625 Set the number of samples per channel per each output frame, default
2626 is 1024. Only used if plugin have zero inputs.
2627
2628 @item duration, d
2629 Set the minimum duration of the sourced audio. See
2630 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2631 for the accepted syntax.
2632 Note that the resulting duration may be greater than the specified duration,
2633 as the generated audio is always cut at the end of a complete frame.
2634 If not specified, or the expressed duration is negative, the audio is
2635 supposed to be generated forever.
2636 Only used if plugin have zero inputs.
2637
2638 @end table
2639
2640 @subsection Examples
2641
2642 @itemize
2643 @item
2644 List all available plugins within amp (LADSPA example plugin) library:
2645 @example
2646 ladspa=file=amp
2647 @end example
2648
2649 @item
2650 List all available controls and their valid ranges for @code{vcf_notch}
2651 plugin from @code{VCF} library:
2652 @example
2653 ladspa=f=vcf:p=vcf_notch:c=help
2654 @end example
2655
2656 @item
2657 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2658 plugin library:
2659 @example
2660 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2661 @end example
2662
2663 @item
2664 Add reverberation to the audio using TAP-plugins
2665 (Tom's Audio Processing plugins):
2666 @example
2667 ladspa=file=tap_reverb:tap_reverb
2668 @end example
2669
2670 @item
2671 Generate white noise, with 0.2 amplitude:
2672 @example
2673 ladspa=file=cmt:noise_source_white:c=c0=.2
2674 @end example
2675
2676 @item
2677 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2678 @code{C* Audio Plugin Suite} (CAPS) library:
2679 @example
2680 ladspa=file=caps:Click:c=c1=20'
2681 @end example
2682
2683 @item
2684 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2685 @example
2686 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2687 @end example
2688
2689 @item
2690 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2691 @code{SWH Plugins} collection:
2692 @example
2693 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2694 @end example
2695
2696 @item
2697 Attenuate low frequencies using Multiband EQ from Steve Harris
2698 @code{SWH Plugins} collection:
2699 @example
2700 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2701 @end example
2702 @end itemize
2703
2704 @subsection Commands
2705
2706 This filter supports the following commands:
2707 @table @option
2708 @item cN
2709 Modify the @var{N}-th control value.
2710
2711 If the specified value is not valid, it is ignored and prior one is kept.
2712 @end table
2713
2714 @section lowpass
2715
2716 Apply a low-pass filter with 3dB point frequency.
2717 The filter can be either single-pole or double-pole (the default).
2718 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2719
2720 The filter accepts the following options:
2721
2722 @table @option
2723 @item frequency, f
2724 Set frequency in Hz. Default is 500.
2725
2726 @item poles, p
2727 Set number of poles. Default is 2.
2728
2729 @item width_type
2730 Set method to specify band-width of filter.
2731 @table @option
2732 @item h
2733 Hz
2734 @item q
2735 Q-Factor
2736 @item o
2737 octave
2738 @item s
2739 slope
2740 @end table
2741
2742 @item width, w
2743 Specify the band-width of a filter in width_type units.
2744 Applies only to double-pole filter.
2745 The default is 0.707q and gives a Butterworth response.
2746 @end table
2747
2748 @anchor{pan}
2749 @section pan
2750
2751 Mix channels with specific gain levels. The filter accepts the output
2752 channel layout followed by a set of channels definitions.
2753
2754 This filter is also designed to efficiently remap the channels of an audio
2755 stream.
2756
2757 The filter accepts parameters of the form:
2758 "@var{l}|@var{outdef}|@var{outdef}|..."
2759
2760 @table @option
2761 @item l
2762 output channel layout or number of channels
2763
2764 @item outdef
2765 output channel specification, of the form:
2766 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2767
2768 @item out_name
2769 output channel to define, either a channel name (FL, FR, etc.) or a channel
2770 number (c0, c1, etc.)
2771
2772 @item gain
2773 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2774
2775 @item in_name
2776 input channel to use, see out_name for details; it is not possible to mix
2777 named and numbered input channels
2778 @end table
2779
2780 If the `=' in a channel specification is replaced by `<', then the gains for
2781 that specification will be renormalized so that the total is 1, thus
2782 avoiding clipping noise.
2783
2784 @subsection Mixing examples
2785
2786 For example, if you want to down-mix from stereo to mono, but with a bigger
2787 factor for the left channel:
2788 @example
2789 pan=1c|c0=0.9*c0+0.1*c1
2790 @end example
2791
2792 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2793 7-channels surround:
2794 @example
2795 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2796 @end example
2797
2798 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2799 that should be preferred (see "-ac" option) unless you have very specific
2800 needs.
2801
2802 @subsection Remapping examples
2803
2804 The channel remapping will be effective if, and only if:
2805
2806 @itemize
2807 @item gain coefficients are zeroes or ones,
2808 @item only one input per channel output,
2809 @end itemize
2810
2811 If all these conditions are satisfied, the filter will notify the user ("Pure
2812 channel mapping detected"), and use an optimized and lossless method to do the
2813 remapping.
2814
2815 For example, if you have a 5.1 source and want a stereo audio stream by
2816 dropping the extra channels:
2817 @example
2818 pan="stereo| c0=FL | c1=FR"
2819 @end example
2820
2821 Given the same source, you can also switch front left and front right channels
2822 and keep the input channel layout:
2823 @example
2824 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2825 @end example
2826
2827 If the input is a stereo audio stream, you can mute the front left channel (and
2828 still keep the stereo channel layout) with:
2829 @example
2830 pan="stereo|c1=c1"
2831 @end example
2832
2833 Still with a stereo audio stream input, you can copy the right channel in both
2834 front left and right:
2835 @example
2836 pan="stereo| c0=FR | c1=FR"
2837 @end example
2838
2839 @section replaygain
2840
2841 ReplayGain scanner filter. This filter takes an audio stream as an input and
2842 outputs it unchanged.
2843 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2844
2845 @section resample
2846
2847 Convert the audio sample format, sample rate and channel layout. It is
2848 not meant to be used directly.
2849
2850 @section rubberband
2851 Apply time-stretching and pitch-shifting with librubberband.
2852
2853 The filter accepts the following options:
2854
2855 @table @option
2856 @item tempo
2857 Set tempo scale factor.
2858
2859 @item pitch
2860 Set pitch scale factor.
2861
2862 @item transients
2863 Set transients detector.
2864 Possible values are:
2865 @table @var
2866 @item crisp
2867 @item mixed
2868 @item smooth
2869 @end table
2870
2871 @item detector
2872 Set detector.
2873 Possible values are:
2874 @table @var
2875 @item compound
2876 @item percussive
2877 @item soft
2878 @end table
2879
2880 @item phase
2881 Set phase.
2882 Possible values are:
2883 @table @var
2884 @item laminar
2885 @item independent
2886 @end table
2887
2888 @item window
2889 Set processing window size.
2890 Possible values are:
2891 @table @var
2892 @item standard
2893 @item short
2894 @item long
2895 @end table
2896
2897 @item smoothing
2898 Set smoothing.
2899 Possible values are:
2900 @table @var
2901 @item off
2902 @item on
2903 @end table
2904
2905 @item formant
2906 Enable formant preservation when shift pitching.
2907 Possible values are:
2908 @table @var
2909 @item shifted
2910 @item preserved
2911 @end table
2912
2913 @item pitchq
2914 Set pitch quality.
2915 Possible values are:
2916 @table @var
2917 @item quality
2918 @item speed
2919 @item consistency
2920 @end table
2921
2922 @item channels
2923 Set channels.
2924 Possible values are:
2925 @table @var
2926 @item apart
2927 @item together
2928 @end table
2929 @end table
2930
2931 @section sidechaincompress
2932
2933 This filter acts like normal compressor but has the ability to compress
2934 detected signal using second input signal.
2935 It needs two input streams and returns one output stream.
2936 First input stream will be processed depending on second stream signal.
2937 The filtered signal then can be filtered with other filters in later stages of
2938 processing. See @ref{pan} and @ref{amerge} filter.
2939
2940 The filter accepts the following options:
2941
2942 @table @option
2943 @item level_in
2944 Set input gain. Default is 1. Range is between 0.015625 and 64.
2945
2946 @item threshold
2947 If a signal of second stream raises above this level it will affect the gain
2948 reduction of first stream.
2949 By default is 0.125. Range is between 0.00097563 and 1.
2950
2951 @item ratio
2952 Set a ratio about which the signal is reduced. 1:2 means that if the level
2953 raised 4dB above the threshold, it will be only 2dB above after the reduction.
2954 Default is 2. Range is between 1 and 20.
2955
2956 @item attack
2957 Amount of milliseconds the signal has to rise above the threshold before gain
2958 reduction starts. Default is 20. Range is between 0.01 and 2000.
2959
2960 @item release
2961 Amount of milliseconds the signal has to fall below the threshold before
2962 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
2963
2964 @item makeup
2965 Set the amount by how much signal will be amplified after processing.
2966 Default is 2. Range is from 1 and 64.
2967
2968 @item knee
2969 Curve the sharp knee around the threshold to enter gain reduction more softly.
2970 Default is 2.82843. Range is between 1 and 8.
2971
2972 @item link
2973 Choose if the @code{average} level between all channels of side-chain stream
2974 or the louder(@code{maximum}) channel of side-chain stream affects the
2975 reduction. Default is @code{average}.
2976
2977 @item detection
2978 Should the exact signal be taken in case of @code{peak} or an RMS one in case
2979 of @code{rms}. Default is @code{rms} which is mainly smoother.
2980
2981 @item level_sc
2982 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
2983
2984 @item mix
2985 How much to use compressed signal in output. Default is 1.
2986 Range is between 0 and 1.
2987 @end table
2988
2989 @subsection Examples
2990
2991 @itemize
2992 @item
2993 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
2994 depending on the signal of 2nd input and later compressed signal to be
2995 merged with 2nd input:
2996 @example
2997 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
2998 @end example
2999 @end itemize
3000
3001 @section sidechaingate
3002
3003 A sidechain gate acts like a normal (wideband) gate but has the ability to
3004 filter the detected signal before sending it to the gain reduction stage.
3005 Normally a gate uses the full range signal to detect a level above the
3006 threshold.
3007 For example: If you cut all lower frequencies from your sidechain signal
3008 the gate will decrease the volume of your track only if not enough highs
3009 appear. With this technique you are able to reduce the resonation of a
3010 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3011 guitar.
3012 It needs two input streams and returns one output stream.
3013 First input stream will be processed depending on second stream signal.
3014
3015 The filter accepts the following options:
3016
3017 @table @option
3018 @item level_in
3019 Set input level before filtering.
3020 Default is 1. Allowed range is from 0.015625 to 64.
3021
3022 @item range
3023 Set the level of gain reduction when the signal is below the threshold.
3024 Default is 0.06125. Allowed range is from 0 to 1.
3025
3026 @item threshold
3027 If a signal rises above this level the gain reduction is released.
3028 Default is 0.125. Allowed range is from 0 to 1.
3029
3030 @item ratio
3031 Set a ratio about which the signal is reduced.
3032 Default is 2. Allowed range is from 1 to 9000.
3033
3034 @item attack
3035 Amount of milliseconds the signal has to rise above the threshold before gain
3036 reduction stops.
3037 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3038
3039 @item release
3040 Amount of milliseconds the signal has to fall below the threshold before the
3041 reduction is increased again. Default is 250 milliseconds.
3042 Allowed range is from 0.01 to 9000.
3043
3044 @item makeup
3045 Set amount of amplification of signal after processing.
3046 Default is 1. Allowed range is from 1 to 64.
3047
3048 @item knee
3049 Curve the sharp knee around the threshold to enter gain reduction more softly.
3050 Default is 2.828427125. Allowed range is from 1 to 8.
3051
3052 @item detection
3053 Choose if exact signal should be taken for detection or an RMS like one.
3054 Default is rms. Can be peak or rms.
3055
3056 @item link
3057 Choose if the average level between all channels or the louder channel affects
3058 the reduction.
3059 Default is average. Can be average or maximum.
3060
3061 @item level_sc
3062 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3063 @end table
3064
3065 @section silencedetect
3066
3067 Detect silence in an audio stream.
3068
3069 This filter logs a message when it detects that the input audio volume is less
3070 or equal to a noise tolerance value for a duration greater or equal to the
3071 minimum detected noise duration.
3072
3073 The printed times and duration are expressed in seconds.
3074
3075 The filter accepts the following options:
3076
3077 @table @option
3078 @item duration, d
3079 Set silence duration until notification (default is 2 seconds).
3080
3081 @item noise, n
3082 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3083 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3084 @end table
3085
3086 @subsection Examples
3087
3088 @itemize
3089 @item
3090 Detect 5 seconds of silence with -50dB noise tolerance:
3091 @example
3092 silencedetect=n=-50dB:d=5
3093 @end example
3094
3095 @item
3096 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3097 tolerance in @file{silence.mp3}:
3098 @example
3099 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3100 @end example
3101 @end itemize
3102
3103 @section silenceremove
3104
3105 Remove silence from the beginning, middle or end of the audio.
3106
3107 The filter accepts the following options:
3108
3109 @table @option
3110 @item start_periods
3111 This value is used to indicate if audio should be trimmed at beginning of
3112 the audio. A value of zero indicates no silence should be trimmed from the
3113 beginning. When specifying a non-zero value, it trims audio up until it
3114 finds non-silence. Normally, when trimming silence from beginning of audio
3115 the @var{start_periods} will be @code{1} but it can be increased to higher
3116 values to trim all audio up to specific count of non-silence periods.
3117 Default value is @code{0}.
3118
3119 @item start_duration
3120 Specify the amount of time that non-silence must be detected before it stops
3121 trimming audio. By increasing the duration, bursts of noises can be treated
3122 as silence and trimmed off. Default value is @code{0}.
3123
3124 @item start_threshold
3125 This indicates what sample value should be treated as silence. For digital
3126 audio, a value of @code{0} may be fine but for audio recorded from analog,
3127 you may wish to increase the value to account for background noise.
3128 Can be specified in dB (in case "dB" is appended to the specified value)
3129 or amplitude ratio. Default value is @code{0}.
3130
3131 @item stop_periods
3132 Set the count for trimming silence from the end of audio.
3133 To remove silence from the middle of a file, specify a @var{stop_periods}
3134 that is negative. This value is then treated as a positive value and is
3135 used to indicate the effect should restart processing as specified by
3136 @var{start_periods}, making it suitable for removing periods of silence
3137 in the middle of the audio.
3138 Default value is @code{0}.
3139
3140 @item stop_duration
3141 Specify a duration of silence that must exist before audio is not copied any
3142 more. By specifying a higher duration, silence that is wanted can be left in
3143 the audio.
3144 Default value is @code{0}.
3145
3146 @item stop_threshold
3147 This is the same as @option{start_threshold} but for trimming silence from
3148 the end of audio.
3149 Can be specified in dB (in case "dB" is appended to the specified value)
3150 or amplitude ratio. Default value is @code{0}.
3151
3152 @item leave_silence
3153 This indicate that @var{stop_duration} length of audio should be left intact
3154 at the beginning of each period of silence.
3155 For example, if you want to remove long pauses between words but do not want
3156 to remove the pauses completely. Default value is @code{0}.
3157
3158 @item detection
3159 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3160 and works better with digital silence which is exactly 0.
3161 Default value is @code{rms}.
3162
3163 @item window
3164 Set ratio used to calculate size of window for detecting silence.
3165 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3166 @end table
3167
3168 @subsection Examples
3169
3170 @itemize
3171 @item
3172 The following example shows how this filter can be used to start a recording
3173 that does not contain the delay at the start which usually occurs between
3174 pressing the record button and the start of the performance:
3175 @example
3176 silenceremove=1:5:0.02
3177 @end example
3178
3179 @item
3180 Trim all silence encountered from begining to end where there is more than 1
3181 second of silence in audio:
3182 @example
3183 silenceremove=0:0:0:-1:1:-90dB
3184 @end example
3185 @end itemize
3186
3187 @section sofalizer
3188
3189 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3190 loudspeakers around the user for binaural listening via headphones (audio
3191 formats up to 9 channels supported).
3192 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3193 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3194 Austrian Academy of Sciences.
3195
3196 To enable compilation of this filter you need to configure FFmpeg with
3197 @code{--enable-netcdf}.
3198
3199 The filter accepts the following options:
3200
3201 @table @option
3202 @item sofa
3203 Set the SOFA file used for rendering.
3204
3205 @item gain
3206 Set gain applied to audio. Value is in dB. Default is 0.
3207
3208 @item rotation
3209 Set rotation of virtual loudspeakers in deg. Default is 0.
3210
3211 @item elevation
3212 Set elevation of virtual speakers in deg. Default is 0.
3213
3214 @item radius
3215 Set distance in meters between loudspeakers and the listener with near-field
3216 HRTFs. Default is 1.
3217
3218 @item type
3219 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3220 processing audio in time domain which is slow.
3221 @var{freq} is processing audio in frequency domain which is fast.
3222 Default is @var{freq}.
3223
3224 @item speakers
3225 Set custom positions of virtual loudspeakers. Syntax for this option is:
3226 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3227 Each virtual loudspeaker is described with short channel name following with
3228 azimuth and elevation in degreees.
3229 Each virtual loudspeaker description is separated by '|'.
3230 For example to override front left and front right channel positions use:
3231 'speakers=FL 45 15|FR 345 15'.
3232 Descriptions with unrecognised channel names are ignored.
3233 @end table
3234
3235 @subsection Examples
3236
3237 @itemize
3238 @item
3239 Using ClubFritz6 sofa file:
3240 @example
3241 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3242 @end example
3243
3244 @item
3245 Using ClubFritz12 sofa file and bigger radius with small rotation:
3246 @example
3247 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3248 @end example
3249
3250 @item
3251 Similar as above but with custom speaker positions for front left, front right, rear left and rear right
3252 and also with custom gain:
3253 @example
3254 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|RL 135|RR 225:gain=28"
3255 @end example
3256 @end itemize
3257
3258 @section stereotools
3259
3260 This filter has some handy utilities to manage stereo signals, for converting
3261 M/S stereo recordings to L/R signal while having control over the parameters
3262 or spreading the stereo image of master track.
3263
3264 The filter accepts the following options:
3265
3266 @table @option
3267 @item level_in
3268 Set input level before filtering for both channels. Defaults is 1.
3269 Allowed range is from 0.015625 to 64.
3270
3271 @item level_out
3272 Set output level after filtering for both channels. Defaults is 1.
3273 Allowed range is from 0.015625 to 64.
3274
3275 @item balance_in
3276 Set input balance between both channels. Default is 0.
3277 Allowed range is from -1 to 1.
3278
3279 @item balance_out
3280 Set output balance between both channels. Default is 0.
3281 Allowed range is from -1 to 1.
3282
3283 @item softclip
3284 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3285 clipping. Disabled by default.
3286
3287 @item mutel
3288 Mute the left channel. Disabled by default.
3289
3290 @item muter
3291 Mute the right channel. Disabled by default.
3292
3293 @item phasel
3294 Change the phase of the left channel. Disabled by default.
3295
3296 @item phaser
3297 Change the phase of the right channel. Disabled by default.
3298
3299 @item mode
3300 Set stereo mode. Available values are:
3301
3302 @table @samp
3303 @item lr>lr
3304 Left/Right to Left/Right, this is default.
3305
3306 @item lr>ms
3307 Left/Right to Mid/Side.
3308
3309 @item ms>lr
3310 Mid/Side to Left/Right.
3311
3312 @item lr>ll
3313 Left/Right to Left/Left.
3314
3315 @item lr>rr
3316 Left/Right to Right/Right.
3317
3318 @item lr>l+r
3319 Left/Right to Left + Right.
3320
3321 @item lr>rl
3322 Left/Right to Right/Left.
3323 @end table
3324
3325 @item slev
3326 Set level of side signal. Default is 1.
3327 Allowed range is from 0.015625 to 64.
3328
3329 @item sbal
3330 Set balance of side signal. Default is 0.
3331 Allowed range is from -1 to 1.
3332
3333 @item mlev
3334 Set level of the middle signal. Default is 1.
3335 Allowed range is from 0.015625 to 64.
3336
3337 @item mpan
3338 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3339
3340 @item base
3341 Set stereo base between mono and inversed channels. Default is 0.
3342 Allowed range is from -1 to 1.
3343
3344 @item delay
3345 Set delay in milliseconds how much to delay left from right channel and
3346 vice versa. Default is 0. Allowed range is from -20 to 20.
3347
3348 @item sclevel
3349 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3350
3351 @item phase
3352 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3353 @end table
3354
3355 @subsection Examples
3356
3357 @itemize
3358 @item
3359 Apply karaoke like effect:
3360 @example
3361 stereotools=mlev=0.015625
3362 @end example
3363
3364 @item
3365 Convert M/S signal to L/R:
3366 @example
3367 "stereotools=mode=ms>lr"
3368 @end example
3369 @end itemize
3370
3371 @section stereowiden
3372
3373 This filter enhance the stereo effect by suppressing signal common to both
3374 channels and by delaying the signal of left into right and vice versa,
3375 thereby widening the stereo effect.
3376
3377 The filter accepts the following options:
3378
3379 @table @option
3380 @item delay
3381 Time in milliseconds of the delay of left signal into right and vice versa.
3382 Default is 20 milliseconds.
3383
3384 @item feedback
3385 Amount of gain in delayed signal into right and vice versa. Gives a delay
3386 effect of left signal in right output and vice versa which gives widening
3387 effect. Default is 0.3.
3388
3389 @item crossfeed
3390 Cross feed of left into right with inverted phase. This helps in suppressing
3391 the mono. If the value is 1 it will cancel all the signal common to both
3392 channels. Default is 0.3.
3393
3394 @item drymix
3395 Set level of input signal of original channel. Default is 0.8.
3396 @end table
3397
3398 @section scale_npp
3399
3400 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
3401 format conversion on CUDA video frames. Setting the output width and height
3402 works in the same way as for the @var{scale} filter.
3403
3404 The following additional options are accepted:
3405 @table @option
3406 @item format
3407 The pixel format of the output CUDA frames. If set to the string "same" (the
3408 default), the input format will be kept. Note that automatic format negotiation
3409 and conversion is not yet supported for hardware frames
3410
3411 @item interp_algo
3412 The interpolation algorithm used for resizing. One of the following:
3413 @table @option
3414 @item nn
3415 Nearest neighbour.
3416
3417 @item linear
3418 @item cubic
3419 @item cubic2p_bspline
3420 2-parameter cubic (B=1, C=0)
3421
3422 @item cubic2p_catmullrom
3423 2-parameter cubic (B=0, C=1/2)
3424
3425 @item cubic2p_b05c03
3426 2-parameter cubic (B=1/2, C=3/10)
3427
3428 @item super
3429 Supersampling
3430
3431 @item lanczos
3432 @end table
3433
3434 @end table
3435
3436 @section select
3437 Select frames to pass in output.
3438
3439 @section treble
3440
3441 Boost or cut treble (upper) frequencies of the audio using a two-pole
3442 shelving filter with a response similar to that of a standard
3443 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3444
3445 The filter accepts the following options:
3446
3447 @table @option
3448 @item gain, g
3449 Give the gain at whichever is the lower of ~22 kHz and the
3450 Nyquist frequency. Its useful range is about -20 (for a large cut)
3451 to +20 (for a large boost). Beware of clipping when using a positive gain.
3452
3453 @item frequency, f
3454 Set the filter's central frequency and so can be used
3455 to extend or reduce the frequency range to be boosted or cut.
3456 The default value is @code{3000} Hz.
3457
3458 @item width_type
3459 Set method to specify band-width of filter.
3460 @table @option
3461 @item h
3462 Hz
3463 @item q
3464 Q-Factor
3465 @item o
3466 octave
3467 @item s
3468 slope
3469 @end table
3470
3471 @item width, w
3472 Determine how steep is the filter's shelf transition.
3473 @end table
3474
3475 @section tremolo
3476
3477 Sinusoidal amplitude modulation.
3478
3479 The filter accepts the following options:
3480
3481 @table @option
3482 @item f
3483 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3484 (20 Hz or lower) will result in a tremolo effect.
3485 This filter may also be used as a ring modulator by specifying
3486 a modulation frequency higher than 20 Hz.
3487 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3488
3489 @item d
3490 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3491 Default value is 0.5.
3492 @end table
3493
3494 @section vibrato
3495
3496 Sinusoidal phase modulation.
3497
3498 The filter accepts the following options:
3499
3500 @table @option
3501 @item f
3502 Modulation frequency in Hertz.
3503 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3504
3505 @item d
3506 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3507 Default value is 0.5.
3508 @end table
3509
3510 @section volume
3511
3512 Adjust the input audio volume.
3513
3514 It accepts the following parameters:
3515 @table @option
3516
3517 @item volume
3518 Set audio volume expression.
3519
3520 Output values are clipped to the maximum value.
3521
3522 The output audio volume is given by the relation:
3523 @example
3524 @var{output_volume} = @var{volume} * @var{input_volume}
3525 @end example
3526
3527 The default value for @var{volume} is "1.0".
3528
3529 @item precision
3530 This parameter represents the mathematical precision.
3531
3532 It determines which input sample formats will be allowed, which affects the
3533 precision of the volume scaling.
3534
3535 @table @option
3536 @item fixed
3537 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3538 @item float
3539 32-bit floating-point; this limits input sample format to FLT. (default)
3540 @item double
3541 64-bit floating-point; this limits input sample format to DBL.
3542 @end table
3543
3544 @item replaygain
3545 Choose the behaviour on encountering ReplayGain side data in input frames.
3546
3547 @table @option
3548 @item drop
3549 Remove ReplayGain side data, ignoring its contents (the default).
3550
3551 @item ignore
3552 Ignore ReplayGain side data, but leave it in the frame.
3553
3554 @item track
3555 Prefer the track gain, if present.
3556
3557 @item album
3558 Prefer the album gain, if present.
3559 @end table
3560
3561 @item replaygain_preamp
3562 Pre-amplification gain in dB to apply to the selected replaygain gain.
3563
3564 Default value for @var{replaygain_preamp} is 0.0.
3565
3566 @item eval
3567 Set when the volume expression is evaluated.
3568
3569 It accepts the following values:
3570 @table @samp
3571 @item once
3572 only evaluate expression once during the filter initialization, or
3573 when the @samp{volume} command is sent
3574
3575 @item frame
3576 evaluate expression for each incoming frame
3577 @end table
3578
3579 Default value is @samp{once}.
3580 @end table
3581
3582 The volume expression can contain the following parameters.
3583
3584 @table @option
3585 @item n
3586 frame number (starting at zero)
3587 @item nb_channels
3588 number of channels
3589 @item nb_consumed_samples
3590 number of samples consumed by the filter
3591 @item nb_samples
3592 number of samples in the current frame
3593 @item pos
3594 original frame position in the file
3595 @item pts
3596 frame PTS
3597 @item sample_rate
3598 sample rate
3599 @item startpts
3600 PTS at start of stream
3601 @item startt
3602 time at start of stream
3603 @item t
3604 frame time
3605 @item tb
3606 timestamp timebase
3607 @item volume
3608 last set volume value
3609 @end table
3610
3611 Note that when @option{eval} is set to @samp{once} only the
3612 @var{sample_rate} and @var{tb} variables are available, all other
3613 variables will evaluate to NAN.
3614
3615 @subsection Commands
3616
3617 This filter supports the following commands:
3618 @table @option
3619 @item volume
3620 Modify the volume expression.
3621 The command accepts the same syntax of the corresponding option.
3622
3623 If the specified expression is not valid, it is kept at its current
3624 value.
3625 @item replaygain_noclip
3626 Prevent clipping by limiting the gain applied.
3627
3628 Default value for @var{replaygain_noclip} is 1.
3629
3630 @end table
3631
3632 @subsection Examples
3633
3634 @itemize
3635 @item
3636 Halve the input audio volume:
3637 @example
3638 volume=volume=0.5
3639 volume=volume=1/2
3640 volume=volume=-6.0206dB
3641 @end example
3642
3643 In all the above example the named key for @option{volume} can be
3644 omitted, for example like in:
3645 @example
3646 volume=0.5
3647 @end example
3648
3649 @item
3650 Increase input audio power by 6 decibels using fixed-point precision:
3651 @example
3652 volume=volume=6dB:precision=fixed
3653 @end example
3654
3655 @item
3656 Fade volume after time 10 with an annihilation period of 5 seconds:
3657 @example
3658 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3659 @end example
3660 @end itemize
3661
3662 @section volumedetect
3663
3664 Detect the volume of the input video.
3665
3666 The filter has no parameters. The input is not modified. Statistics about
3667 the volume will be printed in the log when the input stream end is reached.
3668
3669 In particular it will show the mean volume (root mean square), maximum
3670 volume (on a per-sample basis), and the beginning of a histogram of the
3671 registered volume values (from the maximum value to a cumulated 1/1000 of
3672 the samples).
3673
3674 All volumes are in decibels relative to the maximum PCM value.
3675
3676 @subsection Examples
3677
3678 Here is an excerpt of the output:
3679 @example
3680 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3681 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3682 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3683 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3684 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3685 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3686 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3687 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3688 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3689 @end example
3690
3691 It means that:
3692 @itemize
3693 @item
3694 The mean square energy is approximately -27 dB, or 10^-2.7.
3695 @item
3696 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3697 @item
3698 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3699 @end itemize
3700
3701 In other words, raising the volume by +4 dB does not cause any clipping,
3702 raising it by +5 dB causes clipping for 6 samples, etc.
3703
3704 @c man end AUDIO FILTERS
3705
3706 @chapter Audio Sources
3707 @c man begin AUDIO SOURCES
3708
3709 Below is a description of the currently available audio sources.
3710
3711 @section abuffer
3712
3713 Buffer audio frames, and make them available to the filter chain.
3714
3715 This source is mainly intended for a programmatic use, in particular
3716 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3717
3718 It accepts the following parameters:
3719 @table @option
3720
3721 @item time_base
3722 The timebase which will be used for timestamps of submitted frames. It must be
3723 either a floating-point number or in @var{numerator}/@var{denominator} form.
3724
3725 @item sample_rate
3726 The sample rate of the incoming audio buffers.
3727
3728 @item sample_fmt
3729 The sample format of the incoming audio buffers.
3730 Either a sample format name or its corresponding integer representation from
3731 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3732
3733 @item channel_layout
3734 The channel layout of the incoming audio buffers.
3735 Either a channel layout name from channel_layout_map in
3736 @file{libavutil/channel_layout.c} or its corresponding integer representation
3737 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3738
3739 @item channels
3740 The number of channels of the incoming audio buffers.
3741 If both @var{channels} and @var{channel_layout} are specified, then they
3742 must be consistent.
3743
3744 @end table
3745
3746 @subsection Examples
3747
3748 @example
3749 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3750 @end example
3751
3752 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3753 Since the sample format with name "s16p" corresponds to the number
3754 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3755 equivalent to:
3756 @example
3757 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3758 @end example
3759
3760 @section aevalsrc
3761
3762 Generate an audio signal specified by an expression.
3763
3764 This source accepts in input one or more expressions (one for each
3765 channel), which are evaluated and used to generate a corresponding
3766 audio signal.
3767
3768 This source accepts the following options:
3769
3770 @table @option
3771 @item exprs
3772 Set the '|'-separated expressions list for each separate channel. In case the
3773 @option{channel_layout} option is not specified, the selected channel layout
3774 depends on the number of provided expressions. Otherwise the last
3775 specified expression is applied to the remaining output channels.
3776
3777 @item channel_layout, c
3778 Set the channel layout. The number of channels in the specified layout
3779 must be equal to the number of specified expressions.
3780
3781 @item duration, d
3782 Set the minimum duration of the sourced audio. See
3783 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3784 for the accepted syntax.
3785 Note that the resulting duration may be greater than the specified
3786 duration, as the generated audio is always cut at the end of a
3787 complete frame.
3788
3789 If not specified, or the expressed duration is negative, the audio is
3790 supposed to be generated forever.
3791
3792 @item nb_samples, n
3793 Set the number of samples per channel per each output frame,
3794 default to 1024.
3795
3796 @item sample_rate, s
3797 Specify the sample rate, default to 44100.
3798 @end table
3799
3800 Each expression in @var{exprs} can contain the following constants:
3801
3802 @table @option
3803 @item n
3804 number of the evaluated sample, starting from 0
3805
3806 @item t
3807 time of the evaluated sample expressed in seconds, starting from 0
3808
3809 @item s
3810 sample rate
3811
3812 @end table
3813
3814 @subsection Examples
3815
3816 @itemize
3817 @item
3818 Generate silence:
3819 @example
3820 aevalsrc=0
3821 @end example
3822
3823 @item
3824 Generate a sin signal with frequency of 440 Hz, set sample rate to
3825 8000 Hz:
3826 @example
3827 aevalsrc="sin(440*2*PI*t):s=8000"
3828 @end example
3829
3830 @item
3831 Generate a two channels signal, specify the channel layout (Front
3832 Center + Back Center) explicitly:
3833 @example
3834 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
3835 @end example
3836
3837 @item
3838 Generate white noise:
3839 @example
3840 aevalsrc="-2+random(0)"
3841 @end example
3842
3843 @item
3844 Generate an amplitude modulated signal:
3845 @example
3846 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
3847 @end example
3848
3849 @item
3850 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
3851 @example
3852 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
3853 @end example
3854
3855 @end itemize
3856
3857 @section anullsrc
3858
3859 The null audio source, return unprocessed audio frames. It is mainly useful
3860 as a template and to be employed in analysis / debugging tools, or as
3861 the source for filters which ignore the input data (for example the sox
3862 synth filter).
3863
3864 This source accepts the following options:
3865
3866 @table @option
3867
3868 @item channel_layout, cl
3869
3870 Specifies the channel layout, and can be either an integer or a string
3871 representing a channel layout. The default value of @var{channel_layout}
3872 is "stereo".
3873
3874 Check the channel_layout_map definition in
3875 @file{libavutil/channel_layout.c} for the mapping between strings and
3876 channel layout values.
3877
3878 @item sample_rate, r
3879 Specifies the sample rate, and defaults to 44100.
3880
3881 @item nb_samples, n
3882 Set the number of samples per requested frames.
3883
3884 @end table
3885
3886 @subsection Examples
3887
3888 @itemize
3889 @item
3890 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
3891 @example
3892 anullsrc=r=48000:cl=4
3893 @end example
3894
3895 @item
3896 Do the same operation with a more obvious syntax:
3897 @example
3898 anullsrc=r=48000:cl=mono
3899 @end example
3900 @end itemize
3901
3902 All the parameters need to be explicitly defined.
3903
3904 @section flite
3905
3906 Synthesize a voice utterance using the libflite library.
3907
3908 To enable compilation of this filter you need to configure FFmpeg with
3909 @code{--enable-libflite}.
3910
3911 Note that the flite library is not thread-safe.
3912
3913 The filter accepts the following options:
3914
3915 @table @option
3916
3917 @item list_voices
3918 If set to 1, list the names of the available voices and exit
3919 immediately. Default value is 0.
3920
3921 @item nb_samples, n
3922 Set the maximum number of samples per frame. Default value is 512.
3923
3924 @item textfile
3925 Set the filename containing the text to speak.
3926
3927 @item text
3928 Set the text to speak.
3929
3930 @item voice, v
3931 Set the voice to use for the speech synthesis. Default value is
3932 @code{kal}. See also the @var{list_voices} option.
3933 @end table
3934
3935 @subsection Examples
3936
3937 @itemize
3938 @item
3939 Read from file @file{speech.txt}, and synthesize the text using the
3940 standard flite voice:
3941 @example
3942 flite=textfile=speech.txt
3943 @end example
3944
3945 @item
3946 Read the specified text selecting the @code{slt} voice:
3947 @example
3948 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3949 @end example
3950
3951 @item
3952 Input text to ffmpeg:
3953 @example
3954 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3955 @end example
3956
3957 @item
3958 Make @file{ffplay} speak the specified text, using @code{flite} and
3959 the @code{lavfi} device:
3960 @example
3961 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
3962 @end example
3963 @end itemize
3964
3965 For more information about libflite, check:
3966 @url{http://www.speech.cs.cmu.edu/flite/}
3967
3968 @section anoisesrc
3969
3970 Generate a noise audio signal.
3971
3972 The filter accepts the following options:
3973
3974 @table @option
3975 @item sample_rate, r
3976 Specify the sample rate. Default value is 48000 Hz.
3977
3978 @item amplitude, a
3979 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
3980 is 1.0.
3981
3982 @item duration, d
3983 Specify the duration of the generated audio stream. Not specifying this option
3984 results in noise with an infinite length.
3985
3986 @item color, colour, c
3987 Specify the color of noise. Available noise colors are white, pink, and brown.
3988 Default color is white.
3989
3990 @item seed, s
3991 Specify a value used to seed the PRNG.
3992
3993 @item nb_samples, n
3994 Set the number of samples per each output frame, default is 1024.
3995 @end table
3996
3997 @subsection Examples
3998
3999 @itemize
4000
4001 @item
4002 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4003 @example
4004 anoisesrc=d=60:c=pink:r=44100:a=0.5
4005 @end example
4006 @end itemize
4007
4008 @section sine
4009
4010 Generate an audio signal made of a sine wave with amplitude 1/8.
4011
4012 The audio signal is bit-exact.
4013
4014 The filter accepts the following options:
4015
4016 @table @option
4017
4018 @item frequency, f
4019 Set the carrier frequency. Default is 440 Hz.
4020
4021 @item beep_factor, b
4022 Enable a periodic beep every second with frequency @var{beep_factor} times
4023 the carrier frequency. Default is 0, meaning the beep is disabled.
4024
4025 @item sample_rate, r
4026 Specify the sample rate, default is 44100.
4027
4028 @item duration, d
4029 Specify the duration of the generated audio stream.
4030
4031 @item samples_per_frame
4032 Set the number of samples per output frame.
4033
4034 The expression can contain the following constants:
4035
4036 @table @option
4037 @item n
4038 The (sequential) number of the output audio frame, starting from 0.
4039
4040 @item pts
4041 The PTS (Presentation TimeStamp) of the output audio frame,
4042 expressed in @var{TB} units.
4043
4044 @item t
4045 The PTS of the output audio frame, expressed in seconds.
4046
4047 @item TB
4048 The timebase of the output audio frames.
4049 @end table
4050
4051 Default is @code{1024}.
4052 @end table
4053
4054 @subsection Examples
4055
4056 @itemize
4057
4058 @item
4059 Generate a simple 440 Hz sine wave:
4060 @example
4061 sine
4062 @end example
4063
4064 @item
4065 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4066 @example
4067 sine=220:4:d=5
4068 sine=f=220:b=4:d=5
4069 sine=frequency=220:beep_factor=4:duration=5
4070 @end example
4071
4072 @item
4073 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4074 pattern:
4075 @example
4076 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4077 @end example
4078 @end itemize
4079
4080 @c man end AUDIO SOURCES
4081
4082 @chapter Audio Sinks
4083 @c man begin AUDIO SINKS
4084
4085 Below is a description of the currently available audio sinks.
4086
4087 @section abuffersink
4088
4089 Buffer audio frames, and make them available to the end of filter chain.
4090
4091 This sink is mainly intended for programmatic use, in particular
4092 through the interface defined in @file{libavfilter/buffersink.h}
4093 or the options system.
4094
4095 It accepts a pointer to an AVABufferSinkContext structure, which
4096 defines the incoming buffers' formats, to be passed as the opaque
4097 parameter to @code{avfilter_init_filter} for initialization.
4098 @section anullsink
4099
4100 Null audio sink; do absolutely nothing with the input audio. It is
4101 mainly useful as a template and for use in analysis / debugging
4102 tools.
4103
4104 @c man end AUDIO SINKS
4105
4106 @chapter Video Filters
4107 @c man begin VIDEO FILTERS
4108
4109 When you configure your FFmpeg build, you can disable any of the
4110 existing filters using @code{--disable-filters}.
4111 The configure output will show the video filters included in your
4112 build.
4113
4114 Below is a description of the currently available video filters.
4115
4116 @section alphaextract
4117
4118 Extract the alpha component from the input as a grayscale video. This
4119 is especially useful with the @var{alphamerge} filter.
4120
4121 @section alphamerge
4122
4123 Add or replace the alpha component of the primary input with the
4124 grayscale value of a second input. This is intended for use with
4125 @var{alphaextract} to allow the transmission or storage of frame
4126 sequences that have alpha in a format that doesn't support an alpha
4127 channel.
4128
4129 For example, to reconstruct full frames from a normal YUV-encoded video
4130 and a separate video created with @var{alphaextract}, you might use:
4131 @example
4132 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4133 @end example
4134
4135 Since this filter is designed for reconstruction, it operates on frame
4136 sequences without considering timestamps, and terminates when either
4137 input reaches end of stream. This will cause problems if your encoding
4138 pipeline drops frames. If you're trying to apply an image as an
4139 overlay to a video stream, consider the @var{overlay} filter instead.
4140
4141 @section ass
4142
4143 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4144 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4145 Substation Alpha) subtitles files.
4146
4147 This filter accepts the following option in addition to the common options from
4148 the @ref{subtitles} filter:
4149
4150 @table @option
4151 @item shaping
4152 Set the shaping engine
4153
4154 Available values are:
4155 @table @samp
4156 @item auto
4157 The default libass shaping engine, which is the best available.
4158 @item simple
4159 Fast, font-agnostic shaper that can do only substitutions
4160 @item complex
4161 Slower shaper using OpenType for substitutions and positioning
4162 @end table
4163
4164 The default is @code{auto}.
4165 @end table
4166
4167 @section atadenoise
4168 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4169
4170 The filter accepts the following options:
4171
4172 @table @option
4173 @item 0a
4174 Set threshold A for 1st plane. Default is 0.02.
4175 Valid range is 0 to 0.3.
4176
4177 @item 0b
4178 Set threshold B for 1st plane. Default is 0.04.
4179 Valid range is 0 to 5.
4180
4181 @item 1a
4182 Set threshold A for 2nd plane. Default is 0.02.
4183 Valid range is 0 to 0.3.
4184
4185 @item 1b
4186 Set threshold B for 2nd plane. Default is 0.04.
4187 Valid range is 0 to 5.
4188
4189 @item 2a
4190 Set threshold A for 3rd plane. Default is 0.02.
4191 Valid range is 0 to 0.3.
4192
4193 @item 2b
4194 Set threshold B for 3rd plane. Default is 0.04.
4195 Valid range is 0 to 5.
4196
4197 Threshold A is designed to react on abrupt changes in the input signal and
4198 threshold B is designed to react on continuous changes in the input signal.
4199
4200 @item s
4201 Set number of frames filter will use for averaging. Default is 33. Must be odd
4202 number in range [5, 129].
4203 @end table
4204
4205 @section bbox
4206
4207 Compute the bounding box for the non-black pixels in the input frame
4208 luminance plane.
4209
4210 This filter computes the bounding box containing all the pixels with a
4211 luminance value greater than the minimum allowed value.
4212 The parameters describing the bounding box are printed on the filter
4213 log.
4214
4215 The filter accepts the following option:
4216
4217 @table @option
4218 @item min_val
4219 Set the minimal luminance value. Default is @code{16}.
4220 @end table
4221
4222 @section blackdetect
4223
4224 Detect video intervals that are (almost) completely black. Can be
4225 useful to detect chapter transitions, commercials, or invalid
4226 recordings. Output lines contains the time for the start, end and
4227 duration of the detected black interval expressed in seconds.
4228
4229 In order to display the output lines, you need to set the loglevel at
4230 least to the AV_LOG_INFO value.
4231
4232 The filter accepts the following options:
4233
4234 @table @option
4235 @item black_min_duration, d
4236 Set the minimum detected black duration expressed in seconds. It must
4237 be a non-negative floating point number.
4238
4239 Default value is 2.0.
4240
4241 @item picture_black_ratio_th, pic_th
4242 Set the threshold for considering a picture "black".
4243 Express the minimum value for the ratio:
4244 @example
4245 @var{nb_black_pixels} / @var{nb_pixels}
4246 @end example
4247
4248 for which a picture is considered black.
4249 Default value is 0.98.
4250
4251 @item pixel_black_th, pix_th
4252 Set the threshold for considering a pixel "black".
4253
4254 The threshold expresses the maximum pixel luminance value for which a
4255 pixel is considered "black". The provided value is scaled according to
4256 the following equation:
4257 @example
4258 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4259 @end example
4260
4261 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4262 the input video format, the range is [0-255] for YUV full-range
4263 formats and [16-235] for YUV non full-range formats.
4264
4265 Default value is 0.10.
4266 @end table
4267
4268 The following example sets the maximum pixel threshold to the minimum
4269 value, and detects only black intervals of 2 or more seconds:
4270 @example
4271 blackdetect=d=2:pix_th=0.00
4272 @end example
4273
4274 @section blackframe
4275
4276 Detect frames that are (almost) completely black. Can be useful to
4277 detect chapter transitions or commercials. Output lines consist of
4278 the frame number of the detected frame, the percentage of blackness,
4279 the position in the file if known or -1 and the timestamp in seconds.
4280
4281 In order to display the output lines, you need to set the loglevel at
4282 least to the AV_LOG_INFO value.
4283
4284 It accepts the following parameters:
4285
4286 @table @option
4287
4288 @item amount
4289 The percentage of the pixels that have to be below the threshold; it defaults to
4290 @code{98}.
4291
4292 @item threshold, thresh
4293 The threshold below which a pixel value is considered black; it defaults to
4294 @code{32}.
4295
4296 @end table
4297
4298 @section blend, tblend
4299
4300 Blend two video frames into each other.
4301
4302 The @code{blend} filter takes two input streams and outputs one
4303 stream, the first input is the "top" layer and second input is
4304 "bottom" layer.  Output terminates when shortest input terminates.
4305
4306 The @code{tblend} (time blend) filter takes two consecutive frames
4307 from one single stream, and outputs the result obtained by blending
4308 the new frame on top of the old frame.
4309
4310 A description of the accepted options follows.
4311
4312 @table @option
4313 @item c0_mode
4314 @item c1_mode
4315 @item c2_mode
4316 @item c3_mode
4317 @item all_mode
4318 Set blend mode for specific pixel component or all pixel components in case
4319 of @var{all_mode}. Default value is @code{normal}.
4320
4321 Available values for component modes are:
4322 @table @samp
4323 @item addition
4324 @item addition128
4325 @item and
4326 @item average
4327 @item burn
4328 @item darken
4329 @item difference
4330 @item difference128
4331 @item divide
4332 @item dodge
4333 @item freeze
4334 @item exclusion
4335 @item glow
4336 @item hardlight
4337 @item hardmix
4338 @item heat
4339 @item lighten
4340 @item linearlight
4341 @item multiply
4342 @item multiply128
4343 @item negation
4344 @item normal
4345 @item or
4346 @item overlay
4347 @item phoenix
4348 @item pinlight
4349 @item reflect
4350 @item screen
4351 @item softlight
4352 @item subtract
4353 @item vividlight
4354 @item xor
4355 @end table
4356
4357 @item c0_opacity
4358 @item c1_opacity
4359 @item c2_opacity
4360 @item c3_opacity
4361 @item all_opacity
4362 Set blend opacity for specific pixel component or all pixel components in case
4363 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4364
4365 @item c0_expr
4366 @item c1_expr
4367 @item c2_expr
4368 @item c3_expr
4369 @item all_expr
4370 Set blend expression for specific pixel component or all pixel components in case
4371 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4372
4373 The expressions can use the following variables:
4374
4375 @table @option
4376 @item N
4377 The sequential number of the filtered frame, starting from @code{0}.
4378
4379 @item X
4380 @item Y
4381 the coordinates of the current sample
4382
4383 @item W
4384 @item H
4385 the width and height of currently filtered plane
4386
4387 @item SW
4388 @item SH
4389 Width and height scale depending on the currently filtered plane. It is the
4390 ratio between the corresponding luma plane number of pixels and the current
4391 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4392 @code{0.5,0.5} for chroma planes.
4393
4394 @item T
4395 Time of the current frame, expressed in seconds.
4396
4397 @item TOP, A
4398 Value of pixel component at current location for first video frame (top layer).
4399
4400 @item BOTTOM, B
4401 Value of pixel component at current location for second video frame (bottom layer).
4402 @end table
4403
4404 @item shortest
4405 Force termination when the shortest input terminates. Default is
4406 @code{0}. This option is only defined for the @code{blend} filter.
4407
4408 @item repeatlast
4409 Continue applying the last bottom frame after the end of the stream. A value of
4410 @code{0} disable the filter after the last frame of the bottom layer is reached.
4411 Default is @code{1}. This option is only defined for the @code{blend} filter.
4412 @end table
4413
4414 @subsection Examples
4415
4416 @itemize
4417 @item
4418 Apply transition from bottom layer to top layer in first 10 seconds:
4419 @example
4420 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4421 @end example
4422
4423 @item
4424 Apply 1x1 checkerboard effect:
4425 @example
4426 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4427 @end example
4428
4429 @item
4430 Apply uncover left effect:
4431 @example
4432 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4433 @end example
4434
4435 @item
4436 Apply uncover down effect:
4437 @example
4438 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4439 @end example
4440
4441 @item
4442 Apply uncover up-left effect:
4443 @example
4444 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4445 @end example
4446
4447 @item
4448 Split diagonally video and shows top and bottom layer on each side:
4449 @example
4450 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4451 @end example
4452
4453 @item
4454 Display differences between the current and the previous frame:
4455 @example
4456 tblend=all_mode=difference128
4457 @end example
4458 @end itemize
4459
4460 @section bwdif
4461
4462 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4463 Deinterlacing Filter").
4464
4465 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4466 interpolation algorithms.
4467 It accepts the following parameters:
4468
4469 @table @option
4470 @item mode
4471 The interlacing mode to adopt. It accepts one of the following values:
4472
4473 @table @option
4474 @item 0, send_frame
4475 Output one frame for each frame.
4476 @item 1, send_field
4477 Output one frame for each field.
4478 @end table
4479
4480 The default value is @code{send_field}.
4481
4482 @item parity
4483 The picture field parity assumed for the input interlaced video. It accepts one
4484 of the following values:
4485
4486 @table @option
4487 @item 0, tff
4488 Assume the top field is first.
4489 @item 1, bff
4490 Assume the bottom field is first.
4491 @item -1, auto
4492 Enable automatic detection of field parity.
4493 @end table
4494
4495 The default value is @code{auto}.
4496 If the interlacing is unknown or the decoder does not export this information,
4497 top field first will be assumed.
4498
4499 @item deint
4500 Specify which frames to deinterlace. Accept one of the following
4501 values:
4502
4503 @table @option
4504 @item 0, all
4505 Deinterlace all frames.
4506 @item 1, interlaced
4507 Only deinterlace frames marked as interlaced.
4508 @end table
4509
4510 The default value is @code{all}.
4511 @end table
4512
4513 @section boxblur
4514
4515 Apply a boxblur algorithm to the input video.
4516
4517 It accepts the following parameters:
4518
4519 @table @option
4520
4521 @item luma_radius, lr
4522 @item luma_power, lp
4523 @item chroma_radius, cr
4524 @item chroma_power, cp
4525 @item alpha_radius, ar
4526 @item alpha_power, ap
4527
4528 @end table
4529
4530 A description of the accepted options follows.
4531
4532 @table @option
4533 @item luma_radius, lr
4534 @item chroma_radius, cr
4535 @item alpha_radius, ar
4536 Set an expression for the box radius in pixels used for blurring the
4537 corresponding input plane.
4538
4539 The radius value must be a non-negative number, and must not be
4540 greater than the value of the expression @code{min(w,h)/2} for the
4541 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4542 planes.
4543
4544 Default value for @option{luma_radius} is "2". If not specified,
4545 @option{chroma_radius} and @option{alpha_radius} default to the
4546 corresponding value set for @option{luma_radius}.
4547
4548 The expressions can contain the following constants:
4549 @table @option
4550 @item w
4551 @item h
4552 The input width and height in pixels.
4553
4554 @item cw
4555 @item ch
4556 The input chroma image width and height in pixels.
4557
4558 @item hsub
4559 @item vsub
4560 The horizontal and vertical chroma subsample values. For example, for the
4561 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4562 @end table
4563
4564 @item luma_power, lp
4565 @item chroma_power, cp
4566 @item alpha_power, ap
4567 Specify how many times the boxblur filter is applied to the
4568 corresponding plane.
4569
4570 Default value for @option{luma_power} is 2. If not specified,
4571 @option{chroma_power} and @option{alpha_power} default to the
4572 corresponding value set for @option{luma_power}.
4573
4574 A value of 0 will disable the effect.
4575 @end table
4576
4577 @subsection Examples
4578
4579 @itemize
4580 @item
4581 Apply a boxblur filter with the luma, chroma, and alpha radii
4582 set to 2:
4583 @example
4584 boxblur=luma_radius=2:luma_power=1
4585 boxblur=2:1
4586 @end example
4587
4588 @item
4589 Set the luma radius to 2, and alpha and chroma radius to 0:
4590 @example
4591 boxblur=2:1:cr=0:ar=0
4592 @end example
4593
4594 @item
4595 Set the luma and chroma radii to a fraction of the video dimension:
4596 @example
4597 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4598 @end example
4599 @end itemize
4600
4601 @section chromakey
4602 YUV colorspace color/chroma keying.
4603
4604 The filter accepts the following options:
4605
4606 @table @option
4607 @item color
4608 The color which will be replaced with transparency.
4609
4610 @item similarity
4611 Similarity percentage with the key color.
4612
4613 0.01 matches only the exact key color, while 1.0 matches everything.
4614
4615 @item blend
4616 Blend percentage.
4617
4618 0.0 makes pixels either fully transparent, or not transparent at all.
4619
4620 Higher values result in semi-transparent pixels, with a higher transparency
4621 the more similar the pixels color is to the key color.
4622
4623 @item yuv
4624 Signals that the color passed is already in YUV instead of RGB.
4625
4626 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4627 This can be used to pass exact YUV values as hexadecimal numbers.
4628 @end table
4629
4630 @subsection Examples
4631
4632 @itemize
4633 @item
4634 Make every green pixel in the input image transparent:
4635 @example
4636 ffmpeg -i input.png -vf chromakey=green out.png
4637 @end example
4638
4639 @item
4640 Overlay a greenscreen-video on top of a static black background.
4641 @example
4642 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
4643 @end example
4644 @end itemize
4645
4646 @section ciescope
4647
4648 Display CIE color diagram with pixels overlaid onto it.
4649
4650 The filter acccepts the following options:
4651
4652 @table @option
4653 @item system
4654 Set color system.
4655
4656 @table @samp
4657 @item ntsc, 470m
4658 @item ebu, 470bg
4659 @item smpte
4660 @item 240m
4661 @item apple
4662 @item widergb
4663 @item cie1931
4664 @item rec709, hdtv
4665 @item uhdtv, rec2020
4666 @end table
4667
4668 @item cie
4669 Set CIE system.
4670
4671 @table @samp
4672 @item xyy
4673 @item ucs
4674 @item luv
4675 @end table
4676
4677 @item gamuts
4678 Set what gamuts to draw.
4679
4680 See @code{system} option for avaiable values.
4681
4682 @item size, s
4683 Set ciescope size, by default set to 512.
4684
4685 @item intensity, i
4686 Set intensity used to map input pixel values to CIE diagram.
4687
4688 @item contrast
4689 Set contrast used to draw tongue colors that are out of active color system gamut.
4690
4691 @item corrgamma
4692 Correct gamma displayed on scope, by default enabled.
4693
4694 @item showwhite
4695 Show white point on CIE diagram, by default disabled.
4696
4697 @item gamma
4698 Set input gamma. Used only with XYZ input color space.
4699 @end table
4700
4701 @section codecview
4702
4703 Visualize information exported by some codecs.
4704
4705 Some codecs can export information through frames using side-data or other
4706 means. For example, some MPEG based codecs export motion vectors through the
4707 @var{export_mvs} flag in the codec @option{flags2} option.
4708
4709 The filter accepts the following option:
4710
4711 @table @option
4712 @item mv
4713 Set motion vectors to visualize.
4714
4715 Available flags for @var{mv} are:
4716
4717 @table @samp
4718 @item pf
4719 forward predicted MVs of P-frames
4720 @item bf
4721 forward predicted MVs of B-frames
4722 @item bb
4723 backward predicted MVs of B-frames
4724 @end table
4725
4726 @item qp
4727 Display quantization parameters using the chroma planes
4728 @end table
4729
4730 @subsection Examples
4731
4732 @itemize
4733 @item
4734 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
4735 @example
4736 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
4737 @end example
4738 @end itemize
4739
4740 @section colorbalance
4741 Modify intensity of primary colors (red, green and blue) of input frames.
4742
4743 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
4744 regions for the red-cyan, green-magenta or blue-yellow balance.
4745
4746 A positive adjustment value shifts the balance towards the primary color, a negative
4747 value towards the complementary color.
4748
4749 The filter accepts the following options:
4750
4751 @table @option
4752 @item rs
4753 @item gs
4754 @item bs
4755 Adjust red, green and blue shadows (darkest pixels).
4756
4757 @item rm
4758 @item gm
4759 @item bm
4760 Adjust red, green and blue midtones (medium pixels).
4761
4762 @item rh
4763 @item gh
4764 @item bh
4765 Adjust red, green and blue highlights (brightest pixels).
4766
4767 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4768 @end table
4769
4770 @subsection Examples
4771
4772 @itemize
4773 @item
4774 Add red color cast to shadows:
4775 @example
4776 colorbalance=rs=.3
4777 @end example
4778 @end itemize
4779
4780 @section colorkey
4781 RGB colorspace color keying.
4782
4783 The filter accepts the following options:
4784
4785 @table @option
4786 @item color
4787 The color which will be replaced with transparency.
4788
4789 @item similarity
4790 Similarity percentage with the key color.
4791
4792 0.01 matches only the exact key color, while 1.0 matches everything.
4793
4794 @item blend
4795 Blend percentage.
4796
4797 0.0 makes pixels either fully transparent, or not transparent at all.
4798
4799 Higher values result in semi-transparent pixels, with a higher transparency
4800 the more similar the pixels color is to the key color.
4801 @end table
4802
4803 @subsection Examples
4804
4805 @itemize
4806 @item
4807 Make every green pixel in the input image transparent:
4808 @example
4809 ffmpeg -i input.png -vf colorkey=green out.png
4810 @end example
4811
4812 @item
4813 Overlay a greenscreen-video on top of a static background image.
4814 @example
4815 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
4816 @end example
4817 @end itemize
4818
4819 @section colorlevels
4820
4821 Adjust video input frames using levels.
4822
4823 The filter accepts the following options:
4824
4825 @table @option
4826 @item rimin
4827 @item gimin
4828 @item bimin
4829 @item aimin
4830 Adjust red, green, blue and alpha input black point.
4831 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4832
4833 @item rimax
4834 @item gimax
4835 @item bimax
4836 @item aimax
4837 Adjust red, green, blue and alpha input white point.
4838 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
4839
4840 Input levels are used to lighten highlights (bright tones), darken shadows
4841 (dark tones), change the balance of bright and dark tones.
4842
4843 @item romin
4844 @item gomin
4845 @item bomin
4846 @item aomin
4847 Adjust red, green, blue and alpha output black point.
4848 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
4849
4850 @item romax
4851 @item gomax
4852 @item bomax
4853 @item aomax
4854 Adjust red, green, blue and alpha output white point.
4855 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
4856
4857 Output levels allows manual selection of a constrained output level range.
4858 @end table
4859
4860 @subsection Examples
4861
4862 @itemize
4863 @item
4864 Make video output darker:
4865 @example
4866 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
4867 @end example
4868
4869 @item
4870 Increase contrast:
4871 @example
4872 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
4873 @end example
4874
4875 @item
4876 Make video output lighter:
4877 @example
4878 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
4879 @end example
4880
4881 @item
4882 Increase brightness:
4883 @example
4884 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
4885 @end example
4886 @end itemize
4887
4888 @section colorchannelmixer
4889
4890 Adjust video input frames by re-mixing color channels.
4891
4892 This filter modifies a color channel by adding the values associated to
4893 the other channels of the same pixels. For example if the value to
4894 modify is red, the output value will be:
4895 @example
4896 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
4897 @end example
4898
4899 The filter accepts the following options:
4900
4901 @table @option
4902 @item rr
4903 @item rg
4904 @item rb
4905 @item ra
4906 Adjust contribution of input red, green, blue and alpha channels for output red channel.
4907 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
4908
4909 @item gr
4910 @item gg
4911 @item gb
4912 @item ga
4913 Adjust contribution of input red, green, blue and alpha channels for output green channel.
4914 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
4915
4916 @item br
4917 @item bg
4918 @item bb
4919 @item ba
4920 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
4921 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
4922
4923 @item ar
4924 @item ag
4925 @item ab
4926 @item aa
4927 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
4928 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
4929
4930 Allowed ranges for options are @code{[-2.0, 2.0]}.
4931 @end table
4932
4933 @subsection Examples
4934
4935 @itemize
4936 @item
4937 Convert source to grayscale:
4938 @example
4939 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
4940 @end example
4941 @item
4942 Simulate sepia tones:
4943 @example
4944 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
4945 @end example
4946 @end itemize
4947
4948 @section colormatrix
4949
4950 Convert color matrix.
4951
4952 The filter accepts the following options:
4953
4954 @table @option
4955 @item src
4956 @item dst
4957 Specify the source and destination color matrix. Both values must be
4958 specified.
4959
4960 The accepted values are:
4961 @table @samp
4962 @item bt709
4963 BT.709
4964
4965 @item bt601
4966 BT.601
4967
4968 @item smpte240m
4969 SMPTE-240M
4970
4971 @item fcc
4972 FCC
4973 @end table
4974 @end table
4975
4976 For example to convert from BT.601 to SMPTE-240M, use the command:
4977 @example
4978 colormatrix=bt601:smpte240m
4979 @end example
4980
4981 @section colorspace
4982
4983 Convert colorspace, transfer characteristics or color primaries.
4984
4985 The filter accepts the following options:
4986
4987 @table @option
4988 @item all
4989 Specify all color properties at once.
4990
4991 The accepted values are:
4992 @table @samp
4993 @item bt470m
4994 BT.470M
4995
4996 @item bt470bg
4997 BT.470BG
4998
4999 @item bt601-6-525
5000 BT.601-6 525
5001
5002 @item bt601-6-625
5003 BT.601-6 625
5004
5005 @item bt709
5006 BT.709
5007
5008 @item smpte170m
5009 SMPTE-170M
5010
5011 @item smpte240m
5012 SMPTE-240M
5013
5014 @item bt2020
5015 BT.2020
5016
5017 @end table
5018
5019 @item space
5020 Specify output colorspace.
5021
5022 The accepted values are:
5023 @table @samp
5024 @item bt709
5025 BT.709
5026
5027 @item fcc
5028 FCC
5029
5030 @item bt470bg
5031 BT.470BG or BT.601-6 625
5032
5033 @item smpte170m
5034 SMPTE-170M or BT.601-6 525
5035
5036 @item smpte240m
5037 SMPTE-240M
5038
5039 @item bt2020ncl
5040 BT.2020 with non-constant luminance
5041
5042 @end table
5043
5044 @item trc
5045 Specify output transfer characteristics.
5046
5047 The accepted values are:
5048 @table @samp
5049 @item bt709
5050 BT.709
5051
5052 @item gamma22
5053 Constant gamma of 2.2
5054
5055 @item gamma28
5056 Constant gamma of 2.8
5057
5058 @item smpte170m
5059 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5060
5061 @item smpte240m
5062 SMPTE-240M
5063
5064 @item bt2020-10
5065 BT.2020 for 10-bits content
5066
5067 @item bt2020-12
5068 BT.2020 for 12-bits content
5069
5070 @end table
5071
5072 @item prm
5073 Specify output color primaries.
5074
5075 The accepted values are:
5076 @table @samp
5077 @item bt709
5078 BT.709
5079
5080 @item bt470m
5081 BT.470M
5082
5083 @item bt470bg
5084 BT.470BG or BT.601-6 625
5085
5086 @item smpte170m
5087 SMPTE-170M or BT.601-6 525
5088
5089 @item smpte240m
5090 SMPTE-240M
5091
5092 @item bt2020
5093 BT.2020
5094
5095 @end table
5096
5097 @item rng
5098 Specify output color range.
5099
5100 The accepted values are:
5101 @table @samp
5102 @item mpeg
5103 MPEG (restricted) range
5104
5105 @item jpeg
5106 JPEG (full) range
5107
5108 @end table
5109
5110 @item format
5111 Specify output color format.
5112
5113 The accepted values are:
5114 @table @samp
5115 @item yuv420p
5116 YUV 4:2:0 planar 8-bits
5117
5118 @item yuv420p10
5119 YUV 4:2:0 planar 10-bits
5120
5121 @item yuv420p12
5122 YUV 4:2:0 planar 12-bits
5123
5124 @item yuv422p
5125 YUV 4:2:2 planar 8-bits
5126
5127 @item yuv422p10
5128 YUV 4:2:2 planar 10-bits
5129
5130 @item yuv422p12
5131 YUV 4:2:2 planar 12-bits
5132
5133 @item yuv444p
5134 YUV 4:4:4 planar 8-bits
5135
5136 @item yuv444p10
5137 YUV 4:4:4 planar 10-bits
5138
5139 @item yuv444p12
5140 YUV 4:4:4 planar 12-bits
5141
5142 @end table
5143
5144 @item fast
5145 Do a fast conversion, which skips gamma/primary correction. This will take
5146 significantly less CPU, but will be mathematically incorrect. To get output
5147 compatible with that produced by the colormatrix filter, use fast=1.
5148
5149 @item dither
5150 Specify dithering mode.
5151
5152 The accepted values are:
5153 @table @samp
5154 @item none
5155 No dithering
5156
5157 @item fsb
5158 Floyd-Steinberg dithering
5159 @end table
5160
5161 @item wpadapt
5162 Whitepoint adaptation mode.
5163
5164 The accepted values are:
5165 @table @samp
5166 @item bradford
5167 Bradford whitepoint adaptation
5168
5169 @item vonkries
5170 von Kries whitepoint adaptation
5171
5172 @item identity
5173 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5174 @end table
5175
5176 @end table
5177
5178 The filter converts the transfer characteristics, color space and color
5179 primaries to the specified user values. The output value, if not specified,
5180 is set to a default value based on the "all" property. If that property is
5181 also not specified, the filter will log an error. The output color range and
5182 format default to the same value as the input color range and format. The
5183 input transfer characteristics, color space, color primaries and color range
5184 should be set on the input data. If any of these are missing, the filter will
5185 log an error and no conversion will take place.
5186
5187 For example to convert the input to SMPTE-240M, use the command:
5188 @example
5189 colorspace=smpte240m
5190 @end example
5191
5192 @section convolution
5193
5194 Apply convolution 3x3 or 5x5 filter.
5195
5196 The filter accepts the following options:
5197
5198 @table @option
5199 @item 0m
5200 @item 1m
5201 @item 2m
5202 @item 3m
5203 Set matrix for each plane.
5204 Matrix is sequence of 9 or 25 signed integers.
5205
5206 @item 0rdiv
5207 @item 1rdiv
5208 @item 2rdiv
5209 @item 3rdiv
5210 Set multiplier for calculated value for each plane.
5211
5212 @item 0bias
5213 @item 1bias
5214 @item 2bias
5215 @item 3bias
5216 Set bias for each plane. This value is added to the result of the multiplication.
5217 Useful for making the overall image brighter or darker. Default is 0.0.
5218 @end table
5219
5220 @subsection Examples
5221
5222 @itemize
5223 @item
5224 Apply sharpen:
5225 @example
5226 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"
5227 @end example
5228
5229 @item
5230 Apply blur:
5231 @example
5232 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"
5233 @end example
5234
5235 @item
5236 Apply edge enhance:
5237 @example
5238 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"
5239 @end example
5240
5241 @item
5242 Apply edge detect:
5243 @example
5244 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"
5245 @end example
5246
5247 @item
5248 Apply emboss:
5249 @example
5250 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"
5251 @end example
5252 @end itemize
5253
5254 @section copy
5255
5256 Copy the input source unchanged to the output. This is mainly useful for
5257 testing purposes.
5258
5259 @anchor{coreimage}
5260 @section coreimage
5261 Video filtering on GPU using Apple's CoreImage API on OSX.
5262
5263 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5264 processed by video hardware. However, software-based OpenGL implementations
5265 exist which means there is no guarantee for hardware processing. It depends on
5266 the respective OSX.
5267
5268 There are many filters and image generators provided by Apple that come with a
5269 large variety of options. The filter has to be referenced by its name along
5270 with its options.
5271
5272 The coreimage filter accepts the following options:
5273 @table @option
5274 @item list_filters
5275 List all available filters and generators along with all their respective
5276 options as well as possible minimum and maximum values along with the default
5277 values.
5278 @example
5279 list_filters=true
5280 @end example
5281
5282 @item filter
5283 Specify all filters by their respective name and options.
5284 Use @var{list_filters} to determine all valid filter names and options.
5285 Numerical options are specified by a float value and are automatically clamped
5286 to their respective value range.  Vector and color options have to be specified
5287 by a list of space separated float values. Character escaping has to be done.
5288 A special option name @code{default} is available to use default options for a
5289 filter.
5290
5291 It is required to specify either @code{default} or at least one of the filter options.
5292 All omitted options are used with their default values.
5293 The syntax of the filter string is as follows:
5294 @example
5295 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5296 @end example
5297
5298 @item output_rect
5299 Specify a rectangle where the output of the filter chain is copied into the
5300 input image. It is given by a list of space separated float values:
5301 @example
5302 output_rect=x\ y\ width\ height
5303 @end example
5304 If not given, the output rectangle equals the dimensions of the input image.
5305 The output rectangle is automatically cropped at the borders of the input
5306 image. Negative values are valid for each component.
5307 @example
5308 output_rect=25\ 25\ 100\ 100
5309 @end example
5310 @end table
5311
5312 Several filters can be chained for successive processing without GPU-HOST
5313 transfers allowing for fast processing of complex filter chains.
5314 Currently, only filters with zero (generators) or exactly one (filters) input
5315 image and one output image are supported. Also, transition filters are not yet
5316 usable as intended.
5317
5318 Some filters generate output images with additional padding depending on the
5319 respective filter kernel. The padding is automatically removed to ensure the
5320 filter output has the same size as the input image.
5321
5322 For image generators, the size of the output image is determined by the
5323 previous output image of the filter chain or the input image of the whole
5324 filterchain, respectively. The generators do not use the pixel information of
5325 this image to generate their output. However, the generated output is
5326 blended onto this image, resulting in partial or complete coverage of the
5327 output image.
5328
5329 The @ref{coreimagesrc} video source can be used for generating input images
5330 which are directly fed into the filter chain. By using it, providing input
5331 images by another video source or an input video is not required.
5332
5333 @subsection Examples
5334
5335 @itemize
5336
5337 @item
5338 List all filters available:
5339 @example
5340 coreimage=list_filters=true
5341 @end example
5342
5343 @item
5344 Use the CIBoxBlur filter with default options to blur an image:
5345 @example
5346 coreimage=filter=CIBoxBlur@@default
5347 @end example
5348
5349 @item
5350 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5351 its center at 100x100 and a radius of 50 pixels:
5352 @example
5353 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5354 @end example
5355
5356 @item
5357 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5358 given as complete and escaped command-line for Apple's standard bash shell:
5359 @example
5360 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5361 @end example
5362 @end itemize
5363
5364 @section crop
5365
5366 Crop the input video to given dimensions.
5367
5368 It accepts the following parameters:
5369
5370 @table @option
5371 @item w, out_w
5372 The width of the output video. It defaults to @code{iw}.
5373 This expression is evaluated only once during the filter
5374 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5375
5376 @item h, out_h
5377 The height of the output video. It defaults to @code{ih}.
5378 This expression is evaluated only once during the filter
5379 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5380
5381 @item x
5382 The horizontal position, in the input video, of the left edge of the output
5383 video. It defaults to @code{(in_w-out_w)/2}.
5384 This expression is evaluated per-frame.
5385
5386 @item y
5387 The vertical position, in the input video, of the top edge of the output video.
5388 It defaults to @code{(in_h-out_h)/2}.
5389 This expression is evaluated per-frame.
5390
5391 @item keep_aspect
5392 If set to 1 will force the output display aspect ratio
5393 to be the same of the input, by changing the output sample aspect
5394 ratio. It defaults to 0.
5395 @end table
5396
5397 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5398 expressions containing the following constants:
5399
5400 @table @option
5401 @item x
5402 @item y
5403 The computed values for @var{x} and @var{y}. They are evaluated for
5404 each new frame.
5405
5406 @item in_w
5407 @item in_h
5408 The input width and height.
5409
5410 @item iw
5411 @item ih
5412 These are the same as @var{in_w} and @var{in_h}.
5413
5414 @item out_w
5415 @item out_h
5416 The output (cropped) width and height.
5417
5418 @item ow
5419 @item oh
5420 These are the same as @var{out_w} and @var{out_h}.
5421
5422 @item a
5423 same as @var{iw} / @var{ih}
5424
5425 @item sar
5426 input sample aspect ratio
5427
5428 @item dar
5429 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5430
5431 @item hsub
5432 @item vsub
5433 horizontal and vertical chroma subsample values. For example for the
5434 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5435
5436 @item n
5437 The number of the input frame, starting from 0.
5438
5439 @item pos
5440 the position in the file of the input frame, NAN if unknown
5441
5442 @item t
5443 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5444
5445 @end table
5446
5447 The expression for @var{out_w} may depend on the value of @var{out_h},
5448 and the expression for @var{out_h} may depend on @var{out_w}, but they
5449 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5450 evaluated after @var{out_w} and @var{out_h}.
5451
5452 The @var{x} and @var{y} parameters specify the expressions for the
5453 position of the top-left corner of the output (non-cropped) area. They
5454 are evaluated for each frame. If the evaluated value is not valid, it
5455 is approximated to the nearest valid value.
5456
5457 The expression for @var{x} may depend on @var{y}, and the expression
5458 for @var{y} may depend on @var{x}.
5459
5460 @subsection Examples
5461
5462 @itemize
5463 @item
5464 Crop area with size 100x100 at position (12,34).
5465 @example
5466 crop=100:100:12:34
5467 @end example
5468
5469 Using named options, the example above becomes:
5470 @example
5471 crop=w=100:h=100:x=12:y=34
5472 @end example
5473
5474 @item
5475 Crop the central input area with size 100x100:
5476 @example
5477 crop=100:100
5478 @end example
5479
5480 @item
5481 Crop the central input area with size 2/3 of the input video:
5482 @example
5483 crop=2/3*in_w:2/3*in_h
5484 @end example
5485
5486 @item
5487 Crop the input video central square:
5488 @example
5489 crop=out_w=in_h
5490 crop=in_h
5491 @end example
5492
5493 @item
5494 Delimit the rectangle with the top-left corner placed at position
5495 100:100 and the right-bottom corner corresponding to the right-bottom
5496 corner of the input image.
5497 @example
5498 crop=in_w-100:in_h-100:100:100
5499 @end example
5500
5501 @item
5502 Crop 10 pixels from the left and right borders, and 20 pixels from
5503 the top and bottom borders
5504 @example
5505 crop=in_w-2*10:in_h-2*20
5506 @end example
5507
5508 @item
5509 Keep only the bottom right quarter of the input image:
5510 @example
5511 crop=in_w/2:in_h/2:in_w/2:in_h/2
5512 @end example
5513
5514 @item
5515 Crop height for getting Greek harmony:
5516 @example
5517 crop=in_w:1/PHI*in_w
5518 @end example
5519
5520 @item
5521 Apply trembling effect:
5522 @example
5523 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)
5524 @end example
5525
5526 @item
5527 Apply erratic camera effect depending on timestamp:
5528 @example
5529 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)"
5530 @end example
5531
5532 @item
5533 Set x depending on the value of y:
5534 @example
5535 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5536 @end example
5537 @end itemize
5538
5539 @subsection Commands
5540
5541 This filter supports the following commands:
5542 @table @option
5543 @item w, out_w
5544 @item h, out_h
5545 @item x
5546 @item y
5547 Set width/height of the output video and the horizontal/vertical position
5548 in the input video.
5549 The command accepts the same syntax of the corresponding option.
5550
5551 If the specified expression is not valid, it is kept at its current
5552 value.
5553 @end table
5554
5555 @section cropdetect
5556
5557 Auto-detect the crop size.
5558
5559 It calculates the necessary cropping parameters and prints the
5560 recommended parameters via the logging system. The detected dimensions
5561 correspond to the non-black area of the input video.
5562
5563 It accepts the following parameters:
5564
5565 @table @option
5566
5567 @item limit
5568 Set higher black value threshold, which can be optionally specified
5569 from nothing (0) to everything (255 for 8bit based formats). An intensity
5570 value greater to the set value is considered non-black. It defaults to 24.
5571 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5572 on the bitdepth of the pixel format.
5573
5574 @item round
5575 The value which the width/height should be divisible by. It defaults to
5576 16. The offset is automatically adjusted to center the video. Use 2 to
5577 get only even dimensions (needed for 4:2:2 video). 16 is best when
5578 encoding to most video codecs.
5579
5580 @item reset_count, reset
5581 Set the counter that determines after how many frames cropdetect will
5582 reset the previously detected largest video area and start over to
5583 detect the current optimal crop area. Default value is 0.
5584
5585 This can be useful when channel logos distort the video area. 0
5586 indicates 'never reset', and returns the largest area encountered during
5587 playback.
5588 @end table
5589
5590 @anchor{curves}
5591 @section curves
5592
5593 Apply color adjustments using curves.
5594
5595 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5596 component (red, green and blue) has its values defined by @var{N} key points
5597 tied from each other using a smooth curve. The x-axis represents the pixel
5598 values from the input frame, and the y-axis the new pixel values to be set for
5599 the output frame.
5600
5601 By default, a component curve is defined by the two points @var{(0;0)} and
5602 @var{(1;1)}. This creates a straight line where each original pixel value is
5603 "adjusted" to its own value, which means no change to the image.
5604
5605 The filter allows you to redefine these two points and add some more. A new
5606 curve (using a natural cubic spline interpolation) will be define to pass
5607 smoothly through all these new coordinates. The new defined points needs to be
5608 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5609 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5610 the vector spaces, the values will be clipped accordingly.
5611
5612 If there is no key point defined in @code{x=0}, the filter will automatically
5613 insert a @var{(0;0)} point. In the same way, if there is no key point defined
5614 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
5615
5616 The filter accepts the following options:
5617
5618 @table @option
5619 @item preset
5620 Select one of the available color presets. This option can be used in addition
5621 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5622 options takes priority on the preset values.
5623 Available presets are:
5624 @table @samp
5625 @item none
5626 @item color_negative
5627 @item cross_process
5628 @item darker
5629 @item increase_contrast
5630 @item lighter
5631 @item linear_contrast
5632 @item medium_contrast
5633 @item negative
5634 @item strong_contrast
5635 @item vintage
5636 @end table
5637 Default is @code{none}.
5638 @item master, m
5639 Set the master key points. These points will define a second pass mapping. It
5640 is sometimes called a "luminance" or "value" mapping. It can be used with
5641 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5642 post-processing LUT.
5643 @item red, r
5644 Set the key points for the red component.
5645 @item green, g
5646 Set the key points for the green component.
5647 @item blue, b
5648 Set the key points for the blue component.
5649 @item all
5650 Set the key points for all components (not including master).
5651 Can be used in addition to the other key points component
5652 options. In this case, the unset component(s) will fallback on this
5653 @option{all} setting.
5654 @item psfile
5655 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5656 @end table
5657
5658 To avoid some filtergraph syntax conflicts, each key points list need to be
5659 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5660
5661 @subsection Examples
5662
5663 @itemize
5664 @item
5665 Increase slightly the middle level of blue:
5666 @example
5667 curves=blue='0.5/0.58'
5668 @end example
5669
5670 @item
5671 Vintage effect:
5672 @example
5673 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
5674 @end example
5675 Here we obtain the following coordinates for each components:
5676 @table @var
5677 @item red
5678 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5679 @item green
5680 @code{(0;0) (0.50;0.48) (1;1)}
5681 @item blue
5682 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5683 @end table
5684
5685 @item
5686 The previous example can also be achieved with the associated built-in preset:
5687 @example
5688 curves=preset=vintage
5689 @end example
5690
5691 @item
5692 Or simply:
5693 @example
5694 curves=vintage
5695 @end example
5696
5697 @item
5698 Use a Photoshop preset and redefine the points of the green component:
5699 @example
5700 curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
5701 @end example
5702 @end itemize
5703
5704 @section datascope
5705
5706 Video data analysis filter.
5707
5708 This filter shows hexadecimal pixel values of part of video.
5709
5710 The filter accepts the following options:
5711
5712 @table @option
5713 @item size, s
5714 Set output video size.
5715
5716 @item x
5717 Set x offset from where to pick pixels.
5718
5719 @item y
5720 Set y offset from where to pick pixels.
5721
5722 @item mode
5723 Set scope mode, can be one of the following:
5724 @table @samp
5725 @item mono
5726 Draw hexadecimal pixel values with white color on black background.
5727
5728 @item color
5729 Draw hexadecimal pixel values with input video pixel color on black
5730 background.
5731
5732 @item color2
5733 Draw hexadecimal pixel values on color background picked from input video,
5734 the text color is picked in such way so its always visible.
5735 @end table
5736
5737 @item axis
5738 Draw rows and columns numbers on left and top of video.
5739 @end table
5740
5741 @section dctdnoiz
5742
5743 Denoise frames using 2D DCT (frequency domain filtering).
5744
5745 This filter is not designed for real time.
5746
5747 The filter accepts the following options:
5748
5749 @table @option
5750 @item sigma, s
5751 Set the noise sigma constant.
5752
5753 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
5754 coefficient (absolute value) below this threshold with be dropped.
5755
5756 If you need a more advanced filtering, see @option{expr}.
5757
5758 Default is @code{0}.
5759
5760 @item overlap
5761 Set number overlapping pixels for each block. Since the filter can be slow, you
5762 may want to reduce this value, at the cost of a less effective filter and the
5763 risk of various artefacts.
5764
5765 If the overlapping value doesn't permit processing the whole input width or
5766 height, a warning will be displayed and according borders won't be denoised.
5767
5768 Default value is @var{blocksize}-1, which is the best possible setting.
5769
5770 @item expr, e
5771 Set the coefficient factor expression.
5772
5773 For each coefficient of a DCT block, this expression will be evaluated as a
5774 multiplier value for the coefficient.
5775
5776 If this is option is set, the @option{sigma} option will be ignored.
5777
5778 The absolute value of the coefficient can be accessed through the @var{c}
5779 variable.
5780
5781 @item n
5782 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
5783 @var{blocksize}, which is the width and height of the processed blocks.
5784
5785 The default value is @var{3} (8x8) and can be raised to @var{4} for a
5786 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
5787 on the speed processing. Also, a larger block size does not necessarily means a
5788 better de-noising.
5789 @end table
5790
5791 @subsection Examples
5792
5793 Apply a denoise with a @option{sigma} of @code{4.5}:
5794 @example
5795 dctdnoiz=4.5
5796 @end example
5797
5798 The same operation can be achieved using the expression system:
5799 @example
5800 dctdnoiz=e='gte(c, 4.5*3)'
5801 @end example
5802
5803 Violent denoise using a block size of @code{16x16}:
5804 @example
5805 dctdnoiz=15:n=4
5806 @end example
5807
5808 @section deband
5809
5810 Remove banding artifacts from input video.
5811 It works by replacing banded pixels with average value of referenced pixels.
5812
5813 The filter accepts the following options:
5814
5815 @table @option
5816 @item 1thr
5817 @item 2thr
5818 @item 3thr
5819 @item 4thr
5820 Set banding detection threshold for each plane. Default is 0.02.
5821 Valid range is 0.00003 to 0.5.
5822 If difference between current pixel and reference pixel is less than threshold,
5823 it will be considered as banded.
5824
5825 @item range, r
5826 Banding detection range in pixels. Default is 16. If positive, random number
5827 in range 0 to set value will be used. If negative, exact absolute value
5828 will be used.
5829 The range defines square of four pixels around current pixel.
5830
5831 @item direction, d
5832 Set direction in radians from which four pixel will be compared. If positive,
5833 random direction from 0 to set direction will be picked. If negative, exact of
5834 absolute value will be picked. For example direction 0, -PI or -2*PI radians
5835 will pick only pixels on same row and -PI/2 will pick only pixels on same
5836 column.
5837
5838 @item blur
5839 If enabled, current pixel is compared with average value of all four
5840 surrounding pixels. The default is enabled. If disabled current pixel is
5841 compared with all four surrounding pixels. The pixel is considered banded
5842 if only all four differences with surrounding pixels are less than threshold.
5843 @end table
5844
5845 @anchor{decimate}
5846 @section decimate
5847
5848 Drop duplicated frames at regular intervals.
5849
5850 The filter accepts the following options:
5851
5852 @table @option
5853 @item cycle
5854 Set the number of frames from which one will be dropped. Setting this to
5855 @var{N} means one frame in every batch of @var{N} frames will be dropped.
5856 Default is @code{5}.
5857
5858 @item dupthresh
5859 Set the threshold for duplicate detection. If the difference metric for a frame
5860 is less than or equal to this value, then it is declared as duplicate. Default
5861 is @code{1.1}
5862
5863 @item scthresh
5864 Set scene change threshold. Default is @code{15}.
5865
5866 @item blockx
5867 @item blocky
5868 Set the size of the x and y-axis blocks used during metric calculations.
5869 Larger blocks give better noise suppression, but also give worse detection of
5870 small movements. Must be a power of two. Default is @code{32}.
5871
5872 @item ppsrc
5873 Mark main input as a pre-processed input and activate clean source input
5874 stream. This allows the input to be pre-processed with various filters to help
5875 the metrics calculation while keeping the frame selection lossless. When set to
5876 @code{1}, the first stream is for the pre-processed input, and the second
5877 stream is the clean source from where the kept frames are chosen. Default is
5878 @code{0}.
5879
5880 @item chroma
5881 Set whether or not chroma is considered in the metric calculations. Default is
5882 @code{1}.
5883 @end table
5884
5885 @section deflate
5886
5887 Apply deflate effect to the video.
5888
5889 This filter replaces the pixel by the local(3x3) average by taking into account
5890 only values lower than the pixel.
5891
5892 It accepts the following options:
5893
5894 @table @option
5895 @item threshold0
5896 @item threshold1
5897 @item threshold2
5898 @item threshold3
5899 Limit the maximum change for each plane, default is 65535.
5900 If 0, plane will remain unchanged.
5901 @end table
5902
5903 @section dejudder
5904
5905 Remove judder produced by partially interlaced telecined content.
5906
5907 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
5908 source was partially telecined content then the output of @code{pullup,dejudder}
5909 will have a variable frame rate. May change the recorded frame rate of the
5910 container. Aside from that change, this filter will not affect constant frame
5911 rate video.
5912
5913 The option available in this filter is:
5914 @table @option
5915
5916 @item cycle
5917 Specify the length of the window over which the judder repeats.
5918
5919 Accepts any integer greater than 1. Useful values are:
5920 @table @samp
5921
5922 @item 4
5923 If the original was telecined from 24 to 30 fps (Film to NTSC).
5924
5925 @item 5
5926 If the original was telecined from 25 to 30 fps (PAL to NTSC).
5927
5928 @item 20
5929 If a mixture of the two.
5930 @end table
5931
5932 The default is @samp{4}.
5933 @end table
5934
5935 @section delogo
5936
5937 Suppress a TV station logo by a simple interpolation of the surrounding
5938 pixels. Just set a rectangle covering the logo and watch it disappear
5939 (and sometimes something even uglier appear - your mileage may vary).
5940
5941 It accepts the following parameters:
5942 @table @option
5943
5944 @item x
5945 @item y
5946 Specify the top left corner coordinates of the logo. They must be
5947 specified.
5948
5949 @item w
5950 @item h
5951 Specify the width and height of the logo to clear. They must be
5952 specified.
5953
5954 @item band, t
5955 Specify the thickness of the fuzzy edge of the rectangle (added to
5956 @var{w} and @var{h}). The default value is 1. This option is
5957 deprecated, setting higher values should no longer be necessary and
5958 is not recommended.
5959
5960 @item show
5961 When set to 1, a green rectangle is drawn on the screen to simplify
5962 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
5963 The default value is 0.
5964
5965 The rectangle is drawn on the outermost pixels which will be (partly)
5966 replaced with interpolated values. The values of the next pixels
5967 immediately outside this rectangle in each direction will be used to
5968 compute the interpolated pixel values inside the rectangle.
5969
5970 @end table
5971
5972 @subsection Examples
5973
5974 @itemize
5975 @item
5976 Set a rectangle covering the area with top left corner coordinates 0,0
5977 and size 100x77, and a band of size 10:
5978 @example
5979 delogo=x=0:y=0:w=100:h=77:band=10
5980 @end example
5981
5982 @end itemize
5983
5984 @section deshake
5985
5986 Attempt to fix small changes in horizontal and/or vertical shift. This
5987 filter helps remove camera shake from hand-holding a camera, bumping a
5988 tripod, moving on a vehicle, etc.
5989
5990 The filter accepts the following options:
5991
5992 @table @option
5993
5994 @item x
5995 @item y
5996 @item w
5997 @item h
5998 Specify a rectangular area where to limit the search for motion
5999 vectors.
6000 If desired the search for motion vectors can be limited to a
6001 rectangular area of the frame defined by its top left corner, width
6002 and height. These parameters have the same meaning as the drawbox
6003 filter which can be used to visualise the position of the bounding
6004 box.
6005
6006 This is useful when simultaneous movement of subjects within the frame
6007 might be confused for camera motion by the motion vector search.
6008
6009 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6010 then the full frame is used. This allows later options to be set
6011 without specifying the bounding box for the motion vector search.
6012
6013 Default - search the whole frame.
6014
6015 @item rx
6016 @item ry
6017 Specify the maximum extent of movement in x and y directions in the
6018 range 0-64 pixels. Default 16.
6019
6020 @item edge
6021 Specify how to generate pixels to fill blanks at the edge of the
6022 frame. Available values are:
6023 @table @samp
6024 @item blank, 0
6025 Fill zeroes at blank locations
6026 @item original, 1
6027 Original image at blank locations
6028 @item clamp, 2
6029 Extruded edge value at blank locations
6030 @item mirror, 3
6031 Mirrored edge at blank locations
6032 @end table
6033 Default value is @samp{mirror}.
6034
6035 @item blocksize
6036 Specify the blocksize to use for motion search. Range 4-128 pixels,
6037 default 8.
6038
6039 @item contrast
6040 Specify the contrast threshold for blocks. Only blocks with more than
6041 the specified contrast (difference between darkest and lightest
6042 pixels) will be considered. Range 1-255, default 125.
6043
6044 @item search
6045 Specify the search strategy. Available values are:
6046 @table @samp
6047 @item exhaustive, 0
6048 Set exhaustive search
6049 @item less, 1
6050 Set less exhaustive search.
6051 @end table
6052 Default value is @samp{exhaustive}.
6053
6054 @item filename
6055 If set then a detailed log of the motion search is written to the
6056 specified file.
6057
6058 @item opencl
6059 If set to 1, specify using OpenCL capabilities, only available if
6060 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6061
6062 @end table
6063
6064 @section detelecine
6065
6066 Apply an exact inverse of the telecine operation. It requires a predefined
6067 pattern specified using the pattern option which must be the same as that passed
6068 to the telecine filter.
6069
6070 This filter accepts the following options:
6071
6072 @table @option
6073 @item first_field
6074 @table @samp
6075 @item top, t
6076 top field first
6077 @item bottom, b
6078 bottom field first
6079 The default value is @code{top}.
6080 @end table
6081
6082 @item pattern
6083 A string of numbers representing the pulldown pattern you wish to apply.
6084 The default value is @code{23}.
6085
6086 @item start_frame
6087 A number representing position of the first frame with respect to the telecine
6088 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6089 @end table
6090
6091 @section dilation
6092
6093 Apply dilation effect to the video.
6094
6095 This filter replaces the pixel by the local(3x3) maximum.
6096
6097 It accepts the following options:
6098
6099 @table @option
6100 @item threshold0
6101 @item threshold1
6102 @item threshold2
6103 @item threshold3
6104 Limit the maximum change for each plane, default is 65535.
6105 If 0, plane will remain unchanged.
6106
6107 @item coordinates
6108 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6109 pixels are used.
6110
6111 Flags to local 3x3 coordinates maps like this:
6112
6113     1 2 3
6114     4   5
6115     6 7 8
6116 @end table
6117
6118 @section displace
6119
6120 Displace pixels as indicated by second and third input stream.
6121
6122 It takes three input streams and outputs one stream, the first input is the
6123 source, and second and third input are displacement maps.
6124
6125 The second input specifies how much to displace pixels along the
6126 x-axis, while the third input specifies how much to displace pixels
6127 along the y-axis.
6128 If one of displacement map streams terminates, last frame from that
6129 displacement map will be used.
6130
6131 Note that once generated, displacements maps can be reused over and over again.
6132
6133 A description of the accepted options follows.
6134
6135 @table @option
6136 @item edge
6137 Set displace behavior for pixels that are out of range.
6138
6139 Available values are:
6140 @table @samp
6141 @item blank
6142 Missing pixels are replaced by black pixels.
6143
6144 @item smear
6145 Adjacent pixels will spread out to replace missing pixels.
6146
6147 @item wrap
6148 Out of range pixels are wrapped so they point to pixels of other side.
6149 @end table
6150 Default is @samp{smear}.
6151
6152 @end table
6153
6154 @subsection Examples
6155
6156 @itemize
6157 @item
6158 Add ripple effect to rgb input of video size hd720:
6159 @example
6160 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
6161 @end example
6162
6163 @item
6164 Add wave effect to rgb input of video size hd720:
6165 @example
6166 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
6167 @end example
6168 @end itemize
6169
6170 @section drawbox
6171
6172 Draw a colored box on the input image.
6173
6174 It accepts the following parameters:
6175
6176 @table @option
6177 @item x
6178 @item y
6179 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6180
6181 @item width, w
6182 @item height, h
6183 The expressions which specify the width and height of the box; if 0 they are interpreted as
6184 the input width and height. It defaults to 0.
6185
6186 @item color, c
6187 Specify the color of the box to write. For the general syntax of this option,
6188 check the "Color" section in the ffmpeg-utils manual. If the special
6189 value @code{invert} is used, the box edge color is the same as the
6190 video with inverted luma.
6191
6192 @item thickness, t
6193 The expression which sets the thickness of the box edge. Default value is @code{3}.
6194
6195 See below for the list of accepted constants.
6196 @end table
6197
6198 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6199 following constants:
6200
6201 @table @option
6202 @item dar
6203 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6204
6205 @item hsub
6206 @item vsub
6207 horizontal and vertical chroma subsample values. For example for the
6208 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6209
6210 @item in_h, ih
6211 @item in_w, iw
6212 The input width and height.
6213
6214 @item sar
6215 The input sample aspect ratio.
6216
6217 @item x
6218 @item y
6219 The x and y offset coordinates where the box is drawn.
6220
6221 @item w
6222 @item h
6223 The width and height of the drawn box.
6224
6225 @item t
6226 The thickness of the drawn box.
6227
6228 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6229 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6230
6231 @end table
6232
6233 @subsection Examples
6234
6235 @itemize
6236 @item
6237 Draw a black box around the edge of the input image:
6238 @example
6239 drawbox
6240 @end example
6241
6242 @item
6243 Draw a box with color red and an opacity of 50%:
6244 @example
6245 drawbox=10:20:200:60:red@@0.5
6246 @end example
6247
6248 The previous example can be specified as:
6249 @example
6250 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6251 @end example
6252
6253 @item
6254 Fill the box with pink color:
6255 @example
6256 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6257 @end example
6258
6259 @item
6260 Draw a 2-pixel red 2.40:1 mask:
6261 @example
6262 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
6263 @end example
6264 @end itemize
6265
6266 @section drawgraph, adrawgraph
6267
6268 Draw a graph using input video or audio metadata.
6269
6270 It accepts the following parameters:
6271
6272 @table @option
6273 @item m1
6274 Set 1st frame metadata key from which metadata values will be used to draw a graph.
6275
6276 @item fg1
6277 Set 1st foreground color expression.
6278
6279 @item m2
6280 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
6281
6282 @item fg2
6283 Set 2nd foreground color expression.
6284
6285 @item m3
6286 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
6287
6288 @item fg3
6289 Set 3rd foreground color expression.
6290
6291 @item m4
6292 Set 4th frame metadata key from which metadata values will be used to draw a graph.
6293
6294 @item fg4
6295 Set 4th foreground color expression.
6296
6297 @item min
6298 Set minimal value of metadata value.
6299
6300 @item max
6301 Set maximal value of metadata value.
6302
6303 @item bg
6304 Set graph background color. Default is white.
6305
6306 @item mode
6307 Set graph mode.
6308
6309 Available values for mode is:
6310 @table @samp
6311 @item bar
6312 @item dot
6313 @item line
6314 @end table
6315
6316 Default is @code{line}.
6317
6318 @item slide
6319 Set slide mode.
6320
6321 Available values for slide is:
6322 @table @samp
6323 @item frame
6324 Draw new frame when right border is reached.
6325
6326 @item replace
6327 Replace old columns with new ones.
6328
6329 @item scroll
6330 Scroll from right to left.
6331
6332 @item rscroll
6333 Scroll from left to right.
6334 @end table
6335
6336 Default is @code{frame}.
6337
6338 @item size
6339 Set size of graph video. For the syntax of this option, check the
6340 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
6341 The default value is @code{900x256}.
6342
6343 The foreground color expressions can use the following variables:
6344 @table @option
6345 @item MIN
6346 Minimal value of metadata value.
6347
6348 @item MAX
6349 Maximal value of metadata value.
6350
6351 @item VAL
6352 Current metadata key value.
6353 @end table
6354
6355 The color is defined as 0xAABBGGRR.
6356 @end table
6357
6358 Example using metadata from @ref{signalstats} filter:
6359 @example
6360 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
6361 @end example
6362
6363 Example using metadata from @ref{ebur128} filter:
6364 @example
6365 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
6366 @end example
6367
6368 @section drawgrid
6369
6370 Draw a grid on the input image.
6371
6372 It accepts the following parameters:
6373
6374 @table @option
6375 @item x
6376 @item y
6377 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6378
6379 @item width, w
6380 @item height, h
6381 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6382 input width and height, respectively, minus @code{thickness}, so image gets
6383 framed. Default to 0.
6384
6385 @item color, c
6386 Specify the color of the grid. For the general syntax of this option,
6387 check the "Color" section in the ffmpeg-utils manual. If the special
6388 value @code{invert} is used, the grid color is the same as the
6389 video with inverted luma.
6390
6391 @item thickness, t
6392 The expression which sets the thickness of the grid line. Default value is @code{1}.
6393
6394 See below for the list of accepted constants.
6395 @end table
6396
6397 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6398 following constants:
6399
6400 @table @option
6401 @item dar
6402 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6403
6404 @item hsub
6405 @item vsub
6406 horizontal and vertical chroma subsample values. For example for the
6407 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6408
6409 @item in_h, ih
6410 @item in_w, iw
6411 The input grid cell width and height.
6412
6413 @item sar
6414 The input sample aspect ratio.
6415
6416 @item x
6417 @item y
6418 The x and y coordinates of some point of grid intersection (meant to configure offset).
6419
6420 @item w
6421 @item h
6422 The width and height of the drawn cell.
6423
6424 @item t
6425 The thickness of the drawn cell.
6426
6427 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6428 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6429
6430 @end table
6431
6432 @subsection Examples
6433
6434 @itemize
6435 @item
6436 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6437 @example
6438 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6439 @end example
6440
6441 @item
6442 Draw a white 3x3 grid with an opacity of 50%:
6443 @example
6444 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6445 @end example
6446 @end itemize
6447
6448 @anchor{drawtext}
6449 @section drawtext
6450
6451 Draw a text string or text from a specified file on top of a video, using the
6452 libfreetype library.
6453
6454 To enable compilation of this filter, you need to configure FFmpeg with
6455 @code{--enable-libfreetype}.
6456 To enable default font fallback and the @var{font} option you need to
6457 configure FFmpeg with @code{--enable-libfontconfig}.
6458 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6459 @code{--enable-libfribidi}.
6460
6461 @subsection Syntax
6462
6463 It accepts the following parameters:
6464
6465 @table @option
6466
6467 @item box
6468 Used to draw a box around text using the background color.
6469 The value must be either 1 (enable) or 0 (disable).
6470 The default value of @var{box} is 0.
6471
6472 @item boxborderw
6473 Set the width of the border to be drawn around the box using @var{boxcolor}.
6474 The default value of @var{boxborderw} is 0.
6475
6476 @item boxcolor
6477 The color to be used for drawing box around text. For the syntax of this
6478 option, check the "Color" section in the ffmpeg-utils manual.
6479
6480 The default value of @var{boxcolor} is "white".
6481
6482 @item borderw
6483 Set the width of the border to be drawn around the text using @var{bordercolor}.
6484 The default value of @var{borderw} is 0.
6485
6486 @item bordercolor
6487 Set the color to be used for drawing border around text. For the syntax of this
6488 option, check the "Color" section in the ffmpeg-utils manual.
6489
6490 The default value of @var{bordercolor} is "black".
6491
6492 @item expansion
6493 Select how the @var{text} is expanded. Can be either @code{none},
6494 @code{strftime} (deprecated) or
6495 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6496 below for details.
6497
6498 @item fix_bounds
6499 If true, check and fix text coords to avoid clipping.
6500
6501 @item fontcolor
6502 The color to be used for drawing fonts. For the syntax of this option, check
6503 the "Color" section in the ffmpeg-utils manual.
6504
6505 The default value of @var{fontcolor} is "black".
6506
6507 @item fontcolor_expr
6508 String which is expanded the same way as @var{text} to obtain dynamic
6509 @var{fontcolor} value. By default this option has empty value and is not
6510 processed. When this option is set, it overrides @var{fontcolor} option.
6511
6512 @item font
6513 The font family to be used for drawing text. By default Sans.
6514
6515 @item fontfile
6516 The font file to be used for drawing text. The path must be included.
6517 This parameter is mandatory if the fontconfig support is disabled.
6518
6519 @item draw
6520 This option does not exist, please see the timeline system
6521
6522 @item alpha
6523 Draw the text applying alpha blending. The value can
6524 be either a number between 0.0 and 1.0
6525 The expression accepts the same variables @var{x, y} do.
6526 The default value is 1.
6527 Please see fontcolor_expr
6528
6529 @item fontsize
6530 The font size to be used for drawing text.
6531 The default value of @var{fontsize} is 16.
6532
6533 @item text_shaping
6534 If set to 1, attempt to shape the text (for example, reverse the order of
6535 right-to-left text and join Arabic characters) before drawing it.
6536 Otherwise, just draw the text exactly as given.
6537 By default 1 (if supported).
6538
6539 @item ft_load_flags
6540 The flags to be used for loading the fonts.
6541
6542 The flags map the corresponding flags supported by libfreetype, and are
6543 a combination of the following values:
6544 @table @var
6545 @item default
6546 @item no_scale
6547 @item no_hinting
6548 @item render
6549 @item no_bitmap
6550 @item vertical_layout
6551 @item force_autohint
6552 @item crop_bitmap
6553 @item pedantic
6554 @item ignore_global_advance_width
6555 @item no_recurse
6556 @item ignore_transform
6557 @item monochrome
6558 @item linear_design
6559 @item no_autohint
6560 @end table
6561
6562 Default value is "default".
6563
6564 For more information consult the documentation for the FT_LOAD_*
6565 libfreetype flags.
6566
6567 @item shadowcolor
6568 The color to be used for drawing a shadow behind the drawn text. For the
6569 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6570
6571 The default value of @var{shadowcolor} is "black".
6572
6573 @item shadowx
6574 @item shadowy
6575 The x and y offsets for the text shadow position with respect to the
6576 position of the text. They can be either positive or negative
6577 values. The default value for both is "0".
6578
6579 @item start_number
6580 The starting frame number for the n/frame_num variable. The default value
6581 is "0".
6582
6583 @item tabsize
6584 The size in number of spaces to use for rendering the tab.
6585 Default value is 4.
6586
6587 @item timecode
6588 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6589 format. It can be used with or without text parameter. @var{timecode_rate}
6590 option must be specified.
6591
6592 @item timecode_rate, rate, r
6593 Set the timecode frame rate (timecode only).
6594
6595 @item text
6596 The text string to be drawn. The text must be a sequence of UTF-8
6597 encoded characters.
6598 This parameter is mandatory if no file is specified with the parameter
6599 @var{textfile}.
6600
6601 @item textfile
6602 A text file containing text to be drawn. The text must be a sequence
6603 of UTF-8 encoded characters.
6604
6605 This parameter is mandatory if no text string is specified with the
6606 parameter @var{text}.
6607
6608 If both @var{text} and @var{textfile} are specified, an error is thrown.
6609
6610 @item reload
6611 If set to 1, the @var{textfile} will be reloaded before each frame.
6612 Be sure to update it atomically, or it may be read partially, or even fail.
6613
6614 @item x
6615 @item y
6616 The expressions which specify the offsets where text will be drawn
6617 within the video frame. They are relative to the top/left border of the
6618 output image.
6619
6620 The default value of @var{x} and @var{y} is "0".
6621
6622 See below for the list of accepted constants and functions.
6623 @end table
6624
6625 The parameters for @var{x} and @var{y} are expressions containing the
6626 following constants and functions:
6627
6628 @table @option
6629 @item dar
6630 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6631
6632 @item hsub
6633 @item vsub
6634 horizontal and vertical chroma subsample values. For example for the
6635 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6636
6637 @item line_h, lh
6638 the height of each text line
6639
6640 @item main_h, h, H
6641 the input height
6642
6643 @item main_w, w, W
6644 the input width
6645
6646 @item max_glyph_a, ascent
6647 the maximum distance from the baseline to the highest/upper grid
6648 coordinate used to place a glyph outline point, for all the rendered
6649 glyphs.
6650 It is a positive value, due to the grid's orientation with the Y axis
6651 upwards.
6652
6653 @item max_glyph_d, descent
6654 the maximum distance from the baseline to the lowest grid coordinate
6655 used to place a glyph outline point, for all the rendered glyphs.
6656 This is a negative value, due to the grid's orientation, with the Y axis
6657 upwards.
6658
6659 @item max_glyph_h
6660 maximum glyph height, that is the maximum height for all the glyphs
6661 contained in the rendered text, it is equivalent to @var{ascent} -
6662 @var{descent}.
6663
6664 @item max_glyph_w
6665 maximum glyph width, that is the maximum width for all the glyphs
6666 contained in the rendered text
6667
6668 @item n
6669 the number of input frame, starting from 0
6670
6671 @item rand(min, max)
6672 return a random number included between @var{min} and @var{max}
6673
6674 @item sar
6675 The input sample aspect ratio.
6676
6677 @item t
6678 timestamp expressed in seconds, NAN if the input timestamp is unknown
6679
6680 @item text_h, th
6681 the height of the rendered text
6682
6683 @item text_w, tw
6684 the width of the rendered text
6685
6686 @item x
6687 @item y
6688 the x and y offset coordinates where the text is drawn.
6689
6690 These parameters allow the @var{x} and @var{y} expressions to refer
6691 each other, so you can for example specify @code{y=x/dar}.
6692 @end table
6693
6694 @anchor{drawtext_expansion}
6695 @subsection Text expansion
6696
6697 If @option{expansion} is set to @code{strftime},
6698 the filter recognizes strftime() sequences in the provided text and
6699 expands them accordingly. Check the documentation of strftime(). This
6700 feature is deprecated.
6701
6702 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6703
6704 If @option{expansion} is set to @code{normal} (which is the default),
6705 the following expansion mechanism is used.
6706
6707 The backslash character @samp{\}, followed by any character, always expands to
6708 the second character.
6709
6710 Sequence of the form @code{%@{...@}} are expanded. The text between the
6711 braces is a function name, possibly followed by arguments separated by ':'.
6712 If the arguments contain special characters or delimiters (':' or '@}'),
6713 they should be escaped.
6714
6715 Note that they probably must also be escaped as the value for the
6716 @option{text} option in the filter argument string and as the filter
6717 argument in the filtergraph description, and possibly also for the shell,
6718 that makes up to four levels of escaping; using a text file avoids these
6719 problems.
6720
6721 The following functions are available:
6722
6723 @table @command
6724
6725 @item expr, e
6726 The expression evaluation result.
6727
6728 It must take one argument specifying the expression to be evaluated,
6729 which accepts the same constants and functions as the @var{x} and
6730 @var{y} values. Note that not all constants should be used, for
6731 example the text size is not known when evaluating the expression, so
6732 the constants @var{text_w} and @var{text_h} will have an undefined
6733 value.
6734
6735 @item expr_int_format, eif
6736 Evaluate the expression's value and output as formatted integer.
6737
6738 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6739 The second argument specifies the output format. Allowed values are @samp{x},
6740 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6741 @code{printf} function.
6742 The third parameter is optional and sets the number of positions taken by the output.
6743 It can be used to add padding with zeros from the left.
6744
6745 @item gmtime
6746 The time at which the filter is running, expressed in UTC.
6747 It can accept an argument: a strftime() format string.
6748
6749 @item localtime
6750 The time at which the filter is running, expressed in the local time zone.
6751 It can accept an argument: a strftime() format string.
6752
6753 @item metadata
6754 Frame metadata. Takes one or two arguments.
6755
6756 The first argument is mandatory and specifies the metadata key.
6757
6758 The second argument is optional and specifies a default value, used when the
6759 metadata key is not found or empty.
6760
6761 @item n, frame_num
6762 The frame number, starting from 0.
6763
6764 @item pict_type
6765 A 1 character description of the current picture type.
6766
6767 @item pts
6768 The timestamp of the current frame.
6769 It can take up to three arguments.
6770
6771 The first argument is the format of the timestamp; it defaults to @code{flt}
6772 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6773 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6774 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6775 @code{localtime} stands for the timestamp of the frame formatted as
6776 local time zone time.
6777
6778 The second argument is an offset added to the timestamp.
6779
6780 If the format is set to @code{localtime} or @code{gmtime},
6781 a third argument may be supplied: a strftime() format string.
6782 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6783 @end table
6784
6785 @subsection Examples
6786
6787 @itemize
6788 @item
6789 Draw "Test Text" with font FreeSerif, using the default values for the
6790 optional parameters.
6791
6792 @example
6793 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6794 @end example
6795
6796 @item
6797 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
6798 and y=50 (counting from the top-left corner of the screen), text is
6799 yellow with a red box around it. Both the text and the box have an
6800 opacity of 20%.
6801
6802 @example
6803 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
6804           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
6805 @end example
6806
6807 Note that the double quotes are not necessary if spaces are not used
6808 within the parameter list.
6809
6810 @item
6811 Show the text at the center of the video frame:
6812 @example
6813 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
6814 @end example
6815
6816 @item
6817 Show the text at a random position, switching to a new position every 30 seconds:
6818 @example
6819 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)"
6820 @end example
6821
6822 @item
6823 Show a text line sliding from right to left in the last row of the video
6824 frame. The file @file{LONG_LINE} is assumed to contain a single line
6825 with no newlines.
6826 @example
6827 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
6828 @end example
6829
6830 @item
6831 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
6832 @example
6833 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
6834 @end example
6835
6836 @item
6837 Draw a single green letter "g", at the center of the input video.
6838 The glyph baseline is placed at half screen height.
6839 @example
6840 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
6841 @end example
6842
6843 @item
6844 Show text for 1 second every 3 seconds:
6845 @example
6846 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
6847 @end example
6848
6849 @item
6850 Use fontconfig to set the font. Note that the colons need to be escaped.
6851 @example
6852 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
6853 @end example
6854
6855 @item
6856 Print the date of a real-time encoding (see strftime(3)):
6857 @example
6858 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
6859 @end example
6860
6861 @item
6862 Show text fading in and out (appearing/disappearing):
6863 @example
6864 #!/bin/sh
6865 DS=1.0 # display start
6866 DE=10.0 # display end
6867 FID=1.5 # fade in duration
6868 FOD=5 # fade out duration
6869 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 @}"
6870 @end example
6871
6872 @end itemize
6873
6874 For more information about libfreetype, check:
6875 @url{http://www.freetype.org/}.
6876
6877 For more information about fontconfig, check:
6878 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
6879
6880 For more information about libfribidi, check:
6881 @url{http://fribidi.org/}.
6882
6883 @section edgedetect
6884
6885 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
6886
6887 The filter accepts the following options:
6888
6889 @table @option
6890 @item low
6891 @item high
6892 Set low and high threshold values used by the Canny thresholding
6893 algorithm.
6894
6895 The high threshold selects the "strong" edge pixels, which are then
6896 connected through 8-connectivity with the "weak" edge pixels selected
6897 by the low threshold.
6898
6899 @var{low} and @var{high} threshold values must be chosen in the range
6900 [0,1], and @var{low} should be lesser or equal to @var{high}.
6901
6902 Default value for @var{low} is @code{20/255}, and default value for @var{high}
6903 is @code{50/255}.
6904
6905 @item mode
6906 Define the drawing mode.
6907
6908 @table @samp
6909 @item wires
6910 Draw white/gray wires on black background.
6911
6912 @item colormix
6913 Mix the colors to create a paint/cartoon effect.
6914 @end table
6915
6916 Default value is @var{wires}.
6917 @end table
6918
6919 @subsection Examples
6920
6921 @itemize
6922 @item
6923 Standard edge detection with custom values for the hysteresis thresholding:
6924 @example
6925 edgedetect=low=0.1:high=0.4
6926 @end example
6927
6928 @item
6929 Painting effect without thresholding:
6930 @example
6931 edgedetect=mode=colormix:high=0
6932 @end example
6933 @end itemize
6934
6935 @section eq
6936 Set brightness, contrast, saturation and approximate gamma adjustment.
6937
6938 The filter accepts the following options:
6939
6940 @table @option
6941 @item contrast
6942 Set the contrast expression. The value must be a float value in range
6943 @code{-2.0} to @code{2.0}. The default value is "1".
6944
6945 @item brightness
6946 Set the brightness expression. The value must be a float value in
6947 range @code{-1.0} to @code{1.0}. The default value is "0".
6948
6949 @item saturation
6950 Set the saturation expression. The value must be a float in
6951 range @code{0.0} to @code{3.0}. The default value is "1".
6952
6953 @item gamma
6954 Set the gamma expression. The value must be a float in range
6955 @code{0.1} to @code{10.0}.  The default value is "1".
6956
6957 @item gamma_r
6958 Set the gamma expression for red. The value must be a float in
6959 range @code{0.1} to @code{10.0}. The default value is "1".
6960
6961 @item gamma_g
6962 Set the gamma expression for green. The value must be a float in range
6963 @code{0.1} to @code{10.0}. The default value is "1".
6964
6965 @item gamma_b
6966 Set the gamma expression for blue. The value must be a float in range
6967 @code{0.1} to @code{10.0}. The default value is "1".
6968
6969 @item gamma_weight
6970 Set the gamma weight expression. It can be used to reduce the effect
6971 of a high gamma value on bright image areas, e.g. keep them from
6972 getting overamplified and just plain white. The value must be a float
6973 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
6974 gamma correction all the way down while @code{1.0} leaves it at its
6975 full strength. Default is "1".
6976
6977 @item eval
6978 Set when the expressions for brightness, contrast, saturation and
6979 gamma expressions are evaluated.
6980
6981 It accepts the following values:
6982 @table @samp
6983 @item init
6984 only evaluate expressions once during the filter initialization or
6985 when a command is processed
6986
6987 @item frame
6988 evaluate expressions for each incoming frame
6989 @end table
6990
6991 Default value is @samp{init}.
6992 @end table
6993
6994 The expressions accept the following parameters:
6995 @table @option
6996 @item n
6997 frame count of the input frame starting from 0
6998
6999 @item pos
7000 byte position of the corresponding packet in the input file, NAN if
7001 unspecified
7002
7003 @item r
7004 frame rate of the input video, NAN if the input frame rate is unknown
7005
7006 @item t
7007 timestamp expressed in seconds, NAN if the input timestamp is unknown
7008 @end table
7009
7010 @subsection Commands
7011 The filter supports the following commands:
7012
7013 @table @option
7014 @item contrast
7015 Set the contrast expression.
7016
7017 @item brightness
7018 Set the brightness expression.
7019
7020 @item saturation
7021 Set the saturation expression.
7022
7023 @item gamma
7024 Set the gamma expression.
7025
7026 @item gamma_r
7027 Set the gamma_r expression.
7028
7029 @item gamma_g
7030 Set gamma_g expression.
7031
7032 @item gamma_b
7033 Set gamma_b expression.
7034
7035 @item gamma_weight
7036 Set gamma_weight expression.
7037
7038 The command accepts the same syntax of the corresponding option.
7039
7040 If the specified expression is not valid, it is kept at its current
7041 value.
7042
7043 @end table
7044
7045 @section erosion
7046
7047 Apply erosion effect to the video.
7048
7049 This filter replaces the pixel by the local(3x3) minimum.
7050
7051 It accepts the following options:
7052
7053 @table @option
7054 @item threshold0
7055 @item threshold1
7056 @item threshold2
7057 @item threshold3
7058 Limit the maximum change for each plane, default is 65535.
7059 If 0, plane will remain unchanged.
7060
7061 @item coordinates
7062 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7063 pixels are used.
7064
7065 Flags to local 3x3 coordinates maps like this:
7066
7067     1 2 3
7068     4   5
7069     6 7 8
7070 @end table
7071
7072 @section extractplanes
7073
7074 Extract color channel components from input video stream into
7075 separate grayscale video streams.
7076
7077 The filter accepts the following option:
7078
7079 @table @option
7080 @item planes
7081 Set plane(s) to extract.
7082
7083 Available values for planes are:
7084 @table @samp
7085 @item y
7086 @item u
7087 @item v
7088 @item a
7089 @item r
7090 @item g
7091 @item b
7092 @end table
7093
7094 Choosing planes not available in the input will result in an error.
7095 That means you cannot select @code{r}, @code{g}, @code{b} planes
7096 with @code{y}, @code{u}, @code{v} planes at same time.
7097 @end table
7098
7099 @subsection Examples
7100
7101 @itemize
7102 @item
7103 Extract luma, u and v color channel component from input video frame
7104 into 3 grayscale outputs:
7105 @example
7106 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
7107 @end example
7108 @end itemize
7109
7110 @section elbg
7111
7112 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7113
7114 For each input image, the filter will compute the optimal mapping from
7115 the input to the output given the codebook length, that is the number
7116 of distinct output colors.
7117
7118 This filter accepts the following options.
7119
7120 @table @option
7121 @item codebook_length, l
7122 Set codebook length. The value must be a positive integer, and
7123 represents the number of distinct output colors. Default value is 256.
7124
7125 @item nb_steps, n
7126 Set the maximum number of iterations to apply for computing the optimal
7127 mapping. The higher the value the better the result and the higher the
7128 computation time. Default value is 1.
7129
7130 @item seed, s
7131 Set a random seed, must be an integer included between 0 and
7132 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7133 will try to use a good random seed on a best effort basis.
7134
7135 @item pal8
7136 Set pal8 output pixel format. This option does not work with codebook
7137 length greater than 256.
7138 @end table
7139
7140 @section fade
7141
7142 Apply a fade-in/out effect to the input video.
7143
7144 It accepts the following parameters:
7145
7146 @table @option
7147 @item type, t
7148 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7149 effect.
7150 Default is @code{in}.
7151
7152 @item start_frame, s
7153 Specify the number of the frame to start applying the fade
7154 effect at. Default is 0.
7155
7156 @item nb_frames, n
7157 The number of frames that the fade effect lasts. At the end of the
7158 fade-in effect, the output video will have the same intensity as the input video.
7159 At the end of the fade-out transition, the output video will be filled with the
7160 selected @option{color}.
7161 Default is 25.
7162
7163 @item alpha
7164 If set to 1, fade only alpha channel, if one exists on the input.
7165 Default value is 0.
7166
7167 @item start_time, st
7168 Specify the timestamp (in seconds) of the frame to start to apply the fade
7169 effect. If both start_frame and start_time are specified, the fade will start at
7170 whichever comes last.  Default is 0.
7171
7172 @item duration, d
7173 The number of seconds for which the fade effect has to last. At the end of the
7174 fade-in effect the output video will have the same intensity as the input video,
7175 at the end of the fade-out transition the output video will be filled with the
7176 selected @option{color}.
7177 If both duration and nb_frames are specified, duration is used. Default is 0
7178 (nb_frames is used by default).
7179
7180 @item color, c
7181 Specify the color of the fade. Default is "black".
7182 @end table
7183
7184 @subsection Examples
7185
7186 @itemize
7187 @item
7188 Fade in the first 30 frames of video:
7189 @example
7190 fade=in:0:30
7191 @end example
7192
7193 The command above is equivalent to:
7194 @example
7195 fade=t=in:s=0:n=30
7196 @end example
7197
7198 @item
7199 Fade out the last 45 frames of a 200-frame video:
7200 @example
7201 fade=out:155:45
7202 fade=type=out:start_frame=155:nb_frames=45
7203 @end example
7204
7205 @item
7206 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7207 @example
7208 fade=in:0:25, fade=out:975:25
7209 @end example
7210
7211 @item
7212 Make the first 5 frames yellow, then fade in from frame 5-24:
7213 @example
7214 fade=in:5:20:color=yellow
7215 @end example
7216
7217 @item
7218 Fade in alpha over first 25 frames of video:
7219 @example
7220 fade=in:0:25:alpha=1
7221 @end example
7222
7223 @item
7224 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7225 @example
7226 fade=t=in:st=5.5:d=0.5
7227 @end example
7228
7229 @end itemize
7230
7231 @section fftfilt
7232 Apply arbitrary expressions to samples in frequency domain
7233
7234 @table @option
7235 @item dc_Y
7236 Adjust the dc value (gain) of the luma plane of the image. The filter
7237 accepts an integer value in range @code{0} to @code{1000}. The default
7238 value is set to @code{0}.
7239
7240 @item dc_U
7241 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7242 filter accepts an integer value in range @code{0} to @code{1000}. The
7243 default value is set to @code{0}.
7244
7245 @item dc_V
7246 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7247 filter accepts an integer value in range @code{0} to @code{1000}. The
7248 default value is set to @code{0}.
7249
7250 @item weight_Y
7251 Set the frequency domain weight expression for the luma plane.
7252
7253 @item weight_U
7254 Set the frequency domain weight expression for the 1st chroma plane.
7255
7256 @item weight_V
7257 Set the frequency domain weight expression for the 2nd chroma plane.
7258
7259 The filter accepts the following variables:
7260 @item X
7261 @item Y
7262 The coordinates of the current sample.
7263
7264 @item W
7265 @item H
7266 The width and height of the image.
7267 @end table
7268
7269 @subsection Examples
7270
7271 @itemize
7272 @item
7273 High-pass:
7274 @example
7275 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7276 @end example
7277
7278 @item
7279 Low-pass:
7280 @example
7281 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7282 @end example
7283
7284 @item
7285 Sharpen:
7286 @example
7287 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7288 @end example
7289
7290 @item
7291 Blur:
7292 @example
7293 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7294 @end example
7295
7296 @end itemize
7297
7298 @section field
7299
7300 Extract a single field from an interlaced image using stride
7301 arithmetic to avoid wasting CPU time. The output frames are marked as
7302 non-interlaced.
7303
7304 The filter accepts the following options:
7305
7306 @table @option
7307 @item type
7308 Specify whether to extract the top (if the value is @code{0} or
7309 @code{top}) or the bottom field (if the value is @code{1} or
7310 @code{bottom}).
7311 @end table
7312
7313 @section fieldhint
7314
7315 Create new frames by copying the top and bottom fields from surrounding frames
7316 supplied as numbers by the hint file.
7317
7318 @table @option
7319 @item hint
7320 Set file containing hints: absolute/relative frame numbers.
7321
7322 There must be one line for each frame in a clip. Each line must contain two
7323 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7324 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7325 is current frame number for @code{absolute} mode or out of [-1, 1] range
7326 for @code{relative} mode. First number tells from which frame to pick up top
7327 field and second number tells from which frame to pick up bottom field.
7328
7329 If optionally followed by @code{+} output frame will be marked as interlaced,
7330 else if followed by @code{-} output frame will be marked as progressive, else
7331 it will be marked same as input frame.
7332 If line starts with @code{#} or @code{;} that line is skipped.
7333
7334 @item mode
7335 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7336 @end table
7337
7338 Example of first several lines of @code{hint} file for @code{relative} mode:
7339 @example
7340 0,0 - # first frame
7341 1,0 - # second frame, use third's frame top field and second's frame bottom field
7342 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7343 1,0 -
7344 0,0 -
7345 0,0 -
7346 1,0 -
7347 1,0 -
7348 1,0 -
7349 0,0 -
7350 0,0 -
7351 1,0 -
7352 1,0 -
7353 1,0 -
7354 0,0 -
7355 @end example
7356
7357 @section fieldmatch
7358
7359 Field matching filter for inverse telecine. It is meant to reconstruct the
7360 progressive frames from a telecined stream. The filter does not drop duplicated
7361 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7362 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7363
7364 The separation of the field matching and the decimation is notably motivated by
7365 the possibility of inserting a de-interlacing filter fallback between the two.
7366 If the source has mixed telecined and real interlaced content,
7367 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7368 But these remaining combed frames will be marked as interlaced, and thus can be
7369 de-interlaced by a later filter such as @ref{yadif} before decimation.
7370
7371 In addition to the various configuration options, @code{fieldmatch} can take an
7372 optional second stream, activated through the @option{ppsrc} option. If
7373 enabled, the frames reconstruction will be based on the fields and frames from
7374 this second stream. This allows the first input to be pre-processed in order to
7375 help the various algorithms of the filter, while keeping the output lossless
7376 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7377 or brightness/contrast adjustments can help.
7378
7379 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7380 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7381 which @code{fieldmatch} is based on. While the semantic and usage are very
7382 close, some behaviour and options names can differ.
7383
7384 The @ref{decimate} filter currently only works for constant frame rate input.
7385 If your input has mixed telecined (30fps) and progressive content with a lower
7386 framerate like 24fps use the following filterchain to produce the necessary cfr
7387 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7388
7389 The filter accepts the following options:
7390
7391 @table @option
7392 @item order
7393 Specify the assumed field order of the input stream. Available values are:
7394
7395 @table @samp
7396 @item auto
7397 Auto detect parity (use FFmpeg's internal parity value).
7398 @item bff
7399 Assume bottom field first.
7400 @item tff
7401 Assume top field first.
7402 @end table
7403
7404 Note that it is sometimes recommended not to trust the parity announced by the
7405 stream.
7406
7407 Default value is @var{auto}.
7408
7409 @item mode
7410 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7411 sense that it won't risk creating jerkiness due to duplicate frames when
7412 possible, but if there are bad edits or blended fields it will end up
7413 outputting combed frames when a good match might actually exist. On the other
7414 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7415 but will almost always find a good frame if there is one. The other values are
7416 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7417 jerkiness and creating duplicate frames versus finding good matches in sections
7418 with bad edits, orphaned fields, blended fields, etc.
7419
7420 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7421
7422 Available values are:
7423
7424 @table @samp
7425 @item pc
7426 2-way matching (p/c)
7427 @item pc_n
7428 2-way matching, and trying 3rd match if still combed (p/c + n)
7429 @item pc_u
7430 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7431 @item pc_n_ub
7432 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7433 still combed (p/c + n + u/b)
7434 @item pcn
7435 3-way matching (p/c/n)
7436 @item pcn_ub
7437 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7438 detected as combed (p/c/n + u/b)
7439 @end table
7440
7441 The parenthesis at the end indicate the matches that would be used for that
7442 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7443 @var{top}).
7444
7445 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7446 the slowest.
7447
7448 Default value is @var{pc_n}.
7449
7450 @item ppsrc
7451 Mark the main input stream as a pre-processed input, and enable the secondary
7452 input stream as the clean source to pick the fields from. See the filter
7453 introduction for more details. It is similar to the @option{clip2} feature from
7454 VFM/TFM.
7455
7456 Default value is @code{0} (disabled).
7457
7458 @item field
7459 Set the field to match from. It is recommended to set this to the same value as
7460 @option{order} unless you experience matching failures with that setting. In
7461 certain circumstances changing the field that is used to match from can have a
7462 large impact on matching performance. Available values are:
7463
7464 @table @samp
7465 @item auto
7466 Automatic (same value as @option{order}).
7467 @item bottom
7468 Match from the bottom field.
7469 @item top
7470 Match from the top field.
7471 @end table
7472
7473 Default value is @var{auto}.
7474
7475 @item mchroma
7476 Set whether or not chroma is included during the match comparisons. In most
7477 cases it is recommended to leave this enabled. You should set this to @code{0}
7478 only if your clip has bad chroma problems such as heavy rainbowing or other
7479 artifacts. Setting this to @code{0} could also be used to speed things up at
7480 the cost of some accuracy.
7481
7482 Default value is @code{1}.
7483
7484 @item y0
7485 @item y1
7486 These define an exclusion band which excludes the lines between @option{y0} and
7487 @option{y1} from being included in the field matching decision. An exclusion
7488 band can be used to ignore subtitles, a logo, or other things that may
7489 interfere with the matching. @option{y0} sets the starting scan line and
7490 @option{y1} sets the ending line; all lines in between @option{y0} and
7491 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7492 @option{y0} and @option{y1} to the same value will disable the feature.
7493 @option{y0} and @option{y1} defaults to @code{0}.
7494
7495 @item scthresh
7496 Set the scene change detection threshold as a percentage of maximum change on
7497 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7498 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7499 @option{scthresh} is @code{[0.0, 100.0]}.
7500
7501 Default value is @code{12.0}.
7502
7503 @item combmatch
7504 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7505 account the combed scores of matches when deciding what match to use as the
7506 final match. Available values are:
7507
7508 @table @samp
7509 @item none
7510 No final matching based on combed scores.
7511 @item sc
7512 Combed scores are only used when a scene change is detected.
7513 @item full
7514 Use combed scores all the time.
7515 @end table
7516
7517 Default is @var{sc}.
7518
7519 @item combdbg
7520 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7521 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7522 Available values are:
7523
7524 @table @samp
7525 @item none
7526 No forced calculation.
7527 @item pcn
7528 Force p/c/n calculations.
7529 @item pcnub
7530 Force p/c/n/u/b calculations.
7531 @end table
7532
7533 Default value is @var{none}.
7534
7535 @item cthresh
7536 This is the area combing threshold used for combed frame detection. This
7537 essentially controls how "strong" or "visible" combing must be to be detected.
7538 Larger values mean combing must be more visible and smaller values mean combing
7539 can be less visible or strong and still be detected. Valid settings are from
7540 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7541 be detected as combed). This is basically a pixel difference value. A good
7542 range is @code{[8, 12]}.
7543
7544 Default value is @code{9}.
7545
7546 @item chroma
7547 Sets whether or not chroma is considered in the combed frame decision.  Only
7548 disable this if your source has chroma problems (rainbowing, etc.) that are
7549 causing problems for the combed frame detection with chroma enabled. Actually,
7550 using @option{chroma}=@var{0} is usually more reliable, except for the case
7551 where there is chroma only combing in the source.
7552
7553 Default value is @code{0}.
7554
7555 @item blockx
7556 @item blocky
7557 Respectively set the x-axis and y-axis size of the window used during combed
7558 frame detection. This has to do with the size of the area in which
7559 @option{combpel} pixels are required to be detected as combed for a frame to be
7560 declared combed. See the @option{combpel} parameter description for more info.
7561 Possible values are any number that is a power of 2 starting at 4 and going up
7562 to 512.
7563
7564 Default value is @code{16}.
7565
7566 @item combpel
7567 The number of combed pixels inside any of the @option{blocky} by
7568 @option{blockx} size blocks on the frame for the frame to be detected as
7569 combed. While @option{cthresh} controls how "visible" the combing must be, this
7570 setting controls "how much" combing there must be in any localized area (a
7571 window defined by the @option{blockx} and @option{blocky} settings) on the
7572 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7573 which point no frames will ever be detected as combed). This setting is known
7574 as @option{MI} in TFM/VFM vocabulary.
7575
7576 Default value is @code{80}.
7577 @end table
7578
7579 @anchor{p/c/n/u/b meaning}
7580 @subsection p/c/n/u/b meaning
7581
7582 @subsubsection p/c/n
7583
7584 We assume the following telecined stream:
7585
7586 @example
7587 Top fields:     1 2 2 3 4
7588 Bottom fields:  1 2 3 4 4
7589 @end example
7590
7591 The numbers correspond to the progressive frame the fields relate to. Here, the
7592 first two frames are progressive, the 3rd and 4th are combed, and so on.
7593
7594 When @code{fieldmatch} is configured to run a matching from bottom
7595 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7596
7597 @example
7598 Input stream:
7599                 T     1 2 2 3 4
7600                 B     1 2 3 4 4   <-- matching reference
7601
7602 Matches:              c c n n c
7603
7604 Output stream:
7605                 T     1 2 3 4 4
7606                 B     1 2 3 4 4
7607 @end example
7608
7609 As a result of the field matching, we can see that some frames get duplicated.
7610 To perform a complete inverse telecine, you need to rely on a decimation filter
7611 after this operation. See for instance the @ref{decimate} filter.
7612
7613 The same operation now matching from top fields (@option{field}=@var{top})
7614 looks like this:
7615
7616 @example
7617 Input stream:
7618                 T     1 2 2 3 4   <-- matching reference
7619                 B     1 2 3 4 4
7620
7621 Matches:              c c p p c
7622
7623 Output stream:
7624                 T     1 2 2 3 4
7625                 B     1 2 2 3 4
7626 @end example
7627
7628 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7629 basically, they refer to the frame and field of the opposite parity:
7630
7631 @itemize
7632 @item @var{p} matches the field of the opposite parity in the previous frame
7633 @item @var{c} matches the field of the opposite parity in the current frame
7634 @item @var{n} matches the field of the opposite parity in the next frame
7635 @end itemize
7636
7637 @subsubsection u/b
7638
7639 The @var{u} and @var{b} matching are a bit special in the sense that they match
7640 from the opposite parity flag. In the following examples, we assume that we are
7641 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7642 'x' is placed above and below each matched fields.
7643
7644 With bottom matching (@option{field}=@var{bottom}):
7645 @example
7646 Match:           c         p           n          b          u
7647
7648                  x       x               x        x          x
7649   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7650   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7651                  x         x           x        x              x
7652
7653 Output frames:
7654                  2          1          2          2          2
7655                  2          2          2          1          3
7656 @end example
7657
7658 With top matching (@option{field}=@var{top}):
7659 @example
7660 Match:           c         p           n          b          u
7661
7662                  x         x           x        x              x
7663   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7664   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7665                  x       x               x        x          x
7666
7667 Output frames:
7668                  2          2          2          1          2
7669                  2          1          3          2          2
7670 @end example
7671
7672 @subsection Examples
7673
7674 Simple IVTC of a top field first telecined stream:
7675 @example
7676 fieldmatch=order=tff:combmatch=none, decimate
7677 @end example
7678
7679 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7680 @example
7681 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7682 @end example
7683
7684 @section fieldorder
7685
7686 Transform the field order of the input video.
7687
7688 It accepts the following parameters:
7689
7690 @table @option
7691
7692 @item order
7693 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7694 for bottom field first.
7695 @end table
7696
7697 The default value is @samp{tff}.
7698
7699 The transformation is done by shifting the picture content up or down
7700 by one line, and filling the remaining line with appropriate picture content.
7701 This method is consistent with most broadcast field order converters.
7702
7703 If the input video is not flagged as being interlaced, or it is already
7704 flagged as being of the required output field order, then this filter does
7705 not alter the incoming video.
7706
7707 It is very useful when converting to or from PAL DV material,
7708 which is bottom field first.
7709
7710 For example:
7711 @example
7712 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7713 @end example
7714
7715 @section fifo, afifo
7716
7717 Buffer input images and send them when they are requested.
7718
7719 It is mainly useful when auto-inserted by the libavfilter
7720 framework.
7721
7722 It does not take parameters.
7723
7724 @section find_rect
7725
7726 Find a rectangular object
7727
7728 It accepts the following options:
7729
7730 @table @option
7731 @item object
7732 Filepath of the object image, needs to be in gray8.
7733
7734 @item threshold
7735 Detection threshold, default is 0.5.
7736
7737 @item mipmaps
7738 Number of mipmaps, default is 3.
7739
7740 @item xmin, ymin, xmax, ymax
7741 Specifies the rectangle in which to search.
7742 @end table
7743
7744 @subsection Examples
7745
7746 @itemize
7747 @item
7748 Generate a representative palette of a given video using @command{ffmpeg}:
7749 @example
7750 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7751 @end example
7752 @end itemize
7753
7754 @section cover_rect
7755
7756 Cover a rectangular object
7757
7758 It accepts the following options:
7759
7760 @table @option
7761 @item cover
7762 Filepath of the optional cover image, needs to be in yuv420.
7763
7764 @item mode
7765 Set covering mode.
7766
7767 It accepts the following values:
7768 @table @samp
7769 @item cover
7770 cover it by the supplied image
7771 @item blur
7772 cover it by interpolating the surrounding pixels
7773 @end table
7774
7775 Default value is @var{blur}.
7776 @end table
7777
7778 @subsection Examples
7779
7780 @itemize
7781 @item
7782 Generate a representative palette of a given video using @command{ffmpeg}:
7783 @example
7784 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7785 @end example
7786 @end itemize
7787
7788 @anchor{format}
7789 @section format
7790
7791 Convert the input video to one of the specified pixel formats.
7792 Libavfilter will try to pick one that is suitable as input to
7793 the next filter.
7794
7795 It accepts the following parameters:
7796 @table @option
7797
7798 @item pix_fmts
7799 A '|'-separated list of pixel format names, such as
7800 "pix_fmts=yuv420p|monow|rgb24".
7801
7802 @end table
7803
7804 @subsection Examples
7805
7806 @itemize
7807 @item
7808 Convert the input video to the @var{yuv420p} format
7809 @example
7810 format=pix_fmts=yuv420p
7811 @end example
7812
7813 Convert the input video to any of the formats in the list
7814 @example
7815 format=pix_fmts=yuv420p|yuv444p|yuv410p
7816 @end example
7817 @end itemize
7818
7819 @anchor{fps}
7820 @section fps
7821
7822 Convert the video to specified constant frame rate by duplicating or dropping
7823 frames as necessary.
7824
7825 It accepts the following parameters:
7826 @table @option
7827
7828 @item fps
7829 The desired output frame rate. The default is @code{25}.
7830
7831 @item round
7832 Rounding method.
7833
7834 Possible values are:
7835 @table @option
7836 @item zero
7837 zero round towards 0
7838 @item inf
7839 round away from 0
7840 @item down
7841 round towards -infinity
7842 @item up
7843 round towards +infinity
7844 @item near
7845 round to nearest
7846 @end table
7847 The default is @code{near}.
7848
7849 @item start_time
7850 Assume the first PTS should be the given value, in seconds. This allows for
7851 padding/trimming at the start of stream. By default, no assumption is made
7852 about the first frame's expected PTS, so no padding or trimming is done.
7853 For example, this could be set to 0 to pad the beginning with duplicates of
7854 the first frame if a video stream starts after the audio stream or to trim any
7855 frames with a negative PTS.
7856
7857 @end table
7858
7859 Alternatively, the options can be specified as a flat string:
7860 @var{fps}[:@var{round}].
7861
7862 See also the @ref{setpts} filter.
7863
7864 @subsection Examples
7865
7866 @itemize
7867 @item
7868 A typical usage in order to set the fps to 25:
7869 @example
7870 fps=fps=25
7871 @end example
7872
7873 @item
7874 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
7875 @example
7876 fps=fps=film:round=near
7877 @end example
7878 @end itemize
7879
7880 @section framepack
7881
7882 Pack two different video streams into a stereoscopic video, setting proper
7883 metadata on supported codecs. The two views should have the same size and
7884 framerate and processing will stop when the shorter video ends. Please note
7885 that you may conveniently adjust view properties with the @ref{scale} and
7886 @ref{fps} filters.
7887
7888 It accepts the following parameters:
7889 @table @option
7890
7891 @item format
7892 The desired packing format. Supported values are:
7893
7894 @table @option
7895
7896 @item sbs
7897 The views are next to each other (default).
7898
7899 @item tab
7900 The views are on top of each other.
7901
7902 @item lines
7903 The views are packed by line.
7904
7905 @item columns
7906 The views are packed by column.
7907
7908 @item frameseq
7909 The views are temporally interleaved.
7910
7911 @end table
7912
7913 @end table
7914
7915 Some examples:
7916
7917 @example
7918 # Convert left and right views into a frame-sequential video
7919 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
7920
7921 # Convert views into a side-by-side video with the same output resolution as the input
7922 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
7923 @end example
7924
7925 @section framerate
7926
7927 Change the frame rate by interpolating new video output frames from the source
7928 frames.
7929
7930 This filter is not designed to function correctly with interlaced media. If
7931 you wish to change the frame rate of interlaced media then you are required
7932 to deinterlace before this filter and re-interlace after this filter.
7933
7934 A description of the accepted options follows.
7935
7936 @table @option
7937 @item fps
7938 Specify the output frames per second. This option can also be specified
7939 as a value alone. The default is @code{50}.
7940
7941 @item interp_start
7942 Specify the start of a range where the output frame will be created as a
7943 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7944 the default is @code{15}.
7945
7946 @item interp_end
7947 Specify the end of a range where the output frame will be created as a
7948 linear interpolation of two frames. The range is [@code{0}-@code{255}],
7949 the default is @code{240}.
7950
7951 @item scene
7952 Specify the level at which a scene change is detected as a value between
7953 0 and 100 to indicate a new scene; a low value reflects a low
7954 probability for the current frame to introduce a new scene, while a higher
7955 value means the current frame is more likely to be one.
7956 The default is @code{7}.
7957
7958 @item flags
7959 Specify flags influencing the filter process.
7960
7961 Available value for @var{flags} is:
7962
7963 @table @option
7964 @item scene_change_detect, scd
7965 Enable scene change detection using the value of the option @var{scene}.
7966 This flag is enabled by default.
7967 @end table
7968 @end table
7969
7970 @section framestep
7971
7972 Select one frame every N-th frame.
7973
7974 This filter accepts the following option:
7975 @table @option
7976 @item step
7977 Select frame after every @code{step} frames.
7978 Allowed values are positive integers higher than 0. Default value is @code{1}.
7979 @end table
7980
7981 @anchor{frei0r}
7982 @section frei0r
7983
7984 Apply a frei0r effect to the input video.
7985
7986 To enable the compilation of this filter, you need to install the frei0r
7987 header and configure FFmpeg with @code{--enable-frei0r}.
7988
7989 It accepts the following parameters:
7990
7991 @table @option
7992
7993 @item filter_name
7994 The name of the frei0r effect to load. If the environment variable
7995 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
7996 directories specified by the colon-separated list in @env{FREIOR_PATH}.
7997 Otherwise, the standard frei0r paths are searched, in this order:
7998 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
7999 @file{/usr/lib/frei0r-1/}.
8000
8001 @item filter_params
8002 A '|'-separated list of parameters to pass to the frei0r effect.
8003
8004 @end table
8005
8006 A frei0r effect parameter can be a boolean (its value is either
8007 "y" or "n"), a double, a color (specified as
8008 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8009 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8010 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8011 @var{X} and @var{Y} are floating point numbers) and/or a string.
8012
8013 The number and types of parameters depend on the loaded effect. If an
8014 effect parameter is not specified, the default value is set.
8015
8016 @subsection Examples
8017
8018 @itemize
8019 @item
8020 Apply the distort0r effect, setting the first two double parameters:
8021 @example
8022 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8023 @end example
8024
8025 @item
8026 Apply the colordistance effect, taking a color as the first parameter:
8027 @example
8028 frei0r=colordistance:0.2/0.3/0.4
8029 frei0r=colordistance:violet
8030 frei0r=colordistance:0x112233
8031 @end example
8032
8033 @item
8034 Apply the perspective effect, specifying the top left and top right image
8035 positions:
8036 @example
8037 frei0r=perspective:0.2/0.2|0.8/0.2
8038 @end example
8039 @end itemize
8040
8041 For more information, see
8042 @url{http://frei0r.dyne.org}
8043
8044 @section fspp
8045
8046 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8047
8048 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8049 processing filter, one of them is performed once per block, not per pixel.
8050 This allows for much higher speed.
8051
8052 The filter accepts the following options:
8053
8054 @table @option
8055 @item quality
8056 Set quality. This option defines the number of levels for averaging. It accepts
8057 an integer in the range 4-5. Default value is @code{4}.
8058
8059 @item qp
8060 Force a constant quantization parameter. It accepts an integer in range 0-63.
8061 If not set, the filter will use the QP from the video stream (if available).
8062
8063 @item strength
8064 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8065 more details but also more artifacts, while higher values make the image smoother
8066 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8067
8068 @item use_bframe_qp
8069 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8070 option may cause flicker since the B-Frames have often larger QP. Default is
8071 @code{0} (not enabled).
8072
8073 @end table
8074
8075 @section geq
8076
8077 The filter accepts the following options:
8078
8079 @table @option
8080 @item lum_expr, lum
8081 Set the luminance expression.
8082 @item cb_expr, cb
8083 Set the chrominance blue expression.
8084 @item cr_expr, cr
8085 Set the chrominance red expression.
8086 @item alpha_expr, a
8087 Set the alpha expression.
8088 @item red_expr, r
8089 Set the red expression.
8090 @item green_expr, g
8091 Set the green expression.
8092 @item blue_expr, b
8093 Set the blue expression.
8094 @end table
8095
8096 The colorspace is selected according to the specified options. If one
8097 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8098 options is specified, the filter will automatically select a YCbCr
8099 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8100 @option{blue_expr} options is specified, it will select an RGB
8101 colorspace.
8102
8103 If one of the chrominance expression is not defined, it falls back on the other
8104 one. If no alpha expression is specified it will evaluate to opaque value.
8105 If none of chrominance expressions are specified, they will evaluate
8106 to the luminance expression.
8107
8108 The expressions can use the following variables and functions:
8109
8110 @table @option
8111 @item N
8112 The sequential number of the filtered frame, starting from @code{0}.
8113
8114 @item X
8115 @item Y
8116 The coordinates of the current sample.
8117
8118 @item W
8119 @item H
8120 The width and height of the image.
8121
8122 @item SW
8123 @item SH
8124 Width and height scale depending on the currently filtered plane. It is the
8125 ratio between the corresponding luma plane number of pixels and the current
8126 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8127 @code{0.5,0.5} for chroma planes.
8128
8129 @item T
8130 Time of the current frame, expressed in seconds.
8131
8132 @item p(x, y)
8133 Return the value of the pixel at location (@var{x},@var{y}) of the current
8134 plane.
8135
8136 @item lum(x, y)
8137 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8138 plane.
8139
8140 @item cb(x, y)
8141 Return the value of the pixel at location (@var{x},@var{y}) of the
8142 blue-difference chroma plane. Return 0 if there is no such plane.
8143
8144 @item cr(x, y)
8145 Return the value of the pixel at location (@var{x},@var{y}) of the
8146 red-difference chroma plane. Return 0 if there is no such plane.
8147
8148 @item r(x, y)
8149 @item g(x, y)
8150 @item b(x, y)
8151 Return the value of the pixel at location (@var{x},@var{y}) of the
8152 red/green/blue component. Return 0 if there is no such component.
8153
8154 @item alpha(x, y)
8155 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8156 plane. Return 0 if there is no such plane.
8157 @end table
8158
8159 For functions, if @var{x} and @var{y} are outside the area, the value will be
8160 automatically clipped to the closer edge.
8161
8162 @subsection Examples
8163
8164 @itemize
8165 @item
8166 Flip the image horizontally:
8167 @example
8168 geq=p(W-X\,Y)
8169 @end example
8170
8171 @item
8172 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8173 wavelength of 100 pixels:
8174 @example
8175 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8176 @end example
8177
8178 @item
8179 Generate a fancy enigmatic moving light:
8180 @example
8181 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
8182 @end example
8183
8184 @item
8185 Generate a quick emboss effect:
8186 @example
8187 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8188 @end example
8189
8190 @item
8191 Modify RGB components depending on pixel position:
8192 @example
8193 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8194 @end example
8195
8196 @item
8197 Create a radial gradient that is the same size as the input (also see
8198 the @ref{vignette} filter):
8199 @example
8200 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8201 @end example
8202 @end itemize
8203
8204 @section gradfun
8205
8206 Fix the banding artifacts that are sometimes introduced into nearly flat
8207 regions by truncation to 8bit color depth.
8208 Interpolate the gradients that should go where the bands are, and
8209 dither them.
8210
8211 It is designed for playback only.  Do not use it prior to
8212 lossy compression, because compression tends to lose the dither and
8213 bring back the bands.
8214
8215 It accepts the following parameters:
8216
8217 @table @option
8218
8219 @item strength
8220 The maximum amount by which the filter will change any one pixel. This is also
8221 the threshold for detecting nearly flat regions. Acceptable values range from
8222 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8223 valid range.
8224
8225 @item radius
8226 The neighborhood to fit the gradient to. A larger radius makes for smoother
8227 gradients, but also prevents the filter from modifying the pixels near detailed
8228 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8229 values will be clipped to the valid range.
8230
8231 @end table
8232
8233 Alternatively, the options can be specified as a flat string:
8234 @var{strength}[:@var{radius}]
8235
8236 @subsection Examples
8237
8238 @itemize
8239 @item
8240 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8241 @example
8242 gradfun=3.5:8
8243 @end example
8244
8245 @item
8246 Specify radius, omitting the strength (which will fall-back to the default
8247 value):
8248 @example
8249 gradfun=radius=8
8250 @end example
8251
8252 @end itemize
8253
8254 @anchor{haldclut}
8255 @section haldclut
8256
8257 Apply a Hald CLUT to a video stream.
8258
8259 First input is the video stream to process, and second one is the Hald CLUT.
8260 The Hald CLUT input can be a simple picture or a complete video stream.
8261
8262 The filter accepts the following options:
8263
8264 @table @option
8265 @item shortest
8266 Force termination when the shortest input terminates. Default is @code{0}.
8267 @item repeatlast
8268 Continue applying the last CLUT after the end of the stream. A value of
8269 @code{0} disable the filter after the last frame of the CLUT is reached.
8270 Default is @code{1}.
8271 @end table
8272
8273 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8274 filters share the same internals).
8275
8276 More information about the Hald CLUT can be found on Eskil Steenberg's website
8277 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8278
8279 @subsection Workflow examples
8280
8281 @subsubsection Hald CLUT video stream
8282
8283 Generate an identity Hald CLUT stream altered with various effects:
8284 @example
8285 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
8286 @end example
8287
8288 Note: make sure you use a lossless codec.
8289
8290 Then use it with @code{haldclut} to apply it on some random stream:
8291 @example
8292 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8293 @end example
8294
8295 The Hald CLUT will be applied to the 10 first seconds (duration of
8296 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8297 to the remaining frames of the @code{mandelbrot} stream.
8298
8299 @subsubsection Hald CLUT with preview
8300
8301 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8302 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8303 biggest possible square starting at the top left of the picture. The remaining
8304 padding pixels (bottom or right) will be ignored. This area can be used to add
8305 a preview of the Hald CLUT.
8306
8307 Typically, the following generated Hald CLUT will be supported by the
8308 @code{haldclut} filter:
8309
8310 @example
8311 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8312    pad=iw+320 [padded_clut];
8313    smptebars=s=320x256, split [a][b];
8314    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8315    [main][b] overlay=W-320" -frames:v 1 clut.png
8316 @end example
8317
8318 It contains the original and a preview of the effect of the CLUT: SMPTE color
8319 bars are displayed on the right-top, and below the same color bars processed by
8320 the color changes.
8321
8322 Then, the effect of this Hald CLUT can be visualized with:
8323 @example
8324 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8325 @end example
8326
8327 @section hdcd
8328
8329 Decodes high definition audio cd data. 16-Bit PCM stream containing hdcd flags
8330 is converted to 20-bit PCM stream.
8331
8332 @section hflip
8333
8334 Flip the input video horizontally.
8335
8336 For example, to horizontally flip the input video with @command{ffmpeg}:
8337 @example
8338 ffmpeg -i in.avi -vf "hflip" out.avi
8339 @end example
8340
8341 @section histeq
8342 This filter applies a global color histogram equalization on a
8343 per-frame basis.
8344
8345 It can be used to correct video that has a compressed range of pixel
8346 intensities.  The filter redistributes the pixel intensities to
8347 equalize their distribution across the intensity range. It may be
8348 viewed as an "automatically adjusting contrast filter". This filter is
8349 useful only for correcting degraded or poorly captured source
8350 video.
8351
8352 The filter accepts the following options:
8353
8354 @table @option
8355 @item strength
8356 Determine the amount of equalization to be applied.  As the strength
8357 is reduced, the distribution of pixel intensities more-and-more
8358 approaches that of the input frame. The value must be a float number
8359 in the range [0,1] and defaults to 0.200.
8360
8361 @item intensity
8362 Set the maximum intensity that can generated and scale the output
8363 values appropriately.  The strength should be set as desired and then
8364 the intensity can be limited if needed to avoid washing-out. The value
8365 must be a float number in the range [0,1] and defaults to 0.210.
8366
8367 @item antibanding
8368 Set the antibanding level. If enabled the filter will randomly vary
8369 the luminance of output pixels by a small amount to avoid banding of
8370 the histogram. Possible values are @code{none}, @code{weak} or
8371 @code{strong}. It defaults to @code{none}.
8372 @end table
8373
8374 @section histogram
8375
8376 Compute and draw a color distribution histogram for the input video.
8377
8378 The computed histogram is a representation of the color component
8379 distribution in an image.
8380
8381 Standard histogram displays the color components distribution in an image.
8382 Displays color graph for each color component. Shows distribution of
8383 the Y, U, V, A or R, G, B components, depending on input format, in the
8384 current frame. Below each graph a color component scale meter is shown.
8385
8386 The filter accepts the following options:
8387
8388 @table @option
8389 @item level_height
8390 Set height of level. Default value is @code{200}.
8391 Allowed range is [50, 2048].
8392
8393 @item scale_height
8394 Set height of color scale. Default value is @code{12}.
8395 Allowed range is [0, 40].
8396
8397 @item display_mode
8398 Set display mode.
8399 It accepts the following values:
8400 @table @samp
8401 @item parade
8402 Per color component graphs are placed below each other.
8403
8404 @item overlay
8405 Presents information identical to that in the @code{parade}, except
8406 that the graphs representing color components are superimposed directly
8407 over one another.
8408 @end table
8409 Default is @code{parade}.
8410
8411 @item levels_mode
8412 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8413 Default is @code{linear}.
8414
8415 @item components
8416 Set what color components to display.
8417 Default is @code{7}.
8418 @end table
8419
8420 @subsection Examples
8421
8422 @itemize
8423
8424 @item
8425 Calculate and draw histogram:
8426 @example
8427 ffplay -i input -vf histogram
8428 @end example
8429
8430 @end itemize
8431
8432 @anchor{hqdn3d}
8433 @section hqdn3d
8434
8435 This is a high precision/quality 3d denoise filter. It aims to reduce
8436 image noise, producing smooth images and making still images really
8437 still. It should enhance compressibility.
8438
8439 It accepts the following optional parameters:
8440
8441 @table @option
8442 @item luma_spatial
8443 A non-negative floating point number which specifies spatial luma strength.
8444 It defaults to 4.0.
8445
8446 @item chroma_spatial
8447 A non-negative floating point number which specifies spatial chroma strength.
8448 It defaults to 3.0*@var{luma_spatial}/4.0.
8449
8450 @item luma_tmp
8451 A floating point number which specifies luma temporal strength. It defaults to
8452 6.0*@var{luma_spatial}/4.0.
8453
8454 @item chroma_tmp
8455 A floating point number which specifies chroma temporal strength. It defaults to
8456 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8457 @end table
8458
8459 @anchor{hwupload_cuda}
8460 @section hwupload_cuda
8461
8462 Upload system memory frames to a CUDA device.
8463
8464 It accepts the following optional parameters:
8465
8466 @table @option
8467 @item device
8468 The number of the CUDA device to use
8469 @end table
8470
8471 @section hqx
8472
8473 Apply a high-quality magnification filter designed for pixel art. This filter
8474 was originally created by Maxim Stepin.
8475
8476 It accepts the following option:
8477
8478 @table @option
8479 @item n
8480 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8481 @code{hq3x} and @code{4} for @code{hq4x}.
8482 Default is @code{3}.
8483 @end table
8484
8485 @section hstack
8486 Stack input videos horizontally.
8487
8488 All streams must be of same pixel format and of same height.
8489
8490 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8491 to create same output.
8492
8493 The filter accept the following option:
8494
8495 @table @option
8496 @item inputs
8497 Set number of input streams. Default is 2.
8498
8499 @item shortest
8500 If set to 1, force the output to terminate when the shortest input
8501 terminates. Default value is 0.
8502 @end table
8503
8504 @section hue
8505
8506 Modify the hue and/or the saturation of the input.
8507
8508 It accepts the following parameters:
8509
8510 @table @option
8511 @item h
8512 Specify the hue angle as a number of degrees. It accepts an expression,
8513 and defaults to "0".
8514
8515 @item s
8516 Specify the saturation in the [-10,10] range. It accepts an expression and
8517 defaults to "1".
8518
8519 @item H
8520 Specify the hue angle as a number of radians. It accepts an
8521 expression, and defaults to "0".
8522
8523 @item b
8524 Specify the brightness in the [-10,10] range. It accepts an expression and
8525 defaults to "0".
8526 @end table
8527
8528 @option{h} and @option{H} are mutually exclusive, and can't be
8529 specified at the same time.
8530
8531 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8532 expressions containing the following constants:
8533
8534 @table @option
8535 @item n
8536 frame count of the input frame starting from 0
8537
8538 @item pts
8539 presentation timestamp of the input frame expressed in time base units
8540
8541 @item r
8542 frame rate of the input video, NAN if the input frame rate is unknown
8543
8544 @item t
8545 timestamp expressed in seconds, NAN if the input timestamp is unknown
8546
8547 @item tb
8548 time base of the input video
8549 @end table
8550
8551 @subsection Examples
8552
8553 @itemize
8554 @item
8555 Set the hue to 90 degrees and the saturation to 1.0:
8556 @example
8557 hue=h=90:s=1
8558 @end example
8559
8560 @item
8561 Same command but expressing the hue in radians:
8562 @example
8563 hue=H=PI/2:s=1
8564 @end example
8565
8566 @item
8567 Rotate hue and make the saturation swing between 0
8568 and 2 over a period of 1 second:
8569 @example
8570 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8571 @end example
8572
8573 @item
8574 Apply a 3 seconds saturation fade-in effect starting at 0:
8575 @example
8576 hue="s=min(t/3\,1)"
8577 @end example
8578
8579 The general fade-in expression can be written as:
8580 @example
8581 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8582 @end example
8583
8584 @item
8585 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8586 @example
8587 hue="s=max(0\, min(1\, (8-t)/3))"
8588 @end example
8589
8590 The general fade-out expression can be written as:
8591 @example
8592 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8593 @end example
8594
8595 @end itemize
8596
8597 @subsection Commands
8598
8599 This filter supports the following commands:
8600 @table @option
8601 @item b
8602 @item s
8603 @item h
8604 @item H
8605 Modify the hue and/or the saturation and/or brightness of the input video.
8606 The command accepts the same syntax of the corresponding option.
8607
8608 If the specified expression is not valid, it is kept at its current
8609 value.
8610 @end table
8611
8612 @section idet
8613
8614 Detect video interlacing type.
8615
8616 This filter tries to detect if the input frames as interlaced, progressive,
8617 top or bottom field first. It will also try and detect fields that are
8618 repeated between adjacent frames (a sign of telecine).
8619
8620 Single frame detection considers only immediately adjacent frames when classifying each frame.
8621 Multiple frame detection incorporates the classification history of previous frames.
8622
8623 The filter will log these metadata values:
8624
8625 @table @option
8626 @item single.current_frame
8627 Detected type of current frame using single-frame detection. One of:
8628 ``tff'' (top field first), ``bff'' (bottom field first),
8629 ``progressive'', or ``undetermined''
8630
8631 @item single.tff
8632 Cumulative number of frames detected as top field first using single-frame detection.
8633
8634 @item multiple.tff
8635 Cumulative number of frames detected as top field first using multiple-frame detection.
8636
8637 @item single.bff
8638 Cumulative number of frames detected as bottom field first using single-frame detection.
8639
8640 @item multiple.current_frame
8641 Detected type of current frame using multiple-frame detection. One of:
8642 ``tff'' (top field first), ``bff'' (bottom field first),
8643 ``progressive'', or ``undetermined''
8644
8645 @item multiple.bff
8646 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8647
8648 @item single.progressive
8649 Cumulative number of frames detected as progressive using single-frame detection.
8650
8651 @item multiple.progressive
8652 Cumulative number of frames detected as progressive using multiple-frame detection.
8653
8654 @item single.undetermined
8655 Cumulative number of frames that could not be classified using single-frame detection.
8656
8657 @item multiple.undetermined
8658 Cumulative number of frames that could not be classified using multiple-frame detection.
8659
8660 @item repeated.current_frame
8661 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8662
8663 @item repeated.neither
8664 Cumulative number of frames with no repeated field.
8665
8666 @item repeated.top
8667 Cumulative number of frames with the top field repeated from the previous frame's top field.
8668
8669 @item repeated.bottom
8670 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
8671 @end table
8672
8673 The filter accepts the following options:
8674
8675 @table @option
8676 @item intl_thres
8677 Set interlacing threshold.
8678 @item prog_thres
8679 Set progressive threshold.
8680 @item rep_thres
8681 Threshold for repeated field detection.
8682 @item half_life
8683 Number of frames after which a given frame's contribution to the
8684 statistics is halved (i.e., it contributes only 0.5 to it's
8685 classification). The default of 0 means that all frames seen are given
8686 full weight of 1.0 forever.
8687 @item analyze_interlaced_flag
8688 When this is not 0 then idet will use the specified number of frames to determine
8689 if the interlaced flag is accurate, it will not count undetermined frames.
8690 If the flag is found to be accurate it will be used without any further
8691 computations, if it is found to be inaccurate it will be cleared without any
8692 further computations. This allows inserting the idet filter as a low computational
8693 method to clean up the interlaced flag
8694 @end table
8695
8696 @section il
8697
8698 Deinterleave or interleave fields.
8699
8700 This filter allows one to process interlaced images fields without
8701 deinterlacing them. Deinterleaving splits the input frame into 2
8702 fields (so called half pictures). Odd lines are moved to the top
8703 half of the output image, even lines to the bottom half.
8704 You can process (filter) them independently and then re-interleave them.
8705
8706 The filter accepts the following options:
8707
8708 @table @option
8709 @item luma_mode, l
8710 @item chroma_mode, c
8711 @item alpha_mode, a
8712 Available values for @var{luma_mode}, @var{chroma_mode} and
8713 @var{alpha_mode} are:
8714
8715 @table @samp
8716 @item none
8717 Do nothing.
8718
8719 @item deinterleave, d
8720 Deinterleave fields, placing one above the other.
8721
8722 @item interleave, i
8723 Interleave fields. Reverse the effect of deinterleaving.
8724 @end table
8725 Default value is @code{none}.
8726
8727 @item luma_swap, ls
8728 @item chroma_swap, cs
8729 @item alpha_swap, as
8730 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8731 @end table
8732
8733 @section inflate
8734
8735 Apply inflate effect to the video.
8736
8737 This filter replaces the pixel by the local(3x3) average by taking into account
8738 only values higher than the pixel.
8739
8740 It accepts the following options:
8741
8742 @table @option
8743 @item threshold0
8744 @item threshold1
8745 @item threshold2
8746 @item threshold3
8747 Limit the maximum change for each plane, default is 65535.
8748 If 0, plane will remain unchanged.
8749 @end table
8750
8751 @section interlace
8752
8753 Simple interlacing filter from progressive contents. This interleaves upper (or
8754 lower) lines from odd frames with lower (or upper) lines from even frames,
8755 halving the frame rate and preserving image height.
8756
8757 @example
8758    Original        Original             New Frame
8759    Frame 'j'      Frame 'j+1'             (tff)
8760   ==========      ===========       ==================
8761     Line 0  -------------------->    Frame 'j' Line 0
8762     Line 1          Line 1  ---->   Frame 'j+1' Line 1
8763     Line 2 --------------------->    Frame 'j' Line 2
8764     Line 3          Line 3  ---->   Frame 'j+1' Line 3
8765      ...             ...                   ...
8766 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
8767 @end example
8768
8769 It accepts the following optional parameters:
8770
8771 @table @option
8772 @item scan
8773 This determines whether the interlaced frame is taken from the even
8774 (tff - default) or odd (bff) lines of the progressive frame.
8775
8776 @item lowpass
8777 Enable (default) or disable the vertical lowpass filter to avoid twitter
8778 interlacing and reduce moire patterns.
8779 @end table
8780
8781 @section kerndeint
8782
8783 Deinterlace input video by applying Donald Graft's adaptive kernel
8784 deinterling. Work on interlaced parts of a video to produce
8785 progressive frames.
8786
8787 The description of the accepted parameters follows.
8788
8789 @table @option
8790 @item thresh
8791 Set the threshold which affects the filter's tolerance when
8792 determining if a pixel line must be processed. It must be an integer
8793 in the range [0,255] and defaults to 10. A value of 0 will result in
8794 applying the process on every pixels.
8795
8796 @item map
8797 Paint pixels exceeding the threshold value to white if set to 1.
8798 Default is 0.
8799
8800 @item order
8801 Set the fields order. Swap fields if set to 1, leave fields alone if
8802 0. Default is 0.
8803
8804 @item sharp
8805 Enable additional sharpening if set to 1. Default is 0.
8806
8807 @item twoway
8808 Enable twoway sharpening if set to 1. Default is 0.
8809 @end table
8810
8811 @subsection Examples
8812
8813 @itemize
8814 @item
8815 Apply default values:
8816 @example
8817 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
8818 @end example
8819
8820 @item
8821 Enable additional sharpening:
8822 @example
8823 kerndeint=sharp=1
8824 @end example
8825
8826 @item
8827 Paint processed pixels in white:
8828 @example
8829 kerndeint=map=1
8830 @end example
8831 @end itemize
8832
8833 @section lenscorrection
8834
8835 Correct radial lens distortion
8836
8837 This filter can be used to correct for radial distortion as can result from the use
8838 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
8839 one can use tools available for example as part of opencv or simply trial-and-error.
8840 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
8841 and extract the k1 and k2 coefficients from the resulting matrix.
8842
8843 Note that effectively the same filter is available in the open-source tools Krita and
8844 Digikam from the KDE project.
8845
8846 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
8847 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
8848 brightness distribution, so you may want to use both filters together in certain
8849 cases, though you will have to take care of ordering, i.e. whether vignetting should
8850 be applied before or after lens correction.
8851
8852 @subsection Options
8853
8854 The filter accepts the following options:
8855
8856 @table @option
8857 @item cx
8858 Relative x-coordinate of the focal point of the image, and thereby the center of the
8859 distortion. This value has a range [0,1] and is expressed as fractions of the image
8860 width.
8861 @item cy
8862 Relative y-coordinate of the focal point of the image, and thereby the center of the
8863 distortion. This value has a range [0,1] and is expressed as fractions of the image
8864 height.
8865 @item k1
8866 Coefficient of the quadratic correction term. 0.5 means no correction.
8867 @item k2
8868 Coefficient of the double quadratic correction term. 0.5 means no correction.
8869 @end table
8870
8871 The formula that generates the correction is:
8872
8873 @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)
8874
8875 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
8876 distances from the focal point in the source and target images, respectively.
8877
8878 @section loop, aloop
8879
8880 Loop video frames or audio samples.
8881
8882 Those filters accepts the following options:
8883
8884 @table @option
8885 @item loop
8886 Set the number of loops.
8887
8888 @item size
8889 Set maximal size in number of frames for @code{loop} filter or maximal number
8890 of samples in case of @code{aloop} filter.
8891
8892 @item start
8893 Set first frame of loop for @code{loop} filter or first sample of loop in case
8894 of @code{aloop} filter.
8895 @end table
8896
8897 @anchor{lut3d}
8898 @section lut3d
8899
8900 Apply a 3D LUT to an input video.
8901
8902 The filter accepts the following options:
8903
8904 @table @option
8905 @item file
8906 Set the 3D LUT file name.
8907
8908 Currently supported formats:
8909 @table @samp
8910 @item 3dl
8911 AfterEffects
8912 @item cube
8913 Iridas
8914 @item dat
8915 DaVinci
8916 @item m3d
8917 Pandora
8918 @end table
8919 @item interp
8920 Select interpolation mode.
8921
8922 Available values are:
8923
8924 @table @samp
8925 @item nearest
8926 Use values from the nearest defined point.
8927 @item trilinear
8928 Interpolate values using the 8 points defining a cube.
8929 @item tetrahedral
8930 Interpolate values using a tetrahedron.
8931 @end table
8932 @end table
8933
8934 @section lut, lutrgb, lutyuv
8935
8936 Compute a look-up table for binding each pixel component input value
8937 to an output value, and apply it to the input video.
8938
8939 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
8940 to an RGB input video.
8941
8942 These filters accept the following parameters:
8943 @table @option
8944 @item c0
8945 set first pixel component expression
8946 @item c1
8947 set second pixel component expression
8948 @item c2
8949 set third pixel component expression
8950 @item c3
8951 set fourth pixel component expression, corresponds to the alpha component
8952
8953 @item r
8954 set red component expression
8955 @item g
8956 set green component expression
8957 @item b
8958 set blue component expression
8959 @item a
8960 alpha component expression
8961
8962 @item y
8963 set Y/luminance component expression
8964 @item u
8965 set U/Cb component expression
8966 @item v
8967 set V/Cr component expression
8968 @end table
8969
8970 Each of them specifies the expression to use for computing the lookup table for
8971 the corresponding pixel component values.
8972
8973 The exact component associated to each of the @var{c*} options depends on the
8974 format in input.
8975
8976 The @var{lut} filter requires either YUV or RGB pixel formats in input,
8977 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
8978
8979 The expressions can contain the following constants and functions:
8980
8981 @table @option
8982 @item w
8983 @item h
8984 The input width and height.
8985
8986 @item val
8987 The input value for the pixel component.
8988
8989 @item clipval
8990 The input value, clipped to the @var{minval}-@var{maxval} range.
8991
8992 @item maxval
8993 The maximum value for the pixel component.
8994
8995 @item minval
8996 The minimum value for the pixel component.
8997
8998 @item negval
8999 The negated value for the pixel component value, clipped to the
9000 @var{minval}-@var{maxval} range; it corresponds to the expression
9001 "maxval-clipval+minval".
9002
9003 @item clip(val)
9004 The computed value in @var{val}, clipped to the
9005 @var{minval}-@var{maxval} range.
9006
9007 @item gammaval(gamma)
9008 The computed gamma correction value of the pixel component value,
9009 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9010 expression
9011 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9012
9013 @end table
9014
9015 All expressions default to "val".
9016
9017 @subsection Examples
9018
9019 @itemize
9020 @item
9021 Negate input video:
9022 @example
9023 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9024 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9025 @end example
9026
9027 The above is the same as:
9028 @example
9029 lutrgb="r=negval:g=negval:b=negval"
9030 lutyuv="y=negval:u=negval:v=negval"
9031 @end example
9032
9033 @item
9034 Negate luminance:
9035 @example
9036 lutyuv=y=negval
9037 @end example
9038
9039 @item
9040 Remove chroma components, turning the video into a graytone image:
9041 @example
9042 lutyuv="u=128:v=128"
9043 @end example
9044
9045 @item
9046 Apply a luma burning effect:
9047 @example
9048 lutyuv="y=2*val"
9049 @end example
9050
9051 @item
9052 Remove green and blue components:
9053 @example
9054 lutrgb="g=0:b=0"
9055 @end example
9056
9057 @item
9058 Set a constant alpha channel value on input:
9059 @example
9060 format=rgba,lutrgb=a="maxval-minval/2"
9061 @end example
9062
9063 @item
9064 Correct luminance gamma by a factor of 0.5:
9065 @example
9066 lutyuv=y=gammaval(0.5)
9067 @end example
9068
9069 @item
9070 Discard least significant bits of luma:
9071 @example
9072 lutyuv=y='bitand(val, 128+64+32)'
9073 @end example
9074 @end itemize
9075
9076 @section maskedmerge
9077
9078 Merge the first input stream with the second input stream using per pixel
9079 weights in the third input stream.
9080
9081 A value of 0 in the third stream pixel component means that pixel component
9082 from first stream is returned unchanged, while maximum value (eg. 255 for
9083 8-bit videos) means that pixel component from second stream is returned
9084 unchanged. Intermediate values define the amount of merging between both
9085 input stream's pixel components.
9086
9087 This filter accepts the following options:
9088 @table @option
9089 @item planes
9090 Set which planes will be processed as bitmap, unprocessed planes will be
9091 copied from first stream.
9092 By default value 0xf, all planes will be processed.
9093 @end table
9094
9095 @section mcdeint
9096
9097 Apply motion-compensation deinterlacing.
9098
9099 It needs one field per frame as input and must thus be used together
9100 with yadif=1/3 or equivalent.
9101
9102 This filter accepts the following options:
9103 @table @option
9104 @item mode
9105 Set the deinterlacing mode.
9106
9107 It accepts one of the following values:
9108 @table @samp
9109 @item fast
9110 @item medium
9111 @item slow
9112 use iterative motion estimation
9113 @item extra_slow
9114 like @samp{slow}, but use multiple reference frames.
9115 @end table
9116 Default value is @samp{fast}.
9117
9118 @item parity
9119 Set the picture field parity assumed for the input video. It must be
9120 one of the following values:
9121
9122 @table @samp
9123 @item 0, tff
9124 assume top field first
9125 @item 1, bff
9126 assume bottom field first
9127 @end table
9128
9129 Default value is @samp{bff}.
9130
9131 @item qp
9132 Set per-block quantization parameter (QP) used by the internal
9133 encoder.
9134
9135 Higher values should result in a smoother motion vector field but less
9136 optimal individual vectors. Default value is 1.
9137 @end table
9138
9139 @section mergeplanes
9140
9141 Merge color channel components from several video streams.
9142
9143 The filter accepts up to 4 input streams, and merge selected input
9144 planes to the output video.
9145
9146 This filter accepts the following options:
9147 @table @option
9148 @item mapping
9149 Set input to output plane mapping. Default is @code{0}.
9150
9151 The mappings is specified as a bitmap. It should be specified as a
9152 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9153 mapping for the first plane of the output stream. 'A' sets the number of
9154 the input stream to use (from 0 to 3), and 'a' the plane number of the
9155 corresponding input to use (from 0 to 3). The rest of the mappings is
9156 similar, 'Bb' describes the mapping for the output stream second
9157 plane, 'Cc' describes the mapping for the output stream third plane and
9158 'Dd' describes the mapping for the output stream fourth plane.
9159
9160 @item format
9161 Set output pixel format. Default is @code{yuva444p}.
9162 @end table
9163
9164 @subsection Examples
9165
9166 @itemize
9167 @item
9168 Merge three gray video streams of same width and height into single video stream:
9169 @example
9170 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9171 @end example
9172
9173 @item
9174 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9175 @example
9176 [a0][a1]mergeplanes=0x00010210:yuva444p
9177 @end example
9178
9179 @item
9180 Swap Y and A plane in yuva444p stream:
9181 @example
9182 format=yuva444p,mergeplanes=0x03010200:yuva444p
9183 @end example
9184
9185 @item
9186 Swap U and V plane in yuv420p stream:
9187 @example
9188 format=yuv420p,mergeplanes=0x000201:yuv420p
9189 @end example
9190
9191 @item
9192 Cast a rgb24 clip to yuv444p:
9193 @example
9194 format=rgb24,mergeplanes=0x000102:yuv444p
9195 @end example
9196 @end itemize
9197
9198 @section metadata, ametadata
9199
9200 Manipulate frame metadata.
9201
9202 This filter accepts the following options:
9203
9204 @table @option
9205 @item mode
9206 Set mode of operation of the filter.
9207
9208 Can be one of the following:
9209
9210 @table @samp
9211 @item select
9212 If both @code{value} and @code{key} is set, select frames
9213 which have such metadata. If only @code{key} is set, select
9214 every frame that has such key in metadata.
9215
9216 @item add
9217 Add new metadata @code{key} and @code{value}. If key is already available
9218 do nothing.
9219
9220 @item modify
9221 Modify value of already present key.
9222
9223 @item delete
9224 If @code{value} is set, delete only keys that have such value.
9225 Otherwise, delete key.
9226
9227 @item print
9228 Print key and its value if metadata was found. If @code{key} is not set print all
9229 metadata values available in frame.
9230 @end table
9231
9232 @item key
9233 Set key used with all modes. Must be set for all modes except @code{print}.
9234
9235 @item value
9236 Set metadata value which will be used. This option is mandatory for
9237 @code{modify} and @code{add} mode.
9238
9239 @item function
9240 Which function to use when comparing metadata value and @code{value}.
9241
9242 Can be one of following:
9243
9244 @table @samp
9245 @item same_str
9246 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
9247
9248 @item starts_with
9249 Values are interpreted as strings, returns true if metadata value starts with
9250 the @code{value} option string.
9251
9252 @item less
9253 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
9254
9255 @item equal
9256 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
9257
9258 @item greater
9259 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
9260
9261 @item expr
9262 Values are interpreted as floats, returns true if expression from option @code{expr}
9263 evaluates to true.
9264 @end table
9265
9266 @item expr
9267 Set expression which is used when @code{function} is set to @code{expr}.
9268 The expression is evaluated through the eval API and can contain the following
9269 constants:
9270
9271 @table @option
9272 @item VALUE1
9273 Float representation of @code{value} from metadata key.
9274
9275 @item VALUE2
9276 Float representation of @code{value} as supplied by user in @code{value} option.
9277 @end table
9278
9279 @item file
9280 If specified in @code{print} mode, output is written to the named file. When
9281 filename equals "-" data is written to standard output.
9282 If @code{file} option is not set, output is written to the log with AV_LOG_INFO
9283 loglevel.
9284 @end table
9285
9286 @subsection Examples
9287
9288 @itemize
9289 @item
9290 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
9291 between 0 and 1.
9292 @example
9293 @end example
9294 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
9295 @end itemize
9296
9297 @section mpdecimate
9298
9299 Drop frames that do not differ greatly from the previous frame in
9300 order to reduce frame rate.
9301
9302 The main use of this filter is for very-low-bitrate encoding
9303 (e.g. streaming over dialup modem), but it could in theory be used for
9304 fixing movies that were inverse-telecined incorrectly.
9305
9306 A description of the accepted options follows.
9307
9308 @table @option
9309 @item max
9310 Set the maximum number of consecutive frames which can be dropped (if
9311 positive), or the minimum interval between dropped frames (if
9312 negative). If the value is 0, the frame is dropped unregarding the
9313 number of previous sequentially dropped frames.
9314
9315 Default value is 0.
9316
9317 @item hi
9318 @item lo
9319 @item frac
9320 Set the dropping threshold values.
9321
9322 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9323 represent actual pixel value differences, so a threshold of 64
9324 corresponds to 1 unit of difference for each pixel, or the same spread
9325 out differently over the block.
9326
9327 A frame is a candidate for dropping if no 8x8 blocks differ by more
9328 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9329 meaning the whole image) differ by more than a threshold of @option{lo}.
9330
9331 Default value for @option{hi} is 64*12, default value for @option{lo} is
9332 64*5, and default value for @option{frac} is 0.33.
9333 @end table
9334
9335
9336 @section negate
9337
9338 Negate input video.
9339
9340 It accepts an integer in input; if non-zero it negates the
9341 alpha component (if available). The default value in input is 0.
9342
9343 @section nnedi
9344
9345 Deinterlace video using neural network edge directed interpolation.
9346
9347 This filter accepts the following options:
9348
9349 @table @option
9350 @item weights
9351 Mandatory option, without binary file filter can not work.
9352 Currently file can be found here:
9353 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9354
9355 @item deint
9356 Set which frames to deinterlace, by default it is @code{all}.
9357 Can be @code{all} or @code{interlaced}.
9358
9359 @item field
9360 Set mode of operation.
9361
9362 Can be one of the following:
9363
9364 @table @samp
9365 @item af
9366 Use frame flags, both fields.
9367 @item a
9368 Use frame flags, single field.
9369 @item t
9370 Use top field only.
9371 @item b
9372 Use bottom field only.
9373 @item tf
9374 Use both fields, top first.
9375 @item bf
9376 Use both fields, bottom first.
9377 @end table
9378
9379 @item planes
9380 Set which planes to process, by default filter process all frames.
9381
9382 @item nsize
9383 Set size of local neighborhood around each pixel, used by the predictor neural
9384 network.
9385
9386 Can be one of the following:
9387
9388 @table @samp
9389 @item s8x6
9390 @item s16x6
9391 @item s32x6
9392 @item s48x6
9393 @item s8x4
9394 @item s16x4
9395 @item s32x4
9396 @end table
9397
9398 @item nns
9399 Set the number of neurons in predicctor neural network.
9400 Can be one of the following:
9401
9402 @table @samp
9403 @item n16
9404 @item n32
9405 @item n64
9406 @item n128
9407 @item n256
9408 @end table
9409
9410 @item qual
9411 Controls the number of different neural network predictions that are blended
9412 together to compute the final output value. Can be @code{fast}, default or
9413 @code{slow}.
9414
9415 @item etype
9416 Set which set of weights to use in the predictor.
9417 Can be one of the following:
9418
9419 @table @samp
9420 @item a
9421 weights trained to minimize absolute error
9422 @item s
9423 weights trained to minimize squared error
9424 @end table
9425
9426 @item pscrn
9427 Controls whether or not the prescreener neural network is used to decide
9428 which pixels should be processed by the predictor neural network and which
9429 can be handled by simple cubic interpolation.
9430 The prescreener is trained to know whether cubic interpolation will be
9431 sufficient for a pixel or whether it should be predicted by the predictor nn.
9432 The computational complexity of the prescreener nn is much less than that of
9433 the predictor nn. Since most pixels can be handled by cubic interpolation,
9434 using the prescreener generally results in much faster processing.
9435 The prescreener is pretty accurate, so the difference between using it and not
9436 using it is almost always unnoticeable.
9437
9438 Can be one of the following:
9439
9440 @table @samp
9441 @item none
9442 @item original
9443 @item new
9444 @end table
9445
9446 Default is @code{new}.
9447
9448 @item fapprox
9449 Set various debugging flags.
9450 @end table
9451
9452 @section noformat
9453
9454 Force libavfilter not to use any of the specified pixel formats for the
9455 input to the next filter.
9456
9457 It accepts the following parameters:
9458 @table @option
9459
9460 @item pix_fmts
9461 A '|'-separated list of pixel format names, such as
9462 apix_fmts=yuv420p|monow|rgb24".
9463
9464 @end table
9465
9466 @subsection Examples
9467
9468 @itemize
9469 @item
9470 Force libavfilter to use a format different from @var{yuv420p} for the
9471 input to the vflip filter:
9472 @example
9473 noformat=pix_fmts=yuv420p,vflip
9474 @end example
9475
9476 @item
9477 Convert the input video to any of the formats not contained in the list:
9478 @example
9479 noformat=yuv420p|yuv444p|yuv410p
9480 @end example
9481 @end itemize
9482
9483 @section noise
9484
9485 Add noise on video input frame.
9486
9487 The filter accepts the following options:
9488
9489 @table @option
9490 @item all_seed
9491 @item c0_seed
9492 @item c1_seed
9493 @item c2_seed
9494 @item c3_seed
9495 Set noise seed for specific pixel component or all pixel components in case
9496 of @var{all_seed}. Default value is @code{123457}.
9497
9498 @item all_strength, alls
9499 @item c0_strength, c0s
9500 @item c1_strength, c1s
9501 @item c2_strength, c2s
9502 @item c3_strength, c3s
9503 Set noise strength for specific pixel component or all pixel components in case
9504 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
9505
9506 @item all_flags, allf
9507 @item c0_flags, c0f
9508 @item c1_flags, c1f
9509 @item c2_flags, c2f
9510 @item c3_flags, c3f
9511 Set pixel component flags or set flags for all components if @var{all_flags}.
9512 Available values for component flags are:
9513 @table @samp
9514 @item a
9515 averaged temporal noise (smoother)
9516 @item p
9517 mix random noise with a (semi)regular pattern
9518 @item t
9519 temporal noise (noise pattern changes between frames)
9520 @item u
9521 uniform noise (gaussian otherwise)
9522 @end table
9523 @end table
9524
9525 @subsection Examples
9526
9527 Add temporal and uniform noise to input video:
9528 @example
9529 noise=alls=20:allf=t+u
9530 @end example
9531
9532 @section null
9533
9534 Pass the video source unchanged to the output.
9535
9536 @section ocr
9537 Optical Character Recognition
9538
9539 This filter uses Tesseract for optical character recognition.
9540
9541 It accepts the following options:
9542
9543 @table @option
9544 @item datapath
9545 Set datapath to tesseract data. Default is to use whatever was
9546 set at installation.
9547
9548 @item language
9549 Set language, default is "eng".
9550
9551 @item whitelist
9552 Set character whitelist.
9553
9554 @item blacklist
9555 Set character blacklist.
9556 @end table
9557
9558 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
9559
9560 @section ocv
9561
9562 Apply a video transform using libopencv.
9563
9564 To enable this filter, install the libopencv library and headers and
9565 configure FFmpeg with @code{--enable-libopencv}.
9566
9567 It accepts the following parameters:
9568
9569 @table @option
9570
9571 @item filter_name
9572 The name of the libopencv filter to apply.
9573
9574 @item filter_params
9575 The parameters to pass to the libopencv filter. If not specified, the default
9576 values are assumed.
9577
9578 @end table
9579
9580 Refer to the official libopencv documentation for more precise
9581 information:
9582 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
9583
9584 Several libopencv filters are supported; see the following subsections.
9585
9586 @anchor{dilate}
9587 @subsection dilate
9588
9589 Dilate an image by using a specific structuring element.
9590 It corresponds to the libopencv function @code{cvDilate}.
9591
9592 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
9593
9594 @var{struct_el} represents a structuring element, and has the syntax:
9595 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
9596
9597 @var{cols} and @var{rows} represent the number of columns and rows of
9598 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
9599 point, and @var{shape} the shape for the structuring element. @var{shape}
9600 must be "rect", "cross", "ellipse", or "custom".
9601
9602 If the value for @var{shape} is "custom", it must be followed by a
9603 string of the form "=@var{filename}". The file with name
9604 @var{filename} is assumed to represent a binary image, with each
9605 printable character corresponding to a bright pixel. When a custom
9606 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
9607 or columns and rows of the read file are assumed instead.
9608
9609 The default value for @var{struct_el} is "3x3+0x0/rect".
9610
9611 @var{nb_iterations} specifies the number of times the transform is
9612 applied to the image, and defaults to 1.
9613
9614 Some examples:
9615 @example
9616 # Use the default values
9617 ocv=dilate
9618
9619 # Dilate using a structuring element with a 5x5 cross, iterating two times
9620 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
9621
9622 # Read the shape from the file diamond.shape, iterating two times.
9623 # The file diamond.shape may contain a pattern of characters like this
9624 #   *
9625 #  ***
9626 # *****
9627 #  ***
9628 #   *
9629 # The specified columns and rows are ignored
9630 # but the anchor point coordinates are not
9631 ocv=dilate:0x0+2x2/custom=diamond.shape|2
9632 @end example
9633
9634 @subsection erode
9635
9636 Erode an image by using a specific structuring element.
9637 It corresponds to the libopencv function @code{cvErode}.
9638
9639 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
9640 with the same syntax and semantics as the @ref{dilate} filter.
9641
9642 @subsection smooth
9643
9644 Smooth the input video.
9645
9646 The filter takes the following parameters:
9647 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
9648
9649 @var{type} is the type of smooth filter to apply, and must be one of
9650 the following values: "blur", "blur_no_scale", "median", "gaussian",
9651 or "bilateral". The default value is "gaussian".
9652
9653 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
9654 depend on the smooth type. @var{param1} and
9655 @var{param2} accept integer positive values or 0. @var{param3} and
9656 @var{param4} accept floating point values.
9657
9658 The default value for @var{param1} is 3. The default value for the
9659 other parameters is 0.
9660
9661 These parameters correspond to the parameters assigned to the
9662 libopencv function @code{cvSmooth}.
9663
9664 @anchor{overlay}
9665 @section overlay
9666
9667 Overlay one video on top of another.
9668
9669 It takes two inputs and has one output. The first input is the "main"
9670 video on which the second input is overlaid.
9671
9672 It accepts the following parameters:
9673
9674 A description of the accepted options follows.
9675
9676 @table @option
9677 @item x
9678 @item y
9679 Set the expression for the x and y coordinates of the overlaid video
9680 on the main video. Default value is "0" for both expressions. In case
9681 the expression is invalid, it is set to a huge value (meaning that the
9682 overlay will not be displayed within the output visible area).
9683
9684 @item eof_action
9685 The action to take when EOF is encountered on the secondary input; it accepts
9686 one of the following values:
9687
9688 @table @option
9689 @item repeat
9690 Repeat the last frame (the default).
9691 @item endall
9692 End both streams.
9693 @item pass
9694 Pass the main input through.
9695 @end table
9696
9697 @item eval
9698 Set when the expressions for @option{x}, and @option{y} are evaluated.
9699
9700 It accepts the following values:
9701 @table @samp
9702 @item init
9703 only evaluate expressions once during the filter initialization or
9704 when a command is processed
9705
9706 @item frame
9707 evaluate expressions for each incoming frame
9708 @end table
9709
9710 Default value is @samp{frame}.
9711
9712 @item shortest
9713 If set to 1, force the output to terminate when the shortest input
9714 terminates. Default value is 0.
9715
9716 @item format
9717 Set the format for the output video.
9718
9719 It accepts the following values:
9720 @table @samp
9721 @item yuv420
9722 force YUV420 output
9723
9724 @item yuv422
9725 force YUV422 output
9726
9727 @item yuv444
9728 force YUV444 output
9729
9730 @item rgb
9731 force RGB output
9732 @end table
9733
9734 Default value is @samp{yuv420}.
9735
9736 @item rgb @emph{(deprecated)}
9737 If set to 1, force the filter to accept inputs in the RGB
9738 color space. Default value is 0. This option is deprecated, use
9739 @option{format} instead.
9740
9741 @item repeatlast
9742 If set to 1, force the filter to draw the last overlay frame over the
9743 main input until the end of the stream. A value of 0 disables this
9744 behavior. Default value is 1.
9745 @end table
9746
9747 The @option{x}, and @option{y} expressions can contain the following
9748 parameters.
9749
9750 @table @option
9751 @item main_w, W
9752 @item main_h, H
9753 The main input width and height.
9754
9755 @item overlay_w, w
9756 @item overlay_h, h
9757 The overlay input width and height.
9758
9759 @item x
9760 @item y
9761 The computed values for @var{x} and @var{y}. They are evaluated for
9762 each new frame.
9763
9764 @item hsub
9765 @item vsub
9766 horizontal and vertical chroma subsample values of the output
9767 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
9768 @var{vsub} is 1.
9769
9770 @item n
9771 the number of input frame, starting from 0
9772
9773 @item pos
9774 the position in the file of the input frame, NAN if unknown
9775
9776 @item t
9777 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
9778
9779 @end table
9780
9781 Note that the @var{n}, @var{pos}, @var{t} variables are available only
9782 when evaluation is done @emph{per frame}, and will evaluate to NAN
9783 when @option{eval} is set to @samp{init}.
9784
9785 Be aware that frames are taken from each input video in timestamp
9786 order, hence, if their initial timestamps differ, it is a good idea
9787 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
9788 have them begin in the same zero timestamp, as the example for
9789 the @var{movie} filter does.
9790
9791 You can chain together more overlays but you should test the
9792 efficiency of such approach.
9793
9794 @subsection Commands
9795
9796 This filter supports the following commands:
9797 @table @option
9798 @item x
9799 @item y
9800 Modify the x and y of the overlay input.
9801 The command accepts the same syntax of the corresponding option.
9802
9803 If the specified expression is not valid, it is kept at its current
9804 value.
9805 @end table
9806
9807 @subsection Examples
9808
9809 @itemize
9810 @item
9811 Draw the overlay at 10 pixels from the bottom right corner of the main
9812 video:
9813 @example
9814 overlay=main_w-overlay_w-10:main_h-overlay_h-10
9815 @end example
9816
9817 Using named options the example above becomes:
9818 @example
9819 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
9820 @end example
9821
9822 @item
9823 Insert a transparent PNG logo in the bottom left corner of the input,
9824 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
9825 @example
9826 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
9827 @end example
9828
9829 @item
9830 Insert 2 different transparent PNG logos (second logo on bottom
9831 right corner) using the @command{ffmpeg} tool:
9832 @example
9833 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
9834 @end example
9835
9836 @item
9837 Add a transparent color layer on top of the main video; @code{WxH}
9838 must specify the size of the main input to the overlay filter:
9839 @example
9840 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
9841 @end example
9842
9843 @item
9844 Play an original video and a filtered version (here with the deshake
9845 filter) side by side using the @command{ffplay} tool:
9846 @example
9847 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
9848 @end example
9849
9850 The above command is the same as:
9851 @example
9852 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
9853 @end example
9854
9855 @item
9856 Make a sliding overlay appearing from the left to the right top part of the
9857 screen starting since time 2:
9858 @example
9859 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
9860 @end example
9861
9862 @item
9863 Compose output by putting two input videos side to side:
9864 @example
9865 ffmpeg -i left.avi -i right.avi -filter_complex "
9866 nullsrc=size=200x100 [background];
9867 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
9868 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
9869 [background][left]       overlay=shortest=1       [background+left];
9870 [background+left][right] overlay=shortest=1:x=100 [left+right]
9871 "
9872 @end example
9873
9874 @item
9875 Mask 10-20 seconds of a video by applying the delogo filter to a section
9876 @example
9877 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
9878 -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]'
9879 masked.avi
9880 @end example
9881
9882 @item
9883 Chain several overlays in cascade:
9884 @example
9885 nullsrc=s=200x200 [bg];
9886 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
9887 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
9888 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
9889 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
9890 [in3] null,       [mid2] overlay=100:100 [out0]
9891 @end example
9892
9893 @end itemize
9894
9895 @section owdenoise
9896
9897 Apply Overcomplete Wavelet denoiser.
9898
9899 The filter accepts the following options:
9900
9901 @table @option
9902 @item depth
9903 Set depth.
9904
9905 Larger depth values will denoise lower frequency components more, but
9906 slow down filtering.
9907
9908 Must be an int in the range 8-16, default is @code{8}.
9909
9910 @item luma_strength, ls
9911 Set luma strength.
9912
9913 Must be a double value in the range 0-1000, default is @code{1.0}.
9914
9915 @item chroma_strength, cs
9916 Set chroma strength.
9917
9918 Must be a double value in the range 0-1000, default is @code{1.0}.
9919 @end table
9920
9921 @anchor{pad}
9922 @section pad
9923
9924 Add paddings to the input image, and place the original input at the
9925 provided @var{x}, @var{y} coordinates.
9926
9927 It accepts the following parameters:
9928
9929 @table @option
9930 @item width, w
9931 @item height, h
9932 Specify an expression for the size of the output image with the
9933 paddings added. If the value for @var{width} or @var{height} is 0, the
9934 corresponding input size is used for the output.
9935
9936 The @var{width} expression can reference the value set by the
9937 @var{height} expression, and vice versa.
9938
9939 The default value of @var{width} and @var{height} is 0.
9940
9941 @item x
9942 @item y
9943 Specify the offsets to place the input image at within the padded area,
9944 with respect to the top/left border of the output image.
9945
9946 The @var{x} expression can reference the value set by the @var{y}
9947 expression, and vice versa.
9948
9949 The default value of @var{x} and @var{y} is 0.
9950
9951 @item color
9952 Specify the color of the padded area. For the syntax of this option,
9953 check the "Color" section in the ffmpeg-utils manual.
9954
9955 The default value of @var{color} is "black".
9956 @end table
9957
9958 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
9959 options are expressions containing the following constants:
9960
9961 @table @option
9962 @item in_w
9963 @item in_h
9964 The input video width and height.
9965
9966 @item iw
9967 @item ih
9968 These are the same as @var{in_w} and @var{in_h}.
9969
9970 @item out_w
9971 @item out_h
9972 The output width and height (the size of the padded area), as
9973 specified by the @var{width} and @var{height} expressions.
9974
9975 @item ow
9976 @item oh
9977 These are the same as @var{out_w} and @var{out_h}.
9978
9979 @item x
9980 @item y
9981 The x and y offsets as specified by the @var{x} and @var{y}
9982 expressions, or NAN if not yet specified.
9983
9984 @item a
9985 same as @var{iw} / @var{ih}
9986
9987 @item sar
9988 input sample aspect ratio
9989
9990 @item dar
9991 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
9992
9993 @item hsub
9994 @item vsub
9995 The horizontal and vertical chroma subsample values. For example for the
9996 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9997 @end table
9998
9999 @subsection Examples
10000
10001 @itemize
10002 @item
10003 Add paddings with the color "violet" to the input video. The output video
10004 size is 640x480, and the top-left corner of the input video is placed at
10005 column 0, row 40
10006 @example
10007 pad=640:480:0:40:violet
10008 @end example
10009
10010 The example above is equivalent to the following command:
10011 @example
10012 pad=width=640:height=480:x=0:y=40:color=violet
10013 @end example
10014
10015 @item
10016 Pad the input to get an output with dimensions increased by 3/2,
10017 and put the input video at the center of the padded area:
10018 @example
10019 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10020 @end example
10021
10022 @item
10023 Pad the input to get a squared output with size equal to the maximum
10024 value between the input width and height, and put the input video at
10025 the center of the padded area:
10026 @example
10027 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10028 @end example
10029
10030 @item
10031 Pad the input to get a final w/h ratio of 16:9:
10032 @example
10033 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10034 @end example
10035
10036 @item
10037 In case of anamorphic video, in order to set the output display aspect
10038 correctly, it is necessary to use @var{sar} in the expression,
10039 according to the relation:
10040 @example
10041 (ih * X / ih) * sar = output_dar
10042 X = output_dar / sar
10043 @end example
10044
10045 Thus the previous example needs to be modified to:
10046 @example
10047 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10048 @end example
10049
10050 @item
10051 Double the output size and put the input video in the bottom-right
10052 corner of the output padded area:
10053 @example
10054 pad="2*iw:2*ih:ow-iw:oh-ih"
10055 @end example
10056 @end itemize
10057
10058 @anchor{palettegen}
10059 @section palettegen
10060
10061 Generate one palette for a whole video stream.
10062
10063 It accepts the following options:
10064
10065 @table @option
10066 @item max_colors
10067 Set the maximum number of colors to quantize in the palette.
10068 Note: the palette will still contain 256 colors; the unused palette entries
10069 will be black.
10070
10071 @item reserve_transparent
10072 Create a palette of 255 colors maximum and reserve the last one for
10073 transparency. Reserving the transparency color is useful for GIF optimization.
10074 If not set, the maximum of colors in the palette will be 256. You probably want
10075 to disable this option for a standalone image.
10076 Set by default.
10077
10078 @item stats_mode
10079 Set statistics mode.
10080
10081 It accepts the following values:
10082 @table @samp
10083 @item full
10084 Compute full frame histograms.
10085 @item diff
10086 Compute histograms only for the part that differs from previous frame. This
10087 might be relevant to give more importance to the moving part of your input if
10088 the background is static.
10089 @end table
10090
10091 Default value is @var{full}.
10092 @end table
10093
10094 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10095 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10096 color quantization of the palette. This information is also visible at
10097 @var{info} logging level.
10098
10099 @subsection Examples
10100
10101 @itemize
10102 @item
10103 Generate a representative palette of a given video using @command{ffmpeg}:
10104 @example
10105 ffmpeg -i input.mkv -vf palettegen palette.png
10106 @end example
10107 @end itemize
10108
10109 @section paletteuse
10110
10111 Use a palette to downsample an input video stream.
10112
10113 The filter takes two inputs: one video stream and a palette. The palette must
10114 be a 256 pixels image.
10115
10116 It accepts the following options:
10117
10118 @table @option
10119 @item dither
10120 Select dithering mode. Available algorithms are:
10121 @table @samp
10122 @item bayer
10123 Ordered 8x8 bayer dithering (deterministic)
10124 @item heckbert
10125 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10126 Note: this dithering is sometimes considered "wrong" and is included as a
10127 reference.
10128 @item floyd_steinberg
10129 Floyd and Steingberg dithering (error diffusion)
10130 @item sierra2
10131 Frankie Sierra dithering v2 (error diffusion)
10132 @item sierra2_4a
10133 Frankie Sierra dithering v2 "Lite" (error diffusion)
10134 @end table
10135
10136 Default is @var{sierra2_4a}.
10137
10138 @item bayer_scale
10139 When @var{bayer} dithering is selected, this option defines the scale of the
10140 pattern (how much the crosshatch pattern is visible). A low value means more
10141 visible pattern for less banding, and higher value means less visible pattern
10142 at the cost of more banding.
10143
10144 The option must be an integer value in the range [0,5]. Default is @var{2}.
10145
10146 @item diff_mode
10147 If set, define the zone to process
10148
10149 @table @samp
10150 @item rectangle
10151 Only the changing rectangle will be reprocessed. This is similar to GIF
10152 cropping/offsetting compression mechanism. This option can be useful for speed
10153 if only a part of the image is changing, and has use cases such as limiting the
10154 scope of the error diffusal @option{dither} to the rectangle that bounds the
10155 moving scene (it leads to more deterministic output if the scene doesn't change
10156 much, and as a result less moving noise and better GIF compression).
10157 @end table
10158
10159 Default is @var{none}.
10160 @end table
10161
10162 @subsection Examples
10163
10164 @itemize
10165 @item
10166 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10167 using @command{ffmpeg}:
10168 @example
10169 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10170 @end example
10171 @end itemize
10172
10173 @section perspective
10174
10175 Correct perspective of video not recorded perpendicular to the screen.
10176
10177 A description of the accepted parameters follows.
10178
10179 @table @option
10180 @item x0
10181 @item y0
10182 @item x1
10183 @item y1
10184 @item x2
10185 @item y2
10186 @item x3
10187 @item y3
10188 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10189 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10190 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10191 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10192 then the corners of the source will be sent to the specified coordinates.
10193
10194 The expressions can use the following variables:
10195
10196 @table @option
10197 @item W
10198 @item H
10199 the width and height of video frame.
10200 @item in
10201 Input frame count.
10202 @item on
10203 Output frame count.
10204 @end table
10205
10206 @item interpolation
10207 Set interpolation for perspective correction.
10208
10209 It accepts the following values:
10210 @table @samp
10211 @item linear
10212 @item cubic
10213 @end table
10214
10215 Default value is @samp{linear}.
10216
10217 @item sense
10218 Set interpretation of coordinate options.
10219
10220 It accepts the following values:
10221 @table @samp
10222 @item 0, source
10223
10224 Send point in the source specified by the given coordinates to
10225 the corners of the destination.
10226
10227 @item 1, destination
10228
10229 Send the corners of the source to the point in the destination specified
10230 by the given coordinates.
10231
10232 Default value is @samp{source}.
10233 @end table
10234
10235 @item eval
10236 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10237
10238 It accepts the following values:
10239 @table @samp
10240 @item init
10241 only evaluate expressions once during the filter initialization or
10242 when a command is processed
10243
10244 @item frame
10245 evaluate expressions for each incoming frame
10246 @end table
10247
10248 Default value is @samp{init}.
10249 @end table
10250
10251 @section phase
10252
10253 Delay interlaced video by one field time so that the field order changes.
10254
10255 The intended use is to fix PAL movies that have been captured with the
10256 opposite field order to the film-to-video transfer.
10257
10258 A description of the accepted parameters follows.
10259
10260 @table @option
10261 @item mode
10262 Set phase mode.
10263
10264 It accepts the following values:
10265 @table @samp
10266 @item t
10267 Capture field order top-first, transfer bottom-first.
10268 Filter will delay the bottom field.
10269
10270 @item b
10271 Capture field order bottom-first, transfer top-first.
10272 Filter will delay the top field.
10273
10274 @item p
10275 Capture and transfer with the same field order. This mode only exists
10276 for the documentation of the other options to refer to, but if you
10277 actually select it, the filter will faithfully do nothing.
10278
10279 @item a
10280 Capture field order determined automatically by field flags, transfer
10281 opposite.
10282 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10283 basis using field flags. If no field information is available,
10284 then this works just like @samp{u}.
10285
10286 @item u
10287 Capture unknown or varying, transfer opposite.
10288 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10289 analyzing the images and selecting the alternative that produces best
10290 match between the fields.
10291
10292 @item T
10293 Capture top-first, transfer unknown or varying.
10294 Filter selects among @samp{t} and @samp{p} using image analysis.
10295
10296 @item B
10297 Capture bottom-first, transfer unknown or varying.
10298 Filter selects among @samp{b} and @samp{p} using image analysis.
10299
10300 @item A
10301 Capture determined by field flags, transfer unknown or varying.
10302 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10303 image analysis. If no field information is available, then this works just
10304 like @samp{U}. This is the default mode.
10305
10306 @item U
10307 Both capture and transfer unknown or varying.
10308 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10309 @end table
10310 @end table
10311
10312 @section pixdesctest
10313
10314 Pixel format descriptor test filter, mainly useful for internal
10315 testing. The output video should be equal to the input video.
10316
10317 For example:
10318 @example
10319 format=monow, pixdesctest
10320 @end example
10321
10322 can be used to test the monowhite pixel format descriptor definition.
10323
10324 @section pp
10325
10326 Enable the specified chain of postprocessing subfilters using libpostproc. This
10327 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10328 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10329 Each subfilter and some options have a short and a long name that can be used
10330 interchangeably, i.e. dr/dering are the same.
10331
10332 The filters accept the following options:
10333
10334 @table @option
10335 @item subfilters
10336 Set postprocessing subfilters string.
10337 @end table
10338
10339 All subfilters share common options to determine their scope:
10340
10341 @table @option
10342 @item a/autoq
10343 Honor the quality commands for this subfilter.
10344
10345 @item c/chrom
10346 Do chrominance filtering, too (default).
10347
10348 @item y/nochrom
10349 Do luminance filtering only (no chrominance).
10350
10351 @item n/noluma
10352 Do chrominance filtering only (no luminance).
10353 @end table
10354
10355 These options can be appended after the subfilter name, separated by a '|'.
10356
10357 Available subfilters are:
10358
10359 @table @option
10360 @item hb/hdeblock[|difference[|flatness]]
10361 Horizontal deblocking filter
10362 @table @option
10363 @item difference
10364 Difference factor where higher values mean more deblocking (default: @code{32}).
10365 @item flatness
10366 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10367 @end table
10368
10369 @item vb/vdeblock[|difference[|flatness]]
10370 Vertical deblocking filter
10371 @table @option
10372 @item difference
10373 Difference factor where higher values mean more deblocking (default: @code{32}).
10374 @item flatness
10375 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10376 @end table
10377
10378 @item ha/hadeblock[|difference[|flatness]]
10379 Accurate horizontal deblocking filter
10380 @table @option
10381 @item difference
10382 Difference factor where higher values mean more deblocking (default: @code{32}).
10383 @item flatness
10384 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10385 @end table
10386
10387 @item va/vadeblock[|difference[|flatness]]
10388 Accurate vertical deblocking filter
10389 @table @option
10390 @item difference
10391 Difference factor where higher values mean more deblocking (default: @code{32}).
10392 @item flatness
10393 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10394 @end table
10395 @end table
10396
10397 The horizontal and vertical deblocking filters share the difference and
10398 flatness values so you cannot set different horizontal and vertical
10399 thresholds.
10400
10401 @table @option
10402 @item h1/x1hdeblock
10403 Experimental horizontal deblocking filter
10404
10405 @item v1/x1vdeblock
10406 Experimental vertical deblocking filter
10407
10408 @item dr/dering
10409 Deringing filter
10410
10411 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10412 @table @option
10413 @item threshold1
10414 larger -> stronger filtering
10415 @item threshold2
10416 larger -> stronger filtering
10417 @item threshold3
10418 larger -> stronger filtering
10419 @end table
10420
10421 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10422 @table @option
10423 @item f/fullyrange
10424 Stretch luminance to @code{0-255}.
10425 @end table
10426
10427 @item lb/linblenddeint
10428 Linear blend deinterlacing filter that deinterlaces the given block by
10429 filtering all lines with a @code{(1 2 1)} filter.
10430
10431 @item li/linipoldeint
10432 Linear interpolating deinterlacing filter that deinterlaces the given block by
10433 linearly interpolating every second line.
10434
10435 @item ci/cubicipoldeint
10436 Cubic interpolating deinterlacing filter deinterlaces the given block by
10437 cubically interpolating every second line.
10438
10439 @item md/mediandeint
10440 Median deinterlacing filter that deinterlaces the given block by applying a
10441 median filter to every second line.
10442
10443 @item fd/ffmpegdeint
10444 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10445 second line with a @code{(-1 4 2 4 -1)} filter.
10446
10447 @item l5/lowpass5
10448 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10449 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10450
10451 @item fq/forceQuant[|quantizer]
10452 Overrides the quantizer table from the input with the constant quantizer you
10453 specify.
10454 @table @option
10455 @item quantizer
10456 Quantizer to use
10457 @end table
10458
10459 @item de/default
10460 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10461
10462 @item fa/fast
10463 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10464
10465 @item ac
10466 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10467 @end table
10468
10469 @subsection Examples
10470
10471 @itemize
10472 @item
10473 Apply horizontal and vertical deblocking, deringing and automatic
10474 brightness/contrast:
10475 @example
10476 pp=hb/vb/dr/al
10477 @end example
10478
10479 @item
10480 Apply default filters without brightness/contrast correction:
10481 @example
10482 pp=de/-al
10483 @end example
10484
10485 @item
10486 Apply default filters and temporal denoiser:
10487 @example
10488 pp=default/tmpnoise|1|2|3
10489 @end example
10490
10491 @item
10492 Apply deblocking on luminance only, and switch vertical deblocking on or off
10493 automatically depending on available CPU time:
10494 @example
10495 pp=hb|y/vb|a
10496 @end example
10497 @end itemize
10498
10499 @section pp7
10500 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
10501 similar to spp = 6 with 7 point DCT, where only the center sample is
10502 used after IDCT.
10503
10504 The filter accepts the following options:
10505
10506 @table @option
10507 @item qp
10508 Force a constant quantization parameter. It accepts an integer in range
10509 0 to 63. If not set, the filter will use the QP from the video stream
10510 (if available).
10511
10512 @item mode
10513 Set thresholding mode. Available modes are:
10514
10515 @table @samp
10516 @item hard
10517 Set hard thresholding.
10518 @item soft
10519 Set soft thresholding (better de-ringing effect, but likely blurrier).
10520 @item medium
10521 Set medium thresholding (good results, default).
10522 @end table
10523 @end table
10524
10525 @section psnr
10526
10527 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
10528 Ratio) between two input videos.
10529
10530 This filter takes in input two input videos, the first input is
10531 considered the "main" source and is passed unchanged to the
10532 output. The second input is used as a "reference" video for computing
10533 the PSNR.
10534
10535 Both video inputs must have the same resolution and pixel format for
10536 this filter to work correctly. Also it assumes that both inputs
10537 have the same number of frames, which are compared one by one.
10538
10539 The obtained average PSNR is printed through the logging system.
10540
10541 The filter stores the accumulated MSE (mean squared error) of each
10542 frame, and at the end of the processing it is averaged across all frames
10543 equally, and the following formula is applied to obtain the PSNR:
10544
10545 @example
10546 PSNR = 10*log10(MAX^2/MSE)
10547 @end example
10548
10549 Where MAX is the average of the maximum values of each component of the
10550 image.
10551
10552 The description of the accepted parameters follows.
10553
10554 @table @option
10555 @item stats_file, f
10556 If specified the filter will use the named file to save the PSNR of
10557 each individual frame. When filename equals "-" the data is sent to
10558 standard output.
10559 @end table
10560
10561 The file printed if @var{stats_file} is selected, contains a sequence of
10562 key/value pairs of the form @var{key}:@var{value} for each compared
10563 couple of frames.
10564
10565 A description of each shown parameter follows:
10566
10567 @table @option
10568 @item n
10569 sequential number of the input frame, starting from 1
10570
10571 @item mse_avg
10572 Mean Square Error pixel-by-pixel average difference of the compared
10573 frames, averaged over all the image components.
10574
10575 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
10576 Mean Square Error pixel-by-pixel average difference of the compared
10577 frames for the component specified by the suffix.
10578
10579 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
10580 Peak Signal to Noise ratio of the compared frames for the component
10581 specified by the suffix.
10582 @end table
10583
10584 For example:
10585 @example
10586 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10587 [main][ref] psnr="stats_file=stats.log" [out]
10588 @end example
10589
10590 On this example the input file being processed is compared with the
10591 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
10592 is stored in @file{stats.log}.
10593
10594 @anchor{pullup}
10595 @section pullup
10596
10597 Pulldown reversal (inverse telecine) filter, capable of handling mixed
10598 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
10599 content.
10600
10601 The pullup filter is designed to take advantage of future context in making
10602 its decisions. This filter is stateless in the sense that it does not lock
10603 onto a pattern to follow, but it instead looks forward to the following
10604 fields in order to identify matches and rebuild progressive frames.
10605
10606 To produce content with an even framerate, insert the fps filter after
10607 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
10608 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
10609
10610 The filter accepts the following options:
10611
10612 @table @option
10613 @item jl
10614 @item jr
10615 @item jt
10616 @item jb
10617 These options set the amount of "junk" to ignore at the left, right, top, and
10618 bottom of the image, respectively. Left and right are in units of 8 pixels,
10619 while top and bottom are in units of 2 lines.
10620 The default is 8 pixels on each side.
10621
10622 @item sb
10623 Set the strict breaks. Setting this option to 1 will reduce the chances of
10624 filter generating an occasional mismatched frame, but it may also cause an
10625 excessive number of frames to be dropped during high motion sequences.
10626 Conversely, setting it to -1 will make filter match fields more easily.
10627 This may help processing of video where there is slight blurring between
10628 the fields, but may also cause there to be interlaced frames in the output.
10629 Default value is @code{0}.
10630
10631 @item mp
10632 Set the metric plane to use. It accepts the following values:
10633 @table @samp
10634 @item l
10635 Use luma plane.
10636
10637 @item u
10638 Use chroma blue plane.
10639
10640 @item v
10641 Use chroma red plane.
10642 @end table
10643
10644 This option may be set to use chroma plane instead of the default luma plane
10645 for doing filter's computations. This may improve accuracy on very clean
10646 source material, but more likely will decrease accuracy, especially if there
10647 is chroma noise (rainbow effect) or any grayscale video.
10648 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
10649 load and make pullup usable in realtime on slow machines.
10650 @end table
10651
10652 For best results (without duplicated frames in the output file) it is
10653 necessary to change the output frame rate. For example, to inverse
10654 telecine NTSC input:
10655 @example
10656 ffmpeg -i input -vf pullup -r 24000/1001 ...
10657 @end example
10658
10659 @section qp
10660
10661 Change video quantization parameters (QP).
10662
10663 The filter accepts the following option:
10664
10665 @table @option
10666 @item qp
10667 Set expression for quantization parameter.
10668 @end table
10669
10670 The expression is evaluated through the eval API and can contain, among others,
10671 the following constants:
10672
10673 @table @var
10674 @item known
10675 1 if index is not 129, 0 otherwise.
10676
10677 @item qp
10678 Sequentional index starting from -129 to 128.
10679 @end table
10680
10681 @subsection Examples
10682
10683 @itemize
10684 @item
10685 Some equation like:
10686 @example
10687 qp=2+2*sin(PI*qp)
10688 @end example
10689 @end itemize
10690
10691 @section random
10692
10693 Flush video frames from internal cache of frames into a random order.
10694 No frame is discarded.
10695 Inspired by @ref{frei0r} nervous filter.
10696
10697 @table @option
10698 @item frames
10699 Set size in number of frames of internal cache, in range from @code{2} to
10700 @code{512}. Default is @code{30}.
10701
10702 @item seed
10703 Set seed for random number generator, must be an integer included between
10704 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
10705 less than @code{0}, the filter will try to use a good random seed on a
10706 best effort basis.
10707 @end table
10708
10709 @section readvitc
10710
10711 Read vertical interval timecode (VITC) information from the top lines of a
10712 video frame.
10713
10714 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
10715 timecode value, if a valid timecode has been detected. Further metadata key
10716 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
10717 timecode data has been found or not.
10718
10719 This filter accepts the following options:
10720
10721 @table @option
10722 @item scan_max
10723 Set the maximum number of lines to scan for VITC data. If the value is set to
10724 @code{-1} the full video frame is scanned. Default is @code{45}.
10725
10726 @item thr_b
10727 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
10728 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
10729
10730 @item thr_w
10731 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
10732 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
10733 @end table
10734
10735 @subsection Examples
10736
10737 @itemize
10738 @item
10739 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
10740 draw @code{--:--:--:--} as a placeholder:
10741 @example
10742 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
10743 @end example
10744 @end itemize
10745
10746 @section remap
10747
10748 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
10749
10750 Destination pixel at position (X, Y) will be picked from source (x, y) position
10751 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
10752 value for pixel will be used for destination pixel.
10753
10754 Xmap and Ymap input video streams must be of same dimensions. Output video stream
10755 will have Xmap/Ymap video stream dimensions.
10756 Xmap and Ymap input video streams are 16bit depth, single channel.
10757
10758 @section removegrain
10759
10760 The removegrain filter is a spatial denoiser for progressive video.
10761
10762 @table @option
10763 @item m0
10764 Set mode for the first plane.
10765
10766 @item m1
10767 Set mode for the second plane.
10768
10769 @item m2
10770 Set mode for the third plane.
10771
10772 @item m3
10773 Set mode for the fourth plane.
10774 @end table
10775
10776 Range of mode is from 0 to 24. Description of each mode follows:
10777
10778 @table @var
10779 @item 0
10780 Leave input plane unchanged. Default.
10781
10782 @item 1
10783 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
10784
10785 @item 2
10786 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
10787
10788 @item 3
10789 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
10790
10791 @item 4
10792 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
10793 This is equivalent to a median filter.
10794
10795 @item 5
10796 Line-sensitive clipping giving the minimal change.
10797
10798 @item 6
10799 Line-sensitive clipping, intermediate.
10800
10801 @item 7
10802 Line-sensitive clipping, intermediate.
10803
10804 @item 8
10805 Line-sensitive clipping, intermediate.
10806
10807 @item 9
10808 Line-sensitive clipping on a line where the neighbours pixels are the closest.
10809
10810 @item 10
10811 Replaces the target pixel with the closest neighbour.
10812
10813 @item 11
10814 [1 2 1] horizontal and vertical kernel blur.
10815
10816 @item 12
10817 Same as mode 11.
10818
10819 @item 13
10820 Bob mode, interpolates top field from the line where the neighbours
10821 pixels are the closest.
10822
10823 @item 14
10824 Bob mode, interpolates bottom field from the line where the neighbours
10825 pixels are the closest.
10826
10827 @item 15
10828 Bob mode, interpolates top field. Same as 13 but with a more complicated
10829 interpolation formula.
10830
10831 @item 16
10832 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
10833 interpolation formula.
10834
10835 @item 17
10836 Clips the pixel with the minimum and maximum of respectively the maximum and
10837 minimum of each pair of opposite neighbour pixels.
10838
10839 @item 18
10840 Line-sensitive clipping using opposite neighbours whose greatest distance from
10841 the current pixel is minimal.
10842
10843 @item 19
10844 Replaces the pixel with the average of its 8 neighbours.
10845
10846 @item 20
10847 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
10848
10849 @item 21
10850 Clips pixels using the averages of opposite neighbour.
10851
10852 @item 22
10853 Same as mode 21 but simpler and faster.
10854
10855 @item 23
10856 Small edge and halo removal, but reputed useless.
10857
10858 @item 24
10859 Similar as 23.
10860 @end table
10861
10862 @section removelogo
10863
10864 Suppress a TV station logo, using an image file to determine which
10865 pixels comprise the logo. It works by filling in the pixels that
10866 comprise the logo with neighboring pixels.
10867
10868 The filter accepts the following options:
10869
10870 @table @option
10871 @item filename, f
10872 Set the filter bitmap file, which can be any image format supported by
10873 libavformat. The width and height of the image file must match those of the
10874 video stream being processed.
10875 @end table
10876
10877 Pixels in the provided bitmap image with a value of zero are not
10878 considered part of the logo, non-zero pixels are considered part of
10879 the logo. If you use white (255) for the logo and black (0) for the
10880 rest, you will be safe. For making the filter bitmap, it is
10881 recommended to take a screen capture of a black frame with the logo
10882 visible, and then using a threshold filter followed by the erode
10883 filter once or twice.
10884
10885 If needed, little splotches can be fixed manually. Remember that if
10886 logo pixels are not covered, the filter quality will be much
10887 reduced. Marking too many pixels as part of the logo does not hurt as
10888 much, but it will increase the amount of blurring needed to cover over
10889 the image and will destroy more information than necessary, and extra
10890 pixels will slow things down on a large logo.
10891
10892 @section repeatfields
10893
10894 This filter uses the repeat_field flag from the Video ES headers and hard repeats
10895 fields based on its value.
10896
10897 @section reverse, areverse
10898
10899 Reverse a clip.
10900
10901 Warning: This filter requires memory to buffer the entire clip, so trimming
10902 is suggested.
10903
10904 @subsection Examples
10905
10906 @itemize
10907 @item
10908 Take the first 5 seconds of a clip, and reverse it.
10909 @example
10910 trim=end=5,reverse
10911 @end example
10912 @end itemize
10913
10914 @section rotate
10915
10916 Rotate video by an arbitrary angle expressed in radians.
10917
10918 The filter accepts the following options:
10919
10920 A description of the optional parameters follows.
10921 @table @option
10922 @item angle, a
10923 Set an expression for the angle by which to rotate the input video
10924 clockwise, expressed as a number of radians. A negative value will
10925 result in a counter-clockwise rotation. By default it is set to "0".
10926
10927 This expression is evaluated for each frame.
10928
10929 @item out_w, ow
10930 Set the output width expression, default value is "iw".
10931 This expression is evaluated just once during configuration.
10932
10933 @item out_h, oh
10934 Set the output height expression, default value is "ih".
10935 This expression is evaluated just once during configuration.
10936
10937 @item bilinear
10938 Enable bilinear interpolation if set to 1, a value of 0 disables
10939 it. Default value is 1.
10940
10941 @item fillcolor, c
10942 Set the color used to fill the output area not covered by the rotated
10943 image. For the general syntax of this option, check the "Color" section in the
10944 ffmpeg-utils manual. If the special value "none" is selected then no
10945 background is printed (useful for example if the background is never shown).
10946
10947 Default value is "black".
10948 @end table
10949
10950 The expressions for the angle and the output size can contain the
10951 following constants and functions:
10952
10953 @table @option
10954 @item n
10955 sequential number of the input frame, starting from 0. It is always NAN
10956 before the first frame is filtered.
10957
10958 @item t
10959 time in seconds of the input frame, it is set to 0 when the filter is
10960 configured. It is always NAN before the first frame is filtered.
10961
10962 @item hsub
10963 @item vsub
10964 horizontal and vertical chroma subsample values. For example for the
10965 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10966
10967 @item in_w, iw
10968 @item in_h, ih
10969 the input video width and height
10970
10971 @item out_w, ow
10972 @item out_h, oh
10973 the output width and height, that is the size of the padded area as
10974 specified by the @var{width} and @var{height} expressions
10975
10976 @item rotw(a)
10977 @item roth(a)
10978 the minimal width/height required for completely containing the input
10979 video rotated by @var{a} radians.
10980
10981 These are only available when computing the @option{out_w} and
10982 @option{out_h} expressions.
10983 @end table
10984
10985 @subsection Examples
10986
10987 @itemize
10988 @item
10989 Rotate the input by PI/6 radians clockwise:
10990 @example
10991 rotate=PI/6
10992 @end example
10993
10994 @item
10995 Rotate the input by PI/6 radians counter-clockwise:
10996 @example
10997 rotate=-PI/6
10998 @end example
10999
11000 @item
11001 Rotate the input by 45 degrees clockwise:
11002 @example
11003 rotate=45*PI/180
11004 @end example
11005
11006 @item
11007 Apply a constant rotation with period T, starting from an angle of PI/3:
11008 @example
11009 rotate=PI/3+2*PI*t/T
11010 @end example
11011
11012 @item
11013 Make the input video rotation oscillating with a period of T
11014 seconds and an amplitude of A radians:
11015 @example
11016 rotate=A*sin(2*PI/T*t)
11017 @end example
11018
11019 @item
11020 Rotate the video, output size is chosen so that the whole rotating
11021 input video is always completely contained in the output:
11022 @example
11023 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11024 @end example
11025
11026 @item
11027 Rotate the video, reduce the output size so that no background is ever
11028 shown:
11029 @example
11030 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11031 @end example
11032 @end itemize
11033
11034 @subsection Commands
11035
11036 The filter supports the following commands:
11037
11038 @table @option
11039 @item a, angle
11040 Set the angle expression.
11041 The command accepts the same syntax of the corresponding option.
11042
11043 If the specified expression is not valid, it is kept at its current
11044 value.
11045 @end table
11046
11047 @section sab
11048
11049 Apply Shape Adaptive Blur.
11050
11051 The filter accepts the following options:
11052
11053 @table @option
11054 @item luma_radius, lr
11055 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11056 value is 1.0. A greater value will result in a more blurred image, and
11057 in slower processing.
11058
11059 @item luma_pre_filter_radius, lpfr
11060 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11061 value is 1.0.
11062
11063 @item luma_strength, ls
11064 Set luma maximum difference between pixels to still be considered, must
11065 be a value in the 0.1-100.0 range, default value is 1.0.
11066
11067 @item chroma_radius, cr
11068 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
11069 greater value will result in a more blurred image, and in slower
11070 processing.
11071
11072 @item chroma_pre_filter_radius, cpfr
11073 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
11074
11075 @item chroma_strength, cs
11076 Set chroma maximum difference between pixels to still be considered,
11077 must be a value in the 0.1-100.0 range.
11078 @end table
11079
11080 Each chroma option value, if not explicitly specified, is set to the
11081 corresponding luma option value.
11082
11083 @anchor{scale}
11084 @section scale
11085
11086 Scale (resize) the input video, using the libswscale library.
11087
11088 The scale filter forces the output display aspect ratio to be the same
11089 of the input, by changing the output sample aspect ratio.
11090
11091 If the input image format is different from the format requested by
11092 the next filter, the scale filter will convert the input to the
11093 requested format.
11094
11095 @subsection Options
11096 The filter accepts the following options, or any of the options
11097 supported by the libswscale scaler.
11098
11099 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11100 the complete list of scaler options.
11101
11102 @table @option
11103 @item width, w
11104 @item height, h
11105 Set the output video dimension expression. Default value is the input
11106 dimension.
11107
11108 If the value is 0, the input width is used for the output.
11109
11110 If one of the values is -1, the scale filter will use a value that
11111 maintains the aspect ratio of the input image, calculated from the
11112 other specified dimension. If both of them are -1, the input size is
11113 used
11114
11115 If one of the values is -n with n > 1, the scale filter will also use a value
11116 that maintains the aspect ratio of the input image, calculated from the other
11117 specified dimension. After that it will, however, make sure that the calculated
11118 dimension is divisible by n and adjust the value if necessary.
11119
11120 See below for the list of accepted constants for use in the dimension
11121 expression.
11122
11123 @item eval
11124 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11125
11126 @table @samp
11127 @item init
11128 Only evaluate expressions once during the filter initialization or when a command is processed.
11129
11130 @item frame
11131 Evaluate expressions for each incoming frame.
11132
11133 @end table
11134
11135 Default value is @samp{init}.
11136
11137
11138 @item interl
11139 Set the interlacing mode. It accepts the following values:
11140
11141 @table @samp
11142 @item 1
11143 Force interlaced aware scaling.
11144
11145 @item 0
11146 Do not apply interlaced scaling.
11147
11148 @item -1
11149 Select interlaced aware scaling depending on whether the source frames
11150 are flagged as interlaced or not.
11151 @end table
11152
11153 Default value is @samp{0}.
11154
11155 @item flags
11156 Set libswscale scaling flags. See
11157 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11158 complete list of values. If not explicitly specified the filter applies
11159 the default flags.
11160
11161
11162 @item param0, param1
11163 Set libswscale input parameters for scaling algorithms that need them. See
11164 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11165 complete documentation. If not explicitly specified the filter applies
11166 empty parameters.
11167
11168
11169
11170 @item size, s
11171 Set the video size. For the syntax of this option, check the
11172 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11173
11174 @item in_color_matrix
11175 @item out_color_matrix
11176 Set in/output YCbCr color space type.
11177
11178 This allows the autodetected value to be overridden as well as allows forcing
11179 a specific value used for the output and encoder.
11180
11181 If not specified, the color space type depends on the pixel format.
11182
11183 Possible values:
11184
11185 @table @samp
11186 @item auto
11187 Choose automatically.
11188
11189 @item bt709
11190 Format conforming to International Telecommunication Union (ITU)
11191 Recommendation BT.709.
11192
11193 @item fcc
11194 Set color space conforming to the United States Federal Communications
11195 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11196
11197 @item bt601
11198 Set color space conforming to:
11199
11200 @itemize
11201 @item
11202 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11203
11204 @item
11205 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11206
11207 @item
11208 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11209
11210 @end itemize
11211
11212 @item smpte240m
11213 Set color space conforming to SMPTE ST 240:1999.
11214 @end table
11215
11216 @item in_range
11217 @item out_range
11218 Set in/output YCbCr sample range.
11219
11220 This allows the autodetected value to be overridden as well as allows forcing
11221 a specific value used for the output and encoder. If not specified, the
11222 range depends on the pixel format. Possible values:
11223
11224 @table @samp
11225 @item auto
11226 Choose automatically.
11227
11228 @item jpeg/full/pc
11229 Set full range (0-255 in case of 8-bit luma).
11230
11231 @item mpeg/tv
11232 Set "MPEG" range (16-235 in case of 8-bit luma).
11233 @end table
11234
11235 @item force_original_aspect_ratio
11236 Enable decreasing or increasing output video width or height if necessary to
11237 keep the original aspect ratio. Possible values:
11238
11239 @table @samp
11240 @item disable
11241 Scale the video as specified and disable this feature.
11242
11243 @item decrease
11244 The output video dimensions will automatically be decreased if needed.
11245
11246 @item increase
11247 The output video dimensions will automatically be increased if needed.
11248
11249 @end table
11250
11251 One useful instance of this option is that when you know a specific device's
11252 maximum allowed resolution, you can use this to limit the output video to
11253 that, while retaining the aspect ratio. For example, device A allows
11254 1280x720 playback, and your video is 1920x800. Using this option (set it to
11255 decrease) and specifying 1280x720 to the command line makes the output
11256 1280x533.
11257
11258 Please note that this is a different thing than specifying -1 for @option{w}
11259 or @option{h}, you still need to specify the output resolution for this option
11260 to work.
11261
11262 @end table
11263
11264 The values of the @option{w} and @option{h} options are expressions
11265 containing the following constants:
11266
11267 @table @var
11268 @item in_w
11269 @item in_h
11270 The input width and height
11271
11272 @item iw
11273 @item ih
11274 These are the same as @var{in_w} and @var{in_h}.
11275
11276 @item out_w
11277 @item out_h
11278 The output (scaled) width and height
11279
11280 @item ow
11281 @item oh
11282 These are the same as @var{out_w} and @var{out_h}
11283
11284 @item a
11285 The same as @var{iw} / @var{ih}
11286
11287 @item sar
11288 input sample aspect ratio
11289
11290 @item dar
11291 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11292
11293 @item hsub
11294 @item vsub
11295 horizontal and vertical input chroma subsample values. For example for the
11296 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11297
11298 @item ohsub
11299 @item ovsub
11300 horizontal and vertical output chroma subsample values. For example for the
11301 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11302 @end table
11303
11304 @subsection Examples
11305
11306 @itemize
11307 @item
11308 Scale the input video to a size of 200x100
11309 @example
11310 scale=w=200:h=100
11311 @end example
11312
11313 This is equivalent to:
11314 @example
11315 scale=200:100
11316 @end example
11317
11318 or:
11319 @example
11320 scale=200x100
11321 @end example
11322
11323 @item
11324 Specify a size abbreviation for the output size:
11325 @example
11326 scale=qcif
11327 @end example
11328
11329 which can also be written as:
11330 @example
11331 scale=size=qcif
11332 @end example
11333
11334 @item
11335 Scale the input to 2x:
11336 @example
11337 scale=w=2*iw:h=2*ih
11338 @end example
11339
11340 @item
11341 The above is the same as:
11342 @example
11343 scale=2*in_w:2*in_h
11344 @end example
11345
11346 @item
11347 Scale the input to 2x with forced interlaced scaling:
11348 @example
11349 scale=2*iw:2*ih:interl=1
11350 @end example
11351
11352 @item
11353 Scale the input to half size:
11354 @example
11355 scale=w=iw/2:h=ih/2
11356 @end example
11357
11358 @item
11359 Increase the width, and set the height to the same size:
11360 @example
11361 scale=3/2*iw:ow
11362 @end example
11363
11364 @item
11365 Seek Greek harmony:
11366 @example
11367 scale=iw:1/PHI*iw
11368 scale=ih*PHI:ih
11369 @end example
11370
11371 @item
11372 Increase the height, and set the width to 3/2 of the height:
11373 @example
11374 scale=w=3/2*oh:h=3/5*ih
11375 @end example
11376
11377 @item
11378 Increase the size, making the size a multiple of the chroma
11379 subsample values:
11380 @example
11381 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
11382 @end example
11383
11384 @item
11385 Increase the width to a maximum of 500 pixels,
11386 keeping the same aspect ratio as the input:
11387 @example
11388 scale=w='min(500\, iw*3/2):h=-1'
11389 @end example
11390 @end itemize
11391
11392 @subsection Commands
11393
11394 This filter supports the following commands:
11395 @table @option
11396 @item width, w
11397 @item height, h
11398 Set the output video dimension expression.
11399 The command accepts the same syntax of the corresponding option.
11400
11401 If the specified expression is not valid, it is kept at its current
11402 value.
11403 @end table
11404
11405 @section scale2ref
11406
11407 Scale (resize) the input video, based on a reference video.
11408
11409 See the scale filter for available options, scale2ref supports the same but
11410 uses the reference video instead of the main input as basis.
11411
11412 @subsection Examples
11413
11414 @itemize
11415 @item
11416 Scale a subtitle stream to match the main video in size before overlaying
11417 @example
11418 'scale2ref[b][a];[a][b]overlay'
11419 @end example
11420 @end itemize
11421
11422 @anchor{selectivecolor}
11423 @section selectivecolor
11424
11425 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
11426 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
11427 by the "purity" of the color (that is, how saturated it already is).
11428
11429 This filter is similar to the Adobe Photoshop Selective Color tool.
11430
11431 The filter accepts the following options:
11432
11433 @table @option
11434 @item correction_method
11435 Select color correction method.
11436
11437 Available values are:
11438 @table @samp
11439 @item absolute
11440 Specified adjustments are applied "as-is" (added/subtracted to original pixel
11441 component value).
11442 @item relative
11443 Specified adjustments are relative to the original component value.
11444 @end table
11445 Default is @code{absolute}.
11446 @item reds
11447 Adjustments for red pixels (pixels where the red component is the maximum)
11448 @item yellows
11449 Adjustments for yellow pixels (pixels where the blue component is the minimum)
11450 @item greens
11451 Adjustments for green pixels (pixels where the green component is the maximum)
11452 @item cyans
11453 Adjustments for cyan pixels (pixels where the red component is the minimum)
11454 @item blues
11455 Adjustments for blue pixels (pixels where the blue component is the maximum)
11456 @item magentas
11457 Adjustments for magenta pixels (pixels where the green component is the minimum)
11458 @item whites
11459 Adjustments for white pixels (pixels where all components are greater than 128)
11460 @item neutrals
11461 Adjustments for all pixels except pure black and pure white
11462 @item blacks
11463 Adjustments for black pixels (pixels where all components are lesser than 128)
11464 @item psfile
11465 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
11466 @end table
11467
11468 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
11469 4 space separated floating point adjustment values in the [-1,1] range,
11470 respectively to adjust the amount of cyan, magenta, yellow and black for the
11471 pixels of its range.
11472
11473 @subsection Examples
11474
11475 @itemize
11476 @item
11477 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
11478 increase magenta by 27% in blue areas:
11479 @example
11480 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
11481 @end example
11482
11483 @item
11484 Use a Photoshop selective color preset:
11485 @example
11486 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
11487 @end example
11488 @end itemize
11489
11490 @section separatefields
11491
11492 The @code{separatefields} takes a frame-based video input and splits
11493 each frame into its components fields, producing a new half height clip
11494 with twice the frame rate and twice the frame count.
11495
11496 This filter use field-dominance information in frame to decide which
11497 of each pair of fields to place first in the output.
11498 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
11499
11500 @section setdar, setsar
11501
11502 The @code{setdar} filter sets the Display Aspect Ratio for the filter
11503 output video.
11504
11505 This is done by changing the specified Sample (aka Pixel) Aspect
11506 Ratio, according to the following equation:
11507 @example
11508 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
11509 @end example
11510
11511 Keep in mind that the @code{setdar} filter does not modify the pixel
11512 dimensions of the video frame. Also, the display aspect ratio set by
11513 this filter may be changed by later filters in the filterchain,
11514 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
11515 applied.
11516
11517 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
11518 the filter output video.
11519
11520 Note that as a consequence of the application of this filter, the
11521 output display aspect ratio will change according to the equation
11522 above.
11523
11524 Keep in mind that the sample aspect ratio set by the @code{setsar}
11525 filter may be changed by later filters in the filterchain, e.g. if
11526 another "setsar" or a "setdar" filter is applied.
11527
11528 It accepts the following parameters:
11529
11530 @table @option
11531 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
11532 Set the aspect ratio used by the filter.
11533
11534 The parameter can be a floating point number string, an expression, or
11535 a string of the form @var{num}:@var{den}, where @var{num} and
11536 @var{den} are the numerator and denominator of the aspect ratio. If
11537 the parameter is not specified, it is assumed the value "0".
11538 In case the form "@var{num}:@var{den}" is used, the @code{:} character
11539 should be escaped.
11540
11541 @item max
11542 Set the maximum integer value to use for expressing numerator and
11543 denominator when reducing the expressed aspect ratio to a rational.
11544 Default value is @code{100}.
11545
11546 @end table
11547
11548 The parameter @var{sar} is an expression containing
11549 the following constants:
11550
11551 @table @option
11552 @item E, PI, PHI
11553 These are approximated values for the mathematical constants e
11554 (Euler's number), pi (Greek pi), and phi (the golden ratio).
11555
11556 @item w, h
11557 The input width and height.
11558
11559 @item a
11560 These are the same as @var{w} / @var{h}.
11561
11562 @item sar
11563 The input sample aspect ratio.
11564
11565 @item dar
11566 The input display aspect ratio. It is the same as
11567 (@var{w} / @var{h}) * @var{sar}.
11568
11569 @item hsub, vsub
11570 Horizontal and vertical chroma subsample values. For example, for the
11571 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11572 @end table
11573
11574 @subsection Examples
11575
11576 @itemize
11577
11578 @item
11579 To change the display aspect ratio to 16:9, specify one of the following:
11580 @example
11581 setdar=dar=1.77777
11582 setdar=dar=16/9
11583 setdar=dar=1.77777
11584 @end example
11585
11586 @item
11587 To change the sample aspect ratio to 10:11, specify:
11588 @example
11589 setsar=sar=10/11
11590 @end example
11591
11592 @item
11593 To set a display aspect ratio of 16:9, and specify a maximum integer value of
11594 1000 in the aspect ratio reduction, use the command:
11595 @example
11596 setdar=ratio=16/9:max=1000
11597 @end example
11598
11599 @end itemize
11600
11601 @anchor{setfield}
11602 @section setfield
11603
11604 Force field for the output video frame.
11605
11606 The @code{setfield} filter marks the interlace type field for the
11607 output frames. It does not change the input frame, but only sets the
11608 corresponding property, which affects how the frame is treated by
11609 following filters (e.g. @code{fieldorder} or @code{yadif}).
11610
11611 The filter accepts the following options:
11612
11613 @table @option
11614
11615 @item mode
11616 Available values are:
11617
11618 @table @samp
11619 @item auto
11620 Keep the same field property.
11621
11622 @item bff
11623 Mark the frame as bottom-field-first.
11624
11625 @item tff
11626 Mark the frame as top-field-first.
11627
11628 @item prog
11629 Mark the frame as progressive.
11630 @end table
11631 @end table
11632
11633 @section showinfo
11634
11635 Show a line containing various information for each input video frame.
11636 The input video is not modified.
11637
11638 The shown line contains a sequence of key/value pairs of the form
11639 @var{key}:@var{value}.
11640
11641 The following values are shown in the output:
11642
11643 @table @option
11644 @item n
11645 The (sequential) number of the input frame, starting from 0.
11646
11647 @item pts
11648 The Presentation TimeStamp of the input frame, expressed as a number of
11649 time base units. The time base unit depends on the filter input pad.
11650
11651 @item pts_time
11652 The Presentation TimeStamp of the input frame, expressed as a number of
11653 seconds.
11654
11655 @item pos
11656 The position of the frame in the input stream, or -1 if this information is
11657 unavailable and/or meaningless (for example in case of synthetic video).
11658
11659 @item fmt
11660 The pixel format name.
11661
11662 @item sar
11663 The sample aspect ratio of the input frame, expressed in the form
11664 @var{num}/@var{den}.
11665
11666 @item s
11667 The size of the input frame. For the syntax of this option, check the
11668 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11669
11670 @item i
11671 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
11672 for bottom field first).
11673
11674 @item iskey
11675 This is 1 if the frame is a key frame, 0 otherwise.
11676
11677 @item type
11678 The picture type of the input frame ("I" for an I-frame, "P" for a
11679 P-frame, "B" for a B-frame, or "?" for an unknown type).
11680 Also refer to the documentation of the @code{AVPictureType} enum and of
11681 the @code{av_get_picture_type_char} function defined in
11682 @file{libavutil/avutil.h}.
11683
11684 @item checksum
11685 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
11686
11687 @item plane_checksum
11688 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
11689 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
11690 @end table
11691
11692 @section showpalette
11693
11694 Displays the 256 colors palette of each frame. This filter is only relevant for
11695 @var{pal8} pixel format frames.
11696
11697 It accepts the following option:
11698
11699 @table @option
11700 @item s
11701 Set the size of the box used to represent one palette color entry. Default is
11702 @code{30} (for a @code{30x30} pixel box).
11703 @end table
11704
11705 @section shuffleframes
11706
11707 Reorder and/or duplicate video frames.
11708
11709 It accepts the following parameters:
11710
11711 @table @option
11712 @item mapping
11713 Set the destination indexes of input frames.
11714 This is space or '|' separated list of indexes that maps input frames to output
11715 frames. Number of indexes also sets maximal value that each index may have.
11716 @end table
11717
11718 The first frame has the index 0. The default is to keep the input unchanged.
11719
11720 Swap second and third frame of every three frames of the input:
11721 @example
11722 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
11723 @end example
11724
11725 @section shuffleplanes
11726
11727 Reorder and/or duplicate video planes.
11728
11729 It accepts the following parameters:
11730
11731 @table @option
11732
11733 @item map0
11734 The index of the input plane to be used as the first output plane.
11735
11736 @item map1
11737 The index of the input plane to be used as the second output plane.
11738
11739 @item map2
11740 The index of the input plane to be used as the third output plane.
11741
11742 @item map3
11743 The index of the input plane to be used as the fourth output plane.
11744
11745 @end table
11746
11747 The first plane has the index 0. The default is to keep the input unchanged.
11748
11749 Swap the second and third planes of the input:
11750 @example
11751 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
11752 @end example
11753
11754 @anchor{signalstats}
11755 @section signalstats
11756 Evaluate various visual metrics that assist in determining issues associated
11757 with the digitization of analog video media.
11758
11759 By default the filter will log these metadata values:
11760
11761 @table @option
11762 @item YMIN
11763 Display the minimal Y value contained within the input frame. Expressed in
11764 range of [0-255].
11765
11766 @item YLOW
11767 Display the Y value at the 10% percentile within the input frame. Expressed in
11768 range of [0-255].
11769
11770 @item YAVG
11771 Display the average Y value within the input frame. Expressed in range of
11772 [0-255].
11773
11774 @item YHIGH
11775 Display the Y value at the 90% percentile within the input frame. Expressed in
11776 range of [0-255].
11777
11778 @item YMAX
11779 Display the maximum Y value contained within the input frame. Expressed in
11780 range of [0-255].
11781
11782 @item UMIN
11783 Display the minimal U value contained within the input frame. Expressed in
11784 range of [0-255].
11785
11786 @item ULOW
11787 Display the U value at the 10% percentile within the input frame. Expressed in
11788 range of [0-255].
11789
11790 @item UAVG
11791 Display the average U value within the input frame. Expressed in range of
11792 [0-255].
11793
11794 @item UHIGH
11795 Display the U value at the 90% percentile within the input frame. Expressed in
11796 range of [0-255].
11797
11798 @item UMAX
11799 Display the maximum U value contained within the input frame. Expressed in
11800 range of [0-255].
11801
11802 @item VMIN
11803 Display the minimal V value contained within the input frame. Expressed in
11804 range of [0-255].
11805
11806 @item VLOW
11807 Display the V value at the 10% percentile within the input frame. Expressed in
11808 range of [0-255].
11809
11810 @item VAVG
11811 Display the average V value within the input frame. Expressed in range of
11812 [0-255].
11813
11814 @item VHIGH
11815 Display the V value at the 90% percentile within the input frame. Expressed in
11816 range of [0-255].
11817
11818 @item VMAX
11819 Display the maximum V value contained within the input frame. Expressed in
11820 range of [0-255].
11821
11822 @item SATMIN
11823 Display the minimal saturation value contained within the input frame.
11824 Expressed in range of [0-~181.02].
11825
11826 @item SATLOW
11827 Display the saturation value at the 10% percentile within the input frame.
11828 Expressed in range of [0-~181.02].
11829
11830 @item SATAVG
11831 Display the average saturation value within the input frame. Expressed in range
11832 of [0-~181.02].
11833
11834 @item SATHIGH
11835 Display the saturation value at the 90% percentile within the input frame.
11836 Expressed in range of [0-~181.02].
11837
11838 @item SATMAX
11839 Display the maximum saturation value contained within the input frame.
11840 Expressed in range of [0-~181.02].
11841
11842 @item HUEMED
11843 Display the median value for hue within the input frame. Expressed in range of
11844 [0-360].
11845
11846 @item HUEAVG
11847 Display the average value for hue within the input frame. Expressed in range of
11848 [0-360].
11849
11850 @item YDIF
11851 Display the average of sample value difference between all values of the Y
11852 plane in the current frame and corresponding values of the previous input frame.
11853 Expressed in range of [0-255].
11854
11855 @item UDIF
11856 Display the average of sample value difference between all values of the U
11857 plane in the current frame and corresponding values of the previous input frame.
11858 Expressed in range of [0-255].
11859
11860 @item VDIF
11861 Display the average of sample value difference between all values of the V
11862 plane in the current frame and corresponding values of the previous input frame.
11863 Expressed in range of [0-255].
11864 @end table
11865
11866 The filter accepts the following options:
11867
11868 @table @option
11869 @item stat
11870 @item out
11871
11872 @option{stat} specify an additional form of image analysis.
11873 @option{out} output video with the specified type of pixel highlighted.
11874
11875 Both options accept the following values:
11876
11877 @table @samp
11878 @item tout
11879 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
11880 unlike the neighboring pixels of the same field. Examples of temporal outliers
11881 include the results of video dropouts, head clogs, or tape tracking issues.
11882
11883 @item vrep
11884 Identify @var{vertical line repetition}. Vertical line repetition includes
11885 similar rows of pixels within a frame. In born-digital video vertical line
11886 repetition is common, but this pattern is uncommon in video digitized from an
11887 analog source. When it occurs in video that results from the digitization of an
11888 analog source it can indicate concealment from a dropout compensator.
11889
11890 @item brng
11891 Identify pixels that fall outside of legal broadcast range.
11892 @end table
11893
11894 @item color, c
11895 Set the highlight color for the @option{out} option. The default color is
11896 yellow.
11897 @end table
11898
11899 @subsection Examples
11900
11901 @itemize
11902 @item
11903 Output data of various video metrics:
11904 @example
11905 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
11906 @end example
11907
11908 @item
11909 Output specific data about the minimum and maximum values of the Y plane per frame:
11910 @example
11911 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
11912 @end example
11913
11914 @item
11915 Playback video while highlighting pixels that are outside of broadcast range in red.
11916 @example
11917 ffplay example.mov -vf signalstats="out=brng:color=red"
11918 @end example
11919
11920 @item
11921 Playback video with signalstats metadata drawn over the frame.
11922 @example
11923 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
11924 @end example
11925
11926 The contents of signalstat_drawtext.txt used in the command are:
11927 @example
11928 time %@{pts:hms@}
11929 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
11930 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
11931 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
11932 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
11933
11934 @end example
11935 @end itemize
11936
11937 @anchor{smartblur}
11938 @section smartblur
11939
11940 Blur the input video without impacting the outlines.
11941
11942 It accepts the following options:
11943
11944 @table @option
11945 @item luma_radius, lr
11946 Set the luma radius. The option value must be a float number in
11947 the range [0.1,5.0] that specifies the variance of the gaussian filter
11948 used to blur the image (slower if larger). Default value is 1.0.
11949
11950 @item luma_strength, ls
11951 Set the luma strength. The option value must be a float number
11952 in the range [-1.0,1.0] that configures the blurring. A value included
11953 in [0.0,1.0] will blur the image whereas a value included in
11954 [-1.0,0.0] will sharpen the image. Default value is 1.0.
11955
11956 @item luma_threshold, lt
11957 Set the luma threshold used as a coefficient to determine
11958 whether a pixel should be blurred or not. The option value must be an
11959 integer in the range [-30,30]. A value of 0 will filter all the image,
11960 a value included in [0,30] will filter flat areas and a value included
11961 in [-30,0] will filter edges. Default value is 0.
11962
11963 @item chroma_radius, cr
11964 Set the chroma radius. The option value must be a float number in
11965 the range [0.1,5.0] that specifies the variance of the gaussian filter
11966 used to blur the image (slower if larger). Default value is 1.0.
11967
11968 @item chroma_strength, cs
11969 Set the chroma strength. The option value must be a float number
11970 in the range [-1.0,1.0] that configures the blurring. A value included
11971 in [0.0,1.0] will blur the image whereas a value included in
11972 [-1.0,0.0] will sharpen the image. Default value is 1.0.
11973
11974 @item chroma_threshold, ct
11975 Set the chroma threshold used as a coefficient to determine
11976 whether a pixel should be blurred or not. The option value must be an
11977 integer in the range [-30,30]. A value of 0 will filter all the image,
11978 a value included in [0,30] will filter flat areas and a value included
11979 in [-30,0] will filter edges. Default value is 0.
11980 @end table
11981
11982 If a chroma option is not explicitly set, the corresponding luma value
11983 is set.
11984
11985 @section ssim
11986
11987 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
11988
11989 This filter takes in input two input videos, the first input is
11990 considered the "main" source and is passed unchanged to the
11991 output. The second input is used as a "reference" video for computing
11992 the SSIM.
11993
11994 Both video inputs must have the same resolution and pixel format for
11995 this filter to work correctly. Also it assumes that both inputs
11996 have the same number of frames, which are compared one by one.
11997
11998 The filter stores the calculated SSIM of each frame.
11999
12000 The description of the accepted parameters follows.
12001
12002 @table @option
12003 @item stats_file, f
12004 If specified the filter will use the named file to save the SSIM of
12005 each individual frame. When filename equals "-" the data is sent to
12006 standard output.
12007 @end table
12008
12009 The file printed if @var{stats_file} is selected, contains a sequence of
12010 key/value pairs of the form @var{key}:@var{value} for each compared
12011 couple of frames.
12012
12013 A description of each shown parameter follows:
12014
12015 @table @option
12016 @item n
12017 sequential number of the input frame, starting from 1
12018
12019 @item Y, U, V, R, G, B
12020 SSIM of the compared frames for the component specified by the suffix.
12021
12022 @item All
12023 SSIM of the compared frames for the whole frame.
12024
12025 @item dB
12026 Same as above but in dB representation.
12027 @end table
12028
12029 For example:
12030 @example
12031 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12032 [main][ref] ssim="stats_file=stats.log" [out]
12033 @end example
12034
12035 On this example the input file being processed is compared with the
12036 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12037 is stored in @file{stats.log}.
12038
12039 Another example with both psnr and ssim at same time:
12040 @example
12041 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12042 @end example
12043
12044 @section stereo3d
12045
12046 Convert between different stereoscopic image formats.
12047
12048 The filters accept the following options:
12049
12050 @table @option
12051 @item in
12052 Set stereoscopic image format of input.
12053
12054 Available values for input image formats are:
12055 @table @samp
12056 @item sbsl
12057 side by side parallel (left eye left, right eye right)
12058
12059 @item sbsr
12060 side by side crosseye (right eye left, left eye right)
12061
12062 @item sbs2l
12063 side by side parallel with half width resolution
12064 (left eye left, right eye right)
12065
12066 @item sbs2r
12067 side by side crosseye with half width resolution
12068 (right eye left, left eye right)
12069
12070 @item abl
12071 above-below (left eye above, right eye below)
12072
12073 @item abr
12074 above-below (right eye above, left eye below)
12075
12076 @item ab2l
12077 above-below with half height resolution
12078 (left eye above, right eye below)
12079
12080 @item ab2r
12081 above-below with half height resolution
12082 (right eye above, left eye below)
12083
12084 @item al
12085 alternating frames (left eye first, right eye second)
12086
12087 @item ar
12088 alternating frames (right eye first, left eye second)
12089
12090 @item irl
12091 interleaved rows (left eye has top row, right eye starts on next row)
12092
12093 @item irr
12094 interleaved rows (right eye has top row, left eye starts on next row)
12095
12096 @item icl
12097 interleaved columns, left eye first
12098
12099 @item icr
12100 interleaved columns, right eye first
12101
12102 Default value is @samp{sbsl}.
12103 @end table
12104
12105 @item out
12106 Set stereoscopic image format of output.
12107
12108 @table @samp
12109 @item sbsl
12110 side by side parallel (left eye left, right eye right)
12111
12112 @item sbsr
12113 side by side crosseye (right eye left, left eye right)
12114
12115 @item sbs2l
12116 side by side parallel with half width resolution
12117 (left eye left, right eye right)
12118
12119 @item sbs2r
12120 side by side crosseye with half width resolution
12121 (right eye left, left eye right)
12122
12123 @item abl
12124 above-below (left eye above, right eye below)
12125
12126 @item abr
12127 above-below (right eye above, left eye below)
12128
12129 @item ab2l
12130 above-below with half height resolution
12131 (left eye above, right eye below)
12132
12133 @item ab2r
12134 above-below with half height resolution
12135 (right eye above, left eye below)
12136
12137 @item al
12138 alternating frames (left eye first, right eye second)
12139
12140 @item ar
12141 alternating frames (right eye first, left eye second)
12142
12143 @item irl
12144 interleaved rows (left eye has top row, right eye starts on next row)
12145
12146 @item irr
12147 interleaved rows (right eye has top row, left eye starts on next row)
12148
12149 @item arbg
12150 anaglyph red/blue gray
12151 (red filter on left eye, blue filter on right eye)
12152
12153 @item argg
12154 anaglyph red/green gray
12155 (red filter on left eye, green filter on right eye)
12156
12157 @item arcg
12158 anaglyph red/cyan gray
12159 (red filter on left eye, cyan filter on right eye)
12160
12161 @item arch
12162 anaglyph red/cyan half colored
12163 (red filter on left eye, cyan filter on right eye)
12164
12165 @item arcc
12166 anaglyph red/cyan color
12167 (red filter on left eye, cyan filter on right eye)
12168
12169 @item arcd
12170 anaglyph red/cyan color optimized with the least squares projection of dubois
12171 (red filter on left eye, cyan filter on right eye)
12172
12173 @item agmg
12174 anaglyph green/magenta gray
12175 (green filter on left eye, magenta filter on right eye)
12176
12177 @item agmh
12178 anaglyph green/magenta half colored
12179 (green filter on left eye, magenta filter on right eye)
12180
12181 @item agmc
12182 anaglyph green/magenta colored
12183 (green filter on left eye, magenta filter on right eye)
12184
12185 @item agmd
12186 anaglyph green/magenta color optimized with the least squares projection of dubois
12187 (green filter on left eye, magenta filter on right eye)
12188
12189 @item aybg
12190 anaglyph yellow/blue gray
12191 (yellow filter on left eye, blue filter on right eye)
12192
12193 @item aybh
12194 anaglyph yellow/blue half colored
12195 (yellow filter on left eye, blue filter on right eye)
12196
12197 @item aybc
12198 anaglyph yellow/blue colored
12199 (yellow filter on left eye, blue filter on right eye)
12200
12201 @item aybd
12202 anaglyph yellow/blue color optimized with the least squares projection of dubois
12203 (yellow filter on left eye, blue filter on right eye)
12204
12205 @item ml
12206 mono output (left eye only)
12207
12208 @item mr
12209 mono output (right eye only)
12210
12211 @item chl
12212 checkerboard, left eye first
12213
12214 @item chr
12215 checkerboard, right eye first
12216
12217 @item icl
12218 interleaved columns, left eye first
12219
12220 @item icr
12221 interleaved columns, right eye first
12222 @end table
12223
12224 Default value is @samp{arcd}.
12225 @end table
12226
12227 @subsection Examples
12228
12229 @itemize
12230 @item
12231 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12232 @example
12233 stereo3d=sbsl:aybd
12234 @end example
12235
12236 @item
12237 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12238 @example
12239 stereo3d=abl:sbsr
12240 @end example
12241 @end itemize
12242
12243 @section streamselect, astreamselect
12244 Select video or audio streams.
12245
12246 The filter accepts the following options:
12247
12248 @table @option
12249 @item inputs
12250 Set number of inputs. Default is 2.
12251
12252 @item map
12253 Set input indexes to remap to outputs.
12254 @end table
12255
12256 @subsection Commands
12257
12258 The @code{streamselect} and @code{astreamselect} filter supports the following
12259 commands:
12260
12261 @table @option
12262 @item map
12263 Set input indexes to remap to outputs.
12264 @end table
12265
12266 @subsection Examples
12267
12268 @itemize
12269 @item
12270 Select first 5 seconds 1st stream and rest of time 2nd stream:
12271 @example
12272 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12273 @end example
12274
12275 @item
12276 Same as above, but for audio:
12277 @example
12278 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12279 @end example
12280 @end itemize
12281
12282 @anchor{spp}
12283 @section spp
12284
12285 Apply a simple postprocessing filter that compresses and decompresses the image
12286 at several (or - in the case of @option{quality} level @code{6} - all) shifts
12287 and average the results.
12288
12289 The filter accepts the following options:
12290
12291 @table @option
12292 @item quality
12293 Set quality. This option defines the number of levels for averaging. It accepts
12294 an integer in the range 0-6. If set to @code{0}, the filter will have no
12295 effect. A value of @code{6} means the higher quality. For each increment of
12296 that value the speed drops by a factor of approximately 2.  Default value is
12297 @code{3}.
12298
12299 @item qp
12300 Force a constant quantization parameter. If not set, the filter will use the QP
12301 from the video stream (if available).
12302
12303 @item mode
12304 Set thresholding mode. Available modes are:
12305
12306 @table @samp
12307 @item hard
12308 Set hard thresholding (default).
12309 @item soft
12310 Set soft thresholding (better de-ringing effect, but likely blurrier).
12311 @end table
12312
12313 @item use_bframe_qp
12314 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12315 option may cause flicker since the B-Frames have often larger QP. Default is
12316 @code{0} (not enabled).
12317 @end table
12318
12319 @anchor{subtitles}
12320 @section subtitles
12321
12322 Draw subtitles on top of input video using the libass library.
12323
12324 To enable compilation of this filter you need to configure FFmpeg with
12325 @code{--enable-libass}. This filter also requires a build with libavcodec and
12326 libavformat to convert the passed subtitles file to ASS (Advanced Substation
12327 Alpha) subtitles format.
12328
12329 The filter accepts the following options:
12330
12331 @table @option
12332 @item filename, f
12333 Set the filename of the subtitle file to read. It must be specified.
12334
12335 @item original_size
12336 Specify the size of the original video, the video for which the ASS file
12337 was composed. For the syntax of this option, check the
12338 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12339 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
12340 correctly scale the fonts if the aspect ratio has been changed.
12341
12342 @item fontsdir
12343 Set a directory path containing fonts that can be used by the filter.
12344 These fonts will be used in addition to whatever the font provider uses.
12345
12346 @item charenc
12347 Set subtitles input character encoding. @code{subtitles} filter only. Only
12348 useful if not UTF-8.
12349
12350 @item stream_index, si
12351 Set subtitles stream index. @code{subtitles} filter only.
12352
12353 @item force_style
12354 Override default style or script info parameters of the subtitles. It accepts a
12355 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
12356 @end table
12357
12358 If the first key is not specified, it is assumed that the first value
12359 specifies the @option{filename}.
12360
12361 For example, to render the file @file{sub.srt} on top of the input
12362 video, use the command:
12363 @example
12364 subtitles=sub.srt
12365 @end example
12366
12367 which is equivalent to:
12368 @example
12369 subtitles=filename=sub.srt
12370 @end example
12371
12372 To render the default subtitles stream from file @file{video.mkv}, use:
12373 @example
12374 subtitles=video.mkv
12375 @end example
12376
12377 To render the second subtitles stream from that file, use:
12378 @example
12379 subtitles=video.mkv:si=1
12380 @end example
12381
12382 To make the subtitles stream from @file{sub.srt} appear in transparent green
12383 @code{DejaVu Serif}, use:
12384 @example
12385 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
12386 @end example
12387
12388 @section super2xsai
12389
12390 Scale the input by 2x and smooth using the Super2xSaI (Scale and
12391 Interpolate) pixel art scaling algorithm.
12392
12393 Useful for enlarging pixel art images without reducing sharpness.
12394
12395 @section swaprect
12396
12397 Swap two rectangular objects in video.
12398
12399 This filter accepts the following options:
12400
12401 @table @option
12402 @item w
12403 Set object width.
12404
12405 @item h
12406 Set object height.
12407
12408 @item x1
12409 Set 1st rect x coordinate.
12410
12411 @item y1
12412 Set 1st rect y coordinate.
12413
12414 @item x2
12415 Set 2nd rect x coordinate.
12416
12417 @item y2
12418 Set 2nd rect y coordinate.
12419
12420 All expressions are evaluated once for each frame.
12421 @end table
12422
12423 The all options are expressions containing the following constants:
12424
12425 @table @option
12426 @item w
12427 @item h
12428 The input width and height.
12429
12430 @item a
12431 same as @var{w} / @var{h}
12432
12433 @item sar
12434 input sample aspect ratio
12435
12436 @item dar
12437 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
12438
12439 @item n
12440 The number of the input frame, starting from 0.
12441
12442 @item t
12443 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
12444
12445 @item pos
12446 the position in the file of the input frame, NAN if unknown
12447 @end table
12448
12449 @section swapuv
12450 Swap U & V plane.
12451
12452 @section telecine
12453
12454 Apply telecine process to the video.
12455
12456 This filter accepts the following options:
12457
12458 @table @option
12459 @item first_field
12460 @table @samp
12461 @item top, t
12462 top field first
12463 @item bottom, b
12464 bottom field first
12465 The default value is @code{top}.
12466 @end table
12467
12468 @item pattern
12469 A string of numbers representing the pulldown pattern you wish to apply.
12470 The default value is @code{23}.
12471 @end table
12472
12473 @example
12474 Some typical patterns:
12475
12476 NTSC output (30i):
12477 27.5p: 32222
12478 24p: 23 (classic)
12479 24p: 2332 (preferred)
12480 20p: 33
12481 18p: 334
12482 16p: 3444
12483
12484 PAL output (25i):
12485 27.5p: 12222
12486 24p: 222222222223 ("Euro pulldown")
12487 16.67p: 33
12488 16p: 33333334
12489 @end example
12490
12491 @section thumbnail
12492 Select the most representative frame in a given sequence of consecutive frames.
12493
12494 The filter accepts the following options:
12495
12496 @table @option
12497 @item n
12498 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
12499 will pick one of them, and then handle the next batch of @var{n} frames until
12500 the end. Default is @code{100}.
12501 @end table
12502
12503 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
12504 value will result in a higher memory usage, so a high value is not recommended.
12505
12506 @subsection Examples
12507
12508 @itemize
12509 @item
12510 Extract one picture each 50 frames:
12511 @example
12512 thumbnail=50
12513 @end example
12514
12515 @item
12516 Complete example of a thumbnail creation with @command{ffmpeg}:
12517 @example
12518 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
12519 @end example
12520 @end itemize
12521
12522 @section tile
12523
12524 Tile several successive frames together.
12525
12526 The filter accepts the following options:
12527
12528 @table @option
12529
12530 @item layout
12531 Set the grid size (i.e. the number of lines and columns). For the syntax of
12532 this option, check the
12533 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12534
12535 @item nb_frames
12536 Set the maximum number of frames to render in the given area. It must be less
12537 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
12538 the area will be used.
12539
12540 @item margin
12541 Set the outer border margin in pixels.
12542
12543 @item padding
12544 Set the inner border thickness (i.e. the number of pixels between frames). For
12545 more advanced padding options (such as having different values for the edges),
12546 refer to the pad video filter.
12547
12548 @item color
12549 Specify the color of the unused area. For the syntax of this option, check the
12550 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
12551 is "black".
12552 @end table
12553
12554 @subsection Examples
12555
12556 @itemize
12557 @item
12558 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
12559 @example
12560 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
12561 @end example
12562 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
12563 duplicating each output frame to accommodate the originally detected frame
12564 rate.
12565
12566 @item
12567 Display @code{5} pictures in an area of @code{3x2} frames,
12568 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
12569 mixed flat and named options:
12570 @example
12571 tile=3x2:nb_frames=5:padding=7:margin=2
12572 @end example
12573 @end itemize
12574
12575 @section tinterlace
12576
12577 Perform various types of temporal field interlacing.
12578
12579 Frames are counted starting from 1, so the first input frame is
12580 considered odd.
12581
12582 The filter accepts the following options:
12583
12584 @table @option
12585
12586 @item mode
12587 Specify the mode of the interlacing. This option can also be specified
12588 as a value alone. See below for a list of values for this option.
12589
12590 Available values are:
12591
12592 @table @samp
12593 @item merge, 0
12594 Move odd frames into the upper field, even into the lower field,
12595 generating a double height frame at half frame rate.
12596 @example
12597  ------> time
12598 Input:
12599 Frame 1         Frame 2         Frame 3         Frame 4
12600
12601 11111           22222           33333           44444
12602 11111           22222           33333           44444
12603 11111           22222           33333           44444
12604 11111           22222           33333           44444
12605
12606 Output:
12607 11111                           33333
12608 22222                           44444
12609 11111                           33333
12610 22222                           44444
12611 11111                           33333
12612 22222                           44444
12613 11111                           33333
12614 22222                           44444
12615 @end example
12616
12617 @item drop_odd, 1
12618 Only output even frames, odd frames are dropped, generating a frame with
12619 unchanged height at half frame rate.
12620
12621 @example
12622  ------> time
12623 Input:
12624 Frame 1         Frame 2         Frame 3         Frame 4
12625
12626 11111           22222           33333           44444
12627 11111           22222           33333           44444
12628 11111           22222           33333           44444
12629 11111           22222           33333           44444
12630
12631 Output:
12632                 22222                           44444
12633                 22222                           44444
12634                 22222                           44444
12635                 22222                           44444
12636 @end example
12637
12638 @item drop_even, 2
12639 Only output odd frames, even frames are dropped, generating a frame with
12640 unchanged height at half frame rate.
12641
12642 @example
12643  ------> time
12644 Input:
12645 Frame 1         Frame 2         Frame 3         Frame 4
12646
12647 11111           22222           33333           44444
12648 11111           22222           33333           44444
12649 11111           22222           33333           44444
12650 11111           22222           33333           44444
12651
12652 Output:
12653 11111                           33333
12654 11111                           33333
12655 11111                           33333
12656 11111                           33333
12657 @end example
12658
12659 @item pad, 3
12660 Expand each frame to full height, but pad alternate lines with black,
12661 generating a frame with double height at the same input frame rate.
12662
12663 @example
12664  ------> time
12665 Input:
12666 Frame 1         Frame 2         Frame 3         Frame 4
12667
12668 11111           22222           33333           44444
12669 11111           22222           33333           44444
12670 11111           22222           33333           44444
12671 11111           22222           33333           44444
12672
12673 Output:
12674 11111           .....           33333           .....
12675 .....           22222           .....           44444
12676 11111           .....           33333           .....
12677 .....           22222           .....           44444
12678 11111           .....           33333           .....
12679 .....           22222           .....           44444
12680 11111           .....           33333           .....
12681 .....           22222           .....           44444
12682 @end example
12683
12684
12685 @item interleave_top, 4
12686 Interleave the upper field from odd frames with the lower field from
12687 even frames, generating a frame with unchanged height at half frame rate.
12688
12689 @example
12690  ------> time
12691 Input:
12692 Frame 1         Frame 2         Frame 3         Frame 4
12693
12694 11111<-         22222           33333<-         44444
12695 11111           22222<-         33333           44444<-
12696 11111<-         22222           33333<-         44444
12697 11111           22222<-         33333           44444<-
12698
12699 Output:
12700 11111                           33333
12701 22222                           44444
12702 11111                           33333
12703 22222                           44444
12704 @end example
12705
12706
12707 @item interleave_bottom, 5
12708 Interleave the lower field from odd frames with the upper field from
12709 even frames, generating a frame with unchanged height at half frame rate.
12710
12711 @example
12712  ------> time
12713 Input:
12714 Frame 1         Frame 2         Frame 3         Frame 4
12715
12716 11111           22222<-         33333           44444<-
12717 11111<-         22222           33333<-         44444
12718 11111           22222<-         33333           44444<-
12719 11111<-         22222           33333<-         44444
12720
12721 Output:
12722 22222                           44444
12723 11111                           33333
12724 22222                           44444
12725 11111                           33333
12726 @end example
12727
12728
12729 @item interlacex2, 6
12730 Double frame rate with unchanged height. Frames are inserted each
12731 containing the second temporal field from the previous input frame and
12732 the first temporal field from the next input frame. This mode relies on
12733 the top_field_first flag. Useful for interlaced video displays with no
12734 field synchronisation.
12735
12736 @example
12737  ------> time
12738 Input:
12739 Frame 1         Frame 2         Frame 3         Frame 4
12740
12741 11111           22222           33333           44444
12742  11111           22222           33333           44444
12743 11111           22222           33333           44444
12744  11111           22222           33333           44444
12745
12746 Output:
12747 11111   22222   22222   33333   33333   44444   44444
12748  11111   11111   22222   22222   33333   33333   44444
12749 11111   22222   22222   33333   33333   44444   44444
12750  11111   11111   22222   22222   33333   33333   44444
12751 @end example
12752
12753 @item mergex2, 7
12754 Move odd frames into the upper field, even into the lower field,
12755 generating a double height frame at same frame rate.
12756 @example
12757  ------> time
12758 Input:
12759 Frame 1         Frame 2         Frame 3         Frame 4
12760
12761 11111           22222           33333           44444
12762 11111           22222           33333           44444
12763 11111           22222           33333           44444
12764 11111           22222           33333           44444
12765
12766 Output:
12767 11111           33333           33333           55555
12768 22222           22222           44444           44444
12769 11111           33333           33333           55555
12770 22222           22222           44444           44444
12771 11111           33333           33333           55555
12772 22222           22222           44444           44444
12773 11111           33333           33333           55555
12774 22222           22222           44444           44444
12775 @end example
12776
12777 @end table
12778
12779 Numeric values are deprecated but are accepted for backward
12780 compatibility reasons.
12781
12782 Default mode is @code{merge}.
12783
12784 @item flags
12785 Specify flags influencing the filter process.
12786
12787 Available value for @var{flags} is:
12788
12789 @table @option
12790 @item low_pass_filter, vlfp
12791 Enable vertical low-pass filtering in the filter.
12792 Vertical low-pass filtering is required when creating an interlaced
12793 destination from a progressive source which contains high-frequency
12794 vertical detail. Filtering will reduce interlace 'twitter' and Moire
12795 patterning.
12796
12797 Vertical low-pass filtering can only be enabled for @option{mode}
12798 @var{interleave_top} and @var{interleave_bottom}.
12799
12800 @end table
12801 @end table
12802
12803 @section transpose
12804
12805 Transpose rows with columns in the input video and optionally flip it.
12806
12807 It accepts the following parameters:
12808
12809 @table @option
12810
12811 @item dir
12812 Specify the transposition direction.
12813
12814 Can assume the following values:
12815 @table @samp
12816 @item 0, 4, cclock_flip
12817 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
12818 @example
12819 L.R     L.l
12820 . . ->  . .
12821 l.r     R.r
12822 @end example
12823
12824 @item 1, 5, clock
12825 Rotate by 90 degrees clockwise, that is:
12826 @example
12827 L.R     l.L
12828 . . ->  . .
12829 l.r     r.R
12830 @end example
12831
12832 @item 2, 6, cclock
12833 Rotate by 90 degrees counterclockwise, that is:
12834 @example
12835 L.R     R.r
12836 . . ->  . .
12837 l.r     L.l
12838 @end example
12839
12840 @item 3, 7, clock_flip
12841 Rotate by 90 degrees clockwise and vertically flip, that is:
12842 @example
12843 L.R     r.R
12844 . . ->  . .
12845 l.r     l.L
12846 @end example
12847 @end table
12848
12849 For values between 4-7, the transposition is only done if the input
12850 video geometry is portrait and not landscape. These values are
12851 deprecated, the @code{passthrough} option should be used instead.
12852
12853 Numerical values are deprecated, and should be dropped in favor of
12854 symbolic constants.
12855
12856 @item passthrough
12857 Do not apply the transposition if the input geometry matches the one
12858 specified by the specified value. It accepts the following values:
12859 @table @samp
12860 @item none
12861 Always apply transposition.
12862 @item portrait
12863 Preserve portrait geometry (when @var{height} >= @var{width}).
12864 @item landscape
12865 Preserve landscape geometry (when @var{width} >= @var{height}).
12866 @end table
12867
12868 Default value is @code{none}.
12869 @end table
12870
12871 For example to rotate by 90 degrees clockwise and preserve portrait
12872 layout:
12873 @example
12874 transpose=dir=1:passthrough=portrait
12875 @end example
12876
12877 The command above can also be specified as:
12878 @example
12879 transpose=1:portrait
12880 @end example
12881
12882 @section trim
12883 Trim the input so that the output contains one continuous subpart of the input.
12884
12885 It accepts the following parameters:
12886 @table @option
12887 @item start
12888 Specify the time of the start of the kept section, i.e. the frame with the
12889 timestamp @var{start} will be the first frame in the output.
12890
12891 @item end
12892 Specify the time of the first frame that will be dropped, i.e. the frame
12893 immediately preceding the one with the timestamp @var{end} will be the last
12894 frame in the output.
12895
12896 @item start_pts
12897 This is the same as @var{start}, except this option sets the start timestamp
12898 in timebase units instead of seconds.
12899
12900 @item end_pts
12901 This is the same as @var{end}, except this option sets the end timestamp
12902 in timebase units instead of seconds.
12903
12904 @item duration
12905 The maximum duration of the output in seconds.
12906
12907 @item start_frame
12908 The number of the first frame that should be passed to the output.
12909
12910 @item end_frame
12911 The number of the first frame that should be dropped.
12912 @end table
12913
12914 @option{start}, @option{end}, and @option{duration} are expressed as time
12915 duration specifications; see
12916 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12917 for the accepted syntax.
12918
12919 Note that the first two sets of the start/end options and the @option{duration}
12920 option look at the frame timestamp, while the _frame variants simply count the
12921 frames that pass through the filter. Also note that this filter does not modify
12922 the timestamps. If you wish for the output timestamps to start at zero, insert a
12923 setpts filter after the trim filter.
12924
12925 If multiple start or end options are set, this filter tries to be greedy and
12926 keep all the frames that match at least one of the specified constraints. To keep
12927 only the part that matches all the constraints at once, chain multiple trim
12928 filters.
12929
12930 The defaults are such that all the input is kept. So it is possible to set e.g.
12931 just the end values to keep everything before the specified time.
12932
12933 Examples:
12934 @itemize
12935 @item
12936 Drop everything except the second minute of input:
12937 @example
12938 ffmpeg -i INPUT -vf trim=60:120
12939 @end example
12940
12941 @item
12942 Keep only the first second:
12943 @example
12944 ffmpeg -i INPUT -vf trim=duration=1
12945 @end example
12946
12947 @end itemize
12948
12949
12950 @anchor{unsharp}
12951 @section unsharp
12952
12953 Sharpen or blur the input video.
12954
12955 It accepts the following parameters:
12956
12957 @table @option
12958 @item luma_msize_x, lx
12959 Set the luma matrix horizontal size. It must be an odd integer between
12960 3 and 63. The default value is 5.
12961
12962 @item luma_msize_y, ly
12963 Set the luma matrix vertical size. It must be an odd integer between 3
12964 and 63. The default value is 5.
12965
12966 @item luma_amount, la
12967 Set the luma effect strength. It must be a floating point number, reasonable
12968 values lay between -1.5 and 1.5.
12969
12970 Negative values will blur the input video, while positive values will
12971 sharpen it, a value of zero will disable the effect.
12972
12973 Default value is 1.0.
12974
12975 @item chroma_msize_x, cx
12976 Set the chroma matrix horizontal size. It must be an odd integer
12977 between 3 and 63. The default value is 5.
12978
12979 @item chroma_msize_y, cy
12980 Set the chroma matrix vertical size. It must be an odd integer
12981 between 3 and 63. The default value is 5.
12982
12983 @item chroma_amount, ca
12984 Set the chroma effect strength. It must be a floating point number, reasonable
12985 values lay between -1.5 and 1.5.
12986
12987 Negative values will blur the input video, while positive values will
12988 sharpen it, a value of zero will disable the effect.
12989
12990 Default value is 0.0.
12991
12992 @item opencl
12993 If set to 1, specify using OpenCL capabilities, only available if
12994 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
12995
12996 @end table
12997
12998 All parameters are optional and default to the equivalent of the
12999 string '5:5:1.0:5:5:0.0'.
13000
13001 @subsection Examples
13002
13003 @itemize
13004 @item
13005 Apply strong luma sharpen effect:
13006 @example
13007 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13008 @end example
13009
13010 @item
13011 Apply a strong blur of both luma and chroma parameters:
13012 @example
13013 unsharp=7:7:-2:7:7:-2
13014 @end example
13015 @end itemize
13016
13017 @section uspp
13018
13019 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13020 the image at several (or - in the case of @option{quality} level @code{8} - all)
13021 shifts and average the results.
13022
13023 The way this differs from the behavior of spp is that uspp actually encodes &
13024 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13025 DCT similar to MJPEG.
13026
13027 The filter accepts the following options:
13028
13029 @table @option
13030 @item quality
13031 Set quality. This option defines the number of levels for averaging. It accepts
13032 an integer in the range 0-8. If set to @code{0}, the filter will have no
13033 effect. A value of @code{8} means the higher quality. For each increment of
13034 that value the speed drops by a factor of approximately 2.  Default value is
13035 @code{3}.
13036
13037 @item qp
13038 Force a constant quantization parameter. If not set, the filter will use the QP
13039 from the video stream (if available).
13040 @end table
13041
13042 @section vectorscope
13043
13044 Display 2 color component values in the two dimensional graph (which is called
13045 a vectorscope).
13046
13047 This filter accepts the following options:
13048
13049 @table @option
13050 @item mode, m
13051 Set vectorscope mode.
13052
13053 It accepts the following values:
13054 @table @samp
13055 @item gray
13056 Gray values are displayed on graph, higher brightness means more pixels have
13057 same component color value on location in graph. This is the default mode.
13058
13059 @item color
13060 Gray values are displayed on graph. Surrounding pixels values which are not
13061 present in video frame are drawn in gradient of 2 color components which are
13062 set by option @code{x} and @code{y}. The 3rd color component is static.
13063
13064 @item color2
13065 Actual color components values present in video frame are displayed on graph.
13066
13067 @item color3
13068 Similar as color2 but higher frequency of same values @code{x} and @code{y}
13069 on graph increases value of another color component, which is luminance by
13070 default values of @code{x} and @code{y}.
13071
13072 @item color4
13073 Actual colors present in video frame are displayed on graph. If two different
13074 colors map to same position on graph then color with higher value of component
13075 not present in graph is picked.
13076
13077 @item color5
13078 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
13079 component picked from radial gradient.
13080 @end table
13081
13082 @item x
13083 Set which color component will be represented on X-axis. Default is @code{1}.
13084
13085 @item y
13086 Set which color component will be represented on Y-axis. Default is @code{2}.
13087
13088 @item intensity, i
13089 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
13090 of color component which represents frequency of (X, Y) location in graph.
13091
13092 @item envelope, e
13093 @table @samp
13094 @item none
13095 No envelope, this is default.
13096
13097 @item instant
13098 Instant envelope, even darkest single pixel will be clearly highlighted.
13099
13100 @item peak
13101 Hold maximum and minimum values presented in graph over time. This way you
13102 can still spot out of range values without constantly looking at vectorscope.
13103
13104 @item peak+instant
13105 Peak and instant envelope combined together.
13106 @end table
13107
13108 @item graticule, g
13109 Set what kind of graticule to draw.
13110 @table @samp
13111 @item none
13112 @item green
13113 @item color
13114 @end table
13115
13116 @item opacity, o
13117 Set graticule opacity.
13118
13119 @item flags, f
13120 Set graticule flags.
13121
13122 @table @samp
13123 @item white
13124 Draw graticule for white point.
13125
13126 @item black
13127 Draw graticule for black point.
13128
13129 @item name
13130 Draw color points short names.
13131 @end table
13132
13133 @item bgopacity, b
13134 Set background opacity.
13135
13136 @item lthreshold, l
13137 Set low threshold for color component not represented on X or Y axis.
13138 Values lower than this value will be ignored. Default is 0.
13139 Note this value is multiplied with actual max possible value one pixel component
13140 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13141 is 0.1 * 255 = 25.
13142
13143 @item hthreshold, h
13144 Set high threshold for color component not represented on X or Y axis.
13145 Values higher than this value will be ignored. Default is 1.
13146 Note this value is multiplied with actual max possible value one pixel component
13147 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13148 is 0.9 * 255 = 230.
13149
13150 @item colorspace, c
13151 Set what kind of colorspace to use when drawing graticule.
13152 @table @samp
13153 @item auto
13154 @item 601
13155 @item 709
13156 @end table
13157 Default is auto.
13158 @end table
13159
13160 @anchor{vidstabdetect}
13161 @section vidstabdetect
13162
13163 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
13164 @ref{vidstabtransform} for pass 2.
13165
13166 This filter generates a file with relative translation and rotation
13167 transform information about subsequent frames, which is then used by
13168 the @ref{vidstabtransform} filter.
13169
13170 To enable compilation of this filter you need to configure FFmpeg with
13171 @code{--enable-libvidstab}.
13172
13173 This filter accepts the following options:
13174
13175 @table @option
13176 @item result
13177 Set the path to the file used to write the transforms information.
13178 Default value is @file{transforms.trf}.
13179
13180 @item shakiness
13181 Set how shaky the video is and how quick the camera is. It accepts an
13182 integer in the range 1-10, a value of 1 means little shakiness, a
13183 value of 10 means strong shakiness. Default value is 5.
13184
13185 @item accuracy
13186 Set the accuracy of the detection process. It must be a value in the
13187 range 1-15. A value of 1 means low accuracy, a value of 15 means high
13188 accuracy. Default value is 15.
13189
13190 @item stepsize
13191 Set stepsize of the search process. The region around minimum is
13192 scanned with 1 pixel resolution. Default value is 6.
13193
13194 @item mincontrast
13195 Set minimum contrast. Below this value a local measurement field is
13196 discarded. Must be a floating point value in the range 0-1. Default
13197 value is 0.3.
13198
13199 @item tripod
13200 Set reference frame number for tripod mode.
13201
13202 If enabled, the motion of the frames is compared to a reference frame
13203 in the filtered stream, identified by the specified number. The idea
13204 is to compensate all movements in a more-or-less static scene and keep
13205 the camera view absolutely still.
13206
13207 If set to 0, it is disabled. The frames are counted starting from 1.
13208
13209 @item show
13210 Show fields and transforms in the resulting frames. It accepts an
13211 integer in the range 0-2. Default value is 0, which disables any
13212 visualization.
13213 @end table
13214
13215 @subsection Examples
13216
13217 @itemize
13218 @item
13219 Use default values:
13220 @example
13221 vidstabdetect
13222 @end example
13223
13224 @item
13225 Analyze strongly shaky movie and put the results in file
13226 @file{mytransforms.trf}:
13227 @example
13228 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
13229 @end example
13230
13231 @item
13232 Visualize the result of internal transformations in the resulting
13233 video:
13234 @example
13235 vidstabdetect=show=1
13236 @end example
13237
13238 @item
13239 Analyze a video with medium shakiness using @command{ffmpeg}:
13240 @example
13241 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
13242 @end example
13243 @end itemize
13244
13245 @anchor{vidstabtransform}
13246 @section vidstabtransform
13247
13248 Video stabilization/deshaking: pass 2 of 2,
13249 see @ref{vidstabdetect} for pass 1.
13250
13251 Read a file with transform information for each frame and
13252 apply/compensate them. Together with the @ref{vidstabdetect}
13253 filter this can be used to deshake videos. See also
13254 @url{http://public.hronopik.de/vid.stab}. It is important to also use
13255 the @ref{unsharp} filter, see below.
13256
13257 To enable compilation of this filter you need to configure FFmpeg with
13258 @code{--enable-libvidstab}.
13259
13260 @subsection Options
13261
13262 @table @option
13263 @item input
13264 Set path to the file used to read the transforms. Default value is
13265 @file{transforms.trf}.
13266
13267 @item smoothing
13268 Set the number of frames (value*2 + 1) used for lowpass filtering the
13269 camera movements. Default value is 10.
13270
13271 For example a number of 10 means that 21 frames are used (10 in the
13272 past and 10 in the future) to smoothen the motion in the video. A
13273 larger value leads to a smoother video, but limits the acceleration of
13274 the camera (pan/tilt movements). 0 is a special case where a static
13275 camera is simulated.
13276
13277 @item optalgo
13278 Set the camera path optimization algorithm.
13279
13280 Accepted values are:
13281 @table @samp
13282 @item gauss
13283 gaussian kernel low-pass filter on camera motion (default)
13284 @item avg
13285 averaging on transformations
13286 @end table
13287
13288 @item maxshift
13289 Set maximal number of pixels to translate frames. Default value is -1,
13290 meaning no limit.
13291
13292 @item maxangle
13293 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
13294 value is -1, meaning no limit.
13295
13296 @item crop
13297 Specify how to deal with borders that may be visible due to movement
13298 compensation.
13299
13300 Available values are:
13301 @table @samp
13302 @item keep
13303 keep image information from previous frame (default)
13304 @item black
13305 fill the border black
13306 @end table
13307
13308 @item invert
13309 Invert transforms if set to 1. Default value is 0.
13310
13311 @item relative
13312 Consider transforms as relative to previous frame if set to 1,
13313 absolute if set to 0. Default value is 0.
13314
13315 @item zoom
13316 Set percentage to zoom. A positive value will result in a zoom-in
13317 effect, a negative value in a zoom-out effect. Default value is 0 (no
13318 zoom).
13319
13320 @item optzoom
13321 Set optimal zooming to avoid borders.
13322
13323 Accepted values are:
13324 @table @samp
13325 @item 0
13326 disabled
13327 @item 1
13328 optimal static zoom value is determined (only very strong movements
13329 will lead to visible borders) (default)
13330 @item 2
13331 optimal adaptive zoom value is determined (no borders will be
13332 visible), see @option{zoomspeed}
13333 @end table
13334
13335 Note that the value given at zoom is added to the one calculated here.
13336
13337 @item zoomspeed
13338 Set percent to zoom maximally each frame (enabled when
13339 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
13340 0.25.
13341
13342 @item interpol
13343 Specify type of interpolation.
13344
13345 Available values are:
13346 @table @samp
13347 @item no
13348 no interpolation
13349 @item linear
13350 linear only horizontal
13351 @item bilinear
13352 linear in both directions (default)
13353 @item bicubic
13354 cubic in both directions (slow)
13355 @end table
13356
13357 @item tripod
13358 Enable virtual tripod mode if set to 1, which is equivalent to
13359 @code{relative=0:smoothing=0}. Default value is 0.
13360
13361 Use also @code{tripod} option of @ref{vidstabdetect}.
13362
13363 @item debug
13364 Increase log verbosity if set to 1. Also the detected global motions
13365 are written to the temporary file @file{global_motions.trf}. Default
13366 value is 0.
13367 @end table
13368
13369 @subsection Examples
13370
13371 @itemize
13372 @item
13373 Use @command{ffmpeg} for a typical stabilization with default values:
13374 @example
13375 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
13376 @end example
13377
13378 Note the use of the @ref{unsharp} filter which is always recommended.
13379
13380 @item
13381 Zoom in a bit more and load transform data from a given file:
13382 @example
13383 vidstabtransform=zoom=5:input="mytransforms.trf"
13384 @end example
13385
13386 @item
13387 Smoothen the video even more:
13388 @example
13389 vidstabtransform=smoothing=30
13390 @end example
13391 @end itemize
13392
13393 @section vflip
13394
13395 Flip the input video vertically.
13396
13397 For example, to vertically flip a video with @command{ffmpeg}:
13398 @example
13399 ffmpeg -i in.avi -vf "vflip" out.avi
13400 @end example
13401
13402 @anchor{vignette}
13403 @section vignette
13404
13405 Make or reverse a natural vignetting effect.
13406
13407 The filter accepts the following options:
13408
13409 @table @option
13410 @item angle, a
13411 Set lens angle expression as a number of radians.
13412
13413 The value is clipped in the @code{[0,PI/2]} range.
13414
13415 Default value: @code{"PI/5"}
13416
13417 @item x0
13418 @item y0
13419 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
13420 by default.
13421
13422 @item mode
13423 Set forward/backward mode.
13424
13425 Available modes are:
13426 @table @samp
13427 @item forward
13428 The larger the distance from the central point, the darker the image becomes.
13429
13430 @item backward
13431 The larger the distance from the central point, the brighter the image becomes.
13432 This can be used to reverse a vignette effect, though there is no automatic
13433 detection to extract the lens @option{angle} and other settings (yet). It can
13434 also be used to create a burning effect.
13435 @end table
13436
13437 Default value is @samp{forward}.
13438
13439 @item eval
13440 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
13441
13442 It accepts the following values:
13443 @table @samp
13444 @item init
13445 Evaluate expressions only once during the filter initialization.
13446
13447 @item frame
13448 Evaluate expressions for each incoming frame. This is way slower than the
13449 @samp{init} mode since it requires all the scalers to be re-computed, but it
13450 allows advanced dynamic expressions.
13451 @end table
13452
13453 Default value is @samp{init}.
13454
13455 @item dither
13456 Set dithering to reduce the circular banding effects. Default is @code{1}
13457 (enabled).
13458
13459 @item aspect
13460 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
13461 Setting this value to the SAR of the input will make a rectangular vignetting
13462 following the dimensions of the video.
13463
13464 Default is @code{1/1}.
13465 @end table
13466
13467 @subsection Expressions
13468
13469 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
13470 following parameters.
13471
13472 @table @option
13473 @item w
13474 @item h
13475 input width and height
13476
13477 @item n
13478 the number of input frame, starting from 0
13479
13480 @item pts
13481 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
13482 @var{TB} units, NAN if undefined
13483
13484 @item r
13485 frame rate of the input video, NAN if the input frame rate is unknown
13486
13487 @item t
13488 the PTS (Presentation TimeStamp) of the filtered video frame,
13489 expressed in seconds, NAN if undefined
13490
13491 @item tb
13492 time base of the input video
13493 @end table
13494
13495
13496 @subsection Examples
13497
13498 @itemize
13499 @item
13500 Apply simple strong vignetting effect:
13501 @example
13502 vignette=PI/4
13503 @end example
13504
13505 @item
13506 Make a flickering vignetting:
13507 @example
13508 vignette='PI/4+random(1)*PI/50':eval=frame
13509 @end example
13510
13511 @end itemize
13512
13513 @section vstack
13514 Stack input videos vertically.
13515
13516 All streams must be of same pixel format and of same width.
13517
13518 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13519 to create same output.
13520
13521 The filter accept the following option:
13522
13523 @table @option
13524 @item inputs
13525 Set number of input streams. Default is 2.
13526
13527 @item shortest
13528 If set to 1, force the output to terminate when the shortest input
13529 terminates. Default value is 0.
13530 @end table
13531
13532 @section w3fdif
13533
13534 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
13535 Deinterlacing Filter").
13536
13537 Based on the process described by Martin Weston for BBC R&D, and
13538 implemented based on the de-interlace algorithm written by Jim
13539 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
13540 uses filter coefficients calculated by BBC R&D.
13541
13542 There are two sets of filter coefficients, so called "simple":
13543 and "complex". Which set of filter coefficients is used can
13544 be set by passing an optional parameter:
13545
13546 @table @option
13547 @item filter
13548 Set the interlacing filter coefficients. Accepts one of the following values:
13549
13550 @table @samp
13551 @item simple
13552 Simple filter coefficient set.
13553 @item complex
13554 More-complex filter coefficient set.
13555 @end table
13556 Default value is @samp{complex}.
13557
13558 @item deint
13559 Specify which frames to deinterlace. Accept one of the following values:
13560
13561 @table @samp
13562 @item all
13563 Deinterlace all frames,
13564 @item interlaced
13565 Only deinterlace frames marked as interlaced.
13566 @end table
13567
13568 Default value is @samp{all}.
13569 @end table
13570
13571 @section waveform
13572 Video waveform monitor.
13573
13574 The waveform monitor plots color component intensity. By default luminance
13575 only. Each column of the waveform corresponds to a column of pixels in the
13576 source video.
13577
13578 It accepts the following options:
13579
13580 @table @option
13581 @item mode, m
13582 Can be either @code{row}, or @code{column}. Default is @code{column}.
13583 In row mode, the graph on the left side represents color component value 0 and
13584 the right side represents value = 255. In column mode, the top side represents
13585 color component value = 0 and bottom side represents value = 255.
13586
13587 @item intensity, i
13588 Set intensity. Smaller values are useful to find out how many values of the same
13589 luminance are distributed across input rows/columns.
13590 Default value is @code{0.04}. Allowed range is [0, 1].
13591
13592 @item mirror, r
13593 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
13594 In mirrored mode, higher values will be represented on the left
13595 side for @code{row} mode and at the top for @code{column} mode. Default is
13596 @code{1} (mirrored).
13597
13598 @item display, d
13599 Set display mode.
13600 It accepts the following values:
13601 @table @samp
13602 @item overlay
13603 Presents information identical to that in the @code{parade}, except
13604 that the graphs representing color components are superimposed directly
13605 over one another.
13606
13607 This display mode makes it easier to spot relative differences or similarities
13608 in overlapping areas of the color components that are supposed to be identical,
13609 such as neutral whites, grays, or blacks.
13610
13611 @item stack
13612 Display separate graph for the color components side by side in
13613 @code{row} mode or one below the other in @code{column} mode.
13614
13615 @item parade
13616 Display separate graph for the color components side by side in
13617 @code{column} mode or one below the other in @code{row} mode.
13618
13619 Using this display mode makes it easy to spot color casts in the highlights
13620 and shadows of an image, by comparing the contours of the top and the bottom
13621 graphs of each waveform. Since whites, grays, and blacks are characterized
13622 by exactly equal amounts of red, green, and blue, neutral areas of the picture
13623 should display three waveforms of roughly equal width/height. If not, the
13624 correction is easy to perform by making level adjustments the three waveforms.
13625 @end table
13626 Default is @code{stack}.
13627
13628 @item components, c
13629 Set which color components to display. Default is 1, which means only luminance
13630 or red color component if input is in RGB colorspace. If is set for example to
13631 7 it will display all 3 (if) available color components.
13632
13633 @item envelope, e
13634 @table @samp
13635 @item none
13636 No envelope, this is default.
13637
13638 @item instant
13639 Instant envelope, minimum and maximum values presented in graph will be easily
13640 visible even with small @code{step} value.
13641
13642 @item peak
13643 Hold minimum and maximum values presented in graph across time. This way you
13644 can still spot out of range values without constantly looking at waveforms.
13645
13646 @item peak+instant
13647 Peak and instant envelope combined together.
13648 @end table
13649
13650 @item filter, f
13651 @table @samp
13652 @item lowpass
13653 No filtering, this is default.
13654
13655 @item flat
13656 Luma and chroma combined together.
13657
13658 @item aflat
13659 Similar as above, but shows difference between blue and red chroma.
13660
13661 @item chroma
13662 Displays only chroma.
13663
13664 @item color
13665 Displays actual color value on waveform.
13666
13667 @item acolor
13668 Similar as above, but with luma showing frequency of chroma values.
13669 @end table
13670
13671 @item graticule, g
13672 Set which graticule to display.
13673
13674 @table @samp
13675 @item none
13676 Do not display graticule.
13677
13678 @item green
13679 Display green graticule showing legal broadcast ranges.
13680 @end table
13681
13682 @item opacity, o
13683 Set graticule opacity.
13684
13685 @item flags, fl
13686 Set graticule flags.
13687
13688 @table @samp
13689 @item numbers
13690 Draw numbers above lines. By default enabled.
13691
13692 @item dots
13693 Draw dots instead of lines.
13694 @end table
13695
13696 @item scale, s
13697 Set scale used for displaying graticule.
13698
13699 @table @samp
13700 @item digital
13701 @item millivolts
13702 @item ire
13703 @end table
13704 Default is digital.
13705 @end table
13706
13707 @section xbr
13708 Apply the xBR high-quality magnification filter which is designed for pixel
13709 art. It follows a set of edge-detection rules, see
13710 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
13711
13712 It accepts the following option:
13713
13714 @table @option
13715 @item n
13716 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
13717 @code{3xBR} and @code{4} for @code{4xBR}.
13718 Default is @code{3}.
13719 @end table
13720
13721 @anchor{yadif}
13722 @section yadif
13723
13724 Deinterlace the input video ("yadif" means "yet another deinterlacing
13725 filter").
13726
13727 It accepts the following parameters:
13728
13729
13730 @table @option
13731
13732 @item mode
13733 The interlacing mode to adopt. It accepts one of the following values:
13734
13735 @table @option
13736 @item 0, send_frame
13737 Output one frame for each frame.
13738 @item 1, send_field
13739 Output one frame for each field.
13740 @item 2, send_frame_nospatial
13741 Like @code{send_frame}, but it skips the spatial interlacing check.
13742 @item 3, send_field_nospatial
13743 Like @code{send_field}, but it skips the spatial interlacing check.
13744 @end table
13745
13746 The default value is @code{send_frame}.
13747
13748 @item parity
13749 The picture field parity assumed for the input interlaced video. It accepts one
13750 of the following values:
13751
13752 @table @option
13753 @item 0, tff
13754 Assume the top field is first.
13755 @item 1, bff
13756 Assume the bottom field is first.
13757 @item -1, auto
13758 Enable automatic detection of field parity.
13759 @end table
13760
13761 The default value is @code{auto}.
13762 If the interlacing is unknown or the decoder does not export this information,
13763 top field first will be assumed.
13764
13765 @item deint
13766 Specify which frames to deinterlace. Accept one of the following
13767 values:
13768
13769 @table @option
13770 @item 0, all
13771 Deinterlace all frames.
13772 @item 1, interlaced
13773 Only deinterlace frames marked as interlaced.
13774 @end table
13775
13776 The default value is @code{all}.
13777 @end table
13778
13779 @section zoompan
13780
13781 Apply Zoom & Pan effect.
13782
13783 This filter accepts the following options:
13784
13785 @table @option
13786 @item zoom, z
13787 Set the zoom expression. Default is 1.
13788
13789 @item x
13790 @item y
13791 Set the x and y expression. Default is 0.
13792
13793 @item d
13794 Set the duration expression in number of frames.
13795 This sets for how many number of frames effect will last for
13796 single input image.
13797
13798 @item s
13799 Set the output image size, default is 'hd720'.
13800
13801 @item fps
13802 Set the output frame rate, default is '25'.
13803 @end table
13804
13805 Each expression can contain the following constants:
13806
13807 @table @option
13808 @item in_w, iw
13809 Input width.
13810
13811 @item in_h, ih
13812 Input height.
13813
13814 @item out_w, ow
13815 Output width.
13816
13817 @item out_h, oh
13818 Output height.
13819
13820 @item in
13821 Input frame count.
13822
13823 @item on
13824 Output frame count.
13825
13826 @item x
13827 @item y
13828 Last calculated 'x' and 'y' position from 'x' and 'y' expression
13829 for current input frame.
13830
13831 @item px
13832 @item py
13833 'x' and 'y' of last output frame of previous input frame or 0 when there was
13834 not yet such frame (first input frame).
13835
13836 @item zoom
13837 Last calculated zoom from 'z' expression for current input frame.
13838
13839 @item pzoom
13840 Last calculated zoom of last output frame of previous input frame.
13841
13842 @item duration
13843 Number of output frames for current input frame. Calculated from 'd' expression
13844 for each input frame.
13845
13846 @item pduration
13847 number of output frames created for previous input frame
13848
13849 @item a
13850 Rational number: input width / input height
13851
13852 @item sar
13853 sample aspect ratio
13854
13855 @item dar
13856 display aspect ratio
13857
13858 @end table
13859
13860 @subsection Examples
13861
13862 @itemize
13863 @item
13864 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
13865 @example
13866 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
13867 @end example
13868
13869 @item
13870 Zoom-in up to 1.5 and pan always at center of picture:
13871 @example
13872 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
13873 @end example
13874 @end itemize
13875
13876 @section zscale
13877 Scale (resize) the input video, using the z.lib library:
13878 https://github.com/sekrit-twc/zimg.
13879
13880 The zscale filter forces the output display aspect ratio to be the same
13881 as the input, by changing the output sample aspect ratio.
13882
13883 If the input image format is different from the format requested by
13884 the next filter, the zscale filter will convert the input to the
13885 requested format.
13886
13887 @subsection Options
13888 The filter accepts the following options.
13889
13890 @table @option
13891 @item width, w
13892 @item height, h
13893 Set the output video dimension expression. Default value is the input
13894 dimension.
13895
13896 If the @var{width} or @var{w} is 0, the input width is used for the output.
13897 If the @var{height} or @var{h} is 0, the input height is used for the output.
13898
13899 If one of the values is -1, the zscale filter will use a value that
13900 maintains the aspect ratio of the input image, calculated from the
13901 other specified dimension. If both of them are -1, the input size is
13902 used
13903
13904 If one of the values is -n with n > 1, the zscale filter will also use a value
13905 that maintains the aspect ratio of the input image, calculated from the other
13906 specified dimension. After that it will, however, make sure that the calculated
13907 dimension is divisible by n and adjust the value if necessary.
13908
13909 See below for the list of accepted constants for use in the dimension
13910 expression.
13911
13912 @item size, s
13913 Set the video size. For the syntax of this option, check the
13914 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13915
13916 @item dither, d
13917 Set the dither type.
13918
13919 Possible values are:
13920 @table @var
13921 @item none
13922 @item ordered
13923 @item random
13924 @item error_diffusion
13925 @end table
13926
13927 Default is none.
13928
13929 @item filter, f
13930 Set the resize filter type.
13931
13932 Possible values are:
13933 @table @var
13934 @item point
13935 @item bilinear
13936 @item bicubic
13937 @item spline16
13938 @item spline36
13939 @item lanczos
13940 @end table
13941
13942 Default is bilinear.
13943
13944 @item range, r
13945 Set the color range.
13946
13947 Possible values are:
13948 @table @var
13949 @item input
13950 @item limited
13951 @item full
13952 @end table
13953
13954 Default is same as input.
13955
13956 @item primaries, p
13957 Set the color primaries.
13958
13959 Possible values are:
13960 @table @var
13961 @item input
13962 @item 709
13963 @item unspecified
13964 @item 170m
13965 @item 240m
13966 @item 2020
13967 @end table
13968
13969 Default is same as input.
13970
13971 @item transfer, t
13972 Set the transfer characteristics.
13973
13974 Possible values are:
13975 @table @var
13976 @item input
13977 @item 709
13978 @item unspecified
13979 @item 601
13980 @item linear
13981 @item 2020_10
13982 @item 2020_12
13983 @end table
13984
13985 Default is same as input.
13986
13987 @item matrix, m
13988 Set the colorspace matrix.
13989
13990 Possible value are:
13991 @table @var
13992 @item input
13993 @item 709
13994 @item unspecified
13995 @item 470bg
13996 @item 170m
13997 @item 2020_ncl
13998 @item 2020_cl
13999 @end table
14000
14001 Default is same as input.
14002
14003 @item rangein, rin
14004 Set the input color range.
14005
14006 Possible values are:
14007 @table @var
14008 @item input
14009 @item limited
14010 @item full
14011 @end table
14012
14013 Default is same as input.
14014
14015 @item primariesin, pin
14016 Set the input color primaries.
14017
14018 Possible values are:
14019 @table @var
14020 @item input
14021 @item 709
14022 @item unspecified
14023 @item 170m
14024 @item 240m
14025 @item 2020
14026 @end table
14027
14028 Default is same as input.
14029
14030 @item transferin, tin
14031 Set the input transfer characteristics.
14032
14033 Possible values are:
14034 @table @var
14035 @item input
14036 @item 709
14037 @item unspecified
14038 @item 601
14039 @item linear
14040 @item 2020_10
14041 @item 2020_12
14042 @end table
14043
14044 Default is same as input.
14045
14046 @item matrixin, min
14047 Set the input colorspace matrix.
14048
14049 Possible value are:
14050 @table @var
14051 @item input
14052 @item 709
14053 @item unspecified
14054 @item 470bg
14055 @item 170m
14056 @item 2020_ncl
14057 @item 2020_cl
14058 @end table
14059 @end table
14060
14061 The values of the @option{w} and @option{h} options are expressions
14062 containing the following constants:
14063
14064 @table @var
14065 @item in_w
14066 @item in_h
14067 The input width and height
14068
14069 @item iw
14070 @item ih
14071 These are the same as @var{in_w} and @var{in_h}.
14072
14073 @item out_w
14074 @item out_h
14075 The output (scaled) width and height
14076
14077 @item ow
14078 @item oh
14079 These are the same as @var{out_w} and @var{out_h}
14080
14081 @item a
14082 The same as @var{iw} / @var{ih}
14083
14084 @item sar
14085 input sample aspect ratio
14086
14087 @item dar
14088 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14089
14090 @item hsub
14091 @item vsub
14092 horizontal and vertical input chroma subsample values. For example for the
14093 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14094
14095 @item ohsub
14096 @item ovsub
14097 horizontal and vertical output chroma subsample values. For example for the
14098 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14099 @end table
14100
14101 @table @option
14102 @end table
14103
14104 @c man end VIDEO FILTERS
14105
14106 @chapter Video Sources
14107 @c man begin VIDEO SOURCES
14108
14109 Below is a description of the currently available video sources.
14110
14111 @section buffer
14112
14113 Buffer video frames, and make them available to the filter chain.
14114
14115 This source is mainly intended for a programmatic use, in particular
14116 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
14117
14118 It accepts the following parameters:
14119
14120 @table @option
14121
14122 @item video_size
14123 Specify the size (width and height) of the buffered video frames. For the
14124 syntax of this option, check the
14125 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14126
14127 @item width
14128 The input video width.
14129
14130 @item height
14131 The input video height.
14132
14133 @item pix_fmt
14134 A string representing the pixel format of the buffered video frames.
14135 It may be a number corresponding to a pixel format, or a pixel format
14136 name.
14137
14138 @item time_base
14139 Specify the timebase assumed by the timestamps of the buffered frames.
14140
14141 @item frame_rate
14142 Specify the frame rate expected for the video stream.
14143
14144 @item pixel_aspect, sar
14145 The sample (pixel) aspect ratio of the input video.
14146
14147 @item sws_param
14148 Specify the optional parameters to be used for the scale filter which
14149 is automatically inserted when an input change is detected in the
14150 input size or format.
14151
14152 @item hw_frames_ctx
14153 When using a hardware pixel format, this should be a reference to an
14154 AVHWFramesContext describing input frames.
14155 @end table
14156
14157 For example:
14158 @example
14159 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
14160 @end example
14161
14162 will instruct the source to accept video frames with size 320x240 and
14163 with format "yuv410p", assuming 1/24 as the timestamps timebase and
14164 square pixels (1:1 sample aspect ratio).
14165 Since the pixel format with name "yuv410p" corresponds to the number 6
14166 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
14167 this example corresponds to:
14168 @example
14169 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
14170 @end example
14171
14172 Alternatively, the options can be specified as a flat string, but this
14173 syntax is deprecated:
14174
14175 @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}]
14176
14177 @section cellauto
14178
14179 Create a pattern generated by an elementary cellular automaton.
14180
14181 The initial state of the cellular automaton can be defined through the
14182 @option{filename}, and @option{pattern} options. If such options are
14183 not specified an initial state is created randomly.
14184
14185 At each new frame a new row in the video is filled with the result of
14186 the cellular automaton next generation. The behavior when the whole
14187 frame is filled is defined by the @option{scroll} option.
14188
14189 This source accepts the following options:
14190
14191 @table @option
14192 @item filename, f
14193 Read the initial cellular automaton state, i.e. the starting row, from
14194 the specified file.
14195 In the file, each non-whitespace character is considered an alive
14196 cell, a newline will terminate the row, and further characters in the
14197 file will be ignored.
14198
14199 @item pattern, p
14200 Read the initial cellular automaton state, i.e. the starting row, from
14201 the specified string.
14202
14203 Each non-whitespace character in the string is considered an alive
14204 cell, a newline will terminate the row, and further characters in the
14205 string will be ignored.
14206
14207 @item rate, r
14208 Set the video rate, that is the number of frames generated per second.
14209 Default is 25.
14210
14211 @item random_fill_ratio, ratio
14212 Set the random fill ratio for the initial cellular automaton row. It
14213 is a floating point number value ranging from 0 to 1, defaults to
14214 1/PHI.
14215
14216 This option is ignored when a file or a pattern is specified.
14217
14218 @item random_seed, seed
14219 Set the seed for filling randomly the initial row, must be an integer
14220 included between 0 and UINT32_MAX. If not specified, or if explicitly
14221 set to -1, the filter will try to use a good random seed on a best
14222 effort basis.
14223
14224 @item rule
14225 Set the cellular automaton rule, it is a number ranging from 0 to 255.
14226 Default value is 110.
14227
14228 @item size, s
14229 Set the size of the output video. For the syntax of this option, check the
14230 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14231
14232 If @option{filename} or @option{pattern} is specified, the size is set
14233 by default to the width of the specified initial state row, and the
14234 height is set to @var{width} * PHI.
14235
14236 If @option{size} is set, it must contain the width of the specified
14237 pattern string, and the specified pattern will be centered in the
14238 larger row.
14239
14240 If a filename or a pattern string is not specified, the size value
14241 defaults to "320x518" (used for a randomly generated initial state).
14242
14243 @item scroll
14244 If set to 1, scroll the output upward when all the rows in the output
14245 have been already filled. If set to 0, the new generated row will be
14246 written over the top row just after the bottom row is filled.
14247 Defaults to 1.
14248
14249 @item start_full, full
14250 If set to 1, completely fill the output with generated rows before
14251 outputting the first frame.
14252 This is the default behavior, for disabling set the value to 0.
14253
14254 @item stitch
14255 If set to 1, stitch the left and right row edges together.
14256 This is the default behavior, for disabling set the value to 0.
14257 @end table
14258
14259 @subsection Examples
14260
14261 @itemize
14262 @item
14263 Read the initial state from @file{pattern}, and specify an output of
14264 size 200x400.
14265 @example
14266 cellauto=f=pattern:s=200x400
14267 @end example
14268
14269 @item
14270 Generate a random initial row with a width of 200 cells, with a fill
14271 ratio of 2/3:
14272 @example
14273 cellauto=ratio=2/3:s=200x200
14274 @end example
14275
14276 @item
14277 Create a pattern generated by rule 18 starting by a single alive cell
14278 centered on an initial row with width 100:
14279 @example
14280 cellauto=p=@@:s=100x400:full=0:rule=18
14281 @end example
14282
14283 @item
14284 Specify a more elaborated initial pattern:
14285 @example
14286 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
14287 @end example
14288
14289 @end itemize
14290
14291 @anchor{coreimagesrc}
14292 @section coreimagesrc
14293 Video source generated on GPU using Apple's CoreImage API on OSX.
14294
14295 This video source is a specialized version of the @ref{coreimage} video filter.
14296 Use a core image generator at the beginning of the applied filterchain to
14297 generate the content.
14298
14299 The coreimagesrc video source accepts the following options:
14300 @table @option
14301 @item list_generators
14302 List all available generators along with all their respective options as well as
14303 possible minimum and maximum values along with the default values.
14304 @example
14305 list_generators=true
14306 @end example
14307
14308 @item size, s
14309 Specify the size of the sourced video. For the syntax of this option, check the
14310 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14311 The default value is @code{320x240}.
14312
14313 @item rate, r
14314 Specify the frame rate of the sourced video, as the number of frames
14315 generated per second. It has to be a string in the format
14316 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14317 number or a valid video frame rate abbreviation. The default value is
14318 "25".
14319
14320 @item sar
14321 Set the sample aspect ratio of the sourced video.
14322
14323 @item duration, d
14324 Set the duration of the sourced video. See
14325 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14326 for the accepted syntax.
14327
14328 If not specified, or the expressed duration is negative, the video is
14329 supposed to be generated forever.
14330 @end table
14331
14332 Additionally, all options of the @ref{coreimage} video filter are accepted.
14333 A complete filterchain can be used for further processing of the
14334 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
14335 and examples for details.
14336
14337 @subsection Examples
14338
14339 @itemize
14340
14341 @item
14342 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
14343 given as complete and escaped command-line for Apple's standard bash shell:
14344 @example
14345 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
14346 @end example
14347 This example is equivalent to the QRCode example of @ref{coreimage} without the
14348 need for a nullsrc video source.
14349 @end itemize
14350
14351
14352 @section mandelbrot
14353
14354 Generate a Mandelbrot set fractal, and progressively zoom towards the
14355 point specified with @var{start_x} and @var{start_y}.
14356
14357 This source accepts the following options:
14358
14359 @table @option
14360
14361 @item end_pts
14362 Set the terminal pts value. Default value is 400.
14363
14364 @item end_scale
14365 Set the terminal scale value.
14366 Must be a floating point value. Default value is 0.3.
14367
14368 @item inner
14369 Set the inner coloring mode, that is the algorithm used to draw the
14370 Mandelbrot fractal internal region.
14371
14372 It shall assume one of the following values:
14373 @table @option
14374 @item black
14375 Set black mode.
14376 @item convergence
14377 Show time until convergence.
14378 @item mincol
14379 Set color based on point closest to the origin of the iterations.
14380 @item period
14381 Set period mode.
14382 @end table
14383
14384 Default value is @var{mincol}.
14385
14386 @item bailout
14387 Set the bailout value. Default value is 10.0.
14388
14389 @item maxiter
14390 Set the maximum of iterations performed by the rendering
14391 algorithm. Default value is 7189.
14392
14393 @item outer
14394 Set outer coloring mode.
14395 It shall assume one of following values:
14396 @table @option
14397 @item iteration_count
14398 Set iteration cound mode.
14399 @item normalized_iteration_count
14400 set normalized iteration count mode.
14401 @end table
14402 Default value is @var{normalized_iteration_count}.
14403
14404 @item rate, r
14405 Set frame rate, expressed as number of frames per second. Default
14406 value is "25".
14407
14408 @item size, s
14409 Set frame size. For the syntax of this option, check the "Video
14410 size" section in the ffmpeg-utils manual. Default value is "640x480".
14411
14412 @item start_scale
14413 Set the initial scale value. Default value is 3.0.
14414
14415 @item start_x
14416 Set the initial x position. Must be a floating point value between
14417 -100 and 100. Default value is -0.743643887037158704752191506114774.
14418
14419 @item start_y
14420 Set the initial y position. Must be a floating point value between
14421 -100 and 100. Default value is -0.131825904205311970493132056385139.
14422 @end table
14423
14424 @section mptestsrc
14425
14426 Generate various test patterns, as generated by the MPlayer test filter.
14427
14428 The size of the generated video is fixed, and is 256x256.
14429 This source is useful in particular for testing encoding features.
14430
14431 This source accepts the following options:
14432
14433 @table @option
14434
14435 @item rate, r
14436 Specify the frame rate of the sourced video, as the number of frames
14437 generated per second. It has to be a string in the format
14438 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14439 number or a valid video frame rate abbreviation. The default value is
14440 "25".
14441
14442 @item duration, d
14443 Set the duration of the sourced video. See
14444 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14445 for the accepted syntax.
14446
14447 If not specified, or the expressed duration is negative, the video is
14448 supposed to be generated forever.
14449
14450 @item test, t
14451
14452 Set the number or the name of the test to perform. Supported tests are:
14453 @table @option
14454 @item dc_luma
14455 @item dc_chroma
14456 @item freq_luma
14457 @item freq_chroma
14458 @item amp_luma
14459 @item amp_chroma
14460 @item cbp
14461 @item mv
14462 @item ring1
14463 @item ring2
14464 @item all
14465
14466 @end table
14467
14468 Default value is "all", which will cycle through the list of all tests.
14469 @end table
14470
14471 Some examples:
14472 @example
14473 mptestsrc=t=dc_luma
14474 @end example
14475
14476 will generate a "dc_luma" test pattern.
14477
14478 @section frei0r_src
14479
14480 Provide a frei0r source.
14481
14482 To enable compilation of this filter you need to install the frei0r
14483 header and configure FFmpeg with @code{--enable-frei0r}.
14484
14485 This source accepts the following parameters:
14486
14487 @table @option
14488
14489 @item size
14490 The size of the video to generate. For the syntax of this option, check the
14491 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14492
14493 @item framerate
14494 The framerate of the generated video. It may be a string of the form
14495 @var{num}/@var{den} or a frame rate abbreviation.
14496
14497 @item filter_name
14498 The name to the frei0r source to load. For more information regarding frei0r and
14499 how to set the parameters, read the @ref{frei0r} section in the video filters
14500 documentation.
14501
14502 @item filter_params
14503 A '|'-separated list of parameters to pass to the frei0r source.
14504
14505 @end table
14506
14507 For example, to generate a frei0r partik0l source with size 200x200
14508 and frame rate 10 which is overlaid on the overlay filter main input:
14509 @example
14510 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
14511 @end example
14512
14513 @section life
14514
14515 Generate a life pattern.
14516
14517 This source is based on a generalization of John Conway's life game.
14518
14519 The sourced input represents a life grid, each pixel represents a cell
14520 which can be in one of two possible states, alive or dead. Every cell
14521 interacts with its eight neighbours, which are the cells that are
14522 horizontally, vertically, or diagonally adjacent.
14523
14524 At each interaction the grid evolves according to the adopted rule,
14525 which specifies the number of neighbor alive cells which will make a
14526 cell stay alive or born. The @option{rule} option allows one to specify
14527 the rule to adopt.
14528
14529 This source accepts the following options:
14530
14531 @table @option
14532 @item filename, f
14533 Set the file from which to read the initial grid state. In the file,
14534 each non-whitespace character is considered an alive cell, and newline
14535 is used to delimit the end of each row.
14536
14537 If this option is not specified, the initial grid is generated
14538 randomly.
14539
14540 @item rate, r
14541 Set the video rate, that is the number of frames generated per second.
14542 Default is 25.
14543
14544 @item random_fill_ratio, ratio
14545 Set the random fill ratio for the initial random grid. It is a
14546 floating point number value ranging from 0 to 1, defaults to 1/PHI.
14547 It is ignored when a file is specified.
14548
14549 @item random_seed, seed
14550 Set the seed for filling the initial random grid, must be an integer
14551 included between 0 and UINT32_MAX. If not specified, or if explicitly
14552 set to -1, the filter will try to use a good random seed on a best
14553 effort basis.
14554
14555 @item rule
14556 Set the life rule.
14557
14558 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
14559 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
14560 @var{NS} specifies the number of alive neighbor cells which make a
14561 live cell stay alive, and @var{NB} the number of alive neighbor cells
14562 which make a dead cell to become alive (i.e. to "born").
14563 "s" and "b" can be used in place of "S" and "B", respectively.
14564
14565 Alternatively a rule can be specified by an 18-bits integer. The 9
14566 high order bits are used to encode the next cell state if it is alive
14567 for each number of neighbor alive cells, the low order bits specify
14568 the rule for "borning" new cells. Higher order bits encode for an
14569 higher number of neighbor cells.
14570 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
14571 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
14572
14573 Default value is "S23/B3", which is the original Conway's game of life
14574 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
14575 cells, and will born a new cell if there are three alive cells around
14576 a dead cell.
14577
14578 @item size, s
14579 Set the size of the output video. For the syntax of this option, check the
14580 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14581
14582 If @option{filename} is specified, the size is set by default to the
14583 same size of the input file. If @option{size} is set, it must contain
14584 the size specified in the input file, and the initial grid defined in
14585 that file is centered in the larger resulting area.
14586
14587 If a filename is not specified, the size value defaults to "320x240"
14588 (used for a randomly generated initial grid).
14589
14590 @item stitch
14591 If set to 1, stitch the left and right grid edges together, and the
14592 top and bottom edges also. Defaults to 1.
14593
14594 @item mold
14595 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
14596 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
14597 value from 0 to 255.
14598
14599 @item life_color
14600 Set the color of living (or new born) cells.
14601
14602 @item death_color
14603 Set the color of dead cells. If @option{mold} is set, this is the first color
14604 used to represent a dead cell.
14605
14606 @item mold_color
14607 Set mold color, for definitely dead and moldy cells.
14608
14609 For the syntax of these 3 color options, check the "Color" section in the
14610 ffmpeg-utils manual.
14611 @end table
14612
14613 @subsection Examples
14614
14615 @itemize
14616 @item
14617 Read a grid from @file{pattern}, and center it on a grid of size
14618 300x300 pixels:
14619 @example
14620 life=f=pattern:s=300x300
14621 @end example
14622
14623 @item
14624 Generate a random grid of size 200x200, with a fill ratio of 2/3:
14625 @example
14626 life=ratio=2/3:s=200x200
14627 @end example
14628
14629 @item
14630 Specify a custom rule for evolving a randomly generated grid:
14631 @example
14632 life=rule=S14/B34
14633 @end example
14634
14635 @item
14636 Full example with slow death effect (mold) using @command{ffplay}:
14637 @example
14638 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
14639 @end example
14640 @end itemize
14641
14642 @anchor{allrgb}
14643 @anchor{allyuv}
14644 @anchor{color}
14645 @anchor{haldclutsrc}
14646 @anchor{nullsrc}
14647 @anchor{rgbtestsrc}
14648 @anchor{smptebars}
14649 @anchor{smptehdbars}
14650 @anchor{testsrc}
14651 @anchor{testsrc2}
14652 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2
14653
14654 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
14655
14656 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
14657
14658 The @code{color} source provides an uniformly colored input.
14659
14660 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
14661 @ref{haldclut} filter.
14662
14663 The @code{nullsrc} source returns unprocessed video frames. It is
14664 mainly useful to be employed in analysis / debugging tools, or as the
14665 source for filters which ignore the input data.
14666
14667 The @code{rgbtestsrc} source generates an RGB test pattern useful for
14668 detecting RGB vs BGR issues. You should see a red, green and blue
14669 stripe from top to bottom.
14670
14671 The @code{smptebars} source generates a color bars pattern, based on
14672 the SMPTE Engineering Guideline EG 1-1990.
14673
14674 The @code{smptehdbars} source generates a color bars pattern, based on
14675 the SMPTE RP 219-2002.
14676
14677 The @code{testsrc} source generates a test video pattern, showing a
14678 color pattern, a scrolling gradient and a timestamp. This is mainly
14679 intended for testing purposes.
14680
14681 The @code{testsrc2} source is similar to testsrc, but supports more
14682 pixel formats instead of just @code{rgb24}. This allows using it as an
14683 input for other tests without requiring a format conversion.
14684
14685 The sources accept the following parameters:
14686
14687 @table @option
14688
14689 @item color, c
14690 Specify the color of the source, only available in the @code{color}
14691 source. For the syntax of this option, check the "Color" section in the
14692 ffmpeg-utils manual.
14693
14694 @item level
14695 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
14696 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
14697 pixels to be used as identity matrix for 3D lookup tables. Each component is
14698 coded on a @code{1/(N*N)} scale.
14699
14700 @item size, s
14701 Specify the size of the sourced video. For the syntax of this option, check the
14702 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14703 The default value is @code{320x240}.
14704
14705 This option is not available with the @code{haldclutsrc} filter.
14706
14707 @item rate, r
14708 Specify the frame rate of the sourced video, as the number of frames
14709 generated per second. It has to be a string in the format
14710 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14711 number or a valid video frame rate abbreviation. The default value is
14712 "25".
14713
14714 @item sar
14715 Set the sample aspect ratio of the sourced video.
14716
14717 @item duration, d
14718 Set the duration of the sourced video. See
14719 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14720 for the accepted syntax.
14721
14722 If not specified, or the expressed duration is negative, the video is
14723 supposed to be generated forever.
14724
14725 @item decimals, n
14726 Set the number of decimals to show in the timestamp, only available in the
14727 @code{testsrc} source.
14728
14729 The displayed timestamp value will correspond to the original
14730 timestamp value multiplied by the power of 10 of the specified
14731 value. Default value is 0.
14732 @end table
14733
14734 For example the following:
14735 @example
14736 testsrc=duration=5.3:size=qcif:rate=10
14737 @end example
14738
14739 will generate a video with a duration of 5.3 seconds, with size
14740 176x144 and a frame rate of 10 frames per second.
14741
14742 The following graph description will generate a red source
14743 with an opacity of 0.2, with size "qcif" and a frame rate of 10
14744 frames per second.
14745 @example
14746 color=c=red@@0.2:s=qcif:r=10
14747 @end example
14748
14749 If the input content is to be ignored, @code{nullsrc} can be used. The
14750 following command generates noise in the luminance plane by employing
14751 the @code{geq} filter:
14752 @example
14753 nullsrc=s=256x256, geq=random(1)*255:128:128
14754 @end example
14755
14756 @subsection Commands
14757
14758 The @code{color} source supports the following commands:
14759
14760 @table @option
14761 @item c, color
14762 Set the color of the created image. Accepts the same syntax of the
14763 corresponding @option{color} option.
14764 @end table
14765
14766 @c man end VIDEO SOURCES
14767
14768 @chapter Video Sinks
14769 @c man begin VIDEO SINKS
14770
14771 Below is a description of the currently available video sinks.
14772
14773 @section buffersink
14774
14775 Buffer video frames, and make them available to the end of the filter
14776 graph.
14777
14778 This sink is mainly intended for programmatic use, in particular
14779 through the interface defined in @file{libavfilter/buffersink.h}
14780 or the options system.
14781
14782 It accepts a pointer to an AVBufferSinkContext structure, which
14783 defines the incoming buffers' formats, to be passed as the opaque
14784 parameter to @code{avfilter_init_filter} for initialization.
14785
14786 @section nullsink
14787
14788 Null video sink: do absolutely nothing with the input video. It is
14789 mainly useful as a template and for use in analysis / debugging
14790 tools.
14791
14792 @c man end VIDEO SINKS
14793
14794 @chapter Multimedia Filters
14795 @c man begin MULTIMEDIA FILTERS
14796
14797 Below is a description of the currently available multimedia filters.
14798
14799 @section ahistogram
14800
14801 Convert input audio to a video output, displaying the volume histogram.
14802
14803 The filter accepts the following options:
14804
14805 @table @option
14806 @item dmode
14807 Specify how histogram is calculated.
14808
14809 It accepts the following values:
14810 @table @samp
14811 @item single
14812 Use single histogram for all channels.
14813 @item separate
14814 Use separate histogram for each channel.
14815 @end table
14816 Default is @code{single}.
14817
14818 @item rate, r
14819 Set frame rate, expressed as number of frames per second. Default
14820 value is "25".
14821
14822 @item size, s
14823 Specify the video size for the output. For the syntax of this option, check the
14824 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14825 Default value is @code{hd720}.
14826
14827 @item scale
14828 Set display scale.
14829
14830 It accepts the following values:
14831 @table @samp
14832 @item log
14833 logarithmic
14834 @item sqrt
14835 square root
14836 @item cbrt
14837 cubic root
14838 @item lin
14839 linear
14840 @item rlog
14841 reverse logarithmic
14842 @end table
14843 Default is @code{log}.
14844
14845 @item ascale
14846 Set amplitude scale.
14847
14848 It accepts the following values:
14849 @table @samp
14850 @item log
14851 logarithmic
14852 @item lin
14853 linear
14854 @end table
14855 Default is @code{log}.
14856
14857 @item acount
14858 Set how much frames to accumulate in histogram.
14859 Defauls is 1. Setting this to -1 accumulates all frames.
14860
14861 @item rheight
14862 Set histogram ratio of window height.
14863
14864 @item slide
14865 Set sonogram sliding.
14866
14867 It accepts the following values:
14868 @table @samp
14869 @item replace
14870 replace old rows with new ones.
14871 @item scroll
14872 scroll from top to bottom.
14873 @end table
14874 Default is @code{replace}.
14875 @end table
14876
14877 @section aphasemeter
14878
14879 Convert input audio to a video output, displaying the audio phase.
14880
14881 The filter accepts the following options:
14882
14883 @table @option
14884 @item rate, r
14885 Set the output frame rate. Default value is @code{25}.
14886
14887 @item size, s
14888 Set the video size for the output. For the syntax of this option, check the
14889 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14890 Default value is @code{800x400}.
14891
14892 @item rc
14893 @item gc
14894 @item bc
14895 Specify the red, green, blue contrast. Default values are @code{2},
14896 @code{7} and @code{1}.
14897 Allowed range is @code{[0, 255]}.
14898
14899 @item mpc
14900 Set color which will be used for drawing median phase. If color is
14901 @code{none} which is default, no median phase value will be drawn.
14902 @end table
14903
14904 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
14905 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
14906 The @code{-1} means left and right channels are completely out of phase and
14907 @code{1} means channels are in phase.
14908
14909 @section avectorscope
14910
14911 Convert input audio to a video output, representing the audio vector
14912 scope.
14913
14914 The filter is used to measure the difference between channels of stereo
14915 audio stream. A monoaural signal, consisting of identical left and right
14916 signal, results in straight vertical line. Any stereo separation is visible
14917 as a deviation from this line, creating a Lissajous figure.
14918 If the straight (or deviation from it) but horizontal line appears this
14919 indicates that the left and right channels are out of phase.
14920
14921 The filter accepts the following options:
14922
14923 @table @option
14924 @item mode, m
14925 Set the vectorscope mode.
14926
14927 Available values are:
14928 @table @samp
14929 @item lissajous
14930 Lissajous rotated by 45 degrees.
14931
14932 @item lissajous_xy
14933 Same as above but not rotated.
14934
14935 @item polar
14936 Shape resembling half of circle.
14937 @end table
14938
14939 Default value is @samp{lissajous}.
14940
14941 @item size, s
14942 Set the video size for the output. For the syntax of this option, check the
14943 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14944 Default value is @code{400x400}.
14945
14946 @item rate, r
14947 Set the output frame rate. Default value is @code{25}.
14948
14949 @item rc
14950 @item gc
14951 @item bc
14952 @item ac
14953 Specify the red, green, blue and alpha contrast. Default values are @code{40},
14954 @code{160}, @code{80} and @code{255}.
14955 Allowed range is @code{[0, 255]}.
14956
14957 @item rf
14958 @item gf
14959 @item bf
14960 @item af
14961 Specify the red, green, blue and alpha fade. Default values are @code{15},
14962 @code{10}, @code{5} and @code{5}.
14963 Allowed range is @code{[0, 255]}.
14964
14965 @item zoom
14966 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
14967
14968 @item draw
14969 Set the vectorscope drawing mode.
14970
14971 Available values are:
14972 @table @samp
14973 @item dot
14974 Draw dot for each sample.
14975
14976 @item line
14977 Draw line between previous and current sample.
14978 @end table
14979
14980 Default value is @samp{dot}.
14981 @end table
14982
14983 @subsection Examples
14984
14985 @itemize
14986 @item
14987 Complete example using @command{ffplay}:
14988 @example
14989 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
14990              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
14991 @end example
14992 @end itemize
14993
14994 @section bench, abench
14995
14996 Benchmark part of a filtergraph.
14997
14998 The filter accepts the following options:
14999
15000 @table @option
15001 @item action
15002 Start or stop a timer.
15003
15004 Available values are:
15005 @table @samp
15006 @item start
15007 Get the current time, set it as frame metadata (using the key
15008 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
15009
15010 @item stop
15011 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
15012 the input frame metadata to get the time difference. Time difference, average,
15013 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
15014 @code{min}) are then printed. The timestamps are expressed in seconds.
15015 @end table
15016 @end table
15017
15018 @subsection Examples
15019
15020 @itemize
15021 @item
15022 Benchmark @ref{selectivecolor} filter:
15023 @example
15024 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
15025 @end example
15026 @end itemize
15027
15028 @section concat
15029
15030 Concatenate audio and video streams, joining them together one after the
15031 other.
15032
15033 The filter works on segments of synchronized video and audio streams. All
15034 segments must have the same number of streams of each type, and that will
15035 also be the number of streams at output.
15036
15037 The filter accepts the following options:
15038
15039 @table @option
15040
15041 @item n
15042 Set the number of segments. Default is 2.
15043
15044 @item v
15045 Set the number of output video streams, that is also the number of video
15046 streams in each segment. Default is 1.
15047
15048 @item a
15049 Set the number of output audio streams, that is also the number of audio
15050 streams in each segment. Default is 0.
15051
15052 @item unsafe
15053 Activate unsafe mode: do not fail if segments have a different format.
15054
15055 @end table
15056
15057 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
15058 @var{a} audio outputs.
15059
15060 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
15061 segment, in the same order as the outputs, then the inputs for the second
15062 segment, etc.
15063
15064 Related streams do not always have exactly the same duration, for various
15065 reasons including codec frame size or sloppy authoring. For that reason,
15066 related synchronized streams (e.g. a video and its audio track) should be
15067 concatenated at once. The concat filter will use the duration of the longest
15068 stream in each segment (except the last one), and if necessary pad shorter
15069 audio streams with silence.
15070
15071 For this filter to work correctly, all segments must start at timestamp 0.
15072
15073 All corresponding streams must have the same parameters in all segments; the
15074 filtering system will automatically select a common pixel format for video
15075 streams, and a common sample format, sample rate and channel layout for
15076 audio streams, but other settings, such as resolution, must be converted
15077 explicitly by the user.
15078
15079 Different frame rates are acceptable but will result in variable frame rate
15080 at output; be sure to configure the output file to handle it.
15081
15082 @subsection Examples
15083
15084 @itemize
15085 @item
15086 Concatenate an opening, an episode and an ending, all in bilingual version
15087 (video in stream 0, audio in streams 1 and 2):
15088 @example
15089 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
15090   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
15091    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
15092   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
15093 @end example
15094
15095 @item
15096 Concatenate two parts, handling audio and video separately, using the
15097 (a)movie sources, and adjusting the resolution:
15098 @example
15099 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
15100 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
15101 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
15102 @end example
15103 Note that a desync will happen at the stitch if the audio and video streams
15104 do not have exactly the same duration in the first file.
15105
15106 @end itemize
15107
15108 @anchor{ebur128}
15109 @section ebur128
15110
15111 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
15112 it unchanged. By default, it logs a message at a frequency of 10Hz with the
15113 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
15114 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
15115
15116 The filter also has a video output (see the @var{video} option) with a real
15117 time graph to observe the loudness evolution. The graphic contains the logged
15118 message mentioned above, so it is not printed anymore when this option is set,
15119 unless the verbose logging is set. The main graphing area contains the
15120 short-term loudness (3 seconds of analysis), and the gauge on the right is for
15121 the momentary loudness (400 milliseconds).
15122
15123 More information about the Loudness Recommendation EBU R128 on
15124 @url{http://tech.ebu.ch/loudness}.
15125
15126 The filter accepts the following options:
15127
15128 @table @option
15129
15130 @item video
15131 Activate the video output. The audio stream is passed unchanged whether this
15132 option is set or no. The video stream will be the first output stream if
15133 activated. Default is @code{0}.
15134
15135 @item size
15136 Set the video size. This option is for video only. For the syntax of this
15137 option, check the
15138 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15139 Default and minimum resolution is @code{640x480}.
15140
15141 @item meter
15142 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
15143 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
15144 other integer value between this range is allowed.
15145
15146 @item metadata
15147 Set metadata injection. If set to @code{1}, the audio input will be segmented
15148 into 100ms output frames, each of them containing various loudness information
15149 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
15150
15151 Default is @code{0}.
15152
15153 @item framelog
15154 Force the frame logging level.
15155
15156 Available values are:
15157 @table @samp
15158 @item info
15159 information logging level
15160 @item verbose
15161 verbose logging level
15162 @end table
15163
15164 By default, the logging level is set to @var{info}. If the @option{video} or
15165 the @option{metadata} options are set, it switches to @var{verbose}.
15166
15167 @item peak
15168 Set peak mode(s).
15169
15170 Available modes can be cumulated (the option is a @code{flag} type). Possible
15171 values are:
15172 @table @samp
15173 @item none
15174 Disable any peak mode (default).
15175 @item sample
15176 Enable sample-peak mode.
15177
15178 Simple peak mode looking for the higher sample value. It logs a message
15179 for sample-peak (identified by @code{SPK}).
15180 @item true
15181 Enable true-peak mode.
15182
15183 If enabled, the peak lookup is done on an over-sampled version of the input
15184 stream for better peak accuracy. It logs a message for true-peak.
15185 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
15186 This mode requires a build with @code{libswresample}.
15187 @end table
15188
15189 @item dualmono
15190 Treat mono input files as "dual mono". If a mono file is intended for playback
15191 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
15192 If set to @code{true}, this option will compensate for this effect.
15193 Multi-channel input files are not affected by this option.
15194
15195 @item panlaw
15196 Set a specific pan law to be used for the measurement of dual mono files.
15197 This parameter is optional, and has a default value of -3.01dB.
15198 @end table
15199
15200 @subsection Examples
15201
15202 @itemize
15203 @item
15204 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
15205 @example
15206 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
15207 @end example
15208
15209 @item
15210 Run an analysis with @command{ffmpeg}:
15211 @example
15212 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
15213 @end example
15214 @end itemize
15215
15216 @section interleave, ainterleave
15217
15218 Temporally interleave frames from several inputs.
15219
15220 @code{interleave} works with video inputs, @code{ainterleave} with audio.
15221
15222 These filters read frames from several inputs and send the oldest
15223 queued frame to the output.
15224
15225 Input streams must have a well defined, monotonically increasing frame
15226 timestamp values.
15227
15228 In order to submit one frame to output, these filters need to enqueue
15229 at least one frame for each input, so they cannot work in case one
15230 input is not yet terminated and will not receive incoming frames.
15231
15232 For example consider the case when one input is a @code{select} filter
15233 which always drop input frames. The @code{interleave} filter will keep
15234 reading from that input, but it will never be able to send new frames
15235 to output until the input will send an end-of-stream signal.
15236
15237 Also, depending on inputs synchronization, the filters will drop
15238 frames in case one input receives more frames than the other ones, and
15239 the queue is already filled.
15240
15241 These filters accept the following options:
15242
15243 @table @option
15244 @item nb_inputs, n
15245 Set the number of different inputs, it is 2 by default.
15246 @end table
15247
15248 @subsection Examples
15249
15250 @itemize
15251 @item
15252 Interleave frames belonging to different streams using @command{ffmpeg}:
15253 @example
15254 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
15255 @end example
15256
15257 @item
15258 Add flickering blur effect:
15259 @example
15260 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
15261 @end example
15262 @end itemize
15263
15264 @section perms, aperms
15265
15266 Set read/write permissions for the output frames.
15267
15268 These filters are mainly aimed at developers to test direct path in the
15269 following filter in the filtergraph.
15270
15271 The filters accept the following options:
15272
15273 @table @option
15274 @item mode
15275 Select the permissions mode.
15276
15277 It accepts the following values:
15278 @table @samp
15279 @item none
15280 Do nothing. This is the default.
15281 @item ro
15282 Set all the output frames read-only.
15283 @item rw
15284 Set all the output frames directly writable.
15285 @item toggle
15286 Make the frame read-only if writable, and writable if read-only.
15287 @item random
15288 Set each output frame read-only or writable randomly.
15289 @end table
15290
15291 @item seed
15292 Set the seed for the @var{random} mode, must be an integer included between
15293 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15294 @code{-1}, the filter will try to use a good random seed on a best effort
15295 basis.
15296 @end table
15297
15298 Note: in case of auto-inserted filter between the permission filter and the
15299 following one, the permission might not be received as expected in that
15300 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
15301 perms/aperms filter can avoid this problem.
15302
15303 @section realtime, arealtime
15304
15305 Slow down filtering to match real time approximatively.
15306
15307 These filters will pause the filtering for a variable amount of time to
15308 match the output rate with the input timestamps.
15309 They are similar to the @option{re} option to @code{ffmpeg}.
15310
15311 They accept the following options:
15312
15313 @table @option
15314 @item limit
15315 Time limit for the pauses. Any pause longer than that will be considered
15316 a timestamp discontinuity and reset the timer. Default is 2 seconds.
15317 @end table
15318
15319 @section select, aselect
15320
15321 Select frames to pass in output.
15322
15323 This filter accepts the following options:
15324
15325 @table @option
15326
15327 @item expr, e
15328 Set expression, which is evaluated for each input frame.
15329
15330 If the expression is evaluated to zero, the frame is discarded.
15331
15332 If the evaluation result is negative or NaN, the frame is sent to the
15333 first output; otherwise it is sent to the output with index
15334 @code{ceil(val)-1}, assuming that the input index starts from 0.
15335
15336 For example a value of @code{1.2} corresponds to the output with index
15337 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
15338
15339 @item outputs, n
15340 Set the number of outputs. The output to which to send the selected
15341 frame is based on the result of the evaluation. Default value is 1.
15342 @end table
15343
15344 The expression can contain the following constants:
15345
15346 @table @option
15347 @item n
15348 The (sequential) number of the filtered frame, starting from 0.
15349
15350 @item selected_n
15351 The (sequential) number of the selected frame, starting from 0.
15352
15353 @item prev_selected_n
15354 The sequential number of the last selected frame. It's NAN if undefined.
15355
15356 @item TB
15357 The timebase of the input timestamps.
15358
15359 @item pts
15360 The PTS (Presentation TimeStamp) of the filtered video frame,
15361 expressed in @var{TB} units. It's NAN if undefined.
15362
15363 @item t
15364 The PTS of the filtered video frame,
15365 expressed in seconds. It's NAN if undefined.
15366
15367 @item prev_pts
15368 The PTS of the previously filtered video frame. It's NAN if undefined.
15369
15370 @item prev_selected_pts
15371 The PTS of the last previously filtered video frame. It's NAN if undefined.
15372
15373 @item prev_selected_t
15374 The PTS of the last previously selected video frame. It's NAN if undefined.
15375
15376 @item start_pts
15377 The PTS of the first video frame in the video. It's NAN if undefined.
15378
15379 @item start_t
15380 The time of the first video frame in the video. It's NAN if undefined.
15381
15382 @item pict_type @emph{(video only)}
15383 The type of the filtered frame. It can assume one of the following
15384 values:
15385 @table @option
15386 @item I
15387 @item P
15388 @item B
15389 @item S
15390 @item SI
15391 @item SP
15392 @item BI
15393 @end table
15394
15395 @item interlace_type @emph{(video only)}
15396 The frame interlace type. It can assume one of the following values:
15397 @table @option
15398 @item PROGRESSIVE
15399 The frame is progressive (not interlaced).
15400 @item TOPFIRST
15401 The frame is top-field-first.
15402 @item BOTTOMFIRST
15403 The frame is bottom-field-first.
15404 @end table
15405
15406 @item consumed_sample_n @emph{(audio only)}
15407 the number of selected samples before the current frame
15408
15409 @item samples_n @emph{(audio only)}
15410 the number of samples in the current frame
15411
15412 @item sample_rate @emph{(audio only)}
15413 the input sample rate
15414
15415 @item key
15416 This is 1 if the filtered frame is a key-frame, 0 otherwise.
15417
15418 @item pos
15419 the position in the file of the filtered frame, -1 if the information
15420 is not available (e.g. for synthetic video)
15421
15422 @item scene @emph{(video only)}
15423 value between 0 and 1 to indicate a new scene; a low value reflects a low
15424 probability for the current frame to introduce a new scene, while a higher
15425 value means the current frame is more likely to be one (see the example below)
15426
15427 @item concatdec_select
15428 The concat demuxer can select only part of a concat input file by setting an
15429 inpoint and an outpoint, but the output packets may not be entirely contained
15430 in the selected interval. By using this variable, it is possible to skip frames
15431 generated by the concat demuxer which are not exactly contained in the selected
15432 interval.
15433
15434 This works by comparing the frame pts against the @var{lavf.concat.start_time}
15435 and the @var{lavf.concat.duration} packet metadata values which are also
15436 present in the decoded frames.
15437
15438 The @var{concatdec_select} variable is -1 if the frame pts is at least
15439 start_time and either the duration metadata is missing or the frame pts is less
15440 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
15441 missing.
15442
15443 That basically means that an input frame is selected if its pts is within the
15444 interval set by the concat demuxer.
15445
15446 @end table
15447
15448 The default value of the select expression is "1".
15449
15450 @subsection Examples
15451
15452 @itemize
15453 @item
15454 Select all frames in input:
15455 @example
15456 select
15457 @end example
15458
15459 The example above is the same as:
15460 @example
15461 select=1
15462 @end example
15463
15464 @item
15465 Skip all frames:
15466 @example
15467 select=0
15468 @end example
15469
15470 @item
15471 Select only I-frames:
15472 @example
15473 select='eq(pict_type\,I)'
15474 @end example
15475
15476 @item
15477 Select one frame every 100:
15478 @example
15479 select='not(mod(n\,100))'
15480 @end example
15481
15482 @item
15483 Select only frames contained in the 10-20 time interval:
15484 @example
15485 select=between(t\,10\,20)
15486 @end example
15487
15488 @item
15489 Select only I frames contained in the 10-20 time interval:
15490 @example
15491 select=between(t\,10\,20)*eq(pict_type\,I)
15492 @end example
15493
15494 @item
15495 Select frames with a minimum distance of 10 seconds:
15496 @example
15497 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
15498 @end example
15499
15500 @item
15501 Use aselect to select only audio frames with samples number > 100:
15502 @example
15503 aselect='gt(samples_n\,100)'
15504 @end example
15505
15506 @item
15507 Create a mosaic of the first scenes:
15508 @example
15509 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
15510 @end example
15511
15512 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
15513 choice.
15514
15515 @item
15516 Send even and odd frames to separate outputs, and compose them:
15517 @example
15518 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
15519 @end example
15520
15521 @item
15522 Select useful frames from an ffconcat file which is using inpoints and
15523 outpoints but where the source files are not intra frame only.
15524 @example
15525 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
15526 @end example
15527 @end itemize
15528
15529 @section sendcmd, asendcmd
15530
15531 Send commands to filters in the filtergraph.
15532
15533 These filters read commands to be sent to other filters in the
15534 filtergraph.
15535
15536 @code{sendcmd} must be inserted between two video filters,
15537 @code{asendcmd} must be inserted between two audio filters, but apart
15538 from that they act the same way.
15539
15540 The specification of commands can be provided in the filter arguments
15541 with the @var{commands} option, or in a file specified by the
15542 @var{filename} option.
15543
15544 These filters accept the following options:
15545 @table @option
15546 @item commands, c
15547 Set the commands to be read and sent to the other filters.
15548 @item filename, f
15549 Set the filename of the commands to be read and sent to the other
15550 filters.
15551 @end table
15552
15553 @subsection Commands syntax
15554
15555 A commands description consists of a sequence of interval
15556 specifications, comprising a list of commands to be executed when a
15557 particular event related to that interval occurs. The occurring event
15558 is typically the current frame time entering or leaving a given time
15559 interval.
15560
15561 An interval is specified by the following syntax:
15562 @example
15563 @var{START}[-@var{END}] @var{COMMANDS};
15564 @end example
15565
15566 The time interval is specified by the @var{START} and @var{END} times.
15567 @var{END} is optional and defaults to the maximum time.
15568
15569 The current frame time is considered within the specified interval if
15570 it is included in the interval [@var{START}, @var{END}), that is when
15571 the time is greater or equal to @var{START} and is lesser than
15572 @var{END}.
15573
15574 @var{COMMANDS} consists of a sequence of one or more command
15575 specifications, separated by ",", relating to that interval.  The
15576 syntax of a command specification is given by:
15577 @example
15578 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
15579 @end example
15580
15581 @var{FLAGS} is optional and specifies the type of events relating to
15582 the time interval which enable sending the specified command, and must
15583 be a non-null sequence of identifier flags separated by "+" or "|" and
15584 enclosed between "[" and "]".
15585
15586 The following flags are recognized:
15587 @table @option
15588 @item enter
15589 The command is sent when the current frame timestamp enters the
15590 specified interval. In other words, the command is sent when the
15591 previous frame timestamp was not in the given interval, and the
15592 current is.
15593
15594 @item leave
15595 The command is sent when the current frame timestamp leaves the
15596 specified interval. In other words, the command is sent when the
15597 previous frame timestamp was in the given interval, and the
15598 current is not.
15599 @end table
15600
15601 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
15602 assumed.
15603
15604 @var{TARGET} specifies the target of the command, usually the name of
15605 the filter class or a specific filter instance name.
15606
15607 @var{COMMAND} specifies the name of the command for the target filter.
15608
15609 @var{ARG} is optional and specifies the optional list of argument for
15610 the given @var{COMMAND}.
15611
15612 Between one interval specification and another, whitespaces, or
15613 sequences of characters starting with @code{#} until the end of line,
15614 are ignored and can be used to annotate comments.
15615
15616 A simplified BNF description of the commands specification syntax
15617 follows:
15618 @example
15619 @var{COMMAND_FLAG}  ::= "enter" | "leave"
15620 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
15621 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
15622 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
15623 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
15624 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
15625 @end example
15626
15627 @subsection Examples
15628
15629 @itemize
15630 @item
15631 Specify audio tempo change at second 4:
15632 @example
15633 asendcmd=c='4.0 atempo tempo 1.5',atempo
15634 @end example
15635
15636 @item
15637 Specify a list of drawtext and hue commands in a file.
15638 @example
15639 # show text in the interval 5-10
15640 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
15641          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
15642
15643 # desaturate the image in the interval 15-20
15644 15.0-20.0 [enter] hue s 0,
15645           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
15646           [leave] hue s 1,
15647           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
15648
15649 # apply an exponential saturation fade-out effect, starting from time 25
15650 25 [enter] hue s exp(25-t)
15651 @end example
15652
15653 A filtergraph allowing to read and process the above command list
15654 stored in a file @file{test.cmd}, can be specified with:
15655 @example
15656 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
15657 @end example
15658 @end itemize
15659
15660 @anchor{setpts}
15661 @section setpts, asetpts
15662
15663 Change the PTS (presentation timestamp) of the input frames.
15664
15665 @code{setpts} works on video frames, @code{asetpts} on audio frames.
15666
15667 This filter accepts the following options:
15668
15669 @table @option
15670
15671 @item expr
15672 The expression which is evaluated for each frame to construct its timestamp.
15673
15674 @end table
15675
15676 The expression is evaluated through the eval API and can contain the following
15677 constants:
15678
15679 @table @option
15680 @item FRAME_RATE
15681 frame rate, only defined for constant frame-rate video
15682
15683 @item PTS
15684 The presentation timestamp in input
15685
15686 @item N
15687 The count of the input frame for video or the number of consumed samples,
15688 not including the current frame for audio, starting from 0.
15689
15690 @item NB_CONSUMED_SAMPLES
15691 The number of consumed samples, not including the current frame (only
15692 audio)
15693
15694 @item NB_SAMPLES, S
15695 The number of samples in the current frame (only audio)
15696
15697 @item SAMPLE_RATE, SR
15698 The audio sample rate.
15699
15700 @item STARTPTS
15701 The PTS of the first frame.
15702
15703 @item STARTT
15704 the time in seconds of the first frame
15705
15706 @item INTERLACED
15707 State whether the current frame is interlaced.
15708
15709 @item T
15710 the time in seconds of the current frame
15711
15712 @item POS
15713 original position in the file of the frame, or undefined if undefined
15714 for the current frame
15715
15716 @item PREV_INPTS
15717 The previous input PTS.
15718
15719 @item PREV_INT
15720 previous input time in seconds
15721
15722 @item PREV_OUTPTS
15723 The previous output PTS.
15724
15725 @item PREV_OUTT
15726 previous output time in seconds
15727
15728 @item RTCTIME
15729 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
15730 instead.
15731
15732 @item RTCSTART
15733 The wallclock (RTC) time at the start of the movie in microseconds.
15734
15735 @item TB
15736 The timebase of the input timestamps.
15737
15738 @end table
15739
15740 @subsection Examples
15741
15742 @itemize
15743 @item
15744 Start counting PTS from zero
15745 @example
15746 setpts=PTS-STARTPTS
15747 @end example
15748
15749 @item
15750 Apply fast motion effect:
15751 @example
15752 setpts=0.5*PTS
15753 @end example
15754
15755 @item
15756 Apply slow motion effect:
15757 @example
15758 setpts=2.0*PTS
15759 @end example
15760
15761 @item
15762 Set fixed rate of 25 frames per second:
15763 @example
15764 setpts=N/(25*TB)
15765 @end example
15766
15767 @item
15768 Set fixed rate 25 fps with some jitter:
15769 @example
15770 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
15771 @end example
15772
15773 @item
15774 Apply an offset of 10 seconds to the input PTS:
15775 @example
15776 setpts=PTS+10/TB
15777 @end example
15778
15779 @item
15780 Generate timestamps from a "live source" and rebase onto the current timebase:
15781 @example
15782 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
15783 @end example
15784
15785 @item
15786 Generate timestamps by counting samples:
15787 @example
15788 asetpts=N/SR/TB
15789 @end example
15790
15791 @end itemize
15792
15793 @section settb, asettb
15794
15795 Set the timebase to use for the output frames timestamps.
15796 It is mainly useful for testing timebase configuration.
15797
15798 It accepts the following parameters:
15799
15800 @table @option
15801
15802 @item expr, tb
15803 The expression which is evaluated into the output timebase.
15804
15805 @end table
15806
15807 The value for @option{tb} is an arithmetic expression representing a
15808 rational. The expression can contain the constants "AVTB" (the default
15809 timebase), "intb" (the input timebase) and "sr" (the sample rate,
15810 audio only). Default value is "intb".
15811
15812 @subsection Examples
15813
15814 @itemize
15815 @item
15816 Set the timebase to 1/25:
15817 @example
15818 settb=expr=1/25
15819 @end example
15820
15821 @item
15822 Set the timebase to 1/10:
15823 @example
15824 settb=expr=0.1
15825 @end example
15826
15827 @item
15828 Set the timebase to 1001/1000:
15829 @example
15830 settb=1+0.001
15831 @end example
15832
15833 @item
15834 Set the timebase to 2*intb:
15835 @example
15836 settb=2*intb
15837 @end example
15838
15839 @item
15840 Set the default timebase value:
15841 @example
15842 settb=AVTB
15843 @end example
15844 @end itemize
15845
15846 @section showcqt
15847 Convert input audio to a video output representing frequency spectrum
15848 logarithmically using Brown-Puckette constant Q transform algorithm with
15849 direct frequency domain coefficient calculation (but the transform itself
15850 is not really constant Q, instead the Q factor is actually variable/clamped),
15851 with musical tone scale, from E0 to D#10.
15852
15853 The filter accepts the following options:
15854
15855 @table @option
15856 @item size, s
15857 Specify the video size for the output. It must be even. For the syntax of this option,
15858 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15859 Default value is @code{1920x1080}.
15860
15861 @item fps, rate, r
15862 Set the output frame rate. Default value is @code{25}.
15863
15864 @item bar_h
15865 Set the bargraph height. It must be even. Default value is @code{-1} which
15866 computes the bargraph height automatically.
15867
15868 @item axis_h
15869 Set the axis height. It must be even. Default value is @code{-1} which computes
15870 the axis height automatically.
15871
15872 @item sono_h
15873 Set the sonogram height. It must be even. Default value is @code{-1} which
15874 computes the sonogram height automatically.
15875
15876 @item fullhd
15877 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
15878 instead. Default value is @code{1}.
15879
15880 @item sono_v, volume
15881 Specify the sonogram volume expression. It can contain variables:
15882 @table @option
15883 @item bar_v
15884 the @var{bar_v} evaluated expression
15885 @item frequency, freq, f
15886 the frequency where it is evaluated
15887 @item timeclamp, tc
15888 the value of @var{timeclamp} option
15889 @end table
15890 and functions:
15891 @table @option
15892 @item a_weighting(f)
15893 A-weighting of equal loudness
15894 @item b_weighting(f)
15895 B-weighting of equal loudness
15896 @item c_weighting(f)
15897 C-weighting of equal loudness.
15898 @end table
15899 Default value is @code{16}.
15900
15901 @item bar_v, volume2
15902 Specify the bargraph volume expression. It can contain variables:
15903 @table @option
15904 @item sono_v
15905 the @var{sono_v} evaluated expression
15906 @item frequency, freq, f
15907 the frequency where it is evaluated
15908 @item timeclamp, tc
15909 the value of @var{timeclamp} option
15910 @end table
15911 and functions:
15912 @table @option
15913 @item a_weighting(f)
15914 A-weighting of equal loudness
15915 @item b_weighting(f)
15916 B-weighting of equal loudness
15917 @item c_weighting(f)
15918 C-weighting of equal loudness.
15919 @end table
15920 Default value is @code{sono_v}.
15921
15922 @item sono_g, gamma
15923 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
15924 higher gamma makes the spectrum having more range. Default value is @code{3}.
15925 Acceptable range is @code{[1, 7]}.
15926
15927 @item bar_g, gamma2
15928 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
15929 @code{[1, 7]}.
15930
15931 @item timeclamp, tc
15932 Specify the transform timeclamp. At low frequency, there is trade-off between
15933 accuracy in time domain and frequency domain. If timeclamp is lower,
15934 event in time domain is represented more accurately (such as fast bass drum),
15935 otherwise event in frequency domain is represented more accurately
15936 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
15937
15938 @item basefreq
15939 Specify the transform base frequency. Default value is @code{20.01523126408007475},
15940 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
15941
15942 @item endfreq
15943 Specify the transform end frequency. Default value is @code{20495.59681441799654},
15944 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
15945
15946 @item coeffclamp
15947 This option is deprecated and ignored.
15948
15949 @item tlength
15950 Specify the transform length in time domain. Use this option to control accuracy
15951 trade-off between time domain and frequency domain at every frequency sample.
15952 It can contain variables:
15953 @table @option
15954 @item frequency, freq, f
15955 the frequency where it is evaluated
15956 @item timeclamp, tc
15957 the value of @var{timeclamp} option.
15958 @end table
15959 Default value is @code{384*tc/(384+tc*f)}.
15960
15961 @item count
15962 Specify the transform count for every video frame. Default value is @code{6}.
15963 Acceptable range is @code{[1, 30]}.
15964
15965 @item fcount
15966 Specify the transform count for every single pixel. Default value is @code{0},
15967 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
15968
15969 @item fontfile
15970 Specify font file for use with freetype to draw the axis. If not specified,
15971 use embedded font. Note that drawing with font file or embedded font is not
15972 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
15973 option instead.
15974
15975 @item fontcolor
15976 Specify font color expression. This is arithmetic expression that should return
15977 integer value 0xRRGGBB. It can contain variables:
15978 @table @option
15979 @item frequency, freq, f
15980 the frequency where it is evaluated
15981 @item timeclamp, tc
15982 the value of @var{timeclamp} option
15983 @end table
15984 and functions:
15985 @table @option
15986 @item midi(f)
15987 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
15988 @item r(x), g(x), b(x)
15989 red, green, and blue value of intensity x.
15990 @end table
15991 Default value is @code{st(0, (midi(f)-59.5)/12);
15992 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
15993 r(1-ld(1)) + b(ld(1))}.
15994
15995 @item axisfile
15996 Specify image file to draw the axis. This option override @var{fontfile} and
15997 @var{fontcolor} option.
15998
15999 @item axis, text
16000 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
16001 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
16002 Default value is @code{1}.
16003
16004 @end table
16005
16006 @subsection Examples
16007
16008 @itemize
16009 @item
16010 Playing audio while showing the spectrum:
16011 @example
16012 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
16013 @end example
16014
16015 @item
16016 Same as above, but with frame rate 30 fps:
16017 @example
16018 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
16019 @end example
16020
16021 @item
16022 Playing at 1280x720:
16023 @example
16024 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
16025 @end example
16026
16027 @item
16028 Disable sonogram display:
16029 @example
16030 sono_h=0
16031 @end example
16032
16033 @item
16034 A1 and its harmonics: A1, A2, (near)E3, A3:
16035 @example
16036 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),
16037                  asplit[a][out1]; [a] showcqt [out0]'
16038 @end example
16039
16040 @item
16041 Same as above, but with more accuracy in frequency domain:
16042 @example
16043 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),
16044                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
16045 @end example
16046
16047 @item
16048 Custom volume:
16049 @example
16050 bar_v=10:sono_v=bar_v*a_weighting(f)
16051 @end example
16052
16053 @item
16054 Custom gamma, now spectrum is linear to the amplitude.
16055 @example
16056 bar_g=2:sono_g=2
16057 @end example
16058
16059 @item
16060 Custom tlength equation:
16061 @example
16062 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)))'
16063 @end example
16064
16065 @item
16066 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
16067 @example
16068 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
16069 @end example
16070
16071 @item
16072 Custom frequency range with custom axis using image file:
16073 @example
16074 axisfile=myaxis.png:basefreq=40:endfreq=10000
16075 @end example
16076 @end itemize
16077
16078 @section showfreqs
16079
16080 Convert input audio to video output representing the audio power spectrum.
16081 Audio amplitude is on Y-axis while frequency is on X-axis.
16082
16083 The filter accepts the following options:
16084
16085 @table @option
16086 @item size, s
16087 Specify size of video. For the syntax of this option, check the
16088 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16089 Default is @code{1024x512}.
16090
16091 @item mode
16092 Set display mode.
16093 This set how each frequency bin will be represented.
16094
16095 It accepts the following values:
16096 @table @samp
16097 @item line
16098 @item bar
16099 @item dot
16100 @end table
16101 Default is @code{bar}.
16102
16103 @item ascale
16104 Set amplitude scale.
16105
16106 It accepts the following values:
16107 @table @samp
16108 @item lin
16109 Linear scale.
16110
16111 @item sqrt
16112 Square root scale.
16113
16114 @item cbrt
16115 Cubic root scale.
16116
16117 @item log
16118 Logarithmic scale.
16119 @end table
16120 Default is @code{log}.
16121
16122 @item fscale
16123 Set frequency scale.
16124
16125 It accepts the following values:
16126 @table @samp
16127 @item lin
16128 Linear scale.
16129
16130 @item log
16131 Logarithmic scale.
16132
16133 @item rlog
16134 Reverse logarithmic scale.
16135 @end table
16136 Default is @code{lin}.
16137
16138 @item win_size
16139 Set window size.
16140
16141 It accepts the following values:
16142 @table @samp
16143 @item w16
16144 @item w32
16145 @item w64
16146 @item w128
16147 @item w256
16148 @item w512
16149 @item w1024
16150 @item w2048
16151 @item w4096
16152 @item w8192
16153 @item w16384
16154 @item w32768
16155 @item w65536
16156 @end table
16157 Default is @code{w2048}
16158
16159 @item win_func
16160 Set windowing function.
16161
16162 It accepts the following values:
16163 @table @samp
16164 @item rect
16165 @item bartlett
16166 @item hanning
16167 @item hamming
16168 @item blackman
16169 @item welch
16170 @item flattop
16171 @item bharris
16172 @item bnuttall
16173 @item bhann
16174 @item sine
16175 @item nuttall
16176 @item lanczos
16177 @item gauss
16178 @item tukey
16179 @end table
16180 Default is @code{hanning}.
16181
16182 @item overlap
16183 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16184 which means optimal overlap for selected window function will be picked.
16185
16186 @item averaging
16187 Set time averaging. Setting this to 0 will display current maximal peaks.
16188 Default is @code{1}, which means time averaging is disabled.
16189
16190 @item colors
16191 Specify list of colors separated by space or by '|' which will be used to
16192 draw channel frequencies. Unrecognized or missing colors will be replaced
16193 by white color.
16194
16195 @item cmode
16196 Set channel display mode.
16197
16198 It accepts the following values:
16199 @table @samp
16200 @item combined
16201 @item separate
16202 @end table
16203 Default is @code{combined}.
16204
16205 @end table
16206
16207 @anchor{showspectrum}
16208 @section showspectrum
16209
16210 Convert input audio to a video output, representing the audio frequency
16211 spectrum.
16212
16213 The filter accepts the following options:
16214
16215 @table @option
16216 @item size, s
16217 Specify the video size for the output. For the syntax of this option, check the
16218 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16219 Default value is @code{640x512}.
16220
16221 @item slide
16222 Specify how the spectrum should slide along the window.
16223
16224 It accepts the following values:
16225 @table @samp
16226 @item replace
16227 the samples start again on the left when they reach the right
16228 @item scroll
16229 the samples scroll from right to left
16230 @item rscroll
16231 the samples scroll from left to right
16232 @item fullframe
16233 frames are only produced when the samples reach the right
16234 @end table
16235
16236 Default value is @code{replace}.
16237
16238 @item mode
16239 Specify display mode.
16240
16241 It accepts the following values:
16242 @table @samp
16243 @item combined
16244 all channels are displayed in the same row
16245 @item separate
16246 all channels are displayed in separate rows
16247 @end table
16248
16249 Default value is @samp{combined}.
16250
16251 @item color
16252 Specify display color mode.
16253
16254 It accepts the following values:
16255 @table @samp
16256 @item channel
16257 each channel is displayed in a separate color
16258 @item intensity
16259 each channel is displayed using the same color scheme
16260 @item rainbow
16261 each channel is displayed using the rainbow color scheme
16262 @item moreland
16263 each channel is displayed using the moreland color scheme
16264 @item nebulae
16265 each channel is displayed using the nebulae color scheme
16266 @item fire
16267 each channel is displayed using the fire color scheme
16268 @item fiery
16269 each channel is displayed using the fiery color scheme
16270 @item fruit
16271 each channel is displayed using the fruit color scheme
16272 @item cool
16273 each channel is displayed using the cool color scheme
16274 @end table
16275
16276 Default value is @samp{channel}.
16277
16278 @item scale
16279 Specify scale used for calculating intensity color values.
16280
16281 It accepts the following values:
16282 @table @samp
16283 @item lin
16284 linear
16285 @item sqrt
16286 square root, default
16287 @item cbrt
16288 cubic root
16289 @item 4thrt
16290 4th root
16291 @item 5thrt
16292 5th root
16293 @item log
16294 logarithmic
16295 @end table
16296
16297 Default value is @samp{sqrt}.
16298
16299 @item saturation
16300 Set saturation modifier for displayed colors. Negative values provide
16301 alternative color scheme. @code{0} is no saturation at all.
16302 Saturation must be in [-10.0, 10.0] range.
16303 Default value is @code{1}.
16304
16305 @item win_func
16306 Set window function.
16307
16308 It accepts the following values:
16309 @table @samp
16310 @item rect
16311 @item bartlett
16312 @item hann
16313 @item hanning
16314 @item hamming
16315 @item blackman
16316 @item welch
16317 @item flattop
16318 @item bharris
16319 @item bnuttall
16320 @item bhann
16321 @item sine
16322 @item nuttall
16323 @item lanczos
16324 @item gauss
16325 @item tukey
16326 @end table
16327
16328 Default value is @code{hann}.
16329
16330 @item orientation
16331 Set orientation of time vs frequency axis. Can be @code{vertical} or
16332 @code{horizontal}. Default is @code{vertical}.
16333
16334 @item overlap
16335 Set ratio of overlap window. Default value is @code{0}.
16336 When value is @code{1} overlap is set to recommended size for specific
16337 window function currently used.
16338
16339 @item gain
16340 Set scale gain for calculating intensity color values.
16341 Default value is @code{1}.
16342
16343 @item data
16344 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
16345 @end table
16346
16347 The usage is very similar to the showwaves filter; see the examples in that
16348 section.
16349
16350 @subsection Examples
16351
16352 @itemize
16353 @item
16354 Large window with logarithmic color scaling:
16355 @example
16356 showspectrum=s=1280x480:scale=log
16357 @end example
16358
16359 @item
16360 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
16361 @example
16362 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16363              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
16364 @end example
16365 @end itemize
16366
16367 @section showspectrumpic
16368
16369 Convert input audio to a single video frame, representing the audio frequency
16370 spectrum.
16371
16372 The filter accepts the following options:
16373
16374 @table @option
16375 @item size, s
16376 Specify the video size for the output. For the syntax of this option, check the
16377 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16378 Default value is @code{4096x2048}.
16379
16380 @item mode
16381 Specify display mode.
16382
16383 It accepts the following values:
16384 @table @samp
16385 @item combined
16386 all channels are displayed in the same row
16387 @item separate
16388 all channels are displayed in separate rows
16389 @end table
16390 Default value is @samp{combined}.
16391
16392 @item color
16393 Specify display color mode.
16394
16395 It accepts the following values:
16396 @table @samp
16397 @item channel
16398 each channel is displayed in a separate color
16399 @item intensity
16400 each channel is displayed using the same color scheme
16401 @item rainbow
16402 each channel is displayed using the rainbow color scheme
16403 @item moreland
16404 each channel is displayed using the moreland color scheme
16405 @item nebulae
16406 each channel is displayed using the nebulae color scheme
16407 @item fire
16408 each channel is displayed using the fire color scheme
16409 @item fiery
16410 each channel is displayed using the fiery color scheme
16411 @item fruit
16412 each channel is displayed using the fruit color scheme
16413 @item cool
16414 each channel is displayed using the cool color scheme
16415 @end table
16416 Default value is @samp{intensity}.
16417
16418 @item scale
16419 Specify scale used for calculating intensity color values.
16420
16421 It accepts the following values:
16422 @table @samp
16423 @item lin
16424 linear
16425 @item sqrt
16426 square root, default
16427 @item cbrt
16428 cubic root
16429 @item 4thrt
16430 4th root
16431 @item 5thrt
16432 5th root
16433 @item log
16434 logarithmic
16435 @end table
16436 Default value is @samp{log}.
16437
16438 @item saturation
16439 Set saturation modifier for displayed colors. Negative values provide
16440 alternative color scheme. @code{0} is no saturation at all.
16441 Saturation must be in [-10.0, 10.0] range.
16442 Default value is @code{1}.
16443
16444 @item win_func
16445 Set window function.
16446
16447 It accepts the following values:
16448 @table @samp
16449 @item rect
16450 @item bartlett
16451 @item hann
16452 @item hanning
16453 @item hamming
16454 @item blackman
16455 @item welch
16456 @item flattop
16457 @item bharris
16458 @item bnuttall
16459 @item bhann
16460 @item sine
16461 @item nuttall
16462 @item lanczos
16463 @item gauss
16464 @item tukey
16465 @end table
16466 Default value is @code{hann}.
16467
16468 @item orientation
16469 Set orientation of time vs frequency axis. Can be @code{vertical} or
16470 @code{horizontal}. Default is @code{vertical}.
16471
16472 @item gain
16473 Set scale gain for calculating intensity color values.
16474 Default value is @code{1}.
16475
16476 @item legend
16477 Draw time and frequency axes and legends. Default is enabled.
16478 @end table
16479
16480 @subsection Examples
16481
16482 @itemize
16483 @item
16484 Extract an audio spectrogram of a whole audio track
16485 in a 1024x1024 picture using @command{ffmpeg}:
16486 @example
16487 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
16488 @end example
16489 @end itemize
16490
16491 @section showvolume
16492
16493 Convert input audio volume to a video output.
16494
16495 The filter accepts the following options:
16496
16497 @table @option
16498 @item rate, r
16499 Set video rate.
16500
16501 @item b
16502 Set border width, allowed range is [0, 5]. Default is 1.
16503
16504 @item w
16505 Set channel width, allowed range is [80, 8192]. Default is 400.
16506
16507 @item h
16508 Set channel height, allowed range is [1, 900]. Default is 20.
16509
16510 @item f
16511 Set fade, allowed range is [0.001, 1]. Default is 0.95.
16512
16513 @item c
16514 Set volume color expression.
16515
16516 The expression can use the following variables:
16517
16518 @table @option
16519 @item VOLUME
16520 Current max volume of channel in dB.
16521
16522 @item CHANNEL
16523 Current channel number, starting from 0.
16524 @end table
16525
16526 @item t
16527 If set, displays channel names. Default is enabled.
16528
16529 @item v
16530 If set, displays volume values. Default is enabled.
16531
16532 @item o
16533 Set orientation, can be @code{horizontal} or @code{vertical},
16534 default is @code{horizontal}.
16535
16536 @item s
16537 Set step size, allowed range s [0, 5]. Default is 0, which means
16538 step is disabled.
16539 @end table
16540
16541 @section showwaves
16542
16543 Convert input audio to a video output, representing the samples waves.
16544
16545 The filter accepts the following options:
16546
16547 @table @option
16548 @item size, s
16549 Specify the video size for the output. For the syntax of this option, check the
16550 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16551 Default value is @code{600x240}.
16552
16553 @item mode
16554 Set display mode.
16555
16556 Available values are:
16557 @table @samp
16558 @item point
16559 Draw a point for each sample.
16560
16561 @item line
16562 Draw a vertical line for each sample.
16563
16564 @item p2p
16565 Draw a point for each sample and a line between them.
16566
16567 @item cline
16568 Draw a centered vertical line for each sample.
16569 @end table
16570
16571 Default value is @code{point}.
16572
16573 @item n
16574 Set the number of samples which are printed on the same column. A
16575 larger value will decrease the frame rate. Must be a positive
16576 integer. This option can be set only if the value for @var{rate}
16577 is not explicitly specified.
16578
16579 @item rate, r
16580 Set the (approximate) output frame rate. This is done by setting the
16581 option @var{n}. Default value is "25".
16582
16583 @item split_channels
16584 Set if channels should be drawn separately or overlap. Default value is 0.
16585
16586 @item colors
16587 Set colors separated by '|' which are going to be used for drawing of each channel.
16588
16589 @item scale
16590 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
16591 Default is linear.
16592
16593 @end table
16594
16595 @subsection Examples
16596
16597 @itemize
16598 @item
16599 Output the input file audio and the corresponding video representation
16600 at the same time:
16601 @example
16602 amovie=a.mp3,asplit[out0],showwaves[out1]
16603 @end example
16604
16605 @item
16606 Create a synthetic signal and show it with showwaves, forcing a
16607 frame rate of 30 frames per second:
16608 @example
16609 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
16610 @end example
16611 @end itemize
16612
16613 @section showwavespic
16614
16615 Convert input audio to a single video frame, representing the samples waves.
16616
16617 The filter accepts the following options:
16618
16619 @table @option
16620 @item size, s
16621 Specify the video size for the output. For the syntax of this option, check the
16622 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16623 Default value is @code{600x240}.
16624
16625 @item split_channels
16626 Set if channels should be drawn separately or overlap. Default value is 0.
16627
16628 @item colors
16629 Set colors separated by '|' which are going to be used for drawing of each channel.
16630
16631 @item scale
16632 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
16633 Default is linear.
16634 @end table
16635
16636 @subsection Examples
16637
16638 @itemize
16639 @item
16640 Extract a channel split representation of the wave form of a whole audio track
16641 in a 1024x800 picture using @command{ffmpeg}:
16642 @example
16643 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
16644 @end example
16645
16646 @item
16647 Colorize the waveform with colorchannelmixer. This example will make
16648 the waveform a green color approximately RGB(66,217,150). Additional
16649 channels will be shades of this color.
16650 @example
16651 ffmpeg -i audio.mp3 -filter_complex "showwavespic,colorchannelmixer=rr=66/255:gg=217/255:bb=150/255" waveform.png
16652 @end example
16653 @end itemize
16654
16655 @section spectrumsynth
16656
16657 Sythesize audio from 2 input video spectrums, first input stream represents
16658 magnitude across time and second represents phase across time.
16659 The filter will transform from frequency domain as displayed in videos back
16660 to time domain as presented in audio output.
16661
16662 This filter is primarly created for reversing processed @ref{showspectrum}
16663 filter outputs, but can synthesize sound from other spectrograms too.
16664 But in such case results are going to be poor if the phase data is not
16665 available, because in such cases phase data need to be recreated, usually
16666 its just recreated from random noise.
16667 For best results use gray only output (@code{channel} color mode in
16668 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
16669 @code{lin} scale for phase video. To produce phase, for 2nd video, use
16670 @code{data} option. Inputs videos should generally use @code{fullframe}
16671 slide mode as that saves resources needed for decoding video.
16672
16673 The filter accepts the following options:
16674
16675 @table @option
16676 @item sample_rate
16677 Specify sample rate of output audio, the sample rate of audio from which
16678 spectrum was generated may differ.
16679
16680 @item channels
16681 Set number of channels represented in input video spectrums.
16682
16683 @item scale
16684 Set scale which was used when generating magnitude input spectrum.
16685 Can be @code{lin} or @code{log}. Default is @code{log}.
16686
16687 @item slide
16688 Set slide which was used when generating inputs spectrums.
16689 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
16690 Default is @code{fullframe}.
16691
16692 @item win_func
16693 Set window function used for resynthesis.
16694
16695 @item overlap
16696 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16697 which means optimal overlap for selected window function will be picked.
16698
16699 @item orientation
16700 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
16701 Default is @code{vertical}.
16702 @end table
16703
16704 @subsection Examples
16705
16706 @itemize
16707 @item
16708 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
16709 then resynthesize videos back to audio with spectrumsynth:
16710 @example
16711 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
16712 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
16713 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
16714 @end example
16715 @end itemize
16716
16717 @section split, asplit
16718
16719 Split input into several identical outputs.
16720
16721 @code{asplit} works with audio input, @code{split} with video.
16722
16723 The filter accepts a single parameter which specifies the number of outputs. If
16724 unspecified, it defaults to 2.
16725
16726 @subsection Examples
16727
16728 @itemize
16729 @item
16730 Create two separate outputs from the same input:
16731 @example
16732 [in] split [out0][out1]
16733 @end example
16734
16735 @item
16736 To create 3 or more outputs, you need to specify the number of
16737 outputs, like in:
16738 @example
16739 [in] asplit=3 [out0][out1][out2]
16740 @end example
16741
16742 @item
16743 Create two separate outputs from the same input, one cropped and
16744 one padded:
16745 @example
16746 [in] split [splitout1][splitout2];
16747 [splitout1] crop=100:100:0:0    [cropout];
16748 [splitout2] pad=200:200:100:100 [padout];
16749 @end example
16750
16751 @item
16752 Create 5 copies of the input audio with @command{ffmpeg}:
16753 @example
16754 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
16755 @end example
16756 @end itemize
16757
16758 @section zmq, azmq
16759
16760 Receive commands sent through a libzmq client, and forward them to
16761 filters in the filtergraph.
16762
16763 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
16764 must be inserted between two video filters, @code{azmq} between two
16765 audio filters.
16766
16767 To enable these filters you need to install the libzmq library and
16768 headers and configure FFmpeg with @code{--enable-libzmq}.
16769
16770 For more information about libzmq see:
16771 @url{http://www.zeromq.org/}
16772
16773 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
16774 receives messages sent through a network interface defined by the
16775 @option{bind_address} option.
16776
16777 The received message must be in the form:
16778 @example
16779 @var{TARGET} @var{COMMAND} [@var{ARG}]
16780 @end example
16781
16782 @var{TARGET} specifies the target of the command, usually the name of
16783 the filter class or a specific filter instance name.
16784
16785 @var{COMMAND} specifies the name of the command for the target filter.
16786
16787 @var{ARG} is optional and specifies the optional argument list for the
16788 given @var{COMMAND}.
16789
16790 Upon reception, the message is processed and the corresponding command
16791 is injected into the filtergraph. Depending on the result, the filter
16792 will send a reply to the client, adopting the format:
16793 @example
16794 @var{ERROR_CODE} @var{ERROR_REASON}
16795 @var{MESSAGE}
16796 @end example
16797
16798 @var{MESSAGE} is optional.
16799
16800 @subsection Examples
16801
16802 Look at @file{tools/zmqsend} for an example of a zmq client which can
16803 be used to send commands processed by these filters.
16804
16805 Consider the following filtergraph generated by @command{ffplay}
16806 @example
16807 ffplay -dumpgraph 1 -f lavfi "
16808 color=s=100x100:c=red  [l];
16809 color=s=100x100:c=blue [r];
16810 nullsrc=s=200x100, zmq [bg];
16811 [bg][l]   overlay      [bg+l];
16812 [bg+l][r] overlay=x=100 "
16813 @end example
16814
16815 To change the color of the left side of the video, the following
16816 command can be used:
16817 @example
16818 echo Parsed_color_0 c yellow | tools/zmqsend
16819 @end example
16820
16821 To change the right side:
16822 @example
16823 echo Parsed_color_1 c pink | tools/zmqsend
16824 @end example
16825
16826 @c man end MULTIMEDIA FILTERS
16827
16828 @chapter Multimedia Sources
16829 @c man begin MULTIMEDIA SOURCES
16830
16831 Below is a description of the currently available multimedia sources.
16832
16833 @section amovie
16834
16835 This is the same as @ref{movie} source, except it selects an audio
16836 stream by default.
16837
16838 @anchor{movie}
16839 @section movie
16840
16841 Read audio and/or video stream(s) from a movie container.
16842
16843 It accepts the following parameters:
16844
16845 @table @option
16846 @item filename
16847 The name of the resource to read (not necessarily a file; it can also be a
16848 device or a stream accessed through some protocol).
16849
16850 @item format_name, f
16851 Specifies the format assumed for the movie to read, and can be either
16852 the name of a container or an input device. If not specified, the
16853 format is guessed from @var{movie_name} or by probing.
16854
16855 @item seek_point, sp
16856 Specifies the seek point in seconds. The frames will be output
16857 starting from this seek point. The parameter is evaluated with
16858 @code{av_strtod}, so the numerical value may be suffixed by an IS
16859 postfix. The default value is "0".
16860
16861 @item streams, s
16862 Specifies the streams to read. Several streams can be specified,
16863 separated by "+". The source will then have as many outputs, in the
16864 same order. The syntax is explained in the ``Stream specifiers''
16865 section in the ffmpeg manual. Two special names, "dv" and "da" specify
16866 respectively the default (best suited) video and audio stream. Default
16867 is "dv", or "da" if the filter is called as "amovie".
16868
16869 @item stream_index, si
16870 Specifies the index of the video stream to read. If the value is -1,
16871 the most suitable video stream will be automatically selected. The default
16872 value is "-1". Deprecated. If the filter is called "amovie", it will select
16873 audio instead of video.
16874
16875 @item loop
16876 Specifies how many times to read the stream in sequence.
16877 If the value is less than 1, the stream will be read again and again.
16878 Default value is "1".
16879
16880 Note that when the movie is looped the source timestamps are not
16881 changed, so it will generate non monotonically increasing timestamps.
16882 @end table
16883
16884 It allows overlaying a second video on top of the main input of
16885 a filtergraph, as shown in this graph:
16886 @example
16887 input -----------> deltapts0 --> overlay --> output
16888                                     ^
16889                                     |
16890 movie --> scale--> deltapts1 -------+
16891 @end example
16892 @subsection Examples
16893
16894 @itemize
16895 @item
16896 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
16897 on top of the input labelled "in":
16898 @example
16899 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
16900 [in] setpts=PTS-STARTPTS [main];
16901 [main][over] overlay=16:16 [out]
16902 @end example
16903
16904 @item
16905 Read from a video4linux2 device, and overlay it on top of the input
16906 labelled "in":
16907 @example
16908 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
16909 [in] setpts=PTS-STARTPTS [main];
16910 [main][over] overlay=16:16 [out]
16911 @end example
16912
16913 @item
16914 Read the first video stream and the audio stream with id 0x81 from
16915 dvd.vob; the video is connected to the pad named "video" and the audio is
16916 connected to the pad named "audio":
16917 @example
16918 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
16919 @end example
16920 @end itemize
16921
16922 @c man end MULTIMEDIA SOURCES