]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit 'c536e5e8698110c139b1c17938998a5547550aa3'
[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 See @code{ffmpeg -filters} to view which filters have timeline support.
310
311 @c man end FILTERGRAPH DESCRIPTION
312
313 @chapter Audio Filters
314 @c man begin AUDIO FILTERS
315
316 When you configure your FFmpeg build, you can disable any of the
317 existing filters using @code{--disable-filters}.
318 The configure output will show the audio filters included in your
319 build.
320
321 Below is a description of the currently available audio filters.
322
323 @section acompressor
324
325 A compressor is mainly used to reduce the dynamic range of a signal.
326 Especially modern music is mostly compressed at a high ratio to
327 improve the overall loudness. It's done to get the highest attention
328 of a listener, "fatten" the sound and bring more "power" to the track.
329 If a signal is compressed too much it may sound dull or "dead"
330 afterwards or it may start to "pump" (which could be a powerful effect
331 but can also destroy a track completely).
332 The right compression is the key to reach a professional sound and is
333 the high art of mixing and mastering. Because of its complex settings
334 it may take a long time to get the right feeling for this kind of effect.
335
336 Compression is done by detecting the volume above a chosen level
337 @code{threshold} and dividing it by the factor set with @code{ratio}.
338 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
339 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
340 the signal would cause distortion of the waveform the reduction can be
341 levelled over the time. This is done by setting "Attack" and "Release".
342 @code{attack} determines how long the signal has to rise above the threshold
343 before any reduction will occur and @code{release} sets the time the signal
344 has to fall below the threshold to reduce the reduction again. Shorter signals
345 than the chosen attack time will be left untouched.
346 The overall reduction of the signal can be made up afterwards with the
347 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
348 raising the makeup to this level results in a signal twice as loud than the
349 source. To gain a softer entry in the compression the @code{knee} flattens the
350 hard edge at the threshold in the range of the chosen decibels.
351
352 The filter accepts the following options:
353
354 @table @option
355 @item level_in
356 Set input gain. Default is 1. Range is between 0.015625 and 64.
357
358 @item threshold
359 If a signal of second stream rises above this level it will affect the gain
360 reduction of the first stream.
361 By default it is 0.125. Range is between 0.00097563 and 1.
362
363 @item ratio
364 Set a ratio by which the signal is reduced. 1:2 means that if the level
365 rose 4dB above the threshold, it will be only 2dB above after the reduction.
366 Default is 2. Range is between 1 and 20.
367
368 @item attack
369 Amount of milliseconds the signal has to rise above the threshold before gain
370 reduction starts. Default is 20. Range is between 0.01 and 2000.
371
372 @item release
373 Amount of milliseconds the signal has to fall below the threshold before
374 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
375
376 @item makeup
377 Set the amount by how much signal will be amplified after processing.
378 Default is 2. Range is from 1 and 64.
379
380 @item knee
381 Curve the sharp knee around the threshold to enter gain reduction more softly.
382 Default is 2.82843. Range is between 1 and 8.
383
384 @item link
385 Choose if the @code{average} level between all channels of input stream
386 or the louder(@code{maximum}) channel of input stream affects the
387 reduction. Default is @code{average}.
388
389 @item detection
390 Should the exact signal be taken in case of @code{peak} or an RMS one in case
391 of @code{rms}. Default is @code{rms} which is mostly smoother.
392
393 @item mix
394 How much to use compressed signal in output. Default is 1.
395 Range is between 0 and 1.
396 @end table
397
398 @section acrossfade
399
400 Apply cross fade from one input audio stream to another input audio stream.
401 The cross fade is applied for specified duration near the end of first stream.
402
403 The filter accepts the following options:
404
405 @table @option
406 @item nb_samples, ns
407 Specify the number of samples for which the cross fade effect has to last.
408 At the end of the cross fade effect the first input audio will be completely
409 silent. Default is 44100.
410
411 @item duration, d
412 Specify the duration of the cross fade effect. See
413 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
414 for the accepted syntax.
415 By default the duration is determined by @var{nb_samples}.
416 If set this option is used instead of @var{nb_samples}.
417
418 @item overlap, o
419 Should first stream end overlap with second stream start. Default is enabled.
420
421 @item curve1
422 Set curve for cross fade transition for first stream.
423
424 @item curve2
425 Set curve for cross fade transition for second stream.
426
427 For description of available curve types see @ref{afade} filter description.
428 @end table
429
430 @subsection Examples
431
432 @itemize
433 @item
434 Cross fade from one input to another:
435 @example
436 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
437 @end example
438
439 @item
440 Cross fade from one input to another but without overlapping:
441 @example
442 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
443 @end example
444 @end itemize
445
446 @section acrusher
447
448 Reduce audio bit resolution.
449
450 This filter is bit crusher with enhanced functionality. A bit crusher
451 is used to audibly reduce number of bits an audio signal is sampled
452 with. This doesn't change the bit depth at all, it just produces the
453 effect. Material reduced in bit depth sounds more harsh and "digital".
454 This filter is able to even round to continuous values instead of discrete
455 bit depths.
456 Additionally it has a D/C offset which results in different crushing of
457 the lower and the upper half of the signal.
458 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
459
460 Another feature of this filter is the logarithmic mode.
461 This setting switches from linear distances between bits to logarithmic ones.
462 The result is a much more "natural" sounding crusher which doesn't gate low
463 signals for example. The human ear has a logarithmic perception, too
464 so this kind of crushing is much more pleasant.
465 Logarithmic crushing is also able to get anti-aliased.
466
467 The filter accepts the following options:
468
469 @table @option
470 @item level_in
471 Set level in.
472
473 @item level_out
474 Set level out.
475
476 @item bits
477 Set bit reduction.
478
479 @item mix
480 Set mixing amount.
481
482 @item mode
483 Can be linear: @code{lin} or logarithmic: @code{log}.
484
485 @item dc
486 Set DC.
487
488 @item aa
489 Set anti-aliasing.
490
491 @item samples
492 Set sample reduction.
493
494 @item lfo
495 Enable LFO. By default disabled.
496
497 @item lforange
498 Set LFO range.
499
500 @item lforate
501 Set LFO rate.
502 @end table
503
504 @section adelay
505
506 Delay one or more audio channels.
507
508 Samples in delayed channel are filled with silence.
509
510 The filter accepts the following option:
511
512 @table @option
513 @item delays
514 Set list of delays in milliseconds for each channel separated by '|'.
515 At least one delay greater than 0 should be provided.
516 Unused delays will be silently ignored. If number of given delays is
517 smaller than number of channels all remaining channels will not be delayed.
518 If you want to delay exact number of samples, append 'S' to number.
519 @end table
520
521 @subsection Examples
522
523 @itemize
524 @item
525 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
526 the second channel (and any other channels that may be present) unchanged.
527 @example
528 adelay=1500|0|500
529 @end example
530
531 @item
532 Delay second channel by 500 samples, the third channel by 700 samples and leave
533 the first channel (and any other channels that may be present) unchanged.
534 @example
535 adelay=0|500S|700S
536 @end example
537 @end itemize
538
539 @section aecho
540
541 Apply echoing to the input audio.
542
543 Echoes are reflected sound and can occur naturally amongst mountains
544 (and sometimes large buildings) when talking or shouting; digital echo
545 effects emulate this behaviour and are often used to help fill out the
546 sound of a single instrument or vocal. The time difference between the
547 original signal and the reflection is the @code{delay}, and the
548 loudness of the reflected signal is the @code{decay}.
549 Multiple echoes can have different delays and decays.
550
551 A description of the accepted parameters follows.
552
553 @table @option
554 @item in_gain
555 Set input gain of reflected signal. Default is @code{0.6}.
556
557 @item out_gain
558 Set output gain of reflected signal. Default is @code{0.3}.
559
560 @item delays
561 Set list of time intervals in milliseconds between original signal and reflections
562 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
563 Default is @code{1000}.
564
565 @item decays
566 Set list of loudnesses of reflected signals separated by '|'.
567 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
568 Default is @code{0.5}.
569 @end table
570
571 @subsection Examples
572
573 @itemize
574 @item
575 Make it sound as if there are twice as many instruments as are actually playing:
576 @example
577 aecho=0.8:0.88:60:0.4
578 @end example
579
580 @item
581 If delay is very short, then it sound like a (metallic) robot playing music:
582 @example
583 aecho=0.8:0.88:6:0.4
584 @end example
585
586 @item
587 A longer delay will sound like an open air concert in the mountains:
588 @example
589 aecho=0.8:0.9:1000:0.3
590 @end example
591
592 @item
593 Same as above but with one more mountain:
594 @example
595 aecho=0.8:0.9:1000|1800:0.3|0.25
596 @end example
597 @end itemize
598
599 @section aemphasis
600 Audio emphasis filter creates or restores material directly taken from LPs or
601 emphased CDs with different filter curves. E.g. to store music on vinyl the
602 signal has to be altered by a filter first to even out the disadvantages of
603 this recording medium.
604 Once the material is played back the inverse filter has to be applied to
605 restore the distortion of the frequency response.
606
607 The filter accepts the following options:
608
609 @table @option
610 @item level_in
611 Set input gain.
612
613 @item level_out
614 Set output gain.
615
616 @item mode
617 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
618 use @code{production} mode. Default is @code{reproduction} mode.
619
620 @item type
621 Set filter type. Selects medium. Can be one of the following:
622
623 @table @option
624 @item col
625 select Columbia.
626 @item emi
627 select EMI.
628 @item bsi
629 select BSI (78RPM).
630 @item riaa
631 select RIAA.
632 @item cd
633 select Compact Disc (CD).
634 @item 50fm
635 select 50µs (FM).
636 @item 75fm
637 select 75µs (FM).
638 @item 50kf
639 select 50µs (FM-KF).
640 @item 75kf
641 select 75µs (FM-KF).
642 @end table
643 @end table
644
645 @section aeval
646
647 Modify an audio signal according to the specified expressions.
648
649 This filter accepts one or more expressions (one for each channel),
650 which are evaluated and used to modify a corresponding audio signal.
651
652 It accepts the following parameters:
653
654 @table @option
655 @item exprs
656 Set the '|'-separated expressions list for each separate channel. If
657 the number of input channels is greater than the number of
658 expressions, the last specified expression is used for the remaining
659 output channels.
660
661 @item channel_layout, c
662 Set output channel layout. If not specified, the channel layout is
663 specified by the number of expressions. If set to @samp{same}, it will
664 use by default the same input channel layout.
665 @end table
666
667 Each expression in @var{exprs} can contain the following constants and functions:
668
669 @table @option
670 @item ch
671 channel number of the current expression
672
673 @item n
674 number of the evaluated sample, starting from 0
675
676 @item s
677 sample rate
678
679 @item t
680 time of the evaluated sample expressed in seconds
681
682 @item nb_in_channels
683 @item nb_out_channels
684 input and output number of channels
685
686 @item val(CH)
687 the value of input channel with number @var{CH}
688 @end table
689
690 Note: this filter is slow. For faster processing you should use a
691 dedicated filter.
692
693 @subsection Examples
694
695 @itemize
696 @item
697 Half volume:
698 @example
699 aeval=val(ch)/2:c=same
700 @end example
701
702 @item
703 Invert phase of the second channel:
704 @example
705 aeval=val(0)|-val(1)
706 @end example
707 @end itemize
708
709 @anchor{afade}
710 @section afade
711
712 Apply fade-in/out effect to input audio.
713
714 A description of the accepted parameters follows.
715
716 @table @option
717 @item type, t
718 Specify the effect type, can be either @code{in} for fade-in, or
719 @code{out} for a fade-out effect. Default is @code{in}.
720
721 @item start_sample, ss
722 Specify the number of the start sample for starting to apply the fade
723 effect. Default is 0.
724
725 @item nb_samples, ns
726 Specify the number of samples for which the fade effect has to last. At
727 the end of the fade-in effect the output audio will have the same
728 volume as the input audio, at the end of the fade-out transition
729 the output audio will be silence. Default is 44100.
730
731 @item start_time, st
732 Specify the start time of the fade effect. Default is 0.
733 The value must be specified as a time duration; see
734 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
735 for the accepted syntax.
736 If set this option is used instead of @var{start_sample}.
737
738 @item duration, d
739 Specify the duration of the fade effect. See
740 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
741 for the accepted syntax.
742 At the end of the fade-in effect the output audio will have the same
743 volume as the input audio, at the end of the fade-out transition
744 the output audio will be silence.
745 By default the duration is determined by @var{nb_samples}.
746 If set this option is used instead of @var{nb_samples}.
747
748 @item curve
749 Set curve for fade transition.
750
751 It accepts the following values:
752 @table @option
753 @item tri
754 select triangular, linear slope (default)
755 @item qsin
756 select quarter of sine wave
757 @item hsin
758 select half of sine wave
759 @item esin
760 select exponential sine wave
761 @item log
762 select logarithmic
763 @item ipar
764 select inverted parabola
765 @item qua
766 select quadratic
767 @item cub
768 select cubic
769 @item squ
770 select square root
771 @item cbr
772 select cubic root
773 @item par
774 select parabola
775 @item exp
776 select exponential
777 @item iqsin
778 select inverted quarter of sine wave
779 @item ihsin
780 select inverted half of sine wave
781 @item dese
782 select double-exponential seat
783 @item desi
784 select double-exponential sigmoid
785 @end table
786 @end table
787
788 @subsection Examples
789
790 @itemize
791 @item
792 Fade in first 15 seconds of audio:
793 @example
794 afade=t=in:ss=0:d=15
795 @end example
796
797 @item
798 Fade out last 25 seconds of a 900 seconds audio:
799 @example
800 afade=t=out:st=875:d=25
801 @end example
802 @end itemize
803
804 @section afftfilt
805 Apply arbitrary expressions to samples in frequency domain.
806
807 @table @option
808 @item real
809 Set frequency domain real expression for each separate channel separated
810 by '|'. Default is "1".
811 If the number of input channels is greater than the number of
812 expressions, the last specified expression is used for the remaining
813 output channels.
814
815 @item imag
816 Set frequency domain imaginary expression for each separate channel
817 separated by '|'. If not set, @var{real} option is used.
818
819 Each expression in @var{real} and @var{imag} can contain the following
820 constants:
821
822 @table @option
823 @item sr
824 sample rate
825
826 @item b
827 current frequency bin number
828
829 @item nb
830 number of available bins
831
832 @item ch
833 channel number of the current expression
834
835 @item chs
836 number of channels
837
838 @item pts
839 current frame pts
840 @end table
841
842 @item win_size
843 Set window size.
844
845 It accepts the following values:
846 @table @samp
847 @item w16
848 @item w32
849 @item w64
850 @item w128
851 @item w256
852 @item w512
853 @item w1024
854 @item w2048
855 @item w4096
856 @item w8192
857 @item w16384
858 @item w32768
859 @item w65536
860 @end table
861 Default is @code{w4096}
862
863 @item win_func
864 Set window function. Default is @code{hann}.
865
866 @item overlap
867 Set window overlap. If set to 1, the recommended overlap for selected
868 window function will be picked. Default is @code{0.75}.
869 @end table
870
871 @subsection Examples
872
873 @itemize
874 @item
875 Leave almost only low frequencies in audio:
876 @example
877 afftfilt="1-clip((b/nb)*b,0,1)"
878 @end example
879 @end itemize
880
881 @anchor{aformat}
882 @section aformat
883
884 Set output format constraints for the input audio. The framework will
885 negotiate the most appropriate format to minimize conversions.
886
887 It accepts the following parameters:
888 @table @option
889
890 @item sample_fmts
891 A '|'-separated list of requested sample formats.
892
893 @item sample_rates
894 A '|'-separated list of requested sample rates.
895
896 @item channel_layouts
897 A '|'-separated list of requested channel layouts.
898
899 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
900 for the required syntax.
901 @end table
902
903 If a parameter is omitted, all values are allowed.
904
905 Force the output to either unsigned 8-bit or signed 16-bit stereo
906 @example
907 aformat=sample_fmts=u8|s16:channel_layouts=stereo
908 @end example
909
910 @section agate
911
912 A gate is mainly used to reduce lower parts of a signal. This kind of signal
913 processing reduces disturbing noise between useful signals.
914
915 Gating is done by detecting the volume below a chosen level @var{threshold}
916 and dividing it by the factor set with @var{ratio}. The bottom of the noise
917 floor is set via @var{range}. Because an exact manipulation of the signal
918 would cause distortion of the waveform the reduction can be levelled over
919 time. This is done by setting @var{attack} and @var{release}.
920
921 @var{attack} determines how long the signal has to fall below the threshold
922 before any reduction will occur and @var{release} sets the time the signal
923 has to rise above the threshold to reduce the reduction again.
924 Shorter signals than the chosen attack time will be left untouched.
925
926 @table @option
927 @item level_in
928 Set input level before filtering.
929 Default is 1. Allowed range is from 0.015625 to 64.
930
931 @item range
932 Set the level of gain reduction when the signal is below the threshold.
933 Default is 0.06125. Allowed range is from 0 to 1.
934
935 @item threshold
936 If a signal rises above this level the gain reduction is released.
937 Default is 0.125. Allowed range is from 0 to 1.
938
939 @item ratio
940 Set a ratio by which the signal is reduced.
941 Default is 2. Allowed range is from 1 to 9000.
942
943 @item attack
944 Amount of milliseconds the signal has to rise above the threshold before gain
945 reduction stops.
946 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
947
948 @item release
949 Amount of milliseconds the signal has to fall below the threshold before the
950 reduction is increased again. Default is 250 milliseconds.
951 Allowed range is from 0.01 to 9000.
952
953 @item makeup
954 Set amount of amplification of signal after processing.
955 Default is 1. Allowed range is from 1 to 64.
956
957 @item knee
958 Curve the sharp knee around the threshold to enter gain reduction more softly.
959 Default is 2.828427125. Allowed range is from 1 to 8.
960
961 @item detection
962 Choose if exact signal should be taken for detection or an RMS like one.
963 Default is @code{rms}. Can be @code{peak} or @code{rms}.
964
965 @item link
966 Choose if the average level between all channels or the louder channel affects
967 the reduction.
968 Default is @code{average}. Can be @code{average} or @code{maximum}.
969 @end table
970
971 @section alimiter
972
973 The limiter prevents an input signal from rising over a desired threshold.
974 This limiter uses lookahead technology to prevent your signal from distorting.
975 It means that there is a small delay after the signal is processed. Keep in mind
976 that the delay it produces is the attack time you set.
977
978 The filter accepts the following options:
979
980 @table @option
981 @item level_in
982 Set input gain. Default is 1.
983
984 @item level_out
985 Set output gain. Default is 1.
986
987 @item limit
988 Don't let signals above this level pass the limiter. Default is 1.
989
990 @item attack
991 The limiter will reach its attenuation level in this amount of time in
992 milliseconds. Default is 5 milliseconds.
993
994 @item release
995 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
996 Default is 50 milliseconds.
997
998 @item asc
999 When gain reduction is always needed ASC takes care of releasing to an
1000 average reduction level rather than reaching a reduction of 0 in the release
1001 time.
1002
1003 @item asc_level
1004 Select how much the release time is affected by ASC, 0 means nearly no changes
1005 in release time while 1 produces higher release times.
1006
1007 @item level
1008 Auto level output signal. Default is enabled.
1009 This normalizes audio back to 0dB if enabled.
1010 @end table
1011
1012 Depending on picked setting it is recommended to upsample input 2x or 4x times
1013 with @ref{aresample} before applying this filter.
1014
1015 @section allpass
1016
1017 Apply a two-pole all-pass filter with central frequency (in Hz)
1018 @var{frequency}, and filter-width @var{width}.
1019 An all-pass filter changes the audio's frequency to phase relationship
1020 without changing its frequency to amplitude relationship.
1021
1022 The filter accepts the following options:
1023
1024 @table @option
1025 @item frequency, f
1026 Set frequency in Hz.
1027
1028 @item width_type
1029 Set method to specify band-width of filter.
1030 @table @option
1031 @item h
1032 Hz
1033 @item q
1034 Q-Factor
1035 @item o
1036 octave
1037 @item s
1038 slope
1039 @end table
1040
1041 @item width, w
1042 Specify the band-width of a filter in width_type units.
1043
1044 @item channels, c
1045 Specify which channels to filter, by default all available are filtered.
1046 @end table
1047
1048 @section aloop
1049
1050 Loop audio samples.
1051
1052 The filter accepts the following options:
1053
1054 @table @option
1055 @item loop
1056 Set the number of loops.
1057
1058 @item size
1059 Set maximal number of samples.
1060
1061 @item start
1062 Set first sample of loop.
1063 @end table
1064
1065 @anchor{amerge}
1066 @section amerge
1067
1068 Merge two or more audio streams into a single multi-channel stream.
1069
1070 The filter accepts the following options:
1071
1072 @table @option
1073
1074 @item inputs
1075 Set the number of inputs. Default is 2.
1076
1077 @end table
1078
1079 If the channel layouts of the inputs are disjoint, and therefore compatible,
1080 the channel layout of the output will be set accordingly and the channels
1081 will be reordered as necessary. If the channel layouts of the inputs are not
1082 disjoint, the output will have all the channels of the first input then all
1083 the channels of the second input, in that order, and the channel layout of
1084 the output will be the default value corresponding to the total number of
1085 channels.
1086
1087 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1088 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1089 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1090 first input, b1 is the first channel of the second input).
1091
1092 On the other hand, if both input are in stereo, the output channels will be
1093 in the default order: a1, a2, b1, b2, and the channel layout will be
1094 arbitrarily set to 4.0, which may or may not be the expected value.
1095
1096 All inputs must have the same sample rate, and format.
1097
1098 If inputs do not have the same duration, the output will stop with the
1099 shortest.
1100
1101 @subsection Examples
1102
1103 @itemize
1104 @item
1105 Merge two mono files into a stereo stream:
1106 @example
1107 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1108 @end example
1109
1110 @item
1111 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1112 @example
1113 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
1114 @end example
1115 @end itemize
1116
1117 @section amix
1118
1119 Mixes multiple audio inputs into a single output.
1120
1121 Note that this filter only supports float samples (the @var{amerge}
1122 and @var{pan} audio filters support many formats). If the @var{amix}
1123 input has integer samples then @ref{aresample} will be automatically
1124 inserted to perform the conversion to float samples.
1125
1126 For example
1127 @example
1128 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1129 @end example
1130 will mix 3 input audio streams to a single output with the same duration as the
1131 first input and a dropout transition time of 3 seconds.
1132
1133 It accepts the following parameters:
1134 @table @option
1135
1136 @item inputs
1137 The number of inputs. If unspecified, it defaults to 2.
1138
1139 @item duration
1140 How to determine the end-of-stream.
1141 @table @option
1142
1143 @item longest
1144 The duration of the longest input. (default)
1145
1146 @item shortest
1147 The duration of the shortest input.
1148
1149 @item first
1150 The duration of the first input.
1151
1152 @end table
1153
1154 @item dropout_transition
1155 The transition time, in seconds, for volume renormalization when an input
1156 stream ends. The default value is 2 seconds.
1157
1158 @end table
1159
1160 @section anequalizer
1161
1162 High-order parametric multiband equalizer for each channel.
1163
1164 It accepts the following parameters:
1165 @table @option
1166 @item params
1167
1168 This option string is in format:
1169 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1170 Each equalizer band is separated by '|'.
1171
1172 @table @option
1173 @item chn
1174 Set channel number to which equalization will be applied.
1175 If input doesn't have that channel the entry is ignored.
1176
1177 @item f
1178 Set central frequency for band.
1179 If input doesn't have that frequency the entry is ignored.
1180
1181 @item w
1182 Set band width in hertz.
1183
1184 @item g
1185 Set band gain in dB.
1186
1187 @item t
1188 Set filter type for band, optional, can be:
1189
1190 @table @samp
1191 @item 0
1192 Butterworth, this is default.
1193
1194 @item 1
1195 Chebyshev type 1.
1196
1197 @item 2
1198 Chebyshev type 2.
1199 @end table
1200 @end table
1201
1202 @item curves
1203 With this option activated frequency response of anequalizer is displayed
1204 in video stream.
1205
1206 @item size
1207 Set video stream size. Only useful if curves option is activated.
1208
1209 @item mgain
1210 Set max gain that will be displayed. Only useful if curves option is activated.
1211 Setting this to a reasonable value makes it possible to display gain which is derived from
1212 neighbour bands which are too close to each other and thus produce higher gain
1213 when both are activated.
1214
1215 @item fscale
1216 Set frequency scale used to draw frequency response in video output.
1217 Can be linear or logarithmic. Default is logarithmic.
1218
1219 @item colors
1220 Set color for each channel curve which is going to be displayed in video stream.
1221 This is list of color names separated by space or by '|'.
1222 Unrecognised or missing colors will be replaced by white color.
1223 @end table
1224
1225 @subsection Examples
1226
1227 @itemize
1228 @item
1229 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1230 for first 2 channels using Chebyshev type 1 filter:
1231 @example
1232 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1233 @end example
1234 @end itemize
1235
1236 @subsection Commands
1237
1238 This filter supports the following commands:
1239 @table @option
1240 @item change
1241 Alter existing filter parameters.
1242 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1243
1244 @var{fN} is existing filter number, starting from 0, if no such filter is available
1245 error is returned.
1246 @var{freq} set new frequency parameter.
1247 @var{width} set new width parameter in herz.
1248 @var{gain} set new gain parameter in dB.
1249
1250 Full filter invocation with asendcmd may look like this:
1251 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1252 @end table
1253
1254 @section anull
1255
1256 Pass the audio source unchanged to the output.
1257
1258 @section apad
1259
1260 Pad the end of an audio stream with silence.
1261
1262 This can be used together with @command{ffmpeg} @option{-shortest} to
1263 extend audio streams to the same length as the video stream.
1264
1265 A description of the accepted options follows.
1266
1267 @table @option
1268 @item packet_size
1269 Set silence packet size. Default value is 4096.
1270
1271 @item pad_len
1272 Set the number of samples of silence to add to the end. After the
1273 value is reached, the stream is terminated. This option is mutually
1274 exclusive with @option{whole_len}.
1275
1276 @item whole_len
1277 Set the minimum total number of samples in the output audio stream. If
1278 the value is longer than the input audio length, silence is added to
1279 the end, until the value is reached. This option is mutually exclusive
1280 with @option{pad_len}.
1281 @end table
1282
1283 If neither the @option{pad_len} nor the @option{whole_len} option is
1284 set, the filter will add silence to the end of the input stream
1285 indefinitely.
1286
1287 @subsection Examples
1288
1289 @itemize
1290 @item
1291 Add 1024 samples of silence to the end of the input:
1292 @example
1293 apad=pad_len=1024
1294 @end example
1295
1296 @item
1297 Make sure the audio output will contain at least 10000 samples, pad
1298 the input with silence if required:
1299 @example
1300 apad=whole_len=10000
1301 @end example
1302
1303 @item
1304 Use @command{ffmpeg} to pad the audio input with silence, so that the
1305 video stream will always result the shortest and will be converted
1306 until the end in the output file when using the @option{shortest}
1307 option:
1308 @example
1309 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1310 @end example
1311 @end itemize
1312
1313 @section aphaser
1314 Add a phasing effect to the input audio.
1315
1316 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1317 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1318
1319 A description of the accepted parameters follows.
1320
1321 @table @option
1322 @item in_gain
1323 Set input gain. Default is 0.4.
1324
1325 @item out_gain
1326 Set output gain. Default is 0.74
1327
1328 @item delay
1329 Set delay in milliseconds. Default is 3.0.
1330
1331 @item decay
1332 Set decay. Default is 0.4.
1333
1334 @item speed
1335 Set modulation speed in Hz. Default is 0.5.
1336
1337 @item type
1338 Set modulation type. Default is triangular.
1339
1340 It accepts the following values:
1341 @table @samp
1342 @item triangular, t
1343 @item sinusoidal, s
1344 @end table
1345 @end table
1346
1347 @section apulsator
1348
1349 Audio pulsator is something between an autopanner and a tremolo.
1350 But it can produce funny stereo effects as well. Pulsator changes the volume
1351 of the left and right channel based on a LFO (low frequency oscillator) with
1352 different waveforms and shifted phases.
1353 This filter have the ability to define an offset between left and right
1354 channel. An offset of 0 means that both LFO shapes match each other.
1355 The left and right channel are altered equally - a conventional tremolo.
1356 An offset of 50% means that the shape of the right channel is exactly shifted
1357 in phase (or moved backwards about half of the frequency) - pulsator acts as
1358 an autopanner. At 1 both curves match again. Every setting in between moves the
1359 phase shift gapless between all stages and produces some "bypassing" sounds with
1360 sine and triangle waveforms. The more you set the offset near 1 (starting from
1361 the 0.5) the faster the signal passes from the left to the right speaker.
1362
1363 The filter accepts the following options:
1364
1365 @table @option
1366 @item level_in
1367 Set input gain. By default it is 1. Range is [0.015625 - 64].
1368
1369 @item level_out
1370 Set output gain. By default it is 1. Range is [0.015625 - 64].
1371
1372 @item mode
1373 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1374 sawup or sawdown. Default is sine.
1375
1376 @item amount
1377 Set modulation. Define how much of original signal is affected by the LFO.
1378
1379 @item offset_l
1380 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1381
1382 @item offset_r
1383 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1384
1385 @item width
1386 Set pulse width. Default is 1. Allowed range is [0 - 2].
1387
1388 @item timing
1389 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1390
1391 @item bpm
1392 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1393 is set to bpm.
1394
1395 @item ms
1396 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1397 is set to ms.
1398
1399 @item hz
1400 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1401 if timing is set to hz.
1402 @end table
1403
1404 @anchor{aresample}
1405 @section aresample
1406
1407 Resample the input audio to the specified parameters, using the
1408 libswresample library. If none are specified then the filter will
1409 automatically convert between its input and output.
1410
1411 This filter is also able to stretch/squeeze the audio data to make it match
1412 the timestamps or to inject silence / cut out audio to make it match the
1413 timestamps, do a combination of both or do neither.
1414
1415 The filter accepts the syntax
1416 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1417 expresses a sample rate and @var{resampler_options} is a list of
1418 @var{key}=@var{value} pairs, separated by ":". See the
1419 @ref{Resampler Options,,the "Resampler Options" section in the
1420 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1421 for the complete list of supported options.
1422
1423 @subsection Examples
1424
1425 @itemize
1426 @item
1427 Resample the input audio to 44100Hz:
1428 @example
1429 aresample=44100
1430 @end example
1431
1432 @item
1433 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1434 samples per second compensation:
1435 @example
1436 aresample=async=1000
1437 @end example
1438 @end itemize
1439
1440 @section areverse
1441
1442 Reverse an audio clip.
1443
1444 Warning: This filter requires memory to buffer the entire clip, so trimming
1445 is suggested.
1446
1447 @subsection Examples
1448
1449 @itemize
1450 @item
1451 Take the first 5 seconds of a clip, and reverse it.
1452 @example
1453 atrim=end=5,areverse
1454 @end example
1455 @end itemize
1456
1457 @section asetnsamples
1458
1459 Set the number of samples per each output audio frame.
1460
1461 The last output packet may contain a different number of samples, as
1462 the filter will flush all the remaining samples when the input audio
1463 signals its end.
1464
1465 The filter accepts the following options:
1466
1467 @table @option
1468
1469 @item nb_out_samples, n
1470 Set the number of frames per each output audio frame. The number is
1471 intended as the number of samples @emph{per each channel}.
1472 Default value is 1024.
1473
1474 @item pad, p
1475 If set to 1, the filter will pad the last audio frame with zeroes, so
1476 that the last frame will contain the same number of samples as the
1477 previous ones. Default value is 1.
1478 @end table
1479
1480 For example, to set the number of per-frame samples to 1234 and
1481 disable padding for the last frame, use:
1482 @example
1483 asetnsamples=n=1234:p=0
1484 @end example
1485
1486 @section asetrate
1487
1488 Set the sample rate without altering the PCM data.
1489 This will result in a change of speed and pitch.
1490
1491 The filter accepts the following options:
1492
1493 @table @option
1494 @item sample_rate, r
1495 Set the output sample rate. Default is 44100 Hz.
1496 @end table
1497
1498 @section ashowinfo
1499
1500 Show a line containing various information for each input audio frame.
1501 The input audio is not modified.
1502
1503 The shown line contains a sequence of key/value pairs of the form
1504 @var{key}:@var{value}.
1505
1506 The following values are shown in the output:
1507
1508 @table @option
1509 @item n
1510 The (sequential) number of the input frame, starting from 0.
1511
1512 @item pts
1513 The presentation timestamp of the input frame, in time base units; the time base
1514 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1515
1516 @item pts_time
1517 The presentation timestamp of the input frame in seconds.
1518
1519 @item pos
1520 position of the frame in the input stream, -1 if this information in
1521 unavailable and/or meaningless (for example in case of synthetic audio)
1522
1523 @item fmt
1524 The sample format.
1525
1526 @item chlayout
1527 The channel layout.
1528
1529 @item rate
1530 The sample rate for the audio frame.
1531
1532 @item nb_samples
1533 The number of samples (per channel) in the frame.
1534
1535 @item checksum
1536 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1537 audio, the data is treated as if all the planes were concatenated.
1538
1539 @item plane_checksums
1540 A list of Adler-32 checksums for each data plane.
1541 @end table
1542
1543 @anchor{astats}
1544 @section astats
1545
1546 Display time domain statistical information about the audio channels.
1547 Statistics are calculated and displayed for each audio channel and,
1548 where applicable, an overall figure is also given.
1549
1550 It accepts the following option:
1551 @table @option
1552 @item length
1553 Short window length in seconds, used for peak and trough RMS measurement.
1554 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1555
1556 @item metadata
1557
1558 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1559 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1560 disabled.
1561
1562 Available keys for each channel are:
1563 DC_offset
1564 Min_level
1565 Max_level
1566 Min_difference
1567 Max_difference
1568 Mean_difference
1569 Peak_level
1570 RMS_peak
1571 RMS_trough
1572 Crest_factor
1573 Flat_factor
1574 Peak_count
1575 Bit_depth
1576
1577 and for Overall:
1578 DC_offset
1579 Min_level
1580 Max_level
1581 Min_difference
1582 Max_difference
1583 Mean_difference
1584 Peak_level
1585 RMS_level
1586 RMS_peak
1587 RMS_trough
1588 Flat_factor
1589 Peak_count
1590 Bit_depth
1591 Number_of_samples
1592
1593 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1594 this @code{lavfi.astats.Overall.Peak_count}.
1595
1596 For description what each key means read below.
1597
1598 @item reset
1599 Set number of frame after which stats are going to be recalculated.
1600 Default is disabled.
1601 @end table
1602
1603 A description of each shown parameter follows:
1604
1605 @table @option
1606 @item DC offset
1607 Mean amplitude displacement from zero.
1608
1609 @item Min level
1610 Minimal sample level.
1611
1612 @item Max level
1613 Maximal sample level.
1614
1615 @item Min difference
1616 Minimal difference between two consecutive samples.
1617
1618 @item Max difference
1619 Maximal difference between two consecutive samples.
1620
1621 @item Mean difference
1622 Mean difference between two consecutive samples.
1623 The average of each difference between two consecutive samples.
1624
1625 @item Peak level dB
1626 @item RMS level dB
1627 Standard peak and RMS level measured in dBFS.
1628
1629 @item RMS peak dB
1630 @item RMS trough dB
1631 Peak and trough values for RMS level measured over a short window.
1632
1633 @item Crest factor
1634 Standard ratio of peak to RMS level (note: not in dB).
1635
1636 @item Flat factor
1637 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1638 (i.e. either @var{Min level} or @var{Max level}).
1639
1640 @item Peak count
1641 Number of occasions (not the number of samples) that the signal attained either
1642 @var{Min level} or @var{Max level}.
1643
1644 @item Bit depth
1645 Overall bit depth of audio. Number of bits used for each sample.
1646 @end table
1647
1648 @section atempo
1649
1650 Adjust audio tempo.
1651
1652 The filter accepts exactly one parameter, the audio tempo. If not
1653 specified then the filter will assume nominal 1.0 tempo. Tempo must
1654 be in the [0.5, 2.0] range.
1655
1656 @subsection Examples
1657
1658 @itemize
1659 @item
1660 Slow down audio to 80% tempo:
1661 @example
1662 atempo=0.8
1663 @end example
1664
1665 @item
1666 To speed up audio to 125% tempo:
1667 @example
1668 atempo=1.25
1669 @end example
1670 @end itemize
1671
1672 @section atrim
1673
1674 Trim the input so that the output contains one continuous subpart of the input.
1675
1676 It accepts the following parameters:
1677 @table @option
1678 @item start
1679 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1680 sample with the timestamp @var{start} will be the first sample in the output.
1681
1682 @item end
1683 Specify time of the first audio sample that will be dropped, i.e. the
1684 audio sample immediately preceding the one with the timestamp @var{end} will be
1685 the last sample in the output.
1686
1687 @item start_pts
1688 Same as @var{start}, except this option sets the start timestamp in samples
1689 instead of seconds.
1690
1691 @item end_pts
1692 Same as @var{end}, except this option sets the end timestamp in samples instead
1693 of seconds.
1694
1695 @item duration
1696 The maximum duration of the output in seconds.
1697
1698 @item start_sample
1699 The number of the first sample that should be output.
1700
1701 @item end_sample
1702 The number of the first sample that should be dropped.
1703 @end table
1704
1705 @option{start}, @option{end}, and @option{duration} are expressed as time
1706 duration specifications; see
1707 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1708
1709 Note that the first two sets of the start/end options and the @option{duration}
1710 option look at the frame timestamp, while the _sample options simply count the
1711 samples that pass through the filter. So start/end_pts and start/end_sample will
1712 give different results when the timestamps are wrong, inexact or do not start at
1713 zero. Also note that this filter does not modify the timestamps. If you wish
1714 to have the output timestamps start at zero, insert the asetpts filter after the
1715 atrim filter.
1716
1717 If multiple start or end options are set, this filter tries to be greedy and
1718 keep all samples that match at least one of the specified constraints. To keep
1719 only the part that matches all the constraints at once, chain multiple atrim
1720 filters.
1721
1722 The defaults are such that all the input is kept. So it is possible to set e.g.
1723 just the end values to keep everything before the specified time.
1724
1725 Examples:
1726 @itemize
1727 @item
1728 Drop everything except the second minute of input:
1729 @example
1730 ffmpeg -i INPUT -af atrim=60:120
1731 @end example
1732
1733 @item
1734 Keep only the first 1000 samples:
1735 @example
1736 ffmpeg -i INPUT -af atrim=end_sample=1000
1737 @end example
1738
1739 @end itemize
1740
1741 @section bandpass
1742
1743 Apply a two-pole Butterworth band-pass filter with central
1744 frequency @var{frequency}, and (3dB-point) band-width width.
1745 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1746 instead of the default: constant 0dB peak gain.
1747 The filter roll off at 6dB per octave (20dB per decade).
1748
1749 The filter accepts the following options:
1750
1751 @table @option
1752 @item frequency, f
1753 Set the filter's central frequency. Default is @code{3000}.
1754
1755 @item csg
1756 Constant skirt gain if set to 1. Defaults to 0.
1757
1758 @item width_type
1759 Set method to specify band-width of filter.
1760 @table @option
1761 @item h
1762 Hz
1763 @item q
1764 Q-Factor
1765 @item o
1766 octave
1767 @item s
1768 slope
1769 @end table
1770
1771 @item width, w
1772 Specify the band-width of a filter in width_type units.
1773
1774 @item channels, c
1775 Specify which channels to filter, by default all available are filtered.
1776 @end table
1777
1778 @section bandreject
1779
1780 Apply a two-pole Butterworth band-reject filter with central
1781 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1782 The filter roll off at 6dB per octave (20dB per decade).
1783
1784 The filter accepts the following options:
1785
1786 @table @option
1787 @item frequency, f
1788 Set the filter's central frequency. Default is @code{3000}.
1789
1790 @item width_type
1791 Set method to specify band-width of filter.
1792 @table @option
1793 @item h
1794 Hz
1795 @item q
1796 Q-Factor
1797 @item o
1798 octave
1799 @item s
1800 slope
1801 @end table
1802
1803 @item width, w
1804 Specify the band-width of a filter in width_type units.
1805
1806 @item channels, c
1807 Specify which channels to filter, by default all available are filtered.
1808 @end table
1809
1810 @section bass
1811
1812 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1813 shelving filter with a response similar to that of a standard
1814 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1815
1816 The filter accepts the following options:
1817
1818 @table @option
1819 @item gain, g
1820 Give the gain at 0 Hz. Its useful range is about -20
1821 (for a large cut) to +20 (for a large boost).
1822 Beware of clipping when using a positive gain.
1823
1824 @item frequency, f
1825 Set the filter's central frequency and so can be used
1826 to extend or reduce the frequency range to be boosted or cut.
1827 The default value is @code{100} Hz.
1828
1829 @item width_type
1830 Set method to specify band-width of filter.
1831 @table @option
1832 @item h
1833 Hz
1834 @item q
1835 Q-Factor
1836 @item o
1837 octave
1838 @item s
1839 slope
1840 @end table
1841
1842 @item width, w
1843 Determine how steep is the filter's shelf transition.
1844
1845 @item channels, c
1846 Specify which channels to filter, by default all available are filtered.
1847 @end table
1848
1849 @section biquad
1850
1851 Apply a biquad IIR filter with the given coefficients.
1852 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1853 are the numerator and denominator coefficients respectively.
1854 and @var{channels}, @var{c} specify which channels to filter, by default all
1855 available are filtered.
1856
1857 @section bs2b
1858 Bauer stereo to binaural transformation, which improves headphone listening of
1859 stereo audio records.
1860
1861 It accepts the following parameters:
1862 @table @option
1863
1864 @item profile
1865 Pre-defined crossfeed level.
1866 @table @option
1867
1868 @item default
1869 Default level (fcut=700, feed=50).
1870
1871 @item cmoy
1872 Chu Moy circuit (fcut=700, feed=60).
1873
1874 @item jmeier
1875 Jan Meier circuit (fcut=650, feed=95).
1876
1877 @end table
1878
1879 @item fcut
1880 Cut frequency (in Hz).
1881
1882 @item feed
1883 Feed level (in Hz).
1884
1885 @end table
1886
1887 @section channelmap
1888
1889 Remap input channels to new locations.
1890
1891 It accepts the following parameters:
1892 @table @option
1893 @item map
1894 Map channels from input to output. The argument is a '|'-separated list of
1895 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1896 @var{in_channel} form. @var{in_channel} can be either the name of the input
1897 channel (e.g. FL for front left) or its index in the input channel layout.
1898 @var{out_channel} is the name of the output channel or its index in the output
1899 channel layout. If @var{out_channel} is not given then it is implicitly an
1900 index, starting with zero and increasing by one for each mapping.
1901
1902 @item channel_layout
1903 The channel layout of the output stream.
1904 @end table
1905
1906 If no mapping is present, the filter will implicitly map input channels to
1907 output channels, preserving indices.
1908
1909 For example, assuming a 5.1+downmix input MOV file,
1910 @example
1911 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1912 @end example
1913 will create an output WAV file tagged as stereo from the downmix channels of
1914 the input.
1915
1916 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1917 @example
1918 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1919 @end example
1920
1921 @section channelsplit
1922
1923 Split each channel from an input audio stream into a separate output stream.
1924
1925 It accepts the following parameters:
1926 @table @option
1927 @item channel_layout
1928 The channel layout of the input stream. The default is "stereo".
1929 @end table
1930
1931 For example, assuming a stereo input MP3 file,
1932 @example
1933 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1934 @end example
1935 will create an output Matroska file with two audio streams, one containing only
1936 the left channel and the other the right channel.
1937
1938 Split a 5.1 WAV file into per-channel files:
1939 @example
1940 ffmpeg -i in.wav -filter_complex
1941 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1942 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1943 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1944 side_right.wav
1945 @end example
1946
1947 @section chorus
1948 Add a chorus effect to the audio.
1949
1950 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1951
1952 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1953 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1954 The modulation depth defines the range the modulated delay is played before or after
1955 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1956 sound tuned around the original one, like in a chorus where some vocals are slightly
1957 off key.
1958
1959 It accepts the following parameters:
1960 @table @option
1961 @item in_gain
1962 Set input gain. Default is 0.4.
1963
1964 @item out_gain
1965 Set output gain. Default is 0.4.
1966
1967 @item delays
1968 Set delays. A typical delay is around 40ms to 60ms.
1969
1970 @item decays
1971 Set decays.
1972
1973 @item speeds
1974 Set speeds.
1975
1976 @item depths
1977 Set depths.
1978 @end table
1979
1980 @subsection Examples
1981
1982 @itemize
1983 @item
1984 A single delay:
1985 @example
1986 chorus=0.7:0.9:55:0.4:0.25:2
1987 @end example
1988
1989 @item
1990 Two delays:
1991 @example
1992 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1993 @end example
1994
1995 @item
1996 Fuller sounding chorus with three delays:
1997 @example
1998 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
1999 @end example
2000 @end itemize
2001
2002 @section compand
2003 Compress or expand the audio's dynamic range.
2004
2005 It accepts the following parameters:
2006
2007 @table @option
2008
2009 @item attacks
2010 @item decays
2011 A list of times in seconds for each channel over which the instantaneous level
2012 of the input signal is averaged to determine its volume. @var{attacks} refers to
2013 increase of volume and @var{decays} refers to decrease of volume. For most
2014 situations, the attack time (response to the audio getting louder) should be
2015 shorter than the decay time, because the human ear is more sensitive to sudden
2016 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2017 a typical value for decay is 0.8 seconds.
2018 If specified number of attacks & decays is lower than number of channels, the last
2019 set attack/decay will be used for all remaining channels.
2020
2021 @item points
2022 A list of points for the transfer function, specified in dB relative to the
2023 maximum possible signal amplitude. Each key points list must be defined using
2024 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2025 @code{x0/y0 x1/y1 x2/y2 ....}
2026
2027 The input values must be in strictly increasing order but the transfer function
2028 does not have to be monotonically rising. The point @code{0/0} is assumed but
2029 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2030 function are @code{-70/-70|-60/-20}.
2031
2032 @item soft-knee
2033 Set the curve radius in dB for all joints. It defaults to 0.01.
2034
2035 @item gain
2036 Set the additional gain in dB to be applied at all points on the transfer
2037 function. This allows for easy adjustment of the overall gain.
2038 It defaults to 0.
2039
2040 @item volume
2041 Set an initial volume, in dB, to be assumed for each channel when filtering
2042 starts. This permits the user to supply a nominal level initially, so that, for
2043 example, a very large gain is not applied to initial signal levels before the
2044 companding has begun to operate. A typical value for audio which is initially
2045 quiet is -90 dB. It defaults to 0.
2046
2047 @item delay
2048 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2049 delayed before being fed to the volume adjuster. Specifying a delay
2050 approximately equal to the attack/decay times allows the filter to effectively
2051 operate in predictive rather than reactive mode. It defaults to 0.
2052
2053 @end table
2054
2055 @subsection Examples
2056
2057 @itemize
2058 @item
2059 Make music with both quiet and loud passages suitable for listening to in a
2060 noisy environment:
2061 @example
2062 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2063 @end example
2064
2065 Another example for audio with whisper and explosion parts:
2066 @example
2067 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2068 @end example
2069
2070 @item
2071 A noise gate for when the noise is at a lower level than the signal:
2072 @example
2073 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2074 @end example
2075
2076 @item
2077 Here is another noise gate, this time for when the noise is at a higher level
2078 than the signal (making it, in some ways, similar to squelch):
2079 @example
2080 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2081 @end example
2082
2083 @item
2084 2:1 compression starting at -6dB:
2085 @example
2086 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2087 @end example
2088
2089 @item
2090 2:1 compression starting at -9dB:
2091 @example
2092 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2093 @end example
2094
2095 @item
2096 2:1 compression starting at -12dB:
2097 @example
2098 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2099 @end example
2100
2101 @item
2102 2:1 compression starting at -18dB:
2103 @example
2104 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2105 @end example
2106
2107 @item
2108 3:1 compression starting at -15dB:
2109 @example
2110 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2111 @end example
2112
2113 @item
2114 Compressor/Gate:
2115 @example
2116 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2117 @end example
2118
2119 @item
2120 Expander:
2121 @example
2122 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
2123 @end example
2124
2125 @item
2126 Hard limiter at -6dB:
2127 @example
2128 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2129 @end example
2130
2131 @item
2132 Hard limiter at -12dB:
2133 @example
2134 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2135 @end example
2136
2137 @item
2138 Hard noise gate at -35 dB:
2139 @example
2140 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2141 @end example
2142
2143 @item
2144 Soft limiter:
2145 @example
2146 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2147 @end example
2148 @end itemize
2149
2150 @section compensationdelay
2151
2152 Compensation Delay Line is a metric based delay to compensate differing
2153 positions of microphones or speakers.
2154
2155 For example, you have recorded guitar with two microphones placed in
2156 different location. Because the front of sound wave has fixed speed in
2157 normal conditions, the phasing of microphones can vary and depends on
2158 their location and interposition. The best sound mix can be achieved when
2159 these microphones are in phase (synchronized). Note that distance of
2160 ~30 cm between microphones makes one microphone to capture signal in
2161 antiphase to another microphone. That makes the final mix sounding moody.
2162 This filter helps to solve phasing problems by adding different delays
2163 to each microphone track and make them synchronized.
2164
2165 The best result can be reached when you take one track as base and
2166 synchronize other tracks one by one with it.
2167 Remember that synchronization/delay tolerance depends on sample rate, too.
2168 Higher sample rates will give more tolerance.
2169
2170 It accepts the following parameters:
2171
2172 @table @option
2173 @item mm
2174 Set millimeters distance. This is compensation distance for fine tuning.
2175 Default is 0.
2176
2177 @item cm
2178 Set cm distance. This is compensation distance for tightening distance setup.
2179 Default is 0.
2180
2181 @item m
2182 Set meters distance. This is compensation distance for hard distance setup.
2183 Default is 0.
2184
2185 @item dry
2186 Set dry amount. Amount of unprocessed (dry) signal.
2187 Default is 0.
2188
2189 @item wet
2190 Set wet amount. Amount of processed (wet) signal.
2191 Default is 1.
2192
2193 @item temp
2194 Set temperature degree in Celsius. This is the temperature of the environment.
2195 Default is 20.
2196 @end table
2197
2198 @section crystalizer
2199 Simple algorithm to expand audio dynamic range.
2200
2201 The filter accepts the following options:
2202
2203 @table @option
2204 @item i
2205 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2206 (unchanged sound) to 10.0 (maximum effect).
2207
2208 @item c
2209 Enable clipping. By default is enabled.
2210 @end table
2211
2212 @section dcshift
2213 Apply a DC shift to the audio.
2214
2215 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2216 in the recording chain) from the audio. The effect of a DC offset is reduced
2217 headroom and hence volume. The @ref{astats} filter can be used to determine if
2218 a signal has a DC offset.
2219
2220 @table @option
2221 @item shift
2222 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2223 the audio.
2224
2225 @item limitergain
2226 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2227 used to prevent clipping.
2228 @end table
2229
2230 @section dynaudnorm
2231 Dynamic Audio Normalizer.
2232
2233 This filter applies a certain amount of gain to the input audio in order
2234 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2235 contrast to more "simple" normalization algorithms, the Dynamic Audio
2236 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2237 This allows for applying extra gain to the "quiet" sections of the audio
2238 while avoiding distortions or clipping the "loud" sections. In other words:
2239 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2240 sections, in the sense that the volume of each section is brought to the
2241 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2242 this goal *without* applying "dynamic range compressing". It will retain 100%
2243 of the dynamic range *within* each section of the audio file.
2244
2245 @table @option
2246 @item f
2247 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2248 Default is 500 milliseconds.
2249 The Dynamic Audio Normalizer processes the input audio in small chunks,
2250 referred to as frames. This is required, because a peak magnitude has no
2251 meaning for just a single sample value. Instead, we need to determine the
2252 peak magnitude for a contiguous sequence of sample values. While a "standard"
2253 normalizer would simply use the peak magnitude of the complete file, the
2254 Dynamic Audio Normalizer determines the peak magnitude individually for each
2255 frame. The length of a frame is specified in milliseconds. By default, the
2256 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2257 been found to give good results with most files.
2258 Note that the exact frame length, in number of samples, will be determined
2259 automatically, based on the sampling rate of the individual input audio file.
2260
2261 @item g
2262 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2263 number. Default is 31.
2264 Probably the most important parameter of the Dynamic Audio Normalizer is the
2265 @code{window size} of the Gaussian smoothing filter. The filter's window size
2266 is specified in frames, centered around the current frame. For the sake of
2267 simplicity, this must be an odd number. Consequently, the default value of 31
2268 takes into account the current frame, as well as the 15 preceding frames and
2269 the 15 subsequent frames. Using a larger window results in a stronger
2270 smoothing effect and thus in less gain variation, i.e. slower gain
2271 adaptation. Conversely, using a smaller window results in a weaker smoothing
2272 effect and thus in more gain variation, i.e. faster gain adaptation.
2273 In other words, the more you increase this value, the more the Dynamic Audio
2274 Normalizer will behave like a "traditional" normalization filter. On the
2275 contrary, the more you decrease this value, the more the Dynamic Audio
2276 Normalizer will behave like a dynamic range compressor.
2277
2278 @item p
2279 Set the target peak value. This specifies the highest permissible magnitude
2280 level for the normalized audio input. This filter will try to approach the
2281 target peak magnitude as closely as possible, but at the same time it also
2282 makes sure that the normalized signal will never exceed the peak magnitude.
2283 A frame's maximum local gain factor is imposed directly by the target peak
2284 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2285 It is not recommended to go above this value.
2286
2287 @item m
2288 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2289 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2290 factor for each input frame, i.e. the maximum gain factor that does not
2291 result in clipping or distortion. The maximum gain factor is determined by
2292 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2293 additionally bounds the frame's maximum gain factor by a predetermined
2294 (global) maximum gain factor. This is done in order to avoid excessive gain
2295 factors in "silent" or almost silent frames. By default, the maximum gain
2296 factor is 10.0, For most inputs the default value should be sufficient and
2297 it usually is not recommended to increase this value. Though, for input
2298 with an extremely low overall volume level, it may be necessary to allow even
2299 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2300 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2301 Instead, a "sigmoid" threshold function will be applied. This way, the
2302 gain factors will smoothly approach the threshold value, but never exceed that
2303 value.
2304
2305 @item r
2306 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2307 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2308 This means that the maximum local gain factor for each frame is defined
2309 (only) by the frame's highest magnitude sample. This way, the samples can
2310 be amplified as much as possible without exceeding the maximum signal
2311 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2312 Normalizer can also take into account the frame's root mean square,
2313 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2314 determine the power of a time-varying signal. It is therefore considered
2315 that the RMS is a better approximation of the "perceived loudness" than
2316 just looking at the signal's peak magnitude. Consequently, by adjusting all
2317 frames to a constant RMS value, a uniform "perceived loudness" can be
2318 established. If a target RMS value has been specified, a frame's local gain
2319 factor is defined as the factor that would result in exactly that RMS value.
2320 Note, however, that the maximum local gain factor is still restricted by the
2321 frame's highest magnitude sample, in order to prevent clipping.
2322
2323 @item n
2324 Enable channels coupling. By default is enabled.
2325 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2326 amount. This means the same gain factor will be applied to all channels, i.e.
2327 the maximum possible gain factor is determined by the "loudest" channel.
2328 However, in some recordings, it may happen that the volume of the different
2329 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2330 In this case, this option can be used to disable the channel coupling. This way,
2331 the gain factor will be determined independently for each channel, depending
2332 only on the individual channel's highest magnitude sample. This allows for
2333 harmonizing the volume of the different channels.
2334
2335 @item c
2336 Enable DC bias correction. By default is disabled.
2337 An audio signal (in the time domain) is a sequence of sample values.
2338 In the Dynamic Audio Normalizer these sample values are represented in the
2339 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2340 audio signal, or "waveform", should be centered around the zero point.
2341 That means if we calculate the mean value of all samples in a file, or in a
2342 single frame, then the result should be 0.0 or at least very close to that
2343 value. If, however, there is a significant deviation of the mean value from
2344 0.0, in either positive or negative direction, this is referred to as a
2345 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2346 Audio Normalizer provides optional DC bias correction.
2347 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2348 the mean value, or "DC correction" offset, of each input frame and subtract
2349 that value from all of the frame's sample values which ensures those samples
2350 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2351 boundaries, the DC correction offset values will be interpolated smoothly
2352 between neighbouring frames.
2353
2354 @item b
2355 Enable alternative boundary mode. By default is disabled.
2356 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2357 around each frame. This includes the preceding frames as well as the
2358 subsequent frames. However, for the "boundary" frames, located at the very
2359 beginning and at the very end of the audio file, not all neighbouring
2360 frames are available. In particular, for the first few frames in the audio
2361 file, the preceding frames are not known. And, similarly, for the last few
2362 frames in the audio file, the subsequent frames are not known. Thus, the
2363 question arises which gain factors should be assumed for the missing frames
2364 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2365 to deal with this situation. The default boundary mode assumes a gain factor
2366 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2367 "fade out" at the beginning and at the end of the input, respectively.
2368
2369 @item s
2370 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2371 By default, the Dynamic Audio Normalizer does not apply "traditional"
2372 compression. This means that signal peaks will not be pruned and thus the
2373 full dynamic range will be retained within each local neighbourhood. However,
2374 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2375 normalization algorithm with a more "traditional" compression.
2376 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2377 (thresholding) function. If (and only if) the compression feature is enabled,
2378 all input frames will be processed by a soft knee thresholding function prior
2379 to the actual normalization process. Put simply, the thresholding function is
2380 going to prune all samples whose magnitude exceeds a certain threshold value.
2381 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2382 value. Instead, the threshold value will be adjusted for each individual
2383 frame.
2384 In general, smaller parameters result in stronger compression, and vice versa.
2385 Values below 3.0 are not recommended, because audible distortion may appear.
2386 @end table
2387
2388 @section earwax
2389
2390 Make audio easier to listen to on headphones.
2391
2392 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2393 so that when listened to on headphones the stereo image is moved from
2394 inside your head (standard for headphones) to outside and in front of
2395 the listener (standard for speakers).
2396
2397 Ported from SoX.
2398
2399 @section equalizer
2400
2401 Apply a two-pole peaking equalisation (EQ) filter. With this
2402 filter, the signal-level at and around a selected frequency can
2403 be increased or decreased, whilst (unlike bandpass and bandreject
2404 filters) that at all other frequencies is unchanged.
2405
2406 In order to produce complex equalisation curves, this filter can
2407 be given several times, each with a different central frequency.
2408
2409 The filter accepts the following options:
2410
2411 @table @option
2412 @item frequency, f
2413 Set the filter's central frequency in Hz.
2414
2415 @item width_type
2416 Set method to specify band-width of filter.
2417 @table @option
2418 @item h
2419 Hz
2420 @item q
2421 Q-Factor
2422 @item o
2423 octave
2424 @item s
2425 slope
2426 @end table
2427
2428 @item width, w
2429 Specify the band-width of a filter in width_type units.
2430
2431 @item gain, g
2432 Set the required gain or attenuation in dB.
2433 Beware of clipping when using a positive gain.
2434
2435 @item channels, c
2436 Specify which channels to filter, by default all available are filtered.
2437 @end table
2438
2439 @subsection Examples
2440 @itemize
2441 @item
2442 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2443 @example
2444 equalizer=f=1000:width_type=h:width=200:g=-10
2445 @end example
2446
2447 @item
2448 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2449 @example
2450 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2451 @end example
2452 @end itemize
2453
2454 @section extrastereo
2455
2456 Linearly increases the difference between left and right channels which
2457 adds some sort of "live" effect to playback.
2458
2459 The filter accepts the following options:
2460
2461 @table @option
2462 @item m
2463 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2464 (average of both channels), with 1.0 sound will be unchanged, with
2465 -1.0 left and right channels will be swapped.
2466
2467 @item c
2468 Enable clipping. By default is enabled.
2469 @end table
2470
2471 @section firequalizer
2472 Apply FIR Equalization using arbitrary frequency response.
2473
2474 The filter accepts the following option:
2475
2476 @table @option
2477 @item gain
2478 Set gain curve equation (in dB). The expression can contain variables:
2479 @table @option
2480 @item f
2481 the evaluated frequency
2482 @item sr
2483 sample rate
2484 @item ch
2485 channel number, set to 0 when multichannels evaluation is disabled
2486 @item chid
2487 channel id, see libavutil/channel_layout.h, set to the first channel id when
2488 multichannels evaluation is disabled
2489 @item chs
2490 number of channels
2491 @item chlayout
2492 channel_layout, see libavutil/channel_layout.h
2493
2494 @end table
2495 and functions:
2496 @table @option
2497 @item gain_interpolate(f)
2498 interpolate gain on frequency f based on gain_entry
2499 @item cubic_interpolate(f)
2500 same as gain_interpolate, but smoother
2501 @end table
2502 This option is also available as command. Default is @code{gain_interpolate(f)}.
2503
2504 @item gain_entry
2505 Set gain entry for gain_interpolate function. The expression can
2506 contain functions:
2507 @table @option
2508 @item entry(f, g)
2509 store gain entry at frequency f with value g
2510 @end table
2511 This option is also available as command.
2512
2513 @item delay
2514 Set filter delay in seconds. Higher value means more accurate.
2515 Default is @code{0.01}.
2516
2517 @item accuracy
2518 Set filter accuracy in Hz. Lower value means more accurate.
2519 Default is @code{5}.
2520
2521 @item wfunc
2522 Set window function. Acceptable values are:
2523 @table @option
2524 @item rectangular
2525 rectangular window, useful when gain curve is already smooth
2526 @item hann
2527 hann window (default)
2528 @item hamming
2529 hamming window
2530 @item blackman
2531 blackman window
2532 @item nuttall3
2533 3-terms continuous 1st derivative nuttall window
2534 @item mnuttall3
2535 minimum 3-terms discontinuous nuttall window
2536 @item nuttall
2537 4-terms continuous 1st derivative nuttall window
2538 @item bnuttall
2539 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2540 @item bharris
2541 blackman-harris window
2542 @item tukey
2543 tukey window
2544 @end table
2545
2546 @item fixed
2547 If enabled, use fixed number of audio samples. This improves speed when
2548 filtering with large delay. Default is disabled.
2549
2550 @item multi
2551 Enable multichannels evaluation on gain. Default is disabled.
2552
2553 @item zero_phase
2554 Enable zero phase mode by subtracting timestamp to compensate delay.
2555 Default is disabled.
2556
2557 @item scale
2558 Set scale used by gain. Acceptable values are:
2559 @table @option
2560 @item linlin
2561 linear frequency, linear gain
2562 @item linlog
2563 linear frequency, logarithmic (in dB) gain (default)
2564 @item loglin
2565 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
2566 @item loglog
2567 logarithmic frequency, logarithmic gain
2568 @end table
2569
2570 @item dumpfile
2571 Set file for dumping, suitable for gnuplot.
2572
2573 @item dumpscale
2574 Set scale for dumpfile. Acceptable values are same with scale option.
2575 Default is linlog.
2576
2577 @item fft2
2578 Enable 2-channel convolution using complex FFT. This improves speed significantly.
2579 Default is disabled.
2580 @end table
2581
2582 @subsection Examples
2583 @itemize
2584 @item
2585 lowpass at 1000 Hz:
2586 @example
2587 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2588 @end example
2589 @item
2590 lowpass at 1000 Hz with gain_entry:
2591 @example
2592 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2593 @end example
2594 @item
2595 custom equalization:
2596 @example
2597 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2598 @end example
2599 @item
2600 higher delay with zero phase to compensate delay:
2601 @example
2602 firequalizer=delay=0.1:fixed=on:zero_phase=on
2603 @end example
2604 @item
2605 lowpass on left channel, highpass on right channel:
2606 @example
2607 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2608 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2609 @end example
2610 @end itemize
2611
2612 @section flanger
2613 Apply a flanging effect to the audio.
2614
2615 The filter accepts the following options:
2616
2617 @table @option
2618 @item delay
2619 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2620
2621 @item depth
2622 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2623
2624 @item regen
2625 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2626 Default value is 0.
2627
2628 @item width
2629 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2630 Default value is 71.
2631
2632 @item speed
2633 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2634
2635 @item shape
2636 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2637 Default value is @var{sinusoidal}.
2638
2639 @item phase
2640 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2641 Default value is 25.
2642
2643 @item interp
2644 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2645 Default is @var{linear}.
2646 @end table
2647
2648 @section hdcd
2649
2650 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
2651 embedded HDCD codes is expanded into a 20-bit PCM stream.
2652
2653 The filter supports the Peak Extend and Low-level Gain Adjustment features
2654 of HDCD, and detects the Transient Filter flag.
2655
2656 @example
2657 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
2658 @end example
2659
2660 When using the filter with wav, note the default encoding for wav is 16-bit,
2661 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
2662 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
2663 @example
2664 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
2665 ffmpeg -i HDCD16.wav -af hdcd -acodec pcm_s24le OUT24.wav
2666 @end example
2667
2668 The filter accepts the following options:
2669
2670 @table @option
2671 @item disable_autoconvert
2672 Disable any automatic format conversion or resampling in the filter graph.
2673
2674 @item process_stereo
2675 Process the stereo channels together. If target_gain does not match between
2676 channels, consider it invalid and use the last valid target_gain.
2677
2678 @item cdt_ms
2679 Set the code detect timer period in ms.
2680
2681 @item force_pe
2682 Always extend peaks above -3dBFS even if PE isn't signaled.
2683
2684 @item analyze_mode
2685 Replace audio with a solid tone and adjust the amplitude to signal some
2686 specific aspect of the decoding process. The output file can be loaded in
2687 an audio editor alongside the original to aid analysis.
2688
2689 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
2690
2691 Modes are:
2692 @table @samp
2693 @item 0, off
2694 Disabled
2695 @item 1, lle
2696 Gain adjustment level at each sample
2697 @item 2, pe
2698 Samples where peak extend occurs
2699 @item 3, cdt
2700 Samples where the code detect timer is active
2701 @item 4, tgm
2702 Samples where the target gain does not match between channels
2703 @end table
2704 @end table
2705
2706 @section highpass
2707
2708 Apply a high-pass filter with 3dB point frequency.
2709 The filter can be either single-pole, or double-pole (the default).
2710 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2711
2712 The filter accepts the following options:
2713
2714 @table @option
2715 @item frequency, f
2716 Set frequency in Hz. Default is 3000.
2717
2718 @item poles, p
2719 Set number of poles. Default is 2.
2720
2721 @item width_type
2722 Set method to specify band-width of filter.
2723 @table @option
2724 @item h
2725 Hz
2726 @item q
2727 Q-Factor
2728 @item o
2729 octave
2730 @item s
2731 slope
2732 @end table
2733
2734 @item width, w
2735 Specify the band-width of a filter in width_type units.
2736 Applies only to double-pole filter.
2737 The default is 0.707q and gives a Butterworth response.
2738
2739 @item channels, c
2740 Specify which channels to filter, by default all available are filtered.
2741 @end table
2742
2743 @section join
2744
2745 Join multiple input streams into one multi-channel stream.
2746
2747 It accepts the following parameters:
2748 @table @option
2749
2750 @item inputs
2751 The number of input streams. It defaults to 2.
2752
2753 @item channel_layout
2754 The desired output channel layout. It defaults to stereo.
2755
2756 @item map
2757 Map channels from inputs to output. The argument is a '|'-separated list of
2758 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2759 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2760 can be either the name of the input channel (e.g. FL for front left) or its
2761 index in the specified input stream. @var{out_channel} is the name of the output
2762 channel.
2763 @end table
2764
2765 The filter will attempt to guess the mappings when they are not specified
2766 explicitly. It does so by first trying to find an unused matching input channel
2767 and if that fails it picks the first unused input channel.
2768
2769 Join 3 inputs (with properly set channel layouts):
2770 @example
2771 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2772 @end example
2773
2774 Build a 5.1 output from 6 single-channel streams:
2775 @example
2776 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2777 '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'
2778 out
2779 @end example
2780
2781 @section ladspa
2782
2783 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2784
2785 To enable compilation of this filter you need to configure FFmpeg with
2786 @code{--enable-ladspa}.
2787
2788 @table @option
2789 @item file, f
2790 Specifies the name of LADSPA plugin library to load. If the environment
2791 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2792 each one of the directories specified by the colon separated list in
2793 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2794 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2795 @file{/usr/lib/ladspa/}.
2796
2797 @item plugin, p
2798 Specifies the plugin within the library. Some libraries contain only
2799 one plugin, but others contain many of them. If this is not set filter
2800 will list all available plugins within the specified library.
2801
2802 @item controls, c
2803 Set the '|' separated list of controls which are zero or more floating point
2804 values that determine the behavior of the loaded plugin (for example delay,
2805 threshold or gain).
2806 Controls need to be defined using the following syntax:
2807 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2808 @var{valuei} is the value set on the @var{i}-th control.
2809 Alternatively they can be also defined using the following syntax:
2810 @var{value0}|@var{value1}|@var{value2}|..., where
2811 @var{valuei} is the value set on the @var{i}-th control.
2812 If @option{controls} is set to @code{help}, all available controls and
2813 their valid ranges are printed.
2814
2815 @item sample_rate, s
2816 Specify the sample rate, default to 44100. Only used if plugin have
2817 zero inputs.
2818
2819 @item nb_samples, n
2820 Set the number of samples per channel per each output frame, default
2821 is 1024. Only used if plugin have zero inputs.
2822
2823 @item duration, d
2824 Set the minimum duration of the sourced audio. See
2825 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2826 for the accepted syntax.
2827 Note that the resulting duration may be greater than the specified duration,
2828 as the generated audio is always cut at the end of a complete frame.
2829 If not specified, or the expressed duration is negative, the audio is
2830 supposed to be generated forever.
2831 Only used if plugin have zero inputs.
2832
2833 @end table
2834
2835 @subsection Examples
2836
2837 @itemize
2838 @item
2839 List all available plugins within amp (LADSPA example plugin) library:
2840 @example
2841 ladspa=file=amp
2842 @end example
2843
2844 @item
2845 List all available controls and their valid ranges for @code{vcf_notch}
2846 plugin from @code{VCF} library:
2847 @example
2848 ladspa=f=vcf:p=vcf_notch:c=help
2849 @end example
2850
2851 @item
2852 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2853 plugin library:
2854 @example
2855 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2856 @end example
2857
2858 @item
2859 Add reverberation to the audio using TAP-plugins
2860 (Tom's Audio Processing plugins):
2861 @example
2862 ladspa=file=tap_reverb:tap_reverb
2863 @end example
2864
2865 @item
2866 Generate white noise, with 0.2 amplitude:
2867 @example
2868 ladspa=file=cmt:noise_source_white:c=c0=.2
2869 @end example
2870
2871 @item
2872 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2873 @code{C* Audio Plugin Suite} (CAPS) library:
2874 @example
2875 ladspa=file=caps:Click:c=c1=20'
2876 @end example
2877
2878 @item
2879 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2880 @example
2881 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2882 @end example
2883
2884 @item
2885 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2886 @code{SWH Plugins} collection:
2887 @example
2888 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2889 @end example
2890
2891 @item
2892 Attenuate low frequencies using Multiband EQ from Steve Harris
2893 @code{SWH Plugins} collection:
2894 @example
2895 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2896 @end example
2897 @end itemize
2898
2899 @subsection Commands
2900
2901 This filter supports the following commands:
2902 @table @option
2903 @item cN
2904 Modify the @var{N}-th control value.
2905
2906 If the specified value is not valid, it is ignored and prior one is kept.
2907 @end table
2908
2909 @section loudnorm
2910
2911 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
2912 Support for both single pass (livestreams, files) and double pass (files) modes.
2913 This algorithm can target IL, LRA, and maximum true peak.
2914
2915 The filter accepts the following options:
2916
2917 @table @option
2918 @item I, i
2919 Set integrated loudness target.
2920 Range is -70.0 - -5.0. Default value is -24.0.
2921
2922 @item LRA, lra
2923 Set loudness range target.
2924 Range is 1.0 - 20.0. Default value is 7.0.
2925
2926 @item TP, tp
2927 Set maximum true peak.
2928 Range is -9.0 - +0.0. Default value is -2.0.
2929
2930 @item measured_I, measured_i
2931 Measured IL of input file.
2932 Range is -99.0 - +0.0.
2933
2934 @item measured_LRA, measured_lra
2935 Measured LRA of input file.
2936 Range is  0.0 - 99.0.
2937
2938 @item measured_TP, measured_tp
2939 Measured true peak of input file.
2940 Range is  -99.0 - +99.0.
2941
2942 @item measured_thresh
2943 Measured threshold of input file.
2944 Range is -99.0 - +0.0.
2945
2946 @item offset
2947 Set offset gain. Gain is applied before the true-peak limiter.
2948 Range is  -99.0 - +99.0. Default is +0.0.
2949
2950 @item linear
2951 Normalize linearly if possible.
2952 measured_I, measured_LRA, measured_TP, and measured_thresh must also
2953 to be specified in order to use this mode.
2954 Options are true or false. Default is true.
2955
2956 @item dual_mono
2957 Treat mono input files as "dual-mono". If a mono file is intended for playback
2958 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
2959 If set to @code{true}, this option will compensate for this effect.
2960 Multi-channel input files are not affected by this option.
2961 Options are true or false. Default is false.
2962
2963 @item print_format
2964 Set print format for stats. Options are summary, json, or none.
2965 Default value is none.
2966 @end table
2967
2968 @section lowpass
2969
2970 Apply a low-pass filter with 3dB point frequency.
2971 The filter can be either single-pole or double-pole (the default).
2972 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2973
2974 The filter accepts the following options:
2975
2976 @table @option
2977 @item frequency, f
2978 Set frequency in Hz. Default is 500.
2979
2980 @item poles, p
2981 Set number of poles. Default is 2.
2982
2983 @item width_type
2984 Set method to specify band-width of filter.
2985 @table @option
2986 @item h
2987 Hz
2988 @item q
2989 Q-Factor
2990 @item o
2991 octave
2992 @item s
2993 slope
2994 @end table
2995
2996 @item width, w
2997 Specify the band-width of a filter in width_type units.
2998 Applies only to double-pole filter.
2999 The default is 0.707q and gives a Butterworth response.
3000
3001 @item channels, c
3002 Specify which channels to filter, by default all available are filtered.
3003 @end table
3004
3005 @subsection Examples
3006 @itemize
3007 @item
3008 Lowpass only LFE channel, it LFE is not present it does nothing:
3009 @example
3010 lowpass=c=LFE
3011 @end example
3012 @end itemize
3013
3014 @anchor{pan}
3015 @section pan
3016
3017 Mix channels with specific gain levels. The filter accepts the output
3018 channel layout followed by a set of channels definitions.
3019
3020 This filter is also designed to efficiently remap the channels of an audio
3021 stream.
3022
3023 The filter accepts parameters of the form:
3024 "@var{l}|@var{outdef}|@var{outdef}|..."
3025
3026 @table @option
3027 @item l
3028 output channel layout or number of channels
3029
3030 @item outdef
3031 output channel specification, of the form:
3032 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
3033
3034 @item out_name
3035 output channel to define, either a channel name (FL, FR, etc.) or a channel
3036 number (c0, c1, etc.)
3037
3038 @item gain
3039 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3040
3041 @item in_name
3042 input channel to use, see out_name for details; it is not possible to mix
3043 named and numbered input channels
3044 @end table
3045
3046 If the `=' in a channel specification is replaced by `<', then the gains for
3047 that specification will be renormalized so that the total is 1, thus
3048 avoiding clipping noise.
3049
3050 @subsection Mixing examples
3051
3052 For example, if you want to down-mix from stereo to mono, but with a bigger
3053 factor for the left channel:
3054 @example
3055 pan=1c|c0=0.9*c0+0.1*c1
3056 @end example
3057
3058 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3059 7-channels surround:
3060 @example
3061 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3062 @end example
3063
3064 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3065 that should be preferred (see "-ac" option) unless you have very specific
3066 needs.
3067
3068 @subsection Remapping examples
3069
3070 The channel remapping will be effective if, and only if:
3071
3072 @itemize
3073 @item gain coefficients are zeroes or ones,
3074 @item only one input per channel output,
3075 @end itemize
3076
3077 If all these conditions are satisfied, the filter will notify the user ("Pure
3078 channel mapping detected"), and use an optimized and lossless method to do the
3079 remapping.
3080
3081 For example, if you have a 5.1 source and want a stereo audio stream by
3082 dropping the extra channels:
3083 @example
3084 pan="stereo| c0=FL | c1=FR"
3085 @end example
3086
3087 Given the same source, you can also switch front left and front right channels
3088 and keep the input channel layout:
3089 @example
3090 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3091 @end example
3092
3093 If the input is a stereo audio stream, you can mute the front left channel (and
3094 still keep the stereo channel layout) with:
3095 @example
3096 pan="stereo|c1=c1"
3097 @end example
3098
3099 Still with a stereo audio stream input, you can copy the right channel in both
3100 front left and right:
3101 @example
3102 pan="stereo| c0=FR | c1=FR"
3103 @end example
3104
3105 @section replaygain
3106
3107 ReplayGain scanner filter. This filter takes an audio stream as an input and
3108 outputs it unchanged.
3109 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3110
3111 @section resample
3112
3113 Convert the audio sample format, sample rate and channel layout. It is
3114 not meant to be used directly.
3115
3116 @section rubberband
3117 Apply time-stretching and pitch-shifting with librubberband.
3118
3119 The filter accepts the following options:
3120
3121 @table @option
3122 @item tempo
3123 Set tempo scale factor.
3124
3125 @item pitch
3126 Set pitch scale factor.
3127
3128 @item transients
3129 Set transients detector.
3130 Possible values are:
3131 @table @var
3132 @item crisp
3133 @item mixed
3134 @item smooth
3135 @end table
3136
3137 @item detector
3138 Set detector.
3139 Possible values are:
3140 @table @var
3141 @item compound
3142 @item percussive
3143 @item soft
3144 @end table
3145
3146 @item phase
3147 Set phase.
3148 Possible values are:
3149 @table @var
3150 @item laminar
3151 @item independent
3152 @end table
3153
3154 @item window
3155 Set processing window size.
3156 Possible values are:
3157 @table @var
3158 @item standard
3159 @item short
3160 @item long
3161 @end table
3162
3163 @item smoothing
3164 Set smoothing.
3165 Possible values are:
3166 @table @var
3167 @item off
3168 @item on
3169 @end table
3170
3171 @item formant
3172 Enable formant preservation when shift pitching.
3173 Possible values are:
3174 @table @var
3175 @item shifted
3176 @item preserved
3177 @end table
3178
3179 @item pitchq
3180 Set pitch quality.
3181 Possible values are:
3182 @table @var
3183 @item quality
3184 @item speed
3185 @item consistency
3186 @end table
3187
3188 @item channels
3189 Set channels.
3190 Possible values are:
3191 @table @var
3192 @item apart
3193 @item together
3194 @end table
3195 @end table
3196
3197 @section sidechaincompress
3198
3199 This filter acts like normal compressor but has the ability to compress
3200 detected signal using second input signal.
3201 It needs two input streams and returns one output stream.
3202 First input stream will be processed depending on second stream signal.
3203 The filtered signal then can be filtered with other filters in later stages of
3204 processing. See @ref{pan} and @ref{amerge} filter.
3205
3206 The filter accepts the following options:
3207
3208 @table @option
3209 @item level_in
3210 Set input gain. Default is 1. Range is between 0.015625 and 64.
3211
3212 @item threshold
3213 If a signal of second stream raises above this level it will affect the gain
3214 reduction of first stream.
3215 By default is 0.125. Range is between 0.00097563 and 1.
3216
3217 @item ratio
3218 Set a ratio about which the signal is reduced. 1:2 means that if the level
3219 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3220 Default is 2. Range is between 1 and 20.
3221
3222 @item attack
3223 Amount of milliseconds the signal has to rise above the threshold before gain
3224 reduction starts. Default is 20. Range is between 0.01 and 2000.
3225
3226 @item release
3227 Amount of milliseconds the signal has to fall below the threshold before
3228 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3229
3230 @item makeup
3231 Set the amount by how much signal will be amplified after processing.
3232 Default is 2. Range is from 1 and 64.
3233
3234 @item knee
3235 Curve the sharp knee around the threshold to enter gain reduction more softly.
3236 Default is 2.82843. Range is between 1 and 8.
3237
3238 @item link
3239 Choose if the @code{average} level between all channels of side-chain stream
3240 or the louder(@code{maximum}) channel of side-chain stream affects the
3241 reduction. Default is @code{average}.
3242
3243 @item detection
3244 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3245 of @code{rms}. Default is @code{rms} which is mainly smoother.
3246
3247 @item level_sc
3248 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3249
3250 @item mix
3251 How much to use compressed signal in output. Default is 1.
3252 Range is between 0 and 1.
3253 @end table
3254
3255 @subsection Examples
3256
3257 @itemize
3258 @item
3259 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3260 depending on the signal of 2nd input and later compressed signal to be
3261 merged with 2nd input:
3262 @example
3263 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3264 @end example
3265 @end itemize
3266
3267 @section sidechaingate
3268
3269 A sidechain gate acts like a normal (wideband) gate but has the ability to
3270 filter the detected signal before sending it to the gain reduction stage.
3271 Normally a gate uses the full range signal to detect a level above the
3272 threshold.
3273 For example: If you cut all lower frequencies from your sidechain signal
3274 the gate will decrease the volume of your track only if not enough highs
3275 appear. With this technique you are able to reduce the resonation of a
3276 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3277 guitar.
3278 It needs two input streams and returns one output stream.
3279 First input stream will be processed depending on second stream signal.
3280
3281 The filter accepts the following options:
3282
3283 @table @option
3284 @item level_in
3285 Set input level before filtering.
3286 Default is 1. Allowed range is from 0.015625 to 64.
3287
3288 @item range
3289 Set the level of gain reduction when the signal is below the threshold.
3290 Default is 0.06125. Allowed range is from 0 to 1.
3291
3292 @item threshold
3293 If a signal rises above this level the gain reduction is released.
3294 Default is 0.125. Allowed range is from 0 to 1.
3295
3296 @item ratio
3297 Set a ratio about which the signal is reduced.
3298 Default is 2. Allowed range is from 1 to 9000.
3299
3300 @item attack
3301 Amount of milliseconds the signal has to rise above the threshold before gain
3302 reduction stops.
3303 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3304
3305 @item release
3306 Amount of milliseconds the signal has to fall below the threshold before the
3307 reduction is increased again. Default is 250 milliseconds.
3308 Allowed range is from 0.01 to 9000.
3309
3310 @item makeup
3311 Set amount of amplification of signal after processing.
3312 Default is 1. Allowed range is from 1 to 64.
3313
3314 @item knee
3315 Curve the sharp knee around the threshold to enter gain reduction more softly.
3316 Default is 2.828427125. Allowed range is from 1 to 8.
3317
3318 @item detection
3319 Choose if exact signal should be taken for detection or an RMS like one.
3320 Default is rms. Can be peak or rms.
3321
3322 @item link
3323 Choose if the average level between all channels or the louder channel affects
3324 the reduction.
3325 Default is average. Can be average or maximum.
3326
3327 @item level_sc
3328 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3329 @end table
3330
3331 @section silencedetect
3332
3333 Detect silence in an audio stream.
3334
3335 This filter logs a message when it detects that the input audio volume is less
3336 or equal to a noise tolerance value for a duration greater or equal to the
3337 minimum detected noise duration.
3338
3339 The printed times and duration are expressed in seconds.
3340
3341 The filter accepts the following options:
3342
3343 @table @option
3344 @item duration, d
3345 Set silence duration until notification (default is 2 seconds).
3346
3347 @item noise, n
3348 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3349 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3350 @end table
3351
3352 @subsection Examples
3353
3354 @itemize
3355 @item
3356 Detect 5 seconds of silence with -50dB noise tolerance:
3357 @example
3358 silencedetect=n=-50dB:d=5
3359 @end example
3360
3361 @item
3362 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3363 tolerance in @file{silence.mp3}:
3364 @example
3365 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3366 @end example
3367 @end itemize
3368
3369 @section silenceremove
3370
3371 Remove silence from the beginning, middle or end of the audio.
3372
3373 The filter accepts the following options:
3374
3375 @table @option
3376 @item start_periods
3377 This value is used to indicate if audio should be trimmed at beginning of
3378 the audio. A value of zero indicates no silence should be trimmed from the
3379 beginning. When specifying a non-zero value, it trims audio up until it
3380 finds non-silence. Normally, when trimming silence from beginning of audio
3381 the @var{start_periods} will be @code{1} but it can be increased to higher
3382 values to trim all audio up to specific count of non-silence periods.
3383 Default value is @code{0}.
3384
3385 @item start_duration
3386 Specify the amount of time that non-silence must be detected before it stops
3387 trimming audio. By increasing the duration, bursts of noises can be treated
3388 as silence and trimmed off. Default value is @code{0}.
3389
3390 @item start_threshold
3391 This indicates what sample value should be treated as silence. For digital
3392 audio, a value of @code{0} may be fine but for audio recorded from analog,
3393 you may wish to increase the value to account for background noise.
3394 Can be specified in dB (in case "dB" is appended to the specified value)
3395 or amplitude ratio. Default value is @code{0}.
3396
3397 @item stop_periods
3398 Set the count for trimming silence from the end of audio.
3399 To remove silence from the middle of a file, specify a @var{stop_periods}
3400 that is negative. This value is then treated as a positive value and is
3401 used to indicate the effect should restart processing as specified by
3402 @var{start_periods}, making it suitable for removing periods of silence
3403 in the middle of the audio.
3404 Default value is @code{0}.
3405
3406 @item stop_duration
3407 Specify a duration of silence that must exist before audio is not copied any
3408 more. By specifying a higher duration, silence that is wanted can be left in
3409 the audio.
3410 Default value is @code{0}.
3411
3412 @item stop_threshold
3413 This is the same as @option{start_threshold} but for trimming silence from
3414 the end of audio.
3415 Can be specified in dB (in case "dB" is appended to the specified value)
3416 or amplitude ratio. Default value is @code{0}.
3417
3418 @item leave_silence
3419 This indicates that @var{stop_duration} length of audio should be left intact
3420 at the beginning of each period of silence.
3421 For example, if you want to remove long pauses between words but do not want
3422 to remove the pauses completely. Default value is @code{0}.
3423
3424 @item detection
3425 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3426 and works better with digital silence which is exactly 0.
3427 Default value is @code{rms}.
3428
3429 @item window
3430 Set ratio used to calculate size of window for detecting silence.
3431 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3432 @end table
3433
3434 @subsection Examples
3435
3436 @itemize
3437 @item
3438 The following example shows how this filter can be used to start a recording
3439 that does not contain the delay at the start which usually occurs between
3440 pressing the record button and the start of the performance:
3441 @example
3442 silenceremove=1:5:0.02
3443 @end example
3444
3445 @item
3446 Trim all silence encountered from beginning to end where there is more than 1
3447 second of silence in audio:
3448 @example
3449 silenceremove=0:0:0:-1:1:-90dB
3450 @end example
3451 @end itemize
3452
3453 @section sofalizer
3454
3455 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3456 loudspeakers around the user for binaural listening via headphones (audio
3457 formats up to 9 channels supported).
3458 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3459 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3460 Austrian Academy of Sciences.
3461
3462 To enable compilation of this filter you need to configure FFmpeg with
3463 @code{--enable-netcdf}.
3464
3465 The filter accepts the following options:
3466
3467 @table @option
3468 @item sofa
3469 Set the SOFA file used for rendering.
3470
3471 @item gain
3472 Set gain applied to audio. Value is in dB. Default is 0.
3473
3474 @item rotation
3475 Set rotation of virtual loudspeakers in deg. Default is 0.
3476
3477 @item elevation
3478 Set elevation of virtual speakers in deg. Default is 0.
3479
3480 @item radius
3481 Set distance in meters between loudspeakers and the listener with near-field
3482 HRTFs. Default is 1.
3483
3484 @item type
3485 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3486 processing audio in time domain which is slow.
3487 @var{freq} is processing audio in frequency domain which is fast.
3488 Default is @var{freq}.
3489
3490 @item speakers
3491 Set custom positions of virtual loudspeakers. Syntax for this option is:
3492 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3493 Each virtual loudspeaker is described with short channel name following with
3494 azimuth and elevation in degreees.
3495 Each virtual loudspeaker description is separated by '|'.
3496 For example to override front left and front right channel positions use:
3497 'speakers=FL 45 15|FR 345 15'.
3498 Descriptions with unrecognised channel names are ignored.
3499 @end table
3500
3501 @subsection Examples
3502
3503 @itemize
3504 @item
3505 Using ClubFritz6 sofa file:
3506 @example
3507 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3508 @end example
3509
3510 @item
3511 Using ClubFritz12 sofa file and bigger radius with small rotation:
3512 @example
3513 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3514 @end example
3515
3516 @item
3517 Similar as above but with custom speaker positions for front left, front right, back left and back right
3518 and also with custom gain:
3519 @example
3520 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
3521 @end example
3522 @end itemize
3523
3524 @section stereotools
3525
3526 This filter has some handy utilities to manage stereo signals, for converting
3527 M/S stereo recordings to L/R signal while having control over the parameters
3528 or spreading the stereo image of master track.
3529
3530 The filter accepts the following options:
3531
3532 @table @option
3533 @item level_in
3534 Set input level before filtering for both channels. Defaults is 1.
3535 Allowed range is from 0.015625 to 64.
3536
3537 @item level_out
3538 Set output level after filtering for both channels. Defaults is 1.
3539 Allowed range is from 0.015625 to 64.
3540
3541 @item balance_in
3542 Set input balance between both channels. Default is 0.
3543 Allowed range is from -1 to 1.
3544
3545 @item balance_out
3546 Set output balance between both channels. Default is 0.
3547 Allowed range is from -1 to 1.
3548
3549 @item softclip
3550 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3551 clipping. Disabled by default.
3552
3553 @item mutel
3554 Mute the left channel. Disabled by default.
3555
3556 @item muter
3557 Mute the right channel. Disabled by default.
3558
3559 @item phasel
3560 Change the phase of the left channel. Disabled by default.
3561
3562 @item phaser
3563 Change the phase of the right channel. Disabled by default.
3564
3565 @item mode
3566 Set stereo mode. Available values are:
3567
3568 @table @samp
3569 @item lr>lr
3570 Left/Right to Left/Right, this is default.
3571
3572 @item lr>ms
3573 Left/Right to Mid/Side.
3574
3575 @item ms>lr
3576 Mid/Side to Left/Right.
3577
3578 @item lr>ll
3579 Left/Right to Left/Left.
3580
3581 @item lr>rr
3582 Left/Right to Right/Right.
3583
3584 @item lr>l+r
3585 Left/Right to Left + Right.
3586
3587 @item lr>rl
3588 Left/Right to Right/Left.
3589 @end table
3590
3591 @item slev
3592 Set level of side signal. Default is 1.
3593 Allowed range is from 0.015625 to 64.
3594
3595 @item sbal
3596 Set balance of side signal. Default is 0.
3597 Allowed range is from -1 to 1.
3598
3599 @item mlev
3600 Set level of the middle signal. Default is 1.
3601 Allowed range is from 0.015625 to 64.
3602
3603 @item mpan
3604 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3605
3606 @item base
3607 Set stereo base between mono and inversed channels. Default is 0.
3608 Allowed range is from -1 to 1.
3609
3610 @item delay
3611 Set delay in milliseconds how much to delay left from right channel and
3612 vice versa. Default is 0. Allowed range is from -20 to 20.
3613
3614 @item sclevel
3615 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3616
3617 @item phase
3618 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3619 @end table
3620
3621 @subsection Examples
3622
3623 @itemize
3624 @item
3625 Apply karaoke like effect:
3626 @example
3627 stereotools=mlev=0.015625
3628 @end example
3629
3630 @item
3631 Convert M/S signal to L/R:
3632 @example
3633 "stereotools=mode=ms>lr"
3634 @end example
3635 @end itemize
3636
3637 @section stereowiden
3638
3639 This filter enhance the stereo effect by suppressing signal common to both
3640 channels and by delaying the signal of left into right and vice versa,
3641 thereby widening the stereo effect.
3642
3643 The filter accepts the following options:
3644
3645 @table @option
3646 @item delay
3647 Time in milliseconds of the delay of left signal into right and vice versa.
3648 Default is 20 milliseconds.
3649
3650 @item feedback
3651 Amount of gain in delayed signal into right and vice versa. Gives a delay
3652 effect of left signal in right output and vice versa which gives widening
3653 effect. Default is 0.3.
3654
3655 @item crossfeed
3656 Cross feed of left into right with inverted phase. This helps in suppressing
3657 the mono. If the value is 1 it will cancel all the signal common to both
3658 channels. Default is 0.3.
3659
3660 @item drymix
3661 Set level of input signal of original channel. Default is 0.8.
3662 @end table
3663
3664 @section treble
3665
3666 Boost or cut treble (upper) frequencies of the audio using a two-pole
3667 shelving filter with a response similar to that of a standard
3668 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3669
3670 The filter accepts the following options:
3671
3672 @table @option
3673 @item gain, g
3674 Give the gain at whichever is the lower of ~22 kHz and the
3675 Nyquist frequency. Its useful range is about -20 (for a large cut)
3676 to +20 (for a large boost). Beware of clipping when using a positive gain.
3677
3678 @item frequency, f
3679 Set the filter's central frequency and so can be used
3680 to extend or reduce the frequency range to be boosted or cut.
3681 The default value is @code{3000} Hz.
3682
3683 @item width_type
3684 Set method to specify band-width of filter.
3685 @table @option
3686 @item h
3687 Hz
3688 @item q
3689 Q-Factor
3690 @item o
3691 octave
3692 @item s
3693 slope
3694 @end table
3695
3696 @item width, w
3697 Determine how steep is the filter's shelf transition.
3698
3699 @item channels, c
3700 Specify which channels to filter, by default all available are filtered.
3701 @end table
3702
3703 @section tremolo
3704
3705 Sinusoidal amplitude modulation.
3706
3707 The filter accepts the following options:
3708
3709 @table @option
3710 @item f
3711 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3712 (20 Hz or lower) will result in a tremolo effect.
3713 This filter may also be used as a ring modulator by specifying
3714 a modulation frequency higher than 20 Hz.
3715 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3716
3717 @item d
3718 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3719 Default value is 0.5.
3720 @end table
3721
3722 @section vibrato
3723
3724 Sinusoidal phase modulation.
3725
3726 The filter accepts the following options:
3727
3728 @table @option
3729 @item f
3730 Modulation frequency in Hertz.
3731 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3732
3733 @item d
3734 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3735 Default value is 0.5.
3736 @end table
3737
3738 @section volume
3739
3740 Adjust the input audio volume.
3741
3742 It accepts the following parameters:
3743 @table @option
3744
3745 @item volume
3746 Set audio volume expression.
3747
3748 Output values are clipped to the maximum value.
3749
3750 The output audio volume is given by the relation:
3751 @example
3752 @var{output_volume} = @var{volume} * @var{input_volume}
3753 @end example
3754
3755 The default value for @var{volume} is "1.0".
3756
3757 @item precision
3758 This parameter represents the mathematical precision.
3759
3760 It determines which input sample formats will be allowed, which affects the
3761 precision of the volume scaling.
3762
3763 @table @option
3764 @item fixed
3765 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3766 @item float
3767 32-bit floating-point; this limits input sample format to FLT. (default)
3768 @item double
3769 64-bit floating-point; this limits input sample format to DBL.
3770 @end table
3771
3772 @item replaygain
3773 Choose the behaviour on encountering ReplayGain side data in input frames.
3774
3775 @table @option
3776 @item drop
3777 Remove ReplayGain side data, ignoring its contents (the default).
3778
3779 @item ignore
3780 Ignore ReplayGain side data, but leave it in the frame.
3781
3782 @item track
3783 Prefer the track gain, if present.
3784
3785 @item album
3786 Prefer the album gain, if present.
3787 @end table
3788
3789 @item replaygain_preamp
3790 Pre-amplification gain in dB to apply to the selected replaygain gain.
3791
3792 Default value for @var{replaygain_preamp} is 0.0.
3793
3794 @item eval
3795 Set when the volume expression is evaluated.
3796
3797 It accepts the following values:
3798 @table @samp
3799 @item once
3800 only evaluate expression once during the filter initialization, or
3801 when the @samp{volume} command is sent
3802
3803 @item frame
3804 evaluate expression for each incoming frame
3805 @end table
3806
3807 Default value is @samp{once}.
3808 @end table
3809
3810 The volume expression can contain the following parameters.
3811
3812 @table @option
3813 @item n
3814 frame number (starting at zero)
3815 @item nb_channels
3816 number of channels
3817 @item nb_consumed_samples
3818 number of samples consumed by the filter
3819 @item nb_samples
3820 number of samples in the current frame
3821 @item pos
3822 original frame position in the file
3823 @item pts
3824 frame PTS
3825 @item sample_rate
3826 sample rate
3827 @item startpts
3828 PTS at start of stream
3829 @item startt
3830 time at start of stream
3831 @item t
3832 frame time
3833 @item tb
3834 timestamp timebase
3835 @item volume
3836 last set volume value
3837 @end table
3838
3839 Note that when @option{eval} is set to @samp{once} only the
3840 @var{sample_rate} and @var{tb} variables are available, all other
3841 variables will evaluate to NAN.
3842
3843 @subsection Commands
3844
3845 This filter supports the following commands:
3846 @table @option
3847 @item volume
3848 Modify the volume expression.
3849 The command accepts the same syntax of the corresponding option.
3850
3851 If the specified expression is not valid, it is kept at its current
3852 value.
3853 @item replaygain_noclip
3854 Prevent clipping by limiting the gain applied.
3855
3856 Default value for @var{replaygain_noclip} is 1.
3857
3858 @end table
3859
3860 @subsection Examples
3861
3862 @itemize
3863 @item
3864 Halve the input audio volume:
3865 @example
3866 volume=volume=0.5
3867 volume=volume=1/2
3868 volume=volume=-6.0206dB
3869 @end example
3870
3871 In all the above example the named key for @option{volume} can be
3872 omitted, for example like in:
3873 @example
3874 volume=0.5
3875 @end example
3876
3877 @item
3878 Increase input audio power by 6 decibels using fixed-point precision:
3879 @example
3880 volume=volume=6dB:precision=fixed
3881 @end example
3882
3883 @item
3884 Fade volume after time 10 with an annihilation period of 5 seconds:
3885 @example
3886 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3887 @end example
3888 @end itemize
3889
3890 @section volumedetect
3891
3892 Detect the volume of the input video.
3893
3894 The filter has no parameters. The input is not modified. Statistics about
3895 the volume will be printed in the log when the input stream end is reached.
3896
3897 In particular it will show the mean volume (root mean square), maximum
3898 volume (on a per-sample basis), and the beginning of a histogram of the
3899 registered volume values (from the maximum value to a cumulated 1/1000 of
3900 the samples).
3901
3902 All volumes are in decibels relative to the maximum PCM value.
3903
3904 @subsection Examples
3905
3906 Here is an excerpt of the output:
3907 @example
3908 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3909 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3910 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3911 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3912 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3913 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3914 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3915 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3916 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3917 @end example
3918
3919 It means that:
3920 @itemize
3921 @item
3922 The mean square energy is approximately -27 dB, or 10^-2.7.
3923 @item
3924 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3925 @item
3926 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3927 @end itemize
3928
3929 In other words, raising the volume by +4 dB does not cause any clipping,
3930 raising it by +5 dB causes clipping for 6 samples, etc.
3931
3932 @c man end AUDIO FILTERS
3933
3934 @chapter Audio Sources
3935 @c man begin AUDIO SOURCES
3936
3937 Below is a description of the currently available audio sources.
3938
3939 @section abuffer
3940
3941 Buffer audio frames, and make them available to the filter chain.
3942
3943 This source is mainly intended for a programmatic use, in particular
3944 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3945
3946 It accepts the following parameters:
3947 @table @option
3948
3949 @item time_base
3950 The timebase which will be used for timestamps of submitted frames. It must be
3951 either a floating-point number or in @var{numerator}/@var{denominator} form.
3952
3953 @item sample_rate
3954 The sample rate of the incoming audio buffers.
3955
3956 @item sample_fmt
3957 The sample format of the incoming audio buffers.
3958 Either a sample format name or its corresponding integer representation from
3959 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3960
3961 @item channel_layout
3962 The channel layout of the incoming audio buffers.
3963 Either a channel layout name from channel_layout_map in
3964 @file{libavutil/channel_layout.c} or its corresponding integer representation
3965 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3966
3967 @item channels
3968 The number of channels of the incoming audio buffers.
3969 If both @var{channels} and @var{channel_layout} are specified, then they
3970 must be consistent.
3971
3972 @end table
3973
3974 @subsection Examples
3975
3976 @example
3977 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3978 @end example
3979
3980 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3981 Since the sample format with name "s16p" corresponds to the number
3982 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3983 equivalent to:
3984 @example
3985 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3986 @end example
3987
3988 @section aevalsrc
3989
3990 Generate an audio signal specified by an expression.
3991
3992 This source accepts in input one or more expressions (one for each
3993 channel), which are evaluated and used to generate a corresponding
3994 audio signal.
3995
3996 This source accepts the following options:
3997
3998 @table @option
3999 @item exprs
4000 Set the '|'-separated expressions list for each separate channel. In case the
4001 @option{channel_layout} option is not specified, the selected channel layout
4002 depends on the number of provided expressions. Otherwise the last
4003 specified expression is applied to the remaining output channels.
4004
4005 @item channel_layout, c
4006 Set the channel layout. The number of channels in the specified layout
4007 must be equal to the number of specified expressions.
4008
4009 @item duration, d
4010 Set the minimum duration of the sourced audio. See
4011 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4012 for the accepted syntax.
4013 Note that the resulting duration may be greater than the specified
4014 duration, as the generated audio is always cut at the end of a
4015 complete frame.
4016
4017 If not specified, or the expressed duration is negative, the audio is
4018 supposed to be generated forever.
4019
4020 @item nb_samples, n
4021 Set the number of samples per channel per each output frame,
4022 default to 1024.
4023
4024 @item sample_rate, s
4025 Specify the sample rate, default to 44100.
4026 @end table
4027
4028 Each expression in @var{exprs} can contain the following constants:
4029
4030 @table @option
4031 @item n
4032 number of the evaluated sample, starting from 0
4033
4034 @item t
4035 time of the evaluated sample expressed in seconds, starting from 0
4036
4037 @item s
4038 sample rate
4039
4040 @end table
4041
4042 @subsection Examples
4043
4044 @itemize
4045 @item
4046 Generate silence:
4047 @example
4048 aevalsrc=0
4049 @end example
4050
4051 @item
4052 Generate a sin signal with frequency of 440 Hz, set sample rate to
4053 8000 Hz:
4054 @example
4055 aevalsrc="sin(440*2*PI*t):s=8000"
4056 @end example
4057
4058 @item
4059 Generate a two channels signal, specify the channel layout (Front
4060 Center + Back Center) explicitly:
4061 @example
4062 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4063 @end example
4064
4065 @item
4066 Generate white noise:
4067 @example
4068 aevalsrc="-2+random(0)"
4069 @end example
4070
4071 @item
4072 Generate an amplitude modulated signal:
4073 @example
4074 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4075 @end example
4076
4077 @item
4078 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4079 @example
4080 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4081 @end example
4082
4083 @end itemize
4084
4085 @section anullsrc
4086
4087 The null audio source, return unprocessed audio frames. It is mainly useful
4088 as a template and to be employed in analysis / debugging tools, or as
4089 the source for filters which ignore the input data (for example the sox
4090 synth filter).
4091
4092 This source accepts the following options:
4093
4094 @table @option
4095
4096 @item channel_layout, cl
4097
4098 Specifies the channel layout, and can be either an integer or a string
4099 representing a channel layout. The default value of @var{channel_layout}
4100 is "stereo".
4101
4102 Check the channel_layout_map definition in
4103 @file{libavutil/channel_layout.c} for the mapping between strings and
4104 channel layout values.
4105
4106 @item sample_rate, r
4107 Specifies the sample rate, and defaults to 44100.
4108
4109 @item nb_samples, n
4110 Set the number of samples per requested frames.
4111
4112 @end table
4113
4114 @subsection Examples
4115
4116 @itemize
4117 @item
4118 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4119 @example
4120 anullsrc=r=48000:cl=4
4121 @end example
4122
4123 @item
4124 Do the same operation with a more obvious syntax:
4125 @example
4126 anullsrc=r=48000:cl=mono
4127 @end example
4128 @end itemize
4129
4130 All the parameters need to be explicitly defined.
4131
4132 @section flite
4133
4134 Synthesize a voice utterance using the libflite library.
4135
4136 To enable compilation of this filter you need to configure FFmpeg with
4137 @code{--enable-libflite}.
4138
4139 Note that the flite library is not thread-safe.
4140
4141 The filter accepts the following options:
4142
4143 @table @option
4144
4145 @item list_voices
4146 If set to 1, list the names of the available voices and exit
4147 immediately. Default value is 0.
4148
4149 @item nb_samples, n
4150 Set the maximum number of samples per frame. Default value is 512.
4151
4152 @item textfile
4153 Set the filename containing the text to speak.
4154
4155 @item text
4156 Set the text to speak.
4157
4158 @item voice, v
4159 Set the voice to use for the speech synthesis. Default value is
4160 @code{kal}. See also the @var{list_voices} option.
4161 @end table
4162
4163 @subsection Examples
4164
4165 @itemize
4166 @item
4167 Read from file @file{speech.txt}, and synthesize the text using the
4168 standard flite voice:
4169 @example
4170 flite=textfile=speech.txt
4171 @end example
4172
4173 @item
4174 Read the specified text selecting the @code{slt} voice:
4175 @example
4176 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4177 @end example
4178
4179 @item
4180 Input text to ffmpeg:
4181 @example
4182 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4183 @end example
4184
4185 @item
4186 Make @file{ffplay} speak the specified text, using @code{flite} and
4187 the @code{lavfi} device:
4188 @example
4189 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4190 @end example
4191 @end itemize
4192
4193 For more information about libflite, check:
4194 @url{http://www.speech.cs.cmu.edu/flite/}
4195
4196 @section anoisesrc
4197
4198 Generate a noise audio signal.
4199
4200 The filter accepts the following options:
4201
4202 @table @option
4203 @item sample_rate, r
4204 Specify the sample rate. Default value is 48000 Hz.
4205
4206 @item amplitude, a
4207 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4208 is 1.0.
4209
4210 @item duration, d
4211 Specify the duration of the generated audio stream. Not specifying this option
4212 results in noise with an infinite length.
4213
4214 @item color, colour, c
4215 Specify the color of noise. Available noise colors are white, pink, and brown.
4216 Default color is white.
4217
4218 @item seed, s
4219 Specify a value used to seed the PRNG.
4220
4221 @item nb_samples, n
4222 Set the number of samples per each output frame, default is 1024.
4223 @end table
4224
4225 @subsection Examples
4226
4227 @itemize
4228
4229 @item
4230 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4231 @example
4232 anoisesrc=d=60:c=pink:r=44100:a=0.5
4233 @end example
4234 @end itemize
4235
4236 @section sine
4237
4238 Generate an audio signal made of a sine wave with amplitude 1/8.
4239
4240 The audio signal is bit-exact.
4241
4242 The filter accepts the following options:
4243
4244 @table @option
4245
4246 @item frequency, f
4247 Set the carrier frequency. Default is 440 Hz.
4248
4249 @item beep_factor, b
4250 Enable a periodic beep every second with frequency @var{beep_factor} times
4251 the carrier frequency. Default is 0, meaning the beep is disabled.
4252
4253 @item sample_rate, r
4254 Specify the sample rate, default is 44100.
4255
4256 @item duration, d
4257 Specify the duration of the generated audio stream.
4258
4259 @item samples_per_frame
4260 Set the number of samples per output frame.
4261
4262 The expression can contain the following constants:
4263
4264 @table @option
4265 @item n
4266 The (sequential) number of the output audio frame, starting from 0.
4267
4268 @item pts
4269 The PTS (Presentation TimeStamp) of the output audio frame,
4270 expressed in @var{TB} units.
4271
4272 @item t
4273 The PTS of the output audio frame, expressed in seconds.
4274
4275 @item TB
4276 The timebase of the output audio frames.
4277 @end table
4278
4279 Default is @code{1024}.
4280 @end table
4281
4282 @subsection Examples
4283
4284 @itemize
4285
4286 @item
4287 Generate a simple 440 Hz sine wave:
4288 @example
4289 sine
4290 @end example
4291
4292 @item
4293 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4294 @example
4295 sine=220:4:d=5
4296 sine=f=220:b=4:d=5
4297 sine=frequency=220:beep_factor=4:duration=5
4298 @end example
4299
4300 @item
4301 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4302 pattern:
4303 @example
4304 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4305 @end example
4306 @end itemize
4307
4308 @c man end AUDIO SOURCES
4309
4310 @chapter Audio Sinks
4311 @c man begin AUDIO SINKS
4312
4313 Below is a description of the currently available audio sinks.
4314
4315 @section abuffersink
4316
4317 Buffer audio frames, and make them available to the end of filter chain.
4318
4319 This sink is mainly intended for programmatic use, in particular
4320 through the interface defined in @file{libavfilter/buffersink.h}
4321 or the options system.
4322
4323 It accepts a pointer to an AVABufferSinkContext structure, which
4324 defines the incoming buffers' formats, to be passed as the opaque
4325 parameter to @code{avfilter_init_filter} for initialization.
4326 @section anullsink
4327
4328 Null audio sink; do absolutely nothing with the input audio. It is
4329 mainly useful as a template and for use in analysis / debugging
4330 tools.
4331
4332 @c man end AUDIO SINKS
4333
4334 @chapter Video Filters
4335 @c man begin VIDEO FILTERS
4336
4337 When you configure your FFmpeg build, you can disable any of the
4338 existing filters using @code{--disable-filters}.
4339 The configure output will show the video filters included in your
4340 build.
4341
4342 Below is a description of the currently available video filters.
4343
4344 @section alphaextract
4345
4346 Extract the alpha component from the input as a grayscale video. This
4347 is especially useful with the @var{alphamerge} filter.
4348
4349 @section alphamerge
4350
4351 Add or replace the alpha component of the primary input with the
4352 grayscale value of a second input. This is intended for use with
4353 @var{alphaextract} to allow the transmission or storage of frame
4354 sequences that have alpha in a format that doesn't support an alpha
4355 channel.
4356
4357 For example, to reconstruct full frames from a normal YUV-encoded video
4358 and a separate video created with @var{alphaextract}, you might use:
4359 @example
4360 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4361 @end example
4362
4363 Since this filter is designed for reconstruction, it operates on frame
4364 sequences without considering timestamps, and terminates when either
4365 input reaches end of stream. This will cause problems if your encoding
4366 pipeline drops frames. If you're trying to apply an image as an
4367 overlay to a video stream, consider the @var{overlay} filter instead.
4368
4369 @section ass
4370
4371 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4372 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4373 Substation Alpha) subtitles files.
4374
4375 This filter accepts the following option in addition to the common options from
4376 the @ref{subtitles} filter:
4377
4378 @table @option
4379 @item shaping
4380 Set the shaping engine
4381
4382 Available values are:
4383 @table @samp
4384 @item auto
4385 The default libass shaping engine, which is the best available.
4386 @item simple
4387 Fast, font-agnostic shaper that can do only substitutions
4388 @item complex
4389 Slower shaper using OpenType for substitutions and positioning
4390 @end table
4391
4392 The default is @code{auto}.
4393 @end table
4394
4395 @section atadenoise
4396 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4397
4398 The filter accepts the following options:
4399
4400 @table @option
4401 @item 0a
4402 Set threshold A for 1st plane. Default is 0.02.
4403 Valid range is 0 to 0.3.
4404
4405 @item 0b
4406 Set threshold B for 1st plane. Default is 0.04.
4407 Valid range is 0 to 5.
4408
4409 @item 1a
4410 Set threshold A for 2nd plane. Default is 0.02.
4411 Valid range is 0 to 0.3.
4412
4413 @item 1b
4414 Set threshold B for 2nd plane. Default is 0.04.
4415 Valid range is 0 to 5.
4416
4417 @item 2a
4418 Set threshold A for 3rd plane. Default is 0.02.
4419 Valid range is 0 to 0.3.
4420
4421 @item 2b
4422 Set threshold B for 3rd plane. Default is 0.04.
4423 Valid range is 0 to 5.
4424
4425 Threshold A is designed to react on abrupt changes in the input signal and
4426 threshold B is designed to react on continuous changes in the input signal.
4427
4428 @item s
4429 Set number of frames filter will use for averaging. Default is 33. Must be odd
4430 number in range [5, 129].
4431
4432 @item p
4433 Set what planes of frame filter will use for averaging. Default is all.
4434 @end table
4435
4436 @section avgblur
4437
4438 Apply average blur filter.
4439
4440 The filter accepts the following options:
4441
4442 @table @option
4443 @item sizeX
4444 Set horizontal kernel size.
4445
4446 @item planes
4447 Set which planes to filter. By default all planes are filtered.
4448
4449 @item sizeY
4450 Set vertical kernel size, if zero it will be same as @code{sizeX}.
4451 Default is @code{0}.
4452 @end table
4453
4454 @section bbox
4455
4456 Compute the bounding box for the non-black pixels in the input frame
4457 luminance plane.
4458
4459 This filter computes the bounding box containing all the pixels with a
4460 luminance value greater than the minimum allowed value.
4461 The parameters describing the bounding box are printed on the filter
4462 log.
4463
4464 The filter accepts the following option:
4465
4466 @table @option
4467 @item min_val
4468 Set the minimal luminance value. Default is @code{16}.
4469 @end table
4470
4471 @section bitplanenoise
4472
4473 Show and measure bit plane noise.
4474
4475 The filter accepts the following options:
4476
4477 @table @option
4478 @item bitplane
4479 Set which plane to analyze. Default is @code{1}.
4480
4481 @item filter
4482 Filter out noisy pixels from @code{bitplane} set above.
4483 Default is disabled.
4484 @end table
4485
4486 @section blackdetect
4487
4488 Detect video intervals that are (almost) completely black. Can be
4489 useful to detect chapter transitions, commercials, or invalid
4490 recordings. Output lines contains the time for the start, end and
4491 duration of the detected black interval expressed in seconds.
4492
4493 In order to display the output lines, you need to set the loglevel at
4494 least to the AV_LOG_INFO value.
4495
4496 The filter accepts the following options:
4497
4498 @table @option
4499 @item black_min_duration, d
4500 Set the minimum detected black duration expressed in seconds. It must
4501 be a non-negative floating point number.
4502
4503 Default value is 2.0.
4504
4505 @item picture_black_ratio_th, pic_th
4506 Set the threshold for considering a picture "black".
4507 Express the minimum value for the ratio:
4508 @example
4509 @var{nb_black_pixels} / @var{nb_pixels}
4510 @end example
4511
4512 for which a picture is considered black.
4513 Default value is 0.98.
4514
4515 @item pixel_black_th, pix_th
4516 Set the threshold for considering a pixel "black".
4517
4518 The threshold expresses the maximum pixel luminance value for which a
4519 pixel is considered "black". The provided value is scaled according to
4520 the following equation:
4521 @example
4522 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4523 @end example
4524
4525 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4526 the input video format, the range is [0-255] for YUV full-range
4527 formats and [16-235] for YUV non full-range formats.
4528
4529 Default value is 0.10.
4530 @end table
4531
4532 The following example sets the maximum pixel threshold to the minimum
4533 value, and detects only black intervals of 2 or more seconds:
4534 @example
4535 blackdetect=d=2:pix_th=0.00
4536 @end example
4537
4538 @section blackframe
4539
4540 Detect frames that are (almost) completely black. Can be useful to
4541 detect chapter transitions or commercials. Output lines consist of
4542 the frame number of the detected frame, the percentage of blackness,
4543 the position in the file if known or -1 and the timestamp in seconds.
4544
4545 In order to display the output lines, you need to set the loglevel at
4546 least to the AV_LOG_INFO value.
4547
4548 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
4549 The value represents the percentage of pixels in the picture that
4550 are below the threshold value.
4551
4552 It accepts the following parameters:
4553
4554 @table @option
4555
4556 @item amount
4557 The percentage of the pixels that have to be below the threshold; it defaults to
4558 @code{98}.
4559
4560 @item threshold, thresh
4561 The threshold below which a pixel value is considered black; it defaults to
4562 @code{32}.
4563
4564 @end table
4565
4566 @section blend, tblend
4567
4568 Blend two video frames into each other.
4569
4570 The @code{blend} filter takes two input streams and outputs one
4571 stream, the first input is the "top" layer and second input is
4572 "bottom" layer.  By default, the output terminates when the longest input terminates.
4573
4574 The @code{tblend} (time blend) filter takes two consecutive frames
4575 from one single stream, and outputs the result obtained by blending
4576 the new frame on top of the old frame.
4577
4578 A description of the accepted options follows.
4579
4580 @table @option
4581 @item c0_mode
4582 @item c1_mode
4583 @item c2_mode
4584 @item c3_mode
4585 @item all_mode
4586 Set blend mode for specific pixel component or all pixel components in case
4587 of @var{all_mode}. Default value is @code{normal}.
4588
4589 Available values for component modes are:
4590 @table @samp
4591 @item addition
4592 @item addition128
4593 @item and
4594 @item average
4595 @item burn
4596 @item darken
4597 @item difference
4598 @item difference128
4599 @item divide
4600 @item dodge
4601 @item freeze
4602 @item exclusion
4603 @item glow
4604 @item hardlight
4605 @item hardmix
4606 @item heat
4607 @item lighten
4608 @item linearlight
4609 @item multiply
4610 @item multiply128
4611 @item negation
4612 @item normal
4613 @item or
4614 @item overlay
4615 @item phoenix
4616 @item pinlight
4617 @item reflect
4618 @item screen
4619 @item softlight
4620 @item subtract
4621 @item vividlight
4622 @item xor
4623 @end table
4624
4625 @item c0_opacity
4626 @item c1_opacity
4627 @item c2_opacity
4628 @item c3_opacity
4629 @item all_opacity
4630 Set blend opacity for specific pixel component or all pixel components in case
4631 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4632
4633 @item c0_expr
4634 @item c1_expr
4635 @item c2_expr
4636 @item c3_expr
4637 @item all_expr
4638 Set blend expression for specific pixel component or all pixel components in case
4639 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4640
4641 The expressions can use the following variables:
4642
4643 @table @option
4644 @item N
4645 The sequential number of the filtered frame, starting from @code{0}.
4646
4647 @item X
4648 @item Y
4649 the coordinates of the current sample
4650
4651 @item W
4652 @item H
4653 the width and height of currently filtered plane
4654
4655 @item SW
4656 @item SH
4657 Width and height scale depending on the currently filtered plane. It is the
4658 ratio between the corresponding luma plane number of pixels and the current
4659 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4660 @code{0.5,0.5} for chroma planes.
4661
4662 @item T
4663 Time of the current frame, expressed in seconds.
4664
4665 @item TOP, A
4666 Value of pixel component at current location for first video frame (top layer).
4667
4668 @item BOTTOM, B
4669 Value of pixel component at current location for second video frame (bottom layer).
4670 @end table
4671
4672 @item shortest
4673 Force termination when the shortest input terminates. Default is
4674 @code{0}. This option is only defined for the @code{blend} filter.
4675
4676 @item repeatlast
4677 Continue applying the last bottom frame after the end of the stream. A value of
4678 @code{0} disable the filter after the last frame of the bottom layer is reached.
4679 Default is @code{1}. This option is only defined for the @code{blend} filter.
4680 @end table
4681
4682 @subsection Examples
4683
4684 @itemize
4685 @item
4686 Apply transition from bottom layer to top layer in first 10 seconds:
4687 @example
4688 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4689 @end example
4690
4691 @item
4692 Apply 1x1 checkerboard effect:
4693 @example
4694 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4695 @end example
4696
4697 @item
4698 Apply uncover left effect:
4699 @example
4700 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4701 @end example
4702
4703 @item
4704 Apply uncover down effect:
4705 @example
4706 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4707 @end example
4708
4709 @item
4710 Apply uncover up-left effect:
4711 @example
4712 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4713 @end example
4714
4715 @item
4716 Split diagonally video and shows top and bottom layer on each side:
4717 @example
4718 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4719 @end example
4720
4721 @item
4722 Display differences between the current and the previous frame:
4723 @example
4724 tblend=all_mode=difference128
4725 @end example
4726 @end itemize
4727
4728 @section boxblur
4729
4730 Apply a boxblur algorithm to the input video.
4731
4732 It accepts the following parameters:
4733
4734 @table @option
4735
4736 @item luma_radius, lr
4737 @item luma_power, lp
4738 @item chroma_radius, cr
4739 @item chroma_power, cp
4740 @item alpha_radius, ar
4741 @item alpha_power, ap
4742
4743 @end table
4744
4745 A description of the accepted options follows.
4746
4747 @table @option
4748 @item luma_radius, lr
4749 @item chroma_radius, cr
4750 @item alpha_radius, ar
4751 Set an expression for the box radius in pixels used for blurring the
4752 corresponding input plane.
4753
4754 The radius value must be a non-negative number, and must not be
4755 greater than the value of the expression @code{min(w,h)/2} for the
4756 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4757 planes.
4758
4759 Default value for @option{luma_radius} is "2". If not specified,
4760 @option{chroma_radius} and @option{alpha_radius} default to the
4761 corresponding value set for @option{luma_radius}.
4762
4763 The expressions can contain the following constants:
4764 @table @option
4765 @item w
4766 @item h
4767 The input width and height in pixels.
4768
4769 @item cw
4770 @item ch
4771 The input chroma image width and height in pixels.
4772
4773 @item hsub
4774 @item vsub
4775 The horizontal and vertical chroma subsample values. For example, for the
4776 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4777 @end table
4778
4779 @item luma_power, lp
4780 @item chroma_power, cp
4781 @item alpha_power, ap
4782 Specify how many times the boxblur filter is applied to the
4783 corresponding plane.
4784
4785 Default value for @option{luma_power} is 2. If not specified,
4786 @option{chroma_power} and @option{alpha_power} default to the
4787 corresponding value set for @option{luma_power}.
4788
4789 A value of 0 will disable the effect.
4790 @end table
4791
4792 @subsection Examples
4793
4794 @itemize
4795 @item
4796 Apply a boxblur filter with the luma, chroma, and alpha radii
4797 set to 2:
4798 @example
4799 boxblur=luma_radius=2:luma_power=1
4800 boxblur=2:1
4801 @end example
4802
4803 @item
4804 Set the luma radius to 2, and alpha and chroma radius to 0:
4805 @example
4806 boxblur=2:1:cr=0:ar=0
4807 @end example
4808
4809 @item
4810 Set the luma and chroma radii to a fraction of the video dimension:
4811 @example
4812 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4813 @end example
4814 @end itemize
4815
4816 @section bwdif
4817
4818 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4819 Deinterlacing Filter").
4820
4821 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4822 interpolation algorithms.
4823 It accepts the following parameters:
4824
4825 @table @option
4826 @item mode
4827 The interlacing mode to adopt. It accepts one of the following values:
4828
4829 @table @option
4830 @item 0, send_frame
4831 Output one frame for each frame.
4832 @item 1, send_field
4833 Output one frame for each field.
4834 @end table
4835
4836 The default value is @code{send_field}.
4837
4838 @item parity
4839 The picture field parity assumed for the input interlaced video. It accepts one
4840 of the following values:
4841
4842 @table @option
4843 @item 0, tff
4844 Assume the top field is first.
4845 @item 1, bff
4846 Assume the bottom field is first.
4847 @item -1, auto
4848 Enable automatic detection of field parity.
4849 @end table
4850
4851 The default value is @code{auto}.
4852 If the interlacing is unknown or the decoder does not export this information,
4853 top field first will be assumed.
4854
4855 @item deint
4856 Specify which frames to deinterlace. Accept one of the following
4857 values:
4858
4859 @table @option
4860 @item 0, all
4861 Deinterlace all frames.
4862 @item 1, interlaced
4863 Only deinterlace frames marked as interlaced.
4864 @end table
4865
4866 The default value is @code{all}.
4867 @end table
4868
4869 @section chromakey
4870 YUV colorspace color/chroma keying.
4871
4872 The filter accepts the following options:
4873
4874 @table @option
4875 @item color
4876 The color which will be replaced with transparency.
4877
4878 @item similarity
4879 Similarity percentage with the key color.
4880
4881 0.01 matches only the exact key color, while 1.0 matches everything.
4882
4883 @item blend
4884 Blend percentage.
4885
4886 0.0 makes pixels either fully transparent, or not transparent at all.
4887
4888 Higher values result in semi-transparent pixels, with a higher transparency
4889 the more similar the pixels color is to the key color.
4890
4891 @item yuv
4892 Signals that the color passed is already in YUV instead of RGB.
4893
4894 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4895 This can be used to pass exact YUV values as hexadecimal numbers.
4896 @end table
4897
4898 @subsection Examples
4899
4900 @itemize
4901 @item
4902 Make every green pixel in the input image transparent:
4903 @example
4904 ffmpeg -i input.png -vf chromakey=green out.png
4905 @end example
4906
4907 @item
4908 Overlay a greenscreen-video on top of a static black background.
4909 @example
4910 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
4911 @end example
4912 @end itemize
4913
4914 @section ciescope
4915
4916 Display CIE color diagram with pixels overlaid onto it.
4917
4918 The filter accepts the following options:
4919
4920 @table @option
4921 @item system
4922 Set color system.
4923
4924 @table @samp
4925 @item ntsc, 470m
4926 @item ebu, 470bg
4927 @item smpte
4928 @item 240m
4929 @item apple
4930 @item widergb
4931 @item cie1931
4932 @item rec709, hdtv
4933 @item uhdtv, rec2020
4934 @end table
4935
4936 @item cie
4937 Set CIE system.
4938
4939 @table @samp
4940 @item xyy
4941 @item ucs
4942 @item luv
4943 @end table
4944
4945 @item gamuts
4946 Set what gamuts to draw.
4947
4948 See @code{system} option for available values.
4949
4950 @item size, s
4951 Set ciescope size, by default set to 512.
4952
4953 @item intensity, i
4954 Set intensity used to map input pixel values to CIE diagram.
4955
4956 @item contrast
4957 Set contrast used to draw tongue colors that are out of active color system gamut.
4958
4959 @item corrgamma
4960 Correct gamma displayed on scope, by default enabled.
4961
4962 @item showwhite
4963 Show white point on CIE diagram, by default disabled.
4964
4965 @item gamma
4966 Set input gamma. Used only with XYZ input color space.
4967 @end table
4968
4969 @section codecview
4970
4971 Visualize information exported by some codecs.
4972
4973 Some codecs can export information through frames using side-data or other
4974 means. For example, some MPEG based codecs export motion vectors through the
4975 @var{export_mvs} flag in the codec @option{flags2} option.
4976
4977 The filter accepts the following option:
4978
4979 @table @option
4980 @item mv
4981 Set motion vectors to visualize.
4982
4983 Available flags for @var{mv} are:
4984
4985 @table @samp
4986 @item pf
4987 forward predicted MVs of P-frames
4988 @item bf
4989 forward predicted MVs of B-frames
4990 @item bb
4991 backward predicted MVs of B-frames
4992 @end table
4993
4994 @item qp
4995 Display quantization parameters using the chroma planes.
4996
4997 @item mv_type, mvt
4998 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
4999
5000 Available flags for @var{mv_type} are:
5001
5002 @table @samp
5003 @item fp
5004 forward predicted MVs
5005 @item bp
5006 backward predicted MVs
5007 @end table
5008
5009 @item frame_type, ft
5010 Set frame type to visualize motion vectors of.
5011
5012 Available flags for @var{frame_type} are:
5013
5014 @table @samp
5015 @item if
5016 intra-coded frames (I-frames)
5017 @item pf
5018 predicted frames (P-frames)
5019 @item bf
5020 bi-directionally predicted frames (B-frames)
5021 @end table
5022 @end table
5023
5024 @subsection Examples
5025
5026 @itemize
5027 @item
5028 Visualize forward predicted MVs of all frames using @command{ffplay}:
5029 @example
5030 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
5031 @end example
5032
5033 @item
5034 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5035 @example
5036 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5037 @end example
5038 @end itemize
5039
5040 @section colorbalance
5041 Modify intensity of primary colors (red, green and blue) of input frames.
5042
5043 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5044 regions for the red-cyan, green-magenta or blue-yellow balance.
5045
5046 A positive adjustment value shifts the balance towards the primary color, a negative
5047 value towards the complementary color.
5048
5049 The filter accepts the following options:
5050
5051 @table @option
5052 @item rs
5053 @item gs
5054 @item bs
5055 Adjust red, green and blue shadows (darkest pixels).
5056
5057 @item rm
5058 @item gm
5059 @item bm
5060 Adjust red, green and blue midtones (medium pixels).
5061
5062 @item rh
5063 @item gh
5064 @item bh
5065 Adjust red, green and blue highlights (brightest pixels).
5066
5067 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5068 @end table
5069
5070 @subsection Examples
5071
5072 @itemize
5073 @item
5074 Add red color cast to shadows:
5075 @example
5076 colorbalance=rs=.3
5077 @end example
5078 @end itemize
5079
5080 @section colorkey
5081 RGB colorspace color keying.
5082
5083 The filter accepts the following options:
5084
5085 @table @option
5086 @item color
5087 The color which will be replaced with transparency.
5088
5089 @item similarity
5090 Similarity percentage with the key color.
5091
5092 0.01 matches only the exact key color, while 1.0 matches everything.
5093
5094 @item blend
5095 Blend percentage.
5096
5097 0.0 makes pixels either fully transparent, or not transparent at all.
5098
5099 Higher values result in semi-transparent pixels, with a higher transparency
5100 the more similar the pixels color is to the key color.
5101 @end table
5102
5103 @subsection Examples
5104
5105 @itemize
5106 @item
5107 Make every green pixel in the input image transparent:
5108 @example
5109 ffmpeg -i input.png -vf colorkey=green out.png
5110 @end example
5111
5112 @item
5113 Overlay a greenscreen-video on top of a static background image.
5114 @example
5115 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
5116 @end example
5117 @end itemize
5118
5119 @section colorlevels
5120
5121 Adjust video input frames using levels.
5122
5123 The filter accepts the following options:
5124
5125 @table @option
5126 @item rimin
5127 @item gimin
5128 @item bimin
5129 @item aimin
5130 Adjust red, green, blue and alpha input black point.
5131 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5132
5133 @item rimax
5134 @item gimax
5135 @item bimax
5136 @item aimax
5137 Adjust red, green, blue and alpha input white point.
5138 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5139
5140 Input levels are used to lighten highlights (bright tones), darken shadows
5141 (dark tones), change the balance of bright and dark tones.
5142
5143 @item romin
5144 @item gomin
5145 @item bomin
5146 @item aomin
5147 Adjust red, green, blue and alpha output black point.
5148 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5149
5150 @item romax
5151 @item gomax
5152 @item bomax
5153 @item aomax
5154 Adjust red, green, blue and alpha output white point.
5155 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5156
5157 Output levels allows manual selection of a constrained output level range.
5158 @end table
5159
5160 @subsection Examples
5161
5162 @itemize
5163 @item
5164 Make video output darker:
5165 @example
5166 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5167 @end example
5168
5169 @item
5170 Increase contrast:
5171 @example
5172 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5173 @end example
5174
5175 @item
5176 Make video output lighter:
5177 @example
5178 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5179 @end example
5180
5181 @item
5182 Increase brightness:
5183 @example
5184 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5185 @end example
5186 @end itemize
5187
5188 @section colorchannelmixer
5189
5190 Adjust video input frames by re-mixing color channels.
5191
5192 This filter modifies a color channel by adding the values associated to
5193 the other channels of the same pixels. For example if the value to
5194 modify is red, the output value will be:
5195 @example
5196 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5197 @end example
5198
5199 The filter accepts the following options:
5200
5201 @table @option
5202 @item rr
5203 @item rg
5204 @item rb
5205 @item ra
5206 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5207 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5208
5209 @item gr
5210 @item gg
5211 @item gb
5212 @item ga
5213 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5214 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5215
5216 @item br
5217 @item bg
5218 @item bb
5219 @item ba
5220 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5221 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5222
5223 @item ar
5224 @item ag
5225 @item ab
5226 @item aa
5227 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5228 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5229
5230 Allowed ranges for options are @code{[-2.0, 2.0]}.
5231 @end table
5232
5233 @subsection Examples
5234
5235 @itemize
5236 @item
5237 Convert source to grayscale:
5238 @example
5239 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5240 @end example
5241 @item
5242 Simulate sepia tones:
5243 @example
5244 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5245 @end example
5246 @end itemize
5247
5248 @section colormatrix
5249
5250 Convert color matrix.
5251
5252 The filter accepts the following options:
5253
5254 @table @option
5255 @item src
5256 @item dst
5257 Specify the source and destination color matrix. Both values must be
5258 specified.
5259
5260 The accepted values are:
5261 @table @samp
5262 @item bt709
5263 BT.709
5264
5265 @item fcc
5266 FCC
5267
5268 @item bt601
5269 BT.601
5270
5271 @item bt470
5272 BT.470
5273
5274 @item bt470bg
5275 BT.470BG
5276
5277 @item smpte170m
5278 SMPTE-170M
5279
5280 @item smpte240m
5281 SMPTE-240M
5282
5283 @item bt2020
5284 BT.2020
5285 @end table
5286 @end table
5287
5288 For example to convert from BT.601 to SMPTE-240M, use the command:
5289 @example
5290 colormatrix=bt601:smpte240m
5291 @end example
5292
5293 @section colorspace
5294
5295 Convert colorspace, transfer characteristics or color primaries.
5296 Input video needs to have an even size.
5297
5298 The filter accepts the following options:
5299
5300 @table @option
5301 @anchor{all}
5302 @item all
5303 Specify all color properties at once.
5304
5305 The accepted values are:
5306 @table @samp
5307 @item bt470m
5308 BT.470M
5309
5310 @item bt470bg
5311 BT.470BG
5312
5313 @item bt601-6-525
5314 BT.601-6 525
5315
5316 @item bt601-6-625
5317 BT.601-6 625
5318
5319 @item bt709
5320 BT.709
5321
5322 @item smpte170m
5323 SMPTE-170M
5324
5325 @item smpte240m
5326 SMPTE-240M
5327
5328 @item bt2020
5329 BT.2020
5330
5331 @end table
5332
5333 @anchor{space}
5334 @item space
5335 Specify output colorspace.
5336
5337 The accepted values are:
5338 @table @samp
5339 @item bt709
5340 BT.709
5341
5342 @item fcc
5343 FCC
5344
5345 @item bt470bg
5346 BT.470BG or BT.601-6 625
5347
5348 @item smpte170m
5349 SMPTE-170M or BT.601-6 525
5350
5351 @item smpte240m
5352 SMPTE-240M
5353
5354 @item ycgco
5355 YCgCo
5356
5357 @item bt2020ncl
5358 BT.2020 with non-constant luminance
5359
5360 @end table
5361
5362 @anchor{trc}
5363 @item trc
5364 Specify output transfer characteristics.
5365
5366 The accepted values are:
5367 @table @samp
5368 @item bt709
5369 BT.709
5370
5371 @item bt470m
5372 BT.470M
5373
5374 @item bt470bg
5375 BT.470BG
5376
5377 @item gamma22
5378 Constant gamma of 2.2
5379
5380 @item gamma28
5381 Constant gamma of 2.8
5382
5383 @item smpte170m
5384 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5385
5386 @item smpte240m
5387 SMPTE-240M
5388
5389 @item srgb
5390 SRGB
5391
5392 @item iec61966-2-1
5393 iec61966-2-1
5394
5395 @item iec61966-2-4
5396 iec61966-2-4
5397
5398 @item xvycc
5399 xvycc
5400
5401 @item bt2020-10
5402 BT.2020 for 10-bits content
5403
5404 @item bt2020-12
5405 BT.2020 for 12-bits content
5406
5407 @end table
5408
5409 @anchor{primaries}
5410 @item primaries
5411 Specify output color primaries.
5412
5413 The accepted values are:
5414 @table @samp
5415 @item bt709
5416 BT.709
5417
5418 @item bt470m
5419 BT.470M
5420
5421 @item bt470bg
5422 BT.470BG or BT.601-6 625
5423
5424 @item smpte170m
5425 SMPTE-170M or BT.601-6 525
5426
5427 @item smpte240m
5428 SMPTE-240M
5429
5430 @item film
5431 film
5432
5433 @item smpte431
5434 SMPTE-431
5435
5436 @item smpte432
5437 SMPTE-432
5438
5439 @item bt2020
5440 BT.2020
5441
5442 @end table
5443
5444 @anchor{range}
5445 @item range
5446 Specify output color range.
5447
5448 The accepted values are:
5449 @table @samp
5450 @item tv
5451 TV (restricted) range
5452
5453 @item mpeg
5454 MPEG (restricted) range
5455
5456 @item pc
5457 PC (full) range
5458
5459 @item jpeg
5460 JPEG (full) range
5461
5462 @end table
5463
5464 @item format
5465 Specify output color format.
5466
5467 The accepted values are:
5468 @table @samp
5469 @item yuv420p
5470 YUV 4:2:0 planar 8-bits
5471
5472 @item yuv420p10
5473 YUV 4:2:0 planar 10-bits
5474
5475 @item yuv420p12
5476 YUV 4:2:0 planar 12-bits
5477
5478 @item yuv422p
5479 YUV 4:2:2 planar 8-bits
5480
5481 @item yuv422p10
5482 YUV 4:2:2 planar 10-bits
5483
5484 @item yuv422p12
5485 YUV 4:2:2 planar 12-bits
5486
5487 @item yuv444p
5488 YUV 4:4:4 planar 8-bits
5489
5490 @item yuv444p10
5491 YUV 4:4:4 planar 10-bits
5492
5493 @item yuv444p12
5494 YUV 4:4:4 planar 12-bits
5495
5496 @end table
5497
5498 @item fast
5499 Do a fast conversion, which skips gamma/primary correction. This will take
5500 significantly less CPU, but will be mathematically incorrect. To get output
5501 compatible with that produced by the colormatrix filter, use fast=1.
5502
5503 @item dither
5504 Specify dithering mode.
5505
5506 The accepted values are:
5507 @table @samp
5508 @item none
5509 No dithering
5510
5511 @item fsb
5512 Floyd-Steinberg dithering
5513 @end table
5514
5515 @item wpadapt
5516 Whitepoint adaptation mode.
5517
5518 The accepted values are:
5519 @table @samp
5520 @item bradford
5521 Bradford whitepoint adaptation
5522
5523 @item vonkries
5524 von Kries whitepoint adaptation
5525
5526 @item identity
5527 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5528 @end table
5529
5530 @item iall
5531 Override all input properties at once. Same accepted values as @ref{all}.
5532
5533 @item ispace
5534 Override input colorspace. Same accepted values as @ref{space}.
5535
5536 @item iprimaries
5537 Override input color primaries. Same accepted values as @ref{primaries}.
5538
5539 @item itrc
5540 Override input transfer characteristics. Same accepted values as @ref{trc}.
5541
5542 @item irange
5543 Override input color range. Same accepted values as @ref{range}.
5544
5545 @end table
5546
5547 The filter converts the transfer characteristics, color space and color
5548 primaries to the specified user values. The output value, if not specified,
5549 is set to a default value based on the "all" property. If that property is
5550 also not specified, the filter will log an error. The output color range and
5551 format default to the same value as the input color range and format. The
5552 input transfer characteristics, color space, color primaries and color range
5553 should be set on the input data. If any of these are missing, the filter will
5554 log an error and no conversion will take place.
5555
5556 For example to convert the input to SMPTE-240M, use the command:
5557 @example
5558 colorspace=smpte240m
5559 @end example
5560
5561 @section convolution
5562
5563 Apply convolution 3x3 or 5x5 filter.
5564
5565 The filter accepts the following options:
5566
5567 @table @option
5568 @item 0m
5569 @item 1m
5570 @item 2m
5571 @item 3m
5572 Set matrix for each plane.
5573 Matrix is sequence of 9 or 25 signed integers.
5574
5575 @item 0rdiv
5576 @item 1rdiv
5577 @item 2rdiv
5578 @item 3rdiv
5579 Set multiplier for calculated value for each plane.
5580
5581 @item 0bias
5582 @item 1bias
5583 @item 2bias
5584 @item 3bias
5585 Set bias for each plane. This value is added to the result of the multiplication.
5586 Useful for making the overall image brighter or darker. Default is 0.0.
5587 @end table
5588
5589 @subsection Examples
5590
5591 @itemize
5592 @item
5593 Apply sharpen:
5594 @example
5595 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"
5596 @end example
5597
5598 @item
5599 Apply blur:
5600 @example
5601 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"
5602 @end example
5603
5604 @item
5605 Apply edge enhance:
5606 @example
5607 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"
5608 @end example
5609
5610 @item
5611 Apply edge detect:
5612 @example
5613 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"
5614 @end example
5615
5616 @item
5617 Apply emboss:
5618 @example
5619 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"
5620 @end example
5621 @end itemize
5622
5623 @section copy
5624
5625 Copy the input source unchanged to the output. This is mainly useful for
5626 testing purposes.
5627
5628 @anchor{coreimage}
5629 @section coreimage
5630 Video filtering on GPU using Apple's CoreImage API on OSX.
5631
5632 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5633 processed by video hardware. However, software-based OpenGL implementations
5634 exist which means there is no guarantee for hardware processing. It depends on
5635 the respective OSX.
5636
5637 There are many filters and image generators provided by Apple that come with a
5638 large variety of options. The filter has to be referenced by its name along
5639 with its options.
5640
5641 The coreimage filter accepts the following options:
5642 @table @option
5643 @item list_filters
5644 List all available filters and generators along with all their respective
5645 options as well as possible minimum and maximum values along with the default
5646 values.
5647 @example
5648 list_filters=true
5649 @end example
5650
5651 @item filter
5652 Specify all filters by their respective name and options.
5653 Use @var{list_filters} to determine all valid filter names and options.
5654 Numerical options are specified by a float value and are automatically clamped
5655 to their respective value range.  Vector and color options have to be specified
5656 by a list of space separated float values. Character escaping has to be done.
5657 A special option name @code{default} is available to use default options for a
5658 filter.
5659
5660 It is required to specify either @code{default} or at least one of the filter options.
5661 All omitted options are used with their default values.
5662 The syntax of the filter string is as follows:
5663 @example
5664 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5665 @end example
5666
5667 @item output_rect
5668 Specify a rectangle where the output of the filter chain is copied into the
5669 input image. It is given by a list of space separated float values:
5670 @example
5671 output_rect=x\ y\ width\ height
5672 @end example
5673 If not given, the output rectangle equals the dimensions of the input image.
5674 The output rectangle is automatically cropped at the borders of the input
5675 image. Negative values are valid for each component.
5676 @example
5677 output_rect=25\ 25\ 100\ 100
5678 @end example
5679 @end table
5680
5681 Several filters can be chained for successive processing without GPU-HOST
5682 transfers allowing for fast processing of complex filter chains.
5683 Currently, only filters with zero (generators) or exactly one (filters) input
5684 image and one output image are supported. Also, transition filters are not yet
5685 usable as intended.
5686
5687 Some filters generate output images with additional padding depending on the
5688 respective filter kernel. The padding is automatically removed to ensure the
5689 filter output has the same size as the input image.
5690
5691 For image generators, the size of the output image is determined by the
5692 previous output image of the filter chain or the input image of the whole
5693 filterchain, respectively. The generators do not use the pixel information of
5694 this image to generate their output. However, the generated output is
5695 blended onto this image, resulting in partial or complete coverage of the
5696 output image.
5697
5698 The @ref{coreimagesrc} video source can be used for generating input images
5699 which are directly fed into the filter chain. By using it, providing input
5700 images by another video source or an input video is not required.
5701
5702 @subsection Examples
5703
5704 @itemize
5705
5706 @item
5707 List all filters available:
5708 @example
5709 coreimage=list_filters=true
5710 @end example
5711
5712 @item
5713 Use the CIBoxBlur filter with default options to blur an image:
5714 @example
5715 coreimage=filter=CIBoxBlur@@default
5716 @end example
5717
5718 @item
5719 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5720 its center at 100x100 and a radius of 50 pixels:
5721 @example
5722 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5723 @end example
5724
5725 @item
5726 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5727 given as complete and escaped command-line for Apple's standard bash shell:
5728 @example
5729 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5730 @end example
5731 @end itemize
5732
5733 @section crop
5734
5735 Crop the input video to given dimensions.
5736
5737 It accepts the following parameters:
5738
5739 @table @option
5740 @item w, out_w
5741 The width of the output video. It defaults to @code{iw}.
5742 This expression is evaluated only once during the filter
5743 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5744
5745 @item h, out_h
5746 The height of the output video. It defaults to @code{ih}.
5747 This expression is evaluated only once during the filter
5748 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5749
5750 @item x
5751 The horizontal position, in the input video, of the left edge of the output
5752 video. It defaults to @code{(in_w-out_w)/2}.
5753 This expression is evaluated per-frame.
5754
5755 @item y
5756 The vertical position, in the input video, of the top edge of the output video.
5757 It defaults to @code{(in_h-out_h)/2}.
5758 This expression is evaluated per-frame.
5759
5760 @item keep_aspect
5761 If set to 1 will force the output display aspect ratio
5762 to be the same of the input, by changing the output sample aspect
5763 ratio. It defaults to 0.
5764
5765 @item exact
5766 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
5767 width/height/x/y as specified and will not be rounded to nearest smaller value.
5768 It defaults to 0.
5769 @end table
5770
5771 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5772 expressions containing the following constants:
5773
5774 @table @option
5775 @item x
5776 @item y
5777 The computed values for @var{x} and @var{y}. They are evaluated for
5778 each new frame.
5779
5780 @item in_w
5781 @item in_h
5782 The input width and height.
5783
5784 @item iw
5785 @item ih
5786 These are the same as @var{in_w} and @var{in_h}.
5787
5788 @item out_w
5789 @item out_h
5790 The output (cropped) width and height.
5791
5792 @item ow
5793 @item oh
5794 These are the same as @var{out_w} and @var{out_h}.
5795
5796 @item a
5797 same as @var{iw} / @var{ih}
5798
5799 @item sar
5800 input sample aspect ratio
5801
5802 @item dar
5803 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5804
5805 @item hsub
5806 @item vsub
5807 horizontal and vertical chroma subsample values. For example for the
5808 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5809
5810 @item n
5811 The number of the input frame, starting from 0.
5812
5813 @item pos
5814 the position in the file of the input frame, NAN if unknown
5815
5816 @item t
5817 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5818
5819 @end table
5820
5821 The expression for @var{out_w} may depend on the value of @var{out_h},
5822 and the expression for @var{out_h} may depend on @var{out_w}, but they
5823 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5824 evaluated after @var{out_w} and @var{out_h}.
5825
5826 The @var{x} and @var{y} parameters specify the expressions for the
5827 position of the top-left corner of the output (non-cropped) area. They
5828 are evaluated for each frame. If the evaluated value is not valid, it
5829 is approximated to the nearest valid value.
5830
5831 The expression for @var{x} may depend on @var{y}, and the expression
5832 for @var{y} may depend on @var{x}.
5833
5834 @subsection Examples
5835
5836 @itemize
5837 @item
5838 Crop area with size 100x100 at position (12,34).
5839 @example
5840 crop=100:100:12:34
5841 @end example
5842
5843 Using named options, the example above becomes:
5844 @example
5845 crop=w=100:h=100:x=12:y=34
5846 @end example
5847
5848 @item
5849 Crop the central input area with size 100x100:
5850 @example
5851 crop=100:100
5852 @end example
5853
5854 @item
5855 Crop the central input area with size 2/3 of the input video:
5856 @example
5857 crop=2/3*in_w:2/3*in_h
5858 @end example
5859
5860 @item
5861 Crop the input video central square:
5862 @example
5863 crop=out_w=in_h
5864 crop=in_h
5865 @end example
5866
5867 @item
5868 Delimit the rectangle with the top-left corner placed at position
5869 100:100 and the right-bottom corner corresponding to the right-bottom
5870 corner of the input image.
5871 @example
5872 crop=in_w-100:in_h-100:100:100
5873 @end example
5874
5875 @item
5876 Crop 10 pixels from the left and right borders, and 20 pixels from
5877 the top and bottom borders
5878 @example
5879 crop=in_w-2*10:in_h-2*20
5880 @end example
5881
5882 @item
5883 Keep only the bottom right quarter of the input image:
5884 @example
5885 crop=in_w/2:in_h/2:in_w/2:in_h/2
5886 @end example
5887
5888 @item
5889 Crop height for getting Greek harmony:
5890 @example
5891 crop=in_w:1/PHI*in_w
5892 @end example
5893
5894 @item
5895 Apply trembling effect:
5896 @example
5897 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)
5898 @end example
5899
5900 @item
5901 Apply erratic camera effect depending on timestamp:
5902 @example
5903 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)"
5904 @end example
5905
5906 @item
5907 Set x depending on the value of y:
5908 @example
5909 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5910 @end example
5911 @end itemize
5912
5913 @subsection Commands
5914
5915 This filter supports the following commands:
5916 @table @option
5917 @item w, out_w
5918 @item h, out_h
5919 @item x
5920 @item y
5921 Set width/height of the output video and the horizontal/vertical position
5922 in the input video.
5923 The command accepts the same syntax of the corresponding option.
5924
5925 If the specified expression is not valid, it is kept at its current
5926 value.
5927 @end table
5928
5929 @section cropdetect
5930
5931 Auto-detect the crop size.
5932
5933 It calculates the necessary cropping parameters and prints the
5934 recommended parameters via the logging system. The detected dimensions
5935 correspond to the non-black area of the input video.
5936
5937 It accepts the following parameters:
5938
5939 @table @option
5940
5941 @item limit
5942 Set higher black value threshold, which can be optionally specified
5943 from nothing (0) to everything (255 for 8-bit based formats). An intensity
5944 value greater to the set value is considered non-black. It defaults to 24.
5945 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5946 on the bitdepth of the pixel format.
5947
5948 @item round
5949 The value which the width/height should be divisible by. It defaults to
5950 16. The offset is automatically adjusted to center the video. Use 2 to
5951 get only even dimensions (needed for 4:2:2 video). 16 is best when
5952 encoding to most video codecs.
5953
5954 @item reset_count, reset
5955 Set the counter that determines after how many frames cropdetect will
5956 reset the previously detected largest video area and start over to
5957 detect the current optimal crop area. Default value is 0.
5958
5959 This can be useful when channel logos distort the video area. 0
5960 indicates 'never reset', and returns the largest area encountered during
5961 playback.
5962 @end table
5963
5964 @anchor{curves}
5965 @section curves
5966
5967 Apply color adjustments using curves.
5968
5969 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5970 component (red, green and blue) has its values defined by @var{N} key points
5971 tied from each other using a smooth curve. The x-axis represents the pixel
5972 values from the input frame, and the y-axis the new pixel values to be set for
5973 the output frame.
5974
5975 By default, a component curve is defined by the two points @var{(0;0)} and
5976 @var{(1;1)}. This creates a straight line where each original pixel value is
5977 "adjusted" to its own value, which means no change to the image.
5978
5979 The filter allows you to redefine these two points and add some more. A new
5980 curve (using a natural cubic spline interpolation) will be define to pass
5981 smoothly through all these new coordinates. The new defined points needs to be
5982 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5983 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5984 the vector spaces, the values will be clipped accordingly.
5985
5986 The filter accepts the following options:
5987
5988 @table @option
5989 @item preset
5990 Select one of the available color presets. This option can be used in addition
5991 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5992 options takes priority on the preset values.
5993 Available presets are:
5994 @table @samp
5995 @item none
5996 @item color_negative
5997 @item cross_process
5998 @item darker
5999 @item increase_contrast
6000 @item lighter
6001 @item linear_contrast
6002 @item medium_contrast
6003 @item negative
6004 @item strong_contrast
6005 @item vintage
6006 @end table
6007 Default is @code{none}.
6008 @item master, m
6009 Set the master key points. These points will define a second pass mapping. It
6010 is sometimes called a "luminance" or "value" mapping. It can be used with
6011 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
6012 post-processing LUT.
6013 @item red, r
6014 Set the key points for the red component.
6015 @item green, g
6016 Set the key points for the green component.
6017 @item blue, b
6018 Set the key points for the blue component.
6019 @item all
6020 Set the key points for all components (not including master).
6021 Can be used in addition to the other key points component
6022 options. In this case, the unset component(s) will fallback on this
6023 @option{all} setting.
6024 @item psfile
6025 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
6026 @item plot
6027 Save Gnuplot script of the curves in specified file.
6028 @end table
6029
6030 To avoid some filtergraph syntax conflicts, each key points list need to be
6031 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
6032
6033 @subsection Examples
6034
6035 @itemize
6036 @item
6037 Increase slightly the middle level of blue:
6038 @example
6039 curves=blue='0/0 0.5/0.58 1/1'
6040 @end example
6041
6042 @item
6043 Vintage effect:
6044 @example
6045 curves=r='0/0.11 .42/.51 1/0.95':g='0/0 0.50/0.48 1/1':b='0/0.22 .49/.44 1/0.8'
6046 @end example
6047 Here we obtain the following coordinates for each components:
6048 @table @var
6049 @item red
6050 @code{(0;0.11) (0.42;0.51) (1;0.95)}
6051 @item green
6052 @code{(0;0) (0.50;0.48) (1;1)}
6053 @item blue
6054 @code{(0;0.22) (0.49;0.44) (1;0.80)}
6055 @end table
6056
6057 @item
6058 The previous example can also be achieved with the associated built-in preset:
6059 @example
6060 curves=preset=vintage
6061 @end example
6062
6063 @item
6064 Or simply:
6065 @example
6066 curves=vintage
6067 @end example
6068
6069 @item
6070 Use a Photoshop preset and redefine the points of the green component:
6071 @example
6072 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
6073 @end example
6074
6075 @item
6076 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
6077 and @command{gnuplot}:
6078 @example
6079 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
6080 gnuplot -p /tmp/curves.plt
6081 @end example
6082 @end itemize
6083
6084 @section datascope
6085
6086 Video data analysis filter.
6087
6088 This filter shows hexadecimal pixel values of part of video.
6089
6090 The filter accepts the following options:
6091
6092 @table @option
6093 @item size, s
6094 Set output video size.
6095
6096 @item x
6097 Set x offset from where to pick pixels.
6098
6099 @item y
6100 Set y offset from where to pick pixels.
6101
6102 @item mode
6103 Set scope mode, can be one of the following:
6104 @table @samp
6105 @item mono
6106 Draw hexadecimal pixel values with white color on black background.
6107
6108 @item color
6109 Draw hexadecimal pixel values with input video pixel color on black
6110 background.
6111
6112 @item color2
6113 Draw hexadecimal pixel values on color background picked from input video,
6114 the text color is picked in such way so its always visible.
6115 @end table
6116
6117 @item axis
6118 Draw rows and columns numbers on left and top of video.
6119
6120 @item opacity
6121 Set background opacity.
6122 @end table
6123
6124 @section dctdnoiz
6125
6126 Denoise frames using 2D DCT (frequency domain filtering).
6127
6128 This filter is not designed for real time.
6129
6130 The filter accepts the following options:
6131
6132 @table @option
6133 @item sigma, s
6134 Set the noise sigma constant.
6135
6136 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6137 coefficient (absolute value) below this threshold with be dropped.
6138
6139 If you need a more advanced filtering, see @option{expr}.
6140
6141 Default is @code{0}.
6142
6143 @item overlap
6144 Set number overlapping pixels for each block. Since the filter can be slow, you
6145 may want to reduce this value, at the cost of a less effective filter and the
6146 risk of various artefacts.
6147
6148 If the overlapping value doesn't permit processing the whole input width or
6149 height, a warning will be displayed and according borders won't be denoised.
6150
6151 Default value is @var{blocksize}-1, which is the best possible setting.
6152
6153 @item expr, e
6154 Set the coefficient factor expression.
6155
6156 For each coefficient of a DCT block, this expression will be evaluated as a
6157 multiplier value for the coefficient.
6158
6159 If this is option is set, the @option{sigma} option will be ignored.
6160
6161 The absolute value of the coefficient can be accessed through the @var{c}
6162 variable.
6163
6164 @item n
6165 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6166 @var{blocksize}, which is the width and height of the processed blocks.
6167
6168 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6169 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6170 on the speed processing. Also, a larger block size does not necessarily means a
6171 better de-noising.
6172 @end table
6173
6174 @subsection Examples
6175
6176 Apply a denoise with a @option{sigma} of @code{4.5}:
6177 @example
6178 dctdnoiz=4.5
6179 @end example
6180
6181 The same operation can be achieved using the expression system:
6182 @example
6183 dctdnoiz=e='gte(c, 4.5*3)'
6184 @end example
6185
6186 Violent denoise using a block size of @code{16x16}:
6187 @example
6188 dctdnoiz=15:n=4
6189 @end example
6190
6191 @section deband
6192
6193 Remove banding artifacts from input video.
6194 It works by replacing banded pixels with average value of referenced pixels.
6195
6196 The filter accepts the following options:
6197
6198 @table @option
6199 @item 1thr
6200 @item 2thr
6201 @item 3thr
6202 @item 4thr
6203 Set banding detection threshold for each plane. Default is 0.02.
6204 Valid range is 0.00003 to 0.5.
6205 If difference between current pixel and reference pixel is less than threshold,
6206 it will be considered as banded.
6207
6208 @item range, r
6209 Banding detection range in pixels. Default is 16. If positive, random number
6210 in range 0 to set value will be used. If negative, exact absolute value
6211 will be used.
6212 The range defines square of four pixels around current pixel.
6213
6214 @item direction, d
6215 Set direction in radians from which four pixel will be compared. If positive,
6216 random direction from 0 to set direction will be picked. If negative, exact of
6217 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6218 will pick only pixels on same row and -PI/2 will pick only pixels on same
6219 column.
6220
6221 @item blur, b
6222 If enabled, current pixel is compared with average value of all four
6223 surrounding pixels. The default is enabled. If disabled current pixel is
6224 compared with all four surrounding pixels. The pixel is considered banded
6225 if only all four differences with surrounding pixels are less than threshold.
6226
6227 @item coupling, c
6228 If enabled, current pixel is changed if and only if all pixel components are banded,
6229 e.g. banding detection threshold is triggered for all color components.
6230 The default is disabled.
6231 @end table
6232
6233 @anchor{decimate}
6234 @section decimate
6235
6236 Drop duplicated frames at regular intervals.
6237
6238 The filter accepts the following options:
6239
6240 @table @option
6241 @item cycle
6242 Set the number of frames from which one will be dropped. Setting this to
6243 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6244 Default is @code{5}.
6245
6246 @item dupthresh
6247 Set the threshold for duplicate detection. If the difference metric for a frame
6248 is less than or equal to this value, then it is declared as duplicate. Default
6249 is @code{1.1}
6250
6251 @item scthresh
6252 Set scene change threshold. Default is @code{15}.
6253
6254 @item blockx
6255 @item blocky
6256 Set the size of the x and y-axis blocks used during metric calculations.
6257 Larger blocks give better noise suppression, but also give worse detection of
6258 small movements. Must be a power of two. Default is @code{32}.
6259
6260 @item ppsrc
6261 Mark main input as a pre-processed input and activate clean source input
6262 stream. This allows the input to be pre-processed with various filters to help
6263 the metrics calculation while keeping the frame selection lossless. When set to
6264 @code{1}, the first stream is for the pre-processed input, and the second
6265 stream is the clean source from where the kept frames are chosen. Default is
6266 @code{0}.
6267
6268 @item chroma
6269 Set whether or not chroma is considered in the metric calculations. Default is
6270 @code{1}.
6271 @end table
6272
6273 @section deflate
6274
6275 Apply deflate effect to the video.
6276
6277 This filter replaces the pixel by the local(3x3) average by taking into account
6278 only values lower than the pixel.
6279
6280 It accepts the following options:
6281
6282 @table @option
6283 @item threshold0
6284 @item threshold1
6285 @item threshold2
6286 @item threshold3
6287 Limit the maximum change for each plane, default is 65535.
6288 If 0, plane will remain unchanged.
6289 @end table
6290
6291 @section deflicker
6292
6293 Remove temporal frame luminance variations.
6294
6295 It accepts the following options:
6296
6297 @table @option
6298 @item size, s
6299 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
6300
6301 @item mode, m
6302 Set averaging mode to smooth temporal luminance variations.
6303
6304 Available values are:
6305 @table @samp
6306 @item am
6307 Arithmetic mean
6308
6309 @item gm
6310 Geometric mean
6311
6312 @item hm
6313 Harmonic mean
6314
6315 @item qm
6316 Quadratic mean
6317
6318 @item cm
6319 Cubic mean
6320
6321 @item pm
6322 Power mean
6323
6324 @item median
6325 Median
6326 @end table
6327 @end table
6328
6329 @section dejudder
6330
6331 Remove judder produced by partially interlaced telecined content.
6332
6333 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6334 source was partially telecined content then the output of @code{pullup,dejudder}
6335 will have a variable frame rate. May change the recorded frame rate of the
6336 container. Aside from that change, this filter will not affect constant frame
6337 rate video.
6338
6339 The option available in this filter is:
6340 @table @option
6341
6342 @item cycle
6343 Specify the length of the window over which the judder repeats.
6344
6345 Accepts any integer greater than 1. Useful values are:
6346 @table @samp
6347
6348 @item 4
6349 If the original was telecined from 24 to 30 fps (Film to NTSC).
6350
6351 @item 5
6352 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6353
6354 @item 20
6355 If a mixture of the two.
6356 @end table
6357
6358 The default is @samp{4}.
6359 @end table
6360
6361 @section delogo
6362
6363 Suppress a TV station logo by a simple interpolation of the surrounding
6364 pixels. Just set a rectangle covering the logo and watch it disappear
6365 (and sometimes something even uglier appear - your mileage may vary).
6366
6367 It accepts the following parameters:
6368 @table @option
6369
6370 @item x
6371 @item y
6372 Specify the top left corner coordinates of the logo. They must be
6373 specified.
6374
6375 @item w
6376 @item h
6377 Specify the width and height of the logo to clear. They must be
6378 specified.
6379
6380 @item band, t
6381 Specify the thickness of the fuzzy edge of the rectangle (added to
6382 @var{w} and @var{h}). The default value is 1. This option is
6383 deprecated, setting higher values should no longer be necessary and
6384 is not recommended.
6385
6386 @item show
6387 When set to 1, a green rectangle is drawn on the screen to simplify
6388 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6389 The default value is 0.
6390
6391 The rectangle is drawn on the outermost pixels which will be (partly)
6392 replaced with interpolated values. The values of the next pixels
6393 immediately outside this rectangle in each direction will be used to
6394 compute the interpolated pixel values inside the rectangle.
6395
6396 @end table
6397
6398 @subsection Examples
6399
6400 @itemize
6401 @item
6402 Set a rectangle covering the area with top left corner coordinates 0,0
6403 and size 100x77, and a band of size 10:
6404 @example
6405 delogo=x=0:y=0:w=100:h=77:band=10
6406 @end example
6407
6408 @end itemize
6409
6410 @section deshake
6411
6412 Attempt to fix small changes in horizontal and/or vertical shift. This
6413 filter helps remove camera shake from hand-holding a camera, bumping a
6414 tripod, moving on a vehicle, etc.
6415
6416 The filter accepts the following options:
6417
6418 @table @option
6419
6420 @item x
6421 @item y
6422 @item w
6423 @item h
6424 Specify a rectangular area where to limit the search for motion
6425 vectors.
6426 If desired the search for motion vectors can be limited to a
6427 rectangular area of the frame defined by its top left corner, width
6428 and height. These parameters have the same meaning as the drawbox
6429 filter which can be used to visualise the position of the bounding
6430 box.
6431
6432 This is useful when simultaneous movement of subjects within the frame
6433 might be confused for camera motion by the motion vector search.
6434
6435 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6436 then the full frame is used. This allows later options to be set
6437 without specifying the bounding box for the motion vector search.
6438
6439 Default - search the whole frame.
6440
6441 @item rx
6442 @item ry
6443 Specify the maximum extent of movement in x and y directions in the
6444 range 0-64 pixels. Default 16.
6445
6446 @item edge
6447 Specify how to generate pixels to fill blanks at the edge of the
6448 frame. Available values are:
6449 @table @samp
6450 @item blank, 0
6451 Fill zeroes at blank locations
6452 @item original, 1
6453 Original image at blank locations
6454 @item clamp, 2
6455 Extruded edge value at blank locations
6456 @item mirror, 3
6457 Mirrored edge at blank locations
6458 @end table
6459 Default value is @samp{mirror}.
6460
6461 @item blocksize
6462 Specify the blocksize to use for motion search. Range 4-128 pixels,
6463 default 8.
6464
6465 @item contrast
6466 Specify the contrast threshold for blocks. Only blocks with more than
6467 the specified contrast (difference between darkest and lightest
6468 pixels) will be considered. Range 1-255, default 125.
6469
6470 @item search
6471 Specify the search strategy. Available values are:
6472 @table @samp
6473 @item exhaustive, 0
6474 Set exhaustive search
6475 @item less, 1
6476 Set less exhaustive search.
6477 @end table
6478 Default value is @samp{exhaustive}.
6479
6480 @item filename
6481 If set then a detailed log of the motion search is written to the
6482 specified file.
6483
6484 @item opencl
6485 If set to 1, specify using OpenCL capabilities, only available if
6486 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6487
6488 @end table
6489
6490 @section detelecine
6491
6492 Apply an exact inverse of the telecine operation. It requires a predefined
6493 pattern specified using the pattern option which must be the same as that passed
6494 to the telecine filter.
6495
6496 This filter accepts the following options:
6497
6498 @table @option
6499 @item first_field
6500 @table @samp
6501 @item top, t
6502 top field first
6503 @item bottom, b
6504 bottom field first
6505 The default value is @code{top}.
6506 @end table
6507
6508 @item pattern
6509 A string of numbers representing the pulldown pattern you wish to apply.
6510 The default value is @code{23}.
6511
6512 @item start_frame
6513 A number representing position of the first frame with respect to the telecine
6514 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6515 @end table
6516
6517 @section dilation
6518
6519 Apply dilation effect to the video.
6520
6521 This filter replaces the pixel by the local(3x3) maximum.
6522
6523 It accepts the following options:
6524
6525 @table @option
6526 @item threshold0
6527 @item threshold1
6528 @item threshold2
6529 @item threshold3
6530 Limit the maximum change for each plane, default is 65535.
6531 If 0, plane will remain unchanged.
6532
6533 @item coordinates
6534 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6535 pixels are used.
6536
6537 Flags to local 3x3 coordinates maps like this:
6538
6539     1 2 3
6540     4   5
6541     6 7 8
6542 @end table
6543
6544 @section displace
6545
6546 Displace pixels as indicated by second and third input stream.
6547
6548 It takes three input streams and outputs one stream, the first input is the
6549 source, and second and third input are displacement maps.
6550
6551 The second input specifies how much to displace pixels along the
6552 x-axis, while the third input specifies how much to displace pixels
6553 along the y-axis.
6554 If one of displacement map streams terminates, last frame from that
6555 displacement map will be used.
6556
6557 Note that once generated, displacements maps can be reused over and over again.
6558
6559 A description of the accepted options follows.
6560
6561 @table @option
6562 @item edge
6563 Set displace behavior for pixels that are out of range.
6564
6565 Available values are:
6566 @table @samp
6567 @item blank
6568 Missing pixels are replaced by black pixels.
6569
6570 @item smear
6571 Adjacent pixels will spread out to replace missing pixels.
6572
6573 @item wrap
6574 Out of range pixels are wrapped so they point to pixels of other side.
6575 @end table
6576 Default is @samp{smear}.
6577
6578 @end table
6579
6580 @subsection Examples
6581
6582 @itemize
6583 @item
6584 Add ripple effect to rgb input of video size hd720:
6585 @example
6586 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
6587 @end example
6588
6589 @item
6590 Add wave effect to rgb input of video size hd720:
6591 @example
6592 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
6593 @end example
6594 @end itemize
6595
6596 @section drawbox
6597
6598 Draw a colored box on the input image.
6599
6600 It accepts the following parameters:
6601
6602 @table @option
6603 @item x
6604 @item y
6605 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6606
6607 @item width, w
6608 @item height, h
6609 The expressions which specify the width and height of the box; if 0 they are interpreted as
6610 the input width and height. It defaults to 0.
6611
6612 @item color, c
6613 Specify the color of the box to write. For the general syntax of this option,
6614 check the "Color" section in the ffmpeg-utils manual. If the special
6615 value @code{invert} is used, the box edge color is the same as the
6616 video with inverted luma.
6617
6618 @item thickness, t
6619 The expression which sets the thickness of the box edge. Default value is @code{3}.
6620
6621 See below for the list of accepted constants.
6622 @end table
6623
6624 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6625 following constants:
6626
6627 @table @option
6628 @item dar
6629 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6630
6631 @item hsub
6632 @item vsub
6633 horizontal and vertical chroma subsample values. For example for the
6634 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6635
6636 @item in_h, ih
6637 @item in_w, iw
6638 The input width and height.
6639
6640 @item sar
6641 The input sample aspect ratio.
6642
6643 @item x
6644 @item y
6645 The x and y offset coordinates where the box is drawn.
6646
6647 @item w
6648 @item h
6649 The width and height of the drawn box.
6650
6651 @item t
6652 The thickness of the drawn box.
6653
6654 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6655 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6656
6657 @end table
6658
6659 @subsection Examples
6660
6661 @itemize
6662 @item
6663 Draw a black box around the edge of the input image:
6664 @example
6665 drawbox
6666 @end example
6667
6668 @item
6669 Draw a box with color red and an opacity of 50%:
6670 @example
6671 drawbox=10:20:200:60:red@@0.5
6672 @end example
6673
6674 The previous example can be specified as:
6675 @example
6676 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6677 @end example
6678
6679 @item
6680 Fill the box with pink color:
6681 @example
6682 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6683 @end example
6684
6685 @item
6686 Draw a 2-pixel red 2.40:1 mask:
6687 @example
6688 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
6689 @end example
6690 @end itemize
6691
6692 @section drawgrid
6693
6694 Draw a grid on the input image.
6695
6696 It accepts the following parameters:
6697
6698 @table @option
6699 @item x
6700 @item y
6701 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6702
6703 @item width, w
6704 @item height, h
6705 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6706 input width and height, respectively, minus @code{thickness}, so image gets
6707 framed. Default to 0.
6708
6709 @item color, c
6710 Specify the color of the grid. For the general syntax of this option,
6711 check the "Color" section in the ffmpeg-utils manual. If the special
6712 value @code{invert} is used, the grid color is the same as the
6713 video with inverted luma.
6714
6715 @item thickness, t
6716 The expression which sets the thickness of the grid line. Default value is @code{1}.
6717
6718 See below for the list of accepted constants.
6719 @end table
6720
6721 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6722 following constants:
6723
6724 @table @option
6725 @item dar
6726 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6727
6728 @item hsub
6729 @item vsub
6730 horizontal and vertical chroma subsample values. For example for the
6731 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6732
6733 @item in_h, ih
6734 @item in_w, iw
6735 The input grid cell width and height.
6736
6737 @item sar
6738 The input sample aspect ratio.
6739
6740 @item x
6741 @item y
6742 The x and y coordinates of some point of grid intersection (meant to configure offset).
6743
6744 @item w
6745 @item h
6746 The width and height of the drawn cell.
6747
6748 @item t
6749 The thickness of the drawn cell.
6750
6751 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6752 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6753
6754 @end table
6755
6756 @subsection Examples
6757
6758 @itemize
6759 @item
6760 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6761 @example
6762 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6763 @end example
6764
6765 @item
6766 Draw a white 3x3 grid with an opacity of 50%:
6767 @example
6768 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6769 @end example
6770 @end itemize
6771
6772 @anchor{drawtext}
6773 @section drawtext
6774
6775 Draw a text string or text from a specified file on top of a video, using the
6776 libfreetype library.
6777
6778 To enable compilation of this filter, you need to configure FFmpeg with
6779 @code{--enable-libfreetype}.
6780 To enable default font fallback and the @var{font} option you need to
6781 configure FFmpeg with @code{--enable-libfontconfig}.
6782 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6783 @code{--enable-libfribidi}.
6784
6785 @subsection Syntax
6786
6787 It accepts the following parameters:
6788
6789 @table @option
6790
6791 @item box
6792 Used to draw a box around text using the background color.
6793 The value must be either 1 (enable) or 0 (disable).
6794 The default value of @var{box} is 0.
6795
6796 @item boxborderw
6797 Set the width of the border to be drawn around the box using @var{boxcolor}.
6798 The default value of @var{boxborderw} is 0.
6799
6800 @item boxcolor
6801 The color to be used for drawing box around text. For the syntax of this
6802 option, check the "Color" section in the ffmpeg-utils manual.
6803
6804 The default value of @var{boxcolor} is "white".
6805
6806 @item line_spacing
6807 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
6808 The default value of @var{line_spacing} is 0.
6809
6810 @item borderw
6811 Set the width of the border to be drawn around the text using @var{bordercolor}.
6812 The default value of @var{borderw} is 0.
6813
6814 @item bordercolor
6815 Set the color to be used for drawing border around text. For the syntax of this
6816 option, check the "Color" section in the ffmpeg-utils manual.
6817
6818 The default value of @var{bordercolor} is "black".
6819
6820 @item expansion
6821 Select how the @var{text} is expanded. Can be either @code{none},
6822 @code{strftime} (deprecated) or
6823 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6824 below for details.
6825
6826 @item basetime
6827 Set a start time for the count. Value is in microseconds. Only applied
6828 in the deprecated strftime expansion mode. To emulate in normal expansion
6829 mode use the @code{pts} function, supplying the start time (in seconds)
6830 as the second argument.
6831
6832 @item fix_bounds
6833 If true, check and fix text coords to avoid clipping.
6834
6835 @item fontcolor
6836 The color to be used for drawing fonts. For the syntax of this option, check
6837 the "Color" section in the ffmpeg-utils manual.
6838
6839 The default value of @var{fontcolor} is "black".
6840
6841 @item fontcolor_expr
6842 String which is expanded the same way as @var{text} to obtain dynamic
6843 @var{fontcolor} value. By default this option has empty value and is not
6844 processed. When this option is set, it overrides @var{fontcolor} option.
6845
6846 @item font
6847 The font family to be used for drawing text. By default Sans.
6848
6849 @item fontfile
6850 The font file to be used for drawing text. The path must be included.
6851 This parameter is mandatory if the fontconfig support is disabled.
6852
6853 @item alpha
6854 Draw the text applying alpha blending. The value can
6855 be a number between 0.0 and 1.0.
6856 The expression accepts the same variables @var{x, y} as well.
6857 The default value is 1.
6858 Please see @var{fontcolor_expr}.
6859
6860 @item fontsize
6861 The font size to be used for drawing text.
6862 The default value of @var{fontsize} is 16.
6863
6864 @item text_shaping
6865 If set to 1, attempt to shape the text (for example, reverse the order of
6866 right-to-left text and join Arabic characters) before drawing it.
6867 Otherwise, just draw the text exactly as given.
6868 By default 1 (if supported).
6869
6870 @item ft_load_flags
6871 The flags to be used for loading the fonts.
6872
6873 The flags map the corresponding flags supported by libfreetype, and are
6874 a combination of the following values:
6875 @table @var
6876 @item default
6877 @item no_scale
6878 @item no_hinting
6879 @item render
6880 @item no_bitmap
6881 @item vertical_layout
6882 @item force_autohint
6883 @item crop_bitmap
6884 @item pedantic
6885 @item ignore_global_advance_width
6886 @item no_recurse
6887 @item ignore_transform
6888 @item monochrome
6889 @item linear_design
6890 @item no_autohint
6891 @end table
6892
6893 Default value is "default".
6894
6895 For more information consult the documentation for the FT_LOAD_*
6896 libfreetype flags.
6897
6898 @item shadowcolor
6899 The color to be used for drawing a shadow behind the drawn text. For the
6900 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6901
6902 The default value of @var{shadowcolor} is "black".
6903
6904 @item shadowx
6905 @item shadowy
6906 The x and y offsets for the text shadow position with respect to the
6907 position of the text. They can be either positive or negative
6908 values. The default value for both is "0".
6909
6910 @item start_number
6911 The starting frame number for the n/frame_num variable. The default value
6912 is "0".
6913
6914 @item tabsize
6915 The size in number of spaces to use for rendering the tab.
6916 Default value is 4.
6917
6918 @item timecode
6919 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6920 format. It can be used with or without text parameter. @var{timecode_rate}
6921 option must be specified.
6922
6923 @item timecode_rate, rate, r
6924 Set the timecode frame rate (timecode only).
6925
6926 @item tc24hmax
6927 If set to 1, the output of the timecode option will wrap around at 24 hours.
6928 Default is 0 (disabled).
6929
6930 @item text
6931 The text string to be drawn. The text must be a sequence of UTF-8
6932 encoded characters.
6933 This parameter is mandatory if no file is specified with the parameter
6934 @var{textfile}.
6935
6936 @item textfile
6937 A text file containing text to be drawn. The text must be a sequence
6938 of UTF-8 encoded characters.
6939
6940 This parameter is mandatory if no text string is specified with the
6941 parameter @var{text}.
6942
6943 If both @var{text} and @var{textfile} are specified, an error is thrown.
6944
6945 @item reload
6946 If set to 1, the @var{textfile} will be reloaded before each frame.
6947 Be sure to update it atomically, or it may be read partially, or even fail.
6948
6949 @item x
6950 @item y
6951 The expressions which specify the offsets where text will be drawn
6952 within the video frame. They are relative to the top/left border of the
6953 output image.
6954
6955 The default value of @var{x} and @var{y} is "0".
6956
6957 See below for the list of accepted constants and functions.
6958 @end table
6959
6960 The parameters for @var{x} and @var{y} are expressions containing the
6961 following constants and functions:
6962
6963 @table @option
6964 @item dar
6965 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6966
6967 @item hsub
6968 @item vsub
6969 horizontal and vertical chroma subsample values. For example for the
6970 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6971
6972 @item line_h, lh
6973 the height of each text line
6974
6975 @item main_h, h, H
6976 the input height
6977
6978 @item main_w, w, W
6979 the input width
6980
6981 @item max_glyph_a, ascent
6982 the maximum distance from the baseline to the highest/upper grid
6983 coordinate used to place a glyph outline point, for all the rendered
6984 glyphs.
6985 It is a positive value, due to the grid's orientation with the Y axis
6986 upwards.
6987
6988 @item max_glyph_d, descent
6989 the maximum distance from the baseline to the lowest grid coordinate
6990 used to place a glyph outline point, for all the rendered glyphs.
6991 This is a negative value, due to the grid's orientation, with the Y axis
6992 upwards.
6993
6994 @item max_glyph_h
6995 maximum glyph height, that is the maximum height for all the glyphs
6996 contained in the rendered text, it is equivalent to @var{ascent} -
6997 @var{descent}.
6998
6999 @item max_glyph_w
7000 maximum glyph width, that is the maximum width for all the glyphs
7001 contained in the rendered text
7002
7003 @item n
7004 the number of input frame, starting from 0
7005
7006 @item rand(min, max)
7007 return a random number included between @var{min} and @var{max}
7008
7009 @item sar
7010 The input sample aspect ratio.
7011
7012 @item t
7013 timestamp expressed in seconds, NAN if the input timestamp is unknown
7014
7015 @item text_h, th
7016 the height of the rendered text
7017
7018 @item text_w, tw
7019 the width of the rendered text
7020
7021 @item x
7022 @item y
7023 the x and y offset coordinates where the text is drawn.
7024
7025 These parameters allow the @var{x} and @var{y} expressions to refer
7026 each other, so you can for example specify @code{y=x/dar}.
7027 @end table
7028
7029 @anchor{drawtext_expansion}
7030 @subsection Text expansion
7031
7032 If @option{expansion} is set to @code{strftime},
7033 the filter recognizes strftime() sequences in the provided text and
7034 expands them accordingly. Check the documentation of strftime(). This
7035 feature is deprecated.
7036
7037 If @option{expansion} is set to @code{none}, the text is printed verbatim.
7038
7039 If @option{expansion} is set to @code{normal} (which is the default),
7040 the following expansion mechanism is used.
7041
7042 The backslash character @samp{\}, followed by any character, always expands to
7043 the second character.
7044
7045 Sequences of the form @code{%@{...@}} are expanded. The text between the
7046 braces is a function name, possibly followed by arguments separated by ':'.
7047 If the arguments contain special characters or delimiters (':' or '@}'),
7048 they should be escaped.
7049
7050 Note that they probably must also be escaped as the value for the
7051 @option{text} option in the filter argument string and as the filter
7052 argument in the filtergraph description, and possibly also for the shell,
7053 that makes up to four levels of escaping; using a text file avoids these
7054 problems.
7055
7056 The following functions are available:
7057
7058 @table @command
7059
7060 @item expr, e
7061 The expression evaluation result.
7062
7063 It must take one argument specifying the expression to be evaluated,
7064 which accepts the same constants and functions as the @var{x} and
7065 @var{y} values. Note that not all constants should be used, for
7066 example the text size is not known when evaluating the expression, so
7067 the constants @var{text_w} and @var{text_h} will have an undefined
7068 value.
7069
7070 @item expr_int_format, eif
7071 Evaluate the expression's value and output as formatted integer.
7072
7073 The first argument is the expression to be evaluated, just as for the @var{expr} function.
7074 The second argument specifies the output format. Allowed values are @samp{x},
7075 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
7076 @code{printf} function.
7077 The third parameter is optional and sets the number of positions taken by the output.
7078 It can be used to add padding with zeros from the left.
7079
7080 @item gmtime
7081 The time at which the filter is running, expressed in UTC.
7082 It can accept an argument: a strftime() format string.
7083
7084 @item localtime
7085 The time at which the filter is running, expressed in the local time zone.
7086 It can accept an argument: a strftime() format string.
7087
7088 @item metadata
7089 Frame metadata. Takes one or two arguments.
7090
7091 The first argument is mandatory and specifies the metadata key.
7092
7093 The second argument is optional and specifies a default value, used when the
7094 metadata key is not found or empty.
7095
7096 @item n, frame_num
7097 The frame number, starting from 0.
7098
7099 @item pict_type
7100 A 1 character description of the current picture type.
7101
7102 @item pts
7103 The timestamp of the current frame.
7104 It can take up to three arguments.
7105
7106 The first argument is the format of the timestamp; it defaults to @code{flt}
7107 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
7108 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
7109 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
7110 @code{localtime} stands for the timestamp of the frame formatted as
7111 local time zone time.
7112
7113 The second argument is an offset added to the timestamp.
7114
7115 If the format is set to @code{localtime} or @code{gmtime},
7116 a third argument may be supplied: a strftime() format string.
7117 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
7118 @end table
7119
7120 @subsection Examples
7121
7122 @itemize
7123 @item
7124 Draw "Test Text" with font FreeSerif, using the default values for the
7125 optional parameters.
7126
7127 @example
7128 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
7129 @end example
7130
7131 @item
7132 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
7133 and y=50 (counting from the top-left corner of the screen), text is
7134 yellow with a red box around it. Both the text and the box have an
7135 opacity of 20%.
7136
7137 @example
7138 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
7139           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
7140 @end example
7141
7142 Note that the double quotes are not necessary if spaces are not used
7143 within the parameter list.
7144
7145 @item
7146 Show the text at the center of the video frame:
7147 @example
7148 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
7149 @end example
7150
7151 @item
7152 Show the text at a random position, switching to a new position every 30 seconds:
7153 @example
7154 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)"
7155 @end example
7156
7157 @item
7158 Show a text line sliding from right to left in the last row of the video
7159 frame. The file @file{LONG_LINE} is assumed to contain a single line
7160 with no newlines.
7161 @example
7162 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
7163 @end example
7164
7165 @item
7166 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
7167 @example
7168 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
7169 @end example
7170
7171 @item
7172 Draw a single green letter "g", at the center of the input video.
7173 The glyph baseline is placed at half screen height.
7174 @example
7175 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7176 @end example
7177
7178 @item
7179 Show text for 1 second every 3 seconds:
7180 @example
7181 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7182 @end example
7183
7184 @item
7185 Use fontconfig to set the font. Note that the colons need to be escaped.
7186 @example
7187 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7188 @end example
7189
7190 @item
7191 Print the date of a real-time encoding (see strftime(3)):
7192 @example
7193 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7194 @end example
7195
7196 @item
7197 Show text fading in and out (appearing/disappearing):
7198 @example
7199 #!/bin/sh
7200 DS=1.0 # display start
7201 DE=10.0 # display end
7202 FID=1.5 # fade in duration
7203 FOD=5 # fade out duration
7204 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 @}"
7205 @end example
7206
7207 @item
7208 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
7209 and the @option{fontsize} value are included in the @option{y} offset.
7210 @example
7211 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
7212 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
7213 @end example
7214
7215 @end itemize
7216
7217 For more information about libfreetype, check:
7218 @url{http://www.freetype.org/}.
7219
7220 For more information about fontconfig, check:
7221 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7222
7223 For more information about libfribidi, check:
7224 @url{http://fribidi.org/}.
7225
7226 @section edgedetect
7227
7228 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7229
7230 The filter accepts the following options:
7231
7232 @table @option
7233 @item low
7234 @item high
7235 Set low and high threshold values used by the Canny thresholding
7236 algorithm.
7237
7238 The high threshold selects the "strong" edge pixels, which are then
7239 connected through 8-connectivity with the "weak" edge pixels selected
7240 by the low threshold.
7241
7242 @var{low} and @var{high} threshold values must be chosen in the range
7243 [0,1], and @var{low} should be lesser or equal to @var{high}.
7244
7245 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7246 is @code{50/255}.
7247
7248 @item mode
7249 Define the drawing mode.
7250
7251 @table @samp
7252 @item wires
7253 Draw white/gray wires on black background.
7254
7255 @item colormix
7256 Mix the colors to create a paint/cartoon effect.
7257 @end table
7258
7259 Default value is @var{wires}.
7260 @end table
7261
7262 @subsection Examples
7263
7264 @itemize
7265 @item
7266 Standard edge detection with custom values for the hysteresis thresholding:
7267 @example
7268 edgedetect=low=0.1:high=0.4
7269 @end example
7270
7271 @item
7272 Painting effect without thresholding:
7273 @example
7274 edgedetect=mode=colormix:high=0
7275 @end example
7276 @end itemize
7277
7278 @section eq
7279 Set brightness, contrast, saturation and approximate gamma adjustment.
7280
7281 The filter accepts the following options:
7282
7283 @table @option
7284 @item contrast
7285 Set the contrast expression. The value must be a float value in range
7286 @code{-2.0} to @code{2.0}. The default value is "1".
7287
7288 @item brightness
7289 Set the brightness expression. The value must be a float value in
7290 range @code{-1.0} to @code{1.0}. The default value is "0".
7291
7292 @item saturation
7293 Set the saturation expression. The value must be a float in
7294 range @code{0.0} to @code{3.0}. The default value is "1".
7295
7296 @item gamma
7297 Set the gamma expression. The value must be a float in range
7298 @code{0.1} to @code{10.0}.  The default value is "1".
7299
7300 @item gamma_r
7301 Set the gamma expression for red. The value must be a float in
7302 range @code{0.1} to @code{10.0}. The default value is "1".
7303
7304 @item gamma_g
7305 Set the gamma expression for green. The value must be a float in range
7306 @code{0.1} to @code{10.0}. The default value is "1".
7307
7308 @item gamma_b
7309 Set the gamma expression for blue. The value must be a float in range
7310 @code{0.1} to @code{10.0}. The default value is "1".
7311
7312 @item gamma_weight
7313 Set the gamma weight expression. It can be used to reduce the effect
7314 of a high gamma value on bright image areas, e.g. keep them from
7315 getting overamplified and just plain white. The value must be a float
7316 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7317 gamma correction all the way down while @code{1.0} leaves it at its
7318 full strength. Default is "1".
7319
7320 @item eval
7321 Set when the expressions for brightness, contrast, saturation and
7322 gamma expressions are evaluated.
7323
7324 It accepts the following values:
7325 @table @samp
7326 @item init
7327 only evaluate expressions once during the filter initialization or
7328 when a command is processed
7329
7330 @item frame
7331 evaluate expressions for each incoming frame
7332 @end table
7333
7334 Default value is @samp{init}.
7335 @end table
7336
7337 The expressions accept the following parameters:
7338 @table @option
7339 @item n
7340 frame count of the input frame starting from 0
7341
7342 @item pos
7343 byte position of the corresponding packet in the input file, NAN if
7344 unspecified
7345
7346 @item r
7347 frame rate of the input video, NAN if the input frame rate is unknown
7348
7349 @item t
7350 timestamp expressed in seconds, NAN if the input timestamp is unknown
7351 @end table
7352
7353 @subsection Commands
7354 The filter supports the following commands:
7355
7356 @table @option
7357 @item contrast
7358 Set the contrast expression.
7359
7360 @item brightness
7361 Set the brightness expression.
7362
7363 @item saturation
7364 Set the saturation expression.
7365
7366 @item gamma
7367 Set the gamma expression.
7368
7369 @item gamma_r
7370 Set the gamma_r expression.
7371
7372 @item gamma_g
7373 Set gamma_g expression.
7374
7375 @item gamma_b
7376 Set gamma_b expression.
7377
7378 @item gamma_weight
7379 Set gamma_weight expression.
7380
7381 The command accepts the same syntax of the corresponding option.
7382
7383 If the specified expression is not valid, it is kept at its current
7384 value.
7385
7386 @end table
7387
7388 @section erosion
7389
7390 Apply erosion effect to the video.
7391
7392 This filter replaces the pixel by the local(3x3) minimum.
7393
7394 It accepts the following options:
7395
7396 @table @option
7397 @item threshold0
7398 @item threshold1
7399 @item threshold2
7400 @item threshold3
7401 Limit the maximum change for each plane, default is 65535.
7402 If 0, plane will remain unchanged.
7403
7404 @item coordinates
7405 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7406 pixels are used.
7407
7408 Flags to local 3x3 coordinates maps like this:
7409
7410     1 2 3
7411     4   5
7412     6 7 8
7413 @end table
7414
7415 @section extractplanes
7416
7417 Extract color channel components from input video stream into
7418 separate grayscale video streams.
7419
7420 The filter accepts the following option:
7421
7422 @table @option
7423 @item planes
7424 Set plane(s) to extract.
7425
7426 Available values for planes are:
7427 @table @samp
7428 @item y
7429 @item u
7430 @item v
7431 @item a
7432 @item r
7433 @item g
7434 @item b
7435 @end table
7436
7437 Choosing planes not available in the input will result in an error.
7438 That means you cannot select @code{r}, @code{g}, @code{b} planes
7439 with @code{y}, @code{u}, @code{v} planes at same time.
7440 @end table
7441
7442 @subsection Examples
7443
7444 @itemize
7445 @item
7446 Extract luma, u and v color channel component from input video frame
7447 into 3 grayscale outputs:
7448 @example
7449 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
7450 @end example
7451 @end itemize
7452
7453 @section elbg
7454
7455 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7456
7457 For each input image, the filter will compute the optimal mapping from
7458 the input to the output given the codebook length, that is the number
7459 of distinct output colors.
7460
7461 This filter accepts the following options.
7462
7463 @table @option
7464 @item codebook_length, l
7465 Set codebook length. The value must be a positive integer, and
7466 represents the number of distinct output colors. Default value is 256.
7467
7468 @item nb_steps, n
7469 Set the maximum number of iterations to apply for computing the optimal
7470 mapping. The higher the value the better the result and the higher the
7471 computation time. Default value is 1.
7472
7473 @item seed, s
7474 Set a random seed, must be an integer included between 0 and
7475 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7476 will try to use a good random seed on a best effort basis.
7477
7478 @item pal8
7479 Set pal8 output pixel format. This option does not work with codebook
7480 length greater than 256.
7481 @end table
7482
7483 @section fade
7484
7485 Apply a fade-in/out effect to the input video.
7486
7487 It accepts the following parameters:
7488
7489 @table @option
7490 @item type, t
7491 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7492 effect.
7493 Default is @code{in}.
7494
7495 @item start_frame, s
7496 Specify the number of the frame to start applying the fade
7497 effect at. Default is 0.
7498
7499 @item nb_frames, n
7500 The number of frames that the fade effect lasts. At the end of the
7501 fade-in effect, the output video will have the same intensity as the input video.
7502 At the end of the fade-out transition, the output video will be filled with the
7503 selected @option{color}.
7504 Default is 25.
7505
7506 @item alpha
7507 If set to 1, fade only alpha channel, if one exists on the input.
7508 Default value is 0.
7509
7510 @item start_time, st
7511 Specify the timestamp (in seconds) of the frame to start to apply the fade
7512 effect. If both start_frame and start_time are specified, the fade will start at
7513 whichever comes last.  Default is 0.
7514
7515 @item duration, d
7516 The number of seconds for which the fade effect has to last. At the end of the
7517 fade-in effect the output video will have the same intensity as the input video,
7518 at the end of the fade-out transition the output video will be filled with the
7519 selected @option{color}.
7520 If both duration and nb_frames are specified, duration is used. Default is 0
7521 (nb_frames is used by default).
7522
7523 @item color, c
7524 Specify the color of the fade. Default is "black".
7525 @end table
7526
7527 @subsection Examples
7528
7529 @itemize
7530 @item
7531 Fade in the first 30 frames of video:
7532 @example
7533 fade=in:0:30
7534 @end example
7535
7536 The command above is equivalent to:
7537 @example
7538 fade=t=in:s=0:n=30
7539 @end example
7540
7541 @item
7542 Fade out the last 45 frames of a 200-frame video:
7543 @example
7544 fade=out:155:45
7545 fade=type=out:start_frame=155:nb_frames=45
7546 @end example
7547
7548 @item
7549 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7550 @example
7551 fade=in:0:25, fade=out:975:25
7552 @end example
7553
7554 @item
7555 Make the first 5 frames yellow, then fade in from frame 5-24:
7556 @example
7557 fade=in:5:20:color=yellow
7558 @end example
7559
7560 @item
7561 Fade in alpha over first 25 frames of video:
7562 @example
7563 fade=in:0:25:alpha=1
7564 @end example
7565
7566 @item
7567 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7568 @example
7569 fade=t=in:st=5.5:d=0.5
7570 @end example
7571
7572 @end itemize
7573
7574 @section fftfilt
7575 Apply arbitrary expressions to samples in frequency domain
7576
7577 @table @option
7578 @item dc_Y
7579 Adjust the dc value (gain) of the luma plane of the image. The filter
7580 accepts an integer value in range @code{0} to @code{1000}. The default
7581 value is set to @code{0}.
7582
7583 @item dc_U
7584 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7585 filter accepts an integer value in range @code{0} to @code{1000}. The
7586 default value is set to @code{0}.
7587
7588 @item dc_V
7589 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7590 filter accepts an integer value in range @code{0} to @code{1000}. The
7591 default value is set to @code{0}.
7592
7593 @item weight_Y
7594 Set the frequency domain weight expression for the luma plane.
7595
7596 @item weight_U
7597 Set the frequency domain weight expression for the 1st chroma plane.
7598
7599 @item weight_V
7600 Set the frequency domain weight expression for the 2nd chroma plane.
7601
7602 The filter accepts the following variables:
7603 @item X
7604 @item Y
7605 The coordinates of the current sample.
7606
7607 @item W
7608 @item H
7609 The width and height of the image.
7610 @end table
7611
7612 @subsection Examples
7613
7614 @itemize
7615 @item
7616 High-pass:
7617 @example
7618 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7619 @end example
7620
7621 @item
7622 Low-pass:
7623 @example
7624 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7625 @end example
7626
7627 @item
7628 Sharpen:
7629 @example
7630 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7631 @end example
7632
7633 @item
7634 Blur:
7635 @example
7636 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7637 @end example
7638
7639 @end itemize
7640
7641 @section field
7642
7643 Extract a single field from an interlaced image using stride
7644 arithmetic to avoid wasting CPU time. The output frames are marked as
7645 non-interlaced.
7646
7647 The filter accepts the following options:
7648
7649 @table @option
7650 @item type
7651 Specify whether to extract the top (if the value is @code{0} or
7652 @code{top}) or the bottom field (if the value is @code{1} or
7653 @code{bottom}).
7654 @end table
7655
7656 @section fieldhint
7657
7658 Create new frames by copying the top and bottom fields from surrounding frames
7659 supplied as numbers by the hint file.
7660
7661 @table @option
7662 @item hint
7663 Set file containing hints: absolute/relative frame numbers.
7664
7665 There must be one line for each frame in a clip. Each line must contain two
7666 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7667 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7668 is current frame number for @code{absolute} mode or out of [-1, 1] range
7669 for @code{relative} mode. First number tells from which frame to pick up top
7670 field and second number tells from which frame to pick up bottom field.
7671
7672 If optionally followed by @code{+} output frame will be marked as interlaced,
7673 else if followed by @code{-} output frame will be marked as progressive, else
7674 it will be marked same as input frame.
7675 If line starts with @code{#} or @code{;} that line is skipped.
7676
7677 @item mode
7678 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7679 @end table
7680
7681 Example of first several lines of @code{hint} file for @code{relative} mode:
7682 @example
7683 0,0 - # first frame
7684 1,0 - # second frame, use third's frame top field and second's frame bottom field
7685 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7686 1,0 -
7687 0,0 -
7688 0,0 -
7689 1,0 -
7690 1,0 -
7691 1,0 -
7692 0,0 -
7693 0,0 -
7694 1,0 -
7695 1,0 -
7696 1,0 -
7697 0,0 -
7698 @end example
7699
7700 @section fieldmatch
7701
7702 Field matching filter for inverse telecine. It is meant to reconstruct the
7703 progressive frames from a telecined stream. The filter does not drop duplicated
7704 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7705 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7706
7707 The separation of the field matching and the decimation is notably motivated by
7708 the possibility of inserting a de-interlacing filter fallback between the two.
7709 If the source has mixed telecined and real interlaced content,
7710 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7711 But these remaining combed frames will be marked as interlaced, and thus can be
7712 de-interlaced by a later filter such as @ref{yadif} before decimation.
7713
7714 In addition to the various configuration options, @code{fieldmatch} can take an
7715 optional second stream, activated through the @option{ppsrc} option. If
7716 enabled, the frames reconstruction will be based on the fields and frames from
7717 this second stream. This allows the first input to be pre-processed in order to
7718 help the various algorithms of the filter, while keeping the output lossless
7719 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7720 or brightness/contrast adjustments can help.
7721
7722 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7723 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7724 which @code{fieldmatch} is based on. While the semantic and usage are very
7725 close, some behaviour and options names can differ.
7726
7727 The @ref{decimate} filter currently only works for constant frame rate input.
7728 If your input has mixed telecined (30fps) and progressive content with a lower
7729 framerate like 24fps use the following filterchain to produce the necessary cfr
7730 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7731
7732 The filter accepts the following options:
7733
7734 @table @option
7735 @item order
7736 Specify the assumed field order of the input stream. Available values are:
7737
7738 @table @samp
7739 @item auto
7740 Auto detect parity (use FFmpeg's internal parity value).
7741 @item bff
7742 Assume bottom field first.
7743 @item tff
7744 Assume top field first.
7745 @end table
7746
7747 Note that it is sometimes recommended not to trust the parity announced by the
7748 stream.
7749
7750 Default value is @var{auto}.
7751
7752 @item mode
7753 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7754 sense that it won't risk creating jerkiness due to duplicate frames when
7755 possible, but if there are bad edits or blended fields it will end up
7756 outputting combed frames when a good match might actually exist. On the other
7757 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7758 but will almost always find a good frame if there is one. The other values are
7759 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7760 jerkiness and creating duplicate frames versus finding good matches in sections
7761 with bad edits, orphaned fields, blended fields, etc.
7762
7763 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7764
7765 Available values are:
7766
7767 @table @samp
7768 @item pc
7769 2-way matching (p/c)
7770 @item pc_n
7771 2-way matching, and trying 3rd match if still combed (p/c + n)
7772 @item pc_u
7773 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7774 @item pc_n_ub
7775 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7776 still combed (p/c + n + u/b)
7777 @item pcn
7778 3-way matching (p/c/n)
7779 @item pcn_ub
7780 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7781 detected as combed (p/c/n + u/b)
7782 @end table
7783
7784 The parenthesis at the end indicate the matches that would be used for that
7785 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7786 @var{top}).
7787
7788 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7789 the slowest.
7790
7791 Default value is @var{pc_n}.
7792
7793 @item ppsrc
7794 Mark the main input stream as a pre-processed input, and enable the secondary
7795 input stream as the clean source to pick the fields from. See the filter
7796 introduction for more details. It is similar to the @option{clip2} feature from
7797 VFM/TFM.
7798
7799 Default value is @code{0} (disabled).
7800
7801 @item field
7802 Set the field to match from. It is recommended to set this to the same value as
7803 @option{order} unless you experience matching failures with that setting. In
7804 certain circumstances changing the field that is used to match from can have a
7805 large impact on matching performance. Available values are:
7806
7807 @table @samp
7808 @item auto
7809 Automatic (same value as @option{order}).
7810 @item bottom
7811 Match from the bottom field.
7812 @item top
7813 Match from the top field.
7814 @end table
7815
7816 Default value is @var{auto}.
7817
7818 @item mchroma
7819 Set whether or not chroma is included during the match comparisons. In most
7820 cases it is recommended to leave this enabled. You should set this to @code{0}
7821 only if your clip has bad chroma problems such as heavy rainbowing or other
7822 artifacts. Setting this to @code{0} could also be used to speed things up at
7823 the cost of some accuracy.
7824
7825 Default value is @code{1}.
7826
7827 @item y0
7828 @item y1
7829 These define an exclusion band which excludes the lines between @option{y0} and
7830 @option{y1} from being included in the field matching decision. An exclusion
7831 band can be used to ignore subtitles, a logo, or other things that may
7832 interfere with the matching. @option{y0} sets the starting scan line and
7833 @option{y1} sets the ending line; all lines in between @option{y0} and
7834 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7835 @option{y0} and @option{y1} to the same value will disable the feature.
7836 @option{y0} and @option{y1} defaults to @code{0}.
7837
7838 @item scthresh
7839 Set the scene change detection threshold as a percentage of maximum change on
7840 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7841 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7842 @option{scthresh} is @code{[0.0, 100.0]}.
7843
7844 Default value is @code{12.0}.
7845
7846 @item combmatch
7847 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7848 account the combed scores of matches when deciding what match to use as the
7849 final match. Available values are:
7850
7851 @table @samp
7852 @item none
7853 No final matching based on combed scores.
7854 @item sc
7855 Combed scores are only used when a scene change is detected.
7856 @item full
7857 Use combed scores all the time.
7858 @end table
7859
7860 Default is @var{sc}.
7861
7862 @item combdbg
7863 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7864 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7865 Available values are:
7866
7867 @table @samp
7868 @item none
7869 No forced calculation.
7870 @item pcn
7871 Force p/c/n calculations.
7872 @item pcnub
7873 Force p/c/n/u/b calculations.
7874 @end table
7875
7876 Default value is @var{none}.
7877
7878 @item cthresh
7879 This is the area combing threshold used for combed frame detection. This
7880 essentially controls how "strong" or "visible" combing must be to be detected.
7881 Larger values mean combing must be more visible and smaller values mean combing
7882 can be less visible or strong and still be detected. Valid settings are from
7883 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7884 be detected as combed). This is basically a pixel difference value. A good
7885 range is @code{[8, 12]}.
7886
7887 Default value is @code{9}.
7888
7889 @item chroma
7890 Sets whether or not chroma is considered in the combed frame decision.  Only
7891 disable this if your source has chroma problems (rainbowing, etc.) that are
7892 causing problems for the combed frame detection with chroma enabled. Actually,
7893 using @option{chroma}=@var{0} is usually more reliable, except for the case
7894 where there is chroma only combing in the source.
7895
7896 Default value is @code{0}.
7897
7898 @item blockx
7899 @item blocky
7900 Respectively set the x-axis and y-axis size of the window used during combed
7901 frame detection. This has to do with the size of the area in which
7902 @option{combpel} pixels are required to be detected as combed for a frame to be
7903 declared combed. See the @option{combpel} parameter description for more info.
7904 Possible values are any number that is a power of 2 starting at 4 and going up
7905 to 512.
7906
7907 Default value is @code{16}.
7908
7909 @item combpel
7910 The number of combed pixels inside any of the @option{blocky} by
7911 @option{blockx} size blocks on the frame for the frame to be detected as
7912 combed. While @option{cthresh} controls how "visible" the combing must be, this
7913 setting controls "how much" combing there must be in any localized area (a
7914 window defined by the @option{blockx} and @option{blocky} settings) on the
7915 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7916 which point no frames will ever be detected as combed). This setting is known
7917 as @option{MI} in TFM/VFM vocabulary.
7918
7919 Default value is @code{80}.
7920 @end table
7921
7922 @anchor{p/c/n/u/b meaning}
7923 @subsection p/c/n/u/b meaning
7924
7925 @subsubsection p/c/n
7926
7927 We assume the following telecined stream:
7928
7929 @example
7930 Top fields:     1 2 2 3 4
7931 Bottom fields:  1 2 3 4 4
7932 @end example
7933
7934 The numbers correspond to the progressive frame the fields relate to. Here, the
7935 first two frames are progressive, the 3rd and 4th are combed, and so on.
7936
7937 When @code{fieldmatch} is configured to run a matching from bottom
7938 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7939
7940 @example
7941 Input stream:
7942                 T     1 2 2 3 4
7943                 B     1 2 3 4 4   <-- matching reference
7944
7945 Matches:              c c n n c
7946
7947 Output stream:
7948                 T     1 2 3 4 4
7949                 B     1 2 3 4 4
7950 @end example
7951
7952 As a result of the field matching, we can see that some frames get duplicated.
7953 To perform a complete inverse telecine, you need to rely on a decimation filter
7954 after this operation. See for instance the @ref{decimate} filter.
7955
7956 The same operation now matching from top fields (@option{field}=@var{top})
7957 looks like this:
7958
7959 @example
7960 Input stream:
7961                 T     1 2 2 3 4   <-- matching reference
7962                 B     1 2 3 4 4
7963
7964 Matches:              c c p p c
7965
7966 Output stream:
7967                 T     1 2 2 3 4
7968                 B     1 2 2 3 4
7969 @end example
7970
7971 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7972 basically, they refer to the frame and field of the opposite parity:
7973
7974 @itemize
7975 @item @var{p} matches the field of the opposite parity in the previous frame
7976 @item @var{c} matches the field of the opposite parity in the current frame
7977 @item @var{n} matches the field of the opposite parity in the next frame
7978 @end itemize
7979
7980 @subsubsection u/b
7981
7982 The @var{u} and @var{b} matching are a bit special in the sense that they match
7983 from the opposite parity flag. In the following examples, we assume that we are
7984 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7985 'x' is placed above and below each matched fields.
7986
7987 With bottom matching (@option{field}=@var{bottom}):
7988 @example
7989 Match:           c         p           n          b          u
7990
7991                  x       x               x        x          x
7992   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7993   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7994                  x         x           x        x              x
7995
7996 Output frames:
7997                  2          1          2          2          2
7998                  2          2          2          1          3
7999 @end example
8000
8001 With top matching (@option{field}=@var{top}):
8002 @example
8003 Match:           c         p           n          b          u
8004
8005                  x         x           x        x              x
8006   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8007   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8008                  x       x               x        x          x
8009
8010 Output frames:
8011                  2          2          2          1          2
8012                  2          1          3          2          2
8013 @end example
8014
8015 @subsection Examples
8016
8017 Simple IVTC of a top field first telecined stream:
8018 @example
8019 fieldmatch=order=tff:combmatch=none, decimate
8020 @end example
8021
8022 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
8023 @example
8024 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
8025 @end example
8026
8027 @section fieldorder
8028
8029 Transform the field order of the input video.
8030
8031 It accepts the following parameters:
8032
8033 @table @option
8034
8035 @item order
8036 The output field order. Valid values are @var{tff} for top field first or @var{bff}
8037 for bottom field first.
8038 @end table
8039
8040 The default value is @samp{tff}.
8041
8042 The transformation is done by shifting the picture content up or down
8043 by one line, and filling the remaining line with appropriate picture content.
8044 This method is consistent with most broadcast field order converters.
8045
8046 If the input video is not flagged as being interlaced, or it is already
8047 flagged as being of the required output field order, then this filter does
8048 not alter the incoming video.
8049
8050 It is very useful when converting to or from PAL DV material,
8051 which is bottom field first.
8052
8053 For example:
8054 @example
8055 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
8056 @end example
8057
8058 @section fifo, afifo
8059
8060 Buffer input images and send them when they are requested.
8061
8062 It is mainly useful when auto-inserted by the libavfilter
8063 framework.
8064
8065 It does not take parameters.
8066
8067 @section find_rect
8068
8069 Find a rectangular object
8070
8071 It accepts the following options:
8072
8073 @table @option
8074 @item object
8075 Filepath of the object image, needs to be in gray8.
8076
8077 @item threshold
8078 Detection threshold, default is 0.5.
8079
8080 @item mipmaps
8081 Number of mipmaps, default is 3.
8082
8083 @item xmin, ymin, xmax, ymax
8084 Specifies the rectangle in which to search.
8085 @end table
8086
8087 @subsection Examples
8088
8089 @itemize
8090 @item
8091 Generate a representative palette of a given video using @command{ffmpeg}:
8092 @example
8093 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8094 @end example
8095 @end itemize
8096
8097 @section cover_rect
8098
8099 Cover a rectangular object
8100
8101 It accepts the following options:
8102
8103 @table @option
8104 @item cover
8105 Filepath of the optional cover image, needs to be in yuv420.
8106
8107 @item mode
8108 Set covering mode.
8109
8110 It accepts the following values:
8111 @table @samp
8112 @item cover
8113 cover it by the supplied image
8114 @item blur
8115 cover it by interpolating the surrounding pixels
8116 @end table
8117
8118 Default value is @var{blur}.
8119 @end table
8120
8121 @subsection Examples
8122
8123 @itemize
8124 @item
8125 Generate a representative palette of a given video using @command{ffmpeg}:
8126 @example
8127 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8128 @end example
8129 @end itemize
8130
8131 @anchor{format}
8132 @section format
8133
8134 Convert the input video to one of the specified pixel formats.
8135 Libavfilter will try to pick one that is suitable as input to
8136 the next filter.
8137
8138 It accepts the following parameters:
8139 @table @option
8140
8141 @item pix_fmts
8142 A '|'-separated list of pixel format names, such as
8143 "pix_fmts=yuv420p|monow|rgb24".
8144
8145 @end table
8146
8147 @subsection Examples
8148
8149 @itemize
8150 @item
8151 Convert the input video to the @var{yuv420p} format
8152 @example
8153 format=pix_fmts=yuv420p
8154 @end example
8155
8156 Convert the input video to any of the formats in the list
8157 @example
8158 format=pix_fmts=yuv420p|yuv444p|yuv410p
8159 @end example
8160 @end itemize
8161
8162 @anchor{fps}
8163 @section fps
8164
8165 Convert the video to specified constant frame rate by duplicating or dropping
8166 frames as necessary.
8167
8168 It accepts the following parameters:
8169 @table @option
8170
8171 @item fps
8172 The desired output frame rate. The default is @code{25}.
8173
8174 @item round
8175 Rounding method.
8176
8177 Possible values are:
8178 @table @option
8179 @item zero
8180 zero round towards 0
8181 @item inf
8182 round away from 0
8183 @item down
8184 round towards -infinity
8185 @item up
8186 round towards +infinity
8187 @item near
8188 round to nearest
8189 @end table
8190 The default is @code{near}.
8191
8192 @item start_time
8193 Assume the first PTS should be the given value, in seconds. This allows for
8194 padding/trimming at the start of stream. By default, no assumption is made
8195 about the first frame's expected PTS, so no padding or trimming is done.
8196 For example, this could be set to 0 to pad the beginning with duplicates of
8197 the first frame if a video stream starts after the audio stream or to trim any
8198 frames with a negative PTS.
8199
8200 @end table
8201
8202 Alternatively, the options can be specified as a flat string:
8203 @var{fps}[:@var{round}].
8204
8205 See also the @ref{setpts} filter.
8206
8207 @subsection Examples
8208
8209 @itemize
8210 @item
8211 A typical usage in order to set the fps to 25:
8212 @example
8213 fps=fps=25
8214 @end example
8215
8216 @item
8217 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8218 @example
8219 fps=fps=film:round=near
8220 @end example
8221 @end itemize
8222
8223 @section framepack
8224
8225 Pack two different video streams into a stereoscopic video, setting proper
8226 metadata on supported codecs. The two views should have the same size and
8227 framerate and processing will stop when the shorter video ends. Please note
8228 that you may conveniently adjust view properties with the @ref{scale} and
8229 @ref{fps} filters.
8230
8231 It accepts the following parameters:
8232 @table @option
8233
8234 @item format
8235 The desired packing format. Supported values are:
8236
8237 @table @option
8238
8239 @item sbs
8240 The views are next to each other (default).
8241
8242 @item tab
8243 The views are on top of each other.
8244
8245 @item lines
8246 The views are packed by line.
8247
8248 @item columns
8249 The views are packed by column.
8250
8251 @item frameseq
8252 The views are temporally interleaved.
8253
8254 @end table
8255
8256 @end table
8257
8258 Some examples:
8259
8260 @example
8261 # Convert left and right views into a frame-sequential video
8262 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8263
8264 # Convert views into a side-by-side video with the same output resolution as the input
8265 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
8266 @end example
8267
8268 @section framerate
8269
8270 Change the frame rate by interpolating new video output frames from the source
8271 frames.
8272
8273 This filter is not designed to function correctly with interlaced media. If
8274 you wish to change the frame rate of interlaced media then you are required
8275 to deinterlace before this filter and re-interlace after this filter.
8276
8277 A description of the accepted options follows.
8278
8279 @table @option
8280 @item fps
8281 Specify the output frames per second. This option can also be specified
8282 as a value alone. The default is @code{50}.
8283
8284 @item interp_start
8285 Specify the start of a range where the output frame will be created as a
8286 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8287 the default is @code{15}.
8288
8289 @item interp_end
8290 Specify the end of a range where the output frame will be created as a
8291 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8292 the default is @code{240}.
8293
8294 @item scene
8295 Specify the level at which a scene change is detected as a value between
8296 0 and 100 to indicate a new scene; a low value reflects a low
8297 probability for the current frame to introduce a new scene, while a higher
8298 value means the current frame is more likely to be one.
8299 The default is @code{7}.
8300
8301 @item flags
8302 Specify flags influencing the filter process.
8303
8304 Available value for @var{flags} is:
8305
8306 @table @option
8307 @item scene_change_detect, scd
8308 Enable scene change detection using the value of the option @var{scene}.
8309 This flag is enabled by default.
8310 @end table
8311 @end table
8312
8313 @section framestep
8314
8315 Select one frame every N-th frame.
8316
8317 This filter accepts the following option:
8318 @table @option
8319 @item step
8320 Select frame after every @code{step} frames.
8321 Allowed values are positive integers higher than 0. Default value is @code{1}.
8322 @end table
8323
8324 @anchor{frei0r}
8325 @section frei0r
8326
8327 Apply a frei0r effect to the input video.
8328
8329 To enable the compilation of this filter, you need to install the frei0r
8330 header and configure FFmpeg with @code{--enable-frei0r}.
8331
8332 It accepts the following parameters:
8333
8334 @table @option
8335
8336 @item filter_name
8337 The name of the frei0r effect to load. If the environment variable
8338 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8339 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8340 Otherwise, the standard frei0r paths are searched, in this order:
8341 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8342 @file{/usr/lib/frei0r-1/}.
8343
8344 @item filter_params
8345 A '|'-separated list of parameters to pass to the frei0r effect.
8346
8347 @end table
8348
8349 A frei0r effect parameter can be a boolean (its value is either
8350 "y" or "n"), a double, a color (specified as
8351 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8352 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8353 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8354 @var{X} and @var{Y} are floating point numbers) and/or a string.
8355
8356 The number and types of parameters depend on the loaded effect. If an
8357 effect parameter is not specified, the default value is set.
8358
8359 @subsection Examples
8360
8361 @itemize
8362 @item
8363 Apply the distort0r effect, setting the first two double parameters:
8364 @example
8365 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8366 @end example
8367
8368 @item
8369 Apply the colordistance effect, taking a color as the first parameter:
8370 @example
8371 frei0r=colordistance:0.2/0.3/0.4
8372 frei0r=colordistance:violet
8373 frei0r=colordistance:0x112233
8374 @end example
8375
8376 @item
8377 Apply the perspective effect, specifying the top left and top right image
8378 positions:
8379 @example
8380 frei0r=perspective:0.2/0.2|0.8/0.2
8381 @end example
8382 @end itemize
8383
8384 For more information, see
8385 @url{http://frei0r.dyne.org}
8386
8387 @section fspp
8388
8389 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8390
8391 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8392 processing filter, one of them is performed once per block, not per pixel.
8393 This allows for much higher speed.
8394
8395 The filter accepts the following options:
8396
8397 @table @option
8398 @item quality
8399 Set quality. This option defines the number of levels for averaging. It accepts
8400 an integer in the range 4-5. Default value is @code{4}.
8401
8402 @item qp
8403 Force a constant quantization parameter. It accepts an integer in range 0-63.
8404 If not set, the filter will use the QP from the video stream (if available).
8405
8406 @item strength
8407 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8408 more details but also more artifacts, while higher values make the image smoother
8409 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8410
8411 @item use_bframe_qp
8412 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8413 option may cause flicker since the B-Frames have often larger QP. Default is
8414 @code{0} (not enabled).
8415
8416 @end table
8417
8418 @section gblur
8419
8420 Apply Gaussian blur filter.
8421
8422 The filter accepts the following options:
8423
8424 @table @option
8425 @item sigma
8426 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
8427
8428 @item steps
8429 Set number of steps for Gaussian approximation. Defauls is @code{1}.
8430
8431 @item planes
8432 Set which planes to filter. By default all planes are filtered.
8433
8434 @item sigmaV
8435 Set vertical sigma, if negative it will be same as @code{sigma}.
8436 Default is @code{-1}.
8437 @end table
8438
8439 @section geq
8440
8441 The filter accepts the following options:
8442
8443 @table @option
8444 @item lum_expr, lum
8445 Set the luminance expression.
8446 @item cb_expr, cb
8447 Set the chrominance blue expression.
8448 @item cr_expr, cr
8449 Set the chrominance red expression.
8450 @item alpha_expr, a
8451 Set the alpha expression.
8452 @item red_expr, r
8453 Set the red expression.
8454 @item green_expr, g
8455 Set the green expression.
8456 @item blue_expr, b
8457 Set the blue expression.
8458 @end table
8459
8460 The colorspace is selected according to the specified options. If one
8461 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8462 options is specified, the filter will automatically select a YCbCr
8463 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8464 @option{blue_expr} options is specified, it will select an RGB
8465 colorspace.
8466
8467 If one of the chrominance expression is not defined, it falls back on the other
8468 one. If no alpha expression is specified it will evaluate to opaque value.
8469 If none of chrominance expressions are specified, they will evaluate
8470 to the luminance expression.
8471
8472 The expressions can use the following variables and functions:
8473
8474 @table @option
8475 @item N
8476 The sequential number of the filtered frame, starting from @code{0}.
8477
8478 @item X
8479 @item Y
8480 The coordinates of the current sample.
8481
8482 @item W
8483 @item H
8484 The width and height of the image.
8485
8486 @item SW
8487 @item SH
8488 Width and height scale depending on the currently filtered plane. It is the
8489 ratio between the corresponding luma plane number of pixels and the current
8490 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8491 @code{0.5,0.5} for chroma planes.
8492
8493 @item T
8494 Time of the current frame, expressed in seconds.
8495
8496 @item p(x, y)
8497 Return the value of the pixel at location (@var{x},@var{y}) of the current
8498 plane.
8499
8500 @item lum(x, y)
8501 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8502 plane.
8503
8504 @item cb(x, y)
8505 Return the value of the pixel at location (@var{x},@var{y}) of the
8506 blue-difference chroma plane. Return 0 if there is no such plane.
8507
8508 @item cr(x, y)
8509 Return the value of the pixel at location (@var{x},@var{y}) of the
8510 red-difference chroma plane. Return 0 if there is no such plane.
8511
8512 @item r(x, y)
8513 @item g(x, y)
8514 @item b(x, y)
8515 Return the value of the pixel at location (@var{x},@var{y}) of the
8516 red/green/blue component. Return 0 if there is no such component.
8517
8518 @item alpha(x, y)
8519 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8520 plane. Return 0 if there is no such plane.
8521 @end table
8522
8523 For functions, if @var{x} and @var{y} are outside the area, the value will be
8524 automatically clipped to the closer edge.
8525
8526 @subsection Examples
8527
8528 @itemize
8529 @item
8530 Flip the image horizontally:
8531 @example
8532 geq=p(W-X\,Y)
8533 @end example
8534
8535 @item
8536 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8537 wavelength of 100 pixels:
8538 @example
8539 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8540 @end example
8541
8542 @item
8543 Generate a fancy enigmatic moving light:
8544 @example
8545 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
8546 @end example
8547
8548 @item
8549 Generate a quick emboss effect:
8550 @example
8551 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8552 @end example
8553
8554 @item
8555 Modify RGB components depending on pixel position:
8556 @example
8557 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8558 @end example
8559
8560 @item
8561 Create a radial gradient that is the same size as the input (also see
8562 the @ref{vignette} filter):
8563 @example
8564 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8565 @end example
8566 @end itemize
8567
8568 @section gradfun
8569
8570 Fix the banding artifacts that are sometimes introduced into nearly flat
8571 regions by truncation to 8-bit color depth.
8572 Interpolate the gradients that should go where the bands are, and
8573 dither them.
8574
8575 It is designed for playback only.  Do not use it prior to
8576 lossy compression, because compression tends to lose the dither and
8577 bring back the bands.
8578
8579 It accepts the following parameters:
8580
8581 @table @option
8582
8583 @item strength
8584 The maximum amount by which the filter will change any one pixel. This is also
8585 the threshold for detecting nearly flat regions. Acceptable values range from
8586 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8587 valid range.
8588
8589 @item radius
8590 The neighborhood to fit the gradient to. A larger radius makes for smoother
8591 gradients, but also prevents the filter from modifying the pixels near detailed
8592 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8593 values will be clipped to the valid range.
8594
8595 @end table
8596
8597 Alternatively, the options can be specified as a flat string:
8598 @var{strength}[:@var{radius}]
8599
8600 @subsection Examples
8601
8602 @itemize
8603 @item
8604 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8605 @example
8606 gradfun=3.5:8
8607 @end example
8608
8609 @item
8610 Specify radius, omitting the strength (which will fall-back to the default
8611 value):
8612 @example
8613 gradfun=radius=8
8614 @end example
8615
8616 @end itemize
8617
8618 @anchor{haldclut}
8619 @section haldclut
8620
8621 Apply a Hald CLUT to a video stream.
8622
8623 First input is the video stream to process, and second one is the Hald CLUT.
8624 The Hald CLUT input can be a simple picture or a complete video stream.
8625
8626 The filter accepts the following options:
8627
8628 @table @option
8629 @item shortest
8630 Force termination when the shortest input terminates. Default is @code{0}.
8631 @item repeatlast
8632 Continue applying the last CLUT after the end of the stream. A value of
8633 @code{0} disable the filter after the last frame of the CLUT is reached.
8634 Default is @code{1}.
8635 @end table
8636
8637 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8638 filters share the same internals).
8639
8640 More information about the Hald CLUT can be found on Eskil Steenberg's website
8641 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8642
8643 @subsection Workflow examples
8644
8645 @subsubsection Hald CLUT video stream
8646
8647 Generate an identity Hald CLUT stream altered with various effects:
8648 @example
8649 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
8650 @end example
8651
8652 Note: make sure you use a lossless codec.
8653
8654 Then use it with @code{haldclut} to apply it on some random stream:
8655 @example
8656 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8657 @end example
8658
8659 The Hald CLUT will be applied to the 10 first seconds (duration of
8660 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8661 to the remaining frames of the @code{mandelbrot} stream.
8662
8663 @subsubsection Hald CLUT with preview
8664
8665 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8666 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8667 biggest possible square starting at the top left of the picture. The remaining
8668 padding pixels (bottom or right) will be ignored. This area can be used to add
8669 a preview of the Hald CLUT.
8670
8671 Typically, the following generated Hald CLUT will be supported by the
8672 @code{haldclut} filter:
8673
8674 @example
8675 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8676    pad=iw+320 [padded_clut];
8677    smptebars=s=320x256, split [a][b];
8678    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8679    [main][b] overlay=W-320" -frames:v 1 clut.png
8680 @end example
8681
8682 It contains the original and a preview of the effect of the CLUT: SMPTE color
8683 bars are displayed on the right-top, and below the same color bars processed by
8684 the color changes.
8685
8686 Then, the effect of this Hald CLUT can be visualized with:
8687 @example
8688 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8689 @end example
8690
8691 @section hflip
8692
8693 Flip the input video horizontally.
8694
8695 For example, to horizontally flip the input video with @command{ffmpeg}:
8696 @example
8697 ffmpeg -i in.avi -vf "hflip" out.avi
8698 @end example
8699
8700 @section histeq
8701 This filter applies a global color histogram equalization on a
8702 per-frame basis.
8703
8704 It can be used to correct video that has a compressed range of pixel
8705 intensities.  The filter redistributes the pixel intensities to
8706 equalize their distribution across the intensity range. It may be
8707 viewed as an "automatically adjusting contrast filter". This filter is
8708 useful only for correcting degraded or poorly captured source
8709 video.
8710
8711 The filter accepts the following options:
8712
8713 @table @option
8714 @item strength
8715 Determine the amount of equalization to be applied.  As the strength
8716 is reduced, the distribution of pixel intensities more-and-more
8717 approaches that of the input frame. The value must be a float number
8718 in the range [0,1] and defaults to 0.200.
8719
8720 @item intensity
8721 Set the maximum intensity that can generated and scale the output
8722 values appropriately.  The strength should be set as desired and then
8723 the intensity can be limited if needed to avoid washing-out. The value
8724 must be a float number in the range [0,1] and defaults to 0.210.
8725
8726 @item antibanding
8727 Set the antibanding level. If enabled the filter will randomly vary
8728 the luminance of output pixels by a small amount to avoid banding of
8729 the histogram. Possible values are @code{none}, @code{weak} or
8730 @code{strong}. It defaults to @code{none}.
8731 @end table
8732
8733 @section histogram
8734
8735 Compute and draw a color distribution histogram for the input video.
8736
8737 The computed histogram is a representation of the color component
8738 distribution in an image.
8739
8740 Standard histogram displays the color components distribution in an image.
8741 Displays color graph for each color component. Shows distribution of
8742 the Y, U, V, A or R, G, B components, depending on input format, in the
8743 current frame. Below each graph a color component scale meter is shown.
8744
8745 The filter accepts the following options:
8746
8747 @table @option
8748 @item level_height
8749 Set height of level. Default value is @code{200}.
8750 Allowed range is [50, 2048].
8751
8752 @item scale_height
8753 Set height of color scale. Default value is @code{12}.
8754 Allowed range is [0, 40].
8755
8756 @item display_mode
8757 Set display mode.
8758 It accepts the following values:
8759 @table @samp
8760 @item parade
8761 Per color component graphs are placed below each other.
8762
8763 @item overlay
8764 Presents information identical to that in the @code{parade}, except
8765 that the graphs representing color components are superimposed directly
8766 over one another.
8767 @end table
8768 Default is @code{parade}.
8769
8770 @item levels_mode
8771 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8772 Default is @code{linear}.
8773
8774 @item components
8775 Set what color components to display.
8776 Default is @code{7}.
8777
8778 @item fgopacity
8779 Set foreground opacity. Default is @code{0.7}.
8780
8781 @item bgopacity
8782 Set background opacity. Default is @code{0.5}.
8783 @end table
8784
8785 @subsection Examples
8786
8787 @itemize
8788
8789 @item
8790 Calculate and draw histogram:
8791 @example
8792 ffplay -i input -vf histogram
8793 @end example
8794
8795 @end itemize
8796
8797 @anchor{hqdn3d}
8798 @section hqdn3d
8799
8800 This is a high precision/quality 3d denoise filter. It aims to reduce
8801 image noise, producing smooth images and making still images really
8802 still. It should enhance compressibility.
8803
8804 It accepts the following optional parameters:
8805
8806 @table @option
8807 @item luma_spatial
8808 A non-negative floating point number which specifies spatial luma strength.
8809 It defaults to 4.0.
8810
8811 @item chroma_spatial
8812 A non-negative floating point number which specifies spatial chroma strength.
8813 It defaults to 3.0*@var{luma_spatial}/4.0.
8814
8815 @item luma_tmp
8816 A floating point number which specifies luma temporal strength. It defaults to
8817 6.0*@var{luma_spatial}/4.0.
8818
8819 @item chroma_tmp
8820 A floating point number which specifies chroma temporal strength. It defaults to
8821 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8822 @end table
8823
8824 @anchor{hwupload_cuda}
8825 @section hwupload_cuda
8826
8827 Upload system memory frames to a CUDA device.
8828
8829 It accepts the following optional parameters:
8830
8831 @table @option
8832 @item device
8833 The number of the CUDA device to use
8834 @end table
8835
8836 @section hqx
8837
8838 Apply a high-quality magnification filter designed for pixel art. This filter
8839 was originally created by Maxim Stepin.
8840
8841 It accepts the following option:
8842
8843 @table @option
8844 @item n
8845 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8846 @code{hq3x} and @code{4} for @code{hq4x}.
8847 Default is @code{3}.
8848 @end table
8849
8850 @section hstack
8851 Stack input videos horizontally.
8852
8853 All streams must be of same pixel format and of same height.
8854
8855 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8856 to create same output.
8857
8858 The filter accept the following option:
8859
8860 @table @option
8861 @item inputs
8862 Set number of input streams. Default is 2.
8863
8864 @item shortest
8865 If set to 1, force the output to terminate when the shortest input
8866 terminates. Default value is 0.
8867 @end table
8868
8869 @section hue
8870
8871 Modify the hue and/or the saturation of the input.
8872
8873 It accepts the following parameters:
8874
8875 @table @option
8876 @item h
8877 Specify the hue angle as a number of degrees. It accepts an expression,
8878 and defaults to "0".
8879
8880 @item s
8881 Specify the saturation in the [-10,10] range. It accepts an expression and
8882 defaults to "1".
8883
8884 @item H
8885 Specify the hue angle as a number of radians. It accepts an
8886 expression, and defaults to "0".
8887
8888 @item b
8889 Specify the brightness in the [-10,10] range. It accepts an expression and
8890 defaults to "0".
8891 @end table
8892
8893 @option{h} and @option{H} are mutually exclusive, and can't be
8894 specified at the same time.
8895
8896 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8897 expressions containing the following constants:
8898
8899 @table @option
8900 @item n
8901 frame count of the input frame starting from 0
8902
8903 @item pts
8904 presentation timestamp of the input frame expressed in time base units
8905
8906 @item r
8907 frame rate of the input video, NAN if the input frame rate is unknown
8908
8909 @item t
8910 timestamp expressed in seconds, NAN if the input timestamp is unknown
8911
8912 @item tb
8913 time base of the input video
8914 @end table
8915
8916 @subsection Examples
8917
8918 @itemize
8919 @item
8920 Set the hue to 90 degrees and the saturation to 1.0:
8921 @example
8922 hue=h=90:s=1
8923 @end example
8924
8925 @item
8926 Same command but expressing the hue in radians:
8927 @example
8928 hue=H=PI/2:s=1
8929 @end example
8930
8931 @item
8932 Rotate hue and make the saturation swing between 0
8933 and 2 over a period of 1 second:
8934 @example
8935 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8936 @end example
8937
8938 @item
8939 Apply a 3 seconds saturation fade-in effect starting at 0:
8940 @example
8941 hue="s=min(t/3\,1)"
8942 @end example
8943
8944 The general fade-in expression can be written as:
8945 @example
8946 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8947 @end example
8948
8949 @item
8950 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8951 @example
8952 hue="s=max(0\, min(1\, (8-t)/3))"
8953 @end example
8954
8955 The general fade-out expression can be written as:
8956 @example
8957 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8958 @end example
8959
8960 @end itemize
8961
8962 @subsection Commands
8963
8964 This filter supports the following commands:
8965 @table @option
8966 @item b
8967 @item s
8968 @item h
8969 @item H
8970 Modify the hue and/or the saturation and/or brightness of the input video.
8971 The command accepts the same syntax of the corresponding option.
8972
8973 If the specified expression is not valid, it is kept at its current
8974 value.
8975 @end table
8976
8977 @section hysteresis
8978
8979 Grow first stream into second stream by connecting components.
8980 This makes it possible to build more robust edge masks.
8981
8982 This filter accepts the following options:
8983
8984 @table @option
8985 @item planes
8986 Set which planes will be processed as bitmap, unprocessed planes will be
8987 copied from first stream.
8988 By default value 0xf, all planes will be processed.
8989
8990 @item threshold
8991 Set threshold which is used in filtering. If pixel component value is higher than
8992 this value filter algorithm for connecting components is activated.
8993 By default value is 0.
8994 @end table
8995
8996 @section idet
8997
8998 Detect video interlacing type.
8999
9000 This filter tries to detect if the input frames are interlaced, progressive,
9001 top or bottom field first. It will also try to detect fields that are
9002 repeated between adjacent frames (a sign of telecine).
9003
9004 Single frame detection considers only immediately adjacent frames when classifying each frame.
9005 Multiple frame detection incorporates the classification history of previous frames.
9006
9007 The filter will log these metadata values:
9008
9009 @table @option
9010 @item single.current_frame
9011 Detected type of current frame using single-frame detection. One of:
9012 ``tff'' (top field first), ``bff'' (bottom field first),
9013 ``progressive'', or ``undetermined''
9014
9015 @item single.tff
9016 Cumulative number of frames detected as top field first using single-frame detection.
9017
9018 @item multiple.tff
9019 Cumulative number of frames detected as top field first using multiple-frame detection.
9020
9021 @item single.bff
9022 Cumulative number of frames detected as bottom field first using single-frame detection.
9023
9024 @item multiple.current_frame
9025 Detected type of current frame using multiple-frame detection. One of:
9026 ``tff'' (top field first), ``bff'' (bottom field first),
9027 ``progressive'', or ``undetermined''
9028
9029 @item multiple.bff
9030 Cumulative number of frames detected as bottom field first using multiple-frame detection.
9031
9032 @item single.progressive
9033 Cumulative number of frames detected as progressive using single-frame detection.
9034
9035 @item multiple.progressive
9036 Cumulative number of frames detected as progressive using multiple-frame detection.
9037
9038 @item single.undetermined
9039 Cumulative number of frames that could not be classified using single-frame detection.
9040
9041 @item multiple.undetermined
9042 Cumulative number of frames that could not be classified using multiple-frame detection.
9043
9044 @item repeated.current_frame
9045 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
9046
9047 @item repeated.neither
9048 Cumulative number of frames with no repeated field.
9049
9050 @item repeated.top
9051 Cumulative number of frames with the top field repeated from the previous frame's top field.
9052
9053 @item repeated.bottom
9054 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
9055 @end table
9056
9057 The filter accepts the following options:
9058
9059 @table @option
9060 @item intl_thres
9061 Set interlacing threshold.
9062 @item prog_thres
9063 Set progressive threshold.
9064 @item rep_thres
9065 Threshold for repeated field detection.
9066 @item half_life
9067 Number of frames after which a given frame's contribution to the
9068 statistics is halved (i.e., it contributes only 0.5 to its
9069 classification). The default of 0 means that all frames seen are given
9070 full weight of 1.0 forever.
9071 @item analyze_interlaced_flag
9072 When this is not 0 then idet will use the specified number of frames to determine
9073 if the interlaced flag is accurate, it will not count undetermined frames.
9074 If the flag is found to be accurate it will be used without any further
9075 computations, if it is found to be inaccurate it will be cleared without any
9076 further computations. This allows inserting the idet filter as a low computational
9077 method to clean up the interlaced flag
9078 @end table
9079
9080 @section il
9081
9082 Deinterleave or interleave fields.
9083
9084 This filter allows one to process interlaced images fields without
9085 deinterlacing them. Deinterleaving splits the input frame into 2
9086 fields (so called half pictures). Odd lines are moved to the top
9087 half of the output image, even lines to the bottom half.
9088 You can process (filter) them independently and then re-interleave them.
9089
9090 The filter accepts the following options:
9091
9092 @table @option
9093 @item luma_mode, l
9094 @item chroma_mode, c
9095 @item alpha_mode, a
9096 Available values for @var{luma_mode}, @var{chroma_mode} and
9097 @var{alpha_mode} are:
9098
9099 @table @samp
9100 @item none
9101 Do nothing.
9102
9103 @item deinterleave, d
9104 Deinterleave fields, placing one above the other.
9105
9106 @item interleave, i
9107 Interleave fields. Reverse the effect of deinterleaving.
9108 @end table
9109 Default value is @code{none}.
9110
9111 @item luma_swap, ls
9112 @item chroma_swap, cs
9113 @item alpha_swap, as
9114 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
9115 @end table
9116
9117 @section inflate
9118
9119 Apply inflate effect to the video.
9120
9121 This filter replaces the pixel by the local(3x3) average by taking into account
9122 only values higher than the pixel.
9123
9124 It accepts the following options:
9125
9126 @table @option
9127 @item threshold0
9128 @item threshold1
9129 @item threshold2
9130 @item threshold3
9131 Limit the maximum change for each plane, default is 65535.
9132 If 0, plane will remain unchanged.
9133 @end table
9134
9135 @section interlace
9136
9137 Simple interlacing filter from progressive contents. This interleaves upper (or
9138 lower) lines from odd frames with lower (or upper) lines from even frames,
9139 halving the frame rate and preserving image height.
9140
9141 @example
9142    Original        Original             New Frame
9143    Frame 'j'      Frame 'j+1'             (tff)
9144   ==========      ===========       ==================
9145     Line 0  -------------------->    Frame 'j' Line 0
9146     Line 1          Line 1  ---->   Frame 'j+1' Line 1
9147     Line 2 --------------------->    Frame 'j' Line 2
9148     Line 3          Line 3  ---->   Frame 'j+1' Line 3
9149      ...             ...                   ...
9150 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
9151 @end example
9152
9153 It accepts the following optional parameters:
9154
9155 @table @option
9156 @item scan
9157 This determines whether the interlaced frame is taken from the even
9158 (tff - default) or odd (bff) lines of the progressive frame.
9159
9160 @item lowpass
9161 Vertical lowpass filter to avoid twitter interlacing and
9162 reduce moire patterns.
9163
9164 @table @samp
9165 @item 0, off
9166 Disable vertical lowpass filter
9167
9168 @item 1, linear
9169 Enable linear filter (default)
9170
9171 @item 2, complex
9172 Enable complex filter. This will slightly less reduce twitter and moire
9173 but better retain detail and subjective sharpness impression.
9174
9175 @end table
9176 @end table
9177
9178 @section kerndeint
9179
9180 Deinterlace input video by applying Donald Graft's adaptive kernel
9181 deinterling. Work on interlaced parts of a video to produce
9182 progressive frames.
9183
9184 The description of the accepted parameters follows.
9185
9186 @table @option
9187 @item thresh
9188 Set the threshold which affects the filter's tolerance when
9189 determining if a pixel line must be processed. It must be an integer
9190 in the range [0,255] and defaults to 10. A value of 0 will result in
9191 applying the process on every pixels.
9192
9193 @item map
9194 Paint pixels exceeding the threshold value to white if set to 1.
9195 Default is 0.
9196
9197 @item order
9198 Set the fields order. Swap fields if set to 1, leave fields alone if
9199 0. Default is 0.
9200
9201 @item sharp
9202 Enable additional sharpening if set to 1. Default is 0.
9203
9204 @item twoway
9205 Enable twoway sharpening if set to 1. Default is 0.
9206 @end table
9207
9208 @subsection Examples
9209
9210 @itemize
9211 @item
9212 Apply default values:
9213 @example
9214 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9215 @end example
9216
9217 @item
9218 Enable additional sharpening:
9219 @example
9220 kerndeint=sharp=1
9221 @end example
9222
9223 @item
9224 Paint processed pixels in white:
9225 @example
9226 kerndeint=map=1
9227 @end example
9228 @end itemize
9229
9230 @section lenscorrection
9231
9232 Correct radial lens distortion
9233
9234 This filter can be used to correct for radial distortion as can result from the use
9235 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9236 one can use tools available for example as part of opencv or simply trial-and-error.
9237 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9238 and extract the k1 and k2 coefficients from the resulting matrix.
9239
9240 Note that effectively the same filter is available in the open-source tools Krita and
9241 Digikam from the KDE project.
9242
9243 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9244 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9245 brightness distribution, so you may want to use both filters together in certain
9246 cases, though you will have to take care of ordering, i.e. whether vignetting should
9247 be applied before or after lens correction.
9248
9249 @subsection Options
9250
9251 The filter accepts the following options:
9252
9253 @table @option
9254 @item cx
9255 Relative x-coordinate of the focal point of the image, and thereby the center of the
9256 distortion. This value has a range [0,1] and is expressed as fractions of the image
9257 width.
9258 @item cy
9259 Relative y-coordinate of the focal point of the image, and thereby the center of the
9260 distortion. This value has a range [0,1] and is expressed as fractions of the image
9261 height.
9262 @item k1
9263 Coefficient of the quadratic correction term. 0.5 means no correction.
9264 @item k2
9265 Coefficient of the double quadratic correction term. 0.5 means no correction.
9266 @end table
9267
9268 The formula that generates the correction is:
9269
9270 @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)
9271
9272 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9273 distances from the focal point in the source and target images, respectively.
9274
9275 @section loop
9276
9277 Loop video frames.
9278
9279 The filter accepts the following options:
9280
9281 @table @option
9282 @item loop
9283 Set the number of loops.
9284
9285 @item size
9286 Set maximal size in number of frames.
9287
9288 @item start
9289 Set first frame of loop.
9290 @end table
9291
9292 @anchor{lut3d}
9293 @section lut3d
9294
9295 Apply a 3D LUT to an input video.
9296
9297 The filter accepts the following options:
9298
9299 @table @option
9300 @item file
9301 Set the 3D LUT file name.
9302
9303 Currently supported formats:
9304 @table @samp
9305 @item 3dl
9306 AfterEffects
9307 @item cube
9308 Iridas
9309 @item dat
9310 DaVinci
9311 @item m3d
9312 Pandora
9313 @end table
9314 @item interp
9315 Select interpolation mode.
9316
9317 Available values are:
9318
9319 @table @samp
9320 @item nearest
9321 Use values from the nearest defined point.
9322 @item trilinear
9323 Interpolate values using the 8 points defining a cube.
9324 @item tetrahedral
9325 Interpolate values using a tetrahedron.
9326 @end table
9327 @end table
9328
9329 @section lumakey
9330
9331 Turn certain luma values into transparency.
9332
9333 The filter accepts the following options:
9334
9335 @table @option
9336 @item threshold
9337 Set the luma which will be used as base for transparency.
9338 Default value is @code{0}.
9339
9340 @item tolerance
9341 Set the range of luma values to be keyed out.
9342 Default value is @code{0}.
9343
9344 @item softness
9345 Set the range of softness. Default value is @code{0}.
9346 Use this to control gradual transition from zero to full transparency.
9347 @end table
9348
9349 @section lut, lutrgb, lutyuv
9350
9351 Compute a look-up table for binding each pixel component input value
9352 to an output value, and apply it to the input video.
9353
9354 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9355 to an RGB input video.
9356
9357 These filters accept the following parameters:
9358 @table @option
9359 @item c0
9360 set first pixel component expression
9361 @item c1
9362 set second pixel component expression
9363 @item c2
9364 set third pixel component expression
9365 @item c3
9366 set fourth pixel component expression, corresponds to the alpha component
9367
9368 @item r
9369 set red component expression
9370 @item g
9371 set green component expression
9372 @item b
9373 set blue component expression
9374 @item a
9375 alpha component expression
9376
9377 @item y
9378 set Y/luminance component expression
9379 @item u
9380 set U/Cb component expression
9381 @item v
9382 set V/Cr component expression
9383 @end table
9384
9385 Each of them specifies the expression to use for computing the lookup table for
9386 the corresponding pixel component values.
9387
9388 The exact component associated to each of the @var{c*} options depends on the
9389 format in input.
9390
9391 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9392 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9393
9394 The expressions can contain the following constants and functions:
9395
9396 @table @option
9397 @item w
9398 @item h
9399 The input width and height.
9400
9401 @item val
9402 The input value for the pixel component.
9403
9404 @item clipval
9405 The input value, clipped to the @var{minval}-@var{maxval} range.
9406
9407 @item maxval
9408 The maximum value for the pixel component.
9409
9410 @item minval
9411 The minimum value for the pixel component.
9412
9413 @item negval
9414 The negated value for the pixel component value, clipped to the
9415 @var{minval}-@var{maxval} range; it corresponds to the expression
9416 "maxval-clipval+minval".
9417
9418 @item clip(val)
9419 The computed value in @var{val}, clipped to the
9420 @var{minval}-@var{maxval} range.
9421
9422 @item gammaval(gamma)
9423 The computed gamma correction value of the pixel component value,
9424 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9425 expression
9426 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9427
9428 @end table
9429
9430 All expressions default to "val".
9431
9432 @subsection Examples
9433
9434 @itemize
9435 @item
9436 Negate input video:
9437 @example
9438 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9439 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9440 @end example
9441
9442 The above is the same as:
9443 @example
9444 lutrgb="r=negval:g=negval:b=negval"
9445 lutyuv="y=negval:u=negval:v=negval"
9446 @end example
9447
9448 @item
9449 Negate luminance:
9450 @example
9451 lutyuv=y=negval
9452 @end example
9453
9454 @item
9455 Remove chroma components, turning the video into a graytone image:
9456 @example
9457 lutyuv="u=128:v=128"
9458 @end example
9459
9460 @item
9461 Apply a luma burning effect:
9462 @example
9463 lutyuv="y=2*val"
9464 @end example
9465
9466 @item
9467 Remove green and blue components:
9468 @example
9469 lutrgb="g=0:b=0"
9470 @end example
9471
9472 @item
9473 Set a constant alpha channel value on input:
9474 @example
9475 format=rgba,lutrgb=a="maxval-minval/2"
9476 @end example
9477
9478 @item
9479 Correct luminance gamma by a factor of 0.5:
9480 @example
9481 lutyuv=y=gammaval(0.5)
9482 @end example
9483
9484 @item
9485 Discard least significant bits of luma:
9486 @example
9487 lutyuv=y='bitand(val, 128+64+32)'
9488 @end example
9489
9490 @item
9491 Technicolor like effect:
9492 @example
9493 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9494 @end example
9495 @end itemize
9496
9497 @section lut2
9498
9499 Compute and apply a lookup table from two video inputs.
9500
9501 This filter accepts the following parameters:
9502 @table @option
9503 @item c0
9504 set first pixel component expression
9505 @item c1
9506 set second pixel component expression
9507 @item c2
9508 set third pixel component expression
9509 @item c3
9510 set fourth pixel component expression, corresponds to the alpha component
9511 @end table
9512
9513 Each of them specifies the expression to use for computing the lookup table for
9514 the corresponding pixel component values.
9515
9516 The exact component associated to each of the @var{c*} options depends on the
9517 format in inputs.
9518
9519 The expressions can contain the following constants:
9520
9521 @table @option
9522 @item w
9523 @item h
9524 The input width and height.
9525
9526 @item x
9527 The first input value for the pixel component.
9528
9529 @item y
9530 The second input value for the pixel component.
9531
9532 @item bdx
9533 The first input video bit depth.
9534
9535 @item bdy
9536 The second input video bit depth.
9537 @end table
9538
9539 All expressions default to "x".
9540
9541 @subsection Examples
9542
9543 @itemize
9544 @item
9545 Highlight differences between two RGB video streams:
9546 @example
9547 lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1)'
9548 @end example
9549
9550 @item
9551 Highlight differences between two YUV video streams:
9552 @example
9553 lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1)'
9554 @end example
9555 @end itemize
9556
9557 @section maskedclamp
9558
9559 Clamp the first input stream with the second input and third input stream.
9560
9561 Returns the value of first stream to be between second input
9562 stream - @code{undershoot} and third input stream + @code{overshoot}.
9563
9564 This filter accepts the following options:
9565 @table @option
9566 @item undershoot
9567 Default value is @code{0}.
9568
9569 @item overshoot
9570 Default value is @code{0}.
9571
9572 @item planes
9573 Set which planes will be processed as bitmap, unprocessed planes will be
9574 copied from first stream.
9575 By default value 0xf, all planes will be processed.
9576 @end table
9577
9578 @section maskedmerge
9579
9580 Merge the first input stream with the second input stream using per pixel
9581 weights in the third input stream.
9582
9583 A value of 0 in the third stream pixel component means that pixel component
9584 from first stream is returned unchanged, while maximum value (eg. 255 for
9585 8-bit videos) means that pixel component from second stream is returned
9586 unchanged. Intermediate values define the amount of merging between both
9587 input stream's pixel components.
9588
9589 This filter accepts the following options:
9590 @table @option
9591 @item planes
9592 Set which planes will be processed as bitmap, unprocessed planes will be
9593 copied from first stream.
9594 By default value 0xf, all planes will be processed.
9595 @end table
9596
9597 @section mcdeint
9598
9599 Apply motion-compensation deinterlacing.
9600
9601 It needs one field per frame as input and must thus be used together
9602 with yadif=1/3 or equivalent.
9603
9604 This filter accepts the following options:
9605 @table @option
9606 @item mode
9607 Set the deinterlacing mode.
9608
9609 It accepts one of the following values:
9610 @table @samp
9611 @item fast
9612 @item medium
9613 @item slow
9614 use iterative motion estimation
9615 @item extra_slow
9616 like @samp{slow}, but use multiple reference frames.
9617 @end table
9618 Default value is @samp{fast}.
9619
9620 @item parity
9621 Set the picture field parity assumed for the input video. It must be
9622 one of the following values:
9623
9624 @table @samp
9625 @item 0, tff
9626 assume top field first
9627 @item 1, bff
9628 assume bottom field first
9629 @end table
9630
9631 Default value is @samp{bff}.
9632
9633 @item qp
9634 Set per-block quantization parameter (QP) used by the internal
9635 encoder.
9636
9637 Higher values should result in a smoother motion vector field but less
9638 optimal individual vectors. Default value is 1.
9639 @end table
9640
9641 @section mergeplanes
9642
9643 Merge color channel components from several video streams.
9644
9645 The filter accepts up to 4 input streams, and merge selected input
9646 planes to the output video.
9647
9648 This filter accepts the following options:
9649 @table @option
9650 @item mapping
9651 Set input to output plane mapping. Default is @code{0}.
9652
9653 The mappings is specified as a bitmap. It should be specified as a
9654 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9655 mapping for the first plane of the output stream. 'A' sets the number of
9656 the input stream to use (from 0 to 3), and 'a' the plane number of the
9657 corresponding input to use (from 0 to 3). The rest of the mappings is
9658 similar, 'Bb' describes the mapping for the output stream second
9659 plane, 'Cc' describes the mapping for the output stream third plane and
9660 'Dd' describes the mapping for the output stream fourth plane.
9661
9662 @item format
9663 Set output pixel format. Default is @code{yuva444p}.
9664 @end table
9665
9666 @subsection Examples
9667
9668 @itemize
9669 @item
9670 Merge three gray video streams of same width and height into single video stream:
9671 @example
9672 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9673 @end example
9674
9675 @item
9676 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9677 @example
9678 [a0][a1]mergeplanes=0x00010210:yuva444p
9679 @end example
9680
9681 @item
9682 Swap Y and A plane in yuva444p stream:
9683 @example
9684 format=yuva444p,mergeplanes=0x03010200:yuva444p
9685 @end example
9686
9687 @item
9688 Swap U and V plane in yuv420p stream:
9689 @example
9690 format=yuv420p,mergeplanes=0x000201:yuv420p
9691 @end example
9692
9693 @item
9694 Cast a rgb24 clip to yuv444p:
9695 @example
9696 format=rgb24,mergeplanes=0x000102:yuv444p
9697 @end example
9698 @end itemize
9699
9700 @section mestimate
9701
9702 Estimate and export motion vectors using block matching algorithms.
9703 Motion vectors are stored in frame side data to be used by other filters.
9704
9705 This filter accepts the following options:
9706 @table @option
9707 @item method
9708 Specify the motion estimation method. Accepts one of the following values:
9709
9710 @table @samp
9711 @item esa
9712 Exhaustive search algorithm.
9713 @item tss
9714 Three step search algorithm.
9715 @item tdls
9716 Two dimensional logarithmic search algorithm.
9717 @item ntss
9718 New three step search algorithm.
9719 @item fss
9720 Four step search algorithm.
9721 @item ds
9722 Diamond search algorithm.
9723 @item hexbs
9724 Hexagon-based search algorithm.
9725 @item epzs
9726 Enhanced predictive zonal search algorithm.
9727 @item umh
9728 Uneven multi-hexagon search algorithm.
9729 @end table
9730 Default value is @samp{esa}.
9731
9732 @item mb_size
9733 Macroblock size. Default @code{16}.
9734
9735 @item search_param
9736 Search parameter. Default @code{7}.
9737 @end table
9738
9739 @section midequalizer
9740
9741 Apply Midway Image Equalization effect using two video streams.
9742
9743 Midway Image Equalization adjusts a pair of images to have the same
9744 histogram, while maintaining their dynamics as much as possible. It's
9745 useful for e.g. matching exposures from a pair of stereo cameras.
9746
9747 This filter has two inputs and one output, which must be of same pixel format, but
9748 may be of different sizes. The output of filter is first input adjusted with
9749 midway histogram of both inputs.
9750
9751 This filter accepts the following option:
9752
9753 @table @option
9754 @item planes
9755 Set which planes to process. Default is @code{15}, which is all available planes.
9756 @end table
9757
9758 @section minterpolate
9759
9760 Convert the video to specified frame rate using motion interpolation.
9761
9762 This filter accepts the following options:
9763 @table @option
9764 @item fps
9765 Specify the output frame rate. This can be rational e.g. @code{60000/1001}. Frames are dropped if @var{fps} is lower than source fps. Default @code{60}.
9766
9767 @item mi_mode
9768 Motion interpolation mode. Following values are accepted:
9769 @table @samp
9770 @item dup
9771 Duplicate previous or next frame for interpolating new ones.
9772 @item blend
9773 Blend source frames. Interpolated frame is mean of previous and next frames.
9774 @item mci
9775 Motion compensated interpolation. Following options are effective when this mode is selected:
9776
9777 @table @samp
9778 @item mc_mode
9779 Motion compensation mode. Following values are accepted:
9780 @table @samp
9781 @item obmc
9782 Overlapped block motion compensation.
9783 @item aobmc
9784 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
9785 @end table
9786 Default mode is @samp{obmc}.
9787
9788 @item me_mode
9789 Motion estimation mode. Following values are accepted:
9790 @table @samp
9791 @item bidir
9792 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
9793 @item bilat
9794 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
9795 @end table
9796 Default mode is @samp{bilat}.
9797
9798 @item me
9799 The algorithm to be used for motion estimation. Following values are accepted:
9800 @table @samp
9801 @item esa
9802 Exhaustive search algorithm.
9803 @item tss
9804 Three step search algorithm.
9805 @item tdls
9806 Two dimensional logarithmic search algorithm.
9807 @item ntss
9808 New three step search algorithm.
9809 @item fss
9810 Four step search algorithm.
9811 @item ds
9812 Diamond search algorithm.
9813 @item hexbs
9814 Hexagon-based search algorithm.
9815 @item epzs
9816 Enhanced predictive zonal search algorithm.
9817 @item umh
9818 Uneven multi-hexagon search algorithm.
9819 @end table
9820 Default algorithm is @samp{epzs}.
9821
9822 @item mb_size
9823 Macroblock size. Default @code{16}.
9824
9825 @item search_param
9826 Motion estimation search parameter. Default @code{32}.
9827
9828 @item vsbmc
9829 Enable variable-size block motion compensation. Motion estimation is applied with smaller block sizes at object boundaries in order to make the them less blur. Default is @code{0} (disabled).
9830 @end table
9831 @end table
9832
9833 @item scd
9834 Scene change detection method. Scene change leads motion vectors to be in random direction. Scene change detection replace interpolated frames by duplicate ones. May not be needed for other modes. Following values are accepted:
9835 @table @samp
9836 @item none
9837 Disable scene change detection.
9838 @item fdiff
9839 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
9840 @end table
9841 Default method is @samp{fdiff}.
9842
9843 @item scd_threshold
9844 Scene change detection threshold. Default is @code{5.0}.
9845 @end table
9846
9847 @section mpdecimate
9848
9849 Drop frames that do not differ greatly from the previous frame in
9850 order to reduce frame rate.
9851
9852 The main use of this filter is for very-low-bitrate encoding
9853 (e.g. streaming over dialup modem), but it could in theory be used for
9854 fixing movies that were inverse-telecined incorrectly.
9855
9856 A description of the accepted options follows.
9857
9858 @table @option
9859 @item max
9860 Set the maximum number of consecutive frames which can be dropped (if
9861 positive), or the minimum interval between dropped frames (if
9862 negative). If the value is 0, the frame is dropped unregarding the
9863 number of previous sequentially dropped frames.
9864
9865 Default value is 0.
9866
9867 @item hi
9868 @item lo
9869 @item frac
9870 Set the dropping threshold values.
9871
9872 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9873 represent actual pixel value differences, so a threshold of 64
9874 corresponds to 1 unit of difference for each pixel, or the same spread
9875 out differently over the block.
9876
9877 A frame is a candidate for dropping if no 8x8 blocks differ by more
9878 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9879 meaning the whole image) differ by more than a threshold of @option{lo}.
9880
9881 Default value for @option{hi} is 64*12, default value for @option{lo} is
9882 64*5, and default value for @option{frac} is 0.33.
9883 @end table
9884
9885
9886 @section negate
9887
9888 Negate input video.
9889
9890 It accepts an integer in input; if non-zero it negates the
9891 alpha component (if available). The default value in input is 0.
9892
9893 @section nlmeans
9894
9895 Denoise frames using Non-Local Means algorithm.
9896
9897 Each pixel is adjusted by looking for other pixels with similar contexts. This
9898 context similarity is defined by comparing their surrounding patches of size
9899 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
9900 around the pixel.
9901
9902 Note that the research area defines centers for patches, which means some
9903 patches will be made of pixels outside that research area.
9904
9905 The filter accepts the following options.
9906
9907 @table @option
9908 @item s
9909 Set denoising strength.
9910
9911 @item p
9912 Set patch size.
9913
9914 @item pc
9915 Same as @option{p} but for chroma planes.
9916
9917 The default value is @var{0} and means automatic.
9918
9919 @item r
9920 Set research size.
9921
9922 @item rc
9923 Same as @option{r} but for chroma planes.
9924
9925 The default value is @var{0} and means automatic.
9926 @end table
9927
9928 @section nnedi
9929
9930 Deinterlace video using neural network edge directed interpolation.
9931
9932 This filter accepts the following options:
9933
9934 @table @option
9935 @item weights
9936 Mandatory option, without binary file filter can not work.
9937 Currently file can be found here:
9938 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9939
9940 @item deint
9941 Set which frames to deinterlace, by default it is @code{all}.
9942 Can be @code{all} or @code{interlaced}.
9943
9944 @item field
9945 Set mode of operation.
9946
9947 Can be one of the following:
9948
9949 @table @samp
9950 @item af
9951 Use frame flags, both fields.
9952 @item a
9953 Use frame flags, single field.
9954 @item t
9955 Use top field only.
9956 @item b
9957 Use bottom field only.
9958 @item tf
9959 Use both fields, top first.
9960 @item bf
9961 Use both fields, bottom first.
9962 @end table
9963
9964 @item planes
9965 Set which planes to process, by default filter process all frames.
9966
9967 @item nsize
9968 Set size of local neighborhood around each pixel, used by the predictor neural
9969 network.
9970
9971 Can be one of the following:
9972
9973 @table @samp
9974 @item s8x6
9975 @item s16x6
9976 @item s32x6
9977 @item s48x6
9978 @item s8x4
9979 @item s16x4
9980 @item s32x4
9981 @end table
9982
9983 @item nns
9984 Set the number of neurons in predicctor neural network.
9985 Can be one of the following:
9986
9987 @table @samp
9988 @item n16
9989 @item n32
9990 @item n64
9991 @item n128
9992 @item n256
9993 @end table
9994
9995 @item qual
9996 Controls the number of different neural network predictions that are blended
9997 together to compute the final output value. Can be @code{fast}, default or
9998 @code{slow}.
9999
10000 @item etype
10001 Set which set of weights to use in the predictor.
10002 Can be one of the following:
10003
10004 @table @samp
10005 @item a
10006 weights trained to minimize absolute error
10007 @item s
10008 weights trained to minimize squared error
10009 @end table
10010
10011 @item pscrn
10012 Controls whether or not the prescreener neural network is used to decide
10013 which pixels should be processed by the predictor neural network and which
10014 can be handled by simple cubic interpolation.
10015 The prescreener is trained to know whether cubic interpolation will be
10016 sufficient for a pixel or whether it should be predicted by the predictor nn.
10017 The computational complexity of the prescreener nn is much less than that of
10018 the predictor nn. Since most pixels can be handled by cubic interpolation,
10019 using the prescreener generally results in much faster processing.
10020 The prescreener is pretty accurate, so the difference between using it and not
10021 using it is almost always unnoticeable.
10022
10023 Can be one of the following:
10024
10025 @table @samp
10026 @item none
10027 @item original
10028 @item new
10029 @end table
10030
10031 Default is @code{new}.
10032
10033 @item fapprox
10034 Set various debugging flags.
10035 @end table
10036
10037 @section noformat
10038
10039 Force libavfilter not to use any of the specified pixel formats for the
10040 input to the next filter.
10041
10042 It accepts the following parameters:
10043 @table @option
10044
10045 @item pix_fmts
10046 A '|'-separated list of pixel format names, such as
10047 apix_fmts=yuv420p|monow|rgb24".
10048
10049 @end table
10050
10051 @subsection Examples
10052
10053 @itemize
10054 @item
10055 Force libavfilter to use a format different from @var{yuv420p} for the
10056 input to the vflip filter:
10057 @example
10058 noformat=pix_fmts=yuv420p,vflip
10059 @end example
10060
10061 @item
10062 Convert the input video to any of the formats not contained in the list:
10063 @example
10064 noformat=yuv420p|yuv444p|yuv410p
10065 @end example
10066 @end itemize
10067
10068 @section noise
10069
10070 Add noise on video input frame.
10071
10072 The filter accepts the following options:
10073
10074 @table @option
10075 @item all_seed
10076 @item c0_seed
10077 @item c1_seed
10078 @item c2_seed
10079 @item c3_seed
10080 Set noise seed for specific pixel component or all pixel components in case
10081 of @var{all_seed}. Default value is @code{123457}.
10082
10083 @item all_strength, alls
10084 @item c0_strength, c0s
10085 @item c1_strength, c1s
10086 @item c2_strength, c2s
10087 @item c3_strength, c3s
10088 Set noise strength for specific pixel component or all pixel components in case
10089 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
10090
10091 @item all_flags, allf
10092 @item c0_flags, c0f
10093 @item c1_flags, c1f
10094 @item c2_flags, c2f
10095 @item c3_flags, c3f
10096 Set pixel component flags or set flags for all components if @var{all_flags}.
10097 Available values for component flags are:
10098 @table @samp
10099 @item a
10100 averaged temporal noise (smoother)
10101 @item p
10102 mix random noise with a (semi)regular pattern
10103 @item t
10104 temporal noise (noise pattern changes between frames)
10105 @item u
10106 uniform noise (gaussian otherwise)
10107 @end table
10108 @end table
10109
10110 @subsection Examples
10111
10112 Add temporal and uniform noise to input video:
10113 @example
10114 noise=alls=20:allf=t+u
10115 @end example
10116
10117 @section null
10118
10119 Pass the video source unchanged to the output.
10120
10121 @section ocr
10122 Optical Character Recognition
10123
10124 This filter uses Tesseract for optical character recognition.
10125
10126 It accepts the following options:
10127
10128 @table @option
10129 @item datapath
10130 Set datapath to tesseract data. Default is to use whatever was
10131 set at installation.
10132
10133 @item language
10134 Set language, default is "eng".
10135
10136 @item whitelist
10137 Set character whitelist.
10138
10139 @item blacklist
10140 Set character blacklist.
10141 @end table
10142
10143 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
10144
10145 @section ocv
10146
10147 Apply a video transform using libopencv.
10148
10149 To enable this filter, install the libopencv library and headers and
10150 configure FFmpeg with @code{--enable-libopencv}.
10151
10152 It accepts the following parameters:
10153
10154 @table @option
10155
10156 @item filter_name
10157 The name of the libopencv filter to apply.
10158
10159 @item filter_params
10160 The parameters to pass to the libopencv filter. If not specified, the default
10161 values are assumed.
10162
10163 @end table
10164
10165 Refer to the official libopencv documentation for more precise
10166 information:
10167 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
10168
10169 Several libopencv filters are supported; see the following subsections.
10170
10171 @anchor{dilate}
10172 @subsection dilate
10173
10174 Dilate an image by using a specific structuring element.
10175 It corresponds to the libopencv function @code{cvDilate}.
10176
10177 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
10178
10179 @var{struct_el} represents a structuring element, and has the syntax:
10180 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
10181
10182 @var{cols} and @var{rows} represent the number of columns and rows of
10183 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
10184 point, and @var{shape} the shape for the structuring element. @var{shape}
10185 must be "rect", "cross", "ellipse", or "custom".
10186
10187 If the value for @var{shape} is "custom", it must be followed by a
10188 string of the form "=@var{filename}". The file with name
10189 @var{filename} is assumed to represent a binary image, with each
10190 printable character corresponding to a bright pixel. When a custom
10191 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
10192 or columns and rows of the read file are assumed instead.
10193
10194 The default value for @var{struct_el} is "3x3+0x0/rect".
10195
10196 @var{nb_iterations} specifies the number of times the transform is
10197 applied to the image, and defaults to 1.
10198
10199 Some examples:
10200 @example
10201 # Use the default values
10202 ocv=dilate
10203
10204 # Dilate using a structuring element with a 5x5 cross, iterating two times
10205 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
10206
10207 # Read the shape from the file diamond.shape, iterating two times.
10208 # The file diamond.shape may contain a pattern of characters like this
10209 #   *
10210 #  ***
10211 # *****
10212 #  ***
10213 #   *
10214 # The specified columns and rows are ignored
10215 # but the anchor point coordinates are not
10216 ocv=dilate:0x0+2x2/custom=diamond.shape|2
10217 @end example
10218
10219 @subsection erode
10220
10221 Erode an image by using a specific structuring element.
10222 It corresponds to the libopencv function @code{cvErode}.
10223
10224 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
10225 with the same syntax and semantics as the @ref{dilate} filter.
10226
10227 @subsection smooth
10228
10229 Smooth the input video.
10230
10231 The filter takes the following parameters:
10232 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
10233
10234 @var{type} is the type of smooth filter to apply, and must be one of
10235 the following values: "blur", "blur_no_scale", "median", "gaussian",
10236 or "bilateral". The default value is "gaussian".
10237
10238 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
10239 depend on the smooth type. @var{param1} and
10240 @var{param2} accept integer positive values or 0. @var{param3} and
10241 @var{param4} accept floating point values.
10242
10243 The default value for @var{param1} is 3. The default value for the
10244 other parameters is 0.
10245
10246 These parameters correspond to the parameters assigned to the
10247 libopencv function @code{cvSmooth}.
10248
10249 @section oscilloscope
10250
10251 2D Video Oscilloscope.
10252
10253 Useful to measure spatial impulse, step responses, chroma delays, etc.
10254
10255 It accepts the following parameters:
10256
10257 @table @option
10258 @item x
10259 Set scope center x position.
10260
10261 @item y
10262 Set scope center y position.
10263
10264 @item s
10265 Set scope size, relative to frame diagonal.
10266
10267 @item t
10268 Set scope tilt/rotation.
10269
10270 @item o
10271 Set trace opacity.
10272
10273 @item tx
10274 Set trace center x position.
10275
10276 @item ty
10277 Set trace center y position.
10278
10279 @item tw
10280 Set trace width, relative to width of frame.
10281
10282 @item th
10283 Set trace height, relative to height of frame.
10284
10285 @item c
10286 Set which components to trace. By default it traces first three components.
10287
10288 @item g
10289 Draw trace grid. By default is enabled.
10290
10291 @item st
10292 Draw some statistics. By default is enabled.
10293
10294 @item sc
10295 Draw scope. By default is enabled.
10296 @end table
10297
10298 @subsection Examples
10299
10300 @itemize
10301 @item
10302 Inspect full first row of video frame.
10303 @example
10304 oscilloscope=x=0.5:y=0:s=1
10305 @end example
10306
10307 @item
10308 Inspect full last row of video frame.
10309 @example
10310 oscilloscope=x=0.5:y=1:s=1
10311 @end example
10312
10313 @item
10314 Inspect full 5th line of video frame of height 1080.
10315 @example
10316 oscilloscope=x=0.5:y=5/1080:s=1
10317 @end example
10318
10319 @item
10320 Inspect full last column of video frame.
10321 @example
10322 oscilloscope=x=1:y=0.5:s=1:t=1
10323 @end example
10324
10325 @end itemize
10326
10327 @anchor{overlay}
10328 @section overlay
10329
10330 Overlay one video on top of another.
10331
10332 It takes two inputs and has one output. The first input is the "main"
10333 video on which the second input is overlaid.
10334
10335 It accepts the following parameters:
10336
10337 A description of the accepted options follows.
10338
10339 @table @option
10340 @item x
10341 @item y
10342 Set the expression for the x and y coordinates of the overlaid video
10343 on the main video. Default value is "0" for both expressions. In case
10344 the expression is invalid, it is set to a huge value (meaning that the
10345 overlay will not be displayed within the output visible area).
10346
10347 @item eof_action
10348 The action to take when EOF is encountered on the secondary input; it accepts
10349 one of the following values:
10350
10351 @table @option
10352 @item repeat
10353 Repeat the last frame (the default).
10354 @item endall
10355 End both streams.
10356 @item pass
10357 Pass the main input through.
10358 @end table
10359
10360 @item eval
10361 Set when the expressions for @option{x}, and @option{y} are evaluated.
10362
10363 It accepts the following values:
10364 @table @samp
10365 @item init
10366 only evaluate expressions once during the filter initialization or
10367 when a command is processed
10368
10369 @item frame
10370 evaluate expressions for each incoming frame
10371 @end table
10372
10373 Default value is @samp{frame}.
10374
10375 @item shortest
10376 If set to 1, force the output to terminate when the shortest input
10377 terminates. Default value is 0.
10378
10379 @item format
10380 Set the format for the output video.
10381
10382 It accepts the following values:
10383 @table @samp
10384 @item yuv420
10385 force YUV420 output
10386
10387 @item yuv422
10388 force YUV422 output
10389
10390 @item yuv444
10391 force YUV444 output
10392
10393 @item rgb
10394 force packed RGB output
10395
10396 @item gbrp
10397 force planar RGB output
10398 @end table
10399
10400 Default value is @samp{yuv420}.
10401
10402 @item rgb @emph{(deprecated)}
10403 If set to 1, force the filter to accept inputs in the RGB
10404 color space. Default value is 0. This option is deprecated, use
10405 @option{format} instead.
10406
10407 @item repeatlast
10408 If set to 1, force the filter to draw the last overlay frame over the
10409 main input until the end of the stream. A value of 0 disables this
10410 behavior. Default value is 1.
10411 @end table
10412
10413 The @option{x}, and @option{y} expressions can contain the following
10414 parameters.
10415
10416 @table @option
10417 @item main_w, W
10418 @item main_h, H
10419 The main input width and height.
10420
10421 @item overlay_w, w
10422 @item overlay_h, h
10423 The overlay input width and height.
10424
10425 @item x
10426 @item y
10427 The computed values for @var{x} and @var{y}. They are evaluated for
10428 each new frame.
10429
10430 @item hsub
10431 @item vsub
10432 horizontal and vertical chroma subsample values of the output
10433 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
10434 @var{vsub} is 1.
10435
10436 @item n
10437 the number of input frame, starting from 0
10438
10439 @item pos
10440 the position in the file of the input frame, NAN if unknown
10441
10442 @item t
10443 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
10444
10445 @end table
10446
10447 Note that the @var{n}, @var{pos}, @var{t} variables are available only
10448 when evaluation is done @emph{per frame}, and will evaluate to NAN
10449 when @option{eval} is set to @samp{init}.
10450
10451 Be aware that frames are taken from each input video in timestamp
10452 order, hence, if their initial timestamps differ, it is a good idea
10453 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
10454 have them begin in the same zero timestamp, as the example for
10455 the @var{movie} filter does.
10456
10457 You can chain together more overlays but you should test the
10458 efficiency of such approach.
10459
10460 @subsection Commands
10461
10462 This filter supports the following commands:
10463 @table @option
10464 @item x
10465 @item y
10466 Modify the x and y of the overlay input.
10467 The command accepts the same syntax of the corresponding option.
10468
10469 If the specified expression is not valid, it is kept at its current
10470 value.
10471 @end table
10472
10473 @subsection Examples
10474
10475 @itemize
10476 @item
10477 Draw the overlay at 10 pixels from the bottom right corner of the main
10478 video:
10479 @example
10480 overlay=main_w-overlay_w-10:main_h-overlay_h-10
10481 @end example
10482
10483 Using named options the example above becomes:
10484 @example
10485 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
10486 @end example
10487
10488 @item
10489 Insert a transparent PNG logo in the bottom left corner of the input,
10490 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
10491 @example
10492 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
10493 @end example
10494
10495 @item
10496 Insert 2 different transparent PNG logos (second logo on bottom
10497 right corner) using the @command{ffmpeg} tool:
10498 @example
10499 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
10500 @end example
10501
10502 @item
10503 Add a transparent color layer on top of the main video; @code{WxH}
10504 must specify the size of the main input to the overlay filter:
10505 @example
10506 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
10507 @end example
10508
10509 @item
10510 Play an original video and a filtered version (here with the deshake
10511 filter) side by side using the @command{ffplay} tool:
10512 @example
10513 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
10514 @end example
10515
10516 The above command is the same as:
10517 @example
10518 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
10519 @end example
10520
10521 @item
10522 Make a sliding overlay appearing from the left to the right top part of the
10523 screen starting since time 2:
10524 @example
10525 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
10526 @end example
10527
10528 @item
10529 Compose output by putting two input videos side to side:
10530 @example
10531 ffmpeg -i left.avi -i right.avi -filter_complex "
10532 nullsrc=size=200x100 [background];
10533 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
10534 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
10535 [background][left]       overlay=shortest=1       [background+left];
10536 [background+left][right] overlay=shortest=1:x=100 [left+right]
10537 "
10538 @end example
10539
10540 @item
10541 Mask 10-20 seconds of a video by applying the delogo filter to a section
10542 @example
10543 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
10544 -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]'
10545 masked.avi
10546 @end example
10547
10548 @item
10549 Chain several overlays in cascade:
10550 @example
10551 nullsrc=s=200x200 [bg];
10552 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
10553 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
10554 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
10555 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
10556 [in3] null,       [mid2] overlay=100:100 [out0]
10557 @end example
10558
10559 @end itemize
10560
10561 @section owdenoise
10562
10563 Apply Overcomplete Wavelet denoiser.
10564
10565 The filter accepts the following options:
10566
10567 @table @option
10568 @item depth
10569 Set depth.
10570
10571 Larger depth values will denoise lower frequency components more, but
10572 slow down filtering.
10573
10574 Must be an int in the range 8-16, default is @code{8}.
10575
10576 @item luma_strength, ls
10577 Set luma strength.
10578
10579 Must be a double value in the range 0-1000, default is @code{1.0}.
10580
10581 @item chroma_strength, cs
10582 Set chroma strength.
10583
10584 Must be a double value in the range 0-1000, default is @code{1.0}.
10585 @end table
10586
10587 @anchor{pad}
10588 @section pad
10589
10590 Add paddings to the input image, and place the original input at the
10591 provided @var{x}, @var{y} coordinates.
10592
10593 It accepts the following parameters:
10594
10595 @table @option
10596 @item width, w
10597 @item height, h
10598 Specify an expression for the size of the output image with the
10599 paddings added. If the value for @var{width} or @var{height} is 0, the
10600 corresponding input size is used for the output.
10601
10602 The @var{width} expression can reference the value set by the
10603 @var{height} expression, and vice versa.
10604
10605 The default value of @var{width} and @var{height} is 0.
10606
10607 @item x
10608 @item y
10609 Specify the offsets to place the input image at within the padded area,
10610 with respect to the top/left border of the output image.
10611
10612 The @var{x} expression can reference the value set by the @var{y}
10613 expression, and vice versa.
10614
10615 The default value of @var{x} and @var{y} is 0.
10616
10617 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
10618 so the input image is centered on the padded area.
10619
10620 @item color
10621 Specify the color of the padded area. For the syntax of this option,
10622 check the "Color" section in the ffmpeg-utils manual.
10623
10624 The default value of @var{color} is "black".
10625
10626 @item eval
10627 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
10628
10629 It accepts the following values:
10630
10631 @table @samp
10632 @item init
10633 Only evaluate expressions once during the filter initialization or when
10634 a command is processed.
10635
10636 @item frame
10637 Evaluate expressions for each incoming frame.
10638
10639 @end table
10640
10641 Default value is @samp{init}.
10642
10643 @item aspect
10644 Pad to aspect instead to a resolution.
10645
10646 @end table
10647
10648 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10649 options are expressions containing the following constants:
10650
10651 @table @option
10652 @item in_w
10653 @item in_h
10654 The input video width and height.
10655
10656 @item iw
10657 @item ih
10658 These are the same as @var{in_w} and @var{in_h}.
10659
10660 @item out_w
10661 @item out_h
10662 The output width and height (the size of the padded area), as
10663 specified by the @var{width} and @var{height} expressions.
10664
10665 @item ow
10666 @item oh
10667 These are the same as @var{out_w} and @var{out_h}.
10668
10669 @item x
10670 @item y
10671 The x and y offsets as specified by the @var{x} and @var{y}
10672 expressions, or NAN if not yet specified.
10673
10674 @item a
10675 same as @var{iw} / @var{ih}
10676
10677 @item sar
10678 input sample aspect ratio
10679
10680 @item dar
10681 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10682
10683 @item hsub
10684 @item vsub
10685 The horizontal and vertical chroma subsample values. For example for the
10686 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10687 @end table
10688
10689 @subsection Examples
10690
10691 @itemize
10692 @item
10693 Add paddings with the color "violet" to the input video. The output video
10694 size is 640x480, and the top-left corner of the input video is placed at
10695 column 0, row 40
10696 @example
10697 pad=640:480:0:40:violet
10698 @end example
10699
10700 The example above is equivalent to the following command:
10701 @example
10702 pad=width=640:height=480:x=0:y=40:color=violet
10703 @end example
10704
10705 @item
10706 Pad the input to get an output with dimensions increased by 3/2,
10707 and put the input video at the center of the padded area:
10708 @example
10709 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10710 @end example
10711
10712 @item
10713 Pad the input to get a squared output with size equal to the maximum
10714 value between the input width and height, and put the input video at
10715 the center of the padded area:
10716 @example
10717 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10718 @end example
10719
10720 @item
10721 Pad the input to get a final w/h ratio of 16:9:
10722 @example
10723 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10724 @end example
10725
10726 @item
10727 In case of anamorphic video, in order to set the output display aspect
10728 correctly, it is necessary to use @var{sar} in the expression,
10729 according to the relation:
10730 @example
10731 (ih * X / ih) * sar = output_dar
10732 X = output_dar / sar
10733 @end example
10734
10735 Thus the previous example needs to be modified to:
10736 @example
10737 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10738 @end example
10739
10740 @item
10741 Double the output size and put the input video in the bottom-right
10742 corner of the output padded area:
10743 @example
10744 pad="2*iw:2*ih:ow-iw:oh-ih"
10745 @end example
10746 @end itemize
10747
10748 @anchor{palettegen}
10749 @section palettegen
10750
10751 Generate one palette for a whole video stream.
10752
10753 It accepts the following options:
10754
10755 @table @option
10756 @item max_colors
10757 Set the maximum number of colors to quantize in the palette.
10758 Note: the palette will still contain 256 colors; the unused palette entries
10759 will be black.
10760
10761 @item reserve_transparent
10762 Create a palette of 255 colors maximum and reserve the last one for
10763 transparency. Reserving the transparency color is useful for GIF optimization.
10764 If not set, the maximum of colors in the palette will be 256. You probably want
10765 to disable this option for a standalone image.
10766 Set by default.
10767
10768 @item stats_mode
10769 Set statistics mode.
10770
10771 It accepts the following values:
10772 @table @samp
10773 @item full
10774 Compute full frame histograms.
10775 @item diff
10776 Compute histograms only for the part that differs from previous frame. This
10777 might be relevant to give more importance to the moving part of your input if
10778 the background is static.
10779 @item single
10780 Compute new histogram for each frame.
10781 @end table
10782
10783 Default value is @var{full}.
10784 @end table
10785
10786 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10787 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10788 color quantization of the palette. This information is also visible at
10789 @var{info} logging level.
10790
10791 @subsection Examples
10792
10793 @itemize
10794 @item
10795 Generate a representative palette of a given video using @command{ffmpeg}:
10796 @example
10797 ffmpeg -i input.mkv -vf palettegen palette.png
10798 @end example
10799 @end itemize
10800
10801 @section paletteuse
10802
10803 Use a palette to downsample an input video stream.
10804
10805 The filter takes two inputs: one video stream and a palette. The palette must
10806 be a 256 pixels image.
10807
10808 It accepts the following options:
10809
10810 @table @option
10811 @item dither
10812 Select dithering mode. Available algorithms are:
10813 @table @samp
10814 @item bayer
10815 Ordered 8x8 bayer dithering (deterministic)
10816 @item heckbert
10817 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10818 Note: this dithering is sometimes considered "wrong" and is included as a
10819 reference.
10820 @item floyd_steinberg
10821 Floyd and Steingberg dithering (error diffusion)
10822 @item sierra2
10823 Frankie Sierra dithering v2 (error diffusion)
10824 @item sierra2_4a
10825 Frankie Sierra dithering v2 "Lite" (error diffusion)
10826 @end table
10827
10828 Default is @var{sierra2_4a}.
10829
10830 @item bayer_scale
10831 When @var{bayer} dithering is selected, this option defines the scale of the
10832 pattern (how much the crosshatch pattern is visible). A low value means more
10833 visible pattern for less banding, and higher value means less visible pattern
10834 at the cost of more banding.
10835
10836 The option must be an integer value in the range [0,5]. Default is @var{2}.
10837
10838 @item diff_mode
10839 If set, define the zone to process
10840
10841 @table @samp
10842 @item rectangle
10843 Only the changing rectangle will be reprocessed. This is similar to GIF
10844 cropping/offsetting compression mechanism. This option can be useful for speed
10845 if only a part of the image is changing, and has use cases such as limiting the
10846 scope of the error diffusal @option{dither} to the rectangle that bounds the
10847 moving scene (it leads to more deterministic output if the scene doesn't change
10848 much, and as a result less moving noise and better GIF compression).
10849 @end table
10850
10851 Default is @var{none}.
10852
10853 @item new
10854 Take new palette for each output frame.
10855 @end table
10856
10857 @subsection Examples
10858
10859 @itemize
10860 @item
10861 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10862 using @command{ffmpeg}:
10863 @example
10864 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10865 @end example
10866 @end itemize
10867
10868 @section perspective
10869
10870 Correct perspective of video not recorded perpendicular to the screen.
10871
10872 A description of the accepted parameters follows.
10873
10874 @table @option
10875 @item x0
10876 @item y0
10877 @item x1
10878 @item y1
10879 @item x2
10880 @item y2
10881 @item x3
10882 @item y3
10883 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10884 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10885 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10886 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10887 then the corners of the source will be sent to the specified coordinates.
10888
10889 The expressions can use the following variables:
10890
10891 @table @option
10892 @item W
10893 @item H
10894 the width and height of video frame.
10895 @item in
10896 Input frame count.
10897 @item on
10898 Output frame count.
10899 @end table
10900
10901 @item interpolation
10902 Set interpolation for perspective correction.
10903
10904 It accepts the following values:
10905 @table @samp
10906 @item linear
10907 @item cubic
10908 @end table
10909
10910 Default value is @samp{linear}.
10911
10912 @item sense
10913 Set interpretation of coordinate options.
10914
10915 It accepts the following values:
10916 @table @samp
10917 @item 0, source
10918
10919 Send point in the source specified by the given coordinates to
10920 the corners of the destination.
10921
10922 @item 1, destination
10923
10924 Send the corners of the source to the point in the destination specified
10925 by the given coordinates.
10926
10927 Default value is @samp{source}.
10928 @end table
10929
10930 @item eval
10931 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10932
10933 It accepts the following values:
10934 @table @samp
10935 @item init
10936 only evaluate expressions once during the filter initialization or
10937 when a command is processed
10938
10939 @item frame
10940 evaluate expressions for each incoming frame
10941 @end table
10942
10943 Default value is @samp{init}.
10944 @end table
10945
10946 @section phase
10947
10948 Delay interlaced video by one field time so that the field order changes.
10949
10950 The intended use is to fix PAL movies that have been captured with the
10951 opposite field order to the film-to-video transfer.
10952
10953 A description of the accepted parameters follows.
10954
10955 @table @option
10956 @item mode
10957 Set phase mode.
10958
10959 It accepts the following values:
10960 @table @samp
10961 @item t
10962 Capture field order top-first, transfer bottom-first.
10963 Filter will delay the bottom field.
10964
10965 @item b
10966 Capture field order bottom-first, transfer top-first.
10967 Filter will delay the top field.
10968
10969 @item p
10970 Capture and transfer with the same field order. This mode only exists
10971 for the documentation of the other options to refer to, but if you
10972 actually select it, the filter will faithfully do nothing.
10973
10974 @item a
10975 Capture field order determined automatically by field flags, transfer
10976 opposite.
10977 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10978 basis using field flags. If no field information is available,
10979 then this works just like @samp{u}.
10980
10981 @item u
10982 Capture unknown or varying, transfer opposite.
10983 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10984 analyzing the images and selecting the alternative that produces best
10985 match between the fields.
10986
10987 @item T
10988 Capture top-first, transfer unknown or varying.
10989 Filter selects among @samp{t} and @samp{p} using image analysis.
10990
10991 @item B
10992 Capture bottom-first, transfer unknown or varying.
10993 Filter selects among @samp{b} and @samp{p} using image analysis.
10994
10995 @item A
10996 Capture determined by field flags, transfer unknown or varying.
10997 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10998 image analysis. If no field information is available, then this works just
10999 like @samp{U}. This is the default mode.
11000
11001 @item U
11002 Both capture and transfer unknown or varying.
11003 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
11004 @end table
11005 @end table
11006
11007 @section pixdesctest
11008
11009 Pixel format descriptor test filter, mainly useful for internal
11010 testing. The output video should be equal to the input video.
11011
11012 For example:
11013 @example
11014 format=monow, pixdesctest
11015 @end example
11016
11017 can be used to test the monowhite pixel format descriptor definition.
11018
11019 @section pixscope
11020
11021 Display sample values of color channels. Mainly useful for checking color and levels.
11022
11023 The filters accept the following options:
11024
11025 @table @option
11026 @item x
11027 Set scope X position, offset on X axis.
11028
11029 @item y
11030 Set scope Y position, offset on Y axis.
11031
11032 @item w
11033 Set scope width.
11034
11035 @item h
11036 Set scope height.
11037
11038 @item o
11039 Set window opacity. This window also holds statistics about pixel area.
11040 @end table
11041
11042 @section pp
11043
11044 Enable the specified chain of postprocessing subfilters using libpostproc. This
11045 library should be automatically selected with a GPL build (@code{--enable-gpl}).
11046 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
11047 Each subfilter and some options have a short and a long name that can be used
11048 interchangeably, i.e. dr/dering are the same.
11049
11050 The filters accept the following options:
11051
11052 @table @option
11053 @item subfilters
11054 Set postprocessing subfilters string.
11055 @end table
11056
11057 All subfilters share common options to determine their scope:
11058
11059 @table @option
11060 @item a/autoq
11061 Honor the quality commands for this subfilter.
11062
11063 @item c/chrom
11064 Do chrominance filtering, too (default).
11065
11066 @item y/nochrom
11067 Do luminance filtering only (no chrominance).
11068
11069 @item n/noluma
11070 Do chrominance filtering only (no luminance).
11071 @end table
11072
11073 These options can be appended after the subfilter name, separated by a '|'.
11074
11075 Available subfilters are:
11076
11077 @table @option
11078 @item hb/hdeblock[|difference[|flatness]]
11079 Horizontal deblocking filter
11080 @table @option
11081 @item difference
11082 Difference factor where higher values mean more deblocking (default: @code{32}).
11083 @item flatness
11084 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11085 @end table
11086
11087 @item vb/vdeblock[|difference[|flatness]]
11088 Vertical deblocking filter
11089 @table @option
11090 @item difference
11091 Difference factor where higher values mean more deblocking (default: @code{32}).
11092 @item flatness
11093 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11094 @end table
11095
11096 @item ha/hadeblock[|difference[|flatness]]
11097 Accurate horizontal deblocking filter
11098 @table @option
11099 @item difference
11100 Difference factor where higher values mean more deblocking (default: @code{32}).
11101 @item flatness
11102 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11103 @end table
11104
11105 @item va/vadeblock[|difference[|flatness]]
11106 Accurate vertical deblocking filter
11107 @table @option
11108 @item difference
11109 Difference factor where higher values mean more deblocking (default: @code{32}).
11110 @item flatness
11111 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11112 @end table
11113 @end table
11114
11115 The horizontal and vertical deblocking filters share the difference and
11116 flatness values so you cannot set different horizontal and vertical
11117 thresholds.
11118
11119 @table @option
11120 @item h1/x1hdeblock
11121 Experimental horizontal deblocking filter
11122
11123 @item v1/x1vdeblock
11124 Experimental vertical deblocking filter
11125
11126 @item dr/dering
11127 Deringing filter
11128
11129 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
11130 @table @option
11131 @item threshold1
11132 larger -> stronger filtering
11133 @item threshold2
11134 larger -> stronger filtering
11135 @item threshold3
11136 larger -> stronger filtering
11137 @end table
11138
11139 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
11140 @table @option
11141 @item f/fullyrange
11142 Stretch luminance to @code{0-255}.
11143 @end table
11144
11145 @item lb/linblenddeint
11146 Linear blend deinterlacing filter that deinterlaces the given block by
11147 filtering all lines with a @code{(1 2 1)} filter.
11148
11149 @item li/linipoldeint
11150 Linear interpolating deinterlacing filter that deinterlaces the given block by
11151 linearly interpolating every second line.
11152
11153 @item ci/cubicipoldeint
11154 Cubic interpolating deinterlacing filter deinterlaces the given block by
11155 cubically interpolating every second line.
11156
11157 @item md/mediandeint
11158 Median deinterlacing filter that deinterlaces the given block by applying a
11159 median filter to every second line.
11160
11161 @item fd/ffmpegdeint
11162 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
11163 second line with a @code{(-1 4 2 4 -1)} filter.
11164
11165 @item l5/lowpass5
11166 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
11167 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
11168
11169 @item fq/forceQuant[|quantizer]
11170 Overrides the quantizer table from the input with the constant quantizer you
11171 specify.
11172 @table @option
11173 @item quantizer
11174 Quantizer to use
11175 @end table
11176
11177 @item de/default
11178 Default pp filter combination (@code{hb|a,vb|a,dr|a})
11179
11180 @item fa/fast
11181 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
11182
11183 @item ac
11184 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
11185 @end table
11186
11187 @subsection Examples
11188
11189 @itemize
11190 @item
11191 Apply horizontal and vertical deblocking, deringing and automatic
11192 brightness/contrast:
11193 @example
11194 pp=hb/vb/dr/al
11195 @end example
11196
11197 @item
11198 Apply default filters without brightness/contrast correction:
11199 @example
11200 pp=de/-al
11201 @end example
11202
11203 @item
11204 Apply default filters and temporal denoiser:
11205 @example
11206 pp=default/tmpnoise|1|2|3
11207 @end example
11208
11209 @item
11210 Apply deblocking on luminance only, and switch vertical deblocking on or off
11211 automatically depending on available CPU time:
11212 @example
11213 pp=hb|y/vb|a
11214 @end example
11215 @end itemize
11216
11217 @section pp7
11218 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
11219 similar to spp = 6 with 7 point DCT, where only the center sample is
11220 used after IDCT.
11221
11222 The filter accepts the following options:
11223
11224 @table @option
11225 @item qp
11226 Force a constant quantization parameter. It accepts an integer in range
11227 0 to 63. If not set, the filter will use the QP from the video stream
11228 (if available).
11229
11230 @item mode
11231 Set thresholding mode. Available modes are:
11232
11233 @table @samp
11234 @item hard
11235 Set hard thresholding.
11236 @item soft
11237 Set soft thresholding (better de-ringing effect, but likely blurrier).
11238 @item medium
11239 Set medium thresholding (good results, default).
11240 @end table
11241 @end table
11242
11243 @section premultiply
11244 Apply alpha premultiply effect to input video stream using first plane
11245 of second stream as alpha.
11246
11247 Both streams must have same dimensions and same pixel format.
11248
11249 The filter accepts the following option:
11250
11251 @table @option
11252 @item planes
11253 Set which planes will be processed, unprocessed planes will be copied.
11254 By default value 0xf, all planes will be processed.
11255 @end table
11256
11257 @section prewitt
11258 Apply prewitt operator to input video stream.
11259
11260 The filter accepts the following option:
11261
11262 @table @option
11263 @item planes
11264 Set which planes will be processed, unprocessed planes will be copied.
11265 By default value 0xf, all planes will be processed.
11266
11267 @item scale
11268 Set value which will be multiplied with filtered result.
11269
11270 @item delta
11271 Set value which will be added to filtered result.
11272 @end table
11273
11274 @section psnr
11275
11276 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
11277 Ratio) between two input videos.
11278
11279 This filter takes in input two input videos, the first input is
11280 considered the "main" source and is passed unchanged to the
11281 output. The second input is used as a "reference" video for computing
11282 the PSNR.
11283
11284 Both video inputs must have the same resolution and pixel format for
11285 this filter to work correctly. Also it assumes that both inputs
11286 have the same number of frames, which are compared one by one.
11287
11288 The obtained average PSNR is printed through the logging system.
11289
11290 The filter stores the accumulated MSE (mean squared error) of each
11291 frame, and at the end of the processing it is averaged across all frames
11292 equally, and the following formula is applied to obtain the PSNR:
11293
11294 @example
11295 PSNR = 10*log10(MAX^2/MSE)
11296 @end example
11297
11298 Where MAX is the average of the maximum values of each component of the
11299 image.
11300
11301 The description of the accepted parameters follows.
11302
11303 @table @option
11304 @item stats_file, f
11305 If specified the filter will use the named file to save the PSNR of
11306 each individual frame. When filename equals "-" the data is sent to
11307 standard output.
11308
11309 @item stats_version
11310 Specifies which version of the stats file format to use. Details of
11311 each format are written below.
11312 Default value is 1.
11313
11314 @item stats_add_max
11315 Determines whether the max value is output to the stats log.
11316 Default value is 0.
11317 Requires stats_version >= 2. If this is set and stats_version < 2,
11318 the filter will return an error.
11319 @end table
11320
11321 The file printed if @var{stats_file} is selected, contains a sequence of
11322 key/value pairs of the form @var{key}:@var{value} for each compared
11323 couple of frames.
11324
11325 If a @var{stats_version} greater than 1 is specified, a header line precedes
11326 the list of per-frame-pair stats, with key value pairs following the frame
11327 format with the following parameters:
11328
11329 @table @option
11330 @item psnr_log_version
11331 The version of the log file format. Will match @var{stats_version}.
11332
11333 @item fields
11334 A comma separated list of the per-frame-pair parameters included in
11335 the log.
11336 @end table
11337
11338 A description of each shown per-frame-pair parameter follows:
11339
11340 @table @option
11341 @item n
11342 sequential number of the input frame, starting from 1
11343
11344 @item mse_avg
11345 Mean Square Error pixel-by-pixel average difference of the compared
11346 frames, averaged over all the image components.
11347
11348 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
11349 Mean Square Error pixel-by-pixel average difference of the compared
11350 frames for the component specified by the suffix.
11351
11352 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
11353 Peak Signal to Noise ratio of the compared frames for the component
11354 specified by the suffix.
11355
11356 @item max_avg, max_y, max_u, max_v
11357 Maximum allowed value for each channel, and average over all
11358 channels.
11359 @end table
11360
11361 For example:
11362 @example
11363 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
11364 [main][ref] psnr="stats_file=stats.log" [out]
11365 @end example
11366
11367 On this example the input file being processed is compared with the
11368 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
11369 is stored in @file{stats.log}.
11370
11371 @anchor{pullup}
11372 @section pullup
11373
11374 Pulldown reversal (inverse telecine) filter, capable of handling mixed
11375 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
11376 content.
11377
11378 The pullup filter is designed to take advantage of future context in making
11379 its decisions. This filter is stateless in the sense that it does not lock
11380 onto a pattern to follow, but it instead looks forward to the following
11381 fields in order to identify matches and rebuild progressive frames.
11382
11383 To produce content with an even framerate, insert the fps filter after
11384 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
11385 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
11386
11387 The filter accepts the following options:
11388
11389 @table @option
11390 @item jl
11391 @item jr
11392 @item jt
11393 @item jb
11394 These options set the amount of "junk" to ignore at the left, right, top, and
11395 bottom of the image, respectively. Left and right are in units of 8 pixels,
11396 while top and bottom are in units of 2 lines.
11397 The default is 8 pixels on each side.
11398
11399 @item sb
11400 Set the strict breaks. Setting this option to 1 will reduce the chances of
11401 filter generating an occasional mismatched frame, but it may also cause an
11402 excessive number of frames to be dropped during high motion sequences.
11403 Conversely, setting it to -1 will make filter match fields more easily.
11404 This may help processing of video where there is slight blurring between
11405 the fields, but may also cause there to be interlaced frames in the output.
11406 Default value is @code{0}.
11407
11408 @item mp
11409 Set the metric plane to use. It accepts the following values:
11410 @table @samp
11411 @item l
11412 Use luma plane.
11413
11414 @item u
11415 Use chroma blue plane.
11416
11417 @item v
11418 Use chroma red plane.
11419 @end table
11420
11421 This option may be set to use chroma plane instead of the default luma plane
11422 for doing filter's computations. This may improve accuracy on very clean
11423 source material, but more likely will decrease accuracy, especially if there
11424 is chroma noise (rainbow effect) or any grayscale video.
11425 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
11426 load and make pullup usable in realtime on slow machines.
11427 @end table
11428
11429 For best results (without duplicated frames in the output file) it is
11430 necessary to change the output frame rate. For example, to inverse
11431 telecine NTSC input:
11432 @example
11433 ffmpeg -i input -vf pullup -r 24000/1001 ...
11434 @end example
11435
11436 @section qp
11437
11438 Change video quantization parameters (QP).
11439
11440 The filter accepts the following option:
11441
11442 @table @option
11443 @item qp
11444 Set expression for quantization parameter.
11445 @end table
11446
11447 The expression is evaluated through the eval API and can contain, among others,
11448 the following constants:
11449
11450 @table @var
11451 @item known
11452 1 if index is not 129, 0 otherwise.
11453
11454 @item qp
11455 Sequentional index starting from -129 to 128.
11456 @end table
11457
11458 @subsection Examples
11459
11460 @itemize
11461 @item
11462 Some equation like:
11463 @example
11464 qp=2+2*sin(PI*qp)
11465 @end example
11466 @end itemize
11467
11468 @section random
11469
11470 Flush video frames from internal cache of frames into a random order.
11471 No frame is discarded.
11472 Inspired by @ref{frei0r} nervous filter.
11473
11474 @table @option
11475 @item frames
11476 Set size in number of frames of internal cache, in range from @code{2} to
11477 @code{512}. Default is @code{30}.
11478
11479 @item seed
11480 Set seed for random number generator, must be an integer included between
11481 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
11482 less than @code{0}, the filter will try to use a good random seed on a
11483 best effort basis.
11484 @end table
11485
11486 @section readeia608
11487
11488 Read closed captioning (EIA-608) information from the top lines of a video frame.
11489
11490 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
11491 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
11492 with EIA-608 data (starting from 0). A description of each metadata value follows:
11493
11494 @table @option
11495 @item lavfi.readeia608.X.cc
11496 The two bytes stored as EIA-608 data (printed in hexadecimal).
11497
11498 @item lavfi.readeia608.X.line
11499 The number of the line on which the EIA-608 data was identified and read.
11500 @end table
11501
11502 This filter accepts the following options:
11503
11504 @table @option
11505 @item scan_min
11506 Set the line to start scanning for EIA-608 data. Default is @code{0}.
11507
11508 @item scan_max
11509 Set the line to end scanning for EIA-608 data. Default is @code{29}.
11510
11511 @item mac
11512 Set minimal acceptable amplitude change for sync codes detection.
11513 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
11514
11515 @item spw
11516 Set the ratio of width reserved for sync code detection.
11517 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
11518
11519 @item mhd
11520 Set the max peaks height difference for sync code detection.
11521 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11522
11523 @item mpd
11524 Set max peaks period difference for sync code detection.
11525 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11526
11527 @item msd
11528 Set the first two max start code bits differences.
11529 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
11530
11531 @item bhd
11532 Set the minimum ratio of bits height compared to 3rd start code bit.
11533 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
11534
11535 @item th_w
11536 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
11537
11538 @item th_b
11539 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
11540
11541 @item chp
11542 Enable checking the parity bit. In the event of a parity error, the filter will output
11543 @code{0x00} for that character. Default is false.
11544 @end table
11545
11546 @subsection Examples
11547
11548 @itemize
11549 @item
11550 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
11551 @example
11552 ffprobe -f lavfi -i movie=captioned_video.mov,readeia608 -show_entries frame=pkt_pts_time:frame_tags=lavfi.readeia608.0.cc,lavfi.readeia608.1.cc -of csv
11553 @end example
11554 @end itemize
11555
11556 @section readvitc
11557
11558 Read vertical interval timecode (VITC) information from the top lines of a
11559 video frame.
11560
11561 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
11562 timecode value, if a valid timecode has been detected. Further metadata key
11563 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
11564 timecode data has been found or not.
11565
11566 This filter accepts the following options:
11567
11568 @table @option
11569 @item scan_max
11570 Set the maximum number of lines to scan for VITC data. If the value is set to
11571 @code{-1} the full video frame is scanned. Default is @code{45}.
11572
11573 @item thr_b
11574 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
11575 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
11576
11577 @item thr_w
11578 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
11579 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
11580 @end table
11581
11582 @subsection Examples
11583
11584 @itemize
11585 @item
11586 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
11587 draw @code{--:--:--:--} as a placeholder:
11588 @example
11589 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
11590 @end example
11591 @end itemize
11592
11593 @section remap
11594
11595 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
11596
11597 Destination pixel at position (X, Y) will be picked from source (x, y) position
11598 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
11599 value for pixel will be used for destination pixel.
11600
11601 Xmap and Ymap input video streams must be of same dimensions. Output video stream
11602 will have Xmap/Ymap video stream dimensions.
11603 Xmap and Ymap input video streams are 16bit depth, single channel.
11604
11605 @section removegrain
11606
11607 The removegrain filter is a spatial denoiser for progressive video.
11608
11609 @table @option
11610 @item m0
11611 Set mode for the first plane.
11612
11613 @item m1
11614 Set mode for the second plane.
11615
11616 @item m2
11617 Set mode for the third plane.
11618
11619 @item m3
11620 Set mode for the fourth plane.
11621 @end table
11622
11623 Range of mode is from 0 to 24. Description of each mode follows:
11624
11625 @table @var
11626 @item 0
11627 Leave input plane unchanged. Default.
11628
11629 @item 1
11630 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
11631
11632 @item 2
11633 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
11634
11635 @item 3
11636 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
11637
11638 @item 4
11639 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
11640 This is equivalent to a median filter.
11641
11642 @item 5
11643 Line-sensitive clipping giving the minimal change.
11644
11645 @item 6
11646 Line-sensitive clipping, intermediate.
11647
11648 @item 7
11649 Line-sensitive clipping, intermediate.
11650
11651 @item 8
11652 Line-sensitive clipping, intermediate.
11653
11654 @item 9
11655 Line-sensitive clipping on a line where the neighbours pixels are the closest.
11656
11657 @item 10
11658 Replaces the target pixel with the closest neighbour.
11659
11660 @item 11
11661 [1 2 1] horizontal and vertical kernel blur.
11662
11663 @item 12
11664 Same as mode 11.
11665
11666 @item 13
11667 Bob mode, interpolates top field from the line where the neighbours
11668 pixels are the closest.
11669
11670 @item 14
11671 Bob mode, interpolates bottom field from the line where the neighbours
11672 pixels are the closest.
11673
11674 @item 15
11675 Bob mode, interpolates top field. Same as 13 but with a more complicated
11676 interpolation formula.
11677
11678 @item 16
11679 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
11680 interpolation formula.
11681
11682 @item 17
11683 Clips the pixel with the minimum and maximum of respectively the maximum and
11684 minimum of each pair of opposite neighbour pixels.
11685
11686 @item 18
11687 Line-sensitive clipping using opposite neighbours whose greatest distance from
11688 the current pixel is minimal.
11689
11690 @item 19
11691 Replaces the pixel with the average of its 8 neighbours.
11692
11693 @item 20
11694 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
11695
11696 @item 21
11697 Clips pixels using the averages of opposite neighbour.
11698
11699 @item 22
11700 Same as mode 21 but simpler and faster.
11701
11702 @item 23
11703 Small edge and halo removal, but reputed useless.
11704
11705 @item 24
11706 Similar as 23.
11707 @end table
11708
11709 @section removelogo
11710
11711 Suppress a TV station logo, using an image file to determine which
11712 pixels comprise the logo. It works by filling in the pixels that
11713 comprise the logo with neighboring pixels.
11714
11715 The filter accepts the following options:
11716
11717 @table @option
11718 @item filename, f
11719 Set the filter bitmap file, which can be any image format supported by
11720 libavformat. The width and height of the image file must match those of the
11721 video stream being processed.
11722 @end table
11723
11724 Pixels in the provided bitmap image with a value of zero are not
11725 considered part of the logo, non-zero pixels are considered part of
11726 the logo. If you use white (255) for the logo and black (0) for the
11727 rest, you will be safe. For making the filter bitmap, it is
11728 recommended to take a screen capture of a black frame with the logo
11729 visible, and then using a threshold filter followed by the erode
11730 filter once or twice.
11731
11732 If needed, little splotches can be fixed manually. Remember that if
11733 logo pixels are not covered, the filter quality will be much
11734 reduced. Marking too many pixels as part of the logo does not hurt as
11735 much, but it will increase the amount of blurring needed to cover over
11736 the image and will destroy more information than necessary, and extra
11737 pixels will slow things down on a large logo.
11738
11739 @section repeatfields
11740
11741 This filter uses the repeat_field flag from the Video ES headers and hard repeats
11742 fields based on its value.
11743
11744 @section reverse
11745
11746 Reverse a video clip.
11747
11748 Warning: This filter requires memory to buffer the entire clip, so trimming
11749 is suggested.
11750
11751 @subsection Examples
11752
11753 @itemize
11754 @item
11755 Take the first 5 seconds of a clip, and reverse it.
11756 @example
11757 trim=end=5,reverse
11758 @end example
11759 @end itemize
11760
11761 @section rotate
11762
11763 Rotate video by an arbitrary angle expressed in radians.
11764
11765 The filter accepts the following options:
11766
11767 A description of the optional parameters follows.
11768 @table @option
11769 @item angle, a
11770 Set an expression for the angle by which to rotate the input video
11771 clockwise, expressed as a number of radians. A negative value will
11772 result in a counter-clockwise rotation. By default it is set to "0".
11773
11774 This expression is evaluated for each frame.
11775
11776 @item out_w, ow
11777 Set the output width expression, default value is "iw".
11778 This expression is evaluated just once during configuration.
11779
11780 @item out_h, oh
11781 Set the output height expression, default value is "ih".
11782 This expression is evaluated just once during configuration.
11783
11784 @item bilinear
11785 Enable bilinear interpolation if set to 1, a value of 0 disables
11786 it. Default value is 1.
11787
11788 @item fillcolor, c
11789 Set the color used to fill the output area not covered by the rotated
11790 image. For the general syntax of this option, check the "Color" section in the
11791 ffmpeg-utils manual. If the special value "none" is selected then no
11792 background is printed (useful for example if the background is never shown).
11793
11794 Default value is "black".
11795 @end table
11796
11797 The expressions for the angle and the output size can contain the
11798 following constants and functions:
11799
11800 @table @option
11801 @item n
11802 sequential number of the input frame, starting from 0. It is always NAN
11803 before the first frame is filtered.
11804
11805 @item t
11806 time in seconds of the input frame, it is set to 0 when the filter is
11807 configured. It is always NAN before the first frame is filtered.
11808
11809 @item hsub
11810 @item vsub
11811 horizontal and vertical chroma subsample values. For example for the
11812 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11813
11814 @item in_w, iw
11815 @item in_h, ih
11816 the input video width and height
11817
11818 @item out_w, ow
11819 @item out_h, oh
11820 the output width and height, that is the size of the padded area as
11821 specified by the @var{width} and @var{height} expressions
11822
11823 @item rotw(a)
11824 @item roth(a)
11825 the minimal width/height required for completely containing the input
11826 video rotated by @var{a} radians.
11827
11828 These are only available when computing the @option{out_w} and
11829 @option{out_h} expressions.
11830 @end table
11831
11832 @subsection Examples
11833
11834 @itemize
11835 @item
11836 Rotate the input by PI/6 radians clockwise:
11837 @example
11838 rotate=PI/6
11839 @end example
11840
11841 @item
11842 Rotate the input by PI/6 radians counter-clockwise:
11843 @example
11844 rotate=-PI/6
11845 @end example
11846
11847 @item
11848 Rotate the input by 45 degrees clockwise:
11849 @example
11850 rotate=45*PI/180
11851 @end example
11852
11853 @item
11854 Apply a constant rotation with period T, starting from an angle of PI/3:
11855 @example
11856 rotate=PI/3+2*PI*t/T
11857 @end example
11858
11859 @item
11860 Make the input video rotation oscillating with a period of T
11861 seconds and an amplitude of A radians:
11862 @example
11863 rotate=A*sin(2*PI/T*t)
11864 @end example
11865
11866 @item
11867 Rotate the video, output size is chosen so that the whole rotating
11868 input video is always completely contained in the output:
11869 @example
11870 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11871 @end example
11872
11873 @item
11874 Rotate the video, reduce the output size so that no background is ever
11875 shown:
11876 @example
11877 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11878 @end example
11879 @end itemize
11880
11881 @subsection Commands
11882
11883 The filter supports the following commands:
11884
11885 @table @option
11886 @item a, angle
11887 Set the angle expression.
11888 The command accepts the same syntax of the corresponding option.
11889
11890 If the specified expression is not valid, it is kept at its current
11891 value.
11892 @end table
11893
11894 @section sab
11895
11896 Apply Shape Adaptive Blur.
11897
11898 The filter accepts the following options:
11899
11900 @table @option
11901 @item luma_radius, lr
11902 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11903 value is 1.0. A greater value will result in a more blurred image, and
11904 in slower processing.
11905
11906 @item luma_pre_filter_radius, lpfr
11907 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11908 value is 1.0.
11909
11910 @item luma_strength, ls
11911 Set luma maximum difference between pixels to still be considered, must
11912 be a value in the 0.1-100.0 range, default value is 1.0.
11913
11914 @item chroma_radius, cr
11915 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11916 greater value will result in a more blurred image, and in slower
11917 processing.
11918
11919 @item chroma_pre_filter_radius, cpfr
11920 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11921
11922 @item chroma_strength, cs
11923 Set chroma maximum difference between pixels to still be considered,
11924 must be a value in the -0.9-100.0 range.
11925 @end table
11926
11927 Each chroma option value, if not explicitly specified, is set to the
11928 corresponding luma option value.
11929
11930 @anchor{scale}
11931 @section scale
11932
11933 Scale (resize) the input video, using the libswscale library.
11934
11935 The scale filter forces the output display aspect ratio to be the same
11936 of the input, by changing the output sample aspect ratio.
11937
11938 If the input image format is different from the format requested by
11939 the next filter, the scale filter will convert the input to the
11940 requested format.
11941
11942 @subsection Options
11943 The filter accepts the following options, or any of the options
11944 supported by the libswscale scaler.
11945
11946 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11947 the complete list of scaler options.
11948
11949 @table @option
11950 @item width, w
11951 @item height, h
11952 Set the output video dimension expression. Default value is the input
11953 dimension.
11954
11955 If the value is 0, the input width is used for the output.
11956
11957 If one of the values is -1, the scale filter will use a value that
11958 maintains the aspect ratio of the input image, calculated from the
11959 other specified dimension. If both of them are -1, the input size is
11960 used
11961
11962 If one of the values is -n with n > 1, the scale filter will also use a value
11963 that maintains the aspect ratio of the input image, calculated from the other
11964 specified dimension. After that it will, however, make sure that the calculated
11965 dimension is divisible by n and adjust the value if necessary.
11966
11967 See below for the list of accepted constants for use in the dimension
11968 expression.
11969
11970 @item eval
11971 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11972
11973 @table @samp
11974 @item init
11975 Only evaluate expressions once during the filter initialization or when a command is processed.
11976
11977 @item frame
11978 Evaluate expressions for each incoming frame.
11979
11980 @end table
11981
11982 Default value is @samp{init}.
11983
11984
11985 @item interl
11986 Set the interlacing mode. It accepts the following values:
11987
11988 @table @samp
11989 @item 1
11990 Force interlaced aware scaling.
11991
11992 @item 0
11993 Do not apply interlaced scaling.
11994
11995 @item -1
11996 Select interlaced aware scaling depending on whether the source frames
11997 are flagged as interlaced or not.
11998 @end table
11999
12000 Default value is @samp{0}.
12001
12002 @item flags
12003 Set libswscale scaling flags. See
12004 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12005 complete list of values. If not explicitly specified the filter applies
12006 the default flags.
12007
12008
12009 @item param0, param1
12010 Set libswscale input parameters for scaling algorithms that need them. See
12011 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12012 complete documentation. If not explicitly specified the filter applies
12013 empty parameters.
12014
12015
12016
12017 @item size, s
12018 Set the video size. For the syntax of this option, check the
12019 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12020
12021 @item in_color_matrix
12022 @item out_color_matrix
12023 Set in/output YCbCr color space type.
12024
12025 This allows the autodetected value to be overridden as well as allows forcing
12026 a specific value used for the output and encoder.
12027
12028 If not specified, the color space type depends on the pixel format.
12029
12030 Possible values:
12031
12032 @table @samp
12033 @item auto
12034 Choose automatically.
12035
12036 @item bt709
12037 Format conforming to International Telecommunication Union (ITU)
12038 Recommendation BT.709.
12039
12040 @item fcc
12041 Set color space conforming to the United States Federal Communications
12042 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
12043
12044 @item bt601
12045 Set color space conforming to:
12046
12047 @itemize
12048 @item
12049 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
12050
12051 @item
12052 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
12053
12054 @item
12055 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
12056
12057 @end itemize
12058
12059 @item smpte240m
12060 Set color space conforming to SMPTE ST 240:1999.
12061 @end table
12062
12063 @item in_range
12064 @item out_range
12065 Set in/output YCbCr sample range.
12066
12067 This allows the autodetected value to be overridden as well as allows forcing
12068 a specific value used for the output and encoder. If not specified, the
12069 range depends on the pixel format. Possible values:
12070
12071 @table @samp
12072 @item auto
12073 Choose automatically.
12074
12075 @item jpeg/full/pc
12076 Set full range (0-255 in case of 8-bit luma).
12077
12078 @item mpeg/tv
12079 Set "MPEG" range (16-235 in case of 8-bit luma).
12080 @end table
12081
12082 @item force_original_aspect_ratio
12083 Enable decreasing or increasing output video width or height if necessary to
12084 keep the original aspect ratio. Possible values:
12085
12086 @table @samp
12087 @item disable
12088 Scale the video as specified and disable this feature.
12089
12090 @item decrease
12091 The output video dimensions will automatically be decreased if needed.
12092
12093 @item increase
12094 The output video dimensions will automatically be increased if needed.
12095
12096 @end table
12097
12098 One useful instance of this option is that when you know a specific device's
12099 maximum allowed resolution, you can use this to limit the output video to
12100 that, while retaining the aspect ratio. For example, device A allows
12101 1280x720 playback, and your video is 1920x800. Using this option (set it to
12102 decrease) and specifying 1280x720 to the command line makes the output
12103 1280x533.
12104
12105 Please note that this is a different thing than specifying -1 for @option{w}
12106 or @option{h}, you still need to specify the output resolution for this option
12107 to work.
12108
12109 @end table
12110
12111 The values of the @option{w} and @option{h} options are expressions
12112 containing the following constants:
12113
12114 @table @var
12115 @item in_w
12116 @item in_h
12117 The input width and height
12118
12119 @item iw
12120 @item ih
12121 These are the same as @var{in_w} and @var{in_h}.
12122
12123 @item out_w
12124 @item out_h
12125 The output (scaled) width and height
12126
12127 @item ow
12128 @item oh
12129 These are the same as @var{out_w} and @var{out_h}
12130
12131 @item a
12132 The same as @var{iw} / @var{ih}
12133
12134 @item sar
12135 input sample aspect ratio
12136
12137 @item dar
12138 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
12139
12140 @item hsub
12141 @item vsub
12142 horizontal and vertical input chroma subsample values. For example for the
12143 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12144
12145 @item ohsub
12146 @item ovsub
12147 horizontal and vertical output chroma subsample values. For example for the
12148 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12149 @end table
12150
12151 @subsection Examples
12152
12153 @itemize
12154 @item
12155 Scale the input video to a size of 200x100
12156 @example
12157 scale=w=200:h=100
12158 @end example
12159
12160 This is equivalent to:
12161 @example
12162 scale=200:100
12163 @end example
12164
12165 or:
12166 @example
12167 scale=200x100
12168 @end example
12169
12170 @item
12171 Specify a size abbreviation for the output size:
12172 @example
12173 scale=qcif
12174 @end example
12175
12176 which can also be written as:
12177 @example
12178 scale=size=qcif
12179 @end example
12180
12181 @item
12182 Scale the input to 2x:
12183 @example
12184 scale=w=2*iw:h=2*ih
12185 @end example
12186
12187 @item
12188 The above is the same as:
12189 @example
12190 scale=2*in_w:2*in_h
12191 @end example
12192
12193 @item
12194 Scale the input to 2x with forced interlaced scaling:
12195 @example
12196 scale=2*iw:2*ih:interl=1
12197 @end example
12198
12199 @item
12200 Scale the input to half size:
12201 @example
12202 scale=w=iw/2:h=ih/2
12203 @end example
12204
12205 @item
12206 Increase the width, and set the height to the same size:
12207 @example
12208 scale=3/2*iw:ow
12209 @end example
12210
12211 @item
12212 Seek Greek harmony:
12213 @example
12214 scale=iw:1/PHI*iw
12215 scale=ih*PHI:ih
12216 @end example
12217
12218 @item
12219 Increase the height, and set the width to 3/2 of the height:
12220 @example
12221 scale=w=3/2*oh:h=3/5*ih
12222 @end example
12223
12224 @item
12225 Increase the size, making the size a multiple of the chroma
12226 subsample values:
12227 @example
12228 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
12229 @end example
12230
12231 @item
12232 Increase the width to a maximum of 500 pixels,
12233 keeping the same aspect ratio as the input:
12234 @example
12235 scale=w='min(500\, iw*3/2):h=-1'
12236 @end example
12237 @end itemize
12238
12239 @subsection Commands
12240
12241 This filter supports the following commands:
12242 @table @option
12243 @item width, w
12244 @item height, h
12245 Set the output video dimension expression.
12246 The command accepts the same syntax of the corresponding option.
12247
12248 If the specified expression is not valid, it is kept at its current
12249 value.
12250 @end table
12251
12252 @section scale_npp
12253
12254 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
12255 format conversion on CUDA video frames. Setting the output width and height
12256 works in the same way as for the @var{scale} filter.
12257
12258 The following additional options are accepted:
12259 @table @option
12260 @item format
12261 The pixel format of the output CUDA frames. If set to the string "same" (the
12262 default), the input format will be kept. Note that automatic format negotiation
12263 and conversion is not yet supported for hardware frames
12264
12265 @item interp_algo
12266 The interpolation algorithm used for resizing. One of the following:
12267 @table @option
12268 @item nn
12269 Nearest neighbour.
12270
12271 @item linear
12272 @item cubic
12273 @item cubic2p_bspline
12274 2-parameter cubic (B=1, C=0)
12275
12276 @item cubic2p_catmullrom
12277 2-parameter cubic (B=0, C=1/2)
12278
12279 @item cubic2p_b05c03
12280 2-parameter cubic (B=1/2, C=3/10)
12281
12282 @item super
12283 Supersampling
12284
12285 @item lanczos
12286 @end table
12287
12288 @end table
12289
12290 @section scale2ref
12291
12292 Scale (resize) the input video, based on a reference video.
12293
12294 See the scale filter for available options, scale2ref supports the same but
12295 uses the reference video instead of the main input as basis.
12296
12297 @subsection Examples
12298
12299 @itemize
12300 @item
12301 Scale a subtitle stream to match the main video in size before overlaying
12302 @example
12303 'scale2ref[b][a];[a][b]overlay'
12304 @end example
12305 @end itemize
12306
12307 @anchor{selectivecolor}
12308 @section selectivecolor
12309
12310 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
12311 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
12312 by the "purity" of the color (that is, how saturated it already is).
12313
12314 This filter is similar to the Adobe Photoshop Selective Color tool.
12315
12316 The filter accepts the following options:
12317
12318 @table @option
12319 @item correction_method
12320 Select color correction method.
12321
12322 Available values are:
12323 @table @samp
12324 @item absolute
12325 Specified adjustments are applied "as-is" (added/subtracted to original pixel
12326 component value).
12327 @item relative
12328 Specified adjustments are relative to the original component value.
12329 @end table
12330 Default is @code{absolute}.
12331 @item reds
12332 Adjustments for red pixels (pixels where the red component is the maximum)
12333 @item yellows
12334 Adjustments for yellow pixels (pixels where the blue component is the minimum)
12335 @item greens
12336 Adjustments for green pixels (pixels where the green component is the maximum)
12337 @item cyans
12338 Adjustments for cyan pixels (pixels where the red component is the minimum)
12339 @item blues
12340 Adjustments for blue pixels (pixels where the blue component is the maximum)
12341 @item magentas
12342 Adjustments for magenta pixels (pixels where the green component is the minimum)
12343 @item whites
12344 Adjustments for white pixels (pixels where all components are greater than 128)
12345 @item neutrals
12346 Adjustments for all pixels except pure black and pure white
12347 @item blacks
12348 Adjustments for black pixels (pixels where all components are lesser than 128)
12349 @item psfile
12350 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
12351 @end table
12352
12353 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
12354 4 space separated floating point adjustment values in the [-1,1] range,
12355 respectively to adjust the amount of cyan, magenta, yellow and black for the
12356 pixels of its range.
12357
12358 @subsection Examples
12359
12360 @itemize
12361 @item
12362 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
12363 increase magenta by 27% in blue areas:
12364 @example
12365 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
12366 @end example
12367
12368 @item
12369 Use a Photoshop selective color preset:
12370 @example
12371 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
12372 @end example
12373 @end itemize
12374
12375 @anchor{separatefields}
12376 @section separatefields
12377
12378 The @code{separatefields} takes a frame-based video input and splits
12379 each frame into its components fields, producing a new half height clip
12380 with twice the frame rate and twice the frame count.
12381
12382 This filter use field-dominance information in frame to decide which
12383 of each pair of fields to place first in the output.
12384 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
12385
12386 @section setdar, setsar
12387
12388 The @code{setdar} filter sets the Display Aspect Ratio for the filter
12389 output video.
12390
12391 This is done by changing the specified Sample (aka Pixel) Aspect
12392 Ratio, according to the following equation:
12393 @example
12394 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
12395 @end example
12396
12397 Keep in mind that the @code{setdar} filter does not modify the pixel
12398 dimensions of the video frame. Also, the display aspect ratio set by
12399 this filter may be changed by later filters in the filterchain,
12400 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
12401 applied.
12402
12403 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
12404 the filter output video.
12405
12406 Note that as a consequence of the application of this filter, the
12407 output display aspect ratio will change according to the equation
12408 above.
12409
12410 Keep in mind that the sample aspect ratio set by the @code{setsar}
12411 filter may be changed by later filters in the filterchain, e.g. if
12412 another "setsar" or a "setdar" filter is applied.
12413
12414 It accepts the following parameters:
12415
12416 @table @option
12417 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
12418 Set the aspect ratio used by the filter.
12419
12420 The parameter can be a floating point number string, an expression, or
12421 a string of the form @var{num}:@var{den}, where @var{num} and
12422 @var{den} are the numerator and denominator of the aspect ratio. If
12423 the parameter is not specified, it is assumed the value "0".
12424 In case the form "@var{num}:@var{den}" is used, the @code{:} character
12425 should be escaped.
12426
12427 @item max
12428 Set the maximum integer value to use for expressing numerator and
12429 denominator when reducing the expressed aspect ratio to a rational.
12430 Default value is @code{100}.
12431
12432 @end table
12433
12434 The parameter @var{sar} is an expression containing
12435 the following constants:
12436
12437 @table @option
12438 @item E, PI, PHI
12439 These are approximated values for the mathematical constants e
12440 (Euler's number), pi (Greek pi), and phi (the golden ratio).
12441
12442 @item w, h
12443 The input width and height.
12444
12445 @item a
12446 These are the same as @var{w} / @var{h}.
12447
12448 @item sar
12449 The input sample aspect ratio.
12450
12451 @item dar
12452 The input display aspect ratio. It is the same as
12453 (@var{w} / @var{h}) * @var{sar}.
12454
12455 @item hsub, vsub
12456 Horizontal and vertical chroma subsample values. For example, for the
12457 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12458 @end table
12459
12460 @subsection Examples
12461
12462 @itemize
12463
12464 @item
12465 To change the display aspect ratio to 16:9, specify one of the following:
12466 @example
12467 setdar=dar=1.77777
12468 setdar=dar=16/9
12469 @end example
12470
12471 @item
12472 To change the sample aspect ratio to 10:11, specify:
12473 @example
12474 setsar=sar=10/11
12475 @end example
12476
12477 @item
12478 To set a display aspect ratio of 16:9, and specify a maximum integer value of
12479 1000 in the aspect ratio reduction, use the command:
12480 @example
12481 setdar=ratio=16/9:max=1000
12482 @end example
12483
12484 @end itemize
12485
12486 @anchor{setfield}
12487 @section setfield
12488
12489 Force field for the output video frame.
12490
12491 The @code{setfield} filter marks the interlace type field for the
12492 output frames. It does not change the input frame, but only sets the
12493 corresponding property, which affects how the frame is treated by
12494 following filters (e.g. @code{fieldorder} or @code{yadif}).
12495
12496 The filter accepts the following options:
12497
12498 @table @option
12499
12500 @item mode
12501 Available values are:
12502
12503 @table @samp
12504 @item auto
12505 Keep the same field property.
12506
12507 @item bff
12508 Mark the frame as bottom-field-first.
12509
12510 @item tff
12511 Mark the frame as top-field-first.
12512
12513 @item prog
12514 Mark the frame as progressive.
12515 @end table
12516 @end table
12517
12518 @section showinfo
12519
12520 Show a line containing various information for each input video frame.
12521 The input video is not modified.
12522
12523 The shown line contains a sequence of key/value pairs of the form
12524 @var{key}:@var{value}.
12525
12526 The following values are shown in the output:
12527
12528 @table @option
12529 @item n
12530 The (sequential) number of the input frame, starting from 0.
12531
12532 @item pts
12533 The Presentation TimeStamp of the input frame, expressed as a number of
12534 time base units. The time base unit depends on the filter input pad.
12535
12536 @item pts_time
12537 The Presentation TimeStamp of the input frame, expressed as a number of
12538 seconds.
12539
12540 @item pos
12541 The position of the frame in the input stream, or -1 if this information is
12542 unavailable and/or meaningless (for example in case of synthetic video).
12543
12544 @item fmt
12545 The pixel format name.
12546
12547 @item sar
12548 The sample aspect ratio of the input frame, expressed in the form
12549 @var{num}/@var{den}.
12550
12551 @item s
12552 The size of the input frame. For the syntax of this option, check the
12553 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12554
12555 @item i
12556 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
12557 for bottom field first).
12558
12559 @item iskey
12560 This is 1 if the frame is a key frame, 0 otherwise.
12561
12562 @item type
12563 The picture type of the input frame ("I" for an I-frame, "P" for a
12564 P-frame, "B" for a B-frame, or "?" for an unknown type).
12565 Also refer to the documentation of the @code{AVPictureType} enum and of
12566 the @code{av_get_picture_type_char} function defined in
12567 @file{libavutil/avutil.h}.
12568
12569 @item checksum
12570 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
12571
12572 @item plane_checksum
12573 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
12574 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
12575 @end table
12576
12577 @section showpalette
12578
12579 Displays the 256 colors palette of each frame. This filter is only relevant for
12580 @var{pal8} pixel format frames.
12581
12582 It accepts the following option:
12583
12584 @table @option
12585 @item s
12586 Set the size of the box used to represent one palette color entry. Default is
12587 @code{30} (for a @code{30x30} pixel box).
12588 @end table
12589
12590 @section shuffleframes
12591
12592 Reorder and/or duplicate and/or drop video frames.
12593
12594 It accepts the following parameters:
12595
12596 @table @option
12597 @item mapping
12598 Set the destination indexes of input frames.
12599 This is space or '|' separated list of indexes that maps input frames to output
12600 frames. Number of indexes also sets maximal value that each index may have.
12601 '-1' index have special meaning and that is to drop frame.
12602 @end table
12603
12604 The first frame has the index 0. The default is to keep the input unchanged.
12605
12606 @subsection Examples
12607
12608 @itemize
12609 @item
12610 Swap second and third frame of every three frames of the input:
12611 @example
12612 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
12613 @end example
12614
12615 @item
12616 Swap 10th and 1st frame of every ten frames of the input:
12617 @example
12618 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
12619 @end example
12620 @end itemize
12621
12622 @section shuffleplanes
12623
12624 Reorder and/or duplicate video planes.
12625
12626 It accepts the following parameters:
12627
12628 @table @option
12629
12630 @item map0
12631 The index of the input plane to be used as the first output plane.
12632
12633 @item map1
12634 The index of the input plane to be used as the second output plane.
12635
12636 @item map2
12637 The index of the input plane to be used as the third output plane.
12638
12639 @item map3
12640 The index of the input plane to be used as the fourth output plane.
12641
12642 @end table
12643
12644 The first plane has the index 0. The default is to keep the input unchanged.
12645
12646 @subsection Examples
12647
12648 @itemize
12649 @item
12650 Swap the second and third planes of the input:
12651 @example
12652 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
12653 @end example
12654 @end itemize
12655
12656 @anchor{signalstats}
12657 @section signalstats
12658 Evaluate various visual metrics that assist in determining issues associated
12659 with the digitization of analog video media.
12660
12661 By default the filter will log these metadata values:
12662
12663 @table @option
12664 @item YMIN
12665 Display the minimal Y value contained within the input frame. Expressed in
12666 range of [0-255].
12667
12668 @item YLOW
12669 Display the Y value at the 10% percentile within the input frame. Expressed in
12670 range of [0-255].
12671
12672 @item YAVG
12673 Display the average Y value within the input frame. Expressed in range of
12674 [0-255].
12675
12676 @item YHIGH
12677 Display the Y value at the 90% percentile within the input frame. Expressed in
12678 range of [0-255].
12679
12680 @item YMAX
12681 Display the maximum Y value contained within the input frame. Expressed in
12682 range of [0-255].
12683
12684 @item UMIN
12685 Display the minimal U value contained within the input frame. Expressed in
12686 range of [0-255].
12687
12688 @item ULOW
12689 Display the U value at the 10% percentile within the input frame. Expressed in
12690 range of [0-255].
12691
12692 @item UAVG
12693 Display the average U value within the input frame. Expressed in range of
12694 [0-255].
12695
12696 @item UHIGH
12697 Display the U value at the 90% percentile within the input frame. Expressed in
12698 range of [0-255].
12699
12700 @item UMAX
12701 Display the maximum U value contained within the input frame. Expressed in
12702 range of [0-255].
12703
12704 @item VMIN
12705 Display the minimal V value contained within the input frame. Expressed in
12706 range of [0-255].
12707
12708 @item VLOW
12709 Display the V value at the 10% percentile within the input frame. Expressed in
12710 range of [0-255].
12711
12712 @item VAVG
12713 Display the average V value within the input frame. Expressed in range of
12714 [0-255].
12715
12716 @item VHIGH
12717 Display the V value at the 90% percentile within the input frame. Expressed in
12718 range of [0-255].
12719
12720 @item VMAX
12721 Display the maximum V value contained within the input frame. Expressed in
12722 range of [0-255].
12723
12724 @item SATMIN
12725 Display the minimal saturation value contained within the input frame.
12726 Expressed in range of [0-~181.02].
12727
12728 @item SATLOW
12729 Display the saturation value at the 10% percentile within the input frame.
12730 Expressed in range of [0-~181.02].
12731
12732 @item SATAVG
12733 Display the average saturation value within the input frame. Expressed in range
12734 of [0-~181.02].
12735
12736 @item SATHIGH
12737 Display the saturation value at the 90% percentile within the input frame.
12738 Expressed in range of [0-~181.02].
12739
12740 @item SATMAX
12741 Display the maximum saturation value contained within the input frame.
12742 Expressed in range of [0-~181.02].
12743
12744 @item HUEMED
12745 Display the median value for hue within the input frame. Expressed in range of
12746 [0-360].
12747
12748 @item HUEAVG
12749 Display the average value for hue within the input frame. Expressed in range of
12750 [0-360].
12751
12752 @item YDIF
12753 Display the average of sample value difference between all values of the Y
12754 plane in the current frame and corresponding values of the previous input frame.
12755 Expressed in range of [0-255].
12756
12757 @item UDIF
12758 Display the average of sample value difference between all values of the U
12759 plane in the current frame and corresponding values of the previous input frame.
12760 Expressed in range of [0-255].
12761
12762 @item VDIF
12763 Display the average of sample value difference between all values of the V
12764 plane in the current frame and corresponding values of the previous input frame.
12765 Expressed in range of [0-255].
12766
12767 @item YBITDEPTH
12768 Display bit depth of Y plane in current frame.
12769 Expressed in range of [0-16].
12770
12771 @item UBITDEPTH
12772 Display bit depth of U plane in current frame.
12773 Expressed in range of [0-16].
12774
12775 @item VBITDEPTH
12776 Display bit depth of V plane in current frame.
12777 Expressed in range of [0-16].
12778 @end table
12779
12780 The filter accepts the following options:
12781
12782 @table @option
12783 @item stat
12784 @item out
12785
12786 @option{stat} specify an additional form of image analysis.
12787 @option{out} output video with the specified type of pixel highlighted.
12788
12789 Both options accept the following values:
12790
12791 @table @samp
12792 @item tout
12793 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
12794 unlike the neighboring pixels of the same field. Examples of temporal outliers
12795 include the results of video dropouts, head clogs, or tape tracking issues.
12796
12797 @item vrep
12798 Identify @var{vertical line repetition}. Vertical line repetition includes
12799 similar rows of pixels within a frame. In born-digital video vertical line
12800 repetition is common, but this pattern is uncommon in video digitized from an
12801 analog source. When it occurs in video that results from the digitization of an
12802 analog source it can indicate concealment from a dropout compensator.
12803
12804 @item brng
12805 Identify pixels that fall outside of legal broadcast range.
12806 @end table
12807
12808 @item color, c
12809 Set the highlight color for the @option{out} option. The default color is
12810 yellow.
12811 @end table
12812
12813 @subsection Examples
12814
12815 @itemize
12816 @item
12817 Output data of various video metrics:
12818 @example
12819 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
12820 @end example
12821
12822 @item
12823 Output specific data about the minimum and maximum values of the Y plane per frame:
12824 @example
12825 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
12826 @end example
12827
12828 @item
12829 Playback video while highlighting pixels that are outside of broadcast range in red.
12830 @example
12831 ffplay example.mov -vf signalstats="out=brng:color=red"
12832 @end example
12833
12834 @item
12835 Playback video with signalstats metadata drawn over the frame.
12836 @example
12837 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12838 @end example
12839
12840 The contents of signalstat_drawtext.txt used in the command are:
12841 @example
12842 time %@{pts:hms@}
12843 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12844 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12845 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12846 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12847
12848 @end example
12849 @end itemize
12850
12851 @anchor{signature}
12852 @section signature
12853
12854 Calculates the MPEG-7 Video Signature. The filter can handle more than one
12855 input. In this case the matching between the inputs can be calculated additionally.
12856 The filter always passes through the first input. The signature of each stream can
12857 be written into a file.
12858
12859 It accepts the following options:
12860
12861 @table @option
12862 @item detectmode
12863 Enable or disable the matching process.
12864
12865 Available values are:
12866
12867 @table @samp
12868 @item off
12869 Disable the calculation of a matching (default).
12870 @item full
12871 Calculate the matching for the whole video and output whether the whole video
12872 matches or only parts.
12873 @item fast
12874 Calculate only until a matching is found or the video ends. Should be faster in
12875 some cases.
12876 @end table
12877
12878 @item nb_inputs
12879 Set the number of inputs. The option value must be a non negative integer.
12880 Default value is 1.
12881
12882 @item filename
12883 Set the path to which the output is written. If there is more than one input,
12884 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
12885 integer), that will be replaced with the input number. If no filename is
12886 specified, no output will be written. This is the default.
12887
12888 @item format
12889 Choose the output format.
12890
12891 Available values are:
12892
12893 @table @samp
12894 @item binary
12895 Use the specified binary representation (default).
12896 @item xml
12897 Use the specified xml representation.
12898 @end table
12899
12900 @item th_d
12901 Set threshold to detect one word as similar. The option value must be an integer
12902 greater than zero. The default value is 9000.
12903
12904 @item th_dc
12905 Set threshold to detect all words as similar. The option value must be an integer
12906 greater than zero. The default value is 60000.
12907
12908 @item th_xh
12909 Set threshold to detect frames as similar. The option value must be an integer
12910 greater than zero. The default value is 116.
12911
12912 @item th_di
12913 Set the minimum length of a sequence in frames to recognize it as matching
12914 sequence. The option value must be a non negative integer value.
12915 The default value is 0.
12916
12917 @item th_it
12918 Set the minimum relation, that matching frames to all frames must have.
12919 The option value must be a double value between 0 and 1. The default value is 0.5.
12920 @end table
12921
12922 @subsection Examples
12923
12924 @itemize
12925 @item
12926 To calculate the signature of an input video and store it in signature.bin:
12927 @example
12928 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
12929 @end example
12930
12931 @item
12932 To detect whether two videos match and store the signatures in XML format in
12933 signature0.xml and signature1.xml:
12934 @example
12935 ffmpeg -i input1.mkv -i input2.mkv -filter_complex "[0:v][1:v] signature=nb_inputs=2:detectmode=full:format=xml:filename=signature%d.xml" -map :v -f null -
12936 @end example
12937
12938 @end itemize
12939
12940 @anchor{smartblur}
12941 @section smartblur
12942
12943 Blur the input video without impacting the outlines.
12944
12945 It accepts the following options:
12946
12947 @table @option
12948 @item luma_radius, lr
12949 Set the luma radius. The option value must be a float number in
12950 the range [0.1,5.0] that specifies the variance of the gaussian filter
12951 used to blur the image (slower if larger). Default value is 1.0.
12952
12953 @item luma_strength, ls
12954 Set the luma strength. The option value must be a float number
12955 in the range [-1.0,1.0] that configures the blurring. A value included
12956 in [0.0,1.0] will blur the image whereas a value included in
12957 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12958
12959 @item luma_threshold, lt
12960 Set the luma threshold used as a coefficient to determine
12961 whether a pixel should be blurred or not. The option value must be an
12962 integer in the range [-30,30]. A value of 0 will filter all the image,
12963 a value included in [0,30] will filter flat areas and a value included
12964 in [-30,0] will filter edges. Default value is 0.
12965
12966 @item chroma_radius, cr
12967 Set the chroma radius. The option value must be a float number in
12968 the range [0.1,5.0] that specifies the variance of the gaussian filter
12969 used to blur the image (slower if larger). Default value is @option{luma_radius}.
12970
12971 @item chroma_strength, cs
12972 Set the chroma strength. The option value must be a float number
12973 in the range [-1.0,1.0] that configures the blurring. A value included
12974 in [0.0,1.0] will blur the image whereas a value included in
12975 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
12976
12977 @item chroma_threshold, ct
12978 Set the chroma threshold used as a coefficient to determine
12979 whether a pixel should be blurred or not. The option value must be an
12980 integer in the range [-30,30]. A value of 0 will filter all the image,
12981 a value included in [0,30] will filter flat areas and a value included
12982 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
12983 @end table
12984
12985 If a chroma option is not explicitly set, the corresponding luma value
12986 is set.
12987
12988 @section ssim
12989
12990 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12991
12992 This filter takes in input two input videos, the first input is
12993 considered the "main" source and is passed unchanged to the
12994 output. The second input is used as a "reference" video for computing
12995 the SSIM.
12996
12997 Both video inputs must have the same resolution and pixel format for
12998 this filter to work correctly. Also it assumes that both inputs
12999 have the same number of frames, which are compared one by one.
13000
13001 The filter stores the calculated SSIM of each frame.
13002
13003 The description of the accepted parameters follows.
13004
13005 @table @option
13006 @item stats_file, f
13007 If specified the filter will use the named file to save the SSIM of
13008 each individual frame. When filename equals "-" the data is sent to
13009 standard output.
13010 @end table
13011
13012 The file printed if @var{stats_file} is selected, contains a sequence of
13013 key/value pairs of the form @var{key}:@var{value} for each compared
13014 couple of frames.
13015
13016 A description of each shown parameter follows:
13017
13018 @table @option
13019 @item n
13020 sequential number of the input frame, starting from 1
13021
13022 @item Y, U, V, R, G, B
13023 SSIM of the compared frames for the component specified by the suffix.
13024
13025 @item All
13026 SSIM of the compared frames for the whole frame.
13027
13028 @item dB
13029 Same as above but in dB representation.
13030 @end table
13031
13032 For example:
13033 @example
13034 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
13035 [main][ref] ssim="stats_file=stats.log" [out]
13036 @end example
13037
13038 On this example the input file being processed is compared with the
13039 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
13040 is stored in @file{stats.log}.
13041
13042 Another example with both psnr and ssim at same time:
13043 @example
13044 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
13045 @end example
13046
13047 @section stereo3d
13048
13049 Convert between different stereoscopic image formats.
13050
13051 The filters accept the following options:
13052
13053 @table @option
13054 @item in
13055 Set stereoscopic image format of input.
13056
13057 Available values for input image formats are:
13058 @table @samp
13059 @item sbsl
13060 side by side parallel (left eye left, right eye right)
13061
13062 @item sbsr
13063 side by side crosseye (right eye left, left eye right)
13064
13065 @item sbs2l
13066 side by side parallel with half width resolution
13067 (left eye left, right eye right)
13068
13069 @item sbs2r
13070 side by side crosseye with half width resolution
13071 (right eye left, left eye right)
13072
13073 @item abl
13074 above-below (left eye above, right eye below)
13075
13076 @item abr
13077 above-below (right eye above, left eye below)
13078
13079 @item ab2l
13080 above-below with half height resolution
13081 (left eye above, right eye below)
13082
13083 @item ab2r
13084 above-below with half height resolution
13085 (right eye above, left eye below)
13086
13087 @item al
13088 alternating frames (left eye first, right eye second)
13089
13090 @item ar
13091 alternating frames (right eye first, left eye second)
13092
13093 @item irl
13094 interleaved rows (left eye has top row, right eye starts on next row)
13095
13096 @item irr
13097 interleaved rows (right eye has top row, left eye starts on next row)
13098
13099 @item icl
13100 interleaved columns, left eye first
13101
13102 @item icr
13103 interleaved columns, right eye first
13104
13105 Default value is @samp{sbsl}.
13106 @end table
13107
13108 @item out
13109 Set stereoscopic image format of output.
13110
13111 @table @samp
13112 @item sbsl
13113 side by side parallel (left eye left, right eye right)
13114
13115 @item sbsr
13116 side by side crosseye (right eye left, left eye right)
13117
13118 @item sbs2l
13119 side by side parallel with half width resolution
13120 (left eye left, right eye right)
13121
13122 @item sbs2r
13123 side by side crosseye with half width resolution
13124 (right eye left, left eye right)
13125
13126 @item abl
13127 above-below (left eye above, right eye below)
13128
13129 @item abr
13130 above-below (right eye above, left eye below)
13131
13132 @item ab2l
13133 above-below with half height resolution
13134 (left eye above, right eye below)
13135
13136 @item ab2r
13137 above-below with half height resolution
13138 (right eye above, left eye below)
13139
13140 @item al
13141 alternating frames (left eye first, right eye second)
13142
13143 @item ar
13144 alternating frames (right eye first, left eye second)
13145
13146 @item irl
13147 interleaved rows (left eye has top row, right eye starts on next row)
13148
13149 @item irr
13150 interleaved rows (right eye has top row, left eye starts on next row)
13151
13152 @item arbg
13153 anaglyph red/blue gray
13154 (red filter on left eye, blue filter on right eye)
13155
13156 @item argg
13157 anaglyph red/green gray
13158 (red filter on left eye, green filter on right eye)
13159
13160 @item arcg
13161 anaglyph red/cyan gray
13162 (red filter on left eye, cyan filter on right eye)
13163
13164 @item arch
13165 anaglyph red/cyan half colored
13166 (red filter on left eye, cyan filter on right eye)
13167
13168 @item arcc
13169 anaglyph red/cyan color
13170 (red filter on left eye, cyan filter on right eye)
13171
13172 @item arcd
13173 anaglyph red/cyan color optimized with the least squares projection of dubois
13174 (red filter on left eye, cyan filter on right eye)
13175
13176 @item agmg
13177 anaglyph green/magenta gray
13178 (green filter on left eye, magenta filter on right eye)
13179
13180 @item agmh
13181 anaglyph green/magenta half colored
13182 (green filter on left eye, magenta filter on right eye)
13183
13184 @item agmc
13185 anaglyph green/magenta colored
13186 (green filter on left eye, magenta filter on right eye)
13187
13188 @item agmd
13189 anaglyph green/magenta color optimized with the least squares projection of dubois
13190 (green filter on left eye, magenta filter on right eye)
13191
13192 @item aybg
13193 anaglyph yellow/blue gray
13194 (yellow filter on left eye, blue filter on right eye)
13195
13196 @item aybh
13197 anaglyph yellow/blue half colored
13198 (yellow filter on left eye, blue filter on right eye)
13199
13200 @item aybc
13201 anaglyph yellow/blue colored
13202 (yellow filter on left eye, blue filter on right eye)
13203
13204 @item aybd
13205 anaglyph yellow/blue color optimized with the least squares projection of dubois
13206 (yellow filter on left eye, blue filter on right eye)
13207
13208 @item ml
13209 mono output (left eye only)
13210
13211 @item mr
13212 mono output (right eye only)
13213
13214 @item chl
13215 checkerboard, left eye first
13216
13217 @item chr
13218 checkerboard, right eye first
13219
13220 @item icl
13221 interleaved columns, left eye first
13222
13223 @item icr
13224 interleaved columns, right eye first
13225
13226 @item hdmi
13227 HDMI frame pack
13228 @end table
13229
13230 Default value is @samp{arcd}.
13231 @end table
13232
13233 @subsection Examples
13234
13235 @itemize
13236 @item
13237 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
13238 @example
13239 stereo3d=sbsl:aybd
13240 @end example
13241
13242 @item
13243 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
13244 @example
13245 stereo3d=abl:sbsr
13246 @end example
13247 @end itemize
13248
13249 @section streamselect, astreamselect
13250 Select video or audio streams.
13251
13252 The filter accepts the following options:
13253
13254 @table @option
13255 @item inputs
13256 Set number of inputs. Default is 2.
13257
13258 @item map
13259 Set input indexes to remap to outputs.
13260 @end table
13261
13262 @subsection Commands
13263
13264 The @code{streamselect} and @code{astreamselect} filter supports the following
13265 commands:
13266
13267 @table @option
13268 @item map
13269 Set input indexes to remap to outputs.
13270 @end table
13271
13272 @subsection Examples
13273
13274 @itemize
13275 @item
13276 Select first 5 seconds 1st stream and rest of time 2nd stream:
13277 @example
13278 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
13279 @end example
13280
13281 @item
13282 Same as above, but for audio:
13283 @example
13284 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
13285 @end example
13286 @end itemize
13287
13288 @section sobel
13289 Apply sobel operator to input video stream.
13290
13291 The filter accepts the following option:
13292
13293 @table @option
13294 @item planes
13295 Set which planes will be processed, unprocessed planes will be copied.
13296 By default value 0xf, all planes will be processed.
13297
13298 @item scale
13299 Set value which will be multiplied with filtered result.
13300
13301 @item delta
13302 Set value which will be added to filtered result.
13303 @end table
13304
13305 @anchor{spp}
13306 @section spp
13307
13308 Apply a simple postprocessing filter that compresses and decompresses the image
13309 at several (or - in the case of @option{quality} level @code{6} - all) shifts
13310 and average the results.
13311
13312 The filter accepts the following options:
13313
13314 @table @option
13315 @item quality
13316 Set quality. This option defines the number of levels for averaging. It accepts
13317 an integer in the range 0-6. If set to @code{0}, the filter will have no
13318 effect. A value of @code{6} means the higher quality. For each increment of
13319 that value the speed drops by a factor of approximately 2.  Default value is
13320 @code{3}.
13321
13322 @item qp
13323 Force a constant quantization parameter. If not set, the filter will use the QP
13324 from the video stream (if available).
13325
13326 @item mode
13327 Set thresholding mode. Available modes are:
13328
13329 @table @samp
13330 @item hard
13331 Set hard thresholding (default).
13332 @item soft
13333 Set soft thresholding (better de-ringing effect, but likely blurrier).
13334 @end table
13335
13336 @item use_bframe_qp
13337 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
13338 option may cause flicker since the B-Frames have often larger QP. Default is
13339 @code{0} (not enabled).
13340 @end table
13341
13342 @anchor{subtitles}
13343 @section subtitles
13344
13345 Draw subtitles on top of input video using the libass library.
13346
13347 To enable compilation of this filter you need to configure FFmpeg with
13348 @code{--enable-libass}. This filter also requires a build with libavcodec and
13349 libavformat to convert the passed subtitles file to ASS (Advanced Substation
13350 Alpha) subtitles format.
13351
13352 The filter accepts the following options:
13353
13354 @table @option
13355 @item filename, f
13356 Set the filename of the subtitle file to read. It must be specified.
13357
13358 @item original_size
13359 Specify the size of the original video, the video for which the ASS file
13360 was composed. For the syntax of this option, check the
13361 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13362 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
13363 correctly scale the fonts if the aspect ratio has been changed.
13364
13365 @item fontsdir
13366 Set a directory path containing fonts that can be used by the filter.
13367 These fonts will be used in addition to whatever the font provider uses.
13368
13369 @item charenc
13370 Set subtitles input character encoding. @code{subtitles} filter only. Only
13371 useful if not UTF-8.
13372
13373 @item stream_index, si
13374 Set subtitles stream index. @code{subtitles} filter only.
13375
13376 @item force_style
13377 Override default style or script info parameters of the subtitles. It accepts a
13378 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
13379 @end table
13380
13381 If the first key is not specified, it is assumed that the first value
13382 specifies the @option{filename}.
13383
13384 For example, to render the file @file{sub.srt} on top of the input
13385 video, use the command:
13386 @example
13387 subtitles=sub.srt
13388 @end example
13389
13390 which is equivalent to:
13391 @example
13392 subtitles=filename=sub.srt
13393 @end example
13394
13395 To render the default subtitles stream from file @file{video.mkv}, use:
13396 @example
13397 subtitles=video.mkv
13398 @end example
13399
13400 To render the second subtitles stream from that file, use:
13401 @example
13402 subtitles=video.mkv:si=1
13403 @end example
13404
13405 To make the subtitles stream from @file{sub.srt} appear in transparent green
13406 @code{DejaVu Serif}, use:
13407 @example
13408 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
13409 @end example
13410
13411 @section super2xsai
13412
13413 Scale the input by 2x and smooth using the Super2xSaI (Scale and
13414 Interpolate) pixel art scaling algorithm.
13415
13416 Useful for enlarging pixel art images without reducing sharpness.
13417
13418 @section swaprect
13419
13420 Swap two rectangular objects in video.
13421
13422 This filter accepts the following options:
13423
13424 @table @option
13425 @item w
13426 Set object width.
13427
13428 @item h
13429 Set object height.
13430
13431 @item x1
13432 Set 1st rect x coordinate.
13433
13434 @item y1
13435 Set 1st rect y coordinate.
13436
13437 @item x2
13438 Set 2nd rect x coordinate.
13439
13440 @item y2
13441 Set 2nd rect y coordinate.
13442
13443 All expressions are evaluated once for each frame.
13444 @end table
13445
13446 The all options are expressions containing the following constants:
13447
13448 @table @option
13449 @item w
13450 @item h
13451 The input width and height.
13452
13453 @item a
13454 same as @var{w} / @var{h}
13455
13456 @item sar
13457 input sample aspect ratio
13458
13459 @item dar
13460 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
13461
13462 @item n
13463 The number of the input frame, starting from 0.
13464
13465 @item t
13466 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
13467
13468 @item pos
13469 the position in the file of the input frame, NAN if unknown
13470 @end table
13471
13472 @section swapuv
13473 Swap U & V plane.
13474
13475 @section telecine
13476
13477 Apply telecine process to the video.
13478
13479 This filter accepts the following options:
13480
13481 @table @option
13482 @item first_field
13483 @table @samp
13484 @item top, t
13485 top field first
13486 @item bottom, b
13487 bottom field first
13488 The default value is @code{top}.
13489 @end table
13490
13491 @item pattern
13492 A string of numbers representing the pulldown pattern you wish to apply.
13493 The default value is @code{23}.
13494 @end table
13495
13496 @example
13497 Some typical patterns:
13498
13499 NTSC output (30i):
13500 27.5p: 32222
13501 24p: 23 (classic)
13502 24p: 2332 (preferred)
13503 20p: 33
13504 18p: 334
13505 16p: 3444
13506
13507 PAL output (25i):
13508 27.5p: 12222
13509 24p: 222222222223 ("Euro pulldown")
13510 16.67p: 33
13511 16p: 33333334
13512 @end example
13513
13514 @section threshold
13515
13516 Apply threshold effect to video stream.
13517
13518 This filter needs four video streams to perform thresholding.
13519 First stream is stream we are filtering.
13520 Second stream is holding threshold values, third stream is holding min values,
13521 and last, fourth stream is holding max values.
13522
13523 The filter accepts the following option:
13524
13525 @table @option
13526 @item planes
13527 Set which planes will be processed, unprocessed planes will be copied.
13528 By default value 0xf, all planes will be processed.
13529 @end table
13530
13531 For example if first stream pixel's component value is less then threshold value
13532 of pixel component from 2nd threshold stream, third stream value will picked,
13533 otherwise fourth stream pixel component value will be picked.
13534
13535 Using color source filter one can perform various types of thresholding:
13536
13537 @subsection Examples
13538
13539 @itemize
13540 @item
13541 Binary threshold, using gray color as threshold:
13542 @example
13543 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
13544 @end example
13545
13546 @item
13547 Inverted binary threshold, using gray color as threshold:
13548 @example
13549 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
13550 @end example
13551
13552 @item
13553 Truncate binary threshold, using gray color as threshold:
13554 @example
13555 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
13556 @end example
13557
13558 @item
13559 Threshold to zero, using gray color as threshold:
13560 @example
13561 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
13562 @end example
13563
13564 @item
13565 Inverted threshold to zero, using gray color as threshold:
13566 @example
13567 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
13568 @end example
13569 @end itemize
13570
13571 @section thumbnail
13572 Select the most representative frame in a given sequence of consecutive frames.
13573
13574 The filter accepts the following options:
13575
13576 @table @option
13577 @item n
13578 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
13579 will pick one of them, and then handle the next batch of @var{n} frames until
13580 the end. Default is @code{100}.
13581 @end table
13582
13583 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
13584 value will result in a higher memory usage, so a high value is not recommended.
13585
13586 @subsection Examples
13587
13588 @itemize
13589 @item
13590 Extract one picture each 50 frames:
13591 @example
13592 thumbnail=50
13593 @end example
13594
13595 @item
13596 Complete example of a thumbnail creation with @command{ffmpeg}:
13597 @example
13598 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
13599 @end example
13600 @end itemize
13601
13602 @section tile
13603
13604 Tile several successive frames together.
13605
13606 The filter accepts the following options:
13607
13608 @table @option
13609
13610 @item layout
13611 Set the grid size (i.e. the number of lines and columns). For the syntax of
13612 this option, check the
13613 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13614
13615 @item nb_frames
13616 Set the maximum number of frames to render in the given area. It must be less
13617 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
13618 the area will be used.
13619
13620 @item margin
13621 Set the outer border margin in pixels.
13622
13623 @item padding
13624 Set the inner border thickness (i.e. the number of pixels between frames). For
13625 more advanced padding options (such as having different values for the edges),
13626 refer to the pad video filter.
13627
13628 @item color
13629 Specify the color of the unused area. For the syntax of this option, check the
13630 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
13631 is "black".
13632 @end table
13633
13634 @subsection Examples
13635
13636 @itemize
13637 @item
13638 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
13639 @example
13640 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
13641 @end example
13642 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
13643 duplicating each output frame to accommodate the originally detected frame
13644 rate.
13645
13646 @item
13647 Display @code{5} pictures in an area of @code{3x2} frames,
13648 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
13649 mixed flat and named options:
13650 @example
13651 tile=3x2:nb_frames=5:padding=7:margin=2
13652 @end example
13653 @end itemize
13654
13655 @section tinterlace
13656
13657 Perform various types of temporal field interlacing.
13658
13659 Frames are counted starting from 1, so the first input frame is
13660 considered odd.
13661
13662 The filter accepts the following options:
13663
13664 @table @option
13665
13666 @item mode
13667 Specify the mode of the interlacing. This option can also be specified
13668 as a value alone. See below for a list of values for this option.
13669
13670 Available values are:
13671
13672 @table @samp
13673 @item merge, 0
13674 Move odd frames into the upper field, even into the lower field,
13675 generating a double height frame at half frame rate.
13676 @example
13677  ------> time
13678 Input:
13679 Frame 1         Frame 2         Frame 3         Frame 4
13680
13681 11111           22222           33333           44444
13682 11111           22222           33333           44444
13683 11111           22222           33333           44444
13684 11111           22222           33333           44444
13685
13686 Output:
13687 11111                           33333
13688 22222                           44444
13689 11111                           33333
13690 22222                           44444
13691 11111                           33333
13692 22222                           44444
13693 11111                           33333
13694 22222                           44444
13695 @end example
13696
13697 @item drop_even, 1
13698 Only output odd frames, even frames are dropped, generating a frame with
13699 unchanged height at half frame rate.
13700
13701 @example
13702  ------> time
13703 Input:
13704 Frame 1         Frame 2         Frame 3         Frame 4
13705
13706 11111           22222           33333           44444
13707 11111           22222           33333           44444
13708 11111           22222           33333           44444
13709 11111           22222           33333           44444
13710
13711 Output:
13712 11111                           33333
13713 11111                           33333
13714 11111                           33333
13715 11111                           33333
13716 @end example
13717
13718 @item drop_odd, 2
13719 Only output even frames, odd frames are dropped, generating a frame with
13720 unchanged height at half frame rate.
13721
13722 @example
13723  ------> time
13724 Input:
13725 Frame 1         Frame 2         Frame 3         Frame 4
13726
13727 11111           22222           33333           44444
13728 11111           22222           33333           44444
13729 11111           22222           33333           44444
13730 11111           22222           33333           44444
13731
13732 Output:
13733                 22222                           44444
13734                 22222                           44444
13735                 22222                           44444
13736                 22222                           44444
13737 @end example
13738
13739 @item pad, 3
13740 Expand each frame to full height, but pad alternate lines with black,
13741 generating a frame with double height at the same input frame rate.
13742
13743 @example
13744  ------> time
13745 Input:
13746 Frame 1         Frame 2         Frame 3         Frame 4
13747
13748 11111           22222           33333           44444
13749 11111           22222           33333           44444
13750 11111           22222           33333           44444
13751 11111           22222           33333           44444
13752
13753 Output:
13754 11111           .....           33333           .....
13755 .....           22222           .....           44444
13756 11111           .....           33333           .....
13757 .....           22222           .....           44444
13758 11111           .....           33333           .....
13759 .....           22222           .....           44444
13760 11111           .....           33333           .....
13761 .....           22222           .....           44444
13762 @end example
13763
13764
13765 @item interleave_top, 4
13766 Interleave the upper field from odd frames with the lower field from
13767 even frames, generating a frame with unchanged height at half frame rate.
13768
13769 @example
13770  ------> time
13771 Input:
13772 Frame 1         Frame 2         Frame 3         Frame 4
13773
13774 11111<-         22222           33333<-         44444
13775 11111           22222<-         33333           44444<-
13776 11111<-         22222           33333<-         44444
13777 11111           22222<-         33333           44444<-
13778
13779 Output:
13780 11111                           33333
13781 22222                           44444
13782 11111                           33333
13783 22222                           44444
13784 @end example
13785
13786
13787 @item interleave_bottom, 5
13788 Interleave the lower field from odd frames with the upper field from
13789 even frames, generating a frame with unchanged height at half frame rate.
13790
13791 @example
13792  ------> time
13793 Input:
13794 Frame 1         Frame 2         Frame 3         Frame 4
13795
13796 11111           22222<-         33333           44444<-
13797 11111<-         22222           33333<-         44444
13798 11111           22222<-         33333           44444<-
13799 11111<-         22222           33333<-         44444
13800
13801 Output:
13802 22222                           44444
13803 11111                           33333
13804 22222                           44444
13805 11111                           33333
13806 @end example
13807
13808
13809 @item interlacex2, 6
13810 Double frame rate with unchanged height. Frames are inserted each
13811 containing the second temporal field from the previous input frame and
13812 the first temporal field from the next input frame. This mode relies on
13813 the top_field_first flag. Useful for interlaced video displays with no
13814 field synchronisation.
13815
13816 @example
13817  ------> time
13818 Input:
13819 Frame 1         Frame 2         Frame 3         Frame 4
13820
13821 11111           22222           33333           44444
13822  11111           22222           33333           44444
13823 11111           22222           33333           44444
13824  11111           22222           33333           44444
13825
13826 Output:
13827 11111   22222   22222   33333   33333   44444   44444
13828  11111   11111   22222   22222   33333   33333   44444
13829 11111   22222   22222   33333   33333   44444   44444
13830  11111   11111   22222   22222   33333   33333   44444
13831 @end example
13832
13833
13834 @item mergex2, 7
13835 Move odd frames into the upper field, even into the lower field,
13836 generating a double height frame at same frame rate.
13837
13838 @example
13839  ------> time
13840 Input:
13841 Frame 1         Frame 2         Frame 3         Frame 4
13842
13843 11111           22222           33333           44444
13844 11111           22222           33333           44444
13845 11111           22222           33333           44444
13846 11111           22222           33333           44444
13847
13848 Output:
13849 11111           33333           33333           55555
13850 22222           22222           44444           44444
13851 11111           33333           33333           55555
13852 22222           22222           44444           44444
13853 11111           33333           33333           55555
13854 22222           22222           44444           44444
13855 11111           33333           33333           55555
13856 22222           22222           44444           44444
13857 @end example
13858
13859 @end table
13860
13861 Numeric values are deprecated but are accepted for backward
13862 compatibility reasons.
13863
13864 Default mode is @code{merge}.
13865
13866 @item flags
13867 Specify flags influencing the filter process.
13868
13869 Available value for @var{flags} is:
13870
13871 @table @option
13872 @item low_pass_filter, vlfp
13873 Enable linear vertical low-pass filtering in the filter.
13874 Vertical low-pass filtering is required when creating an interlaced
13875 destination from a progressive source which contains high-frequency
13876 vertical detail. Filtering will reduce interlace 'twitter' and Moire
13877 patterning.
13878
13879 @item complex_filter, cvlfp
13880 Enable complex vertical low-pass filtering.
13881 This will slightly less reduce interlace 'twitter' and Moire
13882 patterning but better retain detail and subjective sharpness impression.
13883
13884 @end table
13885
13886 Vertical low-pass filtering can only be enabled for @option{mode}
13887 @var{interleave_top} and @var{interleave_bottom}.
13888
13889 @end table
13890
13891 @section transpose
13892
13893 Transpose rows with columns in the input video and optionally flip it.
13894
13895 It accepts the following parameters:
13896
13897 @table @option
13898
13899 @item dir
13900 Specify the transposition direction.
13901
13902 Can assume the following values:
13903 @table @samp
13904 @item 0, 4, cclock_flip
13905 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
13906 @example
13907 L.R     L.l
13908 . . ->  . .
13909 l.r     R.r
13910 @end example
13911
13912 @item 1, 5, clock
13913 Rotate by 90 degrees clockwise, that is:
13914 @example
13915 L.R     l.L
13916 . . ->  . .
13917 l.r     r.R
13918 @end example
13919
13920 @item 2, 6, cclock
13921 Rotate by 90 degrees counterclockwise, that is:
13922 @example
13923 L.R     R.r
13924 . . ->  . .
13925 l.r     L.l
13926 @end example
13927
13928 @item 3, 7, clock_flip
13929 Rotate by 90 degrees clockwise and vertically flip, that is:
13930 @example
13931 L.R     r.R
13932 . . ->  . .
13933 l.r     l.L
13934 @end example
13935 @end table
13936
13937 For values between 4-7, the transposition is only done if the input
13938 video geometry is portrait and not landscape. These values are
13939 deprecated, the @code{passthrough} option should be used instead.
13940
13941 Numerical values are deprecated, and should be dropped in favor of
13942 symbolic constants.
13943
13944 @item passthrough
13945 Do not apply the transposition if the input geometry matches the one
13946 specified by the specified value. It accepts the following values:
13947 @table @samp
13948 @item none
13949 Always apply transposition.
13950 @item portrait
13951 Preserve portrait geometry (when @var{height} >= @var{width}).
13952 @item landscape
13953 Preserve landscape geometry (when @var{width} >= @var{height}).
13954 @end table
13955
13956 Default value is @code{none}.
13957 @end table
13958
13959 For example to rotate by 90 degrees clockwise and preserve portrait
13960 layout:
13961 @example
13962 transpose=dir=1:passthrough=portrait
13963 @end example
13964
13965 The command above can also be specified as:
13966 @example
13967 transpose=1:portrait
13968 @end example
13969
13970 @section trim
13971 Trim the input so that the output contains one continuous subpart of the input.
13972
13973 It accepts the following parameters:
13974 @table @option
13975 @item start
13976 Specify the time of the start of the kept section, i.e. the frame with the
13977 timestamp @var{start} will be the first frame in the output.
13978
13979 @item end
13980 Specify the time of the first frame that will be dropped, i.e. the frame
13981 immediately preceding the one with the timestamp @var{end} will be the last
13982 frame in the output.
13983
13984 @item start_pts
13985 This is the same as @var{start}, except this option sets the start timestamp
13986 in timebase units instead of seconds.
13987
13988 @item end_pts
13989 This is the same as @var{end}, except this option sets the end timestamp
13990 in timebase units instead of seconds.
13991
13992 @item duration
13993 The maximum duration of the output in seconds.
13994
13995 @item start_frame
13996 The number of the first frame that should be passed to the output.
13997
13998 @item end_frame
13999 The number of the first frame that should be dropped.
14000 @end table
14001
14002 @option{start}, @option{end}, and @option{duration} are expressed as time
14003 duration specifications; see
14004 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14005 for the accepted syntax.
14006
14007 Note that the first two sets of the start/end options and the @option{duration}
14008 option look at the frame timestamp, while the _frame variants simply count the
14009 frames that pass through the filter. Also note that this filter does not modify
14010 the timestamps. If you wish for the output timestamps to start at zero, insert a
14011 setpts filter after the trim filter.
14012
14013 If multiple start or end options are set, this filter tries to be greedy and
14014 keep all the frames that match at least one of the specified constraints. To keep
14015 only the part that matches all the constraints at once, chain multiple trim
14016 filters.
14017
14018 The defaults are such that all the input is kept. So it is possible to set e.g.
14019 just the end values to keep everything before the specified time.
14020
14021 Examples:
14022 @itemize
14023 @item
14024 Drop everything except the second minute of input:
14025 @example
14026 ffmpeg -i INPUT -vf trim=60:120
14027 @end example
14028
14029 @item
14030 Keep only the first second:
14031 @example
14032 ffmpeg -i INPUT -vf trim=duration=1
14033 @end example
14034
14035 @end itemize
14036
14037
14038 @anchor{unsharp}
14039 @section unsharp
14040
14041 Sharpen or blur the input video.
14042
14043 It accepts the following parameters:
14044
14045 @table @option
14046 @item luma_msize_x, lx
14047 Set the luma matrix horizontal size. It must be an odd integer between
14048 3 and 23. The default value is 5.
14049
14050 @item luma_msize_y, ly
14051 Set the luma matrix vertical size. It must be an odd integer between 3
14052 and 23. The default value is 5.
14053
14054 @item luma_amount, la
14055 Set the luma effect strength. It must be a floating point number, reasonable
14056 values lay between -1.5 and 1.5.
14057
14058 Negative values will blur the input video, while positive values will
14059 sharpen it, a value of zero will disable the effect.
14060
14061 Default value is 1.0.
14062
14063 @item chroma_msize_x, cx
14064 Set the chroma matrix horizontal size. It must be an odd integer
14065 between 3 and 23. The default value is 5.
14066
14067 @item chroma_msize_y, cy
14068 Set the chroma matrix vertical size. It must be an odd integer
14069 between 3 and 23. The default value is 5.
14070
14071 @item chroma_amount, ca
14072 Set the chroma effect strength. It must be a floating point number, reasonable
14073 values lay between -1.5 and 1.5.
14074
14075 Negative values will blur the input video, while positive values will
14076 sharpen it, a value of zero will disable the effect.
14077
14078 Default value is 0.0.
14079
14080 @item opencl
14081 If set to 1, specify using OpenCL capabilities, only available if
14082 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
14083
14084 @end table
14085
14086 All parameters are optional and default to the equivalent of the
14087 string '5:5:1.0:5:5:0.0'.
14088
14089 @subsection Examples
14090
14091 @itemize
14092 @item
14093 Apply strong luma sharpen effect:
14094 @example
14095 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
14096 @end example
14097
14098 @item
14099 Apply a strong blur of both luma and chroma parameters:
14100 @example
14101 unsharp=7:7:-2:7:7:-2
14102 @end example
14103 @end itemize
14104
14105 @section uspp
14106
14107 Apply ultra slow/simple postprocessing filter that compresses and decompresses
14108 the image at several (or - in the case of @option{quality} level @code{8} - all)
14109 shifts and average the results.
14110
14111 The way this differs from the behavior of spp is that uspp actually encodes &
14112 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
14113 DCT similar to MJPEG.
14114
14115 The filter accepts the following options:
14116
14117 @table @option
14118 @item quality
14119 Set quality. This option defines the number of levels for averaging. It accepts
14120 an integer in the range 0-8. If set to @code{0}, the filter will have no
14121 effect. A value of @code{8} means the higher quality. For each increment of
14122 that value the speed drops by a factor of approximately 2.  Default value is
14123 @code{3}.
14124
14125 @item qp
14126 Force a constant quantization parameter. If not set, the filter will use the QP
14127 from the video stream (if available).
14128 @end table
14129
14130 @section vaguedenoiser
14131
14132 Apply a wavelet based denoiser.
14133
14134 It transforms each frame from the video input into the wavelet domain,
14135 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
14136 the obtained coefficients. It does an inverse wavelet transform after.
14137 Due to wavelet properties, it should give a nice smoothed result, and
14138 reduced noise, without blurring picture features.
14139
14140 This filter accepts the following options:
14141
14142 @table @option
14143 @item threshold
14144 The filtering strength. The higher, the more filtered the video will be.
14145 Hard thresholding can use a higher threshold than soft thresholding
14146 before the video looks overfiltered.
14147
14148 @item method
14149 The filtering method the filter will use.
14150
14151 It accepts the following values:
14152 @table @samp
14153 @item hard
14154 All values under the threshold will be zeroed.
14155
14156 @item soft
14157 All values under the threshold will be zeroed. All values above will be
14158 reduced by the threshold.
14159
14160 @item garrote
14161 Scales or nullifies coefficients - intermediary between (more) soft and
14162 (less) hard thresholding.
14163 @end table
14164
14165 @item nsteps
14166 Number of times, the wavelet will decompose the picture. Picture can't
14167 be decomposed beyond a particular point (typically, 8 for a 640x480
14168 frame - as 2^9 = 512 > 480)
14169
14170 @item percent
14171 Partial of full denoising (limited coefficients shrinking), from 0 to 100.
14172
14173 @item planes
14174 A list of the planes to process. By default all planes are processed.
14175 @end table
14176
14177 @section vectorscope
14178
14179 Display 2 color component values in the two dimensional graph (which is called
14180 a vectorscope).
14181
14182 This filter accepts the following options:
14183
14184 @table @option
14185 @item mode, m
14186 Set vectorscope mode.
14187
14188 It accepts the following values:
14189 @table @samp
14190 @item gray
14191 Gray values are displayed on graph, higher brightness means more pixels have
14192 same component color value on location in graph. This is the default mode.
14193
14194 @item color
14195 Gray values are displayed on graph. Surrounding pixels values which are not
14196 present in video frame are drawn in gradient of 2 color components which are
14197 set by option @code{x} and @code{y}. The 3rd color component is static.
14198
14199 @item color2
14200 Actual color components values present in video frame are displayed on graph.
14201
14202 @item color3
14203 Similar as color2 but higher frequency of same values @code{x} and @code{y}
14204 on graph increases value of another color component, which is luminance by
14205 default values of @code{x} and @code{y}.
14206
14207 @item color4
14208 Actual colors present in video frame are displayed on graph. If two different
14209 colors map to same position on graph then color with higher value of component
14210 not present in graph is picked.
14211
14212 @item color5
14213 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
14214 component picked from radial gradient.
14215 @end table
14216
14217 @item x
14218 Set which color component will be represented on X-axis. Default is @code{1}.
14219
14220 @item y
14221 Set which color component will be represented on Y-axis. Default is @code{2}.
14222
14223 @item intensity, i
14224 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
14225 of color component which represents frequency of (X, Y) location in graph.
14226
14227 @item envelope, e
14228 @table @samp
14229 @item none
14230 No envelope, this is default.
14231
14232 @item instant
14233 Instant envelope, even darkest single pixel will be clearly highlighted.
14234
14235 @item peak
14236 Hold maximum and minimum values presented in graph over time. This way you
14237 can still spot out of range values without constantly looking at vectorscope.
14238
14239 @item peak+instant
14240 Peak and instant envelope combined together.
14241 @end table
14242
14243 @item graticule, g
14244 Set what kind of graticule to draw.
14245 @table @samp
14246 @item none
14247 @item green
14248 @item color
14249 @end table
14250
14251 @item opacity, o
14252 Set graticule opacity.
14253
14254 @item flags, f
14255 Set graticule flags.
14256
14257 @table @samp
14258 @item white
14259 Draw graticule for white point.
14260
14261 @item black
14262 Draw graticule for black point.
14263
14264 @item name
14265 Draw color points short names.
14266 @end table
14267
14268 @item bgopacity, b
14269 Set background opacity.
14270
14271 @item lthreshold, l
14272 Set low threshold for color component not represented on X or Y axis.
14273 Values lower than this value will be ignored. Default is 0.
14274 Note this value is multiplied with actual max possible value one pixel component
14275 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
14276 is 0.1 * 255 = 25.
14277
14278 @item hthreshold, h
14279 Set high threshold for color component not represented on X or Y axis.
14280 Values higher than this value will be ignored. Default is 1.
14281 Note this value is multiplied with actual max possible value one pixel component
14282 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
14283 is 0.9 * 255 = 230.
14284
14285 @item colorspace, c
14286 Set what kind of colorspace to use when drawing graticule.
14287 @table @samp
14288 @item auto
14289 @item 601
14290 @item 709
14291 @end table
14292 Default is auto.
14293 @end table
14294
14295 @anchor{vidstabdetect}
14296 @section vidstabdetect
14297
14298 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
14299 @ref{vidstabtransform} for pass 2.
14300
14301 This filter generates a file with relative translation and rotation
14302 transform information about subsequent frames, which is then used by
14303 the @ref{vidstabtransform} filter.
14304
14305 To enable compilation of this filter you need to configure FFmpeg with
14306 @code{--enable-libvidstab}.
14307
14308 This filter accepts the following options:
14309
14310 @table @option
14311 @item result
14312 Set the path to the file used to write the transforms information.
14313 Default value is @file{transforms.trf}.
14314
14315 @item shakiness
14316 Set how shaky the video is and how quick the camera is. It accepts an
14317 integer in the range 1-10, a value of 1 means little shakiness, a
14318 value of 10 means strong shakiness. Default value is 5.
14319
14320 @item accuracy
14321 Set the accuracy of the detection process. It must be a value in the
14322 range 1-15. A value of 1 means low accuracy, a value of 15 means high
14323 accuracy. Default value is 15.
14324
14325 @item stepsize
14326 Set stepsize of the search process. The region around minimum is
14327 scanned with 1 pixel resolution. Default value is 6.
14328
14329 @item mincontrast
14330 Set minimum contrast. Below this value a local measurement field is
14331 discarded. Must be a floating point value in the range 0-1. Default
14332 value is 0.3.
14333
14334 @item tripod
14335 Set reference frame number for tripod mode.
14336
14337 If enabled, the motion of the frames is compared to a reference frame
14338 in the filtered stream, identified by the specified number. The idea
14339 is to compensate all movements in a more-or-less static scene and keep
14340 the camera view absolutely still.
14341
14342 If set to 0, it is disabled. The frames are counted starting from 1.
14343
14344 @item show
14345 Show fields and transforms in the resulting frames. It accepts an
14346 integer in the range 0-2. Default value is 0, which disables any
14347 visualization.
14348 @end table
14349
14350 @subsection Examples
14351
14352 @itemize
14353 @item
14354 Use default values:
14355 @example
14356 vidstabdetect
14357 @end example
14358
14359 @item
14360 Analyze strongly shaky movie and put the results in file
14361 @file{mytransforms.trf}:
14362 @example
14363 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
14364 @end example
14365
14366 @item
14367 Visualize the result of internal transformations in the resulting
14368 video:
14369 @example
14370 vidstabdetect=show=1
14371 @end example
14372
14373 @item
14374 Analyze a video with medium shakiness using @command{ffmpeg}:
14375 @example
14376 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
14377 @end example
14378 @end itemize
14379
14380 @anchor{vidstabtransform}
14381 @section vidstabtransform
14382
14383 Video stabilization/deshaking: pass 2 of 2,
14384 see @ref{vidstabdetect} for pass 1.
14385
14386 Read a file with transform information for each frame and
14387 apply/compensate them. Together with the @ref{vidstabdetect}
14388 filter this can be used to deshake videos. See also
14389 @url{http://public.hronopik.de/vid.stab}. It is important to also use
14390 the @ref{unsharp} filter, see below.
14391
14392 To enable compilation of this filter you need to configure FFmpeg with
14393 @code{--enable-libvidstab}.
14394
14395 @subsection Options
14396
14397 @table @option
14398 @item input
14399 Set path to the file used to read the transforms. Default value is
14400 @file{transforms.trf}.
14401
14402 @item smoothing
14403 Set the number of frames (value*2 + 1) used for lowpass filtering the
14404 camera movements. Default value is 10.
14405
14406 For example a number of 10 means that 21 frames are used (10 in the
14407 past and 10 in the future) to smoothen the motion in the video. A
14408 larger value leads to a smoother video, but limits the acceleration of
14409 the camera (pan/tilt movements). 0 is a special case where a static
14410 camera is simulated.
14411
14412 @item optalgo
14413 Set the camera path optimization algorithm.
14414
14415 Accepted values are:
14416 @table @samp
14417 @item gauss
14418 gaussian kernel low-pass filter on camera motion (default)
14419 @item avg
14420 averaging on transformations
14421 @end table
14422
14423 @item maxshift
14424 Set maximal number of pixels to translate frames. Default value is -1,
14425 meaning no limit.
14426
14427 @item maxangle
14428 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
14429 value is -1, meaning no limit.
14430
14431 @item crop
14432 Specify how to deal with borders that may be visible due to movement
14433 compensation.
14434
14435 Available values are:
14436 @table @samp
14437 @item keep
14438 keep image information from previous frame (default)
14439 @item black
14440 fill the border black
14441 @end table
14442
14443 @item invert
14444 Invert transforms if set to 1. Default value is 0.
14445
14446 @item relative
14447 Consider transforms as relative to previous frame if set to 1,
14448 absolute if set to 0. Default value is 0.
14449
14450 @item zoom
14451 Set percentage to zoom. A positive value will result in a zoom-in
14452 effect, a negative value in a zoom-out effect. Default value is 0 (no
14453 zoom).
14454
14455 @item optzoom
14456 Set optimal zooming to avoid borders.
14457
14458 Accepted values are:
14459 @table @samp
14460 @item 0
14461 disabled
14462 @item 1
14463 optimal static zoom value is determined (only very strong movements
14464 will lead to visible borders) (default)
14465 @item 2
14466 optimal adaptive zoom value is determined (no borders will be
14467 visible), see @option{zoomspeed}
14468 @end table
14469
14470 Note that the value given at zoom is added to the one calculated here.
14471
14472 @item zoomspeed
14473 Set percent to zoom maximally each frame (enabled when
14474 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
14475 0.25.
14476
14477 @item interpol
14478 Specify type of interpolation.
14479
14480 Available values are:
14481 @table @samp
14482 @item no
14483 no interpolation
14484 @item linear
14485 linear only horizontal
14486 @item bilinear
14487 linear in both directions (default)
14488 @item bicubic
14489 cubic in both directions (slow)
14490 @end table
14491
14492 @item tripod
14493 Enable virtual tripod mode if set to 1, which is equivalent to
14494 @code{relative=0:smoothing=0}. Default value is 0.
14495
14496 Use also @code{tripod} option of @ref{vidstabdetect}.
14497
14498 @item debug
14499 Increase log verbosity if set to 1. Also the detected global motions
14500 are written to the temporary file @file{global_motions.trf}. Default
14501 value is 0.
14502 @end table
14503
14504 @subsection Examples
14505
14506 @itemize
14507 @item
14508 Use @command{ffmpeg} for a typical stabilization with default values:
14509 @example
14510 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
14511 @end example
14512
14513 Note the use of the @ref{unsharp} filter which is always recommended.
14514
14515 @item
14516 Zoom in a bit more and load transform data from a given file:
14517 @example
14518 vidstabtransform=zoom=5:input="mytransforms.trf"
14519 @end example
14520
14521 @item
14522 Smoothen the video even more:
14523 @example
14524 vidstabtransform=smoothing=30
14525 @end example
14526 @end itemize
14527
14528 @section vflip
14529
14530 Flip the input video vertically.
14531
14532 For example, to vertically flip a video with @command{ffmpeg}:
14533 @example
14534 ffmpeg -i in.avi -vf "vflip" out.avi
14535 @end example
14536
14537 @anchor{vignette}
14538 @section vignette
14539
14540 Make or reverse a natural vignetting effect.
14541
14542 The filter accepts the following options:
14543
14544 @table @option
14545 @item angle, a
14546 Set lens angle expression as a number of radians.
14547
14548 The value is clipped in the @code{[0,PI/2]} range.
14549
14550 Default value: @code{"PI/5"}
14551
14552 @item x0
14553 @item y0
14554 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
14555 by default.
14556
14557 @item mode
14558 Set forward/backward mode.
14559
14560 Available modes are:
14561 @table @samp
14562 @item forward
14563 The larger the distance from the central point, the darker the image becomes.
14564
14565 @item backward
14566 The larger the distance from the central point, the brighter the image becomes.
14567 This can be used to reverse a vignette effect, though there is no automatic
14568 detection to extract the lens @option{angle} and other settings (yet). It can
14569 also be used to create a burning effect.
14570 @end table
14571
14572 Default value is @samp{forward}.
14573
14574 @item eval
14575 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
14576
14577 It accepts the following values:
14578 @table @samp
14579 @item init
14580 Evaluate expressions only once during the filter initialization.
14581
14582 @item frame
14583 Evaluate expressions for each incoming frame. This is way slower than the
14584 @samp{init} mode since it requires all the scalers to be re-computed, but it
14585 allows advanced dynamic expressions.
14586 @end table
14587
14588 Default value is @samp{init}.
14589
14590 @item dither
14591 Set dithering to reduce the circular banding effects. Default is @code{1}
14592 (enabled).
14593
14594 @item aspect
14595 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
14596 Setting this value to the SAR of the input will make a rectangular vignetting
14597 following the dimensions of the video.
14598
14599 Default is @code{1/1}.
14600 @end table
14601
14602 @subsection Expressions
14603
14604 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
14605 following parameters.
14606
14607 @table @option
14608 @item w
14609 @item h
14610 input width and height
14611
14612 @item n
14613 the number of input frame, starting from 0
14614
14615 @item pts
14616 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
14617 @var{TB} units, NAN if undefined
14618
14619 @item r
14620 frame rate of the input video, NAN if the input frame rate is unknown
14621
14622 @item t
14623 the PTS (Presentation TimeStamp) of the filtered video frame,
14624 expressed in seconds, NAN if undefined
14625
14626 @item tb
14627 time base of the input video
14628 @end table
14629
14630
14631 @subsection Examples
14632
14633 @itemize
14634 @item
14635 Apply simple strong vignetting effect:
14636 @example
14637 vignette=PI/4
14638 @end example
14639
14640 @item
14641 Make a flickering vignetting:
14642 @example
14643 vignette='PI/4+random(1)*PI/50':eval=frame
14644 @end example
14645
14646 @end itemize
14647
14648 @section vstack
14649 Stack input videos vertically.
14650
14651 All streams must be of same pixel format and of same width.
14652
14653 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
14654 to create same output.
14655
14656 The filter accept the following option:
14657
14658 @table @option
14659 @item inputs
14660 Set number of input streams. Default is 2.
14661
14662 @item shortest
14663 If set to 1, force the output to terminate when the shortest input
14664 terminates. Default value is 0.
14665 @end table
14666
14667 @section w3fdif
14668
14669 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
14670 Deinterlacing Filter").
14671
14672 Based on the process described by Martin Weston for BBC R&D, and
14673 implemented based on the de-interlace algorithm written by Jim
14674 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
14675 uses filter coefficients calculated by BBC R&D.
14676
14677 There are two sets of filter coefficients, so called "simple":
14678 and "complex". Which set of filter coefficients is used can
14679 be set by passing an optional parameter:
14680
14681 @table @option
14682 @item filter
14683 Set the interlacing filter coefficients. Accepts one of the following values:
14684
14685 @table @samp
14686 @item simple
14687 Simple filter coefficient set.
14688 @item complex
14689 More-complex filter coefficient set.
14690 @end table
14691 Default value is @samp{complex}.
14692
14693 @item deint
14694 Specify which frames to deinterlace. Accept one of the following values:
14695
14696 @table @samp
14697 @item all
14698 Deinterlace all frames,
14699 @item interlaced
14700 Only deinterlace frames marked as interlaced.
14701 @end table
14702
14703 Default value is @samp{all}.
14704 @end table
14705
14706 @section waveform
14707 Video waveform monitor.
14708
14709 The waveform monitor plots color component intensity. By default luminance
14710 only. Each column of the waveform corresponds to a column of pixels in the
14711 source video.
14712
14713 It accepts the following options:
14714
14715 @table @option
14716 @item mode, m
14717 Can be either @code{row}, or @code{column}. Default is @code{column}.
14718 In row mode, the graph on the left side represents color component value 0 and
14719 the right side represents value = 255. In column mode, the top side represents
14720 color component value = 0 and bottom side represents value = 255.
14721
14722 @item intensity, i
14723 Set intensity. Smaller values are useful to find out how many values of the same
14724 luminance are distributed across input rows/columns.
14725 Default value is @code{0.04}. Allowed range is [0, 1].
14726
14727 @item mirror, r
14728 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
14729 In mirrored mode, higher values will be represented on the left
14730 side for @code{row} mode and at the top for @code{column} mode. Default is
14731 @code{1} (mirrored).
14732
14733 @item display, d
14734 Set display mode.
14735 It accepts the following values:
14736 @table @samp
14737 @item overlay
14738 Presents information identical to that in the @code{parade}, except
14739 that the graphs representing color components are superimposed directly
14740 over one another.
14741
14742 This display mode makes it easier to spot relative differences or similarities
14743 in overlapping areas of the color components that are supposed to be identical,
14744 such as neutral whites, grays, or blacks.
14745
14746 @item stack
14747 Display separate graph for the color components side by side in
14748 @code{row} mode or one below the other in @code{column} mode.
14749
14750 @item parade
14751 Display separate graph for the color components side by side in
14752 @code{column} mode or one below the other in @code{row} mode.
14753
14754 Using this display mode makes it easy to spot color casts in the highlights
14755 and shadows of an image, by comparing the contours of the top and the bottom
14756 graphs of each waveform. Since whites, grays, and blacks are characterized
14757 by exactly equal amounts of red, green, and blue, neutral areas of the picture
14758 should display three waveforms of roughly equal width/height. If not, the
14759 correction is easy to perform by making level adjustments the three waveforms.
14760 @end table
14761 Default is @code{stack}.
14762
14763 @item components, c
14764 Set which color components to display. Default is 1, which means only luminance
14765 or red color component if input is in RGB colorspace. If is set for example to
14766 7 it will display all 3 (if) available color components.
14767
14768 @item envelope, e
14769 @table @samp
14770 @item none
14771 No envelope, this is default.
14772
14773 @item instant
14774 Instant envelope, minimum and maximum values presented in graph will be easily
14775 visible even with small @code{step} value.
14776
14777 @item peak
14778 Hold minimum and maximum values presented in graph across time. This way you
14779 can still spot out of range values without constantly looking at waveforms.
14780
14781 @item peak+instant
14782 Peak and instant envelope combined together.
14783 @end table
14784
14785 @item filter, f
14786 @table @samp
14787 @item lowpass
14788 No filtering, this is default.
14789
14790 @item flat
14791 Luma and chroma combined together.
14792
14793 @item aflat
14794 Similar as above, but shows difference between blue and red chroma.
14795
14796 @item chroma
14797 Displays only chroma.
14798
14799 @item color
14800 Displays actual color value on waveform.
14801
14802 @item acolor
14803 Similar as above, but with luma showing frequency of chroma values.
14804 @end table
14805
14806 @item graticule, g
14807 Set which graticule to display.
14808
14809 @table @samp
14810 @item none
14811 Do not display graticule.
14812
14813 @item green
14814 Display green graticule showing legal broadcast ranges.
14815 @end table
14816
14817 @item opacity, o
14818 Set graticule opacity.
14819
14820 @item flags, fl
14821 Set graticule flags.
14822
14823 @table @samp
14824 @item numbers
14825 Draw numbers above lines. By default enabled.
14826
14827 @item dots
14828 Draw dots instead of lines.
14829 @end table
14830
14831 @item scale, s
14832 Set scale used for displaying graticule.
14833
14834 @table @samp
14835 @item digital
14836 @item millivolts
14837 @item ire
14838 @end table
14839 Default is digital.
14840
14841 @item bgopacity, b
14842 Set background opacity.
14843 @end table
14844
14845 @section weave, doubleweave
14846
14847 The @code{weave} takes a field-based video input and join
14848 each two sequential fields into single frame, producing a new double
14849 height clip with half the frame rate and half the frame count.
14850
14851 The @code{doubleweave} works same as @code{weave} but without
14852 halving frame rate and frame count.
14853
14854 It accepts the following option:
14855
14856 @table @option
14857 @item first_field
14858 Set first field. Available values are:
14859
14860 @table @samp
14861 @item top, t
14862 Set the frame as top-field-first.
14863
14864 @item bottom, b
14865 Set the frame as bottom-field-first.
14866 @end table
14867 @end table
14868
14869 @subsection Examples
14870
14871 @itemize
14872 @item
14873 Interlace video using @ref{select} and @ref{separatefields} filter:
14874 @example
14875 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
14876 @end example
14877 @end itemize
14878
14879 @section xbr
14880 Apply the xBR high-quality magnification filter which is designed for pixel
14881 art. It follows a set of edge-detection rules, see
14882 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
14883
14884 It accepts the following option:
14885
14886 @table @option
14887 @item n
14888 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
14889 @code{3xBR} and @code{4} for @code{4xBR}.
14890 Default is @code{3}.
14891 @end table
14892
14893 @anchor{yadif}
14894 @section yadif
14895
14896 Deinterlace the input video ("yadif" means "yet another deinterlacing
14897 filter").
14898
14899 It accepts the following parameters:
14900
14901
14902 @table @option
14903
14904 @item mode
14905 The interlacing mode to adopt. It accepts one of the following values:
14906
14907 @table @option
14908 @item 0, send_frame
14909 Output one frame for each frame.
14910 @item 1, send_field
14911 Output one frame for each field.
14912 @item 2, send_frame_nospatial
14913 Like @code{send_frame}, but it skips the spatial interlacing check.
14914 @item 3, send_field_nospatial
14915 Like @code{send_field}, but it skips the spatial interlacing check.
14916 @end table
14917
14918 The default value is @code{send_frame}.
14919
14920 @item parity
14921 The picture field parity assumed for the input interlaced video. It accepts one
14922 of the following values:
14923
14924 @table @option
14925 @item 0, tff
14926 Assume the top field is first.
14927 @item 1, bff
14928 Assume the bottom field is first.
14929 @item -1, auto
14930 Enable automatic detection of field parity.
14931 @end table
14932
14933 The default value is @code{auto}.
14934 If the interlacing is unknown or the decoder does not export this information,
14935 top field first will be assumed.
14936
14937 @item deint
14938 Specify which frames to deinterlace. Accept one of the following
14939 values:
14940
14941 @table @option
14942 @item 0, all
14943 Deinterlace all frames.
14944 @item 1, interlaced
14945 Only deinterlace frames marked as interlaced.
14946 @end table
14947
14948 The default value is @code{all}.
14949 @end table
14950
14951 @section zoompan
14952
14953 Apply Zoom & Pan effect.
14954
14955 This filter accepts the following options:
14956
14957 @table @option
14958 @item zoom, z
14959 Set the zoom expression. Default is 1.
14960
14961 @item x
14962 @item y
14963 Set the x and y expression. Default is 0.
14964
14965 @item d
14966 Set the duration expression in number of frames.
14967 This sets for how many number of frames effect will last for
14968 single input image.
14969
14970 @item s
14971 Set the output image size, default is 'hd720'.
14972
14973 @item fps
14974 Set the output frame rate, default is '25'.
14975 @end table
14976
14977 Each expression can contain the following constants:
14978
14979 @table @option
14980 @item in_w, iw
14981 Input width.
14982
14983 @item in_h, ih
14984 Input height.
14985
14986 @item out_w, ow
14987 Output width.
14988
14989 @item out_h, oh
14990 Output height.
14991
14992 @item in
14993 Input frame count.
14994
14995 @item on
14996 Output frame count.
14997
14998 @item x
14999 @item y
15000 Last calculated 'x' and 'y' position from 'x' and 'y' expression
15001 for current input frame.
15002
15003 @item px
15004 @item py
15005 'x' and 'y' of last output frame of previous input frame or 0 when there was
15006 not yet such frame (first input frame).
15007
15008 @item zoom
15009 Last calculated zoom from 'z' expression for current input frame.
15010
15011 @item pzoom
15012 Last calculated zoom of last output frame of previous input frame.
15013
15014 @item duration
15015 Number of output frames for current input frame. Calculated from 'd' expression
15016 for each input frame.
15017
15018 @item pduration
15019 number of output frames created for previous input frame
15020
15021 @item a
15022 Rational number: input width / input height
15023
15024 @item sar
15025 sample aspect ratio
15026
15027 @item dar
15028 display aspect ratio
15029
15030 @end table
15031
15032 @subsection Examples
15033
15034 @itemize
15035 @item
15036 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
15037 @example
15038 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
15039 @end example
15040
15041 @item
15042 Zoom-in up to 1.5 and pan always at center of picture:
15043 @example
15044 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
15045 @end example
15046
15047 @item
15048 Same as above but without pausing:
15049 @example
15050 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
15051 @end example
15052 @end itemize
15053
15054 @section zscale
15055 Scale (resize) the input video, using the z.lib library:
15056 https://github.com/sekrit-twc/zimg.
15057
15058 The zscale filter forces the output display aspect ratio to be the same
15059 as the input, by changing the output sample aspect ratio.
15060
15061 If the input image format is different from the format requested by
15062 the next filter, the zscale filter will convert the input to the
15063 requested format.
15064
15065 @subsection Options
15066 The filter accepts the following options.
15067
15068 @table @option
15069 @item width, w
15070 @item height, h
15071 Set the output video dimension expression. Default value is the input
15072 dimension.
15073
15074 If the @var{width} or @var{w} is 0, the input width is used for the output.
15075 If the @var{height} or @var{h} is 0, the input height is used for the output.
15076
15077 If one of the values is -1, the zscale filter will use a value that
15078 maintains the aspect ratio of the input image, calculated from the
15079 other specified dimension. If both of them are -1, the input size is
15080 used
15081
15082 If one of the values is -n with n > 1, the zscale filter will also use a value
15083 that maintains the aspect ratio of the input image, calculated from the other
15084 specified dimension. After that it will, however, make sure that the calculated
15085 dimension is divisible by n and adjust the value if necessary.
15086
15087 See below for the list of accepted constants for use in the dimension
15088 expression.
15089
15090 @item size, s
15091 Set the video size. For the syntax of this option, check the
15092 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15093
15094 @item dither, d
15095 Set the dither type.
15096
15097 Possible values are:
15098 @table @var
15099 @item none
15100 @item ordered
15101 @item random
15102 @item error_diffusion
15103 @end table
15104
15105 Default is none.
15106
15107 @item filter, f
15108 Set the resize filter type.
15109
15110 Possible values are:
15111 @table @var
15112 @item point
15113 @item bilinear
15114 @item bicubic
15115 @item spline16
15116 @item spline36
15117 @item lanczos
15118 @end table
15119
15120 Default is bilinear.
15121
15122 @item range, r
15123 Set the color range.
15124
15125 Possible values are:
15126 @table @var
15127 @item input
15128 @item limited
15129 @item full
15130 @end table
15131
15132 Default is same as input.
15133
15134 @item primaries, p
15135 Set the color primaries.
15136
15137 Possible values are:
15138 @table @var
15139 @item input
15140 @item 709
15141 @item unspecified
15142 @item 170m
15143 @item 240m
15144 @item 2020
15145 @end table
15146
15147 Default is same as input.
15148
15149 @item transfer, t
15150 Set the transfer characteristics.
15151
15152 Possible values are:
15153 @table @var
15154 @item input
15155 @item 709
15156 @item unspecified
15157 @item 601
15158 @item linear
15159 @item 2020_10
15160 @item 2020_12
15161 @item smpte2084
15162 @item iec61966-2-1
15163 @item arib-std-b67
15164 @end table
15165
15166 Default is same as input.
15167
15168 @item matrix, m
15169 Set the colorspace matrix.
15170
15171 Possible value are:
15172 @table @var
15173 @item input
15174 @item 709
15175 @item unspecified
15176 @item 470bg
15177 @item 170m
15178 @item 2020_ncl
15179 @item 2020_cl
15180 @end table
15181
15182 Default is same as input.
15183
15184 @item rangein, rin
15185 Set the input color range.
15186
15187 Possible values are:
15188 @table @var
15189 @item input
15190 @item limited
15191 @item full
15192 @end table
15193
15194 Default is same as input.
15195
15196 @item primariesin, pin
15197 Set the input color primaries.
15198
15199 Possible values are:
15200 @table @var
15201 @item input
15202 @item 709
15203 @item unspecified
15204 @item 170m
15205 @item 240m
15206 @item 2020
15207 @end table
15208
15209 Default is same as input.
15210
15211 @item transferin, tin
15212 Set the input transfer characteristics.
15213
15214 Possible values are:
15215 @table @var
15216 @item input
15217 @item 709
15218 @item unspecified
15219 @item 601
15220 @item linear
15221 @item 2020_10
15222 @item 2020_12
15223 @end table
15224
15225 Default is same as input.
15226
15227 @item matrixin, min
15228 Set the input colorspace matrix.
15229
15230 Possible value are:
15231 @table @var
15232 @item input
15233 @item 709
15234 @item unspecified
15235 @item 470bg
15236 @item 170m
15237 @item 2020_ncl
15238 @item 2020_cl
15239 @end table
15240
15241 @item chromal, c
15242 Set the output chroma location.
15243
15244 Possible values are:
15245 @table @var
15246 @item input
15247 @item left
15248 @item center
15249 @item topleft
15250 @item top
15251 @item bottomleft
15252 @item bottom
15253 @end table
15254
15255 @item chromalin, cin
15256 Set the input chroma location.
15257
15258 Possible values are:
15259 @table @var
15260 @item input
15261 @item left
15262 @item center
15263 @item topleft
15264 @item top
15265 @item bottomleft
15266 @item bottom
15267 @end table
15268
15269 @item npl
15270 Set the nominal peak luminance.
15271 @end table
15272
15273 The values of the @option{w} and @option{h} options are expressions
15274 containing the following constants:
15275
15276 @table @var
15277 @item in_w
15278 @item in_h
15279 The input width and height
15280
15281 @item iw
15282 @item ih
15283 These are the same as @var{in_w} and @var{in_h}.
15284
15285 @item out_w
15286 @item out_h
15287 The output (scaled) width and height
15288
15289 @item ow
15290 @item oh
15291 These are the same as @var{out_w} and @var{out_h}
15292
15293 @item a
15294 The same as @var{iw} / @var{ih}
15295
15296 @item sar
15297 input sample aspect ratio
15298
15299 @item dar
15300 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
15301
15302 @item hsub
15303 @item vsub
15304 horizontal and vertical input chroma subsample values. For example for the
15305 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15306
15307 @item ohsub
15308 @item ovsub
15309 horizontal and vertical output chroma subsample values. For example for the
15310 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15311 @end table
15312
15313 @table @option
15314 @end table
15315
15316 @c man end VIDEO FILTERS
15317
15318 @chapter Video Sources
15319 @c man begin VIDEO SOURCES
15320
15321 Below is a description of the currently available video sources.
15322
15323 @section buffer
15324
15325 Buffer video frames, and make them available to the filter chain.
15326
15327 This source is mainly intended for a programmatic use, in particular
15328 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
15329
15330 It accepts the following parameters:
15331
15332 @table @option
15333
15334 @item video_size
15335 Specify the size (width and height) of the buffered video frames. For the
15336 syntax of this option, check the
15337 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15338
15339 @item width
15340 The input video width.
15341
15342 @item height
15343 The input video height.
15344
15345 @item pix_fmt
15346 A string representing the pixel format of the buffered video frames.
15347 It may be a number corresponding to a pixel format, or a pixel format
15348 name.
15349
15350 @item time_base
15351 Specify the timebase assumed by the timestamps of the buffered frames.
15352
15353 @item frame_rate
15354 Specify the frame rate expected for the video stream.
15355
15356 @item pixel_aspect, sar
15357 The sample (pixel) aspect ratio of the input video.
15358
15359 @item sws_param
15360 Specify the optional parameters to be used for the scale filter which
15361 is automatically inserted when an input change is detected in the
15362 input size or format.
15363
15364 @item hw_frames_ctx
15365 When using a hardware pixel format, this should be a reference to an
15366 AVHWFramesContext describing input frames.
15367 @end table
15368
15369 For example:
15370 @example
15371 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
15372 @end example
15373
15374 will instruct the source to accept video frames with size 320x240 and
15375 with format "yuv410p", assuming 1/24 as the timestamps timebase and
15376 square pixels (1:1 sample aspect ratio).
15377 Since the pixel format with name "yuv410p" corresponds to the number 6
15378 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
15379 this example corresponds to:
15380 @example
15381 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
15382 @end example
15383
15384 Alternatively, the options can be specified as a flat string, but this
15385 syntax is deprecated:
15386
15387 @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}]
15388
15389 @section cellauto
15390
15391 Create a pattern generated by an elementary cellular automaton.
15392
15393 The initial state of the cellular automaton can be defined through the
15394 @option{filename} and @option{pattern} options. If such options are
15395 not specified an initial state is created randomly.
15396
15397 At each new frame a new row in the video is filled with the result of
15398 the cellular automaton next generation. The behavior when the whole
15399 frame is filled is defined by the @option{scroll} option.
15400
15401 This source accepts the following options:
15402
15403 @table @option
15404 @item filename, f
15405 Read the initial cellular automaton state, i.e. the starting row, from
15406 the specified file.
15407 In the file, each non-whitespace character is considered an alive
15408 cell, a newline will terminate the row, and further characters in the
15409 file will be ignored.
15410
15411 @item pattern, p
15412 Read the initial cellular automaton state, i.e. the starting row, from
15413 the specified string.
15414
15415 Each non-whitespace character in the string is considered an alive
15416 cell, a newline will terminate the row, and further characters in the
15417 string will be ignored.
15418
15419 @item rate, r
15420 Set the video rate, that is the number of frames generated per second.
15421 Default is 25.
15422
15423 @item random_fill_ratio, ratio
15424 Set the random fill ratio for the initial cellular automaton row. It
15425 is a floating point number value ranging from 0 to 1, defaults to
15426 1/PHI.
15427
15428 This option is ignored when a file or a pattern is specified.
15429
15430 @item random_seed, seed
15431 Set the seed for filling randomly the initial row, must be an integer
15432 included between 0 and UINT32_MAX. If not specified, or if explicitly
15433 set to -1, the filter will try to use a good random seed on a best
15434 effort basis.
15435
15436 @item rule
15437 Set the cellular automaton rule, it is a number ranging from 0 to 255.
15438 Default value is 110.
15439
15440 @item size, s
15441 Set the size of the output video. For the syntax of this option, check the
15442 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15443
15444 If @option{filename} or @option{pattern} is specified, the size is set
15445 by default to the width of the specified initial state row, and the
15446 height is set to @var{width} * PHI.
15447
15448 If @option{size} is set, it must contain the width of the specified
15449 pattern string, and the specified pattern will be centered in the
15450 larger row.
15451
15452 If a filename or a pattern string is not specified, the size value
15453 defaults to "320x518" (used for a randomly generated initial state).
15454
15455 @item scroll
15456 If set to 1, scroll the output upward when all the rows in the output
15457 have been already filled. If set to 0, the new generated row will be
15458 written over the top row just after the bottom row is filled.
15459 Defaults to 1.
15460
15461 @item start_full, full
15462 If set to 1, completely fill the output with generated rows before
15463 outputting the first frame.
15464 This is the default behavior, for disabling set the value to 0.
15465
15466 @item stitch
15467 If set to 1, stitch the left and right row edges together.
15468 This is the default behavior, for disabling set the value to 0.
15469 @end table
15470
15471 @subsection Examples
15472
15473 @itemize
15474 @item
15475 Read the initial state from @file{pattern}, and specify an output of
15476 size 200x400.
15477 @example
15478 cellauto=f=pattern:s=200x400
15479 @end example
15480
15481 @item
15482 Generate a random initial row with a width of 200 cells, with a fill
15483 ratio of 2/3:
15484 @example
15485 cellauto=ratio=2/3:s=200x200
15486 @end example
15487
15488 @item
15489 Create a pattern generated by rule 18 starting by a single alive cell
15490 centered on an initial row with width 100:
15491 @example
15492 cellauto=p=@@:s=100x400:full=0:rule=18
15493 @end example
15494
15495 @item
15496 Specify a more elaborated initial pattern:
15497 @example
15498 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
15499 @end example
15500
15501 @end itemize
15502
15503 @anchor{coreimagesrc}
15504 @section coreimagesrc
15505 Video source generated on GPU using Apple's CoreImage API on OSX.
15506
15507 This video source is a specialized version of the @ref{coreimage} video filter.
15508 Use a core image generator at the beginning of the applied filterchain to
15509 generate the content.
15510
15511 The coreimagesrc video source accepts the following options:
15512 @table @option
15513 @item list_generators
15514 List all available generators along with all their respective options as well as
15515 possible minimum and maximum values along with the default values.
15516 @example
15517 list_generators=true
15518 @end example
15519
15520 @item size, s
15521 Specify the size of the sourced video. For the syntax of this option, check the
15522 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15523 The default value is @code{320x240}.
15524
15525 @item rate, r
15526 Specify the frame rate of the sourced video, as the number of frames
15527 generated per second. It has to be a string in the format
15528 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15529 number or a valid video frame rate abbreviation. The default value is
15530 "25".
15531
15532 @item sar
15533 Set the sample aspect ratio of the sourced video.
15534
15535 @item duration, d
15536 Set the duration of the sourced video. See
15537 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15538 for the accepted syntax.
15539
15540 If not specified, or the expressed duration is negative, the video is
15541 supposed to be generated forever.
15542 @end table
15543
15544 Additionally, all options of the @ref{coreimage} video filter are accepted.
15545 A complete filterchain can be used for further processing of the
15546 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
15547 and examples for details.
15548
15549 @subsection Examples
15550
15551 @itemize
15552
15553 @item
15554 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
15555 given as complete and escaped command-line for Apple's standard bash shell:
15556 @example
15557 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
15558 @end example
15559 This example is equivalent to the QRCode example of @ref{coreimage} without the
15560 need for a nullsrc video source.
15561 @end itemize
15562
15563
15564 @section mandelbrot
15565
15566 Generate a Mandelbrot set fractal, and progressively zoom towards the
15567 point specified with @var{start_x} and @var{start_y}.
15568
15569 This source accepts the following options:
15570
15571 @table @option
15572
15573 @item end_pts
15574 Set the terminal pts value. Default value is 400.
15575
15576 @item end_scale
15577 Set the terminal scale value.
15578 Must be a floating point value. Default value is 0.3.
15579
15580 @item inner
15581 Set the inner coloring mode, that is the algorithm used to draw the
15582 Mandelbrot fractal internal region.
15583
15584 It shall assume one of the following values:
15585 @table @option
15586 @item black
15587 Set black mode.
15588 @item convergence
15589 Show time until convergence.
15590 @item mincol
15591 Set color based on point closest to the origin of the iterations.
15592 @item period
15593 Set period mode.
15594 @end table
15595
15596 Default value is @var{mincol}.
15597
15598 @item bailout
15599 Set the bailout value. Default value is 10.0.
15600
15601 @item maxiter
15602 Set the maximum of iterations performed by the rendering
15603 algorithm. Default value is 7189.
15604
15605 @item outer
15606 Set outer coloring mode.
15607 It shall assume one of following values:
15608 @table @option
15609 @item iteration_count
15610 Set iteration cound mode.
15611 @item normalized_iteration_count
15612 set normalized iteration count mode.
15613 @end table
15614 Default value is @var{normalized_iteration_count}.
15615
15616 @item rate, r
15617 Set frame rate, expressed as number of frames per second. Default
15618 value is "25".
15619
15620 @item size, s
15621 Set frame size. For the syntax of this option, check the "Video
15622 size" section in the ffmpeg-utils manual. Default value is "640x480".
15623
15624 @item start_scale
15625 Set the initial scale value. Default value is 3.0.
15626
15627 @item start_x
15628 Set the initial x position. Must be a floating point value between
15629 -100 and 100. Default value is -0.743643887037158704752191506114774.
15630
15631 @item start_y
15632 Set the initial y position. Must be a floating point value between
15633 -100 and 100. Default value is -0.131825904205311970493132056385139.
15634 @end table
15635
15636 @section mptestsrc
15637
15638 Generate various test patterns, as generated by the MPlayer test filter.
15639
15640 The size of the generated video is fixed, and is 256x256.
15641 This source is useful in particular for testing encoding features.
15642
15643 This source accepts the following options:
15644
15645 @table @option
15646
15647 @item rate, r
15648 Specify the frame rate of the sourced video, as the number of frames
15649 generated per second. It has to be a string in the format
15650 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15651 number or a valid video frame rate abbreviation. The default value is
15652 "25".
15653
15654 @item duration, d
15655 Set the duration of the sourced video. See
15656 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15657 for the accepted syntax.
15658
15659 If not specified, or the expressed duration is negative, the video is
15660 supposed to be generated forever.
15661
15662 @item test, t
15663
15664 Set the number or the name of the test to perform. Supported tests are:
15665 @table @option
15666 @item dc_luma
15667 @item dc_chroma
15668 @item freq_luma
15669 @item freq_chroma
15670 @item amp_luma
15671 @item amp_chroma
15672 @item cbp
15673 @item mv
15674 @item ring1
15675 @item ring2
15676 @item all
15677
15678 @end table
15679
15680 Default value is "all", which will cycle through the list of all tests.
15681 @end table
15682
15683 Some examples:
15684 @example
15685 mptestsrc=t=dc_luma
15686 @end example
15687
15688 will generate a "dc_luma" test pattern.
15689
15690 @section frei0r_src
15691
15692 Provide a frei0r source.
15693
15694 To enable compilation of this filter you need to install the frei0r
15695 header and configure FFmpeg with @code{--enable-frei0r}.
15696
15697 This source accepts the following parameters:
15698
15699 @table @option
15700
15701 @item size
15702 The size of the video to generate. For the syntax of this option, check the
15703 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15704
15705 @item framerate
15706 The framerate of the generated video. It may be a string of the form
15707 @var{num}/@var{den} or a frame rate abbreviation.
15708
15709 @item filter_name
15710 The name to the frei0r source to load. For more information regarding frei0r and
15711 how to set the parameters, read the @ref{frei0r} section in the video filters
15712 documentation.
15713
15714 @item filter_params
15715 A '|'-separated list of parameters to pass to the frei0r source.
15716
15717 @end table
15718
15719 For example, to generate a frei0r partik0l source with size 200x200
15720 and frame rate 10 which is overlaid on the overlay filter main input:
15721 @example
15722 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
15723 @end example
15724
15725 @section life
15726
15727 Generate a life pattern.
15728
15729 This source is based on a generalization of John Conway's life game.
15730
15731 The sourced input represents a life grid, each pixel represents a cell
15732 which can be in one of two possible states, alive or dead. Every cell
15733 interacts with its eight neighbours, which are the cells that are
15734 horizontally, vertically, or diagonally adjacent.
15735
15736 At each interaction the grid evolves according to the adopted rule,
15737 which specifies the number of neighbor alive cells which will make a
15738 cell stay alive or born. The @option{rule} option allows one to specify
15739 the rule to adopt.
15740
15741 This source accepts the following options:
15742
15743 @table @option
15744 @item filename, f
15745 Set the file from which to read the initial grid state. In the file,
15746 each non-whitespace character is considered an alive cell, and newline
15747 is used to delimit the end of each row.
15748
15749 If this option is not specified, the initial grid is generated
15750 randomly.
15751
15752 @item rate, r
15753 Set the video rate, that is the number of frames generated per second.
15754 Default is 25.
15755
15756 @item random_fill_ratio, ratio
15757 Set the random fill ratio for the initial random grid. It is a
15758 floating point number value ranging from 0 to 1, defaults to 1/PHI.
15759 It is ignored when a file is specified.
15760
15761 @item random_seed, seed
15762 Set the seed for filling the initial random grid, must be an integer
15763 included between 0 and UINT32_MAX. If not specified, or if explicitly
15764 set to -1, the filter will try to use a good random seed on a best
15765 effort basis.
15766
15767 @item rule
15768 Set the life rule.
15769
15770 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
15771 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
15772 @var{NS} specifies the number of alive neighbor cells which make a
15773 live cell stay alive, and @var{NB} the number of alive neighbor cells
15774 which make a dead cell to become alive (i.e. to "born").
15775 "s" and "b" can be used in place of "S" and "B", respectively.
15776
15777 Alternatively a rule can be specified by an 18-bits integer. The 9
15778 high order bits are used to encode the next cell state if it is alive
15779 for each number of neighbor alive cells, the low order bits specify
15780 the rule for "borning" new cells. Higher order bits encode for an
15781 higher number of neighbor cells.
15782 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
15783 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
15784
15785 Default value is "S23/B3", which is the original Conway's game of life
15786 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
15787 cells, and will born a new cell if there are three alive cells around
15788 a dead cell.
15789
15790 @item size, s
15791 Set the size of the output video. For the syntax of this option, check the
15792 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15793
15794 If @option{filename} is specified, the size is set by default to the
15795 same size of the input file. If @option{size} is set, it must contain
15796 the size specified in the input file, and the initial grid defined in
15797 that file is centered in the larger resulting area.
15798
15799 If a filename is not specified, the size value defaults to "320x240"
15800 (used for a randomly generated initial grid).
15801
15802 @item stitch
15803 If set to 1, stitch the left and right grid edges together, and the
15804 top and bottom edges also. Defaults to 1.
15805
15806 @item mold
15807 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
15808 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
15809 value from 0 to 255.
15810
15811 @item life_color
15812 Set the color of living (or new born) cells.
15813
15814 @item death_color
15815 Set the color of dead cells. If @option{mold} is set, this is the first color
15816 used to represent a dead cell.
15817
15818 @item mold_color
15819 Set mold color, for definitely dead and moldy cells.
15820
15821 For the syntax of these 3 color options, check the "Color" section in the
15822 ffmpeg-utils manual.
15823 @end table
15824
15825 @subsection Examples
15826
15827 @itemize
15828 @item
15829 Read a grid from @file{pattern}, and center it on a grid of size
15830 300x300 pixels:
15831 @example
15832 life=f=pattern:s=300x300
15833 @end example
15834
15835 @item
15836 Generate a random grid of size 200x200, with a fill ratio of 2/3:
15837 @example
15838 life=ratio=2/3:s=200x200
15839 @end example
15840
15841 @item
15842 Specify a custom rule for evolving a randomly generated grid:
15843 @example
15844 life=rule=S14/B34
15845 @end example
15846
15847 @item
15848 Full example with slow death effect (mold) using @command{ffplay}:
15849 @example
15850 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
15851 @end example
15852 @end itemize
15853
15854 @anchor{allrgb}
15855 @anchor{allyuv}
15856 @anchor{color}
15857 @anchor{haldclutsrc}
15858 @anchor{nullsrc}
15859 @anchor{rgbtestsrc}
15860 @anchor{smptebars}
15861 @anchor{smptehdbars}
15862 @anchor{testsrc}
15863 @anchor{testsrc2}
15864 @anchor{yuvtestsrc}
15865 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
15866
15867 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
15868
15869 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
15870
15871 The @code{color} source provides an uniformly colored input.
15872
15873 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
15874 @ref{haldclut} filter.
15875
15876 The @code{nullsrc} source returns unprocessed video frames. It is
15877 mainly useful to be employed in analysis / debugging tools, or as the
15878 source for filters which ignore the input data.
15879
15880 The @code{rgbtestsrc} source generates an RGB test pattern useful for
15881 detecting RGB vs BGR issues. You should see a red, green and blue
15882 stripe from top to bottom.
15883
15884 The @code{smptebars} source generates a color bars pattern, based on
15885 the SMPTE Engineering Guideline EG 1-1990.
15886
15887 The @code{smptehdbars} source generates a color bars pattern, based on
15888 the SMPTE RP 219-2002.
15889
15890 The @code{testsrc} source generates a test video pattern, showing a
15891 color pattern, a scrolling gradient and a timestamp. This is mainly
15892 intended for testing purposes.
15893
15894 The @code{testsrc2} source is similar to testsrc, but supports more
15895 pixel formats instead of just @code{rgb24}. This allows using it as an
15896 input for other tests without requiring a format conversion.
15897
15898 The @code{yuvtestsrc} source generates an YUV test pattern. You should
15899 see a y, cb and cr stripe from top to bottom.
15900
15901 The sources accept the following parameters:
15902
15903 @table @option
15904
15905 @item color, c
15906 Specify the color of the source, only available in the @code{color}
15907 source. For the syntax of this option, check the "Color" section in the
15908 ffmpeg-utils manual.
15909
15910 @item level
15911 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
15912 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
15913 pixels to be used as identity matrix for 3D lookup tables. Each component is
15914 coded on a @code{1/(N*N)} scale.
15915
15916 @item size, s
15917 Specify the size of the sourced video. For the syntax of this option, check the
15918 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15919 The default value is @code{320x240}.
15920
15921 This option is not available with the @code{haldclutsrc} filter.
15922
15923 @item rate, r
15924 Specify the frame rate of the sourced video, as the number of frames
15925 generated per second. It has to be a string in the format
15926 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15927 number or a valid video frame rate abbreviation. The default value is
15928 "25".
15929
15930 @item sar
15931 Set the sample aspect ratio of the sourced video.
15932
15933 @item duration, d
15934 Set the duration of the sourced video. See
15935 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15936 for the accepted syntax.
15937
15938 If not specified, or the expressed duration is negative, the video is
15939 supposed to be generated forever.
15940
15941 @item decimals, n
15942 Set the number of decimals to show in the timestamp, only available in the
15943 @code{testsrc} source.
15944
15945 The displayed timestamp value will correspond to the original
15946 timestamp value multiplied by the power of 10 of the specified
15947 value. Default value is 0.
15948 @end table
15949
15950 For example the following:
15951 @example
15952 testsrc=duration=5.3:size=qcif:rate=10
15953 @end example
15954
15955 will generate a video with a duration of 5.3 seconds, with size
15956 176x144 and a frame rate of 10 frames per second.
15957
15958 The following graph description will generate a red source
15959 with an opacity of 0.2, with size "qcif" and a frame rate of 10
15960 frames per second.
15961 @example
15962 color=c=red@@0.2:s=qcif:r=10
15963 @end example
15964
15965 If the input content is to be ignored, @code{nullsrc} can be used. The
15966 following command generates noise in the luminance plane by employing
15967 the @code{geq} filter:
15968 @example
15969 nullsrc=s=256x256, geq=random(1)*255:128:128
15970 @end example
15971
15972 @subsection Commands
15973
15974 The @code{color} source supports the following commands:
15975
15976 @table @option
15977 @item c, color
15978 Set the color of the created image. Accepts the same syntax of the
15979 corresponding @option{color} option.
15980 @end table
15981
15982 @c man end VIDEO SOURCES
15983
15984 @chapter Video Sinks
15985 @c man begin VIDEO SINKS
15986
15987 Below is a description of the currently available video sinks.
15988
15989 @section buffersink
15990
15991 Buffer video frames, and make them available to the end of the filter
15992 graph.
15993
15994 This sink is mainly intended for programmatic use, in particular
15995 through the interface defined in @file{libavfilter/buffersink.h}
15996 or the options system.
15997
15998 It accepts a pointer to an AVBufferSinkContext structure, which
15999 defines the incoming buffers' formats, to be passed as the opaque
16000 parameter to @code{avfilter_init_filter} for initialization.
16001
16002 @section nullsink
16003
16004 Null video sink: do absolutely nothing with the input video. It is
16005 mainly useful as a template and for use in analysis / debugging
16006 tools.
16007
16008 @c man end VIDEO SINKS
16009
16010 @chapter Multimedia Filters
16011 @c man begin MULTIMEDIA FILTERS
16012
16013 Below is a description of the currently available multimedia filters.
16014
16015 @section abitscope
16016
16017 Convert input audio to a video output, displaying the audio bit scope.
16018
16019 The filter accepts the following options:
16020
16021 @table @option
16022 @item rate, r
16023 Set frame rate, expressed as number of frames per second. Default
16024 value is "25".
16025
16026 @item size, s
16027 Specify the video size for the output. For the syntax of this option, check the
16028 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16029 Default value is @code{1024x256}.
16030
16031 @item colors
16032 Specify list of colors separated by space or by '|' which will be used to
16033 draw channels. Unrecognized or missing colors will be replaced
16034 by white color.
16035 @end table
16036
16037 @section ahistogram
16038
16039 Convert input audio to a video output, displaying the volume histogram.
16040
16041 The filter accepts the following options:
16042
16043 @table @option
16044 @item dmode
16045 Specify how histogram is calculated.
16046
16047 It accepts the following values:
16048 @table @samp
16049 @item single
16050 Use single histogram for all channels.
16051 @item separate
16052 Use separate histogram for each channel.
16053 @end table
16054 Default is @code{single}.
16055
16056 @item rate, r
16057 Set frame rate, expressed as number of frames per second. Default
16058 value is "25".
16059
16060 @item size, s
16061 Specify the video size for the output. For the syntax of this option, check the
16062 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16063 Default value is @code{hd720}.
16064
16065 @item scale
16066 Set display scale.
16067
16068 It accepts the following values:
16069 @table @samp
16070 @item log
16071 logarithmic
16072 @item sqrt
16073 square root
16074 @item cbrt
16075 cubic root
16076 @item lin
16077 linear
16078 @item rlog
16079 reverse logarithmic
16080 @end table
16081 Default is @code{log}.
16082
16083 @item ascale
16084 Set amplitude scale.
16085
16086 It accepts the following values:
16087 @table @samp
16088 @item log
16089 logarithmic
16090 @item lin
16091 linear
16092 @end table
16093 Default is @code{log}.
16094
16095 @item acount
16096 Set how much frames to accumulate in histogram.
16097 Defauls is 1. Setting this to -1 accumulates all frames.
16098
16099 @item rheight
16100 Set histogram ratio of window height.
16101
16102 @item slide
16103 Set sonogram sliding.
16104
16105 It accepts the following values:
16106 @table @samp
16107 @item replace
16108 replace old rows with new ones.
16109 @item scroll
16110 scroll from top to bottom.
16111 @end table
16112 Default is @code{replace}.
16113 @end table
16114
16115 @section aphasemeter
16116
16117 Convert input audio to a video output, displaying the audio phase.
16118
16119 The filter accepts the following options:
16120
16121 @table @option
16122 @item rate, r
16123 Set the output frame rate. Default value is @code{25}.
16124
16125 @item size, s
16126 Set the video size for the output. For the syntax of this option, check the
16127 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16128 Default value is @code{800x400}.
16129
16130 @item rc
16131 @item gc
16132 @item bc
16133 Specify the red, green, blue contrast. Default values are @code{2},
16134 @code{7} and @code{1}.
16135 Allowed range is @code{[0, 255]}.
16136
16137 @item mpc
16138 Set color which will be used for drawing median phase. If color is
16139 @code{none} which is default, no median phase value will be drawn.
16140
16141 @item video
16142 Enable video output. Default is enabled.
16143 @end table
16144
16145 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
16146 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
16147 The @code{-1} means left and right channels are completely out of phase and
16148 @code{1} means channels are in phase.
16149
16150 @section avectorscope
16151
16152 Convert input audio to a video output, representing the audio vector
16153 scope.
16154
16155 The filter is used to measure the difference between channels of stereo
16156 audio stream. A monoaural signal, consisting of identical left and right
16157 signal, results in straight vertical line. Any stereo separation is visible
16158 as a deviation from this line, creating a Lissajous figure.
16159 If the straight (or deviation from it) but horizontal line appears this
16160 indicates that the left and right channels are out of phase.
16161
16162 The filter accepts the following options:
16163
16164 @table @option
16165 @item mode, m
16166 Set the vectorscope mode.
16167
16168 Available values are:
16169 @table @samp
16170 @item lissajous
16171 Lissajous rotated by 45 degrees.
16172
16173 @item lissajous_xy
16174 Same as above but not rotated.
16175
16176 @item polar
16177 Shape resembling half of circle.
16178 @end table
16179
16180 Default value is @samp{lissajous}.
16181
16182 @item size, s
16183 Set the video size for the output. For the syntax of this option, check the
16184 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16185 Default value is @code{400x400}.
16186
16187 @item rate, r
16188 Set the output frame rate. Default value is @code{25}.
16189
16190 @item rc
16191 @item gc
16192 @item bc
16193 @item ac
16194 Specify the red, green, blue and alpha contrast. Default values are @code{40},
16195 @code{160}, @code{80} and @code{255}.
16196 Allowed range is @code{[0, 255]}.
16197
16198 @item rf
16199 @item gf
16200 @item bf
16201 @item af
16202 Specify the red, green, blue and alpha fade. Default values are @code{15},
16203 @code{10}, @code{5} and @code{5}.
16204 Allowed range is @code{[0, 255]}.
16205
16206 @item zoom
16207 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
16208
16209 @item draw
16210 Set the vectorscope drawing mode.
16211
16212 Available values are:
16213 @table @samp
16214 @item dot
16215 Draw dot for each sample.
16216
16217 @item line
16218 Draw line between previous and current sample.
16219 @end table
16220
16221 Default value is @samp{dot}.
16222
16223 @item scale
16224 Specify amplitude scale of audio samples.
16225
16226 Available values are:
16227 @table @samp
16228 @item lin
16229 Linear.
16230
16231 @item sqrt
16232 Square root.
16233
16234 @item cbrt
16235 Cubic root.
16236
16237 @item log
16238 Logarithmic.
16239 @end table
16240
16241 @end table
16242
16243 @subsection Examples
16244
16245 @itemize
16246 @item
16247 Complete example using @command{ffplay}:
16248 @example
16249 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16250              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
16251 @end example
16252 @end itemize
16253
16254 @section bench, abench
16255
16256 Benchmark part of a filtergraph.
16257
16258 The filter accepts the following options:
16259
16260 @table @option
16261 @item action
16262 Start or stop a timer.
16263
16264 Available values are:
16265 @table @samp
16266 @item start
16267 Get the current time, set it as frame metadata (using the key
16268 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
16269
16270 @item stop
16271 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
16272 the input frame metadata to get the time difference. Time difference, average,
16273 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
16274 @code{min}) are then printed. The timestamps are expressed in seconds.
16275 @end table
16276 @end table
16277
16278 @subsection Examples
16279
16280 @itemize
16281 @item
16282 Benchmark @ref{selectivecolor} filter:
16283 @example
16284 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
16285 @end example
16286 @end itemize
16287
16288 @section concat
16289
16290 Concatenate audio and video streams, joining them together one after the
16291 other.
16292
16293 The filter works on segments of synchronized video and audio streams. All
16294 segments must have the same number of streams of each type, and that will
16295 also be the number of streams at output.
16296
16297 The filter accepts the following options:
16298
16299 @table @option
16300
16301 @item n
16302 Set the number of segments. Default is 2.
16303
16304 @item v
16305 Set the number of output video streams, that is also the number of video
16306 streams in each segment. Default is 1.
16307
16308 @item a
16309 Set the number of output audio streams, that is also the number of audio
16310 streams in each segment. Default is 0.
16311
16312 @item unsafe
16313 Activate unsafe mode: do not fail if segments have a different format.
16314
16315 @end table
16316
16317 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
16318 @var{a} audio outputs.
16319
16320 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
16321 segment, in the same order as the outputs, then the inputs for the second
16322 segment, etc.
16323
16324 Related streams do not always have exactly the same duration, for various
16325 reasons including codec frame size or sloppy authoring. For that reason,
16326 related synchronized streams (e.g. a video and its audio track) should be
16327 concatenated at once. The concat filter will use the duration of the longest
16328 stream in each segment (except the last one), and if necessary pad shorter
16329 audio streams with silence.
16330
16331 For this filter to work correctly, all segments must start at timestamp 0.
16332
16333 All corresponding streams must have the same parameters in all segments; the
16334 filtering system will automatically select a common pixel format for video
16335 streams, and a common sample format, sample rate and channel layout for
16336 audio streams, but other settings, such as resolution, must be converted
16337 explicitly by the user.
16338
16339 Different frame rates are acceptable but will result in variable frame rate
16340 at output; be sure to configure the output file to handle it.
16341
16342 @subsection Examples
16343
16344 @itemize
16345 @item
16346 Concatenate an opening, an episode and an ending, all in bilingual version
16347 (video in stream 0, audio in streams 1 and 2):
16348 @example
16349 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
16350   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
16351    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
16352   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
16353 @end example
16354
16355 @item
16356 Concatenate two parts, handling audio and video separately, using the
16357 (a)movie sources, and adjusting the resolution:
16358 @example
16359 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
16360 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
16361 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
16362 @end example
16363 Note that a desync will happen at the stitch if the audio and video streams
16364 do not have exactly the same duration in the first file.
16365
16366 @end itemize
16367
16368 @section drawgraph, adrawgraph
16369
16370 Draw a graph using input video or audio metadata.
16371
16372 It accepts the following parameters:
16373
16374 @table @option
16375 @item m1
16376 Set 1st frame metadata key from which metadata values will be used to draw a graph.
16377
16378 @item fg1
16379 Set 1st foreground color expression.
16380
16381 @item m2
16382 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
16383
16384 @item fg2
16385 Set 2nd foreground color expression.
16386
16387 @item m3
16388 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
16389
16390 @item fg3
16391 Set 3rd foreground color expression.
16392
16393 @item m4
16394 Set 4th frame metadata key from which metadata values will be used to draw a graph.
16395
16396 @item fg4
16397 Set 4th foreground color expression.
16398
16399 @item min
16400 Set minimal value of metadata value.
16401
16402 @item max
16403 Set maximal value of metadata value.
16404
16405 @item bg
16406 Set graph background color. Default is white.
16407
16408 @item mode
16409 Set graph mode.
16410
16411 Available values for mode is:
16412 @table @samp
16413 @item bar
16414 @item dot
16415 @item line
16416 @end table
16417
16418 Default is @code{line}.
16419
16420 @item slide
16421 Set slide mode.
16422
16423 Available values for slide is:
16424 @table @samp
16425 @item frame
16426 Draw new frame when right border is reached.
16427
16428 @item replace
16429 Replace old columns with new ones.
16430
16431 @item scroll
16432 Scroll from right to left.
16433
16434 @item rscroll
16435 Scroll from left to right.
16436
16437 @item picture
16438 Draw single picture.
16439 @end table
16440
16441 Default is @code{frame}.
16442
16443 @item size
16444 Set size of graph video. For the syntax of this option, check the
16445 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16446 The default value is @code{900x256}.
16447
16448 The foreground color expressions can use the following variables:
16449 @table @option
16450 @item MIN
16451 Minimal value of metadata value.
16452
16453 @item MAX
16454 Maximal value of metadata value.
16455
16456 @item VAL
16457 Current metadata key value.
16458 @end table
16459
16460 The color is defined as 0xAABBGGRR.
16461 @end table
16462
16463 Example using metadata from @ref{signalstats} filter:
16464 @example
16465 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
16466 @end example
16467
16468 Example using metadata from @ref{ebur128} filter:
16469 @example
16470 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
16471 @end example
16472
16473 @anchor{ebur128}
16474 @section ebur128
16475
16476 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
16477 it unchanged. By default, it logs a message at a frequency of 10Hz with the
16478 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
16479 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
16480
16481 The filter also has a video output (see the @var{video} option) with a real
16482 time graph to observe the loudness evolution. The graphic contains the logged
16483 message mentioned above, so it is not printed anymore when this option is set,
16484 unless the verbose logging is set. The main graphing area contains the
16485 short-term loudness (3 seconds of analysis), and the gauge on the right is for
16486 the momentary loudness (400 milliseconds).
16487
16488 More information about the Loudness Recommendation EBU R128 on
16489 @url{http://tech.ebu.ch/loudness}.
16490
16491 The filter accepts the following options:
16492
16493 @table @option
16494
16495 @item video
16496 Activate the video output. The audio stream is passed unchanged whether this
16497 option is set or no. The video stream will be the first output stream if
16498 activated. Default is @code{0}.
16499
16500 @item size
16501 Set the video size. This option is for video only. For the syntax of this
16502 option, check the
16503 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16504 Default and minimum resolution is @code{640x480}.
16505
16506 @item meter
16507 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
16508 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
16509 other integer value between this range is allowed.
16510
16511 @item metadata
16512 Set metadata injection. If set to @code{1}, the audio input will be segmented
16513 into 100ms output frames, each of them containing various loudness information
16514 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
16515
16516 Default is @code{0}.
16517
16518 @item framelog
16519 Force the frame logging level.
16520
16521 Available values are:
16522 @table @samp
16523 @item info
16524 information logging level
16525 @item verbose
16526 verbose logging level
16527 @end table
16528
16529 By default, the logging level is set to @var{info}. If the @option{video} or
16530 the @option{metadata} options are set, it switches to @var{verbose}.
16531
16532 @item peak
16533 Set peak mode(s).
16534
16535 Available modes can be cumulated (the option is a @code{flag} type). Possible
16536 values are:
16537 @table @samp
16538 @item none
16539 Disable any peak mode (default).
16540 @item sample
16541 Enable sample-peak mode.
16542
16543 Simple peak mode looking for the higher sample value. It logs a message
16544 for sample-peak (identified by @code{SPK}).
16545 @item true
16546 Enable true-peak mode.
16547
16548 If enabled, the peak lookup is done on an over-sampled version of the input
16549 stream for better peak accuracy. It logs a message for true-peak.
16550 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
16551 This mode requires a build with @code{libswresample}.
16552 @end table
16553
16554 @item dualmono
16555 Treat mono input files as "dual mono". If a mono file is intended for playback
16556 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
16557 If set to @code{true}, this option will compensate for this effect.
16558 Multi-channel input files are not affected by this option.
16559
16560 @item panlaw
16561 Set a specific pan law to be used for the measurement of dual mono files.
16562 This parameter is optional, and has a default value of -3.01dB.
16563 @end table
16564
16565 @subsection Examples
16566
16567 @itemize
16568 @item
16569 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
16570 @example
16571 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
16572 @end example
16573
16574 @item
16575 Run an analysis with @command{ffmpeg}:
16576 @example
16577 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
16578 @end example
16579 @end itemize
16580
16581 @section interleave, ainterleave
16582
16583 Temporally interleave frames from several inputs.
16584
16585 @code{interleave} works with video inputs, @code{ainterleave} with audio.
16586
16587 These filters read frames from several inputs and send the oldest
16588 queued frame to the output.
16589
16590 Input streams must have well defined, monotonically increasing frame
16591 timestamp values.
16592
16593 In order to submit one frame to output, these filters need to enqueue
16594 at least one frame for each input, so they cannot work in case one
16595 input is not yet terminated and will not receive incoming frames.
16596
16597 For example consider the case when one input is a @code{select} filter
16598 which always drops input frames. The @code{interleave} filter will keep
16599 reading from that input, but it will never be able to send new frames
16600 to output until the input sends an end-of-stream signal.
16601
16602 Also, depending on inputs synchronization, the filters will drop
16603 frames in case one input receives more frames than the other ones, and
16604 the queue is already filled.
16605
16606 These filters accept the following options:
16607
16608 @table @option
16609 @item nb_inputs, n
16610 Set the number of different inputs, it is 2 by default.
16611 @end table
16612
16613 @subsection Examples
16614
16615 @itemize
16616 @item
16617 Interleave frames belonging to different streams using @command{ffmpeg}:
16618 @example
16619 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
16620 @end example
16621
16622 @item
16623 Add flickering blur effect:
16624 @example
16625 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
16626 @end example
16627 @end itemize
16628
16629 @section metadata, ametadata
16630
16631 Manipulate frame metadata.
16632
16633 This filter accepts the following options:
16634
16635 @table @option
16636 @item mode
16637 Set mode of operation of the filter.
16638
16639 Can be one of the following:
16640
16641 @table @samp
16642 @item select
16643 If both @code{value} and @code{key} is set, select frames
16644 which have such metadata. If only @code{key} is set, select
16645 every frame that has such key in metadata.
16646
16647 @item add
16648 Add new metadata @code{key} and @code{value}. If key is already available
16649 do nothing.
16650
16651 @item modify
16652 Modify value of already present key.
16653
16654 @item delete
16655 If @code{value} is set, delete only keys that have such value.
16656 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
16657 the frame.
16658
16659 @item print
16660 Print key and its value if metadata was found. If @code{key} is not set print all
16661 metadata values available in frame.
16662 @end table
16663
16664 @item key
16665 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
16666
16667 @item value
16668 Set metadata value which will be used. This option is mandatory for
16669 @code{modify} and @code{add} mode.
16670
16671 @item function
16672 Which function to use when comparing metadata value and @code{value}.
16673
16674 Can be one of following:
16675
16676 @table @samp
16677 @item same_str
16678 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
16679
16680 @item starts_with
16681 Values are interpreted as strings, returns true if metadata value starts with
16682 the @code{value} option string.
16683
16684 @item less
16685 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
16686
16687 @item equal
16688 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
16689
16690 @item greater
16691 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
16692
16693 @item expr
16694 Values are interpreted as floats, returns true if expression from option @code{expr}
16695 evaluates to true.
16696 @end table
16697
16698 @item expr
16699 Set expression which is used when @code{function} is set to @code{expr}.
16700 The expression is evaluated through the eval API and can contain the following
16701 constants:
16702
16703 @table @option
16704 @item VALUE1
16705 Float representation of @code{value} from metadata key.
16706
16707 @item VALUE2
16708 Float representation of @code{value} as supplied by user in @code{value} option.
16709 @end table
16710
16711 @item file
16712 If specified in @code{print} mode, output is written to the named file. Instead of
16713 plain filename any writable url can be specified. Filename ``-'' is a shorthand
16714 for standard output. If @code{file} option is not set, output is written to the log
16715 with AV_LOG_INFO loglevel.
16716
16717 @end table
16718
16719 @subsection Examples
16720
16721 @itemize
16722 @item
16723 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
16724 between 0 and 1.
16725 @example
16726 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
16727 @end example
16728 @item
16729 Print silencedetect output to file @file{metadata.txt}.
16730 @example
16731 silencedetect,ametadata=mode=print:file=metadata.txt
16732 @end example
16733 @item
16734 Direct all metadata to a pipe with file descriptor 4.
16735 @example
16736 metadata=mode=print:file='pipe\:4'
16737 @end example
16738 @end itemize
16739
16740 @section perms, aperms
16741
16742 Set read/write permissions for the output frames.
16743
16744 These filters are mainly aimed at developers to test direct path in the
16745 following filter in the filtergraph.
16746
16747 The filters accept the following options:
16748
16749 @table @option
16750 @item mode
16751 Select the permissions mode.
16752
16753 It accepts the following values:
16754 @table @samp
16755 @item none
16756 Do nothing. This is the default.
16757 @item ro
16758 Set all the output frames read-only.
16759 @item rw
16760 Set all the output frames directly writable.
16761 @item toggle
16762 Make the frame read-only if writable, and writable if read-only.
16763 @item random
16764 Set each output frame read-only or writable randomly.
16765 @end table
16766
16767 @item seed
16768 Set the seed for the @var{random} mode, must be an integer included between
16769 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16770 @code{-1}, the filter will try to use a good random seed on a best effort
16771 basis.
16772 @end table
16773
16774 Note: in case of auto-inserted filter between the permission filter and the
16775 following one, the permission might not be received as expected in that
16776 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
16777 perms/aperms filter can avoid this problem.
16778
16779 @section realtime, arealtime
16780
16781 Slow down filtering to match real time approximatively.
16782
16783 These filters will pause the filtering for a variable amount of time to
16784 match the output rate with the input timestamps.
16785 They are similar to the @option{re} option to @code{ffmpeg}.
16786
16787 They accept the following options:
16788
16789 @table @option
16790 @item limit
16791 Time limit for the pauses. Any pause longer than that will be considered
16792 a timestamp discontinuity and reset the timer. Default is 2 seconds.
16793 @end table
16794
16795 @anchor{select}
16796 @section select, aselect
16797
16798 Select frames to pass in output.
16799
16800 This filter accepts the following options:
16801
16802 @table @option
16803
16804 @item expr, e
16805 Set expression, which is evaluated for each input frame.
16806
16807 If the expression is evaluated to zero, the frame is discarded.
16808
16809 If the evaluation result is negative or NaN, the frame is sent to the
16810 first output; otherwise it is sent to the output with index
16811 @code{ceil(val)-1}, assuming that the input index starts from 0.
16812
16813 For example a value of @code{1.2} corresponds to the output with index
16814 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
16815
16816 @item outputs, n
16817 Set the number of outputs. The output to which to send the selected
16818 frame is based on the result of the evaluation. Default value is 1.
16819 @end table
16820
16821 The expression can contain the following constants:
16822
16823 @table @option
16824 @item n
16825 The (sequential) number of the filtered frame, starting from 0.
16826
16827 @item selected_n
16828 The (sequential) number of the selected frame, starting from 0.
16829
16830 @item prev_selected_n
16831 The sequential number of the last selected frame. It's NAN if undefined.
16832
16833 @item TB
16834 The timebase of the input timestamps.
16835
16836 @item pts
16837 The PTS (Presentation TimeStamp) of the filtered video frame,
16838 expressed in @var{TB} units. It's NAN if undefined.
16839
16840 @item t
16841 The PTS of the filtered video frame,
16842 expressed in seconds. It's NAN if undefined.
16843
16844 @item prev_pts
16845 The PTS of the previously filtered video frame. It's NAN if undefined.
16846
16847 @item prev_selected_pts
16848 The PTS of the last previously filtered video frame. It's NAN if undefined.
16849
16850 @item prev_selected_t
16851 The PTS of the last previously selected video frame. It's NAN if undefined.
16852
16853 @item start_pts
16854 The PTS of the first video frame in the video. It's NAN if undefined.
16855
16856 @item start_t
16857 The time of the first video frame in the video. It's NAN if undefined.
16858
16859 @item pict_type @emph{(video only)}
16860 The type of the filtered frame. It can assume one of the following
16861 values:
16862 @table @option
16863 @item I
16864 @item P
16865 @item B
16866 @item S
16867 @item SI
16868 @item SP
16869 @item BI
16870 @end table
16871
16872 @item interlace_type @emph{(video only)}
16873 The frame interlace type. It can assume one of the following values:
16874 @table @option
16875 @item PROGRESSIVE
16876 The frame is progressive (not interlaced).
16877 @item TOPFIRST
16878 The frame is top-field-first.
16879 @item BOTTOMFIRST
16880 The frame is bottom-field-first.
16881 @end table
16882
16883 @item consumed_sample_n @emph{(audio only)}
16884 the number of selected samples before the current frame
16885
16886 @item samples_n @emph{(audio only)}
16887 the number of samples in the current frame
16888
16889 @item sample_rate @emph{(audio only)}
16890 the input sample rate
16891
16892 @item key
16893 This is 1 if the filtered frame is a key-frame, 0 otherwise.
16894
16895 @item pos
16896 the position in the file of the filtered frame, -1 if the information
16897 is not available (e.g. for synthetic video)
16898
16899 @item scene @emph{(video only)}
16900 value between 0 and 1 to indicate a new scene; a low value reflects a low
16901 probability for the current frame to introduce a new scene, while a higher
16902 value means the current frame is more likely to be one (see the example below)
16903
16904 @item concatdec_select
16905 The concat demuxer can select only part of a concat input file by setting an
16906 inpoint and an outpoint, but the output packets may not be entirely contained
16907 in the selected interval. By using this variable, it is possible to skip frames
16908 generated by the concat demuxer which are not exactly contained in the selected
16909 interval.
16910
16911 This works by comparing the frame pts against the @var{lavf.concat.start_time}
16912 and the @var{lavf.concat.duration} packet metadata values which are also
16913 present in the decoded frames.
16914
16915 The @var{concatdec_select} variable is -1 if the frame pts is at least
16916 start_time and either the duration metadata is missing or the frame pts is less
16917 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
16918 missing.
16919
16920 That basically means that an input frame is selected if its pts is within the
16921 interval set by the concat demuxer.
16922
16923 @end table
16924
16925 The default value of the select expression is "1".
16926
16927 @subsection Examples
16928
16929 @itemize
16930 @item
16931 Select all frames in input:
16932 @example
16933 select
16934 @end example
16935
16936 The example above is the same as:
16937 @example
16938 select=1
16939 @end example
16940
16941 @item
16942 Skip all frames:
16943 @example
16944 select=0
16945 @end example
16946
16947 @item
16948 Select only I-frames:
16949 @example
16950 select='eq(pict_type\,I)'
16951 @end example
16952
16953 @item
16954 Select one frame every 100:
16955 @example
16956 select='not(mod(n\,100))'
16957 @end example
16958
16959 @item
16960 Select only frames contained in the 10-20 time interval:
16961 @example
16962 select=between(t\,10\,20)
16963 @end example
16964
16965 @item
16966 Select only I-frames contained in the 10-20 time interval:
16967 @example
16968 select=between(t\,10\,20)*eq(pict_type\,I)
16969 @end example
16970
16971 @item
16972 Select frames with a minimum distance of 10 seconds:
16973 @example
16974 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
16975 @end example
16976
16977 @item
16978 Use aselect to select only audio frames with samples number > 100:
16979 @example
16980 aselect='gt(samples_n\,100)'
16981 @end example
16982
16983 @item
16984 Create a mosaic of the first scenes:
16985 @example
16986 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
16987 @end example
16988
16989 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
16990 choice.
16991
16992 @item
16993 Send even and odd frames to separate outputs, and compose them:
16994 @example
16995 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
16996 @end example
16997
16998 @item
16999 Select useful frames from an ffconcat file which is using inpoints and
17000 outpoints but where the source files are not intra frame only.
17001 @example
17002 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
17003 @end example
17004 @end itemize
17005
17006 @section sendcmd, asendcmd
17007
17008 Send commands to filters in the filtergraph.
17009
17010 These filters read commands to be sent to other filters in the
17011 filtergraph.
17012
17013 @code{sendcmd} must be inserted between two video filters,
17014 @code{asendcmd} must be inserted between two audio filters, but apart
17015 from that they act the same way.
17016
17017 The specification of commands can be provided in the filter arguments
17018 with the @var{commands} option, or in a file specified by the
17019 @var{filename} option.
17020
17021 These filters accept the following options:
17022 @table @option
17023 @item commands, c
17024 Set the commands to be read and sent to the other filters.
17025 @item filename, f
17026 Set the filename of the commands to be read and sent to the other
17027 filters.
17028 @end table
17029
17030 @subsection Commands syntax
17031
17032 A commands description consists of a sequence of interval
17033 specifications, comprising a list of commands to be executed when a
17034 particular event related to that interval occurs. The occurring event
17035 is typically the current frame time entering or leaving a given time
17036 interval.
17037
17038 An interval is specified by the following syntax:
17039 @example
17040 @var{START}[-@var{END}] @var{COMMANDS};
17041 @end example
17042
17043 The time interval is specified by the @var{START} and @var{END} times.
17044 @var{END} is optional and defaults to the maximum time.
17045
17046 The current frame time is considered within the specified interval if
17047 it is included in the interval [@var{START}, @var{END}), that is when
17048 the time is greater or equal to @var{START} and is lesser than
17049 @var{END}.
17050
17051 @var{COMMANDS} consists of a sequence of one or more command
17052 specifications, separated by ",", relating to that interval.  The
17053 syntax of a command specification is given by:
17054 @example
17055 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
17056 @end example
17057
17058 @var{FLAGS} is optional and specifies the type of events relating to
17059 the time interval which enable sending the specified command, and must
17060 be a non-null sequence of identifier flags separated by "+" or "|" and
17061 enclosed between "[" and "]".
17062
17063 The following flags are recognized:
17064 @table @option
17065 @item enter
17066 The command is sent when the current frame timestamp enters the
17067 specified interval. In other words, the command is sent when the
17068 previous frame timestamp was not in the given interval, and the
17069 current is.
17070
17071 @item leave
17072 The command is sent when the current frame timestamp leaves the
17073 specified interval. In other words, the command is sent when the
17074 previous frame timestamp was in the given interval, and the
17075 current is not.
17076 @end table
17077
17078 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
17079 assumed.
17080
17081 @var{TARGET} specifies the target of the command, usually the name of
17082 the filter class or a specific filter instance name.
17083
17084 @var{COMMAND} specifies the name of the command for the target filter.
17085
17086 @var{ARG} is optional and specifies the optional list of argument for
17087 the given @var{COMMAND}.
17088
17089 Between one interval specification and another, whitespaces, or
17090 sequences of characters starting with @code{#} until the end of line,
17091 are ignored and can be used to annotate comments.
17092
17093 A simplified BNF description of the commands specification syntax
17094 follows:
17095 @example
17096 @var{COMMAND_FLAG}  ::= "enter" | "leave"
17097 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
17098 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
17099 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
17100 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
17101 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
17102 @end example
17103
17104 @subsection Examples
17105
17106 @itemize
17107 @item
17108 Specify audio tempo change at second 4:
17109 @example
17110 asendcmd=c='4.0 atempo tempo 1.5',atempo
17111 @end example
17112
17113 @item
17114 Specify a list of drawtext and hue commands in a file.
17115 @example
17116 # show text in the interval 5-10
17117 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
17118          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
17119
17120 # desaturate the image in the interval 15-20
17121 15.0-20.0 [enter] hue s 0,
17122           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
17123           [leave] hue s 1,
17124           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
17125
17126 # apply an exponential saturation fade-out effect, starting from time 25
17127 25 [enter] hue s exp(25-t)
17128 @end example
17129
17130 A filtergraph allowing to read and process the above command list
17131 stored in a file @file{test.cmd}, can be specified with:
17132 @example
17133 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
17134 @end example
17135 @end itemize
17136
17137 @anchor{setpts}
17138 @section setpts, asetpts
17139
17140 Change the PTS (presentation timestamp) of the input frames.
17141
17142 @code{setpts} works on video frames, @code{asetpts} on audio frames.
17143
17144 This filter accepts the following options:
17145
17146 @table @option
17147
17148 @item expr
17149 The expression which is evaluated for each frame to construct its timestamp.
17150
17151 @end table
17152
17153 The expression is evaluated through the eval API and can contain the following
17154 constants:
17155
17156 @table @option
17157 @item FRAME_RATE
17158 frame rate, only defined for constant frame-rate video
17159
17160 @item PTS
17161 The presentation timestamp in input
17162
17163 @item N
17164 The count of the input frame for video or the number of consumed samples,
17165 not including the current frame for audio, starting from 0.
17166
17167 @item NB_CONSUMED_SAMPLES
17168 The number of consumed samples, not including the current frame (only
17169 audio)
17170
17171 @item NB_SAMPLES, S
17172 The number of samples in the current frame (only audio)
17173
17174 @item SAMPLE_RATE, SR
17175 The audio sample rate.
17176
17177 @item STARTPTS
17178 The PTS of the first frame.
17179
17180 @item STARTT
17181 the time in seconds of the first frame
17182
17183 @item INTERLACED
17184 State whether the current frame is interlaced.
17185
17186 @item T
17187 the time in seconds of the current frame
17188
17189 @item POS
17190 original position in the file of the frame, or undefined if undefined
17191 for the current frame
17192
17193 @item PREV_INPTS
17194 The previous input PTS.
17195
17196 @item PREV_INT
17197 previous input time in seconds
17198
17199 @item PREV_OUTPTS
17200 The previous output PTS.
17201
17202 @item PREV_OUTT
17203 previous output time in seconds
17204
17205 @item RTCTIME
17206 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
17207 instead.
17208
17209 @item RTCSTART
17210 The wallclock (RTC) time at the start of the movie in microseconds.
17211
17212 @item TB
17213 The timebase of the input timestamps.
17214
17215 @end table
17216
17217 @subsection Examples
17218
17219 @itemize
17220 @item
17221 Start counting PTS from zero
17222 @example
17223 setpts=PTS-STARTPTS
17224 @end example
17225
17226 @item
17227 Apply fast motion effect:
17228 @example
17229 setpts=0.5*PTS
17230 @end example
17231
17232 @item
17233 Apply slow motion effect:
17234 @example
17235 setpts=2.0*PTS
17236 @end example
17237
17238 @item
17239 Set fixed rate of 25 frames per second:
17240 @example
17241 setpts=N/(25*TB)
17242 @end example
17243
17244 @item
17245 Set fixed rate 25 fps with some jitter:
17246 @example
17247 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
17248 @end example
17249
17250 @item
17251 Apply an offset of 10 seconds to the input PTS:
17252 @example
17253 setpts=PTS+10/TB
17254 @end example
17255
17256 @item
17257 Generate timestamps from a "live source" and rebase onto the current timebase:
17258 @example
17259 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
17260 @end example
17261
17262 @item
17263 Generate timestamps by counting samples:
17264 @example
17265 asetpts=N/SR/TB
17266 @end example
17267
17268 @end itemize
17269
17270 @section settb, asettb
17271
17272 Set the timebase to use for the output frames timestamps.
17273 It is mainly useful for testing timebase configuration.
17274
17275 It accepts the following parameters:
17276
17277 @table @option
17278
17279 @item expr, tb
17280 The expression which is evaluated into the output timebase.
17281
17282 @end table
17283
17284 The value for @option{tb} is an arithmetic expression representing a
17285 rational. The expression can contain the constants "AVTB" (the default
17286 timebase), "intb" (the input timebase) and "sr" (the sample rate,
17287 audio only). Default value is "intb".
17288
17289 @subsection Examples
17290
17291 @itemize
17292 @item
17293 Set the timebase to 1/25:
17294 @example
17295 settb=expr=1/25
17296 @end example
17297
17298 @item
17299 Set the timebase to 1/10:
17300 @example
17301 settb=expr=0.1
17302 @end example
17303
17304 @item
17305 Set the timebase to 1001/1000:
17306 @example
17307 settb=1+0.001
17308 @end example
17309
17310 @item
17311 Set the timebase to 2*intb:
17312 @example
17313 settb=2*intb
17314 @end example
17315
17316 @item
17317 Set the default timebase value:
17318 @example
17319 settb=AVTB
17320 @end example
17321 @end itemize
17322
17323 @section showcqt
17324 Convert input audio to a video output representing frequency spectrum
17325 logarithmically using Brown-Puckette constant Q transform algorithm with
17326 direct frequency domain coefficient calculation (but the transform itself
17327 is not really constant Q, instead the Q factor is actually variable/clamped),
17328 with musical tone scale, from E0 to D#10.
17329
17330 The filter accepts the following options:
17331
17332 @table @option
17333 @item size, s
17334 Specify the video size for the output. It must be even. For the syntax of this option,
17335 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17336 Default value is @code{1920x1080}.
17337
17338 @item fps, rate, r
17339 Set the output frame rate. Default value is @code{25}.
17340
17341 @item bar_h
17342 Set the bargraph height. It must be even. Default value is @code{-1} which
17343 computes the bargraph height automatically.
17344
17345 @item axis_h
17346 Set the axis height. It must be even. Default value is @code{-1} which computes
17347 the axis height automatically.
17348
17349 @item sono_h
17350 Set the sonogram height. It must be even. Default value is @code{-1} which
17351 computes the sonogram height automatically.
17352
17353 @item fullhd
17354 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
17355 instead. Default value is @code{1}.
17356
17357 @item sono_v, volume
17358 Specify the sonogram volume expression. It can contain variables:
17359 @table @option
17360 @item bar_v
17361 the @var{bar_v} evaluated expression
17362 @item frequency, freq, f
17363 the frequency where it is evaluated
17364 @item timeclamp, tc
17365 the value of @var{timeclamp} option
17366 @end table
17367 and functions:
17368 @table @option
17369 @item a_weighting(f)
17370 A-weighting of equal loudness
17371 @item b_weighting(f)
17372 B-weighting of equal loudness
17373 @item c_weighting(f)
17374 C-weighting of equal loudness.
17375 @end table
17376 Default value is @code{16}.
17377
17378 @item bar_v, volume2
17379 Specify the bargraph volume expression. It can contain variables:
17380 @table @option
17381 @item sono_v
17382 the @var{sono_v} evaluated expression
17383 @item frequency, freq, f
17384 the frequency where it is evaluated
17385 @item timeclamp, tc
17386 the value of @var{timeclamp} option
17387 @end table
17388 and functions:
17389 @table @option
17390 @item a_weighting(f)
17391 A-weighting of equal loudness
17392 @item b_weighting(f)
17393 B-weighting of equal loudness
17394 @item c_weighting(f)
17395 C-weighting of equal loudness.
17396 @end table
17397 Default value is @code{sono_v}.
17398
17399 @item sono_g, gamma
17400 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
17401 higher gamma makes the spectrum having more range. Default value is @code{3}.
17402 Acceptable range is @code{[1, 7]}.
17403
17404 @item bar_g, gamma2
17405 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
17406 @code{[1, 7]}.
17407
17408 @item bar_t
17409 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
17410 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
17411
17412 @item timeclamp, tc
17413 Specify the transform timeclamp. At low frequency, there is trade-off between
17414 accuracy in time domain and frequency domain. If timeclamp is lower,
17415 event in time domain is represented more accurately (such as fast bass drum),
17416 otherwise event in frequency domain is represented more accurately
17417 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
17418
17419 @item attack
17420 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
17421 limits future samples by applying asymmetric windowing in time domain, useful
17422 when low latency is required. Accepted range is @code{[0, 1]}.
17423
17424 @item basefreq
17425 Specify the transform base frequency. Default value is @code{20.01523126408007475},
17426 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
17427
17428 @item endfreq
17429 Specify the transform end frequency. Default value is @code{20495.59681441799654},
17430 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
17431
17432 @item coeffclamp
17433 This option is deprecated and ignored.
17434
17435 @item tlength
17436 Specify the transform length in time domain. Use this option to control accuracy
17437 trade-off between time domain and frequency domain at every frequency sample.
17438 It can contain variables:
17439 @table @option
17440 @item frequency, freq, f
17441 the frequency where it is evaluated
17442 @item timeclamp, tc
17443 the value of @var{timeclamp} option.
17444 @end table
17445 Default value is @code{384*tc/(384+tc*f)}.
17446
17447 @item count
17448 Specify the transform count for every video frame. Default value is @code{6}.
17449 Acceptable range is @code{[1, 30]}.
17450
17451 @item fcount
17452 Specify the transform count for every single pixel. Default value is @code{0},
17453 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
17454
17455 @item fontfile
17456 Specify font file for use with freetype to draw the axis. If not specified,
17457 use embedded font. Note that drawing with font file or embedded font is not
17458 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
17459 option instead.
17460
17461 @item font
17462 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
17463 The : in the pattern may be replaced by | to avoid unnecessary escaping.
17464
17465 @item fontcolor
17466 Specify font color expression. This is arithmetic expression that should return
17467 integer value 0xRRGGBB. It can contain variables:
17468 @table @option
17469 @item frequency, freq, f
17470 the frequency where it is evaluated
17471 @item timeclamp, tc
17472 the value of @var{timeclamp} option
17473 @end table
17474 and functions:
17475 @table @option
17476 @item midi(f)
17477 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
17478 @item r(x), g(x), b(x)
17479 red, green, and blue value of intensity x.
17480 @end table
17481 Default value is @code{st(0, (midi(f)-59.5)/12);
17482 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
17483 r(1-ld(1)) + b(ld(1))}.
17484
17485 @item axisfile
17486 Specify image file to draw the axis. This option override @var{fontfile} and
17487 @var{fontcolor} option.
17488
17489 @item axis, text
17490 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
17491 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
17492 Default value is @code{1}.
17493
17494 @item csp
17495 Set colorspace. The accepted values are:
17496 @table @samp
17497 @item unspecified
17498 Unspecified (default)
17499
17500 @item bt709
17501 BT.709
17502
17503 @item fcc
17504 FCC
17505
17506 @item bt470bg
17507 BT.470BG or BT.601-6 625
17508
17509 @item smpte170m
17510 SMPTE-170M or BT.601-6 525
17511
17512 @item smpte240m
17513 SMPTE-240M
17514
17515 @item bt2020ncl
17516 BT.2020 with non-constant luminance
17517
17518 @end table
17519
17520 @item cscheme
17521 Set spectrogram color scheme. This is list of floating point values with format
17522 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
17523 The default is @code{1|0.5|0|0|0.5|1}.
17524
17525 @end table
17526
17527 @subsection Examples
17528
17529 @itemize
17530 @item
17531 Playing audio while showing the spectrum:
17532 @example
17533 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
17534 @end example
17535
17536 @item
17537 Same as above, but with frame rate 30 fps:
17538 @example
17539 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
17540 @end example
17541
17542 @item
17543 Playing at 1280x720:
17544 @example
17545 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
17546 @end example
17547
17548 @item
17549 Disable sonogram display:
17550 @example
17551 sono_h=0
17552 @end example
17553
17554 @item
17555 A1 and its harmonics: A1, A2, (near)E3, A3:
17556 @example
17557 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),
17558                  asplit[a][out1]; [a] showcqt [out0]'
17559 @end example
17560
17561 @item
17562 Same as above, but with more accuracy in frequency domain:
17563 @example
17564 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),
17565                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
17566 @end example
17567
17568 @item
17569 Custom volume:
17570 @example
17571 bar_v=10:sono_v=bar_v*a_weighting(f)
17572 @end example
17573
17574 @item
17575 Custom gamma, now spectrum is linear to the amplitude.
17576 @example
17577 bar_g=2:sono_g=2
17578 @end example
17579
17580 @item
17581 Custom tlength equation:
17582 @example
17583 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)))'
17584 @end example
17585
17586 @item
17587 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
17588 @example
17589 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
17590 @end example
17591
17592 @item
17593 Custom font using fontconfig:
17594 @example
17595 font='Courier New,Monospace,mono|bold'
17596 @end example
17597
17598 @item
17599 Custom frequency range with custom axis using image file:
17600 @example
17601 axisfile=myaxis.png:basefreq=40:endfreq=10000
17602 @end example
17603 @end itemize
17604
17605 @section showfreqs
17606
17607 Convert input audio to video output representing the audio power spectrum.
17608 Audio amplitude is on Y-axis while frequency is on X-axis.
17609
17610 The filter accepts the following options:
17611
17612 @table @option
17613 @item size, s
17614 Specify size of video. For the syntax of this option, check the
17615 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17616 Default is @code{1024x512}.
17617
17618 @item mode
17619 Set display mode.
17620 This set how each frequency bin will be represented.
17621
17622 It accepts the following values:
17623 @table @samp
17624 @item line
17625 @item bar
17626 @item dot
17627 @end table
17628 Default is @code{bar}.
17629
17630 @item ascale
17631 Set amplitude scale.
17632
17633 It accepts the following values:
17634 @table @samp
17635 @item lin
17636 Linear scale.
17637
17638 @item sqrt
17639 Square root scale.
17640
17641 @item cbrt
17642 Cubic root scale.
17643
17644 @item log
17645 Logarithmic scale.
17646 @end table
17647 Default is @code{log}.
17648
17649 @item fscale
17650 Set frequency scale.
17651
17652 It accepts the following values:
17653 @table @samp
17654 @item lin
17655 Linear scale.
17656
17657 @item log
17658 Logarithmic scale.
17659
17660 @item rlog
17661 Reverse logarithmic scale.
17662 @end table
17663 Default is @code{lin}.
17664
17665 @item win_size
17666 Set window size.
17667
17668 It accepts the following values:
17669 @table @samp
17670 @item w16
17671 @item w32
17672 @item w64
17673 @item w128
17674 @item w256
17675 @item w512
17676 @item w1024
17677 @item w2048
17678 @item w4096
17679 @item w8192
17680 @item w16384
17681 @item w32768
17682 @item w65536
17683 @end table
17684 Default is @code{w2048}
17685
17686 @item win_func
17687 Set windowing function.
17688
17689 It accepts the following values:
17690 @table @samp
17691 @item rect
17692 @item bartlett
17693 @item hanning
17694 @item hamming
17695 @item blackman
17696 @item welch
17697 @item flattop
17698 @item bharris
17699 @item bnuttall
17700 @item bhann
17701 @item sine
17702 @item nuttall
17703 @item lanczos
17704 @item gauss
17705 @item tukey
17706 @item dolph
17707 @item cauchy
17708 @item parzen
17709 @item poisson
17710 @end table
17711 Default is @code{hanning}.
17712
17713 @item overlap
17714 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17715 which means optimal overlap for selected window function will be picked.
17716
17717 @item averaging
17718 Set time averaging. Setting this to 0 will display current maximal peaks.
17719 Default is @code{1}, which means time averaging is disabled.
17720
17721 @item colors
17722 Specify list of colors separated by space or by '|' which will be used to
17723 draw channel frequencies. Unrecognized or missing colors will be replaced
17724 by white color.
17725
17726 @item cmode
17727 Set channel display mode.
17728
17729 It accepts the following values:
17730 @table @samp
17731 @item combined
17732 @item separate
17733 @end table
17734 Default is @code{combined}.
17735
17736 @item minamp
17737 Set minimum amplitude used in @code{log} amplitude scaler.
17738
17739 @end table
17740
17741 @anchor{showspectrum}
17742 @section showspectrum
17743
17744 Convert input audio to a video output, representing the audio frequency
17745 spectrum.
17746
17747 The filter accepts the following options:
17748
17749 @table @option
17750 @item size, s
17751 Specify the video size for the output. For the syntax of this option, check the
17752 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17753 Default value is @code{640x512}.
17754
17755 @item slide
17756 Specify how the spectrum should slide along the window.
17757
17758 It accepts the following values:
17759 @table @samp
17760 @item replace
17761 the samples start again on the left when they reach the right
17762 @item scroll
17763 the samples scroll from right to left
17764 @item fullframe
17765 frames are only produced when the samples reach the right
17766 @item rscroll
17767 the samples scroll from left to right
17768 @end table
17769
17770 Default value is @code{replace}.
17771
17772 @item mode
17773 Specify display mode.
17774
17775 It accepts the following values:
17776 @table @samp
17777 @item combined
17778 all channels are displayed in the same row
17779 @item separate
17780 all channels are displayed in separate rows
17781 @end table
17782
17783 Default value is @samp{combined}.
17784
17785 @item color
17786 Specify display color mode.
17787
17788 It accepts the following values:
17789 @table @samp
17790 @item channel
17791 each channel is displayed in a separate color
17792 @item intensity
17793 each channel is displayed using the same color scheme
17794 @item rainbow
17795 each channel is displayed using the rainbow color scheme
17796 @item moreland
17797 each channel is displayed using the moreland color scheme
17798 @item nebulae
17799 each channel is displayed using the nebulae color scheme
17800 @item fire
17801 each channel is displayed using the fire color scheme
17802 @item fiery
17803 each channel is displayed using the fiery color scheme
17804 @item fruit
17805 each channel is displayed using the fruit color scheme
17806 @item cool
17807 each channel is displayed using the cool color scheme
17808 @end table
17809
17810 Default value is @samp{channel}.
17811
17812 @item scale
17813 Specify scale used for calculating intensity color values.
17814
17815 It accepts the following values:
17816 @table @samp
17817 @item lin
17818 linear
17819 @item sqrt
17820 square root, default
17821 @item cbrt
17822 cubic root
17823 @item log
17824 logarithmic
17825 @item 4thrt
17826 4th root
17827 @item 5thrt
17828 5th root
17829 @end table
17830
17831 Default value is @samp{sqrt}.
17832
17833 @item saturation
17834 Set saturation modifier for displayed colors. Negative values provide
17835 alternative color scheme. @code{0} is no saturation at all.
17836 Saturation must be in [-10.0, 10.0] range.
17837 Default value is @code{1}.
17838
17839 @item win_func
17840 Set window function.
17841
17842 It accepts the following values:
17843 @table @samp
17844 @item rect
17845 @item bartlett
17846 @item hann
17847 @item hanning
17848 @item hamming
17849 @item blackman
17850 @item welch
17851 @item flattop
17852 @item bharris
17853 @item bnuttall
17854 @item bhann
17855 @item sine
17856 @item nuttall
17857 @item lanczos
17858 @item gauss
17859 @item tukey
17860 @item dolph
17861 @item cauchy
17862 @item parzen
17863 @item poisson
17864 @end table
17865
17866 Default value is @code{hann}.
17867
17868 @item orientation
17869 Set orientation of time vs frequency axis. Can be @code{vertical} or
17870 @code{horizontal}. Default is @code{vertical}.
17871
17872 @item overlap
17873 Set ratio of overlap window. Default value is @code{0}.
17874 When value is @code{1} overlap is set to recommended size for specific
17875 window function currently used.
17876
17877 @item gain
17878 Set scale gain for calculating intensity color values.
17879 Default value is @code{1}.
17880
17881 @item data
17882 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
17883
17884 @item rotation
17885 Set color rotation, must be in [-1.0, 1.0] range.
17886 Default value is @code{0}.
17887 @end table
17888
17889 The usage is very similar to the showwaves filter; see the examples in that
17890 section.
17891
17892 @subsection Examples
17893
17894 @itemize
17895 @item
17896 Large window with logarithmic color scaling:
17897 @example
17898 showspectrum=s=1280x480:scale=log
17899 @end example
17900
17901 @item
17902 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
17903 @example
17904 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17905              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
17906 @end example
17907 @end itemize
17908
17909 @section showspectrumpic
17910
17911 Convert input audio to a single video frame, representing the audio frequency
17912 spectrum.
17913
17914 The filter accepts the following options:
17915
17916 @table @option
17917 @item size, s
17918 Specify the video size for the output. For the syntax of this option, check the
17919 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17920 Default value is @code{4096x2048}.
17921
17922 @item mode
17923 Specify display mode.
17924
17925 It accepts the following values:
17926 @table @samp
17927 @item combined
17928 all channels are displayed in the same row
17929 @item separate
17930 all channels are displayed in separate rows
17931 @end table
17932 Default value is @samp{combined}.
17933
17934 @item color
17935 Specify display color mode.
17936
17937 It accepts the following values:
17938 @table @samp
17939 @item channel
17940 each channel is displayed in a separate color
17941 @item intensity
17942 each channel is displayed using the same color scheme
17943 @item rainbow
17944 each channel is displayed using the rainbow color scheme
17945 @item moreland
17946 each channel is displayed using the moreland color scheme
17947 @item nebulae
17948 each channel is displayed using the nebulae color scheme
17949 @item fire
17950 each channel is displayed using the fire color scheme
17951 @item fiery
17952 each channel is displayed using the fiery color scheme
17953 @item fruit
17954 each channel is displayed using the fruit color scheme
17955 @item cool
17956 each channel is displayed using the cool color scheme
17957 @end table
17958 Default value is @samp{intensity}.
17959
17960 @item scale
17961 Specify scale used for calculating intensity color values.
17962
17963 It accepts the following values:
17964 @table @samp
17965 @item lin
17966 linear
17967 @item sqrt
17968 square root, default
17969 @item cbrt
17970 cubic root
17971 @item log
17972 logarithmic
17973 @item 4thrt
17974 4th root
17975 @item 5thrt
17976 5th root
17977 @end table
17978 Default value is @samp{log}.
17979
17980 @item saturation
17981 Set saturation modifier for displayed colors. Negative values provide
17982 alternative color scheme. @code{0} is no saturation at all.
17983 Saturation must be in [-10.0, 10.0] range.
17984 Default value is @code{1}.
17985
17986 @item win_func
17987 Set window function.
17988
17989 It accepts the following values:
17990 @table @samp
17991 @item rect
17992 @item bartlett
17993 @item hann
17994 @item hanning
17995 @item hamming
17996 @item blackman
17997 @item welch
17998 @item flattop
17999 @item bharris
18000 @item bnuttall
18001 @item bhann
18002 @item sine
18003 @item nuttall
18004 @item lanczos
18005 @item gauss
18006 @item tukey
18007 @item dolph
18008 @item cauchy
18009 @item parzen
18010 @item poisson
18011 @end table
18012 Default value is @code{hann}.
18013
18014 @item orientation
18015 Set orientation of time vs frequency axis. Can be @code{vertical} or
18016 @code{horizontal}. Default is @code{vertical}.
18017
18018 @item gain
18019 Set scale gain for calculating intensity color values.
18020 Default value is @code{1}.
18021
18022 @item legend
18023 Draw time and frequency axes and legends. Default is enabled.
18024
18025 @item rotation
18026 Set color rotation, must be in [-1.0, 1.0] range.
18027 Default value is @code{0}.
18028 @end table
18029
18030 @subsection Examples
18031
18032 @itemize
18033 @item
18034 Extract an audio spectrogram of a whole audio track
18035 in a 1024x1024 picture using @command{ffmpeg}:
18036 @example
18037 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
18038 @end example
18039 @end itemize
18040
18041 @section showvolume
18042
18043 Convert input audio volume to a video output.
18044
18045 The filter accepts the following options:
18046
18047 @table @option
18048 @item rate, r
18049 Set video rate.
18050
18051 @item b
18052 Set border width, allowed range is [0, 5]. Default is 1.
18053
18054 @item w
18055 Set channel width, allowed range is [80, 8192]. Default is 400.
18056
18057 @item h
18058 Set channel height, allowed range is [1, 900]. Default is 20.
18059
18060 @item f
18061 Set fade, allowed range is [0.001, 1]. Default is 0.95.
18062
18063 @item c
18064 Set volume color expression.
18065
18066 The expression can use the following variables:
18067
18068 @table @option
18069 @item VOLUME
18070 Current max volume of channel in dB.
18071
18072 @item PEAK
18073 Current peak.
18074
18075 @item CHANNEL
18076 Current channel number, starting from 0.
18077 @end table
18078
18079 @item t
18080 If set, displays channel names. Default is enabled.
18081
18082 @item v
18083 If set, displays volume values. Default is enabled.
18084
18085 @item o
18086 Set orientation, can be @code{horizontal} or @code{vertical},
18087 default is @code{horizontal}.
18088
18089 @item s
18090 Set step size, allowed range s [0, 5]. Default is 0, which means
18091 step is disabled.
18092 @end table
18093
18094 @section showwaves
18095
18096 Convert input audio to a video output, representing the samples waves.
18097
18098 The filter accepts the following options:
18099
18100 @table @option
18101 @item size, s
18102 Specify the video size for the output. For the syntax of this option, check the
18103 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18104 Default value is @code{600x240}.
18105
18106 @item mode
18107 Set display mode.
18108
18109 Available values are:
18110 @table @samp
18111 @item point
18112 Draw a point for each sample.
18113
18114 @item line
18115 Draw a vertical line for each sample.
18116
18117 @item p2p
18118 Draw a point for each sample and a line between them.
18119
18120 @item cline
18121 Draw a centered vertical line for each sample.
18122 @end table
18123
18124 Default value is @code{point}.
18125
18126 @item n
18127 Set the number of samples which are printed on the same column. A
18128 larger value will decrease the frame rate. Must be a positive
18129 integer. This option can be set only if the value for @var{rate}
18130 is not explicitly specified.
18131
18132 @item rate, r
18133 Set the (approximate) output frame rate. This is done by setting the
18134 option @var{n}. Default value is "25".
18135
18136 @item split_channels
18137 Set if channels should be drawn separately or overlap. Default value is 0.
18138
18139 @item colors
18140 Set colors separated by '|' which are going to be used for drawing of each channel.
18141
18142 @item scale
18143 Set amplitude scale.
18144
18145 Available values are:
18146 @table @samp
18147 @item lin
18148 Linear.
18149
18150 @item log
18151 Logarithmic.
18152
18153 @item sqrt
18154 Square root.
18155
18156 @item cbrt
18157 Cubic root.
18158 @end table
18159
18160 Default is linear.
18161 @end table
18162
18163 @subsection Examples
18164
18165 @itemize
18166 @item
18167 Output the input file audio and the corresponding video representation
18168 at the same time:
18169 @example
18170 amovie=a.mp3,asplit[out0],showwaves[out1]
18171 @end example
18172
18173 @item
18174 Create a synthetic signal and show it with showwaves, forcing a
18175 frame rate of 30 frames per second:
18176 @example
18177 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
18178 @end example
18179 @end itemize
18180
18181 @section showwavespic
18182
18183 Convert input audio to a single video frame, representing the samples waves.
18184
18185 The filter accepts the following options:
18186
18187 @table @option
18188 @item size, s
18189 Specify the video size for the output. For the syntax of this option, check the
18190 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18191 Default value is @code{600x240}.
18192
18193 @item split_channels
18194 Set if channels should be drawn separately or overlap. Default value is 0.
18195
18196 @item colors
18197 Set colors separated by '|' which are going to be used for drawing of each channel.
18198
18199 @item scale
18200 Set amplitude scale.
18201
18202 Available values are:
18203 @table @samp
18204 @item lin
18205 Linear.
18206
18207 @item log
18208 Logarithmic.
18209
18210 @item sqrt
18211 Square root.
18212
18213 @item cbrt
18214 Cubic root.
18215 @end table
18216
18217 Default is linear.
18218 @end table
18219
18220 @subsection Examples
18221
18222 @itemize
18223 @item
18224 Extract a channel split representation of the wave form of a whole audio track
18225 in a 1024x800 picture using @command{ffmpeg}:
18226 @example
18227 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
18228 @end example
18229 @end itemize
18230
18231 @section sidedata, asidedata
18232
18233 Delete frame side data, or select frames based on it.
18234
18235 This filter accepts the following options:
18236
18237 @table @option
18238 @item mode
18239 Set mode of operation of the filter.
18240
18241 Can be one of the following:
18242
18243 @table @samp
18244 @item select
18245 Select every frame with side data of @code{type}.
18246
18247 @item delete
18248 Delete side data of @code{type}. If @code{type} is not set, delete all side
18249 data in the frame.
18250
18251 @end table
18252
18253 @item type
18254 Set side data type used with all modes. Must be set for @code{select} mode. For
18255 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
18256 in @file{libavutil/frame.h}. For example, to choose
18257 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
18258
18259 @end table
18260
18261 @section spectrumsynth
18262
18263 Sythesize audio from 2 input video spectrums, first input stream represents
18264 magnitude across time and second represents phase across time.
18265 The filter will transform from frequency domain as displayed in videos back
18266 to time domain as presented in audio output.
18267
18268 This filter is primarily created for reversing processed @ref{showspectrum}
18269 filter outputs, but can synthesize sound from other spectrograms too.
18270 But in such case results are going to be poor if the phase data is not
18271 available, because in such cases phase data need to be recreated, usually
18272 its just recreated from random noise.
18273 For best results use gray only output (@code{channel} color mode in
18274 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
18275 @code{lin} scale for phase video. To produce phase, for 2nd video, use
18276 @code{data} option. Inputs videos should generally use @code{fullframe}
18277 slide mode as that saves resources needed for decoding video.
18278
18279 The filter accepts the following options:
18280
18281 @table @option
18282 @item sample_rate
18283 Specify sample rate of output audio, the sample rate of audio from which
18284 spectrum was generated may differ.
18285
18286 @item channels
18287 Set number of channels represented in input video spectrums.
18288
18289 @item scale
18290 Set scale which was used when generating magnitude input spectrum.
18291 Can be @code{lin} or @code{log}. Default is @code{log}.
18292
18293 @item slide
18294 Set slide which was used when generating inputs spectrums.
18295 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
18296 Default is @code{fullframe}.
18297
18298 @item win_func
18299 Set window function used for resynthesis.
18300
18301 @item overlap
18302 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
18303 which means optimal overlap for selected window function will be picked.
18304
18305 @item orientation
18306 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
18307 Default is @code{vertical}.
18308 @end table
18309
18310 @subsection Examples
18311
18312 @itemize
18313 @item
18314 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
18315 then resynthesize videos back to audio with spectrumsynth:
18316 @example
18317 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
18318 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
18319 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
18320 @end example
18321 @end itemize
18322
18323 @section split, asplit
18324
18325 Split input into several identical outputs.
18326
18327 @code{asplit} works with audio input, @code{split} with video.
18328
18329 The filter accepts a single parameter which specifies the number of outputs. If
18330 unspecified, it defaults to 2.
18331
18332 @subsection Examples
18333
18334 @itemize
18335 @item
18336 Create two separate outputs from the same input:
18337 @example
18338 [in] split [out0][out1]
18339 @end example
18340
18341 @item
18342 To create 3 or more outputs, you need to specify the number of
18343 outputs, like in:
18344 @example
18345 [in] asplit=3 [out0][out1][out2]
18346 @end example
18347
18348 @item
18349 Create two separate outputs from the same input, one cropped and
18350 one padded:
18351 @example
18352 [in] split [splitout1][splitout2];
18353 [splitout1] crop=100:100:0:0    [cropout];
18354 [splitout2] pad=200:200:100:100 [padout];
18355 @end example
18356
18357 @item
18358 Create 5 copies of the input audio with @command{ffmpeg}:
18359 @example
18360 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
18361 @end example
18362 @end itemize
18363
18364 @section zmq, azmq
18365
18366 Receive commands sent through a libzmq client, and forward them to
18367 filters in the filtergraph.
18368
18369 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
18370 must be inserted between two video filters, @code{azmq} between two
18371 audio filters.
18372
18373 To enable these filters you need to install the libzmq library and
18374 headers and configure FFmpeg with @code{--enable-libzmq}.
18375
18376 For more information about libzmq see:
18377 @url{http://www.zeromq.org/}
18378
18379 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
18380 receives messages sent through a network interface defined by the
18381 @option{bind_address} option.
18382
18383 The received message must be in the form:
18384 @example
18385 @var{TARGET} @var{COMMAND} [@var{ARG}]
18386 @end example
18387
18388 @var{TARGET} specifies the target of the command, usually the name of
18389 the filter class or a specific filter instance name.
18390
18391 @var{COMMAND} specifies the name of the command for the target filter.
18392
18393 @var{ARG} is optional and specifies the optional argument list for the
18394 given @var{COMMAND}.
18395
18396 Upon reception, the message is processed and the corresponding command
18397 is injected into the filtergraph. Depending on the result, the filter
18398 will send a reply to the client, adopting the format:
18399 @example
18400 @var{ERROR_CODE} @var{ERROR_REASON}
18401 @var{MESSAGE}
18402 @end example
18403
18404 @var{MESSAGE} is optional.
18405
18406 @subsection Examples
18407
18408 Look at @file{tools/zmqsend} for an example of a zmq client which can
18409 be used to send commands processed by these filters.
18410
18411 Consider the following filtergraph generated by @command{ffplay}
18412 @example
18413 ffplay -dumpgraph 1 -f lavfi "
18414 color=s=100x100:c=red  [l];
18415 color=s=100x100:c=blue [r];
18416 nullsrc=s=200x100, zmq [bg];
18417 [bg][l]   overlay      [bg+l];
18418 [bg+l][r] overlay=x=100 "
18419 @end example
18420
18421 To change the color of the left side of the video, the following
18422 command can be used:
18423 @example
18424 echo Parsed_color_0 c yellow | tools/zmqsend
18425 @end example
18426
18427 To change the right side:
18428 @example
18429 echo Parsed_color_1 c pink | tools/zmqsend
18430 @end example
18431
18432 @c man end MULTIMEDIA FILTERS
18433
18434 @chapter Multimedia Sources
18435 @c man begin MULTIMEDIA SOURCES
18436
18437 Below is a description of the currently available multimedia sources.
18438
18439 @section amovie
18440
18441 This is the same as @ref{movie} source, except it selects an audio
18442 stream by default.
18443
18444 @anchor{movie}
18445 @section movie
18446
18447 Read audio and/or video stream(s) from a movie container.
18448
18449 It accepts the following parameters:
18450
18451 @table @option
18452 @item filename
18453 The name of the resource to read (not necessarily a file; it can also be a
18454 device or a stream accessed through some protocol).
18455
18456 @item format_name, f
18457 Specifies the format assumed for the movie to read, and can be either
18458 the name of a container or an input device. If not specified, the
18459 format is guessed from @var{movie_name} or by probing.
18460
18461 @item seek_point, sp
18462 Specifies the seek point in seconds. The frames will be output
18463 starting from this seek point. The parameter is evaluated with
18464 @code{av_strtod}, so the numerical value may be suffixed by an IS
18465 postfix. The default value is "0".
18466
18467 @item streams, s
18468 Specifies the streams to read. Several streams can be specified,
18469 separated by "+". The source will then have as many outputs, in the
18470 same order. The syntax is explained in the ``Stream specifiers''
18471 section in the ffmpeg manual. Two special names, "dv" and "da" specify
18472 respectively the default (best suited) video and audio stream. Default
18473 is "dv", or "da" if the filter is called as "amovie".
18474
18475 @item stream_index, si
18476 Specifies the index of the video stream to read. If the value is -1,
18477 the most suitable video stream will be automatically selected. The default
18478 value is "-1". Deprecated. If the filter is called "amovie", it will select
18479 audio instead of video.
18480
18481 @item loop
18482 Specifies how many times to read the stream in sequence.
18483 If the value is 0, the stream will be looped infinitely.
18484 Default value is "1".
18485
18486 Note that when the movie is looped the source timestamps are not
18487 changed, so it will generate non monotonically increasing timestamps.
18488
18489 @item discontinuity
18490 Specifies the time difference between frames above which the point is
18491 considered a timestamp discontinuity which is removed by adjusting the later
18492 timestamps.
18493 @end table
18494
18495 It allows overlaying a second video on top of the main input of
18496 a filtergraph, as shown in this graph:
18497 @example
18498 input -----------> deltapts0 --> overlay --> output
18499                                     ^
18500                                     |
18501 movie --> scale--> deltapts1 -------+
18502 @end example
18503 @subsection Examples
18504
18505 @itemize
18506 @item
18507 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
18508 on top of the input labelled "in":
18509 @example
18510 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
18511 [in] setpts=PTS-STARTPTS [main];
18512 [main][over] overlay=16:16 [out]
18513 @end example
18514
18515 @item
18516 Read from a video4linux2 device, and overlay it on top of the input
18517 labelled "in":
18518 @example
18519 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
18520 [in] setpts=PTS-STARTPTS [main];
18521 [main][over] overlay=16:16 [out]
18522 @end example
18523
18524 @item
18525 Read the first video stream and the audio stream with id 0x81 from
18526 dvd.vob; the video is connected to the pad named "video" and the audio is
18527 connected to the pad named "audio":
18528 @example
18529 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
18530 @end example
18531 @end itemize
18532
18533 @subsection Commands
18534
18535 Both movie and amovie support the following commands:
18536 @table @option
18537 @item seek
18538 Perform seek using "av_seek_frame".
18539 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
18540 @itemize
18541 @item
18542 @var{stream_index}: If stream_index is -1, a default
18543 stream is selected, and @var{timestamp} is automatically converted
18544 from AV_TIME_BASE units to the stream specific time_base.
18545 @item
18546 @var{timestamp}: Timestamp in AVStream.time_base units
18547 or, if no stream is specified, in AV_TIME_BASE units.
18548 @item
18549 @var{flags}: Flags which select direction and seeking mode.
18550 @end itemize
18551
18552 @item get_duration
18553 Get movie duration in AV_TIME_BASE units.
18554
18555 @end table
18556
18557 @c man end MULTIMEDIA SOURCES