]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit '46191a2da16f751e53d93646ae1388d421d12bee'
[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 Enable (default) or disable the vertical lowpass filter to avoid twitter
9162 interlacing and reduce moire patterns.
9163 @end table
9164
9165 @section kerndeint
9166
9167 Deinterlace input video by applying Donald Graft's adaptive kernel
9168 deinterling. Work on interlaced parts of a video to produce
9169 progressive frames.
9170
9171 The description of the accepted parameters follows.
9172
9173 @table @option
9174 @item thresh
9175 Set the threshold which affects the filter's tolerance when
9176 determining if a pixel line must be processed. It must be an integer
9177 in the range [0,255] and defaults to 10. A value of 0 will result in
9178 applying the process on every pixels.
9179
9180 @item map
9181 Paint pixels exceeding the threshold value to white if set to 1.
9182 Default is 0.
9183
9184 @item order
9185 Set the fields order. Swap fields if set to 1, leave fields alone if
9186 0. Default is 0.
9187
9188 @item sharp
9189 Enable additional sharpening if set to 1. Default is 0.
9190
9191 @item twoway
9192 Enable twoway sharpening if set to 1. Default is 0.
9193 @end table
9194
9195 @subsection Examples
9196
9197 @itemize
9198 @item
9199 Apply default values:
9200 @example
9201 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9202 @end example
9203
9204 @item
9205 Enable additional sharpening:
9206 @example
9207 kerndeint=sharp=1
9208 @end example
9209
9210 @item
9211 Paint processed pixels in white:
9212 @example
9213 kerndeint=map=1
9214 @end example
9215 @end itemize
9216
9217 @section lenscorrection
9218
9219 Correct radial lens distortion
9220
9221 This filter can be used to correct for radial distortion as can result from the use
9222 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9223 one can use tools available for example as part of opencv or simply trial-and-error.
9224 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9225 and extract the k1 and k2 coefficients from the resulting matrix.
9226
9227 Note that effectively the same filter is available in the open-source tools Krita and
9228 Digikam from the KDE project.
9229
9230 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9231 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9232 brightness distribution, so you may want to use both filters together in certain
9233 cases, though you will have to take care of ordering, i.e. whether vignetting should
9234 be applied before or after lens correction.
9235
9236 @subsection Options
9237
9238 The filter accepts the following options:
9239
9240 @table @option
9241 @item cx
9242 Relative x-coordinate of the focal point of the image, and thereby the center of the
9243 distortion. This value has a range [0,1] and is expressed as fractions of the image
9244 width.
9245 @item cy
9246 Relative y-coordinate of the focal point of the image, and thereby the center of the
9247 distortion. This value has a range [0,1] and is expressed as fractions of the image
9248 height.
9249 @item k1
9250 Coefficient of the quadratic correction term. 0.5 means no correction.
9251 @item k2
9252 Coefficient of the double quadratic correction term. 0.5 means no correction.
9253 @end table
9254
9255 The formula that generates the correction is:
9256
9257 @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)
9258
9259 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9260 distances from the focal point in the source and target images, respectively.
9261
9262 @section loop
9263
9264 Loop video frames.
9265
9266 The filter accepts the following options:
9267
9268 @table @option
9269 @item loop
9270 Set the number of loops.
9271
9272 @item size
9273 Set maximal size in number of frames.
9274
9275 @item start
9276 Set first frame of loop.
9277 @end table
9278
9279 @anchor{lut3d}
9280 @section lut3d
9281
9282 Apply a 3D LUT to an input video.
9283
9284 The filter accepts the following options:
9285
9286 @table @option
9287 @item file
9288 Set the 3D LUT file name.
9289
9290 Currently supported formats:
9291 @table @samp
9292 @item 3dl
9293 AfterEffects
9294 @item cube
9295 Iridas
9296 @item dat
9297 DaVinci
9298 @item m3d
9299 Pandora
9300 @end table
9301 @item interp
9302 Select interpolation mode.
9303
9304 Available values are:
9305
9306 @table @samp
9307 @item nearest
9308 Use values from the nearest defined point.
9309 @item trilinear
9310 Interpolate values using the 8 points defining a cube.
9311 @item tetrahedral
9312 Interpolate values using a tetrahedron.
9313 @end table
9314 @end table
9315
9316 @section lumakey
9317
9318 Turn certain luma values into transparency.
9319
9320 The filter accepts the following options:
9321
9322 @table @option
9323 @item threshold
9324 Set the luma which will be used as base for transparency.
9325 Default value is @code{0}.
9326
9327 @item tolerance
9328 Set the range of luma values to be keyed out.
9329 Default value is @code{0}.
9330
9331 @item softness
9332 Set the range of softness. Default value is @code{0}.
9333 Use this to control gradual transition from zero to full transparency.
9334 @end table
9335
9336 @section lut, lutrgb, lutyuv
9337
9338 Compute a look-up table for binding each pixel component input value
9339 to an output value, and apply it to the input video.
9340
9341 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9342 to an RGB input video.
9343
9344 These filters accept the following parameters:
9345 @table @option
9346 @item c0
9347 set first pixel component expression
9348 @item c1
9349 set second pixel component expression
9350 @item c2
9351 set third pixel component expression
9352 @item c3
9353 set fourth pixel component expression, corresponds to the alpha component
9354
9355 @item r
9356 set red component expression
9357 @item g
9358 set green component expression
9359 @item b
9360 set blue component expression
9361 @item a
9362 alpha component expression
9363
9364 @item y
9365 set Y/luminance component expression
9366 @item u
9367 set U/Cb component expression
9368 @item v
9369 set V/Cr component expression
9370 @end table
9371
9372 Each of them specifies the expression to use for computing the lookup table for
9373 the corresponding pixel component values.
9374
9375 The exact component associated to each of the @var{c*} options depends on the
9376 format in input.
9377
9378 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9379 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9380
9381 The expressions can contain the following constants and functions:
9382
9383 @table @option
9384 @item w
9385 @item h
9386 The input width and height.
9387
9388 @item val
9389 The input value for the pixel component.
9390
9391 @item clipval
9392 The input value, clipped to the @var{minval}-@var{maxval} range.
9393
9394 @item maxval
9395 The maximum value for the pixel component.
9396
9397 @item minval
9398 The minimum value for the pixel component.
9399
9400 @item negval
9401 The negated value for the pixel component value, clipped to the
9402 @var{minval}-@var{maxval} range; it corresponds to the expression
9403 "maxval-clipval+minval".
9404
9405 @item clip(val)
9406 The computed value in @var{val}, clipped to the
9407 @var{minval}-@var{maxval} range.
9408
9409 @item gammaval(gamma)
9410 The computed gamma correction value of the pixel component value,
9411 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9412 expression
9413 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9414
9415 @end table
9416
9417 All expressions default to "val".
9418
9419 @subsection Examples
9420
9421 @itemize
9422 @item
9423 Negate input video:
9424 @example
9425 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9426 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9427 @end example
9428
9429 The above is the same as:
9430 @example
9431 lutrgb="r=negval:g=negval:b=negval"
9432 lutyuv="y=negval:u=negval:v=negval"
9433 @end example
9434
9435 @item
9436 Negate luminance:
9437 @example
9438 lutyuv=y=negval
9439 @end example
9440
9441 @item
9442 Remove chroma components, turning the video into a graytone image:
9443 @example
9444 lutyuv="u=128:v=128"
9445 @end example
9446
9447 @item
9448 Apply a luma burning effect:
9449 @example
9450 lutyuv="y=2*val"
9451 @end example
9452
9453 @item
9454 Remove green and blue components:
9455 @example
9456 lutrgb="g=0:b=0"
9457 @end example
9458
9459 @item
9460 Set a constant alpha channel value on input:
9461 @example
9462 format=rgba,lutrgb=a="maxval-minval/2"
9463 @end example
9464
9465 @item
9466 Correct luminance gamma by a factor of 0.5:
9467 @example
9468 lutyuv=y=gammaval(0.5)
9469 @end example
9470
9471 @item
9472 Discard least significant bits of luma:
9473 @example
9474 lutyuv=y='bitand(val, 128+64+32)'
9475 @end example
9476
9477 @item
9478 Technicolor like effect:
9479 @example
9480 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9481 @end example
9482 @end itemize
9483
9484 @section lut2
9485
9486 Compute and apply a lookup table from two video inputs.
9487
9488 This filter accepts the following parameters:
9489 @table @option
9490 @item c0
9491 set first pixel component expression
9492 @item c1
9493 set second pixel component expression
9494 @item c2
9495 set third pixel component expression
9496 @item c3
9497 set fourth pixel component expression, corresponds to the alpha component
9498 @end table
9499
9500 Each of them specifies the expression to use for computing the lookup table for
9501 the corresponding pixel component values.
9502
9503 The exact component associated to each of the @var{c*} options depends on the
9504 format in inputs.
9505
9506 The expressions can contain the following constants:
9507
9508 @table @option
9509 @item w
9510 @item h
9511 The input width and height.
9512
9513 @item x
9514 The first input value for the pixel component.
9515
9516 @item y
9517 The second input value for the pixel component.
9518
9519 @item bdx
9520 The first input video bit depth.
9521
9522 @item bdy
9523 The second input video bit depth.
9524 @end table
9525
9526 All expressions default to "x".
9527
9528 @subsection Examples
9529
9530 @itemize
9531 @item
9532 Highlight differences between two RGB video streams:
9533 @example
9534 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)'
9535 @end example
9536
9537 @item
9538 Highlight differences between two YUV video streams:
9539 @example
9540 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)'
9541 @end example
9542 @end itemize
9543
9544 @section maskedclamp
9545
9546 Clamp the first input stream with the second input and third input stream.
9547
9548 Returns the value of first stream to be between second input
9549 stream - @code{undershoot} and third input stream + @code{overshoot}.
9550
9551 This filter accepts the following options:
9552 @table @option
9553 @item undershoot
9554 Default value is @code{0}.
9555
9556 @item overshoot
9557 Default value is @code{0}.
9558
9559 @item planes
9560 Set which planes will be processed as bitmap, unprocessed planes will be
9561 copied from first stream.
9562 By default value 0xf, all planes will be processed.
9563 @end table
9564
9565 @section maskedmerge
9566
9567 Merge the first input stream with the second input stream using per pixel
9568 weights in the third input stream.
9569
9570 A value of 0 in the third stream pixel component means that pixel component
9571 from first stream is returned unchanged, while maximum value (eg. 255 for
9572 8-bit videos) means that pixel component from second stream is returned
9573 unchanged. Intermediate values define the amount of merging between both
9574 input stream's pixel components.
9575
9576 This filter accepts the following options:
9577 @table @option
9578 @item planes
9579 Set which planes will be processed as bitmap, unprocessed planes will be
9580 copied from first stream.
9581 By default value 0xf, all planes will be processed.
9582 @end table
9583
9584 @section mcdeint
9585
9586 Apply motion-compensation deinterlacing.
9587
9588 It needs one field per frame as input and must thus be used together
9589 with yadif=1/3 or equivalent.
9590
9591 This filter accepts the following options:
9592 @table @option
9593 @item mode
9594 Set the deinterlacing mode.
9595
9596 It accepts one of the following values:
9597 @table @samp
9598 @item fast
9599 @item medium
9600 @item slow
9601 use iterative motion estimation
9602 @item extra_slow
9603 like @samp{slow}, but use multiple reference frames.
9604 @end table
9605 Default value is @samp{fast}.
9606
9607 @item parity
9608 Set the picture field parity assumed for the input video. It must be
9609 one of the following values:
9610
9611 @table @samp
9612 @item 0, tff
9613 assume top field first
9614 @item 1, bff
9615 assume bottom field first
9616 @end table
9617
9618 Default value is @samp{bff}.
9619
9620 @item qp
9621 Set per-block quantization parameter (QP) used by the internal
9622 encoder.
9623
9624 Higher values should result in a smoother motion vector field but less
9625 optimal individual vectors. Default value is 1.
9626 @end table
9627
9628 @section mergeplanes
9629
9630 Merge color channel components from several video streams.
9631
9632 The filter accepts up to 4 input streams, and merge selected input
9633 planes to the output video.
9634
9635 This filter accepts the following options:
9636 @table @option
9637 @item mapping
9638 Set input to output plane mapping. Default is @code{0}.
9639
9640 The mappings is specified as a bitmap. It should be specified as a
9641 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9642 mapping for the first plane of the output stream. 'A' sets the number of
9643 the input stream to use (from 0 to 3), and 'a' the plane number of the
9644 corresponding input to use (from 0 to 3). The rest of the mappings is
9645 similar, 'Bb' describes the mapping for the output stream second
9646 plane, 'Cc' describes the mapping for the output stream third plane and
9647 'Dd' describes the mapping for the output stream fourth plane.
9648
9649 @item format
9650 Set output pixel format. Default is @code{yuva444p}.
9651 @end table
9652
9653 @subsection Examples
9654
9655 @itemize
9656 @item
9657 Merge three gray video streams of same width and height into single video stream:
9658 @example
9659 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9660 @end example
9661
9662 @item
9663 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9664 @example
9665 [a0][a1]mergeplanes=0x00010210:yuva444p
9666 @end example
9667
9668 @item
9669 Swap Y and A plane in yuva444p stream:
9670 @example
9671 format=yuva444p,mergeplanes=0x03010200:yuva444p
9672 @end example
9673
9674 @item
9675 Swap U and V plane in yuv420p stream:
9676 @example
9677 format=yuv420p,mergeplanes=0x000201:yuv420p
9678 @end example
9679
9680 @item
9681 Cast a rgb24 clip to yuv444p:
9682 @example
9683 format=rgb24,mergeplanes=0x000102:yuv444p
9684 @end example
9685 @end itemize
9686
9687 @section mestimate
9688
9689 Estimate and export motion vectors using block matching algorithms.
9690 Motion vectors are stored in frame side data to be used by other filters.
9691
9692 This filter accepts the following options:
9693 @table @option
9694 @item method
9695 Specify the motion estimation method. Accepts one of the following values:
9696
9697 @table @samp
9698 @item esa
9699 Exhaustive search algorithm.
9700 @item tss
9701 Three step search algorithm.
9702 @item tdls
9703 Two dimensional logarithmic search algorithm.
9704 @item ntss
9705 New three step search algorithm.
9706 @item fss
9707 Four step search algorithm.
9708 @item ds
9709 Diamond search algorithm.
9710 @item hexbs
9711 Hexagon-based search algorithm.
9712 @item epzs
9713 Enhanced predictive zonal search algorithm.
9714 @item umh
9715 Uneven multi-hexagon search algorithm.
9716 @end table
9717 Default value is @samp{esa}.
9718
9719 @item mb_size
9720 Macroblock size. Default @code{16}.
9721
9722 @item search_param
9723 Search parameter. Default @code{7}.
9724 @end table
9725
9726 @section midequalizer
9727
9728 Apply Midway Image Equalization effect using two video streams.
9729
9730 Midway Image Equalization adjusts a pair of images to have the same
9731 histogram, while maintaining their dynamics as much as possible. It's
9732 useful for e.g. matching exposures from a pair of stereo cameras.
9733
9734 This filter has two inputs and one output, which must be of same pixel format, but
9735 may be of different sizes. The output of filter is first input adjusted with
9736 midway histogram of both inputs.
9737
9738 This filter accepts the following option:
9739
9740 @table @option
9741 @item planes
9742 Set which planes to process. Default is @code{15}, which is all available planes.
9743 @end table
9744
9745 @section minterpolate
9746
9747 Convert the video to specified frame rate using motion interpolation.
9748
9749 This filter accepts the following options:
9750 @table @option
9751 @item fps
9752 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}.
9753
9754 @item mi_mode
9755 Motion interpolation mode. Following values are accepted:
9756 @table @samp
9757 @item dup
9758 Duplicate previous or next frame for interpolating new ones.
9759 @item blend
9760 Blend source frames. Interpolated frame is mean of previous and next frames.
9761 @item mci
9762 Motion compensated interpolation. Following options are effective when this mode is selected:
9763
9764 @table @samp
9765 @item mc_mode
9766 Motion compensation mode. Following values are accepted:
9767 @table @samp
9768 @item obmc
9769 Overlapped block motion compensation.
9770 @item aobmc
9771 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
9772 @end table
9773 Default mode is @samp{obmc}.
9774
9775 @item me_mode
9776 Motion estimation mode. Following values are accepted:
9777 @table @samp
9778 @item bidir
9779 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
9780 @item bilat
9781 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
9782 @end table
9783 Default mode is @samp{bilat}.
9784
9785 @item me
9786 The algorithm to be used for motion estimation. Following values are accepted:
9787 @table @samp
9788 @item esa
9789 Exhaustive search algorithm.
9790 @item tss
9791 Three step search algorithm.
9792 @item tdls
9793 Two dimensional logarithmic search algorithm.
9794 @item ntss
9795 New three step search algorithm.
9796 @item fss
9797 Four step search algorithm.
9798 @item ds
9799 Diamond search algorithm.
9800 @item hexbs
9801 Hexagon-based search algorithm.
9802 @item epzs
9803 Enhanced predictive zonal search algorithm.
9804 @item umh
9805 Uneven multi-hexagon search algorithm.
9806 @end table
9807 Default algorithm is @samp{epzs}.
9808
9809 @item mb_size
9810 Macroblock size. Default @code{16}.
9811
9812 @item search_param
9813 Motion estimation search parameter. Default @code{32}.
9814
9815 @item vsbmc
9816 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).
9817 @end table
9818 @end table
9819
9820 @item scd
9821 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:
9822 @table @samp
9823 @item none
9824 Disable scene change detection.
9825 @item fdiff
9826 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
9827 @end table
9828 Default method is @samp{fdiff}.
9829
9830 @item scd_threshold
9831 Scene change detection threshold. Default is @code{5.0}.
9832 @end table
9833
9834 @section mpdecimate
9835
9836 Drop frames that do not differ greatly from the previous frame in
9837 order to reduce frame rate.
9838
9839 The main use of this filter is for very-low-bitrate encoding
9840 (e.g. streaming over dialup modem), but it could in theory be used for
9841 fixing movies that were inverse-telecined incorrectly.
9842
9843 A description of the accepted options follows.
9844
9845 @table @option
9846 @item max
9847 Set the maximum number of consecutive frames which can be dropped (if
9848 positive), or the minimum interval between dropped frames (if
9849 negative). If the value is 0, the frame is dropped unregarding the
9850 number of previous sequentially dropped frames.
9851
9852 Default value is 0.
9853
9854 @item hi
9855 @item lo
9856 @item frac
9857 Set the dropping threshold values.
9858
9859 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9860 represent actual pixel value differences, so a threshold of 64
9861 corresponds to 1 unit of difference for each pixel, or the same spread
9862 out differently over the block.
9863
9864 A frame is a candidate for dropping if no 8x8 blocks differ by more
9865 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9866 meaning the whole image) differ by more than a threshold of @option{lo}.
9867
9868 Default value for @option{hi} is 64*12, default value for @option{lo} is
9869 64*5, and default value for @option{frac} is 0.33.
9870 @end table
9871
9872
9873 @section negate
9874
9875 Negate input video.
9876
9877 It accepts an integer in input; if non-zero it negates the
9878 alpha component (if available). The default value in input is 0.
9879
9880 @section nlmeans
9881
9882 Denoise frames using Non-Local Means algorithm.
9883
9884 Each pixel is adjusted by looking for other pixels with similar contexts. This
9885 context similarity is defined by comparing their surrounding patches of size
9886 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
9887 around the pixel.
9888
9889 Note that the research area defines centers for patches, which means some
9890 patches will be made of pixels outside that research area.
9891
9892 The filter accepts the following options.
9893
9894 @table @option
9895 @item s
9896 Set denoising strength.
9897
9898 @item p
9899 Set patch size.
9900
9901 @item pc
9902 Same as @option{p} but for chroma planes.
9903
9904 The default value is @var{0} and means automatic.
9905
9906 @item r
9907 Set research size.
9908
9909 @item rc
9910 Same as @option{r} but for chroma planes.
9911
9912 The default value is @var{0} and means automatic.
9913 @end table
9914
9915 @section nnedi
9916
9917 Deinterlace video using neural network edge directed interpolation.
9918
9919 This filter accepts the following options:
9920
9921 @table @option
9922 @item weights
9923 Mandatory option, without binary file filter can not work.
9924 Currently file can be found here:
9925 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9926
9927 @item deint
9928 Set which frames to deinterlace, by default it is @code{all}.
9929 Can be @code{all} or @code{interlaced}.
9930
9931 @item field
9932 Set mode of operation.
9933
9934 Can be one of the following:
9935
9936 @table @samp
9937 @item af
9938 Use frame flags, both fields.
9939 @item a
9940 Use frame flags, single field.
9941 @item t
9942 Use top field only.
9943 @item b
9944 Use bottom field only.
9945 @item tf
9946 Use both fields, top first.
9947 @item bf
9948 Use both fields, bottom first.
9949 @end table
9950
9951 @item planes
9952 Set which planes to process, by default filter process all frames.
9953
9954 @item nsize
9955 Set size of local neighborhood around each pixel, used by the predictor neural
9956 network.
9957
9958 Can be one of the following:
9959
9960 @table @samp
9961 @item s8x6
9962 @item s16x6
9963 @item s32x6
9964 @item s48x6
9965 @item s8x4
9966 @item s16x4
9967 @item s32x4
9968 @end table
9969
9970 @item nns
9971 Set the number of neurons in predicctor neural network.
9972 Can be one of the following:
9973
9974 @table @samp
9975 @item n16
9976 @item n32
9977 @item n64
9978 @item n128
9979 @item n256
9980 @end table
9981
9982 @item qual
9983 Controls the number of different neural network predictions that are blended
9984 together to compute the final output value. Can be @code{fast}, default or
9985 @code{slow}.
9986
9987 @item etype
9988 Set which set of weights to use in the predictor.
9989 Can be one of the following:
9990
9991 @table @samp
9992 @item a
9993 weights trained to minimize absolute error
9994 @item s
9995 weights trained to minimize squared error
9996 @end table
9997
9998 @item pscrn
9999 Controls whether or not the prescreener neural network is used to decide
10000 which pixels should be processed by the predictor neural network and which
10001 can be handled by simple cubic interpolation.
10002 The prescreener is trained to know whether cubic interpolation will be
10003 sufficient for a pixel or whether it should be predicted by the predictor nn.
10004 The computational complexity of the prescreener nn is much less than that of
10005 the predictor nn. Since most pixels can be handled by cubic interpolation,
10006 using the prescreener generally results in much faster processing.
10007 The prescreener is pretty accurate, so the difference between using it and not
10008 using it is almost always unnoticeable.
10009
10010 Can be one of the following:
10011
10012 @table @samp
10013 @item none
10014 @item original
10015 @item new
10016 @end table
10017
10018 Default is @code{new}.
10019
10020 @item fapprox
10021 Set various debugging flags.
10022 @end table
10023
10024 @section noformat
10025
10026 Force libavfilter not to use any of the specified pixel formats for the
10027 input to the next filter.
10028
10029 It accepts the following parameters:
10030 @table @option
10031
10032 @item pix_fmts
10033 A '|'-separated list of pixel format names, such as
10034 apix_fmts=yuv420p|monow|rgb24".
10035
10036 @end table
10037
10038 @subsection Examples
10039
10040 @itemize
10041 @item
10042 Force libavfilter to use a format different from @var{yuv420p} for the
10043 input to the vflip filter:
10044 @example
10045 noformat=pix_fmts=yuv420p,vflip
10046 @end example
10047
10048 @item
10049 Convert the input video to any of the formats not contained in the list:
10050 @example
10051 noformat=yuv420p|yuv444p|yuv410p
10052 @end example
10053 @end itemize
10054
10055 @section noise
10056
10057 Add noise on video input frame.
10058
10059 The filter accepts the following options:
10060
10061 @table @option
10062 @item all_seed
10063 @item c0_seed
10064 @item c1_seed
10065 @item c2_seed
10066 @item c3_seed
10067 Set noise seed for specific pixel component or all pixel components in case
10068 of @var{all_seed}. Default value is @code{123457}.
10069
10070 @item all_strength, alls
10071 @item c0_strength, c0s
10072 @item c1_strength, c1s
10073 @item c2_strength, c2s
10074 @item c3_strength, c3s
10075 Set noise strength for specific pixel component or all pixel components in case
10076 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
10077
10078 @item all_flags, allf
10079 @item c0_flags, c0f
10080 @item c1_flags, c1f
10081 @item c2_flags, c2f
10082 @item c3_flags, c3f
10083 Set pixel component flags or set flags for all components if @var{all_flags}.
10084 Available values for component flags are:
10085 @table @samp
10086 @item a
10087 averaged temporal noise (smoother)
10088 @item p
10089 mix random noise with a (semi)regular pattern
10090 @item t
10091 temporal noise (noise pattern changes between frames)
10092 @item u
10093 uniform noise (gaussian otherwise)
10094 @end table
10095 @end table
10096
10097 @subsection Examples
10098
10099 Add temporal and uniform noise to input video:
10100 @example
10101 noise=alls=20:allf=t+u
10102 @end example
10103
10104 @section null
10105
10106 Pass the video source unchanged to the output.
10107
10108 @section ocr
10109 Optical Character Recognition
10110
10111 This filter uses Tesseract for optical character recognition.
10112
10113 It accepts the following options:
10114
10115 @table @option
10116 @item datapath
10117 Set datapath to tesseract data. Default is to use whatever was
10118 set at installation.
10119
10120 @item language
10121 Set language, default is "eng".
10122
10123 @item whitelist
10124 Set character whitelist.
10125
10126 @item blacklist
10127 Set character blacklist.
10128 @end table
10129
10130 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
10131
10132 @section ocv
10133
10134 Apply a video transform using libopencv.
10135
10136 To enable this filter, install the libopencv library and headers and
10137 configure FFmpeg with @code{--enable-libopencv}.
10138
10139 It accepts the following parameters:
10140
10141 @table @option
10142
10143 @item filter_name
10144 The name of the libopencv filter to apply.
10145
10146 @item filter_params
10147 The parameters to pass to the libopencv filter. If not specified, the default
10148 values are assumed.
10149
10150 @end table
10151
10152 Refer to the official libopencv documentation for more precise
10153 information:
10154 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
10155
10156 Several libopencv filters are supported; see the following subsections.
10157
10158 @anchor{dilate}
10159 @subsection dilate
10160
10161 Dilate an image by using a specific structuring element.
10162 It corresponds to the libopencv function @code{cvDilate}.
10163
10164 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
10165
10166 @var{struct_el} represents a structuring element, and has the syntax:
10167 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
10168
10169 @var{cols} and @var{rows} represent the number of columns and rows of
10170 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
10171 point, and @var{shape} the shape for the structuring element. @var{shape}
10172 must be "rect", "cross", "ellipse", or "custom".
10173
10174 If the value for @var{shape} is "custom", it must be followed by a
10175 string of the form "=@var{filename}". The file with name
10176 @var{filename} is assumed to represent a binary image, with each
10177 printable character corresponding to a bright pixel. When a custom
10178 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
10179 or columns and rows of the read file are assumed instead.
10180
10181 The default value for @var{struct_el} is "3x3+0x0/rect".
10182
10183 @var{nb_iterations} specifies the number of times the transform is
10184 applied to the image, and defaults to 1.
10185
10186 Some examples:
10187 @example
10188 # Use the default values
10189 ocv=dilate
10190
10191 # Dilate using a structuring element with a 5x5 cross, iterating two times
10192 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
10193
10194 # Read the shape from the file diamond.shape, iterating two times.
10195 # The file diamond.shape may contain a pattern of characters like this
10196 #   *
10197 #  ***
10198 # *****
10199 #  ***
10200 #   *
10201 # The specified columns and rows are ignored
10202 # but the anchor point coordinates are not
10203 ocv=dilate:0x0+2x2/custom=diamond.shape|2
10204 @end example
10205
10206 @subsection erode
10207
10208 Erode an image by using a specific structuring element.
10209 It corresponds to the libopencv function @code{cvErode}.
10210
10211 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
10212 with the same syntax and semantics as the @ref{dilate} filter.
10213
10214 @subsection smooth
10215
10216 Smooth the input video.
10217
10218 The filter takes the following parameters:
10219 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
10220
10221 @var{type} is the type of smooth filter to apply, and must be one of
10222 the following values: "blur", "blur_no_scale", "median", "gaussian",
10223 or "bilateral". The default value is "gaussian".
10224
10225 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
10226 depend on the smooth type. @var{param1} and
10227 @var{param2} accept integer positive values or 0. @var{param3} and
10228 @var{param4} accept floating point values.
10229
10230 The default value for @var{param1} is 3. The default value for the
10231 other parameters is 0.
10232
10233 These parameters correspond to the parameters assigned to the
10234 libopencv function @code{cvSmooth}.
10235
10236 @anchor{overlay}
10237 @section overlay
10238
10239 Overlay one video on top of another.
10240
10241 It takes two inputs and has one output. The first input is the "main"
10242 video on which the second input is overlaid.
10243
10244 It accepts the following parameters:
10245
10246 A description of the accepted options follows.
10247
10248 @table @option
10249 @item x
10250 @item y
10251 Set the expression for the x and y coordinates of the overlaid video
10252 on the main video. Default value is "0" for both expressions. In case
10253 the expression is invalid, it is set to a huge value (meaning that the
10254 overlay will not be displayed within the output visible area).
10255
10256 @item eof_action
10257 The action to take when EOF is encountered on the secondary input; it accepts
10258 one of the following values:
10259
10260 @table @option
10261 @item repeat
10262 Repeat the last frame (the default).
10263 @item endall
10264 End both streams.
10265 @item pass
10266 Pass the main input through.
10267 @end table
10268
10269 @item eval
10270 Set when the expressions for @option{x}, and @option{y} are evaluated.
10271
10272 It accepts the following values:
10273 @table @samp
10274 @item init
10275 only evaluate expressions once during the filter initialization or
10276 when a command is processed
10277
10278 @item frame
10279 evaluate expressions for each incoming frame
10280 @end table
10281
10282 Default value is @samp{frame}.
10283
10284 @item shortest
10285 If set to 1, force the output to terminate when the shortest input
10286 terminates. Default value is 0.
10287
10288 @item format
10289 Set the format for the output video.
10290
10291 It accepts the following values:
10292 @table @samp
10293 @item yuv420
10294 force YUV420 output
10295
10296 @item yuv422
10297 force YUV422 output
10298
10299 @item yuv444
10300 force YUV444 output
10301
10302 @item rgb
10303 force packed RGB output
10304
10305 @item gbrp
10306 force planar RGB output
10307 @end table
10308
10309 Default value is @samp{yuv420}.
10310
10311 @item rgb @emph{(deprecated)}
10312 If set to 1, force the filter to accept inputs in the RGB
10313 color space. Default value is 0. This option is deprecated, use
10314 @option{format} instead.
10315
10316 @item repeatlast
10317 If set to 1, force the filter to draw the last overlay frame over the
10318 main input until the end of the stream. A value of 0 disables this
10319 behavior. Default value is 1.
10320 @end table
10321
10322 The @option{x}, and @option{y} expressions can contain the following
10323 parameters.
10324
10325 @table @option
10326 @item main_w, W
10327 @item main_h, H
10328 The main input width and height.
10329
10330 @item overlay_w, w
10331 @item overlay_h, h
10332 The overlay input width and height.
10333
10334 @item x
10335 @item y
10336 The computed values for @var{x} and @var{y}. They are evaluated for
10337 each new frame.
10338
10339 @item hsub
10340 @item vsub
10341 horizontal and vertical chroma subsample values of the output
10342 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
10343 @var{vsub} is 1.
10344
10345 @item n
10346 the number of input frame, starting from 0
10347
10348 @item pos
10349 the position in the file of the input frame, NAN if unknown
10350
10351 @item t
10352 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
10353
10354 @end table
10355
10356 Note that the @var{n}, @var{pos}, @var{t} variables are available only
10357 when evaluation is done @emph{per frame}, and will evaluate to NAN
10358 when @option{eval} is set to @samp{init}.
10359
10360 Be aware that frames are taken from each input video in timestamp
10361 order, hence, if their initial timestamps differ, it is a good idea
10362 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
10363 have them begin in the same zero timestamp, as the example for
10364 the @var{movie} filter does.
10365
10366 You can chain together more overlays but you should test the
10367 efficiency of such approach.
10368
10369 @subsection Commands
10370
10371 This filter supports the following commands:
10372 @table @option
10373 @item x
10374 @item y
10375 Modify the x and y of the overlay input.
10376 The command accepts the same syntax of the corresponding option.
10377
10378 If the specified expression is not valid, it is kept at its current
10379 value.
10380 @end table
10381
10382 @subsection Examples
10383
10384 @itemize
10385 @item
10386 Draw the overlay at 10 pixels from the bottom right corner of the main
10387 video:
10388 @example
10389 overlay=main_w-overlay_w-10:main_h-overlay_h-10
10390 @end example
10391
10392 Using named options the example above becomes:
10393 @example
10394 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
10395 @end example
10396
10397 @item
10398 Insert a transparent PNG logo in the bottom left corner of the input,
10399 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
10400 @example
10401 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
10402 @end example
10403
10404 @item
10405 Insert 2 different transparent PNG logos (second logo on bottom
10406 right corner) using the @command{ffmpeg} tool:
10407 @example
10408 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
10409 @end example
10410
10411 @item
10412 Add a transparent color layer on top of the main video; @code{WxH}
10413 must specify the size of the main input to the overlay filter:
10414 @example
10415 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
10416 @end example
10417
10418 @item
10419 Play an original video and a filtered version (here with the deshake
10420 filter) side by side using the @command{ffplay} tool:
10421 @example
10422 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
10423 @end example
10424
10425 The above command is the same as:
10426 @example
10427 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
10428 @end example
10429
10430 @item
10431 Make a sliding overlay appearing from the left to the right top part of the
10432 screen starting since time 2:
10433 @example
10434 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
10435 @end example
10436
10437 @item
10438 Compose output by putting two input videos side to side:
10439 @example
10440 ffmpeg -i left.avi -i right.avi -filter_complex "
10441 nullsrc=size=200x100 [background];
10442 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
10443 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
10444 [background][left]       overlay=shortest=1       [background+left];
10445 [background+left][right] overlay=shortest=1:x=100 [left+right]
10446 "
10447 @end example
10448
10449 @item
10450 Mask 10-20 seconds of a video by applying the delogo filter to a section
10451 @example
10452 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
10453 -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]'
10454 masked.avi
10455 @end example
10456
10457 @item
10458 Chain several overlays in cascade:
10459 @example
10460 nullsrc=s=200x200 [bg];
10461 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
10462 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
10463 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
10464 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
10465 [in3] null,       [mid2] overlay=100:100 [out0]
10466 @end example
10467
10468 @end itemize
10469
10470 @section owdenoise
10471
10472 Apply Overcomplete Wavelet denoiser.
10473
10474 The filter accepts the following options:
10475
10476 @table @option
10477 @item depth
10478 Set depth.
10479
10480 Larger depth values will denoise lower frequency components more, but
10481 slow down filtering.
10482
10483 Must be an int in the range 8-16, default is @code{8}.
10484
10485 @item luma_strength, ls
10486 Set luma strength.
10487
10488 Must be a double value in the range 0-1000, default is @code{1.0}.
10489
10490 @item chroma_strength, cs
10491 Set chroma strength.
10492
10493 Must be a double value in the range 0-1000, default is @code{1.0}.
10494 @end table
10495
10496 @anchor{pad}
10497 @section pad
10498
10499 Add paddings to the input image, and place the original input at the
10500 provided @var{x}, @var{y} coordinates.
10501
10502 It accepts the following parameters:
10503
10504 @table @option
10505 @item width, w
10506 @item height, h
10507 Specify an expression for the size of the output image with the
10508 paddings added. If the value for @var{width} or @var{height} is 0, the
10509 corresponding input size is used for the output.
10510
10511 The @var{width} expression can reference the value set by the
10512 @var{height} expression, and vice versa.
10513
10514 The default value of @var{width} and @var{height} is 0.
10515
10516 @item x
10517 @item y
10518 Specify the offsets to place the input image at within the padded area,
10519 with respect to the top/left border of the output image.
10520
10521 The @var{x} expression can reference the value set by the @var{y}
10522 expression, and vice versa.
10523
10524 The default value of @var{x} and @var{y} is 0.
10525
10526 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
10527 so the input image is centered on the padded area.
10528
10529 @item color
10530 Specify the color of the padded area. For the syntax of this option,
10531 check the "Color" section in the ffmpeg-utils manual.
10532
10533 The default value of @var{color} is "black".
10534
10535 @item eval
10536 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
10537
10538 It accepts the following values:
10539
10540 @table @samp
10541 @item init
10542 Only evaluate expressions once during the filter initialization or when
10543 a command is processed.
10544
10545 @item frame
10546 Evaluate expressions for each incoming frame.
10547
10548 @end table
10549
10550 Default value is @samp{init}.
10551
10552 @item aspect
10553 Pad to aspect instead to a resolution.
10554
10555 @end table
10556
10557 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10558 options are expressions containing the following constants:
10559
10560 @table @option
10561 @item in_w
10562 @item in_h
10563 The input video width and height.
10564
10565 @item iw
10566 @item ih
10567 These are the same as @var{in_w} and @var{in_h}.
10568
10569 @item out_w
10570 @item out_h
10571 The output width and height (the size of the padded area), as
10572 specified by the @var{width} and @var{height} expressions.
10573
10574 @item ow
10575 @item oh
10576 These are the same as @var{out_w} and @var{out_h}.
10577
10578 @item x
10579 @item y
10580 The x and y offsets as specified by the @var{x} and @var{y}
10581 expressions, or NAN if not yet specified.
10582
10583 @item a
10584 same as @var{iw} / @var{ih}
10585
10586 @item sar
10587 input sample aspect ratio
10588
10589 @item dar
10590 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10591
10592 @item hsub
10593 @item vsub
10594 The horizontal and vertical chroma subsample values. For example for the
10595 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10596 @end table
10597
10598 @subsection Examples
10599
10600 @itemize
10601 @item
10602 Add paddings with the color "violet" to the input video. The output video
10603 size is 640x480, and the top-left corner of the input video is placed at
10604 column 0, row 40
10605 @example
10606 pad=640:480:0:40:violet
10607 @end example
10608
10609 The example above is equivalent to the following command:
10610 @example
10611 pad=width=640:height=480:x=0:y=40:color=violet
10612 @end example
10613
10614 @item
10615 Pad the input to get an output with dimensions increased by 3/2,
10616 and put the input video at the center of the padded area:
10617 @example
10618 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10619 @end example
10620
10621 @item
10622 Pad the input to get a squared output with size equal to the maximum
10623 value between the input width and height, and put the input video at
10624 the center of the padded area:
10625 @example
10626 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10627 @end example
10628
10629 @item
10630 Pad the input to get a final w/h ratio of 16:9:
10631 @example
10632 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10633 @end example
10634
10635 @item
10636 In case of anamorphic video, in order to set the output display aspect
10637 correctly, it is necessary to use @var{sar} in the expression,
10638 according to the relation:
10639 @example
10640 (ih * X / ih) * sar = output_dar
10641 X = output_dar / sar
10642 @end example
10643
10644 Thus the previous example needs to be modified to:
10645 @example
10646 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10647 @end example
10648
10649 @item
10650 Double the output size and put the input video in the bottom-right
10651 corner of the output padded area:
10652 @example
10653 pad="2*iw:2*ih:ow-iw:oh-ih"
10654 @end example
10655 @end itemize
10656
10657 @anchor{palettegen}
10658 @section palettegen
10659
10660 Generate one palette for a whole video stream.
10661
10662 It accepts the following options:
10663
10664 @table @option
10665 @item max_colors
10666 Set the maximum number of colors to quantize in the palette.
10667 Note: the palette will still contain 256 colors; the unused palette entries
10668 will be black.
10669
10670 @item reserve_transparent
10671 Create a palette of 255 colors maximum and reserve the last one for
10672 transparency. Reserving the transparency color is useful for GIF optimization.
10673 If not set, the maximum of colors in the palette will be 256. You probably want
10674 to disable this option for a standalone image.
10675 Set by default.
10676
10677 @item stats_mode
10678 Set statistics mode.
10679
10680 It accepts the following values:
10681 @table @samp
10682 @item full
10683 Compute full frame histograms.
10684 @item diff
10685 Compute histograms only for the part that differs from previous frame. This
10686 might be relevant to give more importance to the moving part of your input if
10687 the background is static.
10688 @item single
10689 Compute new histogram for each frame.
10690 @end table
10691
10692 Default value is @var{full}.
10693 @end table
10694
10695 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10696 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10697 color quantization of the palette. This information is also visible at
10698 @var{info} logging level.
10699
10700 @subsection Examples
10701
10702 @itemize
10703 @item
10704 Generate a representative palette of a given video using @command{ffmpeg}:
10705 @example
10706 ffmpeg -i input.mkv -vf palettegen palette.png
10707 @end example
10708 @end itemize
10709
10710 @section paletteuse
10711
10712 Use a palette to downsample an input video stream.
10713
10714 The filter takes two inputs: one video stream and a palette. The palette must
10715 be a 256 pixels image.
10716
10717 It accepts the following options:
10718
10719 @table @option
10720 @item dither
10721 Select dithering mode. Available algorithms are:
10722 @table @samp
10723 @item bayer
10724 Ordered 8x8 bayer dithering (deterministic)
10725 @item heckbert
10726 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10727 Note: this dithering is sometimes considered "wrong" and is included as a
10728 reference.
10729 @item floyd_steinberg
10730 Floyd and Steingberg dithering (error diffusion)
10731 @item sierra2
10732 Frankie Sierra dithering v2 (error diffusion)
10733 @item sierra2_4a
10734 Frankie Sierra dithering v2 "Lite" (error diffusion)
10735 @end table
10736
10737 Default is @var{sierra2_4a}.
10738
10739 @item bayer_scale
10740 When @var{bayer} dithering is selected, this option defines the scale of the
10741 pattern (how much the crosshatch pattern is visible). A low value means more
10742 visible pattern for less banding, and higher value means less visible pattern
10743 at the cost of more banding.
10744
10745 The option must be an integer value in the range [0,5]. Default is @var{2}.
10746
10747 @item diff_mode
10748 If set, define the zone to process
10749
10750 @table @samp
10751 @item rectangle
10752 Only the changing rectangle will be reprocessed. This is similar to GIF
10753 cropping/offsetting compression mechanism. This option can be useful for speed
10754 if only a part of the image is changing, and has use cases such as limiting the
10755 scope of the error diffusal @option{dither} to the rectangle that bounds the
10756 moving scene (it leads to more deterministic output if the scene doesn't change
10757 much, and as a result less moving noise and better GIF compression).
10758 @end table
10759
10760 Default is @var{none}.
10761
10762 @item new
10763 Take new palette for each output frame.
10764 @end table
10765
10766 @subsection Examples
10767
10768 @itemize
10769 @item
10770 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10771 using @command{ffmpeg}:
10772 @example
10773 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10774 @end example
10775 @end itemize
10776
10777 @section perspective
10778
10779 Correct perspective of video not recorded perpendicular to the screen.
10780
10781 A description of the accepted parameters follows.
10782
10783 @table @option
10784 @item x0
10785 @item y0
10786 @item x1
10787 @item y1
10788 @item x2
10789 @item y2
10790 @item x3
10791 @item y3
10792 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10793 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10794 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10795 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10796 then the corners of the source will be sent to the specified coordinates.
10797
10798 The expressions can use the following variables:
10799
10800 @table @option
10801 @item W
10802 @item H
10803 the width and height of video frame.
10804 @item in
10805 Input frame count.
10806 @item on
10807 Output frame count.
10808 @end table
10809
10810 @item interpolation
10811 Set interpolation for perspective correction.
10812
10813 It accepts the following values:
10814 @table @samp
10815 @item linear
10816 @item cubic
10817 @end table
10818
10819 Default value is @samp{linear}.
10820
10821 @item sense
10822 Set interpretation of coordinate options.
10823
10824 It accepts the following values:
10825 @table @samp
10826 @item 0, source
10827
10828 Send point in the source specified by the given coordinates to
10829 the corners of the destination.
10830
10831 @item 1, destination
10832
10833 Send the corners of the source to the point in the destination specified
10834 by the given coordinates.
10835
10836 Default value is @samp{source}.
10837 @end table
10838
10839 @item eval
10840 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10841
10842 It accepts the following values:
10843 @table @samp
10844 @item init
10845 only evaluate expressions once during the filter initialization or
10846 when a command is processed
10847
10848 @item frame
10849 evaluate expressions for each incoming frame
10850 @end table
10851
10852 Default value is @samp{init}.
10853 @end table
10854
10855 @section phase
10856
10857 Delay interlaced video by one field time so that the field order changes.
10858
10859 The intended use is to fix PAL movies that have been captured with the
10860 opposite field order to the film-to-video transfer.
10861
10862 A description of the accepted parameters follows.
10863
10864 @table @option
10865 @item mode
10866 Set phase mode.
10867
10868 It accepts the following values:
10869 @table @samp
10870 @item t
10871 Capture field order top-first, transfer bottom-first.
10872 Filter will delay the bottom field.
10873
10874 @item b
10875 Capture field order bottom-first, transfer top-first.
10876 Filter will delay the top field.
10877
10878 @item p
10879 Capture and transfer with the same field order. This mode only exists
10880 for the documentation of the other options to refer to, but if you
10881 actually select it, the filter will faithfully do nothing.
10882
10883 @item a
10884 Capture field order determined automatically by field flags, transfer
10885 opposite.
10886 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10887 basis using field flags. If no field information is available,
10888 then this works just like @samp{u}.
10889
10890 @item u
10891 Capture unknown or varying, transfer opposite.
10892 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10893 analyzing the images and selecting the alternative that produces best
10894 match between the fields.
10895
10896 @item T
10897 Capture top-first, transfer unknown or varying.
10898 Filter selects among @samp{t} and @samp{p} using image analysis.
10899
10900 @item B
10901 Capture bottom-first, transfer unknown or varying.
10902 Filter selects among @samp{b} and @samp{p} using image analysis.
10903
10904 @item A
10905 Capture determined by field flags, transfer unknown or varying.
10906 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10907 image analysis. If no field information is available, then this works just
10908 like @samp{U}. This is the default mode.
10909
10910 @item U
10911 Both capture and transfer unknown or varying.
10912 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10913 @end table
10914 @end table
10915
10916 @section pixdesctest
10917
10918 Pixel format descriptor test filter, mainly useful for internal
10919 testing. The output video should be equal to the input video.
10920
10921 For example:
10922 @example
10923 format=monow, pixdesctest
10924 @end example
10925
10926 can be used to test the monowhite pixel format descriptor definition.
10927
10928 @section pp
10929
10930 Enable the specified chain of postprocessing subfilters using libpostproc. This
10931 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10932 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10933 Each subfilter and some options have a short and a long name that can be used
10934 interchangeably, i.e. dr/dering are the same.
10935
10936 The filters accept the following options:
10937
10938 @table @option
10939 @item subfilters
10940 Set postprocessing subfilters string.
10941 @end table
10942
10943 All subfilters share common options to determine their scope:
10944
10945 @table @option
10946 @item a/autoq
10947 Honor the quality commands for this subfilter.
10948
10949 @item c/chrom
10950 Do chrominance filtering, too (default).
10951
10952 @item y/nochrom
10953 Do luminance filtering only (no chrominance).
10954
10955 @item n/noluma
10956 Do chrominance filtering only (no luminance).
10957 @end table
10958
10959 These options can be appended after the subfilter name, separated by a '|'.
10960
10961 Available subfilters are:
10962
10963 @table @option
10964 @item hb/hdeblock[|difference[|flatness]]
10965 Horizontal deblocking filter
10966 @table @option
10967 @item difference
10968 Difference factor where higher values mean more deblocking (default: @code{32}).
10969 @item flatness
10970 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10971 @end table
10972
10973 @item vb/vdeblock[|difference[|flatness]]
10974 Vertical deblocking filter
10975 @table @option
10976 @item difference
10977 Difference factor where higher values mean more deblocking (default: @code{32}).
10978 @item flatness
10979 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10980 @end table
10981
10982 @item ha/hadeblock[|difference[|flatness]]
10983 Accurate horizontal deblocking filter
10984 @table @option
10985 @item difference
10986 Difference factor where higher values mean more deblocking (default: @code{32}).
10987 @item flatness
10988 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10989 @end table
10990
10991 @item va/vadeblock[|difference[|flatness]]
10992 Accurate vertical deblocking filter
10993 @table @option
10994 @item difference
10995 Difference factor where higher values mean more deblocking (default: @code{32}).
10996 @item flatness
10997 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10998 @end table
10999 @end table
11000
11001 The horizontal and vertical deblocking filters share the difference and
11002 flatness values so you cannot set different horizontal and vertical
11003 thresholds.
11004
11005 @table @option
11006 @item h1/x1hdeblock
11007 Experimental horizontal deblocking filter
11008
11009 @item v1/x1vdeblock
11010 Experimental vertical deblocking filter
11011
11012 @item dr/dering
11013 Deringing filter
11014
11015 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
11016 @table @option
11017 @item threshold1
11018 larger -> stronger filtering
11019 @item threshold2
11020 larger -> stronger filtering
11021 @item threshold3
11022 larger -> stronger filtering
11023 @end table
11024
11025 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
11026 @table @option
11027 @item f/fullyrange
11028 Stretch luminance to @code{0-255}.
11029 @end table
11030
11031 @item lb/linblenddeint
11032 Linear blend deinterlacing filter that deinterlaces the given block by
11033 filtering all lines with a @code{(1 2 1)} filter.
11034
11035 @item li/linipoldeint
11036 Linear interpolating deinterlacing filter that deinterlaces the given block by
11037 linearly interpolating every second line.
11038
11039 @item ci/cubicipoldeint
11040 Cubic interpolating deinterlacing filter deinterlaces the given block by
11041 cubically interpolating every second line.
11042
11043 @item md/mediandeint
11044 Median deinterlacing filter that deinterlaces the given block by applying a
11045 median filter to every second line.
11046
11047 @item fd/ffmpegdeint
11048 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
11049 second line with a @code{(-1 4 2 4 -1)} filter.
11050
11051 @item l5/lowpass5
11052 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
11053 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
11054
11055 @item fq/forceQuant[|quantizer]
11056 Overrides the quantizer table from the input with the constant quantizer you
11057 specify.
11058 @table @option
11059 @item quantizer
11060 Quantizer to use
11061 @end table
11062
11063 @item de/default
11064 Default pp filter combination (@code{hb|a,vb|a,dr|a})
11065
11066 @item fa/fast
11067 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
11068
11069 @item ac
11070 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
11071 @end table
11072
11073 @subsection Examples
11074
11075 @itemize
11076 @item
11077 Apply horizontal and vertical deblocking, deringing and automatic
11078 brightness/contrast:
11079 @example
11080 pp=hb/vb/dr/al
11081 @end example
11082
11083 @item
11084 Apply default filters without brightness/contrast correction:
11085 @example
11086 pp=de/-al
11087 @end example
11088
11089 @item
11090 Apply default filters and temporal denoiser:
11091 @example
11092 pp=default/tmpnoise|1|2|3
11093 @end example
11094
11095 @item
11096 Apply deblocking on luminance only, and switch vertical deblocking on or off
11097 automatically depending on available CPU time:
11098 @example
11099 pp=hb|y/vb|a
11100 @end example
11101 @end itemize
11102
11103 @section pp7
11104 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
11105 similar to spp = 6 with 7 point DCT, where only the center sample is
11106 used after IDCT.
11107
11108 The filter accepts the following options:
11109
11110 @table @option
11111 @item qp
11112 Force a constant quantization parameter. It accepts an integer in range
11113 0 to 63. If not set, the filter will use the QP from the video stream
11114 (if available).
11115
11116 @item mode
11117 Set thresholding mode. Available modes are:
11118
11119 @table @samp
11120 @item hard
11121 Set hard thresholding.
11122 @item soft
11123 Set soft thresholding (better de-ringing effect, but likely blurrier).
11124 @item medium
11125 Set medium thresholding (good results, default).
11126 @end table
11127 @end table
11128
11129 @section premultiply
11130 Apply alpha premultiply effect to input video stream using first plane
11131 of second stream as alpha.
11132
11133 Both streams must have same dimensions and same pixel format.
11134
11135 The filter accepts the following option:
11136
11137 @table @option
11138 @item planes
11139 Set which planes will be processed, unprocessed planes will be copied.
11140 By default value 0xf, all planes will be processed.
11141 @end table
11142
11143 @section prewitt
11144 Apply prewitt operator to input video stream.
11145
11146 The filter accepts the following option:
11147
11148 @table @option
11149 @item planes
11150 Set which planes will be processed, unprocessed planes will be copied.
11151 By default value 0xf, all planes will be processed.
11152
11153 @item scale
11154 Set value which will be multiplied with filtered result.
11155
11156 @item delta
11157 Set value which will be added to filtered result.
11158 @end table
11159
11160 @section psnr
11161
11162 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
11163 Ratio) between two input videos.
11164
11165 This filter takes in input two input videos, the first input is
11166 considered the "main" source and is passed unchanged to the
11167 output. The second input is used as a "reference" video for computing
11168 the PSNR.
11169
11170 Both video inputs must have the same resolution and pixel format for
11171 this filter to work correctly. Also it assumes that both inputs
11172 have the same number of frames, which are compared one by one.
11173
11174 The obtained average PSNR is printed through the logging system.
11175
11176 The filter stores the accumulated MSE (mean squared error) of each
11177 frame, and at the end of the processing it is averaged across all frames
11178 equally, and the following formula is applied to obtain the PSNR:
11179
11180 @example
11181 PSNR = 10*log10(MAX^2/MSE)
11182 @end example
11183
11184 Where MAX is the average of the maximum values of each component of the
11185 image.
11186
11187 The description of the accepted parameters follows.
11188
11189 @table @option
11190 @item stats_file, f
11191 If specified the filter will use the named file to save the PSNR of
11192 each individual frame. When filename equals "-" the data is sent to
11193 standard output.
11194
11195 @item stats_version
11196 Specifies which version of the stats file format to use. Details of
11197 each format are written below.
11198 Default value is 1.
11199
11200 @item stats_add_max
11201 Determines whether the max value is output to the stats log.
11202 Default value is 0.
11203 Requires stats_version >= 2. If this is set and stats_version < 2,
11204 the filter will return an error.
11205 @end table
11206
11207 The file printed if @var{stats_file} is selected, contains a sequence of
11208 key/value pairs of the form @var{key}:@var{value} for each compared
11209 couple of frames.
11210
11211 If a @var{stats_version} greater than 1 is specified, a header line precedes
11212 the list of per-frame-pair stats, with key value pairs following the frame
11213 format with the following parameters:
11214
11215 @table @option
11216 @item psnr_log_version
11217 The version of the log file format. Will match @var{stats_version}.
11218
11219 @item fields
11220 A comma separated list of the per-frame-pair parameters included in
11221 the log.
11222 @end table
11223
11224 A description of each shown per-frame-pair parameter follows:
11225
11226 @table @option
11227 @item n
11228 sequential number of the input frame, starting from 1
11229
11230 @item mse_avg
11231 Mean Square Error pixel-by-pixel average difference of the compared
11232 frames, averaged over all the image components.
11233
11234 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
11235 Mean Square Error pixel-by-pixel average difference of the compared
11236 frames for the component specified by the suffix.
11237
11238 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
11239 Peak Signal to Noise ratio of the compared frames for the component
11240 specified by the suffix.
11241
11242 @item max_avg, max_y, max_u, max_v
11243 Maximum allowed value for each channel, and average over all
11244 channels.
11245 @end table
11246
11247 For example:
11248 @example
11249 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
11250 [main][ref] psnr="stats_file=stats.log" [out]
11251 @end example
11252
11253 On this example the input file being processed is compared with the
11254 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
11255 is stored in @file{stats.log}.
11256
11257 @anchor{pullup}
11258 @section pullup
11259
11260 Pulldown reversal (inverse telecine) filter, capable of handling mixed
11261 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
11262 content.
11263
11264 The pullup filter is designed to take advantage of future context in making
11265 its decisions. This filter is stateless in the sense that it does not lock
11266 onto a pattern to follow, but it instead looks forward to the following
11267 fields in order to identify matches and rebuild progressive frames.
11268
11269 To produce content with an even framerate, insert the fps filter after
11270 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
11271 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
11272
11273 The filter accepts the following options:
11274
11275 @table @option
11276 @item jl
11277 @item jr
11278 @item jt
11279 @item jb
11280 These options set the amount of "junk" to ignore at the left, right, top, and
11281 bottom of the image, respectively. Left and right are in units of 8 pixels,
11282 while top and bottom are in units of 2 lines.
11283 The default is 8 pixels on each side.
11284
11285 @item sb
11286 Set the strict breaks. Setting this option to 1 will reduce the chances of
11287 filter generating an occasional mismatched frame, but it may also cause an
11288 excessive number of frames to be dropped during high motion sequences.
11289 Conversely, setting it to -1 will make filter match fields more easily.
11290 This may help processing of video where there is slight blurring between
11291 the fields, but may also cause there to be interlaced frames in the output.
11292 Default value is @code{0}.
11293
11294 @item mp
11295 Set the metric plane to use. It accepts the following values:
11296 @table @samp
11297 @item l
11298 Use luma plane.
11299
11300 @item u
11301 Use chroma blue plane.
11302
11303 @item v
11304 Use chroma red plane.
11305 @end table
11306
11307 This option may be set to use chroma plane instead of the default luma plane
11308 for doing filter's computations. This may improve accuracy on very clean
11309 source material, but more likely will decrease accuracy, especially if there
11310 is chroma noise (rainbow effect) or any grayscale video.
11311 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
11312 load and make pullup usable in realtime on slow machines.
11313 @end table
11314
11315 For best results (without duplicated frames in the output file) it is
11316 necessary to change the output frame rate. For example, to inverse
11317 telecine NTSC input:
11318 @example
11319 ffmpeg -i input -vf pullup -r 24000/1001 ...
11320 @end example
11321
11322 @section qp
11323
11324 Change video quantization parameters (QP).
11325
11326 The filter accepts the following option:
11327
11328 @table @option
11329 @item qp
11330 Set expression for quantization parameter.
11331 @end table
11332
11333 The expression is evaluated through the eval API and can contain, among others,
11334 the following constants:
11335
11336 @table @var
11337 @item known
11338 1 if index is not 129, 0 otherwise.
11339
11340 @item qp
11341 Sequentional index starting from -129 to 128.
11342 @end table
11343
11344 @subsection Examples
11345
11346 @itemize
11347 @item
11348 Some equation like:
11349 @example
11350 qp=2+2*sin(PI*qp)
11351 @end example
11352 @end itemize
11353
11354 @section random
11355
11356 Flush video frames from internal cache of frames into a random order.
11357 No frame is discarded.
11358 Inspired by @ref{frei0r} nervous filter.
11359
11360 @table @option
11361 @item frames
11362 Set size in number of frames of internal cache, in range from @code{2} to
11363 @code{512}. Default is @code{30}.
11364
11365 @item seed
11366 Set seed for random number generator, must be an integer included between
11367 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
11368 less than @code{0}, the filter will try to use a good random seed on a
11369 best effort basis.
11370 @end table
11371
11372 @section readeia608
11373
11374 Read closed captioning (EIA-608) information from the top lines of a video frame.
11375
11376 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
11377 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
11378 with EIA-608 data (starting from 0). A description of each metadata value follows:
11379
11380 @table @option
11381 @item lavfi.readeia608.X.cc
11382 The two bytes stored as EIA-608 data (printed in hexadecimal).
11383
11384 @item lavfi.readeia608.X.line
11385 The number of the line on which the EIA-608 data was identified and read.
11386 @end table
11387
11388 This filter accepts the following options:
11389
11390 @table @option
11391 @item scan_min
11392 Set the line to start scanning for EIA-608 data. Default is @code{0}.
11393
11394 @item scan_max
11395 Set the line to end scanning for EIA-608 data. Default is @code{29}.
11396
11397 @item mac
11398 Set minimal acceptable amplitude change for sync codes detection.
11399 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
11400
11401 @item spw
11402 Set the ratio of width reserved for sync code detection.
11403 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
11404
11405 @item mhd
11406 Set the max peaks height difference for sync code detection.
11407 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11408
11409 @item mpd
11410 Set max peaks period difference for sync code detection.
11411 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11412
11413 @item msd
11414 Set the first two max start code bits differences.
11415 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
11416
11417 @item bhd
11418 Set the minimum ratio of bits height compared to 3rd start code bit.
11419 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
11420
11421 @item th_w
11422 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
11423
11424 @item th_b
11425 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
11426
11427 @item chp
11428 Enable checking the parity bit. In the event of a parity error, the filter will output
11429 @code{0x00} for that character. Default is false.
11430 @end table
11431
11432 @subsection Examples
11433
11434 @itemize
11435 @item
11436 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
11437 @example
11438 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
11439 @end example
11440 @end itemize
11441
11442 @section readvitc
11443
11444 Read vertical interval timecode (VITC) information from the top lines of a
11445 video frame.
11446
11447 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
11448 timecode value, if a valid timecode has been detected. Further metadata key
11449 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
11450 timecode data has been found or not.
11451
11452 This filter accepts the following options:
11453
11454 @table @option
11455 @item scan_max
11456 Set the maximum number of lines to scan for VITC data. If the value is set to
11457 @code{-1} the full video frame is scanned. Default is @code{45}.
11458
11459 @item thr_b
11460 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
11461 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
11462
11463 @item thr_w
11464 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
11465 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
11466 @end table
11467
11468 @subsection Examples
11469
11470 @itemize
11471 @item
11472 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
11473 draw @code{--:--:--:--} as a placeholder:
11474 @example
11475 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
11476 @end example
11477 @end itemize
11478
11479 @section remap
11480
11481 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
11482
11483 Destination pixel at position (X, Y) will be picked from source (x, y) position
11484 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
11485 value for pixel will be used for destination pixel.
11486
11487 Xmap and Ymap input video streams must be of same dimensions. Output video stream
11488 will have Xmap/Ymap video stream dimensions.
11489 Xmap and Ymap input video streams are 16bit depth, single channel.
11490
11491 @section removegrain
11492
11493 The removegrain filter is a spatial denoiser for progressive video.
11494
11495 @table @option
11496 @item m0
11497 Set mode for the first plane.
11498
11499 @item m1
11500 Set mode for the second plane.
11501
11502 @item m2
11503 Set mode for the third plane.
11504
11505 @item m3
11506 Set mode for the fourth plane.
11507 @end table
11508
11509 Range of mode is from 0 to 24. Description of each mode follows:
11510
11511 @table @var
11512 @item 0
11513 Leave input plane unchanged. Default.
11514
11515 @item 1
11516 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
11517
11518 @item 2
11519 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
11520
11521 @item 3
11522 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
11523
11524 @item 4
11525 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
11526 This is equivalent to a median filter.
11527
11528 @item 5
11529 Line-sensitive clipping giving the minimal change.
11530
11531 @item 6
11532 Line-sensitive clipping, intermediate.
11533
11534 @item 7
11535 Line-sensitive clipping, intermediate.
11536
11537 @item 8
11538 Line-sensitive clipping, intermediate.
11539
11540 @item 9
11541 Line-sensitive clipping on a line where the neighbours pixels are the closest.
11542
11543 @item 10
11544 Replaces the target pixel with the closest neighbour.
11545
11546 @item 11
11547 [1 2 1] horizontal and vertical kernel blur.
11548
11549 @item 12
11550 Same as mode 11.
11551
11552 @item 13
11553 Bob mode, interpolates top field from the line where the neighbours
11554 pixels are the closest.
11555
11556 @item 14
11557 Bob mode, interpolates bottom field from the line where the neighbours
11558 pixels are the closest.
11559
11560 @item 15
11561 Bob mode, interpolates top field. Same as 13 but with a more complicated
11562 interpolation formula.
11563
11564 @item 16
11565 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
11566 interpolation formula.
11567
11568 @item 17
11569 Clips the pixel with the minimum and maximum of respectively the maximum and
11570 minimum of each pair of opposite neighbour pixels.
11571
11572 @item 18
11573 Line-sensitive clipping using opposite neighbours whose greatest distance from
11574 the current pixel is minimal.
11575
11576 @item 19
11577 Replaces the pixel with the average of its 8 neighbours.
11578
11579 @item 20
11580 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
11581
11582 @item 21
11583 Clips pixels using the averages of opposite neighbour.
11584
11585 @item 22
11586 Same as mode 21 but simpler and faster.
11587
11588 @item 23
11589 Small edge and halo removal, but reputed useless.
11590
11591 @item 24
11592 Similar as 23.
11593 @end table
11594
11595 @section removelogo
11596
11597 Suppress a TV station logo, using an image file to determine which
11598 pixels comprise the logo. It works by filling in the pixels that
11599 comprise the logo with neighboring pixels.
11600
11601 The filter accepts the following options:
11602
11603 @table @option
11604 @item filename, f
11605 Set the filter bitmap file, which can be any image format supported by
11606 libavformat. The width and height of the image file must match those of the
11607 video stream being processed.
11608 @end table
11609
11610 Pixels in the provided bitmap image with a value of zero are not
11611 considered part of the logo, non-zero pixels are considered part of
11612 the logo. If you use white (255) for the logo and black (0) for the
11613 rest, you will be safe. For making the filter bitmap, it is
11614 recommended to take a screen capture of a black frame with the logo
11615 visible, and then using a threshold filter followed by the erode
11616 filter once or twice.
11617
11618 If needed, little splotches can be fixed manually. Remember that if
11619 logo pixels are not covered, the filter quality will be much
11620 reduced. Marking too many pixels as part of the logo does not hurt as
11621 much, but it will increase the amount of blurring needed to cover over
11622 the image and will destroy more information than necessary, and extra
11623 pixels will slow things down on a large logo.
11624
11625 @section repeatfields
11626
11627 This filter uses the repeat_field flag from the Video ES headers and hard repeats
11628 fields based on its value.
11629
11630 @section reverse
11631
11632 Reverse a video clip.
11633
11634 Warning: This filter requires memory to buffer the entire clip, so trimming
11635 is suggested.
11636
11637 @subsection Examples
11638
11639 @itemize
11640 @item
11641 Take the first 5 seconds of a clip, and reverse it.
11642 @example
11643 trim=end=5,reverse
11644 @end example
11645 @end itemize
11646
11647 @section rotate
11648
11649 Rotate video by an arbitrary angle expressed in radians.
11650
11651 The filter accepts the following options:
11652
11653 A description of the optional parameters follows.
11654 @table @option
11655 @item angle, a
11656 Set an expression for the angle by which to rotate the input video
11657 clockwise, expressed as a number of radians. A negative value will
11658 result in a counter-clockwise rotation. By default it is set to "0".
11659
11660 This expression is evaluated for each frame.
11661
11662 @item out_w, ow
11663 Set the output width expression, default value is "iw".
11664 This expression is evaluated just once during configuration.
11665
11666 @item out_h, oh
11667 Set the output height expression, default value is "ih".
11668 This expression is evaluated just once during configuration.
11669
11670 @item bilinear
11671 Enable bilinear interpolation if set to 1, a value of 0 disables
11672 it. Default value is 1.
11673
11674 @item fillcolor, c
11675 Set the color used to fill the output area not covered by the rotated
11676 image. For the general syntax of this option, check the "Color" section in the
11677 ffmpeg-utils manual. If the special value "none" is selected then no
11678 background is printed (useful for example if the background is never shown).
11679
11680 Default value is "black".
11681 @end table
11682
11683 The expressions for the angle and the output size can contain the
11684 following constants and functions:
11685
11686 @table @option
11687 @item n
11688 sequential number of the input frame, starting from 0. It is always NAN
11689 before the first frame is filtered.
11690
11691 @item t
11692 time in seconds of the input frame, it is set to 0 when the filter is
11693 configured. It is always NAN before the first frame is filtered.
11694
11695 @item hsub
11696 @item vsub
11697 horizontal and vertical chroma subsample values. For example for the
11698 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11699
11700 @item in_w, iw
11701 @item in_h, ih
11702 the input video width and height
11703
11704 @item out_w, ow
11705 @item out_h, oh
11706 the output width and height, that is the size of the padded area as
11707 specified by the @var{width} and @var{height} expressions
11708
11709 @item rotw(a)
11710 @item roth(a)
11711 the minimal width/height required for completely containing the input
11712 video rotated by @var{a} radians.
11713
11714 These are only available when computing the @option{out_w} and
11715 @option{out_h} expressions.
11716 @end table
11717
11718 @subsection Examples
11719
11720 @itemize
11721 @item
11722 Rotate the input by PI/6 radians clockwise:
11723 @example
11724 rotate=PI/6
11725 @end example
11726
11727 @item
11728 Rotate the input by PI/6 radians counter-clockwise:
11729 @example
11730 rotate=-PI/6
11731 @end example
11732
11733 @item
11734 Rotate the input by 45 degrees clockwise:
11735 @example
11736 rotate=45*PI/180
11737 @end example
11738
11739 @item
11740 Apply a constant rotation with period T, starting from an angle of PI/3:
11741 @example
11742 rotate=PI/3+2*PI*t/T
11743 @end example
11744
11745 @item
11746 Make the input video rotation oscillating with a period of T
11747 seconds and an amplitude of A radians:
11748 @example
11749 rotate=A*sin(2*PI/T*t)
11750 @end example
11751
11752 @item
11753 Rotate the video, output size is chosen so that the whole rotating
11754 input video is always completely contained in the output:
11755 @example
11756 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11757 @end example
11758
11759 @item
11760 Rotate the video, reduce the output size so that no background is ever
11761 shown:
11762 @example
11763 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11764 @end example
11765 @end itemize
11766
11767 @subsection Commands
11768
11769 The filter supports the following commands:
11770
11771 @table @option
11772 @item a, angle
11773 Set the angle expression.
11774 The command accepts the same syntax of the corresponding option.
11775
11776 If the specified expression is not valid, it is kept at its current
11777 value.
11778 @end table
11779
11780 @section sab
11781
11782 Apply Shape Adaptive Blur.
11783
11784 The filter accepts the following options:
11785
11786 @table @option
11787 @item luma_radius, lr
11788 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11789 value is 1.0. A greater value will result in a more blurred image, and
11790 in slower processing.
11791
11792 @item luma_pre_filter_radius, lpfr
11793 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11794 value is 1.0.
11795
11796 @item luma_strength, ls
11797 Set luma maximum difference between pixels to still be considered, must
11798 be a value in the 0.1-100.0 range, default value is 1.0.
11799
11800 @item chroma_radius, cr
11801 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11802 greater value will result in a more blurred image, and in slower
11803 processing.
11804
11805 @item chroma_pre_filter_radius, cpfr
11806 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11807
11808 @item chroma_strength, cs
11809 Set chroma maximum difference between pixels to still be considered,
11810 must be a value in the -0.9-100.0 range.
11811 @end table
11812
11813 Each chroma option value, if not explicitly specified, is set to the
11814 corresponding luma option value.
11815
11816 @anchor{scale}
11817 @section scale
11818
11819 Scale (resize) the input video, using the libswscale library.
11820
11821 The scale filter forces the output display aspect ratio to be the same
11822 of the input, by changing the output sample aspect ratio.
11823
11824 If the input image format is different from the format requested by
11825 the next filter, the scale filter will convert the input to the
11826 requested format.
11827
11828 @subsection Options
11829 The filter accepts the following options, or any of the options
11830 supported by the libswscale scaler.
11831
11832 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11833 the complete list of scaler options.
11834
11835 @table @option
11836 @item width, w
11837 @item height, h
11838 Set the output video dimension expression. Default value is the input
11839 dimension.
11840
11841 If the value is 0, the input width is used for the output.
11842
11843 If one of the values is -1, the scale filter will use a value that
11844 maintains the aspect ratio of the input image, calculated from the
11845 other specified dimension. If both of them are -1, the input size is
11846 used
11847
11848 If one of the values is -n with n > 1, the scale filter will also use a value
11849 that maintains the aspect ratio of the input image, calculated from the other
11850 specified dimension. After that it will, however, make sure that the calculated
11851 dimension is divisible by n and adjust the value if necessary.
11852
11853 See below for the list of accepted constants for use in the dimension
11854 expression.
11855
11856 @item eval
11857 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11858
11859 @table @samp
11860 @item init
11861 Only evaluate expressions once during the filter initialization or when a command is processed.
11862
11863 @item frame
11864 Evaluate expressions for each incoming frame.
11865
11866 @end table
11867
11868 Default value is @samp{init}.
11869
11870
11871 @item interl
11872 Set the interlacing mode. It accepts the following values:
11873
11874 @table @samp
11875 @item 1
11876 Force interlaced aware scaling.
11877
11878 @item 0
11879 Do not apply interlaced scaling.
11880
11881 @item -1
11882 Select interlaced aware scaling depending on whether the source frames
11883 are flagged as interlaced or not.
11884 @end table
11885
11886 Default value is @samp{0}.
11887
11888 @item flags
11889 Set libswscale scaling flags. See
11890 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11891 complete list of values. If not explicitly specified the filter applies
11892 the default flags.
11893
11894
11895 @item param0, param1
11896 Set libswscale input parameters for scaling algorithms that need them. See
11897 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11898 complete documentation. If not explicitly specified the filter applies
11899 empty parameters.
11900
11901
11902
11903 @item size, s
11904 Set the video size. For the syntax of this option, check the
11905 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11906
11907 @item in_color_matrix
11908 @item out_color_matrix
11909 Set in/output YCbCr color space type.
11910
11911 This allows the autodetected value to be overridden as well as allows forcing
11912 a specific value used for the output and encoder.
11913
11914 If not specified, the color space type depends on the pixel format.
11915
11916 Possible values:
11917
11918 @table @samp
11919 @item auto
11920 Choose automatically.
11921
11922 @item bt709
11923 Format conforming to International Telecommunication Union (ITU)
11924 Recommendation BT.709.
11925
11926 @item fcc
11927 Set color space conforming to the United States Federal Communications
11928 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11929
11930 @item bt601
11931 Set color space conforming to:
11932
11933 @itemize
11934 @item
11935 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11936
11937 @item
11938 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11939
11940 @item
11941 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11942
11943 @end itemize
11944
11945 @item smpte240m
11946 Set color space conforming to SMPTE ST 240:1999.
11947 @end table
11948
11949 @item in_range
11950 @item out_range
11951 Set in/output YCbCr sample range.
11952
11953 This allows the autodetected value to be overridden as well as allows forcing
11954 a specific value used for the output and encoder. If not specified, the
11955 range depends on the pixel format. Possible values:
11956
11957 @table @samp
11958 @item auto
11959 Choose automatically.
11960
11961 @item jpeg/full/pc
11962 Set full range (0-255 in case of 8-bit luma).
11963
11964 @item mpeg/tv
11965 Set "MPEG" range (16-235 in case of 8-bit luma).
11966 @end table
11967
11968 @item force_original_aspect_ratio
11969 Enable decreasing or increasing output video width or height if necessary to
11970 keep the original aspect ratio. Possible values:
11971
11972 @table @samp
11973 @item disable
11974 Scale the video as specified and disable this feature.
11975
11976 @item decrease
11977 The output video dimensions will automatically be decreased if needed.
11978
11979 @item increase
11980 The output video dimensions will automatically be increased if needed.
11981
11982 @end table
11983
11984 One useful instance of this option is that when you know a specific device's
11985 maximum allowed resolution, you can use this to limit the output video to
11986 that, while retaining the aspect ratio. For example, device A allows
11987 1280x720 playback, and your video is 1920x800. Using this option (set it to
11988 decrease) and specifying 1280x720 to the command line makes the output
11989 1280x533.
11990
11991 Please note that this is a different thing than specifying -1 for @option{w}
11992 or @option{h}, you still need to specify the output resolution for this option
11993 to work.
11994
11995 @end table
11996
11997 The values of the @option{w} and @option{h} options are expressions
11998 containing the following constants:
11999
12000 @table @var
12001 @item in_w
12002 @item in_h
12003 The input width and height
12004
12005 @item iw
12006 @item ih
12007 These are the same as @var{in_w} and @var{in_h}.
12008
12009 @item out_w
12010 @item out_h
12011 The output (scaled) width and height
12012
12013 @item ow
12014 @item oh
12015 These are the same as @var{out_w} and @var{out_h}
12016
12017 @item a
12018 The same as @var{iw} / @var{ih}
12019
12020 @item sar
12021 input sample aspect ratio
12022
12023 @item dar
12024 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
12025
12026 @item hsub
12027 @item vsub
12028 horizontal and vertical input chroma subsample values. For example for the
12029 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12030
12031 @item ohsub
12032 @item ovsub
12033 horizontal and vertical output chroma subsample values. For example for the
12034 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12035 @end table
12036
12037 @subsection Examples
12038
12039 @itemize
12040 @item
12041 Scale the input video to a size of 200x100
12042 @example
12043 scale=w=200:h=100
12044 @end example
12045
12046 This is equivalent to:
12047 @example
12048 scale=200:100
12049 @end example
12050
12051 or:
12052 @example
12053 scale=200x100
12054 @end example
12055
12056 @item
12057 Specify a size abbreviation for the output size:
12058 @example
12059 scale=qcif
12060 @end example
12061
12062 which can also be written as:
12063 @example
12064 scale=size=qcif
12065 @end example
12066
12067 @item
12068 Scale the input to 2x:
12069 @example
12070 scale=w=2*iw:h=2*ih
12071 @end example
12072
12073 @item
12074 The above is the same as:
12075 @example
12076 scale=2*in_w:2*in_h
12077 @end example
12078
12079 @item
12080 Scale the input to 2x with forced interlaced scaling:
12081 @example
12082 scale=2*iw:2*ih:interl=1
12083 @end example
12084
12085 @item
12086 Scale the input to half size:
12087 @example
12088 scale=w=iw/2:h=ih/2
12089 @end example
12090
12091 @item
12092 Increase the width, and set the height to the same size:
12093 @example
12094 scale=3/2*iw:ow
12095 @end example
12096
12097 @item
12098 Seek Greek harmony:
12099 @example
12100 scale=iw:1/PHI*iw
12101 scale=ih*PHI:ih
12102 @end example
12103
12104 @item
12105 Increase the height, and set the width to 3/2 of the height:
12106 @example
12107 scale=w=3/2*oh:h=3/5*ih
12108 @end example
12109
12110 @item
12111 Increase the size, making the size a multiple of the chroma
12112 subsample values:
12113 @example
12114 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
12115 @end example
12116
12117 @item
12118 Increase the width to a maximum of 500 pixels,
12119 keeping the same aspect ratio as the input:
12120 @example
12121 scale=w='min(500\, iw*3/2):h=-1'
12122 @end example
12123 @end itemize
12124
12125 @subsection Commands
12126
12127 This filter supports the following commands:
12128 @table @option
12129 @item width, w
12130 @item height, h
12131 Set the output video dimension expression.
12132 The command accepts the same syntax of the corresponding option.
12133
12134 If the specified expression is not valid, it is kept at its current
12135 value.
12136 @end table
12137
12138 @section scale_npp
12139
12140 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
12141 format conversion on CUDA video frames. Setting the output width and height
12142 works in the same way as for the @var{scale} filter.
12143
12144 The following additional options are accepted:
12145 @table @option
12146 @item format
12147 The pixel format of the output CUDA frames. If set to the string "same" (the
12148 default), the input format will be kept. Note that automatic format negotiation
12149 and conversion is not yet supported for hardware frames
12150
12151 @item interp_algo
12152 The interpolation algorithm used for resizing. One of the following:
12153 @table @option
12154 @item nn
12155 Nearest neighbour.
12156
12157 @item linear
12158 @item cubic
12159 @item cubic2p_bspline
12160 2-parameter cubic (B=1, C=0)
12161
12162 @item cubic2p_catmullrom
12163 2-parameter cubic (B=0, C=1/2)
12164
12165 @item cubic2p_b05c03
12166 2-parameter cubic (B=1/2, C=3/10)
12167
12168 @item super
12169 Supersampling
12170
12171 @item lanczos
12172 @end table
12173
12174 @end table
12175
12176 @section scale2ref
12177
12178 Scale (resize) the input video, based on a reference video.
12179
12180 See the scale filter for available options, scale2ref supports the same but
12181 uses the reference video instead of the main input as basis.
12182
12183 @subsection Examples
12184
12185 @itemize
12186 @item
12187 Scale a subtitle stream to match the main video in size before overlaying
12188 @example
12189 'scale2ref[b][a];[a][b]overlay'
12190 @end example
12191 @end itemize
12192
12193 @anchor{selectivecolor}
12194 @section selectivecolor
12195
12196 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
12197 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
12198 by the "purity" of the color (that is, how saturated it already is).
12199
12200 This filter is similar to the Adobe Photoshop Selective Color tool.
12201
12202 The filter accepts the following options:
12203
12204 @table @option
12205 @item correction_method
12206 Select color correction method.
12207
12208 Available values are:
12209 @table @samp
12210 @item absolute
12211 Specified adjustments are applied "as-is" (added/subtracted to original pixel
12212 component value).
12213 @item relative
12214 Specified adjustments are relative to the original component value.
12215 @end table
12216 Default is @code{absolute}.
12217 @item reds
12218 Adjustments for red pixels (pixels where the red component is the maximum)
12219 @item yellows
12220 Adjustments for yellow pixels (pixels where the blue component is the minimum)
12221 @item greens
12222 Adjustments for green pixels (pixels where the green component is the maximum)
12223 @item cyans
12224 Adjustments for cyan pixels (pixels where the red component is the minimum)
12225 @item blues
12226 Adjustments for blue pixels (pixels where the blue component is the maximum)
12227 @item magentas
12228 Adjustments for magenta pixels (pixels where the green component is the minimum)
12229 @item whites
12230 Adjustments for white pixels (pixels where all components are greater than 128)
12231 @item neutrals
12232 Adjustments for all pixels except pure black and pure white
12233 @item blacks
12234 Adjustments for black pixels (pixels where all components are lesser than 128)
12235 @item psfile
12236 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
12237 @end table
12238
12239 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
12240 4 space separated floating point adjustment values in the [-1,1] range,
12241 respectively to adjust the amount of cyan, magenta, yellow and black for the
12242 pixels of its range.
12243
12244 @subsection Examples
12245
12246 @itemize
12247 @item
12248 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
12249 increase magenta by 27% in blue areas:
12250 @example
12251 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
12252 @end example
12253
12254 @item
12255 Use a Photoshop selective color preset:
12256 @example
12257 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
12258 @end example
12259 @end itemize
12260
12261 @anchor{separatefields}
12262 @section separatefields
12263
12264 The @code{separatefields} takes a frame-based video input and splits
12265 each frame into its components fields, producing a new half height clip
12266 with twice the frame rate and twice the frame count.
12267
12268 This filter use field-dominance information in frame to decide which
12269 of each pair of fields to place first in the output.
12270 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
12271
12272 @section setdar, setsar
12273
12274 The @code{setdar} filter sets the Display Aspect Ratio for the filter
12275 output video.
12276
12277 This is done by changing the specified Sample (aka Pixel) Aspect
12278 Ratio, according to the following equation:
12279 @example
12280 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
12281 @end example
12282
12283 Keep in mind that the @code{setdar} filter does not modify the pixel
12284 dimensions of the video frame. Also, the display aspect ratio set by
12285 this filter may be changed by later filters in the filterchain,
12286 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
12287 applied.
12288
12289 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
12290 the filter output video.
12291
12292 Note that as a consequence of the application of this filter, the
12293 output display aspect ratio will change according to the equation
12294 above.
12295
12296 Keep in mind that the sample aspect ratio set by the @code{setsar}
12297 filter may be changed by later filters in the filterchain, e.g. if
12298 another "setsar" or a "setdar" filter is applied.
12299
12300 It accepts the following parameters:
12301
12302 @table @option
12303 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
12304 Set the aspect ratio used by the filter.
12305
12306 The parameter can be a floating point number string, an expression, or
12307 a string of the form @var{num}:@var{den}, where @var{num} and
12308 @var{den} are the numerator and denominator of the aspect ratio. If
12309 the parameter is not specified, it is assumed the value "0".
12310 In case the form "@var{num}:@var{den}" is used, the @code{:} character
12311 should be escaped.
12312
12313 @item max
12314 Set the maximum integer value to use for expressing numerator and
12315 denominator when reducing the expressed aspect ratio to a rational.
12316 Default value is @code{100}.
12317
12318 @end table
12319
12320 The parameter @var{sar} is an expression containing
12321 the following constants:
12322
12323 @table @option
12324 @item E, PI, PHI
12325 These are approximated values for the mathematical constants e
12326 (Euler's number), pi (Greek pi), and phi (the golden ratio).
12327
12328 @item w, h
12329 The input width and height.
12330
12331 @item a
12332 These are the same as @var{w} / @var{h}.
12333
12334 @item sar
12335 The input sample aspect ratio.
12336
12337 @item dar
12338 The input display aspect ratio. It is the same as
12339 (@var{w} / @var{h}) * @var{sar}.
12340
12341 @item hsub, vsub
12342 Horizontal and vertical chroma subsample values. For example, for the
12343 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12344 @end table
12345
12346 @subsection Examples
12347
12348 @itemize
12349
12350 @item
12351 To change the display aspect ratio to 16:9, specify one of the following:
12352 @example
12353 setdar=dar=1.77777
12354 setdar=dar=16/9
12355 @end example
12356
12357 @item
12358 To change the sample aspect ratio to 10:11, specify:
12359 @example
12360 setsar=sar=10/11
12361 @end example
12362
12363 @item
12364 To set a display aspect ratio of 16:9, and specify a maximum integer value of
12365 1000 in the aspect ratio reduction, use the command:
12366 @example
12367 setdar=ratio=16/9:max=1000
12368 @end example
12369
12370 @end itemize
12371
12372 @anchor{setfield}
12373 @section setfield
12374
12375 Force field for the output video frame.
12376
12377 The @code{setfield} filter marks the interlace type field for the
12378 output frames. It does not change the input frame, but only sets the
12379 corresponding property, which affects how the frame is treated by
12380 following filters (e.g. @code{fieldorder} or @code{yadif}).
12381
12382 The filter accepts the following options:
12383
12384 @table @option
12385
12386 @item mode
12387 Available values are:
12388
12389 @table @samp
12390 @item auto
12391 Keep the same field property.
12392
12393 @item bff
12394 Mark the frame as bottom-field-first.
12395
12396 @item tff
12397 Mark the frame as top-field-first.
12398
12399 @item prog
12400 Mark the frame as progressive.
12401 @end table
12402 @end table
12403
12404 @section showinfo
12405
12406 Show a line containing various information for each input video frame.
12407 The input video is not modified.
12408
12409 The shown line contains a sequence of key/value pairs of the form
12410 @var{key}:@var{value}.
12411
12412 The following values are shown in the output:
12413
12414 @table @option
12415 @item n
12416 The (sequential) number of the input frame, starting from 0.
12417
12418 @item pts
12419 The Presentation TimeStamp of the input frame, expressed as a number of
12420 time base units. The time base unit depends on the filter input pad.
12421
12422 @item pts_time
12423 The Presentation TimeStamp of the input frame, expressed as a number of
12424 seconds.
12425
12426 @item pos
12427 The position of the frame in the input stream, or -1 if this information is
12428 unavailable and/or meaningless (for example in case of synthetic video).
12429
12430 @item fmt
12431 The pixel format name.
12432
12433 @item sar
12434 The sample aspect ratio of the input frame, expressed in the form
12435 @var{num}/@var{den}.
12436
12437 @item s
12438 The size of the input frame. For the syntax of this option, check the
12439 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12440
12441 @item i
12442 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
12443 for bottom field first).
12444
12445 @item iskey
12446 This is 1 if the frame is a key frame, 0 otherwise.
12447
12448 @item type
12449 The picture type of the input frame ("I" for an I-frame, "P" for a
12450 P-frame, "B" for a B-frame, or "?" for an unknown type).
12451 Also refer to the documentation of the @code{AVPictureType} enum and of
12452 the @code{av_get_picture_type_char} function defined in
12453 @file{libavutil/avutil.h}.
12454
12455 @item checksum
12456 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
12457
12458 @item plane_checksum
12459 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
12460 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
12461 @end table
12462
12463 @section showpalette
12464
12465 Displays the 256 colors palette of each frame. This filter is only relevant for
12466 @var{pal8} pixel format frames.
12467
12468 It accepts the following option:
12469
12470 @table @option
12471 @item s
12472 Set the size of the box used to represent one palette color entry. Default is
12473 @code{30} (for a @code{30x30} pixel box).
12474 @end table
12475
12476 @section shuffleframes
12477
12478 Reorder and/or duplicate and/or drop video frames.
12479
12480 It accepts the following parameters:
12481
12482 @table @option
12483 @item mapping
12484 Set the destination indexes of input frames.
12485 This is space or '|' separated list of indexes that maps input frames to output
12486 frames. Number of indexes also sets maximal value that each index may have.
12487 '-1' index have special meaning and that is to drop frame.
12488 @end table
12489
12490 The first frame has the index 0. The default is to keep the input unchanged.
12491
12492 @subsection Examples
12493
12494 @itemize
12495 @item
12496 Swap second and third frame of every three frames of the input:
12497 @example
12498 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
12499 @end example
12500
12501 @item
12502 Swap 10th and 1st frame of every ten frames of the input:
12503 @example
12504 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
12505 @end example
12506 @end itemize
12507
12508 @section shuffleplanes
12509
12510 Reorder and/or duplicate video planes.
12511
12512 It accepts the following parameters:
12513
12514 @table @option
12515
12516 @item map0
12517 The index of the input plane to be used as the first output plane.
12518
12519 @item map1
12520 The index of the input plane to be used as the second output plane.
12521
12522 @item map2
12523 The index of the input plane to be used as the third output plane.
12524
12525 @item map3
12526 The index of the input plane to be used as the fourth output plane.
12527
12528 @end table
12529
12530 The first plane has the index 0. The default is to keep the input unchanged.
12531
12532 @subsection Examples
12533
12534 @itemize
12535 @item
12536 Swap the second and third planes of the input:
12537 @example
12538 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
12539 @end example
12540 @end itemize
12541
12542 @anchor{signalstats}
12543 @section signalstats
12544 Evaluate various visual metrics that assist in determining issues associated
12545 with the digitization of analog video media.
12546
12547 By default the filter will log these metadata values:
12548
12549 @table @option
12550 @item YMIN
12551 Display the minimal Y value contained within the input frame. Expressed in
12552 range of [0-255].
12553
12554 @item YLOW
12555 Display the Y value at the 10% percentile within the input frame. Expressed in
12556 range of [0-255].
12557
12558 @item YAVG
12559 Display the average Y value within the input frame. Expressed in range of
12560 [0-255].
12561
12562 @item YHIGH
12563 Display the Y value at the 90% percentile within the input frame. Expressed in
12564 range of [0-255].
12565
12566 @item YMAX
12567 Display the maximum Y value contained within the input frame. Expressed in
12568 range of [0-255].
12569
12570 @item UMIN
12571 Display the minimal U value contained within the input frame. Expressed in
12572 range of [0-255].
12573
12574 @item ULOW
12575 Display the U value at the 10% percentile within the input frame. Expressed in
12576 range of [0-255].
12577
12578 @item UAVG
12579 Display the average U value within the input frame. Expressed in range of
12580 [0-255].
12581
12582 @item UHIGH
12583 Display the U value at the 90% percentile within the input frame. Expressed in
12584 range of [0-255].
12585
12586 @item UMAX
12587 Display the maximum U value contained within the input frame. Expressed in
12588 range of [0-255].
12589
12590 @item VMIN
12591 Display the minimal V value contained within the input frame. Expressed in
12592 range of [0-255].
12593
12594 @item VLOW
12595 Display the V value at the 10% percentile within the input frame. Expressed in
12596 range of [0-255].
12597
12598 @item VAVG
12599 Display the average V value within the input frame. Expressed in range of
12600 [0-255].
12601
12602 @item VHIGH
12603 Display the V value at the 90% percentile within the input frame. Expressed in
12604 range of [0-255].
12605
12606 @item VMAX
12607 Display the maximum V value contained within the input frame. Expressed in
12608 range of [0-255].
12609
12610 @item SATMIN
12611 Display the minimal saturation value contained within the input frame.
12612 Expressed in range of [0-~181.02].
12613
12614 @item SATLOW
12615 Display the saturation value at the 10% percentile within the input frame.
12616 Expressed in range of [0-~181.02].
12617
12618 @item SATAVG
12619 Display the average saturation value within the input frame. Expressed in range
12620 of [0-~181.02].
12621
12622 @item SATHIGH
12623 Display the saturation value at the 90% percentile within the input frame.
12624 Expressed in range of [0-~181.02].
12625
12626 @item SATMAX
12627 Display the maximum saturation value contained within the input frame.
12628 Expressed in range of [0-~181.02].
12629
12630 @item HUEMED
12631 Display the median value for hue within the input frame. Expressed in range of
12632 [0-360].
12633
12634 @item HUEAVG
12635 Display the average value for hue within the input frame. Expressed in range of
12636 [0-360].
12637
12638 @item YDIF
12639 Display the average of sample value difference between all values of the Y
12640 plane in the current frame and corresponding values of the previous input frame.
12641 Expressed in range of [0-255].
12642
12643 @item UDIF
12644 Display the average of sample value difference between all values of the U
12645 plane in the current frame and corresponding values of the previous input frame.
12646 Expressed in range of [0-255].
12647
12648 @item VDIF
12649 Display the average of sample value difference between all values of the V
12650 plane in the current frame and corresponding values of the previous input frame.
12651 Expressed in range of [0-255].
12652
12653 @item YBITDEPTH
12654 Display bit depth of Y plane in current frame.
12655 Expressed in range of [0-16].
12656
12657 @item UBITDEPTH
12658 Display bit depth of U plane in current frame.
12659 Expressed in range of [0-16].
12660
12661 @item VBITDEPTH
12662 Display bit depth of V plane in current frame.
12663 Expressed in range of [0-16].
12664 @end table
12665
12666 The filter accepts the following options:
12667
12668 @table @option
12669 @item stat
12670 @item out
12671
12672 @option{stat} specify an additional form of image analysis.
12673 @option{out} output video with the specified type of pixel highlighted.
12674
12675 Both options accept the following values:
12676
12677 @table @samp
12678 @item tout
12679 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
12680 unlike the neighboring pixels of the same field. Examples of temporal outliers
12681 include the results of video dropouts, head clogs, or tape tracking issues.
12682
12683 @item vrep
12684 Identify @var{vertical line repetition}. Vertical line repetition includes
12685 similar rows of pixels within a frame. In born-digital video vertical line
12686 repetition is common, but this pattern is uncommon in video digitized from an
12687 analog source. When it occurs in video that results from the digitization of an
12688 analog source it can indicate concealment from a dropout compensator.
12689
12690 @item brng
12691 Identify pixels that fall outside of legal broadcast range.
12692 @end table
12693
12694 @item color, c
12695 Set the highlight color for the @option{out} option. The default color is
12696 yellow.
12697 @end table
12698
12699 @subsection Examples
12700
12701 @itemize
12702 @item
12703 Output data of various video metrics:
12704 @example
12705 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
12706 @end example
12707
12708 @item
12709 Output specific data about the minimum and maximum values of the Y plane per frame:
12710 @example
12711 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
12712 @end example
12713
12714 @item
12715 Playback video while highlighting pixels that are outside of broadcast range in red.
12716 @example
12717 ffplay example.mov -vf signalstats="out=brng:color=red"
12718 @end example
12719
12720 @item
12721 Playback video with signalstats metadata drawn over the frame.
12722 @example
12723 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12724 @end example
12725
12726 The contents of signalstat_drawtext.txt used in the command are:
12727 @example
12728 time %@{pts:hms@}
12729 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12730 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12731 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12732 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12733
12734 @end example
12735 @end itemize
12736
12737 @anchor{signature}
12738 @section signature
12739
12740 Calculates the MPEG-7 Video Signature. The filter can handle more than one
12741 input. In this case the matching between the inputs can be calculated additionally.
12742 The filter always passes through the first input. The signature of each stream can
12743 be written into a file.
12744
12745 It accepts the following options:
12746
12747 @table @option
12748 @item detectmode
12749 Enable or disable the matching process.
12750
12751 Available values are:
12752
12753 @table @samp
12754 @item off
12755 Disable the calculation of a matching (default).
12756 @item full
12757 Calculate the matching for the whole video and output whether the whole video
12758 matches or only parts.
12759 @item fast
12760 Calculate only until a matching is found or the video ends. Should be faster in
12761 some cases.
12762 @end table
12763
12764 @item nb_inputs
12765 Set the number of inputs. The option value must be a non negative integer.
12766 Default value is 1.
12767
12768 @item filename
12769 Set the path to which the output is written. If there is more than one input,
12770 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
12771 integer), that will be replaced with the input number. If no filename is
12772 specified, no output will be written. This is the default.
12773
12774 @item format
12775 Choose the output format.
12776
12777 Available values are:
12778
12779 @table @samp
12780 @item binary
12781 Use the specified binary representation (default).
12782 @item xml
12783 Use the specified xml representation.
12784 @end table
12785
12786 @item th_d
12787 Set threshold to detect one word as similar. The option value must be an integer
12788 greater than zero. The default value is 9000.
12789
12790 @item th_dc
12791 Set threshold to detect all words as similar. The option value must be an integer
12792 greater than zero. The default value is 60000.
12793
12794 @item th_xh
12795 Set threshold to detect frames as similar. The option value must be an integer
12796 greater than zero. The default value is 116.
12797
12798 @item th_di
12799 Set the minimum length of a sequence in frames to recognize it as matching
12800 sequence. The option value must be a non negative integer value.
12801 The default value is 0.
12802
12803 @item th_it
12804 Set the minimum relation, that matching frames to all frames must have.
12805 The option value must be a double value between 0 and 1. The default value is 0.5.
12806 @end table
12807
12808 @subsection Examples
12809
12810 @itemize
12811 @item
12812 To calculate the signature of an input video and store it in signature.bin:
12813 @example
12814 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
12815 @end example
12816
12817 @item
12818 To detect whether two videos match and store the signatures in XML format in
12819 signature0.xml and signature1.xml:
12820 @example
12821 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 -
12822 @end example
12823
12824 @end itemize
12825
12826 @anchor{smartblur}
12827 @section smartblur
12828
12829 Blur the input video without impacting the outlines.
12830
12831 It accepts the following options:
12832
12833 @table @option
12834 @item luma_radius, lr
12835 Set the luma radius. The option value must be a float number in
12836 the range [0.1,5.0] that specifies the variance of the gaussian filter
12837 used to blur the image (slower if larger). Default value is 1.0.
12838
12839 @item luma_strength, ls
12840 Set the luma strength. The option value must be a float number
12841 in the range [-1.0,1.0] that configures the blurring. A value included
12842 in [0.0,1.0] will blur the image whereas a value included in
12843 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12844
12845 @item luma_threshold, lt
12846 Set the luma threshold used as a coefficient to determine
12847 whether a pixel should be blurred or not. The option value must be an
12848 integer in the range [-30,30]. A value of 0 will filter all the image,
12849 a value included in [0,30] will filter flat areas and a value included
12850 in [-30,0] will filter edges. Default value is 0.
12851
12852 @item chroma_radius, cr
12853 Set the chroma radius. The option value must be a float number in
12854 the range [0.1,5.0] that specifies the variance of the gaussian filter
12855 used to blur the image (slower if larger). Default value is @option{luma_radius}.
12856
12857 @item chroma_strength, cs
12858 Set the chroma strength. The option value must be a float number
12859 in the range [-1.0,1.0] that configures the blurring. A value included
12860 in [0.0,1.0] will blur the image whereas a value included in
12861 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
12862
12863 @item chroma_threshold, ct
12864 Set the chroma threshold used as a coefficient to determine
12865 whether a pixel should be blurred or not. The option value must be an
12866 integer in the range [-30,30]. A value of 0 will filter all the image,
12867 a value included in [0,30] will filter flat areas and a value included
12868 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
12869 @end table
12870
12871 If a chroma option is not explicitly set, the corresponding luma value
12872 is set.
12873
12874 @section ssim
12875
12876 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12877
12878 This filter takes in input two input videos, the first input is
12879 considered the "main" source and is passed unchanged to the
12880 output. The second input is used as a "reference" video for computing
12881 the SSIM.
12882
12883 Both video inputs must have the same resolution and pixel format for
12884 this filter to work correctly. Also it assumes that both inputs
12885 have the same number of frames, which are compared one by one.
12886
12887 The filter stores the calculated SSIM of each frame.
12888
12889 The description of the accepted parameters follows.
12890
12891 @table @option
12892 @item stats_file, f
12893 If specified the filter will use the named file to save the SSIM of
12894 each individual frame. When filename equals "-" the data is sent to
12895 standard output.
12896 @end table
12897
12898 The file printed if @var{stats_file} is selected, contains a sequence of
12899 key/value pairs of the form @var{key}:@var{value} for each compared
12900 couple of frames.
12901
12902 A description of each shown parameter follows:
12903
12904 @table @option
12905 @item n
12906 sequential number of the input frame, starting from 1
12907
12908 @item Y, U, V, R, G, B
12909 SSIM of the compared frames for the component specified by the suffix.
12910
12911 @item All
12912 SSIM of the compared frames for the whole frame.
12913
12914 @item dB
12915 Same as above but in dB representation.
12916 @end table
12917
12918 For example:
12919 @example
12920 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12921 [main][ref] ssim="stats_file=stats.log" [out]
12922 @end example
12923
12924 On this example the input file being processed is compared with the
12925 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12926 is stored in @file{stats.log}.
12927
12928 Another example with both psnr and ssim at same time:
12929 @example
12930 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12931 @end example
12932
12933 @section stereo3d
12934
12935 Convert between different stereoscopic image formats.
12936
12937 The filters accept the following options:
12938
12939 @table @option
12940 @item in
12941 Set stereoscopic image format of input.
12942
12943 Available values for input image formats are:
12944 @table @samp
12945 @item sbsl
12946 side by side parallel (left eye left, right eye right)
12947
12948 @item sbsr
12949 side by side crosseye (right eye left, left eye right)
12950
12951 @item sbs2l
12952 side by side parallel with half width resolution
12953 (left eye left, right eye right)
12954
12955 @item sbs2r
12956 side by side crosseye with half width resolution
12957 (right eye left, left eye right)
12958
12959 @item abl
12960 above-below (left eye above, right eye below)
12961
12962 @item abr
12963 above-below (right eye above, left eye below)
12964
12965 @item ab2l
12966 above-below with half height resolution
12967 (left eye above, right eye below)
12968
12969 @item ab2r
12970 above-below with half height resolution
12971 (right eye above, left eye below)
12972
12973 @item al
12974 alternating frames (left eye first, right eye second)
12975
12976 @item ar
12977 alternating frames (right eye first, left eye second)
12978
12979 @item irl
12980 interleaved rows (left eye has top row, right eye starts on next row)
12981
12982 @item irr
12983 interleaved rows (right eye has top row, left eye starts on next row)
12984
12985 @item icl
12986 interleaved columns, left eye first
12987
12988 @item icr
12989 interleaved columns, right eye first
12990
12991 Default value is @samp{sbsl}.
12992 @end table
12993
12994 @item out
12995 Set stereoscopic image format of output.
12996
12997 @table @samp
12998 @item sbsl
12999 side by side parallel (left eye left, right eye right)
13000
13001 @item sbsr
13002 side by side crosseye (right eye left, left eye right)
13003
13004 @item sbs2l
13005 side by side parallel with half width resolution
13006 (left eye left, right eye right)
13007
13008 @item sbs2r
13009 side by side crosseye with half width resolution
13010 (right eye left, left eye right)
13011
13012 @item abl
13013 above-below (left eye above, right eye below)
13014
13015 @item abr
13016 above-below (right eye above, left eye below)
13017
13018 @item ab2l
13019 above-below with half height resolution
13020 (left eye above, right eye below)
13021
13022 @item ab2r
13023 above-below with half height resolution
13024 (right eye above, left eye below)
13025
13026 @item al
13027 alternating frames (left eye first, right eye second)
13028
13029 @item ar
13030 alternating frames (right eye first, left eye second)
13031
13032 @item irl
13033 interleaved rows (left eye has top row, right eye starts on next row)
13034
13035 @item irr
13036 interleaved rows (right eye has top row, left eye starts on next row)
13037
13038 @item arbg
13039 anaglyph red/blue gray
13040 (red filter on left eye, blue filter on right eye)
13041
13042 @item argg
13043 anaglyph red/green gray
13044 (red filter on left eye, green filter on right eye)
13045
13046 @item arcg
13047 anaglyph red/cyan gray
13048 (red filter on left eye, cyan filter on right eye)
13049
13050 @item arch
13051 anaglyph red/cyan half colored
13052 (red filter on left eye, cyan filter on right eye)
13053
13054 @item arcc
13055 anaglyph red/cyan color
13056 (red filter on left eye, cyan filter on right eye)
13057
13058 @item arcd
13059 anaglyph red/cyan color optimized with the least squares projection of dubois
13060 (red filter on left eye, cyan filter on right eye)
13061
13062 @item agmg
13063 anaglyph green/magenta gray
13064 (green filter on left eye, magenta filter on right eye)
13065
13066 @item agmh
13067 anaglyph green/magenta half colored
13068 (green filter on left eye, magenta filter on right eye)
13069
13070 @item agmc
13071 anaglyph green/magenta colored
13072 (green filter on left eye, magenta filter on right eye)
13073
13074 @item agmd
13075 anaglyph green/magenta color optimized with the least squares projection of dubois
13076 (green filter on left eye, magenta filter on right eye)
13077
13078 @item aybg
13079 anaglyph yellow/blue gray
13080 (yellow filter on left eye, blue filter on right eye)
13081
13082 @item aybh
13083 anaglyph yellow/blue half colored
13084 (yellow filter on left eye, blue filter on right eye)
13085
13086 @item aybc
13087 anaglyph yellow/blue colored
13088 (yellow filter on left eye, blue filter on right eye)
13089
13090 @item aybd
13091 anaglyph yellow/blue color optimized with the least squares projection of dubois
13092 (yellow filter on left eye, blue filter on right eye)
13093
13094 @item ml
13095 mono output (left eye only)
13096
13097 @item mr
13098 mono output (right eye only)
13099
13100 @item chl
13101 checkerboard, left eye first
13102
13103 @item chr
13104 checkerboard, right eye first
13105
13106 @item icl
13107 interleaved columns, left eye first
13108
13109 @item icr
13110 interleaved columns, right eye first
13111
13112 @item hdmi
13113 HDMI frame pack
13114 @end table
13115
13116 Default value is @samp{arcd}.
13117 @end table
13118
13119 @subsection Examples
13120
13121 @itemize
13122 @item
13123 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
13124 @example
13125 stereo3d=sbsl:aybd
13126 @end example
13127
13128 @item
13129 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
13130 @example
13131 stereo3d=abl:sbsr
13132 @end example
13133 @end itemize
13134
13135 @section streamselect, astreamselect
13136 Select video or audio streams.
13137
13138 The filter accepts the following options:
13139
13140 @table @option
13141 @item inputs
13142 Set number of inputs. Default is 2.
13143
13144 @item map
13145 Set input indexes to remap to outputs.
13146 @end table
13147
13148 @subsection Commands
13149
13150 The @code{streamselect} and @code{astreamselect} filter supports the following
13151 commands:
13152
13153 @table @option
13154 @item map
13155 Set input indexes to remap to outputs.
13156 @end table
13157
13158 @subsection Examples
13159
13160 @itemize
13161 @item
13162 Select first 5 seconds 1st stream and rest of time 2nd stream:
13163 @example
13164 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
13165 @end example
13166
13167 @item
13168 Same as above, but for audio:
13169 @example
13170 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
13171 @end example
13172 @end itemize
13173
13174 @section sobel
13175 Apply sobel operator to input video stream.
13176
13177 The filter accepts the following option:
13178
13179 @table @option
13180 @item planes
13181 Set which planes will be processed, unprocessed planes will be copied.
13182 By default value 0xf, all planes will be processed.
13183
13184 @item scale
13185 Set value which will be multiplied with filtered result.
13186
13187 @item delta
13188 Set value which will be added to filtered result.
13189 @end table
13190
13191 @anchor{spp}
13192 @section spp
13193
13194 Apply a simple postprocessing filter that compresses and decompresses the image
13195 at several (or - in the case of @option{quality} level @code{6} - all) shifts
13196 and average the results.
13197
13198 The filter accepts the following options:
13199
13200 @table @option
13201 @item quality
13202 Set quality. This option defines the number of levels for averaging. It accepts
13203 an integer in the range 0-6. If set to @code{0}, the filter will have no
13204 effect. A value of @code{6} means the higher quality. For each increment of
13205 that value the speed drops by a factor of approximately 2.  Default value is
13206 @code{3}.
13207
13208 @item qp
13209 Force a constant quantization parameter. If not set, the filter will use the QP
13210 from the video stream (if available).
13211
13212 @item mode
13213 Set thresholding mode. Available modes are:
13214
13215 @table @samp
13216 @item hard
13217 Set hard thresholding (default).
13218 @item soft
13219 Set soft thresholding (better de-ringing effect, but likely blurrier).
13220 @end table
13221
13222 @item use_bframe_qp
13223 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
13224 option may cause flicker since the B-Frames have often larger QP. Default is
13225 @code{0} (not enabled).
13226 @end table
13227
13228 @anchor{subtitles}
13229 @section subtitles
13230
13231 Draw subtitles on top of input video using the libass library.
13232
13233 To enable compilation of this filter you need to configure FFmpeg with
13234 @code{--enable-libass}. This filter also requires a build with libavcodec and
13235 libavformat to convert the passed subtitles file to ASS (Advanced Substation
13236 Alpha) subtitles format.
13237
13238 The filter accepts the following options:
13239
13240 @table @option
13241 @item filename, f
13242 Set the filename of the subtitle file to read. It must be specified.
13243
13244 @item original_size
13245 Specify the size of the original video, the video for which the ASS file
13246 was composed. For the syntax of this option, check the
13247 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13248 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
13249 correctly scale the fonts if the aspect ratio has been changed.
13250
13251 @item fontsdir
13252 Set a directory path containing fonts that can be used by the filter.
13253 These fonts will be used in addition to whatever the font provider uses.
13254
13255 @item charenc
13256 Set subtitles input character encoding. @code{subtitles} filter only. Only
13257 useful if not UTF-8.
13258
13259 @item stream_index, si
13260 Set subtitles stream index. @code{subtitles} filter only.
13261
13262 @item force_style
13263 Override default style or script info parameters of the subtitles. It accepts a
13264 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
13265 @end table
13266
13267 If the first key is not specified, it is assumed that the first value
13268 specifies the @option{filename}.
13269
13270 For example, to render the file @file{sub.srt} on top of the input
13271 video, use the command:
13272 @example
13273 subtitles=sub.srt
13274 @end example
13275
13276 which is equivalent to:
13277 @example
13278 subtitles=filename=sub.srt
13279 @end example
13280
13281 To render the default subtitles stream from file @file{video.mkv}, use:
13282 @example
13283 subtitles=video.mkv
13284 @end example
13285
13286 To render the second subtitles stream from that file, use:
13287 @example
13288 subtitles=video.mkv:si=1
13289 @end example
13290
13291 To make the subtitles stream from @file{sub.srt} appear in transparent green
13292 @code{DejaVu Serif}, use:
13293 @example
13294 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
13295 @end example
13296
13297 @section super2xsai
13298
13299 Scale the input by 2x and smooth using the Super2xSaI (Scale and
13300 Interpolate) pixel art scaling algorithm.
13301
13302 Useful for enlarging pixel art images without reducing sharpness.
13303
13304 @section swaprect
13305
13306 Swap two rectangular objects in video.
13307
13308 This filter accepts the following options:
13309
13310 @table @option
13311 @item w
13312 Set object width.
13313
13314 @item h
13315 Set object height.
13316
13317 @item x1
13318 Set 1st rect x coordinate.
13319
13320 @item y1
13321 Set 1st rect y coordinate.
13322
13323 @item x2
13324 Set 2nd rect x coordinate.
13325
13326 @item y2
13327 Set 2nd rect y coordinate.
13328
13329 All expressions are evaluated once for each frame.
13330 @end table
13331
13332 The all options are expressions containing the following constants:
13333
13334 @table @option
13335 @item w
13336 @item h
13337 The input width and height.
13338
13339 @item a
13340 same as @var{w} / @var{h}
13341
13342 @item sar
13343 input sample aspect ratio
13344
13345 @item dar
13346 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
13347
13348 @item n
13349 The number of the input frame, starting from 0.
13350
13351 @item t
13352 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
13353
13354 @item pos
13355 the position in the file of the input frame, NAN if unknown
13356 @end table
13357
13358 @section swapuv
13359 Swap U & V plane.
13360
13361 @section telecine
13362
13363 Apply telecine process to the video.
13364
13365 This filter accepts the following options:
13366
13367 @table @option
13368 @item first_field
13369 @table @samp
13370 @item top, t
13371 top field first
13372 @item bottom, b
13373 bottom field first
13374 The default value is @code{top}.
13375 @end table
13376
13377 @item pattern
13378 A string of numbers representing the pulldown pattern you wish to apply.
13379 The default value is @code{23}.
13380 @end table
13381
13382 @example
13383 Some typical patterns:
13384
13385 NTSC output (30i):
13386 27.5p: 32222
13387 24p: 23 (classic)
13388 24p: 2332 (preferred)
13389 20p: 33
13390 18p: 334
13391 16p: 3444
13392
13393 PAL output (25i):
13394 27.5p: 12222
13395 24p: 222222222223 ("Euro pulldown")
13396 16.67p: 33
13397 16p: 33333334
13398 @end example
13399
13400 @section threshold
13401
13402 Apply threshold effect to video stream.
13403
13404 This filter needs four video streams to perform thresholding.
13405 First stream is stream we are filtering.
13406 Second stream is holding threshold values, third stream is holding min values,
13407 and last, fourth stream is holding max values.
13408
13409 The filter accepts the following option:
13410
13411 @table @option
13412 @item planes
13413 Set which planes will be processed, unprocessed planes will be copied.
13414 By default value 0xf, all planes will be processed.
13415 @end table
13416
13417 For example if first stream pixel's component value is less then threshold value
13418 of pixel component from 2nd threshold stream, third stream value will picked,
13419 otherwise fourth stream pixel component value will be picked.
13420
13421 Using color source filter one can perform various types of thresholding:
13422
13423 @subsection Examples
13424
13425 @itemize
13426 @item
13427 Binary threshold, using gray color as threshold:
13428 @example
13429 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
13430 @end example
13431
13432 @item
13433 Inverted binary threshold, using gray color as threshold:
13434 @example
13435 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
13436 @end example
13437
13438 @item
13439 Truncate binary threshold, using gray color as threshold:
13440 @example
13441 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
13442 @end example
13443
13444 @item
13445 Threshold to zero, using gray color as threshold:
13446 @example
13447 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
13448 @end example
13449
13450 @item
13451 Inverted threshold to zero, using gray color as threshold:
13452 @example
13453 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
13454 @end example
13455 @end itemize
13456
13457 @section thumbnail
13458 Select the most representative frame in a given sequence of consecutive frames.
13459
13460 The filter accepts the following options:
13461
13462 @table @option
13463 @item n
13464 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
13465 will pick one of them, and then handle the next batch of @var{n} frames until
13466 the end. Default is @code{100}.
13467 @end table
13468
13469 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
13470 value will result in a higher memory usage, so a high value is not recommended.
13471
13472 @subsection Examples
13473
13474 @itemize
13475 @item
13476 Extract one picture each 50 frames:
13477 @example
13478 thumbnail=50
13479 @end example
13480
13481 @item
13482 Complete example of a thumbnail creation with @command{ffmpeg}:
13483 @example
13484 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
13485 @end example
13486 @end itemize
13487
13488 @section tile
13489
13490 Tile several successive frames together.
13491
13492 The filter accepts the following options:
13493
13494 @table @option
13495
13496 @item layout
13497 Set the grid size (i.e. the number of lines and columns). For the syntax of
13498 this option, check the
13499 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13500
13501 @item nb_frames
13502 Set the maximum number of frames to render in the given area. It must be less
13503 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
13504 the area will be used.
13505
13506 @item margin
13507 Set the outer border margin in pixels.
13508
13509 @item padding
13510 Set the inner border thickness (i.e. the number of pixels between frames). For
13511 more advanced padding options (such as having different values for the edges),
13512 refer to the pad video filter.
13513
13514 @item color
13515 Specify the color of the unused area. For the syntax of this option, check the
13516 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
13517 is "black".
13518 @end table
13519
13520 @subsection Examples
13521
13522 @itemize
13523 @item
13524 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
13525 @example
13526 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
13527 @end example
13528 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
13529 duplicating each output frame to accommodate the originally detected frame
13530 rate.
13531
13532 @item
13533 Display @code{5} pictures in an area of @code{3x2} frames,
13534 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
13535 mixed flat and named options:
13536 @example
13537 tile=3x2:nb_frames=5:padding=7:margin=2
13538 @end example
13539 @end itemize
13540
13541 @section tinterlace
13542
13543 Perform various types of temporal field interlacing.
13544
13545 Frames are counted starting from 1, so the first input frame is
13546 considered odd.
13547
13548 The filter accepts the following options:
13549
13550 @table @option
13551
13552 @item mode
13553 Specify the mode of the interlacing. This option can also be specified
13554 as a value alone. See below for a list of values for this option.
13555
13556 Available values are:
13557
13558 @table @samp
13559 @item merge, 0
13560 Move odd frames into the upper field, even into the lower field,
13561 generating a double height frame at half frame rate.
13562 @example
13563  ------> time
13564 Input:
13565 Frame 1         Frame 2         Frame 3         Frame 4
13566
13567 11111           22222           33333           44444
13568 11111           22222           33333           44444
13569 11111           22222           33333           44444
13570 11111           22222           33333           44444
13571
13572 Output:
13573 11111                           33333
13574 22222                           44444
13575 11111                           33333
13576 22222                           44444
13577 11111                           33333
13578 22222                           44444
13579 11111                           33333
13580 22222                           44444
13581 @end example
13582
13583 @item drop_even, 1
13584 Only output odd frames, even frames are dropped, generating a frame with
13585 unchanged height at half frame rate.
13586
13587 @example
13588  ------> time
13589 Input:
13590 Frame 1         Frame 2         Frame 3         Frame 4
13591
13592 11111           22222           33333           44444
13593 11111           22222           33333           44444
13594 11111           22222           33333           44444
13595 11111           22222           33333           44444
13596
13597 Output:
13598 11111                           33333
13599 11111                           33333
13600 11111                           33333
13601 11111                           33333
13602 @end example
13603
13604 @item drop_odd, 2
13605 Only output even frames, odd frames are dropped, generating a frame with
13606 unchanged height at half frame rate.
13607
13608 @example
13609  ------> time
13610 Input:
13611 Frame 1         Frame 2         Frame 3         Frame 4
13612
13613 11111           22222           33333           44444
13614 11111           22222           33333           44444
13615 11111           22222           33333           44444
13616 11111           22222           33333           44444
13617
13618 Output:
13619                 22222                           44444
13620                 22222                           44444
13621                 22222                           44444
13622                 22222                           44444
13623 @end example
13624
13625 @item pad, 3
13626 Expand each frame to full height, but pad alternate lines with black,
13627 generating a frame with double height at the same input frame rate.
13628
13629 @example
13630  ------> time
13631 Input:
13632 Frame 1         Frame 2         Frame 3         Frame 4
13633
13634 11111           22222           33333           44444
13635 11111           22222           33333           44444
13636 11111           22222           33333           44444
13637 11111           22222           33333           44444
13638
13639 Output:
13640 11111           .....           33333           .....
13641 .....           22222           .....           44444
13642 11111           .....           33333           .....
13643 .....           22222           .....           44444
13644 11111           .....           33333           .....
13645 .....           22222           .....           44444
13646 11111           .....           33333           .....
13647 .....           22222           .....           44444
13648 @end example
13649
13650
13651 @item interleave_top, 4
13652 Interleave the upper field from odd frames with the lower field from
13653 even frames, generating a frame with unchanged height at half frame rate.
13654
13655 @example
13656  ------> time
13657 Input:
13658 Frame 1         Frame 2         Frame 3         Frame 4
13659
13660 11111<-         22222           33333<-         44444
13661 11111           22222<-         33333           44444<-
13662 11111<-         22222           33333<-         44444
13663 11111           22222<-         33333           44444<-
13664
13665 Output:
13666 11111                           33333
13667 22222                           44444
13668 11111                           33333
13669 22222                           44444
13670 @end example
13671
13672
13673 @item interleave_bottom, 5
13674 Interleave the lower field from odd frames with the upper field from
13675 even frames, generating a frame with unchanged height at half frame rate.
13676
13677 @example
13678  ------> time
13679 Input:
13680 Frame 1         Frame 2         Frame 3         Frame 4
13681
13682 11111           22222<-         33333           44444<-
13683 11111<-         22222           33333<-         44444
13684 11111           22222<-         33333           44444<-
13685 11111<-         22222           33333<-         44444
13686
13687 Output:
13688 22222                           44444
13689 11111                           33333
13690 22222                           44444
13691 11111                           33333
13692 @end example
13693
13694
13695 @item interlacex2, 6
13696 Double frame rate with unchanged height. Frames are inserted each
13697 containing the second temporal field from the previous input frame and
13698 the first temporal field from the next input frame. This mode relies on
13699 the top_field_first flag. Useful for interlaced video displays with no
13700 field synchronisation.
13701
13702 @example
13703  ------> time
13704 Input:
13705 Frame 1         Frame 2         Frame 3         Frame 4
13706
13707 11111           22222           33333           44444
13708  11111           22222           33333           44444
13709 11111           22222           33333           44444
13710  11111           22222           33333           44444
13711
13712 Output:
13713 11111   22222   22222   33333   33333   44444   44444
13714  11111   11111   22222   22222   33333   33333   44444
13715 11111   22222   22222   33333   33333   44444   44444
13716  11111   11111   22222   22222   33333   33333   44444
13717 @end example
13718
13719
13720 @item mergex2, 7
13721 Move odd frames into the upper field, even into the lower field,
13722 generating a double height frame at same frame rate.
13723
13724 @example
13725  ------> time
13726 Input:
13727 Frame 1         Frame 2         Frame 3         Frame 4
13728
13729 11111           22222           33333           44444
13730 11111           22222           33333           44444
13731 11111           22222           33333           44444
13732 11111           22222           33333           44444
13733
13734 Output:
13735 11111           33333           33333           55555
13736 22222           22222           44444           44444
13737 11111           33333           33333           55555
13738 22222           22222           44444           44444
13739 11111           33333           33333           55555
13740 22222           22222           44444           44444
13741 11111           33333           33333           55555
13742 22222           22222           44444           44444
13743 @end example
13744
13745 @end table
13746
13747 Numeric values are deprecated but are accepted for backward
13748 compatibility reasons.
13749
13750 Default mode is @code{merge}.
13751
13752 @item flags
13753 Specify flags influencing the filter process.
13754
13755 Available value for @var{flags} is:
13756
13757 @table @option
13758 @item low_pass_filter, vlfp
13759 Enable vertical low-pass filtering in the filter.
13760 Vertical low-pass filtering is required when creating an interlaced
13761 destination from a progressive source which contains high-frequency
13762 vertical detail. Filtering will reduce interlace 'twitter' and Moire
13763 patterning.
13764
13765 Vertical low-pass filtering can only be enabled for @option{mode}
13766 @var{interleave_top} and @var{interleave_bottom}.
13767
13768 @end table
13769 @end table
13770
13771 @section transpose
13772
13773 Transpose rows with columns in the input video and optionally flip it.
13774
13775 It accepts the following parameters:
13776
13777 @table @option
13778
13779 @item dir
13780 Specify the transposition direction.
13781
13782 Can assume the following values:
13783 @table @samp
13784 @item 0, 4, cclock_flip
13785 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
13786 @example
13787 L.R     L.l
13788 . . ->  . .
13789 l.r     R.r
13790 @end example
13791
13792 @item 1, 5, clock
13793 Rotate by 90 degrees clockwise, that is:
13794 @example
13795 L.R     l.L
13796 . . ->  . .
13797 l.r     r.R
13798 @end example
13799
13800 @item 2, 6, cclock
13801 Rotate by 90 degrees counterclockwise, that is:
13802 @example
13803 L.R     R.r
13804 . . ->  . .
13805 l.r     L.l
13806 @end example
13807
13808 @item 3, 7, clock_flip
13809 Rotate by 90 degrees clockwise and vertically flip, that is:
13810 @example
13811 L.R     r.R
13812 . . ->  . .
13813 l.r     l.L
13814 @end example
13815 @end table
13816
13817 For values between 4-7, the transposition is only done if the input
13818 video geometry is portrait and not landscape. These values are
13819 deprecated, the @code{passthrough} option should be used instead.
13820
13821 Numerical values are deprecated, and should be dropped in favor of
13822 symbolic constants.
13823
13824 @item passthrough
13825 Do not apply the transposition if the input geometry matches the one
13826 specified by the specified value. It accepts the following values:
13827 @table @samp
13828 @item none
13829 Always apply transposition.
13830 @item portrait
13831 Preserve portrait geometry (when @var{height} >= @var{width}).
13832 @item landscape
13833 Preserve landscape geometry (when @var{width} >= @var{height}).
13834 @end table
13835
13836 Default value is @code{none}.
13837 @end table
13838
13839 For example to rotate by 90 degrees clockwise and preserve portrait
13840 layout:
13841 @example
13842 transpose=dir=1:passthrough=portrait
13843 @end example
13844
13845 The command above can also be specified as:
13846 @example
13847 transpose=1:portrait
13848 @end example
13849
13850 @section trim
13851 Trim the input so that the output contains one continuous subpart of the input.
13852
13853 It accepts the following parameters:
13854 @table @option
13855 @item start
13856 Specify the time of the start of the kept section, i.e. the frame with the
13857 timestamp @var{start} will be the first frame in the output.
13858
13859 @item end
13860 Specify the time of the first frame that will be dropped, i.e. the frame
13861 immediately preceding the one with the timestamp @var{end} will be the last
13862 frame in the output.
13863
13864 @item start_pts
13865 This is the same as @var{start}, except this option sets the start timestamp
13866 in timebase units instead of seconds.
13867
13868 @item end_pts
13869 This is the same as @var{end}, except this option sets the end timestamp
13870 in timebase units instead of seconds.
13871
13872 @item duration
13873 The maximum duration of the output in seconds.
13874
13875 @item start_frame
13876 The number of the first frame that should be passed to the output.
13877
13878 @item end_frame
13879 The number of the first frame that should be dropped.
13880 @end table
13881
13882 @option{start}, @option{end}, and @option{duration} are expressed as time
13883 duration specifications; see
13884 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13885 for the accepted syntax.
13886
13887 Note that the first two sets of the start/end options and the @option{duration}
13888 option look at the frame timestamp, while the _frame variants simply count the
13889 frames that pass through the filter. Also note that this filter does not modify
13890 the timestamps. If you wish for the output timestamps to start at zero, insert a
13891 setpts filter after the trim filter.
13892
13893 If multiple start or end options are set, this filter tries to be greedy and
13894 keep all the frames that match at least one of the specified constraints. To keep
13895 only the part that matches all the constraints at once, chain multiple trim
13896 filters.
13897
13898 The defaults are such that all the input is kept. So it is possible to set e.g.
13899 just the end values to keep everything before the specified time.
13900
13901 Examples:
13902 @itemize
13903 @item
13904 Drop everything except the second minute of input:
13905 @example
13906 ffmpeg -i INPUT -vf trim=60:120
13907 @end example
13908
13909 @item
13910 Keep only the first second:
13911 @example
13912 ffmpeg -i INPUT -vf trim=duration=1
13913 @end example
13914
13915 @end itemize
13916
13917
13918 @anchor{unsharp}
13919 @section unsharp
13920
13921 Sharpen or blur the input video.
13922
13923 It accepts the following parameters:
13924
13925 @table @option
13926 @item luma_msize_x, lx
13927 Set the luma matrix horizontal size. It must be an odd integer between
13928 3 and 23. The default value is 5.
13929
13930 @item luma_msize_y, ly
13931 Set the luma matrix vertical size. It must be an odd integer between 3
13932 and 23. The default value is 5.
13933
13934 @item luma_amount, la
13935 Set the luma effect strength. It must be a floating point number, reasonable
13936 values lay between -1.5 and 1.5.
13937
13938 Negative values will blur the input video, while positive values will
13939 sharpen it, a value of zero will disable the effect.
13940
13941 Default value is 1.0.
13942
13943 @item chroma_msize_x, cx
13944 Set the chroma matrix horizontal size. It must be an odd integer
13945 between 3 and 23. The default value is 5.
13946
13947 @item chroma_msize_y, cy
13948 Set the chroma matrix vertical size. It must be an odd integer
13949 between 3 and 23. The default value is 5.
13950
13951 @item chroma_amount, ca
13952 Set the chroma effect strength. It must be a floating point number, reasonable
13953 values lay between -1.5 and 1.5.
13954
13955 Negative values will blur the input video, while positive values will
13956 sharpen it, a value of zero will disable the effect.
13957
13958 Default value is 0.0.
13959
13960 @item opencl
13961 If set to 1, specify using OpenCL capabilities, only available if
13962 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
13963
13964 @end table
13965
13966 All parameters are optional and default to the equivalent of the
13967 string '5:5:1.0:5:5:0.0'.
13968
13969 @subsection Examples
13970
13971 @itemize
13972 @item
13973 Apply strong luma sharpen effect:
13974 @example
13975 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13976 @end example
13977
13978 @item
13979 Apply a strong blur of both luma and chroma parameters:
13980 @example
13981 unsharp=7:7:-2:7:7:-2
13982 @end example
13983 @end itemize
13984
13985 @section uspp
13986
13987 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13988 the image at several (or - in the case of @option{quality} level @code{8} - all)
13989 shifts and average the results.
13990
13991 The way this differs from the behavior of spp is that uspp actually encodes &
13992 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13993 DCT similar to MJPEG.
13994
13995 The filter accepts the following options:
13996
13997 @table @option
13998 @item quality
13999 Set quality. This option defines the number of levels for averaging. It accepts
14000 an integer in the range 0-8. If set to @code{0}, the filter will have no
14001 effect. A value of @code{8} means the higher quality. For each increment of
14002 that value the speed drops by a factor of approximately 2.  Default value is
14003 @code{3}.
14004
14005 @item qp
14006 Force a constant quantization parameter. If not set, the filter will use the QP
14007 from the video stream (if available).
14008 @end table
14009
14010 @section vaguedenoiser
14011
14012 Apply a wavelet based denoiser.
14013
14014 It transforms each frame from the video input into the wavelet domain,
14015 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
14016 the obtained coefficients. It does an inverse wavelet transform after.
14017 Due to wavelet properties, it should give a nice smoothed result, and
14018 reduced noise, without blurring picture features.
14019
14020 This filter accepts the following options:
14021
14022 @table @option
14023 @item threshold
14024 The filtering strength. The higher, the more filtered the video will be.
14025 Hard thresholding can use a higher threshold than soft thresholding
14026 before the video looks overfiltered.
14027
14028 @item method
14029 The filtering method the filter will use.
14030
14031 It accepts the following values:
14032 @table @samp
14033 @item hard
14034 All values under the threshold will be zeroed.
14035
14036 @item soft
14037 All values under the threshold will be zeroed. All values above will be
14038 reduced by the threshold.
14039
14040 @item garrote
14041 Scales or nullifies coefficients - intermediary between (more) soft and
14042 (less) hard thresholding.
14043 @end table
14044
14045 @item nsteps
14046 Number of times, the wavelet will decompose the picture. Picture can't
14047 be decomposed beyond a particular point (typically, 8 for a 640x480
14048 frame - as 2^9 = 512 > 480)
14049
14050 @item percent
14051 Partial of full denoising (limited coefficients shrinking), from 0 to 100.
14052
14053 @item planes
14054 A list of the planes to process. By default all planes are processed.
14055 @end table
14056
14057 @section vectorscope
14058
14059 Display 2 color component values in the two dimensional graph (which is called
14060 a vectorscope).
14061
14062 This filter accepts the following options:
14063
14064 @table @option
14065 @item mode, m
14066 Set vectorscope mode.
14067
14068 It accepts the following values:
14069 @table @samp
14070 @item gray
14071 Gray values are displayed on graph, higher brightness means more pixels have
14072 same component color value on location in graph. This is the default mode.
14073
14074 @item color
14075 Gray values are displayed on graph. Surrounding pixels values which are not
14076 present in video frame are drawn in gradient of 2 color components which are
14077 set by option @code{x} and @code{y}. The 3rd color component is static.
14078
14079 @item color2
14080 Actual color components values present in video frame are displayed on graph.
14081
14082 @item color3
14083 Similar as color2 but higher frequency of same values @code{x} and @code{y}
14084 on graph increases value of another color component, which is luminance by
14085 default values of @code{x} and @code{y}.
14086
14087 @item color4
14088 Actual colors present in video frame are displayed on graph. If two different
14089 colors map to same position on graph then color with higher value of component
14090 not present in graph is picked.
14091
14092 @item color5
14093 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
14094 component picked from radial gradient.
14095 @end table
14096
14097 @item x
14098 Set which color component will be represented on X-axis. Default is @code{1}.
14099
14100 @item y
14101 Set which color component will be represented on Y-axis. Default is @code{2}.
14102
14103 @item intensity, i
14104 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
14105 of color component which represents frequency of (X, Y) location in graph.
14106
14107 @item envelope, e
14108 @table @samp
14109 @item none
14110 No envelope, this is default.
14111
14112 @item instant
14113 Instant envelope, even darkest single pixel will be clearly highlighted.
14114
14115 @item peak
14116 Hold maximum and minimum values presented in graph over time. This way you
14117 can still spot out of range values without constantly looking at vectorscope.
14118
14119 @item peak+instant
14120 Peak and instant envelope combined together.
14121 @end table
14122
14123 @item graticule, g
14124 Set what kind of graticule to draw.
14125 @table @samp
14126 @item none
14127 @item green
14128 @item color
14129 @end table
14130
14131 @item opacity, o
14132 Set graticule opacity.
14133
14134 @item flags, f
14135 Set graticule flags.
14136
14137 @table @samp
14138 @item white
14139 Draw graticule for white point.
14140
14141 @item black
14142 Draw graticule for black point.
14143
14144 @item name
14145 Draw color points short names.
14146 @end table
14147
14148 @item bgopacity, b
14149 Set background opacity.
14150
14151 @item lthreshold, l
14152 Set low threshold for color component not represented on X or Y axis.
14153 Values lower than this value will be ignored. Default is 0.
14154 Note this value is multiplied with actual max possible value one pixel component
14155 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
14156 is 0.1 * 255 = 25.
14157
14158 @item hthreshold, h
14159 Set high threshold for color component not represented on X or Y axis.
14160 Values higher than this value will be ignored. Default is 1.
14161 Note this value is multiplied with actual max possible value one pixel component
14162 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
14163 is 0.9 * 255 = 230.
14164
14165 @item colorspace, c
14166 Set what kind of colorspace to use when drawing graticule.
14167 @table @samp
14168 @item auto
14169 @item 601
14170 @item 709
14171 @end table
14172 Default is auto.
14173 @end table
14174
14175 @anchor{vidstabdetect}
14176 @section vidstabdetect
14177
14178 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
14179 @ref{vidstabtransform} for pass 2.
14180
14181 This filter generates a file with relative translation and rotation
14182 transform information about subsequent frames, which is then used by
14183 the @ref{vidstabtransform} filter.
14184
14185 To enable compilation of this filter you need to configure FFmpeg with
14186 @code{--enable-libvidstab}.
14187
14188 This filter accepts the following options:
14189
14190 @table @option
14191 @item result
14192 Set the path to the file used to write the transforms information.
14193 Default value is @file{transforms.trf}.
14194
14195 @item shakiness
14196 Set how shaky the video is and how quick the camera is. It accepts an
14197 integer in the range 1-10, a value of 1 means little shakiness, a
14198 value of 10 means strong shakiness. Default value is 5.
14199
14200 @item accuracy
14201 Set the accuracy of the detection process. It must be a value in the
14202 range 1-15. A value of 1 means low accuracy, a value of 15 means high
14203 accuracy. Default value is 15.
14204
14205 @item stepsize
14206 Set stepsize of the search process. The region around minimum is
14207 scanned with 1 pixel resolution. Default value is 6.
14208
14209 @item mincontrast
14210 Set minimum contrast. Below this value a local measurement field is
14211 discarded. Must be a floating point value in the range 0-1. Default
14212 value is 0.3.
14213
14214 @item tripod
14215 Set reference frame number for tripod mode.
14216
14217 If enabled, the motion of the frames is compared to a reference frame
14218 in the filtered stream, identified by the specified number. The idea
14219 is to compensate all movements in a more-or-less static scene and keep
14220 the camera view absolutely still.
14221
14222 If set to 0, it is disabled. The frames are counted starting from 1.
14223
14224 @item show
14225 Show fields and transforms in the resulting frames. It accepts an
14226 integer in the range 0-2. Default value is 0, which disables any
14227 visualization.
14228 @end table
14229
14230 @subsection Examples
14231
14232 @itemize
14233 @item
14234 Use default values:
14235 @example
14236 vidstabdetect
14237 @end example
14238
14239 @item
14240 Analyze strongly shaky movie and put the results in file
14241 @file{mytransforms.trf}:
14242 @example
14243 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
14244 @end example
14245
14246 @item
14247 Visualize the result of internal transformations in the resulting
14248 video:
14249 @example
14250 vidstabdetect=show=1
14251 @end example
14252
14253 @item
14254 Analyze a video with medium shakiness using @command{ffmpeg}:
14255 @example
14256 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
14257 @end example
14258 @end itemize
14259
14260 @anchor{vidstabtransform}
14261 @section vidstabtransform
14262
14263 Video stabilization/deshaking: pass 2 of 2,
14264 see @ref{vidstabdetect} for pass 1.
14265
14266 Read a file with transform information for each frame and
14267 apply/compensate them. Together with the @ref{vidstabdetect}
14268 filter this can be used to deshake videos. See also
14269 @url{http://public.hronopik.de/vid.stab}. It is important to also use
14270 the @ref{unsharp} filter, see below.
14271
14272 To enable compilation of this filter you need to configure FFmpeg with
14273 @code{--enable-libvidstab}.
14274
14275 @subsection Options
14276
14277 @table @option
14278 @item input
14279 Set path to the file used to read the transforms. Default value is
14280 @file{transforms.trf}.
14281
14282 @item smoothing
14283 Set the number of frames (value*2 + 1) used for lowpass filtering the
14284 camera movements. Default value is 10.
14285
14286 For example a number of 10 means that 21 frames are used (10 in the
14287 past and 10 in the future) to smoothen the motion in the video. A
14288 larger value leads to a smoother video, but limits the acceleration of
14289 the camera (pan/tilt movements). 0 is a special case where a static
14290 camera is simulated.
14291
14292 @item optalgo
14293 Set the camera path optimization algorithm.
14294
14295 Accepted values are:
14296 @table @samp
14297 @item gauss
14298 gaussian kernel low-pass filter on camera motion (default)
14299 @item avg
14300 averaging on transformations
14301 @end table
14302
14303 @item maxshift
14304 Set maximal number of pixels to translate frames. Default value is -1,
14305 meaning no limit.
14306
14307 @item maxangle
14308 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
14309 value is -1, meaning no limit.
14310
14311 @item crop
14312 Specify how to deal with borders that may be visible due to movement
14313 compensation.
14314
14315 Available values are:
14316 @table @samp
14317 @item keep
14318 keep image information from previous frame (default)
14319 @item black
14320 fill the border black
14321 @end table
14322
14323 @item invert
14324 Invert transforms if set to 1. Default value is 0.
14325
14326 @item relative
14327 Consider transforms as relative to previous frame if set to 1,
14328 absolute if set to 0. Default value is 0.
14329
14330 @item zoom
14331 Set percentage to zoom. A positive value will result in a zoom-in
14332 effect, a negative value in a zoom-out effect. Default value is 0 (no
14333 zoom).
14334
14335 @item optzoom
14336 Set optimal zooming to avoid borders.
14337
14338 Accepted values are:
14339 @table @samp
14340 @item 0
14341 disabled
14342 @item 1
14343 optimal static zoom value is determined (only very strong movements
14344 will lead to visible borders) (default)
14345 @item 2
14346 optimal adaptive zoom value is determined (no borders will be
14347 visible), see @option{zoomspeed}
14348 @end table
14349
14350 Note that the value given at zoom is added to the one calculated here.
14351
14352 @item zoomspeed
14353 Set percent to zoom maximally each frame (enabled when
14354 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
14355 0.25.
14356
14357 @item interpol
14358 Specify type of interpolation.
14359
14360 Available values are:
14361 @table @samp
14362 @item no
14363 no interpolation
14364 @item linear
14365 linear only horizontal
14366 @item bilinear
14367 linear in both directions (default)
14368 @item bicubic
14369 cubic in both directions (slow)
14370 @end table
14371
14372 @item tripod
14373 Enable virtual tripod mode if set to 1, which is equivalent to
14374 @code{relative=0:smoothing=0}. Default value is 0.
14375
14376 Use also @code{tripod} option of @ref{vidstabdetect}.
14377
14378 @item debug
14379 Increase log verbosity if set to 1. Also the detected global motions
14380 are written to the temporary file @file{global_motions.trf}. Default
14381 value is 0.
14382 @end table
14383
14384 @subsection Examples
14385
14386 @itemize
14387 @item
14388 Use @command{ffmpeg} for a typical stabilization with default values:
14389 @example
14390 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
14391 @end example
14392
14393 Note the use of the @ref{unsharp} filter which is always recommended.
14394
14395 @item
14396 Zoom in a bit more and load transform data from a given file:
14397 @example
14398 vidstabtransform=zoom=5:input="mytransforms.trf"
14399 @end example
14400
14401 @item
14402 Smoothen the video even more:
14403 @example
14404 vidstabtransform=smoothing=30
14405 @end example
14406 @end itemize
14407
14408 @section vflip
14409
14410 Flip the input video vertically.
14411
14412 For example, to vertically flip a video with @command{ffmpeg}:
14413 @example
14414 ffmpeg -i in.avi -vf "vflip" out.avi
14415 @end example
14416
14417 @anchor{vignette}
14418 @section vignette
14419
14420 Make or reverse a natural vignetting effect.
14421
14422 The filter accepts the following options:
14423
14424 @table @option
14425 @item angle, a
14426 Set lens angle expression as a number of radians.
14427
14428 The value is clipped in the @code{[0,PI/2]} range.
14429
14430 Default value: @code{"PI/5"}
14431
14432 @item x0
14433 @item y0
14434 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
14435 by default.
14436
14437 @item mode
14438 Set forward/backward mode.
14439
14440 Available modes are:
14441 @table @samp
14442 @item forward
14443 The larger the distance from the central point, the darker the image becomes.
14444
14445 @item backward
14446 The larger the distance from the central point, the brighter the image becomes.
14447 This can be used to reverse a vignette effect, though there is no automatic
14448 detection to extract the lens @option{angle} and other settings (yet). It can
14449 also be used to create a burning effect.
14450 @end table
14451
14452 Default value is @samp{forward}.
14453
14454 @item eval
14455 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
14456
14457 It accepts the following values:
14458 @table @samp
14459 @item init
14460 Evaluate expressions only once during the filter initialization.
14461
14462 @item frame
14463 Evaluate expressions for each incoming frame. This is way slower than the
14464 @samp{init} mode since it requires all the scalers to be re-computed, but it
14465 allows advanced dynamic expressions.
14466 @end table
14467
14468 Default value is @samp{init}.
14469
14470 @item dither
14471 Set dithering to reduce the circular banding effects. Default is @code{1}
14472 (enabled).
14473
14474 @item aspect
14475 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
14476 Setting this value to the SAR of the input will make a rectangular vignetting
14477 following the dimensions of the video.
14478
14479 Default is @code{1/1}.
14480 @end table
14481
14482 @subsection Expressions
14483
14484 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
14485 following parameters.
14486
14487 @table @option
14488 @item w
14489 @item h
14490 input width and height
14491
14492 @item n
14493 the number of input frame, starting from 0
14494
14495 @item pts
14496 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
14497 @var{TB} units, NAN if undefined
14498
14499 @item r
14500 frame rate of the input video, NAN if the input frame rate is unknown
14501
14502 @item t
14503 the PTS (Presentation TimeStamp) of the filtered video frame,
14504 expressed in seconds, NAN if undefined
14505
14506 @item tb
14507 time base of the input video
14508 @end table
14509
14510
14511 @subsection Examples
14512
14513 @itemize
14514 @item
14515 Apply simple strong vignetting effect:
14516 @example
14517 vignette=PI/4
14518 @end example
14519
14520 @item
14521 Make a flickering vignetting:
14522 @example
14523 vignette='PI/4+random(1)*PI/50':eval=frame
14524 @end example
14525
14526 @end itemize
14527
14528 @section vstack
14529 Stack input videos vertically.
14530
14531 All streams must be of same pixel format and of same width.
14532
14533 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
14534 to create same output.
14535
14536 The filter accept the following option:
14537
14538 @table @option
14539 @item inputs
14540 Set number of input streams. Default is 2.
14541
14542 @item shortest
14543 If set to 1, force the output to terminate when the shortest input
14544 terminates. Default value is 0.
14545 @end table
14546
14547 @section w3fdif
14548
14549 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
14550 Deinterlacing Filter").
14551
14552 Based on the process described by Martin Weston for BBC R&D, and
14553 implemented based on the de-interlace algorithm written by Jim
14554 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
14555 uses filter coefficients calculated by BBC R&D.
14556
14557 There are two sets of filter coefficients, so called "simple":
14558 and "complex". Which set of filter coefficients is used can
14559 be set by passing an optional parameter:
14560
14561 @table @option
14562 @item filter
14563 Set the interlacing filter coefficients. Accepts one of the following values:
14564
14565 @table @samp
14566 @item simple
14567 Simple filter coefficient set.
14568 @item complex
14569 More-complex filter coefficient set.
14570 @end table
14571 Default value is @samp{complex}.
14572
14573 @item deint
14574 Specify which frames to deinterlace. Accept one of the following values:
14575
14576 @table @samp
14577 @item all
14578 Deinterlace all frames,
14579 @item interlaced
14580 Only deinterlace frames marked as interlaced.
14581 @end table
14582
14583 Default value is @samp{all}.
14584 @end table
14585
14586 @section waveform
14587 Video waveform monitor.
14588
14589 The waveform monitor plots color component intensity. By default luminance
14590 only. Each column of the waveform corresponds to a column of pixels in the
14591 source video.
14592
14593 It accepts the following options:
14594
14595 @table @option
14596 @item mode, m
14597 Can be either @code{row}, or @code{column}. Default is @code{column}.
14598 In row mode, the graph on the left side represents color component value 0 and
14599 the right side represents value = 255. In column mode, the top side represents
14600 color component value = 0 and bottom side represents value = 255.
14601
14602 @item intensity, i
14603 Set intensity. Smaller values are useful to find out how many values of the same
14604 luminance are distributed across input rows/columns.
14605 Default value is @code{0.04}. Allowed range is [0, 1].
14606
14607 @item mirror, r
14608 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
14609 In mirrored mode, higher values will be represented on the left
14610 side for @code{row} mode and at the top for @code{column} mode. Default is
14611 @code{1} (mirrored).
14612
14613 @item display, d
14614 Set display mode.
14615 It accepts the following values:
14616 @table @samp
14617 @item overlay
14618 Presents information identical to that in the @code{parade}, except
14619 that the graphs representing color components are superimposed directly
14620 over one another.
14621
14622 This display mode makes it easier to spot relative differences or similarities
14623 in overlapping areas of the color components that are supposed to be identical,
14624 such as neutral whites, grays, or blacks.
14625
14626 @item stack
14627 Display separate graph for the color components side by side in
14628 @code{row} mode or one below the other in @code{column} mode.
14629
14630 @item parade
14631 Display separate graph for the color components side by side in
14632 @code{column} mode or one below the other in @code{row} mode.
14633
14634 Using this display mode makes it easy to spot color casts in the highlights
14635 and shadows of an image, by comparing the contours of the top and the bottom
14636 graphs of each waveform. Since whites, grays, and blacks are characterized
14637 by exactly equal amounts of red, green, and blue, neutral areas of the picture
14638 should display three waveforms of roughly equal width/height. If not, the
14639 correction is easy to perform by making level adjustments the three waveforms.
14640 @end table
14641 Default is @code{stack}.
14642
14643 @item components, c
14644 Set which color components to display. Default is 1, which means only luminance
14645 or red color component if input is in RGB colorspace. If is set for example to
14646 7 it will display all 3 (if) available color components.
14647
14648 @item envelope, e
14649 @table @samp
14650 @item none
14651 No envelope, this is default.
14652
14653 @item instant
14654 Instant envelope, minimum and maximum values presented in graph will be easily
14655 visible even with small @code{step} value.
14656
14657 @item peak
14658 Hold minimum and maximum values presented in graph across time. This way you
14659 can still spot out of range values without constantly looking at waveforms.
14660
14661 @item peak+instant
14662 Peak and instant envelope combined together.
14663 @end table
14664
14665 @item filter, f
14666 @table @samp
14667 @item lowpass
14668 No filtering, this is default.
14669
14670 @item flat
14671 Luma and chroma combined together.
14672
14673 @item aflat
14674 Similar as above, but shows difference between blue and red chroma.
14675
14676 @item chroma
14677 Displays only chroma.
14678
14679 @item color
14680 Displays actual color value on waveform.
14681
14682 @item acolor
14683 Similar as above, but with luma showing frequency of chroma values.
14684 @end table
14685
14686 @item graticule, g
14687 Set which graticule to display.
14688
14689 @table @samp
14690 @item none
14691 Do not display graticule.
14692
14693 @item green
14694 Display green graticule showing legal broadcast ranges.
14695 @end table
14696
14697 @item opacity, o
14698 Set graticule opacity.
14699
14700 @item flags, fl
14701 Set graticule flags.
14702
14703 @table @samp
14704 @item numbers
14705 Draw numbers above lines. By default enabled.
14706
14707 @item dots
14708 Draw dots instead of lines.
14709 @end table
14710
14711 @item scale, s
14712 Set scale used for displaying graticule.
14713
14714 @table @samp
14715 @item digital
14716 @item millivolts
14717 @item ire
14718 @end table
14719 Default is digital.
14720
14721 @item bgopacity, b
14722 Set background opacity.
14723 @end table
14724
14725 @section weave, doubleweave
14726
14727 The @code{weave} takes a field-based video input and join
14728 each two sequential fields into single frame, producing a new double
14729 height clip with half the frame rate and half the frame count.
14730
14731 The @code{doubleweave} works same as @code{weave} but without
14732 halving frame rate and frame count.
14733
14734 It accepts the following option:
14735
14736 @table @option
14737 @item first_field
14738 Set first field. Available values are:
14739
14740 @table @samp
14741 @item top, t
14742 Set the frame as top-field-first.
14743
14744 @item bottom, b
14745 Set the frame as bottom-field-first.
14746 @end table
14747 @end table
14748
14749 @subsection Examples
14750
14751 @itemize
14752 @item
14753 Interlace video using @ref{select} and @ref{separatefields} filter:
14754 @example
14755 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
14756 @end example
14757 @end itemize
14758
14759 @section xbr
14760 Apply the xBR high-quality magnification filter which is designed for pixel
14761 art. It follows a set of edge-detection rules, see
14762 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
14763
14764 It accepts the following option:
14765
14766 @table @option
14767 @item n
14768 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
14769 @code{3xBR} and @code{4} for @code{4xBR}.
14770 Default is @code{3}.
14771 @end table
14772
14773 @anchor{yadif}
14774 @section yadif
14775
14776 Deinterlace the input video ("yadif" means "yet another deinterlacing
14777 filter").
14778
14779 It accepts the following parameters:
14780
14781
14782 @table @option
14783
14784 @item mode
14785 The interlacing mode to adopt. It accepts one of the following values:
14786
14787 @table @option
14788 @item 0, send_frame
14789 Output one frame for each frame.
14790 @item 1, send_field
14791 Output one frame for each field.
14792 @item 2, send_frame_nospatial
14793 Like @code{send_frame}, but it skips the spatial interlacing check.
14794 @item 3, send_field_nospatial
14795 Like @code{send_field}, but it skips the spatial interlacing check.
14796 @end table
14797
14798 The default value is @code{send_frame}.
14799
14800 @item parity
14801 The picture field parity assumed for the input interlaced video. It accepts one
14802 of the following values:
14803
14804 @table @option
14805 @item 0, tff
14806 Assume the top field is first.
14807 @item 1, bff
14808 Assume the bottom field is first.
14809 @item -1, auto
14810 Enable automatic detection of field parity.
14811 @end table
14812
14813 The default value is @code{auto}.
14814 If the interlacing is unknown or the decoder does not export this information,
14815 top field first will be assumed.
14816
14817 @item deint
14818 Specify which frames to deinterlace. Accept one of the following
14819 values:
14820
14821 @table @option
14822 @item 0, all
14823 Deinterlace all frames.
14824 @item 1, interlaced
14825 Only deinterlace frames marked as interlaced.
14826 @end table
14827
14828 The default value is @code{all}.
14829 @end table
14830
14831 @section zoompan
14832
14833 Apply Zoom & Pan effect.
14834
14835 This filter accepts the following options:
14836
14837 @table @option
14838 @item zoom, z
14839 Set the zoom expression. Default is 1.
14840
14841 @item x
14842 @item y
14843 Set the x and y expression. Default is 0.
14844
14845 @item d
14846 Set the duration expression in number of frames.
14847 This sets for how many number of frames effect will last for
14848 single input image.
14849
14850 @item s
14851 Set the output image size, default is 'hd720'.
14852
14853 @item fps
14854 Set the output frame rate, default is '25'.
14855 @end table
14856
14857 Each expression can contain the following constants:
14858
14859 @table @option
14860 @item in_w, iw
14861 Input width.
14862
14863 @item in_h, ih
14864 Input height.
14865
14866 @item out_w, ow
14867 Output width.
14868
14869 @item out_h, oh
14870 Output height.
14871
14872 @item in
14873 Input frame count.
14874
14875 @item on
14876 Output frame count.
14877
14878 @item x
14879 @item y
14880 Last calculated 'x' and 'y' position from 'x' and 'y' expression
14881 for current input frame.
14882
14883 @item px
14884 @item py
14885 'x' and 'y' of last output frame of previous input frame or 0 when there was
14886 not yet such frame (first input frame).
14887
14888 @item zoom
14889 Last calculated zoom from 'z' expression for current input frame.
14890
14891 @item pzoom
14892 Last calculated zoom of last output frame of previous input frame.
14893
14894 @item duration
14895 Number of output frames for current input frame. Calculated from 'd' expression
14896 for each input frame.
14897
14898 @item pduration
14899 number of output frames created for previous input frame
14900
14901 @item a
14902 Rational number: input width / input height
14903
14904 @item sar
14905 sample aspect ratio
14906
14907 @item dar
14908 display aspect ratio
14909
14910 @end table
14911
14912 @subsection Examples
14913
14914 @itemize
14915 @item
14916 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
14917 @example
14918 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
14919 @end example
14920
14921 @item
14922 Zoom-in up to 1.5 and pan always at center of picture:
14923 @example
14924 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14925 @end example
14926
14927 @item
14928 Same as above but without pausing:
14929 @example
14930 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14931 @end example
14932 @end itemize
14933
14934 @section zscale
14935 Scale (resize) the input video, using the z.lib library:
14936 https://github.com/sekrit-twc/zimg.
14937
14938 The zscale filter forces the output display aspect ratio to be the same
14939 as the input, by changing the output sample aspect ratio.
14940
14941 If the input image format is different from the format requested by
14942 the next filter, the zscale filter will convert the input to the
14943 requested format.
14944
14945 @subsection Options
14946 The filter accepts the following options.
14947
14948 @table @option
14949 @item width, w
14950 @item height, h
14951 Set the output video dimension expression. Default value is the input
14952 dimension.
14953
14954 If the @var{width} or @var{w} is 0, the input width is used for the output.
14955 If the @var{height} or @var{h} is 0, the input height is used for the output.
14956
14957 If one of the values is -1, the zscale filter will use a value that
14958 maintains the aspect ratio of the input image, calculated from the
14959 other specified dimension. If both of them are -1, the input size is
14960 used
14961
14962 If one of the values is -n with n > 1, the zscale filter will also use a value
14963 that maintains the aspect ratio of the input image, calculated from the other
14964 specified dimension. After that it will, however, make sure that the calculated
14965 dimension is divisible by n and adjust the value if necessary.
14966
14967 See below for the list of accepted constants for use in the dimension
14968 expression.
14969
14970 @item size, s
14971 Set the video size. For the syntax of this option, check the
14972 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14973
14974 @item dither, d
14975 Set the dither type.
14976
14977 Possible values are:
14978 @table @var
14979 @item none
14980 @item ordered
14981 @item random
14982 @item error_diffusion
14983 @end table
14984
14985 Default is none.
14986
14987 @item filter, f
14988 Set the resize filter type.
14989
14990 Possible values are:
14991 @table @var
14992 @item point
14993 @item bilinear
14994 @item bicubic
14995 @item spline16
14996 @item spline36
14997 @item lanczos
14998 @end table
14999
15000 Default is bilinear.
15001
15002 @item range, r
15003 Set the color range.
15004
15005 Possible values are:
15006 @table @var
15007 @item input
15008 @item limited
15009 @item full
15010 @end table
15011
15012 Default is same as input.
15013
15014 @item primaries, p
15015 Set the color primaries.
15016
15017 Possible values are:
15018 @table @var
15019 @item input
15020 @item 709
15021 @item unspecified
15022 @item 170m
15023 @item 240m
15024 @item 2020
15025 @end table
15026
15027 Default is same as input.
15028
15029 @item transfer, t
15030 Set the transfer characteristics.
15031
15032 Possible values are:
15033 @table @var
15034 @item input
15035 @item 709
15036 @item unspecified
15037 @item 601
15038 @item linear
15039 @item 2020_10
15040 @item 2020_12
15041 @item smpte2084
15042 @item iec61966-2-1
15043 @item arib-std-b67
15044 @end table
15045
15046 Default is same as input.
15047
15048 @item matrix, m
15049 Set the colorspace matrix.
15050
15051 Possible value are:
15052 @table @var
15053 @item input
15054 @item 709
15055 @item unspecified
15056 @item 470bg
15057 @item 170m
15058 @item 2020_ncl
15059 @item 2020_cl
15060 @end table
15061
15062 Default is same as input.
15063
15064 @item rangein, rin
15065 Set the input color range.
15066
15067 Possible values are:
15068 @table @var
15069 @item input
15070 @item limited
15071 @item full
15072 @end table
15073
15074 Default is same as input.
15075
15076 @item primariesin, pin
15077 Set the input color primaries.
15078
15079 Possible values are:
15080 @table @var
15081 @item input
15082 @item 709
15083 @item unspecified
15084 @item 170m
15085 @item 240m
15086 @item 2020
15087 @end table
15088
15089 Default is same as input.
15090
15091 @item transferin, tin
15092 Set the input transfer characteristics.
15093
15094 Possible values are:
15095 @table @var
15096 @item input
15097 @item 709
15098 @item unspecified
15099 @item 601
15100 @item linear
15101 @item 2020_10
15102 @item 2020_12
15103 @end table
15104
15105 Default is same as input.
15106
15107 @item matrixin, min
15108 Set the input colorspace matrix.
15109
15110 Possible value are:
15111 @table @var
15112 @item input
15113 @item 709
15114 @item unspecified
15115 @item 470bg
15116 @item 170m
15117 @item 2020_ncl
15118 @item 2020_cl
15119 @end table
15120
15121 @item chromal, c
15122 Set the output chroma location.
15123
15124 Possible values are:
15125 @table @var
15126 @item input
15127 @item left
15128 @item center
15129 @item topleft
15130 @item top
15131 @item bottomleft
15132 @item bottom
15133 @end table
15134
15135 @item chromalin, cin
15136 Set the input chroma location.
15137
15138 Possible values are:
15139 @table @var
15140 @item input
15141 @item left
15142 @item center
15143 @item topleft
15144 @item top
15145 @item bottomleft
15146 @item bottom
15147 @end table
15148
15149 @item npl
15150 Set the nominal peak luminance.
15151 @end table
15152
15153 The values of the @option{w} and @option{h} options are expressions
15154 containing the following constants:
15155
15156 @table @var
15157 @item in_w
15158 @item in_h
15159 The input width and height
15160
15161 @item iw
15162 @item ih
15163 These are the same as @var{in_w} and @var{in_h}.
15164
15165 @item out_w
15166 @item out_h
15167 The output (scaled) width and height
15168
15169 @item ow
15170 @item oh
15171 These are the same as @var{out_w} and @var{out_h}
15172
15173 @item a
15174 The same as @var{iw} / @var{ih}
15175
15176 @item sar
15177 input sample aspect ratio
15178
15179 @item dar
15180 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
15181
15182 @item hsub
15183 @item vsub
15184 horizontal and vertical input chroma subsample values. For example for the
15185 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15186
15187 @item ohsub
15188 @item ovsub
15189 horizontal and vertical output chroma subsample values. For example for the
15190 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15191 @end table
15192
15193 @table @option
15194 @end table
15195
15196 @c man end VIDEO FILTERS
15197
15198 @chapter Video Sources
15199 @c man begin VIDEO SOURCES
15200
15201 Below is a description of the currently available video sources.
15202
15203 @section buffer
15204
15205 Buffer video frames, and make them available to the filter chain.
15206
15207 This source is mainly intended for a programmatic use, in particular
15208 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
15209
15210 It accepts the following parameters:
15211
15212 @table @option
15213
15214 @item video_size
15215 Specify the size (width and height) of the buffered video frames. For the
15216 syntax of this option, check the
15217 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15218
15219 @item width
15220 The input video width.
15221
15222 @item height
15223 The input video height.
15224
15225 @item pix_fmt
15226 A string representing the pixel format of the buffered video frames.
15227 It may be a number corresponding to a pixel format, or a pixel format
15228 name.
15229
15230 @item time_base
15231 Specify the timebase assumed by the timestamps of the buffered frames.
15232
15233 @item frame_rate
15234 Specify the frame rate expected for the video stream.
15235
15236 @item pixel_aspect, sar
15237 The sample (pixel) aspect ratio of the input video.
15238
15239 @item sws_param
15240 Specify the optional parameters to be used for the scale filter which
15241 is automatically inserted when an input change is detected in the
15242 input size or format.
15243
15244 @item hw_frames_ctx
15245 When using a hardware pixel format, this should be a reference to an
15246 AVHWFramesContext describing input frames.
15247 @end table
15248
15249 For example:
15250 @example
15251 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
15252 @end example
15253
15254 will instruct the source to accept video frames with size 320x240 and
15255 with format "yuv410p", assuming 1/24 as the timestamps timebase and
15256 square pixels (1:1 sample aspect ratio).
15257 Since the pixel format with name "yuv410p" corresponds to the number 6
15258 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
15259 this example corresponds to:
15260 @example
15261 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
15262 @end example
15263
15264 Alternatively, the options can be specified as a flat string, but this
15265 syntax is deprecated:
15266
15267 @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}]
15268
15269 @section cellauto
15270
15271 Create a pattern generated by an elementary cellular automaton.
15272
15273 The initial state of the cellular automaton can be defined through the
15274 @option{filename} and @option{pattern} options. If such options are
15275 not specified an initial state is created randomly.
15276
15277 At each new frame a new row in the video is filled with the result of
15278 the cellular automaton next generation. The behavior when the whole
15279 frame is filled is defined by the @option{scroll} option.
15280
15281 This source accepts the following options:
15282
15283 @table @option
15284 @item filename, f
15285 Read the initial cellular automaton state, i.e. the starting row, from
15286 the specified file.
15287 In the file, each non-whitespace character is considered an alive
15288 cell, a newline will terminate the row, and further characters in the
15289 file will be ignored.
15290
15291 @item pattern, p
15292 Read the initial cellular automaton state, i.e. the starting row, from
15293 the specified string.
15294
15295 Each non-whitespace character in the string is considered an alive
15296 cell, a newline will terminate the row, and further characters in the
15297 string will be ignored.
15298
15299 @item rate, r
15300 Set the video rate, that is the number of frames generated per second.
15301 Default is 25.
15302
15303 @item random_fill_ratio, ratio
15304 Set the random fill ratio for the initial cellular automaton row. It
15305 is a floating point number value ranging from 0 to 1, defaults to
15306 1/PHI.
15307
15308 This option is ignored when a file or a pattern is specified.
15309
15310 @item random_seed, seed
15311 Set the seed for filling randomly the initial row, must be an integer
15312 included between 0 and UINT32_MAX. If not specified, or if explicitly
15313 set to -1, the filter will try to use a good random seed on a best
15314 effort basis.
15315
15316 @item rule
15317 Set the cellular automaton rule, it is a number ranging from 0 to 255.
15318 Default value is 110.
15319
15320 @item size, s
15321 Set the size of the output video. For the syntax of this option, check the
15322 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15323
15324 If @option{filename} or @option{pattern} is specified, the size is set
15325 by default to the width of the specified initial state row, and the
15326 height is set to @var{width} * PHI.
15327
15328 If @option{size} is set, it must contain the width of the specified
15329 pattern string, and the specified pattern will be centered in the
15330 larger row.
15331
15332 If a filename or a pattern string is not specified, the size value
15333 defaults to "320x518" (used for a randomly generated initial state).
15334
15335 @item scroll
15336 If set to 1, scroll the output upward when all the rows in the output
15337 have been already filled. If set to 0, the new generated row will be
15338 written over the top row just after the bottom row is filled.
15339 Defaults to 1.
15340
15341 @item start_full, full
15342 If set to 1, completely fill the output with generated rows before
15343 outputting the first frame.
15344 This is the default behavior, for disabling set the value to 0.
15345
15346 @item stitch
15347 If set to 1, stitch the left and right row edges together.
15348 This is the default behavior, for disabling set the value to 0.
15349 @end table
15350
15351 @subsection Examples
15352
15353 @itemize
15354 @item
15355 Read the initial state from @file{pattern}, and specify an output of
15356 size 200x400.
15357 @example
15358 cellauto=f=pattern:s=200x400
15359 @end example
15360
15361 @item
15362 Generate a random initial row with a width of 200 cells, with a fill
15363 ratio of 2/3:
15364 @example
15365 cellauto=ratio=2/3:s=200x200
15366 @end example
15367
15368 @item
15369 Create a pattern generated by rule 18 starting by a single alive cell
15370 centered on an initial row with width 100:
15371 @example
15372 cellauto=p=@@:s=100x400:full=0:rule=18
15373 @end example
15374
15375 @item
15376 Specify a more elaborated initial pattern:
15377 @example
15378 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
15379 @end example
15380
15381 @end itemize
15382
15383 @anchor{coreimagesrc}
15384 @section coreimagesrc
15385 Video source generated on GPU using Apple's CoreImage API on OSX.
15386
15387 This video source is a specialized version of the @ref{coreimage} video filter.
15388 Use a core image generator at the beginning of the applied filterchain to
15389 generate the content.
15390
15391 The coreimagesrc video source accepts the following options:
15392 @table @option
15393 @item list_generators
15394 List all available generators along with all their respective options as well as
15395 possible minimum and maximum values along with the default values.
15396 @example
15397 list_generators=true
15398 @end example
15399
15400 @item size, s
15401 Specify the size of the sourced video. For the syntax of this option, check the
15402 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15403 The default value is @code{320x240}.
15404
15405 @item rate, r
15406 Specify the frame rate of the sourced video, as the number of frames
15407 generated per second. It has to be a string in the format
15408 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15409 number or a valid video frame rate abbreviation. The default value is
15410 "25".
15411
15412 @item sar
15413 Set the sample aspect ratio of the sourced video.
15414
15415 @item duration, d
15416 Set the duration of the sourced video. See
15417 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15418 for the accepted syntax.
15419
15420 If not specified, or the expressed duration is negative, the video is
15421 supposed to be generated forever.
15422 @end table
15423
15424 Additionally, all options of the @ref{coreimage} video filter are accepted.
15425 A complete filterchain can be used for further processing of the
15426 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
15427 and examples for details.
15428
15429 @subsection Examples
15430
15431 @itemize
15432
15433 @item
15434 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
15435 given as complete and escaped command-line for Apple's standard bash shell:
15436 @example
15437 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
15438 @end example
15439 This example is equivalent to the QRCode example of @ref{coreimage} without the
15440 need for a nullsrc video source.
15441 @end itemize
15442
15443
15444 @section mandelbrot
15445
15446 Generate a Mandelbrot set fractal, and progressively zoom towards the
15447 point specified with @var{start_x} and @var{start_y}.
15448
15449 This source accepts the following options:
15450
15451 @table @option
15452
15453 @item end_pts
15454 Set the terminal pts value. Default value is 400.
15455
15456 @item end_scale
15457 Set the terminal scale value.
15458 Must be a floating point value. Default value is 0.3.
15459
15460 @item inner
15461 Set the inner coloring mode, that is the algorithm used to draw the
15462 Mandelbrot fractal internal region.
15463
15464 It shall assume one of the following values:
15465 @table @option
15466 @item black
15467 Set black mode.
15468 @item convergence
15469 Show time until convergence.
15470 @item mincol
15471 Set color based on point closest to the origin of the iterations.
15472 @item period
15473 Set period mode.
15474 @end table
15475
15476 Default value is @var{mincol}.
15477
15478 @item bailout
15479 Set the bailout value. Default value is 10.0.
15480
15481 @item maxiter
15482 Set the maximum of iterations performed by the rendering
15483 algorithm. Default value is 7189.
15484
15485 @item outer
15486 Set outer coloring mode.
15487 It shall assume one of following values:
15488 @table @option
15489 @item iteration_count
15490 Set iteration cound mode.
15491 @item normalized_iteration_count
15492 set normalized iteration count mode.
15493 @end table
15494 Default value is @var{normalized_iteration_count}.
15495
15496 @item rate, r
15497 Set frame rate, expressed as number of frames per second. Default
15498 value is "25".
15499
15500 @item size, s
15501 Set frame size. For the syntax of this option, check the "Video
15502 size" section in the ffmpeg-utils manual. Default value is "640x480".
15503
15504 @item start_scale
15505 Set the initial scale value. Default value is 3.0.
15506
15507 @item start_x
15508 Set the initial x position. Must be a floating point value between
15509 -100 and 100. Default value is -0.743643887037158704752191506114774.
15510
15511 @item start_y
15512 Set the initial y position. Must be a floating point value between
15513 -100 and 100. Default value is -0.131825904205311970493132056385139.
15514 @end table
15515
15516 @section mptestsrc
15517
15518 Generate various test patterns, as generated by the MPlayer test filter.
15519
15520 The size of the generated video is fixed, and is 256x256.
15521 This source is useful in particular for testing encoding features.
15522
15523 This source accepts the following options:
15524
15525 @table @option
15526
15527 @item rate, r
15528 Specify the frame rate of the sourced video, as the number of frames
15529 generated per second. It has to be a string in the format
15530 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15531 number or a valid video frame rate abbreviation. The default value is
15532 "25".
15533
15534 @item duration, d
15535 Set the duration of the sourced video. See
15536 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15537 for the accepted syntax.
15538
15539 If not specified, or the expressed duration is negative, the video is
15540 supposed to be generated forever.
15541
15542 @item test, t
15543
15544 Set the number or the name of the test to perform. Supported tests are:
15545 @table @option
15546 @item dc_luma
15547 @item dc_chroma
15548 @item freq_luma
15549 @item freq_chroma
15550 @item amp_luma
15551 @item amp_chroma
15552 @item cbp
15553 @item mv
15554 @item ring1
15555 @item ring2
15556 @item all
15557
15558 @end table
15559
15560 Default value is "all", which will cycle through the list of all tests.
15561 @end table
15562
15563 Some examples:
15564 @example
15565 mptestsrc=t=dc_luma
15566 @end example
15567
15568 will generate a "dc_luma" test pattern.
15569
15570 @section frei0r_src
15571
15572 Provide a frei0r source.
15573
15574 To enable compilation of this filter you need to install the frei0r
15575 header and configure FFmpeg with @code{--enable-frei0r}.
15576
15577 This source accepts the following parameters:
15578
15579 @table @option
15580
15581 @item size
15582 The size of the video to generate. For the syntax of this option, check the
15583 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15584
15585 @item framerate
15586 The framerate of the generated video. It may be a string of the form
15587 @var{num}/@var{den} or a frame rate abbreviation.
15588
15589 @item filter_name
15590 The name to the frei0r source to load. For more information regarding frei0r and
15591 how to set the parameters, read the @ref{frei0r} section in the video filters
15592 documentation.
15593
15594 @item filter_params
15595 A '|'-separated list of parameters to pass to the frei0r source.
15596
15597 @end table
15598
15599 For example, to generate a frei0r partik0l source with size 200x200
15600 and frame rate 10 which is overlaid on the overlay filter main input:
15601 @example
15602 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
15603 @end example
15604
15605 @section life
15606
15607 Generate a life pattern.
15608
15609 This source is based on a generalization of John Conway's life game.
15610
15611 The sourced input represents a life grid, each pixel represents a cell
15612 which can be in one of two possible states, alive or dead. Every cell
15613 interacts with its eight neighbours, which are the cells that are
15614 horizontally, vertically, or diagonally adjacent.
15615
15616 At each interaction the grid evolves according to the adopted rule,
15617 which specifies the number of neighbor alive cells which will make a
15618 cell stay alive or born. The @option{rule} option allows one to specify
15619 the rule to adopt.
15620
15621 This source accepts the following options:
15622
15623 @table @option
15624 @item filename, f
15625 Set the file from which to read the initial grid state. In the file,
15626 each non-whitespace character is considered an alive cell, and newline
15627 is used to delimit the end of each row.
15628
15629 If this option is not specified, the initial grid is generated
15630 randomly.
15631
15632 @item rate, r
15633 Set the video rate, that is the number of frames generated per second.
15634 Default is 25.
15635
15636 @item random_fill_ratio, ratio
15637 Set the random fill ratio for the initial random grid. It is a
15638 floating point number value ranging from 0 to 1, defaults to 1/PHI.
15639 It is ignored when a file is specified.
15640
15641 @item random_seed, seed
15642 Set the seed for filling the initial random grid, must be an integer
15643 included between 0 and UINT32_MAX. If not specified, or if explicitly
15644 set to -1, the filter will try to use a good random seed on a best
15645 effort basis.
15646
15647 @item rule
15648 Set the life rule.
15649
15650 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
15651 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
15652 @var{NS} specifies the number of alive neighbor cells which make a
15653 live cell stay alive, and @var{NB} the number of alive neighbor cells
15654 which make a dead cell to become alive (i.e. to "born").
15655 "s" and "b" can be used in place of "S" and "B", respectively.
15656
15657 Alternatively a rule can be specified by an 18-bits integer. The 9
15658 high order bits are used to encode the next cell state if it is alive
15659 for each number of neighbor alive cells, the low order bits specify
15660 the rule for "borning" new cells. Higher order bits encode for an
15661 higher number of neighbor cells.
15662 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
15663 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
15664
15665 Default value is "S23/B3", which is the original Conway's game of life
15666 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
15667 cells, and will born a new cell if there are three alive cells around
15668 a dead cell.
15669
15670 @item size, s
15671 Set the size of the output video. For the syntax of this option, check the
15672 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15673
15674 If @option{filename} is specified, the size is set by default to the
15675 same size of the input file. If @option{size} is set, it must contain
15676 the size specified in the input file, and the initial grid defined in
15677 that file is centered in the larger resulting area.
15678
15679 If a filename is not specified, the size value defaults to "320x240"
15680 (used for a randomly generated initial grid).
15681
15682 @item stitch
15683 If set to 1, stitch the left and right grid edges together, and the
15684 top and bottom edges also. Defaults to 1.
15685
15686 @item mold
15687 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
15688 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
15689 value from 0 to 255.
15690
15691 @item life_color
15692 Set the color of living (or new born) cells.
15693
15694 @item death_color
15695 Set the color of dead cells. If @option{mold} is set, this is the first color
15696 used to represent a dead cell.
15697
15698 @item mold_color
15699 Set mold color, for definitely dead and moldy cells.
15700
15701 For the syntax of these 3 color options, check the "Color" section in the
15702 ffmpeg-utils manual.
15703 @end table
15704
15705 @subsection Examples
15706
15707 @itemize
15708 @item
15709 Read a grid from @file{pattern}, and center it on a grid of size
15710 300x300 pixels:
15711 @example
15712 life=f=pattern:s=300x300
15713 @end example
15714
15715 @item
15716 Generate a random grid of size 200x200, with a fill ratio of 2/3:
15717 @example
15718 life=ratio=2/3:s=200x200
15719 @end example
15720
15721 @item
15722 Specify a custom rule for evolving a randomly generated grid:
15723 @example
15724 life=rule=S14/B34
15725 @end example
15726
15727 @item
15728 Full example with slow death effect (mold) using @command{ffplay}:
15729 @example
15730 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
15731 @end example
15732 @end itemize
15733
15734 @anchor{allrgb}
15735 @anchor{allyuv}
15736 @anchor{color}
15737 @anchor{haldclutsrc}
15738 @anchor{nullsrc}
15739 @anchor{rgbtestsrc}
15740 @anchor{smptebars}
15741 @anchor{smptehdbars}
15742 @anchor{testsrc}
15743 @anchor{testsrc2}
15744 @anchor{yuvtestsrc}
15745 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
15746
15747 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
15748
15749 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
15750
15751 The @code{color} source provides an uniformly colored input.
15752
15753 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
15754 @ref{haldclut} filter.
15755
15756 The @code{nullsrc} source returns unprocessed video frames. It is
15757 mainly useful to be employed in analysis / debugging tools, or as the
15758 source for filters which ignore the input data.
15759
15760 The @code{rgbtestsrc} source generates an RGB test pattern useful for
15761 detecting RGB vs BGR issues. You should see a red, green and blue
15762 stripe from top to bottom.
15763
15764 The @code{smptebars} source generates a color bars pattern, based on
15765 the SMPTE Engineering Guideline EG 1-1990.
15766
15767 The @code{smptehdbars} source generates a color bars pattern, based on
15768 the SMPTE RP 219-2002.
15769
15770 The @code{testsrc} source generates a test video pattern, showing a
15771 color pattern, a scrolling gradient and a timestamp. This is mainly
15772 intended for testing purposes.
15773
15774 The @code{testsrc2} source is similar to testsrc, but supports more
15775 pixel formats instead of just @code{rgb24}. This allows using it as an
15776 input for other tests without requiring a format conversion.
15777
15778 The @code{yuvtestsrc} source generates an YUV test pattern. You should
15779 see a y, cb and cr stripe from top to bottom.
15780
15781 The sources accept the following parameters:
15782
15783 @table @option
15784
15785 @item color, c
15786 Specify the color of the source, only available in the @code{color}
15787 source. For the syntax of this option, check the "Color" section in the
15788 ffmpeg-utils manual.
15789
15790 @item level
15791 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
15792 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
15793 pixels to be used as identity matrix for 3D lookup tables. Each component is
15794 coded on a @code{1/(N*N)} scale.
15795
15796 @item size, s
15797 Specify the size of the sourced video. For the syntax of this option, check the
15798 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15799 The default value is @code{320x240}.
15800
15801 This option is not available with the @code{haldclutsrc} filter.
15802
15803 @item rate, r
15804 Specify the frame rate of the sourced video, as the number of frames
15805 generated per second. It has to be a string in the format
15806 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15807 number or a valid video frame rate abbreviation. The default value is
15808 "25".
15809
15810 @item sar
15811 Set the sample aspect ratio of the sourced video.
15812
15813 @item duration, d
15814 Set the duration of the sourced video. See
15815 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15816 for the accepted syntax.
15817
15818 If not specified, or the expressed duration is negative, the video is
15819 supposed to be generated forever.
15820
15821 @item decimals, n
15822 Set the number of decimals to show in the timestamp, only available in the
15823 @code{testsrc} source.
15824
15825 The displayed timestamp value will correspond to the original
15826 timestamp value multiplied by the power of 10 of the specified
15827 value. Default value is 0.
15828 @end table
15829
15830 For example the following:
15831 @example
15832 testsrc=duration=5.3:size=qcif:rate=10
15833 @end example
15834
15835 will generate a video with a duration of 5.3 seconds, with size
15836 176x144 and a frame rate of 10 frames per second.
15837
15838 The following graph description will generate a red source
15839 with an opacity of 0.2, with size "qcif" and a frame rate of 10
15840 frames per second.
15841 @example
15842 color=c=red@@0.2:s=qcif:r=10
15843 @end example
15844
15845 If the input content is to be ignored, @code{nullsrc} can be used. The
15846 following command generates noise in the luminance plane by employing
15847 the @code{geq} filter:
15848 @example
15849 nullsrc=s=256x256, geq=random(1)*255:128:128
15850 @end example
15851
15852 @subsection Commands
15853
15854 The @code{color} source supports the following commands:
15855
15856 @table @option
15857 @item c, color
15858 Set the color of the created image. Accepts the same syntax of the
15859 corresponding @option{color} option.
15860 @end table
15861
15862 @c man end VIDEO SOURCES
15863
15864 @chapter Video Sinks
15865 @c man begin VIDEO SINKS
15866
15867 Below is a description of the currently available video sinks.
15868
15869 @section buffersink
15870
15871 Buffer video frames, and make them available to the end of the filter
15872 graph.
15873
15874 This sink is mainly intended for programmatic use, in particular
15875 through the interface defined in @file{libavfilter/buffersink.h}
15876 or the options system.
15877
15878 It accepts a pointer to an AVBufferSinkContext structure, which
15879 defines the incoming buffers' formats, to be passed as the opaque
15880 parameter to @code{avfilter_init_filter} for initialization.
15881
15882 @section nullsink
15883
15884 Null video sink: do absolutely nothing with the input video. It is
15885 mainly useful as a template and for use in analysis / debugging
15886 tools.
15887
15888 @c man end VIDEO SINKS
15889
15890 @chapter Multimedia Filters
15891 @c man begin MULTIMEDIA FILTERS
15892
15893 Below is a description of the currently available multimedia filters.
15894
15895 @section abitscope
15896
15897 Convert input audio to a video output, displaying the audio bit scope.
15898
15899 The filter accepts the following options:
15900
15901 @table @option
15902 @item rate, r
15903 Set frame rate, expressed as number of frames per second. Default
15904 value is "25".
15905
15906 @item size, s
15907 Specify the video size for the output. For the syntax of this option, check the
15908 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15909 Default value is @code{1024x256}.
15910
15911 @item colors
15912 Specify list of colors separated by space or by '|' which will be used to
15913 draw channels. Unrecognized or missing colors will be replaced
15914 by white color.
15915 @end table
15916
15917 @section ahistogram
15918
15919 Convert input audio to a video output, displaying the volume histogram.
15920
15921 The filter accepts the following options:
15922
15923 @table @option
15924 @item dmode
15925 Specify how histogram is calculated.
15926
15927 It accepts the following values:
15928 @table @samp
15929 @item single
15930 Use single histogram for all channels.
15931 @item separate
15932 Use separate histogram for each channel.
15933 @end table
15934 Default is @code{single}.
15935
15936 @item rate, r
15937 Set frame rate, expressed as number of frames per second. Default
15938 value is "25".
15939
15940 @item size, s
15941 Specify the video size for the output. For the syntax of this option, check the
15942 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15943 Default value is @code{hd720}.
15944
15945 @item scale
15946 Set display scale.
15947
15948 It accepts the following values:
15949 @table @samp
15950 @item log
15951 logarithmic
15952 @item sqrt
15953 square root
15954 @item cbrt
15955 cubic root
15956 @item lin
15957 linear
15958 @item rlog
15959 reverse logarithmic
15960 @end table
15961 Default is @code{log}.
15962
15963 @item ascale
15964 Set amplitude scale.
15965
15966 It accepts the following values:
15967 @table @samp
15968 @item log
15969 logarithmic
15970 @item lin
15971 linear
15972 @end table
15973 Default is @code{log}.
15974
15975 @item acount
15976 Set how much frames to accumulate in histogram.
15977 Defauls is 1. Setting this to -1 accumulates all frames.
15978
15979 @item rheight
15980 Set histogram ratio of window height.
15981
15982 @item slide
15983 Set sonogram sliding.
15984
15985 It accepts the following values:
15986 @table @samp
15987 @item replace
15988 replace old rows with new ones.
15989 @item scroll
15990 scroll from top to bottom.
15991 @end table
15992 Default is @code{replace}.
15993 @end table
15994
15995 @section aphasemeter
15996
15997 Convert input audio to a video output, displaying the audio phase.
15998
15999 The filter accepts the following options:
16000
16001 @table @option
16002 @item rate, r
16003 Set the output frame rate. Default value is @code{25}.
16004
16005 @item size, s
16006 Set the video size for the output. For the syntax of this option, check the
16007 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16008 Default value is @code{800x400}.
16009
16010 @item rc
16011 @item gc
16012 @item bc
16013 Specify the red, green, blue contrast. Default values are @code{2},
16014 @code{7} and @code{1}.
16015 Allowed range is @code{[0, 255]}.
16016
16017 @item mpc
16018 Set color which will be used for drawing median phase. If color is
16019 @code{none} which is default, no median phase value will be drawn.
16020
16021 @item video
16022 Enable video output. Default is enabled.
16023 @end table
16024
16025 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
16026 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
16027 The @code{-1} means left and right channels are completely out of phase and
16028 @code{1} means channels are in phase.
16029
16030 @section avectorscope
16031
16032 Convert input audio to a video output, representing the audio vector
16033 scope.
16034
16035 The filter is used to measure the difference between channels of stereo
16036 audio stream. A monoaural signal, consisting of identical left and right
16037 signal, results in straight vertical line. Any stereo separation is visible
16038 as a deviation from this line, creating a Lissajous figure.
16039 If the straight (or deviation from it) but horizontal line appears this
16040 indicates that the left and right channels are out of phase.
16041
16042 The filter accepts the following options:
16043
16044 @table @option
16045 @item mode, m
16046 Set the vectorscope mode.
16047
16048 Available values are:
16049 @table @samp
16050 @item lissajous
16051 Lissajous rotated by 45 degrees.
16052
16053 @item lissajous_xy
16054 Same as above but not rotated.
16055
16056 @item polar
16057 Shape resembling half of circle.
16058 @end table
16059
16060 Default value is @samp{lissajous}.
16061
16062 @item size, s
16063 Set the video size for the output. For the syntax of this option, check the
16064 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16065 Default value is @code{400x400}.
16066
16067 @item rate, r
16068 Set the output frame rate. Default value is @code{25}.
16069
16070 @item rc
16071 @item gc
16072 @item bc
16073 @item ac
16074 Specify the red, green, blue and alpha contrast. Default values are @code{40},
16075 @code{160}, @code{80} and @code{255}.
16076 Allowed range is @code{[0, 255]}.
16077
16078 @item rf
16079 @item gf
16080 @item bf
16081 @item af
16082 Specify the red, green, blue and alpha fade. Default values are @code{15},
16083 @code{10}, @code{5} and @code{5}.
16084 Allowed range is @code{[0, 255]}.
16085
16086 @item zoom
16087 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
16088
16089 @item draw
16090 Set the vectorscope drawing mode.
16091
16092 Available values are:
16093 @table @samp
16094 @item dot
16095 Draw dot for each sample.
16096
16097 @item line
16098 Draw line between previous and current sample.
16099 @end table
16100
16101 Default value is @samp{dot}.
16102
16103 @item scale
16104 Specify amplitude scale of audio samples.
16105
16106 Available values are:
16107 @table @samp
16108 @item lin
16109 Linear.
16110
16111 @item sqrt
16112 Square root.
16113
16114 @item cbrt
16115 Cubic root.
16116
16117 @item log
16118 Logarithmic.
16119 @end table
16120
16121 @end table
16122
16123 @subsection Examples
16124
16125 @itemize
16126 @item
16127 Complete example using @command{ffplay}:
16128 @example
16129 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16130              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
16131 @end example
16132 @end itemize
16133
16134 @section bench, abench
16135
16136 Benchmark part of a filtergraph.
16137
16138 The filter accepts the following options:
16139
16140 @table @option
16141 @item action
16142 Start or stop a timer.
16143
16144 Available values are:
16145 @table @samp
16146 @item start
16147 Get the current time, set it as frame metadata (using the key
16148 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
16149
16150 @item stop
16151 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
16152 the input frame metadata to get the time difference. Time difference, average,
16153 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
16154 @code{min}) are then printed. The timestamps are expressed in seconds.
16155 @end table
16156 @end table
16157
16158 @subsection Examples
16159
16160 @itemize
16161 @item
16162 Benchmark @ref{selectivecolor} filter:
16163 @example
16164 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
16165 @end example
16166 @end itemize
16167
16168 @section concat
16169
16170 Concatenate audio and video streams, joining them together one after the
16171 other.
16172
16173 The filter works on segments of synchronized video and audio streams. All
16174 segments must have the same number of streams of each type, and that will
16175 also be the number of streams at output.
16176
16177 The filter accepts the following options:
16178
16179 @table @option
16180
16181 @item n
16182 Set the number of segments. Default is 2.
16183
16184 @item v
16185 Set the number of output video streams, that is also the number of video
16186 streams in each segment. Default is 1.
16187
16188 @item a
16189 Set the number of output audio streams, that is also the number of audio
16190 streams in each segment. Default is 0.
16191
16192 @item unsafe
16193 Activate unsafe mode: do not fail if segments have a different format.
16194
16195 @end table
16196
16197 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
16198 @var{a} audio outputs.
16199
16200 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
16201 segment, in the same order as the outputs, then the inputs for the second
16202 segment, etc.
16203
16204 Related streams do not always have exactly the same duration, for various
16205 reasons including codec frame size or sloppy authoring. For that reason,
16206 related synchronized streams (e.g. a video and its audio track) should be
16207 concatenated at once. The concat filter will use the duration of the longest
16208 stream in each segment (except the last one), and if necessary pad shorter
16209 audio streams with silence.
16210
16211 For this filter to work correctly, all segments must start at timestamp 0.
16212
16213 All corresponding streams must have the same parameters in all segments; the
16214 filtering system will automatically select a common pixel format for video
16215 streams, and a common sample format, sample rate and channel layout for
16216 audio streams, but other settings, such as resolution, must be converted
16217 explicitly by the user.
16218
16219 Different frame rates are acceptable but will result in variable frame rate
16220 at output; be sure to configure the output file to handle it.
16221
16222 @subsection Examples
16223
16224 @itemize
16225 @item
16226 Concatenate an opening, an episode and an ending, all in bilingual version
16227 (video in stream 0, audio in streams 1 and 2):
16228 @example
16229 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
16230   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
16231    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
16232   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
16233 @end example
16234
16235 @item
16236 Concatenate two parts, handling audio and video separately, using the
16237 (a)movie sources, and adjusting the resolution:
16238 @example
16239 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
16240 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
16241 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
16242 @end example
16243 Note that a desync will happen at the stitch if the audio and video streams
16244 do not have exactly the same duration in the first file.
16245
16246 @end itemize
16247
16248 @section drawgraph, adrawgraph
16249
16250 Draw a graph using input video or audio metadata.
16251
16252 It accepts the following parameters:
16253
16254 @table @option
16255 @item m1
16256 Set 1st frame metadata key from which metadata values will be used to draw a graph.
16257
16258 @item fg1
16259 Set 1st foreground color expression.
16260
16261 @item m2
16262 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
16263
16264 @item fg2
16265 Set 2nd foreground color expression.
16266
16267 @item m3
16268 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
16269
16270 @item fg3
16271 Set 3rd foreground color expression.
16272
16273 @item m4
16274 Set 4th frame metadata key from which metadata values will be used to draw a graph.
16275
16276 @item fg4
16277 Set 4th foreground color expression.
16278
16279 @item min
16280 Set minimal value of metadata value.
16281
16282 @item max
16283 Set maximal value of metadata value.
16284
16285 @item bg
16286 Set graph background color. Default is white.
16287
16288 @item mode
16289 Set graph mode.
16290
16291 Available values for mode is:
16292 @table @samp
16293 @item bar
16294 @item dot
16295 @item line
16296 @end table
16297
16298 Default is @code{line}.
16299
16300 @item slide
16301 Set slide mode.
16302
16303 Available values for slide is:
16304 @table @samp
16305 @item frame
16306 Draw new frame when right border is reached.
16307
16308 @item replace
16309 Replace old columns with new ones.
16310
16311 @item scroll
16312 Scroll from right to left.
16313
16314 @item rscroll
16315 Scroll from left to right.
16316
16317 @item picture
16318 Draw single picture.
16319 @end table
16320
16321 Default is @code{frame}.
16322
16323 @item size
16324 Set size of graph video. For the syntax of this option, check the
16325 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16326 The default value is @code{900x256}.
16327
16328 The foreground color expressions can use the following variables:
16329 @table @option
16330 @item MIN
16331 Minimal value of metadata value.
16332
16333 @item MAX
16334 Maximal value of metadata value.
16335
16336 @item VAL
16337 Current metadata key value.
16338 @end table
16339
16340 The color is defined as 0xAABBGGRR.
16341 @end table
16342
16343 Example using metadata from @ref{signalstats} filter:
16344 @example
16345 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
16346 @end example
16347
16348 Example using metadata from @ref{ebur128} filter:
16349 @example
16350 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
16351 @end example
16352
16353 @anchor{ebur128}
16354 @section ebur128
16355
16356 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
16357 it unchanged. By default, it logs a message at a frequency of 10Hz with the
16358 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
16359 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
16360
16361 The filter also has a video output (see the @var{video} option) with a real
16362 time graph to observe the loudness evolution. The graphic contains the logged
16363 message mentioned above, so it is not printed anymore when this option is set,
16364 unless the verbose logging is set. The main graphing area contains the
16365 short-term loudness (3 seconds of analysis), and the gauge on the right is for
16366 the momentary loudness (400 milliseconds).
16367
16368 More information about the Loudness Recommendation EBU R128 on
16369 @url{http://tech.ebu.ch/loudness}.
16370
16371 The filter accepts the following options:
16372
16373 @table @option
16374
16375 @item video
16376 Activate the video output. The audio stream is passed unchanged whether this
16377 option is set or no. The video stream will be the first output stream if
16378 activated. Default is @code{0}.
16379
16380 @item size
16381 Set the video size. This option is for video only. For the syntax of this
16382 option, check the
16383 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16384 Default and minimum resolution is @code{640x480}.
16385
16386 @item meter
16387 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
16388 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
16389 other integer value between this range is allowed.
16390
16391 @item metadata
16392 Set metadata injection. If set to @code{1}, the audio input will be segmented
16393 into 100ms output frames, each of them containing various loudness information
16394 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
16395
16396 Default is @code{0}.
16397
16398 @item framelog
16399 Force the frame logging level.
16400
16401 Available values are:
16402 @table @samp
16403 @item info
16404 information logging level
16405 @item verbose
16406 verbose logging level
16407 @end table
16408
16409 By default, the logging level is set to @var{info}. If the @option{video} or
16410 the @option{metadata} options are set, it switches to @var{verbose}.
16411
16412 @item peak
16413 Set peak mode(s).
16414
16415 Available modes can be cumulated (the option is a @code{flag} type). Possible
16416 values are:
16417 @table @samp
16418 @item none
16419 Disable any peak mode (default).
16420 @item sample
16421 Enable sample-peak mode.
16422
16423 Simple peak mode looking for the higher sample value. It logs a message
16424 for sample-peak (identified by @code{SPK}).
16425 @item true
16426 Enable true-peak mode.
16427
16428 If enabled, the peak lookup is done on an over-sampled version of the input
16429 stream for better peak accuracy. It logs a message for true-peak.
16430 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
16431 This mode requires a build with @code{libswresample}.
16432 @end table
16433
16434 @item dualmono
16435 Treat mono input files as "dual mono". If a mono file is intended for playback
16436 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
16437 If set to @code{true}, this option will compensate for this effect.
16438 Multi-channel input files are not affected by this option.
16439
16440 @item panlaw
16441 Set a specific pan law to be used for the measurement of dual mono files.
16442 This parameter is optional, and has a default value of -3.01dB.
16443 @end table
16444
16445 @subsection Examples
16446
16447 @itemize
16448 @item
16449 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
16450 @example
16451 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
16452 @end example
16453
16454 @item
16455 Run an analysis with @command{ffmpeg}:
16456 @example
16457 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
16458 @end example
16459 @end itemize
16460
16461 @section interleave, ainterleave
16462
16463 Temporally interleave frames from several inputs.
16464
16465 @code{interleave} works with video inputs, @code{ainterleave} with audio.
16466
16467 These filters read frames from several inputs and send the oldest
16468 queued frame to the output.
16469
16470 Input streams must have well defined, monotonically increasing frame
16471 timestamp values.
16472
16473 In order to submit one frame to output, these filters need to enqueue
16474 at least one frame for each input, so they cannot work in case one
16475 input is not yet terminated and will not receive incoming frames.
16476
16477 For example consider the case when one input is a @code{select} filter
16478 which always drops input frames. The @code{interleave} filter will keep
16479 reading from that input, but it will never be able to send new frames
16480 to output until the input sends an end-of-stream signal.
16481
16482 Also, depending on inputs synchronization, the filters will drop
16483 frames in case one input receives more frames than the other ones, and
16484 the queue is already filled.
16485
16486 These filters accept the following options:
16487
16488 @table @option
16489 @item nb_inputs, n
16490 Set the number of different inputs, it is 2 by default.
16491 @end table
16492
16493 @subsection Examples
16494
16495 @itemize
16496 @item
16497 Interleave frames belonging to different streams using @command{ffmpeg}:
16498 @example
16499 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
16500 @end example
16501
16502 @item
16503 Add flickering blur effect:
16504 @example
16505 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
16506 @end example
16507 @end itemize
16508
16509 @section metadata, ametadata
16510
16511 Manipulate frame metadata.
16512
16513 This filter accepts the following options:
16514
16515 @table @option
16516 @item mode
16517 Set mode of operation of the filter.
16518
16519 Can be one of the following:
16520
16521 @table @samp
16522 @item select
16523 If both @code{value} and @code{key} is set, select frames
16524 which have such metadata. If only @code{key} is set, select
16525 every frame that has such key in metadata.
16526
16527 @item add
16528 Add new metadata @code{key} and @code{value}. If key is already available
16529 do nothing.
16530
16531 @item modify
16532 Modify value of already present key.
16533
16534 @item delete
16535 If @code{value} is set, delete only keys that have such value.
16536 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
16537 the frame.
16538
16539 @item print
16540 Print key and its value if metadata was found. If @code{key} is not set print all
16541 metadata values available in frame.
16542 @end table
16543
16544 @item key
16545 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
16546
16547 @item value
16548 Set metadata value which will be used. This option is mandatory for
16549 @code{modify} and @code{add} mode.
16550
16551 @item function
16552 Which function to use when comparing metadata value and @code{value}.
16553
16554 Can be one of following:
16555
16556 @table @samp
16557 @item same_str
16558 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
16559
16560 @item starts_with
16561 Values are interpreted as strings, returns true if metadata value starts with
16562 the @code{value} option string.
16563
16564 @item less
16565 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
16566
16567 @item equal
16568 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
16569
16570 @item greater
16571 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
16572
16573 @item expr
16574 Values are interpreted as floats, returns true if expression from option @code{expr}
16575 evaluates to true.
16576 @end table
16577
16578 @item expr
16579 Set expression which is used when @code{function} is set to @code{expr}.
16580 The expression is evaluated through the eval API and can contain the following
16581 constants:
16582
16583 @table @option
16584 @item VALUE1
16585 Float representation of @code{value} from metadata key.
16586
16587 @item VALUE2
16588 Float representation of @code{value} as supplied by user in @code{value} option.
16589 @end table
16590
16591 @item file
16592 If specified in @code{print} mode, output is written to the named file. Instead of
16593 plain filename any writable url can be specified. Filename ``-'' is a shorthand
16594 for standard output. If @code{file} option is not set, output is written to the log
16595 with AV_LOG_INFO loglevel.
16596
16597 @end table
16598
16599 @subsection Examples
16600
16601 @itemize
16602 @item
16603 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
16604 between 0 and 1.
16605 @example
16606 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
16607 @end example
16608 @item
16609 Print silencedetect output to file @file{metadata.txt}.
16610 @example
16611 silencedetect,ametadata=mode=print:file=metadata.txt
16612 @end example
16613 @item
16614 Direct all metadata to a pipe with file descriptor 4.
16615 @example
16616 metadata=mode=print:file='pipe\:4'
16617 @end example
16618 @end itemize
16619
16620 @section perms, aperms
16621
16622 Set read/write permissions for the output frames.
16623
16624 These filters are mainly aimed at developers to test direct path in the
16625 following filter in the filtergraph.
16626
16627 The filters accept the following options:
16628
16629 @table @option
16630 @item mode
16631 Select the permissions mode.
16632
16633 It accepts the following values:
16634 @table @samp
16635 @item none
16636 Do nothing. This is the default.
16637 @item ro
16638 Set all the output frames read-only.
16639 @item rw
16640 Set all the output frames directly writable.
16641 @item toggle
16642 Make the frame read-only if writable, and writable if read-only.
16643 @item random
16644 Set each output frame read-only or writable randomly.
16645 @end table
16646
16647 @item seed
16648 Set the seed for the @var{random} mode, must be an integer included between
16649 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16650 @code{-1}, the filter will try to use a good random seed on a best effort
16651 basis.
16652 @end table
16653
16654 Note: in case of auto-inserted filter between the permission filter and the
16655 following one, the permission might not be received as expected in that
16656 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
16657 perms/aperms filter can avoid this problem.
16658
16659 @section realtime, arealtime
16660
16661 Slow down filtering to match real time approximatively.
16662
16663 These filters will pause the filtering for a variable amount of time to
16664 match the output rate with the input timestamps.
16665 They are similar to the @option{re} option to @code{ffmpeg}.
16666
16667 They accept the following options:
16668
16669 @table @option
16670 @item limit
16671 Time limit for the pauses. Any pause longer than that will be considered
16672 a timestamp discontinuity and reset the timer. Default is 2 seconds.
16673 @end table
16674
16675 @anchor{select}
16676 @section select, aselect
16677
16678 Select frames to pass in output.
16679
16680 This filter accepts the following options:
16681
16682 @table @option
16683
16684 @item expr, e
16685 Set expression, which is evaluated for each input frame.
16686
16687 If the expression is evaluated to zero, the frame is discarded.
16688
16689 If the evaluation result is negative or NaN, the frame is sent to the
16690 first output; otherwise it is sent to the output with index
16691 @code{ceil(val)-1}, assuming that the input index starts from 0.
16692
16693 For example a value of @code{1.2} corresponds to the output with index
16694 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
16695
16696 @item outputs, n
16697 Set the number of outputs. The output to which to send the selected
16698 frame is based on the result of the evaluation. Default value is 1.
16699 @end table
16700
16701 The expression can contain the following constants:
16702
16703 @table @option
16704 @item n
16705 The (sequential) number of the filtered frame, starting from 0.
16706
16707 @item selected_n
16708 The (sequential) number of the selected frame, starting from 0.
16709
16710 @item prev_selected_n
16711 The sequential number of the last selected frame. It's NAN if undefined.
16712
16713 @item TB
16714 The timebase of the input timestamps.
16715
16716 @item pts
16717 The PTS (Presentation TimeStamp) of the filtered video frame,
16718 expressed in @var{TB} units. It's NAN if undefined.
16719
16720 @item t
16721 The PTS of the filtered video frame,
16722 expressed in seconds. It's NAN if undefined.
16723
16724 @item prev_pts
16725 The PTS of the previously filtered video frame. It's NAN if undefined.
16726
16727 @item prev_selected_pts
16728 The PTS of the last previously filtered video frame. It's NAN if undefined.
16729
16730 @item prev_selected_t
16731 The PTS of the last previously selected video frame. It's NAN if undefined.
16732
16733 @item start_pts
16734 The PTS of the first video frame in the video. It's NAN if undefined.
16735
16736 @item start_t
16737 The time of the first video frame in the video. It's NAN if undefined.
16738
16739 @item pict_type @emph{(video only)}
16740 The type of the filtered frame. It can assume one of the following
16741 values:
16742 @table @option
16743 @item I
16744 @item P
16745 @item B
16746 @item S
16747 @item SI
16748 @item SP
16749 @item BI
16750 @end table
16751
16752 @item interlace_type @emph{(video only)}
16753 The frame interlace type. It can assume one of the following values:
16754 @table @option
16755 @item PROGRESSIVE
16756 The frame is progressive (not interlaced).
16757 @item TOPFIRST
16758 The frame is top-field-first.
16759 @item BOTTOMFIRST
16760 The frame is bottom-field-first.
16761 @end table
16762
16763 @item consumed_sample_n @emph{(audio only)}
16764 the number of selected samples before the current frame
16765
16766 @item samples_n @emph{(audio only)}
16767 the number of samples in the current frame
16768
16769 @item sample_rate @emph{(audio only)}
16770 the input sample rate
16771
16772 @item key
16773 This is 1 if the filtered frame is a key-frame, 0 otherwise.
16774
16775 @item pos
16776 the position in the file of the filtered frame, -1 if the information
16777 is not available (e.g. for synthetic video)
16778
16779 @item scene @emph{(video only)}
16780 value between 0 and 1 to indicate a new scene; a low value reflects a low
16781 probability for the current frame to introduce a new scene, while a higher
16782 value means the current frame is more likely to be one (see the example below)
16783
16784 @item concatdec_select
16785 The concat demuxer can select only part of a concat input file by setting an
16786 inpoint and an outpoint, but the output packets may not be entirely contained
16787 in the selected interval. By using this variable, it is possible to skip frames
16788 generated by the concat demuxer which are not exactly contained in the selected
16789 interval.
16790
16791 This works by comparing the frame pts against the @var{lavf.concat.start_time}
16792 and the @var{lavf.concat.duration} packet metadata values which are also
16793 present in the decoded frames.
16794
16795 The @var{concatdec_select} variable is -1 if the frame pts is at least
16796 start_time and either the duration metadata is missing or the frame pts is less
16797 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
16798 missing.
16799
16800 That basically means that an input frame is selected if its pts is within the
16801 interval set by the concat demuxer.
16802
16803 @end table
16804
16805 The default value of the select expression is "1".
16806
16807 @subsection Examples
16808
16809 @itemize
16810 @item
16811 Select all frames in input:
16812 @example
16813 select
16814 @end example
16815
16816 The example above is the same as:
16817 @example
16818 select=1
16819 @end example
16820
16821 @item
16822 Skip all frames:
16823 @example
16824 select=0
16825 @end example
16826
16827 @item
16828 Select only I-frames:
16829 @example
16830 select='eq(pict_type\,I)'
16831 @end example
16832
16833 @item
16834 Select one frame every 100:
16835 @example
16836 select='not(mod(n\,100))'
16837 @end example
16838
16839 @item
16840 Select only frames contained in the 10-20 time interval:
16841 @example
16842 select=between(t\,10\,20)
16843 @end example
16844
16845 @item
16846 Select only I-frames contained in the 10-20 time interval:
16847 @example
16848 select=between(t\,10\,20)*eq(pict_type\,I)
16849 @end example
16850
16851 @item
16852 Select frames with a minimum distance of 10 seconds:
16853 @example
16854 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
16855 @end example
16856
16857 @item
16858 Use aselect to select only audio frames with samples number > 100:
16859 @example
16860 aselect='gt(samples_n\,100)'
16861 @end example
16862
16863 @item
16864 Create a mosaic of the first scenes:
16865 @example
16866 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
16867 @end example
16868
16869 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
16870 choice.
16871
16872 @item
16873 Send even and odd frames to separate outputs, and compose them:
16874 @example
16875 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
16876 @end example
16877
16878 @item
16879 Select useful frames from an ffconcat file which is using inpoints and
16880 outpoints but where the source files are not intra frame only.
16881 @example
16882 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
16883 @end example
16884 @end itemize
16885
16886 @section sendcmd, asendcmd
16887
16888 Send commands to filters in the filtergraph.
16889
16890 These filters read commands to be sent to other filters in the
16891 filtergraph.
16892
16893 @code{sendcmd} must be inserted between two video filters,
16894 @code{asendcmd} must be inserted between two audio filters, but apart
16895 from that they act the same way.
16896
16897 The specification of commands can be provided in the filter arguments
16898 with the @var{commands} option, or in a file specified by the
16899 @var{filename} option.
16900
16901 These filters accept the following options:
16902 @table @option
16903 @item commands, c
16904 Set the commands to be read and sent to the other filters.
16905 @item filename, f
16906 Set the filename of the commands to be read and sent to the other
16907 filters.
16908 @end table
16909
16910 @subsection Commands syntax
16911
16912 A commands description consists of a sequence of interval
16913 specifications, comprising a list of commands to be executed when a
16914 particular event related to that interval occurs. The occurring event
16915 is typically the current frame time entering or leaving a given time
16916 interval.
16917
16918 An interval is specified by the following syntax:
16919 @example
16920 @var{START}[-@var{END}] @var{COMMANDS};
16921 @end example
16922
16923 The time interval is specified by the @var{START} and @var{END} times.
16924 @var{END} is optional and defaults to the maximum time.
16925
16926 The current frame time is considered within the specified interval if
16927 it is included in the interval [@var{START}, @var{END}), that is when
16928 the time is greater or equal to @var{START} and is lesser than
16929 @var{END}.
16930
16931 @var{COMMANDS} consists of a sequence of one or more command
16932 specifications, separated by ",", relating to that interval.  The
16933 syntax of a command specification is given by:
16934 @example
16935 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
16936 @end example
16937
16938 @var{FLAGS} is optional and specifies the type of events relating to
16939 the time interval which enable sending the specified command, and must
16940 be a non-null sequence of identifier flags separated by "+" or "|" and
16941 enclosed between "[" and "]".
16942
16943 The following flags are recognized:
16944 @table @option
16945 @item enter
16946 The command is sent when the current frame timestamp enters the
16947 specified interval. In other words, the command is sent when the
16948 previous frame timestamp was not in the given interval, and the
16949 current is.
16950
16951 @item leave
16952 The command is sent when the current frame timestamp leaves the
16953 specified interval. In other words, the command is sent when the
16954 previous frame timestamp was in the given interval, and the
16955 current is not.
16956 @end table
16957
16958 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
16959 assumed.
16960
16961 @var{TARGET} specifies the target of the command, usually the name of
16962 the filter class or a specific filter instance name.
16963
16964 @var{COMMAND} specifies the name of the command for the target filter.
16965
16966 @var{ARG} is optional and specifies the optional list of argument for
16967 the given @var{COMMAND}.
16968
16969 Between one interval specification and another, whitespaces, or
16970 sequences of characters starting with @code{#} until the end of line,
16971 are ignored and can be used to annotate comments.
16972
16973 A simplified BNF description of the commands specification syntax
16974 follows:
16975 @example
16976 @var{COMMAND_FLAG}  ::= "enter" | "leave"
16977 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
16978 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
16979 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
16980 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
16981 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
16982 @end example
16983
16984 @subsection Examples
16985
16986 @itemize
16987 @item
16988 Specify audio tempo change at second 4:
16989 @example
16990 asendcmd=c='4.0 atempo tempo 1.5',atempo
16991 @end example
16992
16993 @item
16994 Specify a list of drawtext and hue commands in a file.
16995 @example
16996 # show text in the interval 5-10
16997 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
16998          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
16999
17000 # desaturate the image in the interval 15-20
17001 15.0-20.0 [enter] hue s 0,
17002           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
17003           [leave] hue s 1,
17004           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
17005
17006 # apply an exponential saturation fade-out effect, starting from time 25
17007 25 [enter] hue s exp(25-t)
17008 @end example
17009
17010 A filtergraph allowing to read and process the above command list
17011 stored in a file @file{test.cmd}, can be specified with:
17012 @example
17013 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
17014 @end example
17015 @end itemize
17016
17017 @anchor{setpts}
17018 @section setpts, asetpts
17019
17020 Change the PTS (presentation timestamp) of the input frames.
17021
17022 @code{setpts} works on video frames, @code{asetpts} on audio frames.
17023
17024 This filter accepts the following options:
17025
17026 @table @option
17027
17028 @item expr
17029 The expression which is evaluated for each frame to construct its timestamp.
17030
17031 @end table
17032
17033 The expression is evaluated through the eval API and can contain the following
17034 constants:
17035
17036 @table @option
17037 @item FRAME_RATE
17038 frame rate, only defined for constant frame-rate video
17039
17040 @item PTS
17041 The presentation timestamp in input
17042
17043 @item N
17044 The count of the input frame for video or the number of consumed samples,
17045 not including the current frame for audio, starting from 0.
17046
17047 @item NB_CONSUMED_SAMPLES
17048 The number of consumed samples, not including the current frame (only
17049 audio)
17050
17051 @item NB_SAMPLES, S
17052 The number of samples in the current frame (only audio)
17053
17054 @item SAMPLE_RATE, SR
17055 The audio sample rate.
17056
17057 @item STARTPTS
17058 The PTS of the first frame.
17059
17060 @item STARTT
17061 the time in seconds of the first frame
17062
17063 @item INTERLACED
17064 State whether the current frame is interlaced.
17065
17066 @item T
17067 the time in seconds of the current frame
17068
17069 @item POS
17070 original position in the file of the frame, or undefined if undefined
17071 for the current frame
17072
17073 @item PREV_INPTS
17074 The previous input PTS.
17075
17076 @item PREV_INT
17077 previous input time in seconds
17078
17079 @item PREV_OUTPTS
17080 The previous output PTS.
17081
17082 @item PREV_OUTT
17083 previous output time in seconds
17084
17085 @item RTCTIME
17086 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
17087 instead.
17088
17089 @item RTCSTART
17090 The wallclock (RTC) time at the start of the movie in microseconds.
17091
17092 @item TB
17093 The timebase of the input timestamps.
17094
17095 @end table
17096
17097 @subsection Examples
17098
17099 @itemize
17100 @item
17101 Start counting PTS from zero
17102 @example
17103 setpts=PTS-STARTPTS
17104 @end example
17105
17106 @item
17107 Apply fast motion effect:
17108 @example
17109 setpts=0.5*PTS
17110 @end example
17111
17112 @item
17113 Apply slow motion effect:
17114 @example
17115 setpts=2.0*PTS
17116 @end example
17117
17118 @item
17119 Set fixed rate of 25 frames per second:
17120 @example
17121 setpts=N/(25*TB)
17122 @end example
17123
17124 @item
17125 Set fixed rate 25 fps with some jitter:
17126 @example
17127 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
17128 @end example
17129
17130 @item
17131 Apply an offset of 10 seconds to the input PTS:
17132 @example
17133 setpts=PTS+10/TB
17134 @end example
17135
17136 @item
17137 Generate timestamps from a "live source" and rebase onto the current timebase:
17138 @example
17139 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
17140 @end example
17141
17142 @item
17143 Generate timestamps by counting samples:
17144 @example
17145 asetpts=N/SR/TB
17146 @end example
17147
17148 @end itemize
17149
17150 @section settb, asettb
17151
17152 Set the timebase to use for the output frames timestamps.
17153 It is mainly useful for testing timebase configuration.
17154
17155 It accepts the following parameters:
17156
17157 @table @option
17158
17159 @item expr, tb
17160 The expression which is evaluated into the output timebase.
17161
17162 @end table
17163
17164 The value for @option{tb} is an arithmetic expression representing a
17165 rational. The expression can contain the constants "AVTB" (the default
17166 timebase), "intb" (the input timebase) and "sr" (the sample rate,
17167 audio only). Default value is "intb".
17168
17169 @subsection Examples
17170
17171 @itemize
17172 @item
17173 Set the timebase to 1/25:
17174 @example
17175 settb=expr=1/25
17176 @end example
17177
17178 @item
17179 Set the timebase to 1/10:
17180 @example
17181 settb=expr=0.1
17182 @end example
17183
17184 @item
17185 Set the timebase to 1001/1000:
17186 @example
17187 settb=1+0.001
17188 @end example
17189
17190 @item
17191 Set the timebase to 2*intb:
17192 @example
17193 settb=2*intb
17194 @end example
17195
17196 @item
17197 Set the default timebase value:
17198 @example
17199 settb=AVTB
17200 @end example
17201 @end itemize
17202
17203 @section showcqt
17204 Convert input audio to a video output representing frequency spectrum
17205 logarithmically using Brown-Puckette constant Q transform algorithm with
17206 direct frequency domain coefficient calculation (but the transform itself
17207 is not really constant Q, instead the Q factor is actually variable/clamped),
17208 with musical tone scale, from E0 to D#10.
17209
17210 The filter accepts the following options:
17211
17212 @table @option
17213 @item size, s
17214 Specify the video size for the output. It must be even. For the syntax of this option,
17215 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17216 Default value is @code{1920x1080}.
17217
17218 @item fps, rate, r
17219 Set the output frame rate. Default value is @code{25}.
17220
17221 @item bar_h
17222 Set the bargraph height. It must be even. Default value is @code{-1} which
17223 computes the bargraph height automatically.
17224
17225 @item axis_h
17226 Set the axis height. It must be even. Default value is @code{-1} which computes
17227 the axis height automatically.
17228
17229 @item sono_h
17230 Set the sonogram height. It must be even. Default value is @code{-1} which
17231 computes the sonogram height automatically.
17232
17233 @item fullhd
17234 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
17235 instead. Default value is @code{1}.
17236
17237 @item sono_v, volume
17238 Specify the sonogram volume expression. It can contain variables:
17239 @table @option
17240 @item bar_v
17241 the @var{bar_v} evaluated expression
17242 @item frequency, freq, f
17243 the frequency where it is evaluated
17244 @item timeclamp, tc
17245 the value of @var{timeclamp} option
17246 @end table
17247 and functions:
17248 @table @option
17249 @item a_weighting(f)
17250 A-weighting of equal loudness
17251 @item b_weighting(f)
17252 B-weighting of equal loudness
17253 @item c_weighting(f)
17254 C-weighting of equal loudness.
17255 @end table
17256 Default value is @code{16}.
17257
17258 @item bar_v, volume2
17259 Specify the bargraph volume expression. It can contain variables:
17260 @table @option
17261 @item sono_v
17262 the @var{sono_v} evaluated expression
17263 @item frequency, freq, f
17264 the frequency where it is evaluated
17265 @item timeclamp, tc
17266 the value of @var{timeclamp} option
17267 @end table
17268 and functions:
17269 @table @option
17270 @item a_weighting(f)
17271 A-weighting of equal loudness
17272 @item b_weighting(f)
17273 B-weighting of equal loudness
17274 @item c_weighting(f)
17275 C-weighting of equal loudness.
17276 @end table
17277 Default value is @code{sono_v}.
17278
17279 @item sono_g, gamma
17280 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
17281 higher gamma makes the spectrum having more range. Default value is @code{3}.
17282 Acceptable range is @code{[1, 7]}.
17283
17284 @item bar_g, gamma2
17285 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
17286 @code{[1, 7]}.
17287
17288 @item bar_t
17289 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
17290 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
17291
17292 @item timeclamp, tc
17293 Specify the transform timeclamp. At low frequency, there is trade-off between
17294 accuracy in time domain and frequency domain. If timeclamp is lower,
17295 event in time domain is represented more accurately (such as fast bass drum),
17296 otherwise event in frequency domain is represented more accurately
17297 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
17298
17299 @item attack
17300 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
17301 limits future samples by applying asymmetric windowing in time domain, useful
17302 when low latency is required. Accepted range is @code{[0, 1]}.
17303
17304 @item basefreq
17305 Specify the transform base frequency. Default value is @code{20.01523126408007475},
17306 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
17307
17308 @item endfreq
17309 Specify the transform end frequency. Default value is @code{20495.59681441799654},
17310 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
17311
17312 @item coeffclamp
17313 This option is deprecated and ignored.
17314
17315 @item tlength
17316 Specify the transform length in time domain. Use this option to control accuracy
17317 trade-off between time domain and frequency domain at every frequency sample.
17318 It can contain variables:
17319 @table @option
17320 @item frequency, freq, f
17321 the frequency where it is evaluated
17322 @item timeclamp, tc
17323 the value of @var{timeclamp} option.
17324 @end table
17325 Default value is @code{384*tc/(384+tc*f)}.
17326
17327 @item count
17328 Specify the transform count for every video frame. Default value is @code{6}.
17329 Acceptable range is @code{[1, 30]}.
17330
17331 @item fcount
17332 Specify the transform count for every single pixel. Default value is @code{0},
17333 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
17334
17335 @item fontfile
17336 Specify font file for use with freetype to draw the axis. If not specified,
17337 use embedded font. Note that drawing with font file or embedded font is not
17338 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
17339 option instead.
17340
17341 @item font
17342 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
17343 The : in the pattern may be replaced by | to avoid unnecessary escaping.
17344
17345 @item fontcolor
17346 Specify font color expression. This is arithmetic expression that should return
17347 integer value 0xRRGGBB. It can contain variables:
17348 @table @option
17349 @item frequency, freq, f
17350 the frequency where it is evaluated
17351 @item timeclamp, tc
17352 the value of @var{timeclamp} option
17353 @end table
17354 and functions:
17355 @table @option
17356 @item midi(f)
17357 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
17358 @item r(x), g(x), b(x)
17359 red, green, and blue value of intensity x.
17360 @end table
17361 Default value is @code{st(0, (midi(f)-59.5)/12);
17362 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
17363 r(1-ld(1)) + b(ld(1))}.
17364
17365 @item axisfile
17366 Specify image file to draw the axis. This option override @var{fontfile} and
17367 @var{fontcolor} option.
17368
17369 @item axis, text
17370 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
17371 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
17372 Default value is @code{1}.
17373
17374 @item csp
17375 Set colorspace. The accepted values are:
17376 @table @samp
17377 @item unspecified
17378 Unspecified (default)
17379
17380 @item bt709
17381 BT.709
17382
17383 @item fcc
17384 FCC
17385
17386 @item bt470bg
17387 BT.470BG or BT.601-6 625
17388
17389 @item smpte170m
17390 SMPTE-170M or BT.601-6 525
17391
17392 @item smpte240m
17393 SMPTE-240M
17394
17395 @item bt2020ncl
17396 BT.2020 with non-constant luminance
17397
17398 @end table
17399
17400 @item cscheme
17401 Set spectrogram color scheme. This is list of floating point values with format
17402 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
17403 The default is @code{1|0.5|0|0|0.5|1}.
17404
17405 @end table
17406
17407 @subsection Examples
17408
17409 @itemize
17410 @item
17411 Playing audio while showing the spectrum:
17412 @example
17413 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
17414 @end example
17415
17416 @item
17417 Same as above, but with frame rate 30 fps:
17418 @example
17419 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
17420 @end example
17421
17422 @item
17423 Playing at 1280x720:
17424 @example
17425 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
17426 @end example
17427
17428 @item
17429 Disable sonogram display:
17430 @example
17431 sono_h=0
17432 @end example
17433
17434 @item
17435 A1 and its harmonics: A1, A2, (near)E3, A3:
17436 @example
17437 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),
17438                  asplit[a][out1]; [a] showcqt [out0]'
17439 @end example
17440
17441 @item
17442 Same as above, but with more accuracy in frequency domain:
17443 @example
17444 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),
17445                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
17446 @end example
17447
17448 @item
17449 Custom volume:
17450 @example
17451 bar_v=10:sono_v=bar_v*a_weighting(f)
17452 @end example
17453
17454 @item
17455 Custom gamma, now spectrum is linear to the amplitude.
17456 @example
17457 bar_g=2:sono_g=2
17458 @end example
17459
17460 @item
17461 Custom tlength equation:
17462 @example
17463 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)))'
17464 @end example
17465
17466 @item
17467 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
17468 @example
17469 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
17470 @end example
17471
17472 @item
17473 Custom font using fontconfig:
17474 @example
17475 font='Courier New,Monospace,mono|bold'
17476 @end example
17477
17478 @item
17479 Custom frequency range with custom axis using image file:
17480 @example
17481 axisfile=myaxis.png:basefreq=40:endfreq=10000
17482 @end example
17483 @end itemize
17484
17485 @section showfreqs
17486
17487 Convert input audio to video output representing the audio power spectrum.
17488 Audio amplitude is on Y-axis while frequency is on X-axis.
17489
17490 The filter accepts the following options:
17491
17492 @table @option
17493 @item size, s
17494 Specify size of video. For the syntax of this option, check the
17495 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17496 Default is @code{1024x512}.
17497
17498 @item mode
17499 Set display mode.
17500 This set how each frequency bin will be represented.
17501
17502 It accepts the following values:
17503 @table @samp
17504 @item line
17505 @item bar
17506 @item dot
17507 @end table
17508 Default is @code{bar}.
17509
17510 @item ascale
17511 Set amplitude scale.
17512
17513 It accepts the following values:
17514 @table @samp
17515 @item lin
17516 Linear scale.
17517
17518 @item sqrt
17519 Square root scale.
17520
17521 @item cbrt
17522 Cubic root scale.
17523
17524 @item log
17525 Logarithmic scale.
17526 @end table
17527 Default is @code{log}.
17528
17529 @item fscale
17530 Set frequency scale.
17531
17532 It accepts the following values:
17533 @table @samp
17534 @item lin
17535 Linear scale.
17536
17537 @item log
17538 Logarithmic scale.
17539
17540 @item rlog
17541 Reverse logarithmic scale.
17542 @end table
17543 Default is @code{lin}.
17544
17545 @item win_size
17546 Set window size.
17547
17548 It accepts the following values:
17549 @table @samp
17550 @item w16
17551 @item w32
17552 @item w64
17553 @item w128
17554 @item w256
17555 @item w512
17556 @item w1024
17557 @item w2048
17558 @item w4096
17559 @item w8192
17560 @item w16384
17561 @item w32768
17562 @item w65536
17563 @end table
17564 Default is @code{w2048}
17565
17566 @item win_func
17567 Set windowing function.
17568
17569 It accepts the following values:
17570 @table @samp
17571 @item rect
17572 @item bartlett
17573 @item hanning
17574 @item hamming
17575 @item blackman
17576 @item welch
17577 @item flattop
17578 @item bharris
17579 @item bnuttall
17580 @item bhann
17581 @item sine
17582 @item nuttall
17583 @item lanczos
17584 @item gauss
17585 @item tukey
17586 @item dolph
17587 @item cauchy
17588 @item parzen
17589 @item poisson
17590 @end table
17591 Default is @code{hanning}.
17592
17593 @item overlap
17594 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17595 which means optimal overlap for selected window function will be picked.
17596
17597 @item averaging
17598 Set time averaging. Setting this to 0 will display current maximal peaks.
17599 Default is @code{1}, which means time averaging is disabled.
17600
17601 @item colors
17602 Specify list of colors separated by space or by '|' which will be used to
17603 draw channel frequencies. Unrecognized or missing colors will be replaced
17604 by white color.
17605
17606 @item cmode
17607 Set channel display mode.
17608
17609 It accepts the following values:
17610 @table @samp
17611 @item combined
17612 @item separate
17613 @end table
17614 Default is @code{combined}.
17615
17616 @item minamp
17617 Set minimum amplitude used in @code{log} amplitude scaler.
17618
17619 @end table
17620
17621 @anchor{showspectrum}
17622 @section showspectrum
17623
17624 Convert input audio to a video output, representing the audio frequency
17625 spectrum.
17626
17627 The filter accepts the following options:
17628
17629 @table @option
17630 @item size, s
17631 Specify the video size for the output. For the syntax of this option, check the
17632 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17633 Default value is @code{640x512}.
17634
17635 @item slide
17636 Specify how the spectrum should slide along the window.
17637
17638 It accepts the following values:
17639 @table @samp
17640 @item replace
17641 the samples start again on the left when they reach the right
17642 @item scroll
17643 the samples scroll from right to left
17644 @item fullframe
17645 frames are only produced when the samples reach the right
17646 @item rscroll
17647 the samples scroll from left to right
17648 @end table
17649
17650 Default value is @code{replace}.
17651
17652 @item mode
17653 Specify display mode.
17654
17655 It accepts the following values:
17656 @table @samp
17657 @item combined
17658 all channels are displayed in the same row
17659 @item separate
17660 all channels are displayed in separate rows
17661 @end table
17662
17663 Default value is @samp{combined}.
17664
17665 @item color
17666 Specify display color mode.
17667
17668 It accepts the following values:
17669 @table @samp
17670 @item channel
17671 each channel is displayed in a separate color
17672 @item intensity
17673 each channel is displayed using the same color scheme
17674 @item rainbow
17675 each channel is displayed using the rainbow color scheme
17676 @item moreland
17677 each channel is displayed using the moreland color scheme
17678 @item nebulae
17679 each channel is displayed using the nebulae color scheme
17680 @item fire
17681 each channel is displayed using the fire color scheme
17682 @item fiery
17683 each channel is displayed using the fiery color scheme
17684 @item fruit
17685 each channel is displayed using the fruit color scheme
17686 @item cool
17687 each channel is displayed using the cool color scheme
17688 @end table
17689
17690 Default value is @samp{channel}.
17691
17692 @item scale
17693 Specify scale used for calculating intensity color values.
17694
17695 It accepts the following values:
17696 @table @samp
17697 @item lin
17698 linear
17699 @item sqrt
17700 square root, default
17701 @item cbrt
17702 cubic root
17703 @item log
17704 logarithmic
17705 @item 4thrt
17706 4th root
17707 @item 5thrt
17708 5th root
17709 @end table
17710
17711 Default value is @samp{sqrt}.
17712
17713 @item saturation
17714 Set saturation modifier for displayed colors. Negative values provide
17715 alternative color scheme. @code{0} is no saturation at all.
17716 Saturation must be in [-10.0, 10.0] range.
17717 Default value is @code{1}.
17718
17719 @item win_func
17720 Set window function.
17721
17722 It accepts the following values:
17723 @table @samp
17724 @item rect
17725 @item bartlett
17726 @item hann
17727 @item hanning
17728 @item hamming
17729 @item blackman
17730 @item welch
17731 @item flattop
17732 @item bharris
17733 @item bnuttall
17734 @item bhann
17735 @item sine
17736 @item nuttall
17737 @item lanczos
17738 @item gauss
17739 @item tukey
17740 @item dolph
17741 @item cauchy
17742 @item parzen
17743 @item poisson
17744 @end table
17745
17746 Default value is @code{hann}.
17747
17748 @item orientation
17749 Set orientation of time vs frequency axis. Can be @code{vertical} or
17750 @code{horizontal}. Default is @code{vertical}.
17751
17752 @item overlap
17753 Set ratio of overlap window. Default value is @code{0}.
17754 When value is @code{1} overlap is set to recommended size for specific
17755 window function currently used.
17756
17757 @item gain
17758 Set scale gain for calculating intensity color values.
17759 Default value is @code{1}.
17760
17761 @item data
17762 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
17763
17764 @item rotation
17765 Set color rotation, must be in [-1.0, 1.0] range.
17766 Default value is @code{0}.
17767 @end table
17768
17769 The usage is very similar to the showwaves filter; see the examples in that
17770 section.
17771
17772 @subsection Examples
17773
17774 @itemize
17775 @item
17776 Large window with logarithmic color scaling:
17777 @example
17778 showspectrum=s=1280x480:scale=log
17779 @end example
17780
17781 @item
17782 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
17783 @example
17784 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17785              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
17786 @end example
17787 @end itemize
17788
17789 @section showspectrumpic
17790
17791 Convert input audio to a single video frame, representing the audio frequency
17792 spectrum.
17793
17794 The filter accepts the following options:
17795
17796 @table @option
17797 @item size, s
17798 Specify the video size for the output. For the syntax of this option, check the
17799 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17800 Default value is @code{4096x2048}.
17801
17802 @item mode
17803 Specify display mode.
17804
17805 It accepts the following values:
17806 @table @samp
17807 @item combined
17808 all channels are displayed in the same row
17809 @item separate
17810 all channels are displayed in separate rows
17811 @end table
17812 Default value is @samp{combined}.
17813
17814 @item color
17815 Specify display color mode.
17816
17817 It accepts the following values:
17818 @table @samp
17819 @item channel
17820 each channel is displayed in a separate color
17821 @item intensity
17822 each channel is displayed using the same color scheme
17823 @item rainbow
17824 each channel is displayed using the rainbow color scheme
17825 @item moreland
17826 each channel is displayed using the moreland color scheme
17827 @item nebulae
17828 each channel is displayed using the nebulae color scheme
17829 @item fire
17830 each channel is displayed using the fire color scheme
17831 @item fiery
17832 each channel is displayed using the fiery color scheme
17833 @item fruit
17834 each channel is displayed using the fruit color scheme
17835 @item cool
17836 each channel is displayed using the cool color scheme
17837 @end table
17838 Default value is @samp{intensity}.
17839
17840 @item scale
17841 Specify scale used for calculating intensity color values.
17842
17843 It accepts the following values:
17844 @table @samp
17845 @item lin
17846 linear
17847 @item sqrt
17848 square root, default
17849 @item cbrt
17850 cubic root
17851 @item log
17852 logarithmic
17853 @item 4thrt
17854 4th root
17855 @item 5thrt
17856 5th root
17857 @end table
17858 Default value is @samp{log}.
17859
17860 @item saturation
17861 Set saturation modifier for displayed colors. Negative values provide
17862 alternative color scheme. @code{0} is no saturation at all.
17863 Saturation must be in [-10.0, 10.0] range.
17864 Default value is @code{1}.
17865
17866 @item win_func
17867 Set window function.
17868
17869 It accepts the following values:
17870 @table @samp
17871 @item rect
17872 @item bartlett
17873 @item hann
17874 @item hanning
17875 @item hamming
17876 @item blackman
17877 @item welch
17878 @item flattop
17879 @item bharris
17880 @item bnuttall
17881 @item bhann
17882 @item sine
17883 @item nuttall
17884 @item lanczos
17885 @item gauss
17886 @item tukey
17887 @item dolph
17888 @item cauchy
17889 @item parzen
17890 @item poisson
17891 @end table
17892 Default value is @code{hann}.
17893
17894 @item orientation
17895 Set orientation of time vs frequency axis. Can be @code{vertical} or
17896 @code{horizontal}. Default is @code{vertical}.
17897
17898 @item gain
17899 Set scale gain for calculating intensity color values.
17900 Default value is @code{1}.
17901
17902 @item legend
17903 Draw time and frequency axes and legends. Default is enabled.
17904
17905 @item rotation
17906 Set color rotation, must be in [-1.0, 1.0] range.
17907 Default value is @code{0}.
17908 @end table
17909
17910 @subsection Examples
17911
17912 @itemize
17913 @item
17914 Extract an audio spectrogram of a whole audio track
17915 in a 1024x1024 picture using @command{ffmpeg}:
17916 @example
17917 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
17918 @end example
17919 @end itemize
17920
17921 @section showvolume
17922
17923 Convert input audio volume to a video output.
17924
17925 The filter accepts the following options:
17926
17927 @table @option
17928 @item rate, r
17929 Set video rate.
17930
17931 @item b
17932 Set border width, allowed range is [0, 5]. Default is 1.
17933
17934 @item w
17935 Set channel width, allowed range is [80, 8192]. Default is 400.
17936
17937 @item h
17938 Set channel height, allowed range is [1, 900]. Default is 20.
17939
17940 @item f
17941 Set fade, allowed range is [0.001, 1]. Default is 0.95.
17942
17943 @item c
17944 Set volume color expression.
17945
17946 The expression can use the following variables:
17947
17948 @table @option
17949 @item VOLUME
17950 Current max volume of channel in dB.
17951
17952 @item PEAK
17953 Current peak.
17954
17955 @item CHANNEL
17956 Current channel number, starting from 0.
17957 @end table
17958
17959 @item t
17960 If set, displays channel names. Default is enabled.
17961
17962 @item v
17963 If set, displays volume values. Default is enabled.
17964
17965 @item o
17966 Set orientation, can be @code{horizontal} or @code{vertical},
17967 default is @code{horizontal}.
17968
17969 @item s
17970 Set step size, allowed range s [0, 5]. Default is 0, which means
17971 step is disabled.
17972 @end table
17973
17974 @section showwaves
17975
17976 Convert input audio to a video output, representing the samples waves.
17977
17978 The filter accepts the following options:
17979
17980 @table @option
17981 @item size, s
17982 Specify the video size for the output. For the syntax of this option, check the
17983 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17984 Default value is @code{600x240}.
17985
17986 @item mode
17987 Set display mode.
17988
17989 Available values are:
17990 @table @samp
17991 @item point
17992 Draw a point for each sample.
17993
17994 @item line
17995 Draw a vertical line for each sample.
17996
17997 @item p2p
17998 Draw a point for each sample and a line between them.
17999
18000 @item cline
18001 Draw a centered vertical line for each sample.
18002 @end table
18003
18004 Default value is @code{point}.
18005
18006 @item n
18007 Set the number of samples which are printed on the same column. A
18008 larger value will decrease the frame rate. Must be a positive
18009 integer. This option can be set only if the value for @var{rate}
18010 is not explicitly specified.
18011
18012 @item rate, r
18013 Set the (approximate) output frame rate. This is done by setting the
18014 option @var{n}. Default value is "25".
18015
18016 @item split_channels
18017 Set if channels should be drawn separately or overlap. Default value is 0.
18018
18019 @item colors
18020 Set colors separated by '|' which are going to be used for drawing of each channel.
18021
18022 @item scale
18023 Set amplitude scale.
18024
18025 Available values are:
18026 @table @samp
18027 @item lin
18028 Linear.
18029
18030 @item log
18031 Logarithmic.
18032
18033 @item sqrt
18034 Square root.
18035
18036 @item cbrt
18037 Cubic root.
18038 @end table
18039
18040 Default is linear.
18041 @end table
18042
18043 @subsection Examples
18044
18045 @itemize
18046 @item
18047 Output the input file audio and the corresponding video representation
18048 at the same time:
18049 @example
18050 amovie=a.mp3,asplit[out0],showwaves[out1]
18051 @end example
18052
18053 @item
18054 Create a synthetic signal and show it with showwaves, forcing a
18055 frame rate of 30 frames per second:
18056 @example
18057 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
18058 @end example
18059 @end itemize
18060
18061 @section showwavespic
18062
18063 Convert input audio to a single video frame, representing the samples waves.
18064
18065 The filter accepts the following options:
18066
18067 @table @option
18068 @item size, s
18069 Specify the video size for the output. For the syntax of this option, check the
18070 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18071 Default value is @code{600x240}.
18072
18073 @item split_channels
18074 Set if channels should be drawn separately or overlap. Default value is 0.
18075
18076 @item colors
18077 Set colors separated by '|' which are going to be used for drawing of each channel.
18078
18079 @item scale
18080 Set amplitude scale.
18081
18082 Available values are:
18083 @table @samp
18084 @item lin
18085 Linear.
18086
18087 @item log
18088 Logarithmic.
18089
18090 @item sqrt
18091 Square root.
18092
18093 @item cbrt
18094 Cubic root.
18095 @end table
18096
18097 Default is linear.
18098 @end table
18099
18100 @subsection Examples
18101
18102 @itemize
18103 @item
18104 Extract a channel split representation of the wave form of a whole audio track
18105 in a 1024x800 picture using @command{ffmpeg}:
18106 @example
18107 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
18108 @end example
18109 @end itemize
18110
18111 @section sidedata, asidedata
18112
18113 Delete frame side data, or select frames based on it.
18114
18115 This filter accepts the following options:
18116
18117 @table @option
18118 @item mode
18119 Set mode of operation of the filter.
18120
18121 Can be one of the following:
18122
18123 @table @samp
18124 @item select
18125 Select every frame with side data of @code{type}.
18126
18127 @item delete
18128 Delete side data of @code{type}. If @code{type} is not set, delete all side
18129 data in the frame.
18130
18131 @end table
18132
18133 @item type
18134 Set side data type used with all modes. Must be set for @code{select} mode. For
18135 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
18136 in @file{libavutil/frame.h}. For example, to choose
18137 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
18138
18139 @end table
18140
18141 @section spectrumsynth
18142
18143 Sythesize audio from 2 input video spectrums, first input stream represents
18144 magnitude across time and second represents phase across time.
18145 The filter will transform from frequency domain as displayed in videos back
18146 to time domain as presented in audio output.
18147
18148 This filter is primarily created for reversing processed @ref{showspectrum}
18149 filter outputs, but can synthesize sound from other spectrograms too.
18150 But in such case results are going to be poor if the phase data is not
18151 available, because in such cases phase data need to be recreated, usually
18152 its just recreated from random noise.
18153 For best results use gray only output (@code{channel} color mode in
18154 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
18155 @code{lin} scale for phase video. To produce phase, for 2nd video, use
18156 @code{data} option. Inputs videos should generally use @code{fullframe}
18157 slide mode as that saves resources needed for decoding video.
18158
18159 The filter accepts the following options:
18160
18161 @table @option
18162 @item sample_rate
18163 Specify sample rate of output audio, the sample rate of audio from which
18164 spectrum was generated may differ.
18165
18166 @item channels
18167 Set number of channels represented in input video spectrums.
18168
18169 @item scale
18170 Set scale which was used when generating magnitude input spectrum.
18171 Can be @code{lin} or @code{log}. Default is @code{log}.
18172
18173 @item slide
18174 Set slide which was used when generating inputs spectrums.
18175 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
18176 Default is @code{fullframe}.
18177
18178 @item win_func
18179 Set window function used for resynthesis.
18180
18181 @item overlap
18182 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
18183 which means optimal overlap for selected window function will be picked.
18184
18185 @item orientation
18186 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
18187 Default is @code{vertical}.
18188 @end table
18189
18190 @subsection Examples
18191
18192 @itemize
18193 @item
18194 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
18195 then resynthesize videos back to audio with spectrumsynth:
18196 @example
18197 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
18198 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
18199 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
18200 @end example
18201 @end itemize
18202
18203 @section split, asplit
18204
18205 Split input into several identical outputs.
18206
18207 @code{asplit} works with audio input, @code{split} with video.
18208
18209 The filter accepts a single parameter which specifies the number of outputs. If
18210 unspecified, it defaults to 2.
18211
18212 @subsection Examples
18213
18214 @itemize
18215 @item
18216 Create two separate outputs from the same input:
18217 @example
18218 [in] split [out0][out1]
18219 @end example
18220
18221 @item
18222 To create 3 or more outputs, you need to specify the number of
18223 outputs, like in:
18224 @example
18225 [in] asplit=3 [out0][out1][out2]
18226 @end example
18227
18228 @item
18229 Create two separate outputs from the same input, one cropped and
18230 one padded:
18231 @example
18232 [in] split [splitout1][splitout2];
18233 [splitout1] crop=100:100:0:0    [cropout];
18234 [splitout2] pad=200:200:100:100 [padout];
18235 @end example
18236
18237 @item
18238 Create 5 copies of the input audio with @command{ffmpeg}:
18239 @example
18240 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
18241 @end example
18242 @end itemize
18243
18244 @section zmq, azmq
18245
18246 Receive commands sent through a libzmq client, and forward them to
18247 filters in the filtergraph.
18248
18249 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
18250 must be inserted between two video filters, @code{azmq} between two
18251 audio filters.
18252
18253 To enable these filters you need to install the libzmq library and
18254 headers and configure FFmpeg with @code{--enable-libzmq}.
18255
18256 For more information about libzmq see:
18257 @url{http://www.zeromq.org/}
18258
18259 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
18260 receives messages sent through a network interface defined by the
18261 @option{bind_address} option.
18262
18263 The received message must be in the form:
18264 @example
18265 @var{TARGET} @var{COMMAND} [@var{ARG}]
18266 @end example
18267
18268 @var{TARGET} specifies the target of the command, usually the name of
18269 the filter class or a specific filter instance name.
18270
18271 @var{COMMAND} specifies the name of the command for the target filter.
18272
18273 @var{ARG} is optional and specifies the optional argument list for the
18274 given @var{COMMAND}.
18275
18276 Upon reception, the message is processed and the corresponding command
18277 is injected into the filtergraph. Depending on the result, the filter
18278 will send a reply to the client, adopting the format:
18279 @example
18280 @var{ERROR_CODE} @var{ERROR_REASON}
18281 @var{MESSAGE}
18282 @end example
18283
18284 @var{MESSAGE} is optional.
18285
18286 @subsection Examples
18287
18288 Look at @file{tools/zmqsend} for an example of a zmq client which can
18289 be used to send commands processed by these filters.
18290
18291 Consider the following filtergraph generated by @command{ffplay}
18292 @example
18293 ffplay -dumpgraph 1 -f lavfi "
18294 color=s=100x100:c=red  [l];
18295 color=s=100x100:c=blue [r];
18296 nullsrc=s=200x100, zmq [bg];
18297 [bg][l]   overlay      [bg+l];
18298 [bg+l][r] overlay=x=100 "
18299 @end example
18300
18301 To change the color of the left side of the video, the following
18302 command can be used:
18303 @example
18304 echo Parsed_color_0 c yellow | tools/zmqsend
18305 @end example
18306
18307 To change the right side:
18308 @example
18309 echo Parsed_color_1 c pink | tools/zmqsend
18310 @end example
18311
18312 @c man end MULTIMEDIA FILTERS
18313
18314 @chapter Multimedia Sources
18315 @c man begin MULTIMEDIA SOURCES
18316
18317 Below is a description of the currently available multimedia sources.
18318
18319 @section amovie
18320
18321 This is the same as @ref{movie} source, except it selects an audio
18322 stream by default.
18323
18324 @anchor{movie}
18325 @section movie
18326
18327 Read audio and/or video stream(s) from a movie container.
18328
18329 It accepts the following parameters:
18330
18331 @table @option
18332 @item filename
18333 The name of the resource to read (not necessarily a file; it can also be a
18334 device or a stream accessed through some protocol).
18335
18336 @item format_name, f
18337 Specifies the format assumed for the movie to read, and can be either
18338 the name of a container or an input device. If not specified, the
18339 format is guessed from @var{movie_name} or by probing.
18340
18341 @item seek_point, sp
18342 Specifies the seek point in seconds. The frames will be output
18343 starting from this seek point. The parameter is evaluated with
18344 @code{av_strtod}, so the numerical value may be suffixed by an IS
18345 postfix. The default value is "0".
18346
18347 @item streams, s
18348 Specifies the streams to read. Several streams can be specified,
18349 separated by "+". The source will then have as many outputs, in the
18350 same order. The syntax is explained in the ``Stream specifiers''
18351 section in the ffmpeg manual. Two special names, "dv" and "da" specify
18352 respectively the default (best suited) video and audio stream. Default
18353 is "dv", or "da" if the filter is called as "amovie".
18354
18355 @item stream_index, si
18356 Specifies the index of the video stream to read. If the value is -1,
18357 the most suitable video stream will be automatically selected. The default
18358 value is "-1". Deprecated. If the filter is called "amovie", it will select
18359 audio instead of video.
18360
18361 @item loop
18362 Specifies how many times to read the stream in sequence.
18363 If the value is 0, the stream will be looped infinitely.
18364 Default value is "1".
18365
18366 Note that when the movie is looped the source timestamps are not
18367 changed, so it will generate non monotonically increasing timestamps.
18368
18369 @item discontinuity
18370 Specifies the time difference between frames above which the point is
18371 considered a timestamp discontinuity which is removed by adjusting the later
18372 timestamps.
18373 @end table
18374
18375 It allows overlaying a second video on top of the main input of
18376 a filtergraph, as shown in this graph:
18377 @example
18378 input -----------> deltapts0 --> overlay --> output
18379                                     ^
18380                                     |
18381 movie --> scale--> deltapts1 -------+
18382 @end example
18383 @subsection Examples
18384
18385 @itemize
18386 @item
18387 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
18388 on top of the input labelled "in":
18389 @example
18390 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
18391 [in] setpts=PTS-STARTPTS [main];
18392 [main][over] overlay=16:16 [out]
18393 @end example
18394
18395 @item
18396 Read from a video4linux2 device, and overlay it on top of the input
18397 labelled "in":
18398 @example
18399 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
18400 [in] setpts=PTS-STARTPTS [main];
18401 [main][over] overlay=16:16 [out]
18402 @end example
18403
18404 @item
18405 Read the first video stream and the audio stream with id 0x81 from
18406 dvd.vob; the video is connected to the pad named "video" and the audio is
18407 connected to the pad named "audio":
18408 @example
18409 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
18410 @end example
18411 @end itemize
18412
18413 @subsection Commands
18414
18415 Both movie and amovie support the following commands:
18416 @table @option
18417 @item seek
18418 Perform seek using "av_seek_frame".
18419 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
18420 @itemize
18421 @item
18422 @var{stream_index}: If stream_index is -1, a default
18423 stream is selected, and @var{timestamp} is automatically converted
18424 from AV_TIME_BASE units to the stream specific time_base.
18425 @item
18426 @var{timestamp}: Timestamp in AVStream.time_base units
18427 or, if no stream is specified, in AV_TIME_BASE units.
18428 @item
18429 @var{flags}: Flags which select direction and seeking mode.
18430 @end itemize
18431
18432 @item get_duration
18433 Get movie duration in AV_TIME_BASE units.
18434
18435 @end table
18436
18437 @c man end MULTIMEDIA SOURCES