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