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