]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
opus_pvq: improve PVQ search for low Ks
[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 @end table
1044
1045 @section aloop
1046
1047 Loop audio samples.
1048
1049 The filter accepts the following options:
1050
1051 @table @option
1052 @item loop
1053 Set the number of loops.
1054
1055 @item size
1056 Set maximal number of samples.
1057
1058 @item start
1059 Set first sample of loop.
1060 @end table
1061
1062 @anchor{amerge}
1063 @section amerge
1064
1065 Merge two or more audio streams into a single multi-channel stream.
1066
1067 The filter accepts the following options:
1068
1069 @table @option
1070
1071 @item inputs
1072 Set the number of inputs. Default is 2.
1073
1074 @end table
1075
1076 If the channel layouts of the inputs are disjoint, and therefore compatible,
1077 the channel layout of the output will be set accordingly and the channels
1078 will be reordered as necessary. If the channel layouts of the inputs are not
1079 disjoint, the output will have all the channels of the first input then all
1080 the channels of the second input, in that order, and the channel layout of
1081 the output will be the default value corresponding to the total number of
1082 channels.
1083
1084 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1085 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1086 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1087 first input, b1 is the first channel of the second input).
1088
1089 On the other hand, if both input are in stereo, the output channels will be
1090 in the default order: a1, a2, b1, b2, and the channel layout will be
1091 arbitrarily set to 4.0, which may or may not be the expected value.
1092
1093 All inputs must have the same sample rate, and format.
1094
1095 If inputs do not have the same duration, the output will stop with the
1096 shortest.
1097
1098 @subsection Examples
1099
1100 @itemize
1101 @item
1102 Merge two mono files into a stereo stream:
1103 @example
1104 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1105 @end example
1106
1107 @item
1108 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1109 @example
1110 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
1111 @end example
1112 @end itemize
1113
1114 @section amix
1115
1116 Mixes multiple audio inputs into a single output.
1117
1118 Note that this filter only supports float samples (the @var{amerge}
1119 and @var{pan} audio filters support many formats). If the @var{amix}
1120 input has integer samples then @ref{aresample} will be automatically
1121 inserted to perform the conversion to float samples.
1122
1123 For example
1124 @example
1125 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1126 @end example
1127 will mix 3 input audio streams to a single output with the same duration as the
1128 first input and a dropout transition time of 3 seconds.
1129
1130 It accepts the following parameters:
1131 @table @option
1132
1133 @item inputs
1134 The number of inputs. If unspecified, it defaults to 2.
1135
1136 @item duration
1137 How to determine the end-of-stream.
1138 @table @option
1139
1140 @item longest
1141 The duration of the longest input. (default)
1142
1143 @item shortest
1144 The duration of the shortest input.
1145
1146 @item first
1147 The duration of the first input.
1148
1149 @end table
1150
1151 @item dropout_transition
1152 The transition time, in seconds, for volume renormalization when an input
1153 stream ends. The default value is 2 seconds.
1154
1155 @end table
1156
1157 @section anequalizer
1158
1159 High-order parametric multiband equalizer for each channel.
1160
1161 It accepts the following parameters:
1162 @table @option
1163 @item params
1164
1165 This option string is in format:
1166 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1167 Each equalizer band is separated by '|'.
1168
1169 @table @option
1170 @item chn
1171 Set channel number to which equalization will be applied.
1172 If input doesn't have that channel the entry is ignored.
1173
1174 @item f
1175 Set central frequency for band.
1176 If input doesn't have that frequency the entry is ignored.
1177
1178 @item w
1179 Set band width in hertz.
1180
1181 @item g
1182 Set band gain in dB.
1183
1184 @item t
1185 Set filter type for band, optional, can be:
1186
1187 @table @samp
1188 @item 0
1189 Butterworth, this is default.
1190
1191 @item 1
1192 Chebyshev type 1.
1193
1194 @item 2
1195 Chebyshev type 2.
1196 @end table
1197 @end table
1198
1199 @item curves
1200 With this option activated frequency response of anequalizer is displayed
1201 in video stream.
1202
1203 @item size
1204 Set video stream size. Only useful if curves option is activated.
1205
1206 @item mgain
1207 Set max gain that will be displayed. Only useful if curves option is activated.
1208 Setting this to a reasonable value makes it possible to display gain which is derived from
1209 neighbour bands which are too close to each other and thus produce higher gain
1210 when both are activated.
1211
1212 @item fscale
1213 Set frequency scale used to draw frequency response in video output.
1214 Can be linear or logarithmic. Default is logarithmic.
1215
1216 @item colors
1217 Set color for each channel curve which is going to be displayed in video stream.
1218 This is list of color names separated by space or by '|'.
1219 Unrecognised or missing colors will be replaced by white color.
1220 @end table
1221
1222 @subsection Examples
1223
1224 @itemize
1225 @item
1226 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1227 for first 2 channels using Chebyshev type 1 filter:
1228 @example
1229 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1230 @end example
1231 @end itemize
1232
1233 @subsection Commands
1234
1235 This filter supports the following commands:
1236 @table @option
1237 @item change
1238 Alter existing filter parameters.
1239 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1240
1241 @var{fN} is existing filter number, starting from 0, if no such filter is available
1242 error is returned.
1243 @var{freq} set new frequency parameter.
1244 @var{width} set new width parameter in herz.
1245 @var{gain} set new gain parameter in dB.
1246
1247 Full filter invocation with asendcmd may look like this:
1248 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1249 @end table
1250
1251 @section anull
1252
1253 Pass the audio source unchanged to the output.
1254
1255 @section apad
1256
1257 Pad the end of an audio stream with silence.
1258
1259 This can be used together with @command{ffmpeg} @option{-shortest} to
1260 extend audio streams to the same length as the video stream.
1261
1262 A description of the accepted options follows.
1263
1264 @table @option
1265 @item packet_size
1266 Set silence packet size. Default value is 4096.
1267
1268 @item pad_len
1269 Set the number of samples of silence to add to the end. After the
1270 value is reached, the stream is terminated. This option is mutually
1271 exclusive with @option{whole_len}.
1272
1273 @item whole_len
1274 Set the minimum total number of samples in the output audio stream. If
1275 the value is longer than the input audio length, silence is added to
1276 the end, until the value is reached. This option is mutually exclusive
1277 with @option{pad_len}.
1278 @end table
1279
1280 If neither the @option{pad_len} nor the @option{whole_len} option is
1281 set, the filter will add silence to the end of the input stream
1282 indefinitely.
1283
1284 @subsection Examples
1285
1286 @itemize
1287 @item
1288 Add 1024 samples of silence to the end of the input:
1289 @example
1290 apad=pad_len=1024
1291 @end example
1292
1293 @item
1294 Make sure the audio output will contain at least 10000 samples, pad
1295 the input with silence if required:
1296 @example
1297 apad=whole_len=10000
1298 @end example
1299
1300 @item
1301 Use @command{ffmpeg} to pad the audio input with silence, so that the
1302 video stream will always result the shortest and will be converted
1303 until the end in the output file when using the @option{shortest}
1304 option:
1305 @example
1306 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1307 @end example
1308 @end itemize
1309
1310 @section aphaser
1311 Add a phasing effect to the input audio.
1312
1313 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1314 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1315
1316 A description of the accepted parameters follows.
1317
1318 @table @option
1319 @item in_gain
1320 Set input gain. Default is 0.4.
1321
1322 @item out_gain
1323 Set output gain. Default is 0.74
1324
1325 @item delay
1326 Set delay in milliseconds. Default is 3.0.
1327
1328 @item decay
1329 Set decay. Default is 0.4.
1330
1331 @item speed
1332 Set modulation speed in Hz. Default is 0.5.
1333
1334 @item type
1335 Set modulation type. Default is triangular.
1336
1337 It accepts the following values:
1338 @table @samp
1339 @item triangular, t
1340 @item sinusoidal, s
1341 @end table
1342 @end table
1343
1344 @section apulsator
1345
1346 Audio pulsator is something between an autopanner and a tremolo.
1347 But it can produce funny stereo effects as well. Pulsator changes the volume
1348 of the left and right channel based on a LFO (low frequency oscillator) with
1349 different waveforms and shifted phases.
1350 This filter have the ability to define an offset between left and right
1351 channel. An offset of 0 means that both LFO shapes match each other.
1352 The left and right channel are altered equally - a conventional tremolo.
1353 An offset of 50% means that the shape of the right channel is exactly shifted
1354 in phase (or moved backwards about half of the frequency) - pulsator acts as
1355 an autopanner. At 1 both curves match again. Every setting in between moves the
1356 phase shift gapless between all stages and produces some "bypassing" sounds with
1357 sine and triangle waveforms. The more you set the offset near 1 (starting from
1358 the 0.5) the faster the signal passes from the left to the right speaker.
1359
1360 The filter accepts the following options:
1361
1362 @table @option
1363 @item level_in
1364 Set input gain. By default it is 1. Range is [0.015625 - 64].
1365
1366 @item level_out
1367 Set output gain. By default it is 1. Range is [0.015625 - 64].
1368
1369 @item mode
1370 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1371 sawup or sawdown. Default is sine.
1372
1373 @item amount
1374 Set modulation. Define how much of original signal is affected by the LFO.
1375
1376 @item offset_l
1377 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1378
1379 @item offset_r
1380 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1381
1382 @item width
1383 Set pulse width. Default is 1. Allowed range is [0 - 2].
1384
1385 @item timing
1386 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1387
1388 @item bpm
1389 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1390 is set to bpm.
1391
1392 @item ms
1393 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1394 is set to ms.
1395
1396 @item hz
1397 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1398 if timing is set to hz.
1399 @end table
1400
1401 @anchor{aresample}
1402 @section aresample
1403
1404 Resample the input audio to the specified parameters, using the
1405 libswresample library. If none are specified then the filter will
1406 automatically convert between its input and output.
1407
1408 This filter is also able to stretch/squeeze the audio data to make it match
1409 the timestamps or to inject silence / cut out audio to make it match the
1410 timestamps, do a combination of both or do neither.
1411
1412 The filter accepts the syntax
1413 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1414 expresses a sample rate and @var{resampler_options} is a list of
1415 @var{key}=@var{value} pairs, separated by ":". See the
1416 ffmpeg-resampler manual for the complete list of supported options.
1417
1418 @subsection Examples
1419
1420 @itemize
1421 @item
1422 Resample the input audio to 44100Hz:
1423 @example
1424 aresample=44100
1425 @end example
1426
1427 @item
1428 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1429 samples per second compensation:
1430 @example
1431 aresample=async=1000
1432 @end example
1433 @end itemize
1434
1435 @section areverse
1436
1437 Reverse an audio clip.
1438
1439 Warning: This filter requires memory to buffer the entire clip, so trimming
1440 is suggested.
1441
1442 @subsection Examples
1443
1444 @itemize
1445 @item
1446 Take the first 5 seconds of a clip, and reverse it.
1447 @example
1448 atrim=end=5,areverse
1449 @end example
1450 @end itemize
1451
1452 @section asetnsamples
1453
1454 Set the number of samples per each output audio frame.
1455
1456 The last output packet may contain a different number of samples, as
1457 the filter will flush all the remaining samples when the input audio
1458 signals its end.
1459
1460 The filter accepts the following options:
1461
1462 @table @option
1463
1464 @item nb_out_samples, n
1465 Set the number of frames per each output audio frame. The number is
1466 intended as the number of samples @emph{per each channel}.
1467 Default value is 1024.
1468
1469 @item pad, p
1470 If set to 1, the filter will pad the last audio frame with zeroes, so
1471 that the last frame will contain the same number of samples as the
1472 previous ones. Default value is 1.
1473 @end table
1474
1475 For example, to set the number of per-frame samples to 1234 and
1476 disable padding for the last frame, use:
1477 @example
1478 asetnsamples=n=1234:p=0
1479 @end example
1480
1481 @section asetrate
1482
1483 Set the sample rate without altering the PCM data.
1484 This will result in a change of speed and pitch.
1485
1486 The filter accepts the following options:
1487
1488 @table @option
1489 @item sample_rate, r
1490 Set the output sample rate. Default is 44100 Hz.
1491 @end table
1492
1493 @section ashowinfo
1494
1495 Show a line containing various information for each input audio frame.
1496 The input audio is not modified.
1497
1498 The shown line contains a sequence of key/value pairs of the form
1499 @var{key}:@var{value}.
1500
1501 The following values are shown in the output:
1502
1503 @table @option
1504 @item n
1505 The (sequential) number of the input frame, starting from 0.
1506
1507 @item pts
1508 The presentation timestamp of the input frame, in time base units; the time base
1509 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1510
1511 @item pts_time
1512 The presentation timestamp of the input frame in seconds.
1513
1514 @item pos
1515 position of the frame in the input stream, -1 if this information in
1516 unavailable and/or meaningless (for example in case of synthetic audio)
1517
1518 @item fmt
1519 The sample format.
1520
1521 @item chlayout
1522 The channel layout.
1523
1524 @item rate
1525 The sample rate for the audio frame.
1526
1527 @item nb_samples
1528 The number of samples (per channel) in the frame.
1529
1530 @item checksum
1531 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1532 audio, the data is treated as if all the planes were concatenated.
1533
1534 @item plane_checksums
1535 A list of Adler-32 checksums for each data plane.
1536 @end table
1537
1538 @anchor{astats}
1539 @section astats
1540
1541 Display time domain statistical information about the audio channels.
1542 Statistics are calculated and displayed for each audio channel and,
1543 where applicable, an overall figure is also given.
1544
1545 It accepts the following option:
1546 @table @option
1547 @item length
1548 Short window length in seconds, used for peak and trough RMS measurement.
1549 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1550
1551 @item metadata
1552
1553 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1554 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1555 disabled.
1556
1557 Available keys for each channel are:
1558 DC_offset
1559 Min_level
1560 Max_level
1561 Min_difference
1562 Max_difference
1563 Mean_difference
1564 Peak_level
1565 RMS_peak
1566 RMS_trough
1567 Crest_factor
1568 Flat_factor
1569 Peak_count
1570 Bit_depth
1571
1572 and for Overall:
1573 DC_offset
1574 Min_level
1575 Max_level
1576 Min_difference
1577 Max_difference
1578 Mean_difference
1579 Peak_level
1580 RMS_level
1581 RMS_peak
1582 RMS_trough
1583 Flat_factor
1584 Peak_count
1585 Bit_depth
1586 Number_of_samples
1587
1588 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1589 this @code{lavfi.astats.Overall.Peak_count}.
1590
1591 For description what each key means read below.
1592
1593 @item reset
1594 Set number of frame after which stats are going to be recalculated.
1595 Default is disabled.
1596 @end table
1597
1598 A description of each shown parameter follows:
1599
1600 @table @option
1601 @item DC offset
1602 Mean amplitude displacement from zero.
1603
1604 @item Min level
1605 Minimal sample level.
1606
1607 @item Max level
1608 Maximal sample level.
1609
1610 @item Min difference
1611 Minimal difference between two consecutive samples.
1612
1613 @item Max difference
1614 Maximal difference between two consecutive samples.
1615
1616 @item Mean difference
1617 Mean difference between two consecutive samples.
1618 The average of each difference between two consecutive samples.
1619
1620 @item Peak level dB
1621 @item RMS level dB
1622 Standard peak and RMS level measured in dBFS.
1623
1624 @item RMS peak dB
1625 @item RMS trough dB
1626 Peak and trough values for RMS level measured over a short window.
1627
1628 @item Crest factor
1629 Standard ratio of peak to RMS level (note: not in dB).
1630
1631 @item Flat factor
1632 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1633 (i.e. either @var{Min level} or @var{Max level}).
1634
1635 @item Peak count
1636 Number of occasions (not the number of samples) that the signal attained either
1637 @var{Min level} or @var{Max level}.
1638
1639 @item Bit depth
1640 Overall bit depth of audio. Number of bits used for each sample.
1641 @end table
1642
1643 @section asyncts
1644
1645 Synchronize audio data with timestamps by squeezing/stretching it and/or
1646 dropping samples/adding silence when needed.
1647
1648 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1649
1650 It accepts the following parameters:
1651 @table @option
1652
1653 @item compensate
1654 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1655 by default. When disabled, time gaps are covered with silence.
1656
1657 @item min_delta
1658 The minimum difference between timestamps and audio data (in seconds) to trigger
1659 adding/dropping samples. The default value is 0.1. If you get an imperfect
1660 sync with this filter, try setting this parameter to 0.
1661
1662 @item max_comp
1663 The maximum compensation in samples per second. Only relevant with compensate=1.
1664 The default value is 500.
1665
1666 @item first_pts
1667 Assume that the first PTS should be this value. The time base is 1 / sample
1668 rate. This allows for padding/trimming at the start of the stream. By default,
1669 no assumption is made about the first frame's expected PTS, so no padding or
1670 trimming is done. For example, this could be set to 0 to pad the beginning with
1671 silence if an audio stream starts after the video stream or to trim any samples
1672 with a negative PTS due to encoder delay.
1673
1674 @end table
1675
1676 @section atempo
1677
1678 Adjust audio tempo.
1679
1680 The filter accepts exactly one parameter, the audio tempo. If not
1681 specified then the filter will assume nominal 1.0 tempo. Tempo must
1682 be in the [0.5, 2.0] range.
1683
1684 @subsection Examples
1685
1686 @itemize
1687 @item
1688 Slow down audio to 80% tempo:
1689 @example
1690 atempo=0.8
1691 @end example
1692
1693 @item
1694 To speed up audio to 125% tempo:
1695 @example
1696 atempo=1.25
1697 @end example
1698 @end itemize
1699
1700 @section atrim
1701
1702 Trim the input so that the output contains one continuous subpart of the input.
1703
1704 It accepts the following parameters:
1705 @table @option
1706 @item start
1707 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1708 sample with the timestamp @var{start} will be the first sample in the output.
1709
1710 @item end
1711 Specify time of the first audio sample that will be dropped, i.e. the
1712 audio sample immediately preceding the one with the timestamp @var{end} will be
1713 the last sample in the output.
1714
1715 @item start_pts
1716 Same as @var{start}, except this option sets the start timestamp in samples
1717 instead of seconds.
1718
1719 @item end_pts
1720 Same as @var{end}, except this option sets the end timestamp in samples instead
1721 of seconds.
1722
1723 @item duration
1724 The maximum duration of the output in seconds.
1725
1726 @item start_sample
1727 The number of the first sample that should be output.
1728
1729 @item end_sample
1730 The number of the first sample that should be dropped.
1731 @end table
1732
1733 @option{start}, @option{end}, and @option{duration} are expressed as time
1734 duration specifications; see
1735 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1736
1737 Note that the first two sets of the start/end options and the @option{duration}
1738 option look at the frame timestamp, while the _sample options simply count the
1739 samples that pass through the filter. So start/end_pts and start/end_sample will
1740 give different results when the timestamps are wrong, inexact or do not start at
1741 zero. Also note that this filter does not modify the timestamps. If you wish
1742 to have the output timestamps start at zero, insert the asetpts filter after the
1743 atrim filter.
1744
1745 If multiple start or end options are set, this filter tries to be greedy and
1746 keep all samples that match at least one of the specified constraints. To keep
1747 only the part that matches all the constraints at once, chain multiple atrim
1748 filters.
1749
1750 The defaults are such that all the input is kept. So it is possible to set e.g.
1751 just the end values to keep everything before the specified time.
1752
1753 Examples:
1754 @itemize
1755 @item
1756 Drop everything except the second minute of input:
1757 @example
1758 ffmpeg -i INPUT -af atrim=60:120
1759 @end example
1760
1761 @item
1762 Keep only the first 1000 samples:
1763 @example
1764 ffmpeg -i INPUT -af atrim=end_sample=1000
1765 @end example
1766
1767 @end itemize
1768
1769 @section bandpass
1770
1771 Apply a two-pole Butterworth band-pass filter with central
1772 frequency @var{frequency}, and (3dB-point) band-width width.
1773 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1774 instead of the default: constant 0dB peak gain.
1775 The filter roll off at 6dB per octave (20dB per decade).
1776
1777 The filter accepts the following options:
1778
1779 @table @option
1780 @item frequency, f
1781 Set the filter's central frequency. Default is @code{3000}.
1782
1783 @item csg
1784 Constant skirt gain if set to 1. Defaults to 0.
1785
1786 @item width_type
1787 Set method to specify band-width of filter.
1788 @table @option
1789 @item h
1790 Hz
1791 @item q
1792 Q-Factor
1793 @item o
1794 octave
1795 @item s
1796 slope
1797 @end table
1798
1799 @item width, w
1800 Specify the band-width of a filter in width_type units.
1801 @end table
1802
1803 @section bandreject
1804
1805 Apply a two-pole Butterworth band-reject filter with central
1806 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1807 The filter roll off at 6dB per octave (20dB per decade).
1808
1809 The filter accepts the following options:
1810
1811 @table @option
1812 @item frequency, f
1813 Set the filter's central frequency. Default is @code{3000}.
1814
1815 @item width_type
1816 Set method to specify band-width of filter.
1817 @table @option
1818 @item h
1819 Hz
1820 @item q
1821 Q-Factor
1822 @item o
1823 octave
1824 @item s
1825 slope
1826 @end table
1827
1828 @item width, w
1829 Specify the band-width of a filter in width_type units.
1830 @end table
1831
1832 @section bass
1833
1834 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1835 shelving filter with a response similar to that of a standard
1836 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1837
1838 The filter accepts the following options:
1839
1840 @table @option
1841 @item gain, g
1842 Give the gain at 0 Hz. Its useful range is about -20
1843 (for a large cut) to +20 (for a large boost).
1844 Beware of clipping when using a positive gain.
1845
1846 @item frequency, f
1847 Set the filter's central frequency and so can be used
1848 to extend or reduce the frequency range to be boosted or cut.
1849 The default value is @code{100} Hz.
1850
1851 @item width_type
1852 Set method to specify band-width of filter.
1853 @table @option
1854 @item h
1855 Hz
1856 @item q
1857 Q-Factor
1858 @item o
1859 octave
1860 @item s
1861 slope
1862 @end table
1863
1864 @item width, w
1865 Determine how steep is the filter's shelf transition.
1866 @end table
1867
1868 @section biquad
1869
1870 Apply a biquad IIR filter with the given coefficients.
1871 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1872 are the numerator and denominator coefficients respectively.
1873
1874 @section bs2b
1875 Bauer stereo to binaural transformation, which improves headphone listening of
1876 stereo audio records.
1877
1878 It accepts the following parameters:
1879 @table @option
1880
1881 @item profile
1882 Pre-defined crossfeed level.
1883 @table @option
1884
1885 @item default
1886 Default level (fcut=700, feed=50).
1887
1888 @item cmoy
1889 Chu Moy circuit (fcut=700, feed=60).
1890
1891 @item jmeier
1892 Jan Meier circuit (fcut=650, feed=95).
1893
1894 @end table
1895
1896 @item fcut
1897 Cut frequency (in Hz).
1898
1899 @item feed
1900 Feed level (in Hz).
1901
1902 @end table
1903
1904 @section channelmap
1905
1906 Remap input channels to new locations.
1907
1908 It accepts the following parameters:
1909 @table @option
1910 @item map
1911 Map channels from input to output. The argument is a '|'-separated list of
1912 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1913 @var{in_channel} form. @var{in_channel} can be either the name of the input
1914 channel (e.g. FL for front left) or its index in the input channel layout.
1915 @var{out_channel} is the name of the output channel or its index in the output
1916 channel layout. If @var{out_channel} is not given then it is implicitly an
1917 index, starting with zero and increasing by one for each mapping.
1918
1919 @item channel_layout
1920 The channel layout of the output stream.
1921 @end table
1922
1923 If no mapping is present, the filter will implicitly map input channels to
1924 output channels, preserving indices.
1925
1926 For example, assuming a 5.1+downmix input MOV file,
1927 @example
1928 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1929 @end example
1930 will create an output WAV file tagged as stereo from the downmix channels of
1931 the input.
1932
1933 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1934 @example
1935 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1936 @end example
1937
1938 @section channelsplit
1939
1940 Split each channel from an input audio stream into a separate output stream.
1941
1942 It accepts the following parameters:
1943 @table @option
1944 @item channel_layout
1945 The channel layout of the input stream. The default is "stereo".
1946 @end table
1947
1948 For example, assuming a stereo input MP3 file,
1949 @example
1950 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1951 @end example
1952 will create an output Matroska file with two audio streams, one containing only
1953 the left channel and the other the right channel.
1954
1955 Split a 5.1 WAV file into per-channel files:
1956 @example
1957 ffmpeg -i in.wav -filter_complex
1958 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1959 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1960 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1961 side_right.wav
1962 @end example
1963
1964 @section chorus
1965 Add a chorus effect to the audio.
1966
1967 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1968
1969 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1970 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1971 The modulation depth defines the range the modulated delay is played before or after
1972 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1973 sound tuned around the original one, like in a chorus where some vocals are slightly
1974 off key.
1975
1976 It accepts the following parameters:
1977 @table @option
1978 @item in_gain
1979 Set input gain. Default is 0.4.
1980
1981 @item out_gain
1982 Set output gain. Default is 0.4.
1983
1984 @item delays
1985 Set delays. A typical delay is around 40ms to 60ms.
1986
1987 @item decays
1988 Set decays.
1989
1990 @item speeds
1991 Set speeds.
1992
1993 @item depths
1994 Set depths.
1995 @end table
1996
1997 @subsection Examples
1998
1999 @itemize
2000 @item
2001 A single delay:
2002 @example
2003 chorus=0.7:0.9:55:0.4:0.25:2
2004 @end example
2005
2006 @item
2007 Two delays:
2008 @example
2009 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2010 @end example
2011
2012 @item
2013 Fuller sounding chorus with three delays:
2014 @example
2015 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
2016 @end example
2017 @end itemize
2018
2019 @section compand
2020 Compress or expand the audio's dynamic range.
2021
2022 It accepts the following parameters:
2023
2024 @table @option
2025
2026 @item attacks
2027 @item decays
2028 A list of times in seconds for each channel over which the instantaneous level
2029 of the input signal is averaged to determine its volume. @var{attacks} refers to
2030 increase of volume and @var{decays} refers to decrease of volume. For most
2031 situations, the attack time (response to the audio getting louder) should be
2032 shorter than the decay time, because the human ear is more sensitive to sudden
2033 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2034 a typical value for decay is 0.8 seconds.
2035 If specified number of attacks & decays is lower than number of channels, the last
2036 set attack/decay will be used for all remaining channels.
2037
2038 @item points
2039 A list of points for the transfer function, specified in dB relative to the
2040 maximum possible signal amplitude. Each key points list must be defined using
2041 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2042 @code{x0/y0 x1/y1 x2/y2 ....}
2043
2044 The input values must be in strictly increasing order but the transfer function
2045 does not have to be monotonically rising. The point @code{0/0} is assumed but
2046 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2047 function are @code{-70/-70|-60/-20}.
2048
2049 @item soft-knee
2050 Set the curve radius in dB for all joints. It defaults to 0.01.
2051
2052 @item gain
2053 Set the additional gain in dB to be applied at all points on the transfer
2054 function. This allows for easy adjustment of the overall gain.
2055 It defaults to 0.
2056
2057 @item volume
2058 Set an initial volume, in dB, to be assumed for each channel when filtering
2059 starts. This permits the user to supply a nominal level initially, so that, for
2060 example, a very large gain is not applied to initial signal levels before the
2061 companding has begun to operate. A typical value for audio which is initially
2062 quiet is -90 dB. It defaults to 0.
2063
2064 @item delay
2065 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2066 delayed before being fed to the volume adjuster. Specifying a delay
2067 approximately equal to the attack/decay times allows the filter to effectively
2068 operate in predictive rather than reactive mode. It defaults to 0.
2069
2070 @end table
2071
2072 @subsection Examples
2073
2074 @itemize
2075 @item
2076 Make music with both quiet and loud passages suitable for listening to in a
2077 noisy environment:
2078 @example
2079 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2080 @end example
2081
2082 Another example for audio with whisper and explosion parts:
2083 @example
2084 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2085 @end example
2086
2087 @item
2088 A noise gate for when the noise is at a lower level than the signal:
2089 @example
2090 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2091 @end example
2092
2093 @item
2094 Here is another noise gate, this time for when the noise is at a higher level
2095 than the signal (making it, in some ways, similar to squelch):
2096 @example
2097 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2098 @end example
2099
2100 @item
2101 2:1 compression starting at -6dB:
2102 @example
2103 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2104 @end example
2105
2106 @item
2107 2:1 compression starting at -9dB:
2108 @example
2109 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2110 @end example
2111
2112 @item
2113 2:1 compression starting at -12dB:
2114 @example
2115 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2116 @end example
2117
2118 @item
2119 2:1 compression starting at -18dB:
2120 @example
2121 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2122 @end example
2123
2124 @item
2125 3:1 compression starting at -15dB:
2126 @example
2127 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2128 @end example
2129
2130 @item
2131 Compressor/Gate:
2132 @example
2133 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2134 @end example
2135
2136 @item
2137 Expander:
2138 @example
2139 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
2140 @end example
2141
2142 @item
2143 Hard limiter at -6dB:
2144 @example
2145 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2146 @end example
2147
2148 @item
2149 Hard limiter at -12dB:
2150 @example
2151 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2152 @end example
2153
2154 @item
2155 Hard noise gate at -35 dB:
2156 @example
2157 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2158 @end example
2159
2160 @item
2161 Soft limiter:
2162 @example
2163 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2164 @end example
2165 @end itemize
2166
2167 @section compensationdelay
2168
2169 Compensation Delay Line is a metric based delay to compensate differing
2170 positions of microphones or speakers.
2171
2172 For example, you have recorded guitar with two microphones placed in
2173 different location. Because the front of sound wave has fixed speed in
2174 normal conditions, the phasing of microphones can vary and depends on
2175 their location and interposition. The best sound mix can be achieved when
2176 these microphones are in phase (synchronized). Note that distance of
2177 ~30 cm between microphones makes one microphone to capture signal in
2178 antiphase to another microphone. That makes the final mix sounding moody.
2179 This filter helps to solve phasing problems by adding different delays
2180 to each microphone track and make them synchronized.
2181
2182 The best result can be reached when you take one track as base and
2183 synchronize other tracks one by one with it.
2184 Remember that synchronization/delay tolerance depends on sample rate, too.
2185 Higher sample rates will give more tolerance.
2186
2187 It accepts the following parameters:
2188
2189 @table @option
2190 @item mm
2191 Set millimeters distance. This is compensation distance for fine tuning.
2192 Default is 0.
2193
2194 @item cm
2195 Set cm distance. This is compensation distance for tightening distance setup.
2196 Default is 0.
2197
2198 @item m
2199 Set meters distance. This is compensation distance for hard distance setup.
2200 Default is 0.
2201
2202 @item dry
2203 Set dry amount. Amount of unprocessed (dry) signal.
2204 Default is 0.
2205
2206 @item wet
2207 Set wet amount. Amount of processed (wet) signal.
2208 Default is 1.
2209
2210 @item temp
2211 Set temperature degree in Celsius. This is the temperature of the environment.
2212 Default is 20.
2213 @end table
2214
2215 @section crystalizer
2216 Simple algorithm to expand audio dynamic range.
2217
2218 The filter accepts the following options:
2219
2220 @table @option
2221 @item i
2222 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2223 (unchanged sound) to 10.0 (maximum effect).
2224
2225 @item c
2226 Enable clipping. By default is enabled.
2227 @end table
2228
2229 @section dcshift
2230 Apply a DC shift to the audio.
2231
2232 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2233 in the recording chain) from the audio. The effect of a DC offset is reduced
2234 headroom and hence volume. The @ref{astats} filter can be used to determine if
2235 a signal has a DC offset.
2236
2237 @table @option
2238 @item shift
2239 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2240 the audio.
2241
2242 @item limitergain
2243 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2244 used to prevent clipping.
2245 @end table
2246
2247 @section dynaudnorm
2248 Dynamic Audio Normalizer.
2249
2250 This filter applies a certain amount of gain to the input audio in order
2251 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2252 contrast to more "simple" normalization algorithms, the Dynamic Audio
2253 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2254 This allows for applying extra gain to the "quiet" sections of the audio
2255 while avoiding distortions or clipping the "loud" sections. In other words:
2256 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2257 sections, in the sense that the volume of each section is brought to the
2258 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2259 this goal *without* applying "dynamic range compressing". It will retain 100%
2260 of the dynamic range *within* each section of the audio file.
2261
2262 @table @option
2263 @item f
2264 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2265 Default is 500 milliseconds.
2266 The Dynamic Audio Normalizer processes the input audio in small chunks,
2267 referred to as frames. This is required, because a peak magnitude has no
2268 meaning for just a single sample value. Instead, we need to determine the
2269 peak magnitude for a contiguous sequence of sample values. While a "standard"
2270 normalizer would simply use the peak magnitude of the complete file, the
2271 Dynamic Audio Normalizer determines the peak magnitude individually for each
2272 frame. The length of a frame is specified in milliseconds. By default, the
2273 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2274 been found to give good results with most files.
2275 Note that the exact frame length, in number of samples, will be determined
2276 automatically, based on the sampling rate of the individual input audio file.
2277
2278 @item g
2279 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2280 number. Default is 31.
2281 Probably the most important parameter of the Dynamic Audio Normalizer is the
2282 @code{window size} of the Gaussian smoothing filter. The filter's window size
2283 is specified in frames, centered around the current frame. For the sake of
2284 simplicity, this must be an odd number. Consequently, the default value of 31
2285 takes into account the current frame, as well as the 15 preceding frames and
2286 the 15 subsequent frames. Using a larger window results in a stronger
2287 smoothing effect and thus in less gain variation, i.e. slower gain
2288 adaptation. Conversely, using a smaller window results in a weaker smoothing
2289 effect and thus in more gain variation, i.e. faster gain adaptation.
2290 In other words, the more you increase this value, the more the Dynamic Audio
2291 Normalizer will behave like a "traditional" normalization filter. On the
2292 contrary, the more you decrease this value, the more the Dynamic Audio
2293 Normalizer will behave like a dynamic range compressor.
2294
2295 @item p
2296 Set the target peak value. This specifies the highest permissible magnitude
2297 level for the normalized audio input. This filter will try to approach the
2298 target peak magnitude as closely as possible, but at the same time it also
2299 makes sure that the normalized signal will never exceed the peak magnitude.
2300 A frame's maximum local gain factor is imposed directly by the target peak
2301 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2302 It is not recommended to go above this value.
2303
2304 @item m
2305 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2306 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2307 factor for each input frame, i.e. the maximum gain factor that does not
2308 result in clipping or distortion. The maximum gain factor is determined by
2309 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2310 additionally bounds the frame's maximum gain factor by a predetermined
2311 (global) maximum gain factor. This is done in order to avoid excessive gain
2312 factors in "silent" or almost silent frames. By default, the maximum gain
2313 factor is 10.0, For most inputs the default value should be sufficient and
2314 it usually is not recommended to increase this value. Though, for input
2315 with an extremely low overall volume level, it may be necessary to allow even
2316 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2317 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2318 Instead, a "sigmoid" threshold function will be applied. This way, the
2319 gain factors will smoothly approach the threshold value, but never exceed that
2320 value.
2321
2322 @item r
2323 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2324 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2325 This means that the maximum local gain factor for each frame is defined
2326 (only) by the frame's highest magnitude sample. This way, the samples can
2327 be amplified as much as possible without exceeding the maximum signal
2328 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2329 Normalizer can also take into account the frame's root mean square,
2330 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2331 determine the power of a time-varying signal. It is therefore considered
2332 that the RMS is a better approximation of the "perceived loudness" than
2333 just looking at the signal's peak magnitude. Consequently, by adjusting all
2334 frames to a constant RMS value, a uniform "perceived loudness" can be
2335 established. If a target RMS value has been specified, a frame's local gain
2336 factor is defined as the factor that would result in exactly that RMS value.
2337 Note, however, that the maximum local gain factor is still restricted by the
2338 frame's highest magnitude sample, in order to prevent clipping.
2339
2340 @item n
2341 Enable channels coupling. By default is enabled.
2342 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2343 amount. This means the same gain factor will be applied to all channels, i.e.
2344 the maximum possible gain factor is determined by the "loudest" channel.
2345 However, in some recordings, it may happen that the volume of the different
2346 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2347 In this case, this option can be used to disable the channel coupling. This way,
2348 the gain factor will be determined independently for each channel, depending
2349 only on the individual channel's highest magnitude sample. This allows for
2350 harmonizing the volume of the different channels.
2351
2352 @item c
2353 Enable DC bias correction. By default is disabled.
2354 An audio signal (in the time domain) is a sequence of sample values.
2355 In the Dynamic Audio Normalizer these sample values are represented in the
2356 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2357 audio signal, or "waveform", should be centered around the zero point.
2358 That means if we calculate the mean value of all samples in a file, or in a
2359 single frame, then the result should be 0.0 or at least very close to that
2360 value. If, however, there is a significant deviation of the mean value from
2361 0.0, in either positive or negative direction, this is referred to as a
2362 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2363 Audio Normalizer provides optional DC bias correction.
2364 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2365 the mean value, or "DC correction" offset, of each input frame and subtract
2366 that value from all of the frame's sample values which ensures those samples
2367 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2368 boundaries, the DC correction offset values will be interpolated smoothly
2369 between neighbouring frames.
2370
2371 @item b
2372 Enable alternative boundary mode. By default is disabled.
2373 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2374 around each frame. This includes the preceding frames as well as the
2375 subsequent frames. However, for the "boundary" frames, located at the very
2376 beginning and at the very end of the audio file, not all neighbouring
2377 frames are available. In particular, for the first few frames in the audio
2378 file, the preceding frames are not known. And, similarly, for the last few
2379 frames in the audio file, the subsequent frames are not known. Thus, the
2380 question arises which gain factors should be assumed for the missing frames
2381 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2382 to deal with this situation. The default boundary mode assumes a gain factor
2383 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2384 "fade out" at the beginning and at the end of the input, respectively.
2385
2386 @item s
2387 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2388 By default, the Dynamic Audio Normalizer does not apply "traditional"
2389 compression. This means that signal peaks will not be pruned and thus the
2390 full dynamic range will be retained within each local neighbourhood. However,
2391 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2392 normalization algorithm with a more "traditional" compression.
2393 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2394 (thresholding) function. If (and only if) the compression feature is enabled,
2395 all input frames will be processed by a soft knee thresholding function prior
2396 to the actual normalization process. Put simply, the thresholding function is
2397 going to prune all samples whose magnitude exceeds a certain threshold value.
2398 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2399 value. Instead, the threshold value will be adjusted for each individual
2400 frame.
2401 In general, smaller parameters result in stronger compression, and vice versa.
2402 Values below 3.0 are not recommended, because audible distortion may appear.
2403 @end table
2404
2405 @section earwax
2406
2407 Make audio easier to listen to on headphones.
2408
2409 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2410 so that when listened to on headphones the stereo image is moved from
2411 inside your head (standard for headphones) to outside and in front of
2412 the listener (standard for speakers).
2413
2414 Ported from SoX.
2415
2416 @section equalizer
2417
2418 Apply a two-pole peaking equalisation (EQ) filter. With this
2419 filter, the signal-level at and around a selected frequency can
2420 be increased or decreased, whilst (unlike bandpass and bandreject
2421 filters) that at all other frequencies is unchanged.
2422
2423 In order to produce complex equalisation curves, this filter can
2424 be given several times, each with a different central frequency.
2425
2426 The filter accepts the following options:
2427
2428 @table @option
2429 @item frequency, f
2430 Set the filter's central frequency in Hz.
2431
2432 @item width_type
2433 Set method to specify band-width of filter.
2434 @table @option
2435 @item h
2436 Hz
2437 @item q
2438 Q-Factor
2439 @item o
2440 octave
2441 @item s
2442 slope
2443 @end table
2444
2445 @item width, w
2446 Specify the band-width of a filter in width_type units.
2447
2448 @item gain, g
2449 Set the required gain or attenuation in dB.
2450 Beware of clipping when using a positive gain.
2451 @end table
2452
2453 @subsection Examples
2454 @itemize
2455 @item
2456 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2457 @example
2458 equalizer=f=1000:width_type=h:width=200:g=-10
2459 @end example
2460
2461 @item
2462 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2463 @example
2464 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2465 @end example
2466 @end itemize
2467
2468 @section extrastereo
2469
2470 Linearly increases the difference between left and right channels which
2471 adds some sort of "live" effect to playback.
2472
2473 The filter accepts the following options:
2474
2475 @table @option
2476 @item m
2477 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2478 (average of both channels), with 1.0 sound will be unchanged, with
2479 -1.0 left and right channels will be swapped.
2480
2481 @item c
2482 Enable clipping. By default is enabled.
2483 @end table
2484
2485 @section firequalizer
2486 Apply FIR Equalization using arbitrary frequency response.
2487
2488 The filter accepts the following option:
2489
2490 @table @option
2491 @item gain
2492 Set gain curve equation (in dB). The expression can contain variables:
2493 @table @option
2494 @item f
2495 the evaluated frequency
2496 @item sr
2497 sample rate
2498 @item ch
2499 channel number, set to 0 when multichannels evaluation is disabled
2500 @item chid
2501 channel id, see libavutil/channel_layout.h, set to the first channel id when
2502 multichannels evaluation is disabled
2503 @item chs
2504 number of channels
2505 @item chlayout
2506 channel_layout, see libavutil/channel_layout.h
2507
2508 @end table
2509 and functions:
2510 @table @option
2511 @item gain_interpolate(f)
2512 interpolate gain on frequency f based on gain_entry
2513 @item cubic_interpolate(f)
2514 same as gain_interpolate, but smoother
2515 @end table
2516 This option is also available as command. Default is @code{gain_interpolate(f)}.
2517
2518 @item gain_entry
2519 Set gain entry for gain_interpolate function. The expression can
2520 contain functions:
2521 @table @option
2522 @item entry(f, g)
2523 store gain entry at frequency f with value g
2524 @end table
2525 This option is also available as command.
2526
2527 @item delay
2528 Set filter delay in seconds. Higher value means more accurate.
2529 Default is @code{0.01}.
2530
2531 @item accuracy
2532 Set filter accuracy in Hz. Lower value means more accurate.
2533 Default is @code{5}.
2534
2535 @item wfunc
2536 Set window function. Acceptable values are:
2537 @table @option
2538 @item rectangular
2539 rectangular window, useful when gain curve is already smooth
2540 @item hann
2541 hann window (default)
2542 @item hamming
2543 hamming window
2544 @item blackman
2545 blackman window
2546 @item nuttall3
2547 3-terms continuous 1st derivative nuttall window
2548 @item mnuttall3
2549 minimum 3-terms discontinuous nuttall window
2550 @item nuttall
2551 4-terms continuous 1st derivative nuttall window
2552 @item bnuttall
2553 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2554 @item bharris
2555 blackman-harris window
2556 @item tukey
2557 tukey window
2558 @end table
2559
2560 @item fixed
2561 If enabled, use fixed number of audio samples. This improves speed when
2562 filtering with large delay. Default is disabled.
2563
2564 @item multi
2565 Enable multichannels evaluation on gain. Default is disabled.
2566
2567 @item zero_phase
2568 Enable zero phase mode by subtracting timestamp to compensate delay.
2569 Default is disabled.
2570
2571 @item scale
2572 Set scale used by gain. Acceptable values are:
2573 @table @option
2574 @item linlin
2575 linear frequency, linear gain
2576 @item linlog
2577 linear frequency, logarithmic (in dB) gain (default)
2578 @item loglin
2579 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
2580 @item loglog
2581 logarithmic frequency, logarithmic gain
2582 @end table
2583
2584 @item dumpfile
2585 Set file for dumping, suitable for gnuplot.
2586
2587 @item dumpscale
2588 Set scale for dumpfile. Acceptable values are same with scale option.
2589 Default is linlog.
2590
2591 @item fft2
2592 Enable 2-channel convolution using complex FFT. This improves speed significantly.
2593 Default is disabled.
2594 @end table
2595
2596 @subsection Examples
2597 @itemize
2598 @item
2599 lowpass at 1000 Hz:
2600 @example
2601 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2602 @end example
2603 @item
2604 lowpass at 1000 Hz with gain_entry:
2605 @example
2606 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2607 @end example
2608 @item
2609 custom equalization:
2610 @example
2611 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2612 @end example
2613 @item
2614 higher delay with zero phase to compensate delay:
2615 @example
2616 firequalizer=delay=0.1:fixed=on:zero_phase=on
2617 @end example
2618 @item
2619 lowpass on left channel, highpass on right channel:
2620 @example
2621 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2622 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2623 @end example
2624 @end itemize
2625
2626 @section flanger
2627 Apply a flanging effect to the audio.
2628
2629 The filter accepts the following options:
2630
2631 @table @option
2632 @item delay
2633 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2634
2635 @item depth
2636 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2637
2638 @item regen
2639 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2640 Default value is 0.
2641
2642 @item width
2643 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2644 Default value is 71.
2645
2646 @item speed
2647 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2648
2649 @item shape
2650 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2651 Default value is @var{sinusoidal}.
2652
2653 @item phase
2654 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2655 Default value is 25.
2656
2657 @item interp
2658 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2659 Default is @var{linear}.
2660 @end table
2661
2662 @section hdcd
2663
2664 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
2665 embedded HDCD codes is expanded into a 20-bit PCM stream.
2666
2667 The filter supports the Peak Extend and Low-level Gain Adjustment features
2668 of HDCD, and detects the Transient Filter flag.
2669
2670 @example
2671 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
2672 @end example
2673
2674 When using the filter with wav, note the default encoding for wav is 16-bit,
2675 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
2676 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
2677 @example
2678 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
2679 ffmpeg -i HDCD16.wav -af hdcd -acodec pcm_s24le OUT24.wav
2680 @end example
2681
2682 The filter accepts the following options:
2683
2684 @table @option
2685 @item disable_autoconvert
2686 Disable any automatic format conversion or resampling in the filter graph.
2687
2688 @item process_stereo
2689 Process the stereo channels together. If target_gain does not match between
2690 channels, consider it invalid and use the last valid target_gain.
2691
2692 @item cdt_ms
2693 Set the code detect timer period in ms.
2694
2695 @item force_pe
2696 Always extend peaks above -3dBFS even if PE isn't signaled.
2697
2698 @item analyze_mode
2699 Replace audio with a solid tone and adjust the amplitude to signal some
2700 specific aspect of the decoding process. The output file can be loaded in
2701 an audio editor alongside the original to aid analysis.
2702
2703 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
2704
2705 Modes are:
2706 @table @samp
2707 @item 0, off
2708 Disabled
2709 @item 1, lle
2710 Gain adjustment level at each sample
2711 @item 2, pe
2712 Samples where peak extend occurs
2713 @item 3, cdt
2714 Samples where the code detect timer is active
2715 @item 4, tgm
2716 Samples where the target gain does not match between channels
2717 @end table
2718 @end table
2719
2720 @section highpass
2721
2722 Apply a high-pass filter with 3dB point frequency.
2723 The filter can be either single-pole, or double-pole (the default).
2724 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2725
2726 The filter accepts the following options:
2727
2728 @table @option
2729 @item frequency, f
2730 Set frequency in Hz. Default is 3000.
2731
2732 @item poles, p
2733 Set number of poles. Default is 2.
2734
2735 @item width_type
2736 Set method to specify band-width of filter.
2737 @table @option
2738 @item h
2739 Hz
2740 @item q
2741 Q-Factor
2742 @item o
2743 octave
2744 @item s
2745 slope
2746 @end table
2747
2748 @item width, w
2749 Specify the band-width of a filter in width_type units.
2750 Applies only to double-pole filter.
2751 The default is 0.707q and gives a Butterworth response.
2752 @end table
2753
2754 @section join
2755
2756 Join multiple input streams into one multi-channel stream.
2757
2758 It accepts the following parameters:
2759 @table @option
2760
2761 @item inputs
2762 The number of input streams. It defaults to 2.
2763
2764 @item channel_layout
2765 The desired output channel layout. It defaults to stereo.
2766
2767 @item map
2768 Map channels from inputs to output. The argument is a '|'-separated list of
2769 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2770 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2771 can be either the name of the input channel (e.g. FL for front left) or its
2772 index in the specified input stream. @var{out_channel} is the name of the output
2773 channel.
2774 @end table
2775
2776 The filter will attempt to guess the mappings when they are not specified
2777 explicitly. It does so by first trying to find an unused matching input channel
2778 and if that fails it picks the first unused input channel.
2779
2780 Join 3 inputs (with properly set channel layouts):
2781 @example
2782 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2783 @end example
2784
2785 Build a 5.1 output from 6 single-channel streams:
2786 @example
2787 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2788 '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'
2789 out
2790 @end example
2791
2792 @section ladspa
2793
2794 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2795
2796 To enable compilation of this filter you need to configure FFmpeg with
2797 @code{--enable-ladspa}.
2798
2799 @table @option
2800 @item file, f
2801 Specifies the name of LADSPA plugin library to load. If the environment
2802 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2803 each one of the directories specified by the colon separated list in
2804 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2805 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2806 @file{/usr/lib/ladspa/}.
2807
2808 @item plugin, p
2809 Specifies the plugin within the library. Some libraries contain only
2810 one plugin, but others contain many of them. If this is not set filter
2811 will list all available plugins within the specified library.
2812
2813 @item controls, c
2814 Set the '|' separated list of controls which are zero or more floating point
2815 values that determine the behavior of the loaded plugin (for example delay,
2816 threshold or gain).
2817 Controls need to be defined using the following syntax:
2818 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2819 @var{valuei} is the value set on the @var{i}-th control.
2820 Alternatively they can be also defined using the following syntax:
2821 @var{value0}|@var{value1}|@var{value2}|..., where
2822 @var{valuei} is the value set on the @var{i}-th control.
2823 If @option{controls} is set to @code{help}, all available controls and
2824 their valid ranges are printed.
2825
2826 @item sample_rate, s
2827 Specify the sample rate, default to 44100. Only used if plugin have
2828 zero inputs.
2829
2830 @item nb_samples, n
2831 Set the number of samples per channel per each output frame, default
2832 is 1024. Only used if plugin have zero inputs.
2833
2834 @item duration, d
2835 Set the minimum duration of the sourced audio. See
2836 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2837 for the accepted syntax.
2838 Note that the resulting duration may be greater than the specified duration,
2839 as the generated audio is always cut at the end of a complete frame.
2840 If not specified, or the expressed duration is negative, the audio is
2841 supposed to be generated forever.
2842 Only used if plugin have zero inputs.
2843
2844 @end table
2845
2846 @subsection Examples
2847
2848 @itemize
2849 @item
2850 List all available plugins within amp (LADSPA example plugin) library:
2851 @example
2852 ladspa=file=amp
2853 @end example
2854
2855 @item
2856 List all available controls and their valid ranges for @code{vcf_notch}
2857 plugin from @code{VCF} library:
2858 @example
2859 ladspa=f=vcf:p=vcf_notch:c=help
2860 @end example
2861
2862 @item
2863 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2864 plugin library:
2865 @example
2866 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2867 @end example
2868
2869 @item
2870 Add reverberation to the audio using TAP-plugins
2871 (Tom's Audio Processing plugins):
2872 @example
2873 ladspa=file=tap_reverb:tap_reverb
2874 @end example
2875
2876 @item
2877 Generate white noise, with 0.2 amplitude:
2878 @example
2879 ladspa=file=cmt:noise_source_white:c=c0=.2
2880 @end example
2881
2882 @item
2883 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2884 @code{C* Audio Plugin Suite} (CAPS) library:
2885 @example
2886 ladspa=file=caps:Click:c=c1=20'
2887 @end example
2888
2889 @item
2890 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2891 @example
2892 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2893 @end example
2894
2895 @item
2896 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2897 @code{SWH Plugins} collection:
2898 @example
2899 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2900 @end example
2901
2902 @item
2903 Attenuate low frequencies using Multiband EQ from Steve Harris
2904 @code{SWH Plugins} collection:
2905 @example
2906 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2907 @end example
2908 @end itemize
2909
2910 @subsection Commands
2911
2912 This filter supports the following commands:
2913 @table @option
2914 @item cN
2915 Modify the @var{N}-th control value.
2916
2917 If the specified value is not valid, it is ignored and prior one is kept.
2918 @end table
2919
2920 @section loudnorm
2921
2922 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
2923 Support for both single pass (livestreams, files) and double pass (files) modes.
2924 This algorithm can target IL, LRA, and maximum true peak.
2925
2926 The filter accepts the following options:
2927
2928 @table @option
2929 @item I, i
2930 Set integrated loudness target.
2931 Range is -70.0 - -5.0. Default value is -24.0.
2932
2933 @item LRA, lra
2934 Set loudness range target.
2935 Range is 1.0 - 20.0. Default value is 7.0.
2936
2937 @item TP, tp
2938 Set maximum true peak.
2939 Range is -9.0 - +0.0. Default value is -2.0.
2940
2941 @item measured_I, measured_i
2942 Measured IL of input file.
2943 Range is -99.0 - +0.0.
2944
2945 @item measured_LRA, measured_lra
2946 Measured LRA of input file.
2947 Range is  0.0 - 99.0.
2948
2949 @item measured_TP, measured_tp
2950 Measured true peak of input file.
2951 Range is  -99.0 - +99.0.
2952
2953 @item measured_thresh
2954 Measured threshold of input file.
2955 Range is -99.0 - +0.0.
2956
2957 @item offset
2958 Set offset gain. Gain is applied before the true-peak limiter.
2959 Range is  -99.0 - +99.0. Default is +0.0.
2960
2961 @item linear
2962 Normalize linearly if possible.
2963 measured_I, measured_LRA, measured_TP, and measured_thresh must also
2964 to be specified in order to use this mode.
2965 Options are true or false. Default is true.
2966
2967 @item dual_mono
2968 Treat mono input files as "dual-mono". If a mono file is intended for playback
2969 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
2970 If set to @code{true}, this option will compensate for this effect.
2971 Multi-channel input files are not affected by this option.
2972 Options are true or false. Default is false.
2973
2974 @item print_format
2975 Set print format for stats. Options are summary, json, or none.
2976 Default value is none.
2977 @end table
2978
2979 @section lowpass
2980
2981 Apply a low-pass filter with 3dB point frequency.
2982 The filter can be either single-pole or double-pole (the default).
2983 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2984
2985 The filter accepts the following options:
2986
2987 @table @option
2988 @item frequency, f
2989 Set frequency in Hz. Default is 500.
2990
2991 @item poles, p
2992 Set number of poles. Default is 2.
2993
2994 @item width_type
2995 Set method to specify band-width of filter.
2996 @table @option
2997 @item h
2998 Hz
2999 @item q
3000 Q-Factor
3001 @item o
3002 octave
3003 @item s
3004 slope
3005 @end table
3006
3007 @item width, w
3008 Specify the band-width of a filter in width_type units.
3009 Applies only to double-pole filter.
3010 The default is 0.707q and gives a Butterworth response.
3011 @end table
3012
3013 @anchor{pan}
3014 @section pan
3015
3016 Mix channels with specific gain levels. The filter accepts the output
3017 channel layout followed by a set of channels definitions.
3018
3019 This filter is also designed to efficiently remap the channels of an audio
3020 stream.
3021
3022 The filter accepts parameters of the form:
3023 "@var{l}|@var{outdef}|@var{outdef}|..."
3024
3025 @table @option
3026 @item l
3027 output channel layout or number of channels
3028
3029 @item outdef
3030 output channel specification, of the form:
3031 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
3032
3033 @item out_name
3034 output channel to define, either a channel name (FL, FR, etc.) or a channel
3035 number (c0, c1, etc.)
3036
3037 @item gain
3038 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3039
3040 @item in_name
3041 input channel to use, see out_name for details; it is not possible to mix
3042 named and numbered input channels
3043 @end table
3044
3045 If the `=' in a channel specification is replaced by `<', then the gains for
3046 that specification will be renormalized so that the total is 1, thus
3047 avoiding clipping noise.
3048
3049 @subsection Mixing examples
3050
3051 For example, if you want to down-mix from stereo to mono, but with a bigger
3052 factor for the left channel:
3053 @example
3054 pan=1c|c0=0.9*c0+0.1*c1
3055 @end example
3056
3057 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3058 7-channels surround:
3059 @example
3060 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3061 @end example
3062
3063 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3064 that should be preferred (see "-ac" option) unless you have very specific
3065 needs.
3066
3067 @subsection Remapping examples
3068
3069 The channel remapping will be effective if, and only if:
3070
3071 @itemize
3072 @item gain coefficients are zeroes or ones,
3073 @item only one input per channel output,
3074 @end itemize
3075
3076 If all these conditions are satisfied, the filter will notify the user ("Pure
3077 channel mapping detected"), and use an optimized and lossless method to do the
3078 remapping.
3079
3080 For example, if you have a 5.1 source and want a stereo audio stream by
3081 dropping the extra channels:
3082 @example
3083 pan="stereo| c0=FL | c1=FR"
3084 @end example
3085
3086 Given the same source, you can also switch front left and front right channels
3087 and keep the input channel layout:
3088 @example
3089 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3090 @end example
3091
3092 If the input is a stereo audio stream, you can mute the front left channel (and
3093 still keep the stereo channel layout) with:
3094 @example
3095 pan="stereo|c1=c1"
3096 @end example
3097
3098 Still with a stereo audio stream input, you can copy the right channel in both
3099 front left and right:
3100 @example
3101 pan="stereo| c0=FR | c1=FR"
3102 @end example
3103
3104 @section replaygain
3105
3106 ReplayGain scanner filter. This filter takes an audio stream as an input and
3107 outputs it unchanged.
3108 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3109
3110 @section resample
3111
3112 Convert the audio sample format, sample rate and channel layout. It is
3113 not meant to be used directly.
3114
3115 @section rubberband
3116 Apply time-stretching and pitch-shifting with librubberband.
3117
3118 The filter accepts the following options:
3119
3120 @table @option
3121 @item tempo
3122 Set tempo scale factor.
3123
3124 @item pitch
3125 Set pitch scale factor.
3126
3127 @item transients
3128 Set transients detector.
3129 Possible values are:
3130 @table @var
3131 @item crisp
3132 @item mixed
3133 @item smooth
3134 @end table
3135
3136 @item detector
3137 Set detector.
3138 Possible values are:
3139 @table @var
3140 @item compound
3141 @item percussive
3142 @item soft
3143 @end table
3144
3145 @item phase
3146 Set phase.
3147 Possible values are:
3148 @table @var
3149 @item laminar
3150 @item independent
3151 @end table
3152
3153 @item window
3154 Set processing window size.
3155 Possible values are:
3156 @table @var
3157 @item standard
3158 @item short
3159 @item long
3160 @end table
3161
3162 @item smoothing
3163 Set smoothing.
3164 Possible values are:
3165 @table @var
3166 @item off
3167 @item on
3168 @end table
3169
3170 @item formant
3171 Enable formant preservation when shift pitching.
3172 Possible values are:
3173 @table @var
3174 @item shifted
3175 @item preserved
3176 @end table
3177
3178 @item pitchq
3179 Set pitch quality.
3180 Possible values are:
3181 @table @var
3182 @item quality
3183 @item speed
3184 @item consistency
3185 @end table
3186
3187 @item channels
3188 Set channels.
3189 Possible values are:
3190 @table @var
3191 @item apart
3192 @item together
3193 @end table
3194 @end table
3195
3196 @section sidechaincompress
3197
3198 This filter acts like normal compressor but has the ability to compress
3199 detected signal using second input signal.
3200 It needs two input streams and returns one output stream.
3201 First input stream will be processed depending on second stream signal.
3202 The filtered signal then can be filtered with other filters in later stages of
3203 processing. See @ref{pan} and @ref{amerge} filter.
3204
3205 The filter accepts the following options:
3206
3207 @table @option
3208 @item level_in
3209 Set input gain. Default is 1. Range is between 0.015625 and 64.
3210
3211 @item threshold
3212 If a signal of second stream raises above this level it will affect the gain
3213 reduction of first stream.
3214 By default is 0.125. Range is between 0.00097563 and 1.
3215
3216 @item ratio
3217 Set a ratio about which the signal is reduced. 1:2 means that if the level
3218 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3219 Default is 2. Range is between 1 and 20.
3220
3221 @item attack
3222 Amount of milliseconds the signal has to rise above the threshold before gain
3223 reduction starts. Default is 20. Range is between 0.01 and 2000.
3224
3225 @item release
3226 Amount of milliseconds the signal has to fall below the threshold before
3227 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3228
3229 @item makeup
3230 Set the amount by how much signal will be amplified after processing.
3231 Default is 2. Range is from 1 and 64.
3232
3233 @item knee
3234 Curve the sharp knee around the threshold to enter gain reduction more softly.
3235 Default is 2.82843. Range is between 1 and 8.
3236
3237 @item link
3238 Choose if the @code{average} level between all channels of side-chain stream
3239 or the louder(@code{maximum}) channel of side-chain stream affects the
3240 reduction. Default is @code{average}.
3241
3242 @item detection
3243 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3244 of @code{rms}. Default is @code{rms} which is mainly smoother.
3245
3246 @item level_sc
3247 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3248
3249 @item mix
3250 How much to use compressed signal in output. Default is 1.
3251 Range is between 0 and 1.
3252 @end table
3253
3254 @subsection Examples
3255
3256 @itemize
3257 @item
3258 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3259 depending on the signal of 2nd input and later compressed signal to be
3260 merged with 2nd input:
3261 @example
3262 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3263 @end example
3264 @end itemize
3265
3266 @section sidechaingate
3267
3268 A sidechain gate acts like a normal (wideband) gate but has the ability to
3269 filter the detected signal before sending it to the gain reduction stage.
3270 Normally a gate uses the full range signal to detect a level above the
3271 threshold.
3272 For example: If you cut all lower frequencies from your sidechain signal
3273 the gate will decrease the volume of your track only if not enough highs
3274 appear. With this technique you are able to reduce the resonation of a
3275 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3276 guitar.
3277 It needs two input streams and returns one output stream.
3278 First input stream will be processed depending on second stream signal.
3279
3280 The filter accepts the following options:
3281
3282 @table @option
3283 @item level_in
3284 Set input level before filtering.
3285 Default is 1. Allowed range is from 0.015625 to 64.
3286
3287 @item range
3288 Set the level of gain reduction when the signal is below the threshold.
3289 Default is 0.06125. Allowed range is from 0 to 1.
3290
3291 @item threshold
3292 If a signal rises above this level the gain reduction is released.
3293 Default is 0.125. Allowed range is from 0 to 1.
3294
3295 @item ratio
3296 Set a ratio about which the signal is reduced.
3297 Default is 2. Allowed range is from 1 to 9000.
3298
3299 @item attack
3300 Amount of milliseconds the signal has to rise above the threshold before gain
3301 reduction stops.
3302 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3303
3304 @item release
3305 Amount of milliseconds the signal has to fall below the threshold before the
3306 reduction is increased again. Default is 250 milliseconds.
3307 Allowed range is from 0.01 to 9000.
3308
3309 @item makeup
3310 Set amount of amplification of signal after processing.
3311 Default is 1. Allowed range is from 1 to 64.
3312
3313 @item knee
3314 Curve the sharp knee around the threshold to enter gain reduction more softly.
3315 Default is 2.828427125. Allowed range is from 1 to 8.
3316
3317 @item detection
3318 Choose if exact signal should be taken for detection or an RMS like one.
3319 Default is rms. Can be peak or rms.
3320
3321 @item link
3322 Choose if the average level between all channels or the louder channel affects
3323 the reduction.
3324 Default is average. Can be average or maximum.
3325
3326 @item level_sc
3327 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3328 @end table
3329
3330 @section silencedetect
3331
3332 Detect silence in an audio stream.
3333
3334 This filter logs a message when it detects that the input audio volume is less
3335 or equal to a noise tolerance value for a duration greater or equal to the
3336 minimum detected noise duration.
3337
3338 The printed times and duration are expressed in seconds.
3339
3340 The filter accepts the following options:
3341
3342 @table @option
3343 @item duration, d
3344 Set silence duration until notification (default is 2 seconds).
3345
3346 @item noise, n
3347 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3348 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3349 @end table
3350
3351 @subsection Examples
3352
3353 @itemize
3354 @item
3355 Detect 5 seconds of silence with -50dB noise tolerance:
3356 @example
3357 silencedetect=n=-50dB:d=5
3358 @end example
3359
3360 @item
3361 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3362 tolerance in @file{silence.mp3}:
3363 @example
3364 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3365 @end example
3366 @end itemize
3367
3368 @section silenceremove
3369
3370 Remove silence from the beginning, middle or end of the audio.
3371
3372 The filter accepts the following options:
3373
3374 @table @option
3375 @item start_periods
3376 This value is used to indicate if audio should be trimmed at beginning of
3377 the audio. A value of zero indicates no silence should be trimmed from the
3378 beginning. When specifying a non-zero value, it trims audio up until it
3379 finds non-silence. Normally, when trimming silence from beginning of audio
3380 the @var{start_periods} will be @code{1} but it can be increased to higher
3381 values to trim all audio up to specific count of non-silence periods.
3382 Default value is @code{0}.
3383
3384 @item start_duration
3385 Specify the amount of time that non-silence must be detected before it stops
3386 trimming audio. By increasing the duration, bursts of noises can be treated
3387 as silence and trimmed off. Default value is @code{0}.
3388
3389 @item start_threshold
3390 This indicates what sample value should be treated as silence. For digital
3391 audio, a value of @code{0} may be fine but for audio recorded from analog,
3392 you may wish to increase the value to account for background noise.
3393 Can be specified in dB (in case "dB" is appended to the specified value)
3394 or amplitude ratio. Default value is @code{0}.
3395
3396 @item stop_periods
3397 Set the count for trimming silence from the end of audio.
3398 To remove silence from the middle of a file, specify a @var{stop_periods}
3399 that is negative. This value is then treated as a positive value and is
3400 used to indicate the effect should restart processing as specified by
3401 @var{start_periods}, making it suitable for removing periods of silence
3402 in the middle of the audio.
3403 Default value is @code{0}.
3404
3405 @item stop_duration
3406 Specify a duration of silence that must exist before audio is not copied any
3407 more. By specifying a higher duration, silence that is wanted can be left in
3408 the audio.
3409 Default value is @code{0}.
3410
3411 @item stop_threshold
3412 This is the same as @option{start_threshold} but for trimming silence from
3413 the end of audio.
3414 Can be specified in dB (in case "dB" is appended to the specified value)
3415 or amplitude ratio. Default value is @code{0}.
3416
3417 @item leave_silence
3418 This indicates that @var{stop_duration} length of audio should be left intact
3419 at the beginning of each period of silence.
3420 For example, if you want to remove long pauses between words but do not want
3421 to remove the pauses completely. Default value is @code{0}.
3422
3423 @item detection
3424 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3425 and works better with digital silence which is exactly 0.
3426 Default value is @code{rms}.
3427
3428 @item window
3429 Set ratio used to calculate size of window for detecting silence.
3430 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3431 @end table
3432
3433 @subsection Examples
3434
3435 @itemize
3436 @item
3437 The following example shows how this filter can be used to start a recording
3438 that does not contain the delay at the start which usually occurs between
3439 pressing the record button and the start of the performance:
3440 @example
3441 silenceremove=1:5:0.02
3442 @end example
3443
3444 @item
3445 Trim all silence encountered from beginning to end where there is more than 1
3446 second of silence in audio:
3447 @example
3448 silenceremove=0:0:0:-1:1:-90dB
3449 @end example
3450 @end itemize
3451
3452 @section sofalizer
3453
3454 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3455 loudspeakers around the user for binaural listening via headphones (audio
3456 formats up to 9 channels supported).
3457 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3458 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3459 Austrian Academy of Sciences.
3460
3461 To enable compilation of this filter you need to configure FFmpeg with
3462 @code{--enable-netcdf}.
3463
3464 The filter accepts the following options:
3465
3466 @table @option
3467 @item sofa
3468 Set the SOFA file used for rendering.
3469
3470 @item gain
3471 Set gain applied to audio. Value is in dB. Default is 0.
3472
3473 @item rotation
3474 Set rotation of virtual loudspeakers in deg. Default is 0.
3475
3476 @item elevation
3477 Set elevation of virtual speakers in deg. Default is 0.
3478
3479 @item radius
3480 Set distance in meters between loudspeakers and the listener with near-field
3481 HRTFs. Default is 1.
3482
3483 @item type
3484 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3485 processing audio in time domain which is slow.
3486 @var{freq} is processing audio in frequency domain which is fast.
3487 Default is @var{freq}.
3488
3489 @item speakers
3490 Set custom positions of virtual loudspeakers. Syntax for this option is:
3491 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3492 Each virtual loudspeaker is described with short channel name following with
3493 azimuth and elevation in degreees.
3494 Each virtual loudspeaker description is separated by '|'.
3495 For example to override front left and front right channel positions use:
3496 'speakers=FL 45 15|FR 345 15'.
3497 Descriptions with unrecognised channel names are ignored.
3498 @end table
3499
3500 @subsection Examples
3501
3502 @itemize
3503 @item
3504 Using ClubFritz6 sofa file:
3505 @example
3506 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3507 @end example
3508
3509 @item
3510 Using ClubFritz12 sofa file and bigger radius with small rotation:
3511 @example
3512 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3513 @end example
3514
3515 @item
3516 Similar as above but with custom speaker positions for front left, front right, back left and back right
3517 and also with custom gain:
3518 @example
3519 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
3520 @end example
3521 @end itemize
3522
3523 @section stereotools
3524
3525 This filter has some handy utilities to manage stereo signals, for converting
3526 M/S stereo recordings to L/R signal while having control over the parameters
3527 or spreading the stereo image of master track.
3528
3529 The filter accepts the following options:
3530
3531 @table @option
3532 @item level_in
3533 Set input level before filtering for both channels. Defaults is 1.
3534 Allowed range is from 0.015625 to 64.
3535
3536 @item level_out
3537 Set output level after filtering for both channels. Defaults is 1.
3538 Allowed range is from 0.015625 to 64.
3539
3540 @item balance_in
3541 Set input balance between both channels. Default is 0.
3542 Allowed range is from -1 to 1.
3543
3544 @item balance_out
3545 Set output balance between both channels. Default is 0.
3546 Allowed range is from -1 to 1.
3547
3548 @item softclip
3549 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3550 clipping. Disabled by default.
3551
3552 @item mutel
3553 Mute the left channel. Disabled by default.
3554
3555 @item muter
3556 Mute the right channel. Disabled by default.
3557
3558 @item phasel
3559 Change the phase of the left channel. Disabled by default.
3560
3561 @item phaser
3562 Change the phase of the right channel. Disabled by default.
3563
3564 @item mode
3565 Set stereo mode. Available values are:
3566
3567 @table @samp
3568 @item lr>lr
3569 Left/Right to Left/Right, this is default.
3570
3571 @item lr>ms
3572 Left/Right to Mid/Side.
3573
3574 @item ms>lr
3575 Mid/Side to Left/Right.
3576
3577 @item lr>ll
3578 Left/Right to Left/Left.
3579
3580 @item lr>rr
3581 Left/Right to Right/Right.
3582
3583 @item lr>l+r
3584 Left/Right to Left + Right.
3585
3586 @item lr>rl
3587 Left/Right to Right/Left.
3588 @end table
3589
3590 @item slev
3591 Set level of side signal. Default is 1.
3592 Allowed range is from 0.015625 to 64.
3593
3594 @item sbal
3595 Set balance of side signal. Default is 0.
3596 Allowed range is from -1 to 1.
3597
3598 @item mlev
3599 Set level of the middle signal. Default is 1.
3600 Allowed range is from 0.015625 to 64.
3601
3602 @item mpan
3603 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3604
3605 @item base
3606 Set stereo base between mono and inversed channels. Default is 0.
3607 Allowed range is from -1 to 1.
3608
3609 @item delay
3610 Set delay in milliseconds how much to delay left from right channel and
3611 vice versa. Default is 0. Allowed range is from -20 to 20.
3612
3613 @item sclevel
3614 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3615
3616 @item phase
3617 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3618 @end table
3619
3620 @subsection Examples
3621
3622 @itemize
3623 @item
3624 Apply karaoke like effect:
3625 @example
3626 stereotools=mlev=0.015625
3627 @end example
3628
3629 @item
3630 Convert M/S signal to L/R:
3631 @example
3632 "stereotools=mode=ms>lr"
3633 @end example
3634 @end itemize
3635
3636 @section stereowiden
3637
3638 This filter enhance the stereo effect by suppressing signal common to both
3639 channels and by delaying the signal of left into right and vice versa,
3640 thereby widening the stereo effect.
3641
3642 The filter accepts the following options:
3643
3644 @table @option
3645 @item delay
3646 Time in milliseconds of the delay of left signal into right and vice versa.
3647 Default is 20 milliseconds.
3648
3649 @item feedback
3650 Amount of gain in delayed signal into right and vice versa. Gives a delay
3651 effect of left signal in right output and vice versa which gives widening
3652 effect. Default is 0.3.
3653
3654 @item crossfeed
3655 Cross feed of left into right with inverted phase. This helps in suppressing
3656 the mono. If the value is 1 it will cancel all the signal common to both
3657 channels. Default is 0.3.
3658
3659 @item drymix
3660 Set level of input signal of original channel. Default is 0.8.
3661 @end table
3662
3663 @section treble
3664
3665 Boost or cut treble (upper) frequencies of the audio using a two-pole
3666 shelving filter with a response similar to that of a standard
3667 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3668
3669 The filter accepts the following options:
3670
3671 @table @option
3672 @item gain, g
3673 Give the gain at whichever is the lower of ~22 kHz and the
3674 Nyquist frequency. Its useful range is about -20 (for a large cut)
3675 to +20 (for a large boost). Beware of clipping when using a positive gain.
3676
3677 @item frequency, f
3678 Set the filter's central frequency and so can be used
3679 to extend or reduce the frequency range to be boosted or cut.
3680 The default value is @code{3000} Hz.
3681
3682 @item width_type
3683 Set method to specify band-width of filter.
3684 @table @option
3685 @item h
3686 Hz
3687 @item q
3688 Q-Factor
3689 @item o
3690 octave
3691 @item s
3692 slope
3693 @end table
3694
3695 @item width, w
3696 Determine how steep is the filter's shelf transition.
3697 @end table
3698
3699 @section tremolo
3700
3701 Sinusoidal amplitude modulation.
3702
3703 The filter accepts the following options:
3704
3705 @table @option
3706 @item f
3707 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3708 (20 Hz or lower) will result in a tremolo effect.
3709 This filter may also be used as a ring modulator by specifying
3710 a modulation frequency higher than 20 Hz.
3711 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3712
3713 @item d
3714 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3715 Default value is 0.5.
3716 @end table
3717
3718 @section vibrato
3719
3720 Sinusoidal phase modulation.
3721
3722 The filter accepts the following options:
3723
3724 @table @option
3725 @item f
3726 Modulation frequency in Hertz.
3727 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3728
3729 @item d
3730 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3731 Default value is 0.5.
3732 @end table
3733
3734 @section volume
3735
3736 Adjust the input audio volume.
3737
3738 It accepts the following parameters:
3739 @table @option
3740
3741 @item volume
3742 Set audio volume expression.
3743
3744 Output values are clipped to the maximum value.
3745
3746 The output audio volume is given by the relation:
3747 @example
3748 @var{output_volume} = @var{volume} * @var{input_volume}
3749 @end example
3750
3751 The default value for @var{volume} is "1.0".
3752
3753 @item precision
3754 This parameter represents the mathematical precision.
3755
3756 It determines which input sample formats will be allowed, which affects the
3757 precision of the volume scaling.
3758
3759 @table @option
3760 @item fixed
3761 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3762 @item float
3763 32-bit floating-point; this limits input sample format to FLT. (default)
3764 @item double
3765 64-bit floating-point; this limits input sample format to DBL.
3766 @end table
3767
3768 @item replaygain
3769 Choose the behaviour on encountering ReplayGain side data in input frames.
3770
3771 @table @option
3772 @item drop
3773 Remove ReplayGain side data, ignoring its contents (the default).
3774
3775 @item ignore
3776 Ignore ReplayGain side data, but leave it in the frame.
3777
3778 @item track
3779 Prefer the track gain, if present.
3780
3781 @item album
3782 Prefer the album gain, if present.
3783 @end table
3784
3785 @item replaygain_preamp
3786 Pre-amplification gain in dB to apply to the selected replaygain gain.
3787
3788 Default value for @var{replaygain_preamp} is 0.0.
3789
3790 @item eval
3791 Set when the volume expression is evaluated.
3792
3793 It accepts the following values:
3794 @table @samp
3795 @item once
3796 only evaluate expression once during the filter initialization, or
3797 when the @samp{volume} command is sent
3798
3799 @item frame
3800 evaluate expression for each incoming frame
3801 @end table
3802
3803 Default value is @samp{once}.
3804 @end table
3805
3806 The volume expression can contain the following parameters.
3807
3808 @table @option
3809 @item n
3810 frame number (starting at zero)
3811 @item nb_channels
3812 number of channels
3813 @item nb_consumed_samples
3814 number of samples consumed by the filter
3815 @item nb_samples
3816 number of samples in the current frame
3817 @item pos
3818 original frame position in the file
3819 @item pts
3820 frame PTS
3821 @item sample_rate
3822 sample rate
3823 @item startpts
3824 PTS at start of stream
3825 @item startt
3826 time at start of stream
3827 @item t
3828 frame time
3829 @item tb
3830 timestamp timebase
3831 @item volume
3832 last set volume value
3833 @end table
3834
3835 Note that when @option{eval} is set to @samp{once} only the
3836 @var{sample_rate} and @var{tb} variables are available, all other
3837 variables will evaluate to NAN.
3838
3839 @subsection Commands
3840
3841 This filter supports the following commands:
3842 @table @option
3843 @item volume
3844 Modify the volume expression.
3845 The command accepts the same syntax of the corresponding option.
3846
3847 If the specified expression is not valid, it is kept at its current
3848 value.
3849 @item replaygain_noclip
3850 Prevent clipping by limiting the gain applied.
3851
3852 Default value for @var{replaygain_noclip} is 1.
3853
3854 @end table
3855
3856 @subsection Examples
3857
3858 @itemize
3859 @item
3860 Halve the input audio volume:
3861 @example
3862 volume=volume=0.5
3863 volume=volume=1/2
3864 volume=volume=-6.0206dB
3865 @end example
3866
3867 In all the above example the named key for @option{volume} can be
3868 omitted, for example like in:
3869 @example
3870 volume=0.5
3871 @end example
3872
3873 @item
3874 Increase input audio power by 6 decibels using fixed-point precision:
3875 @example
3876 volume=volume=6dB:precision=fixed
3877 @end example
3878
3879 @item
3880 Fade volume after time 10 with an annihilation period of 5 seconds:
3881 @example
3882 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3883 @end example
3884 @end itemize
3885
3886 @section volumedetect
3887
3888 Detect the volume of the input video.
3889
3890 The filter has no parameters. The input is not modified. Statistics about
3891 the volume will be printed in the log when the input stream end is reached.
3892
3893 In particular it will show the mean volume (root mean square), maximum
3894 volume (on a per-sample basis), and the beginning of a histogram of the
3895 registered volume values (from the maximum value to a cumulated 1/1000 of
3896 the samples).
3897
3898 All volumes are in decibels relative to the maximum PCM value.
3899
3900 @subsection Examples
3901
3902 Here is an excerpt of the output:
3903 @example
3904 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3905 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3906 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3907 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3908 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3909 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3910 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3911 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3912 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3913 @end example
3914
3915 It means that:
3916 @itemize
3917 @item
3918 The mean square energy is approximately -27 dB, or 10^-2.7.
3919 @item
3920 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3921 @item
3922 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3923 @end itemize
3924
3925 In other words, raising the volume by +4 dB does not cause any clipping,
3926 raising it by +5 dB causes clipping for 6 samples, etc.
3927
3928 @c man end AUDIO FILTERS
3929
3930 @chapter Audio Sources
3931 @c man begin AUDIO SOURCES
3932
3933 Below is a description of the currently available audio sources.
3934
3935 @section abuffer
3936
3937 Buffer audio frames, and make them available to the filter chain.
3938
3939 This source is mainly intended for a programmatic use, in particular
3940 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3941
3942 It accepts the following parameters:
3943 @table @option
3944
3945 @item time_base
3946 The timebase which will be used for timestamps of submitted frames. It must be
3947 either a floating-point number or in @var{numerator}/@var{denominator} form.
3948
3949 @item sample_rate
3950 The sample rate of the incoming audio buffers.
3951
3952 @item sample_fmt
3953 The sample format of the incoming audio buffers.
3954 Either a sample format name or its corresponding integer representation from
3955 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3956
3957 @item channel_layout
3958 The channel layout of the incoming audio buffers.
3959 Either a channel layout name from channel_layout_map in
3960 @file{libavutil/channel_layout.c} or its corresponding integer representation
3961 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3962
3963 @item channels
3964 The number of channels of the incoming audio buffers.
3965 If both @var{channels} and @var{channel_layout} are specified, then they
3966 must be consistent.
3967
3968 @end table
3969
3970 @subsection Examples
3971
3972 @example
3973 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3974 @end example
3975
3976 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3977 Since the sample format with name "s16p" corresponds to the number
3978 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3979 equivalent to:
3980 @example
3981 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3982 @end example
3983
3984 @section aevalsrc
3985
3986 Generate an audio signal specified by an expression.
3987
3988 This source accepts in input one or more expressions (one for each
3989 channel), which are evaluated and used to generate a corresponding
3990 audio signal.
3991
3992 This source accepts the following options:
3993
3994 @table @option
3995 @item exprs
3996 Set the '|'-separated expressions list for each separate channel. In case the
3997 @option{channel_layout} option is not specified, the selected channel layout
3998 depends on the number of provided expressions. Otherwise the last
3999 specified expression is applied to the remaining output channels.
4000
4001 @item channel_layout, c
4002 Set the channel layout. The number of channels in the specified layout
4003 must be equal to the number of specified expressions.
4004
4005 @item duration, d
4006 Set the minimum duration of the sourced audio. See
4007 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4008 for the accepted syntax.
4009 Note that the resulting duration may be greater than the specified
4010 duration, as the generated audio is always cut at the end of a
4011 complete frame.
4012
4013 If not specified, or the expressed duration is negative, the audio is
4014 supposed to be generated forever.
4015
4016 @item nb_samples, n
4017 Set the number of samples per channel per each output frame,
4018 default to 1024.
4019
4020 @item sample_rate, s
4021 Specify the sample rate, default to 44100.
4022 @end table
4023
4024 Each expression in @var{exprs} can contain the following constants:
4025
4026 @table @option
4027 @item n
4028 number of the evaluated sample, starting from 0
4029
4030 @item t
4031 time of the evaluated sample expressed in seconds, starting from 0
4032
4033 @item s
4034 sample rate
4035
4036 @end table
4037
4038 @subsection Examples
4039
4040 @itemize
4041 @item
4042 Generate silence:
4043 @example
4044 aevalsrc=0
4045 @end example
4046
4047 @item
4048 Generate a sin signal with frequency of 440 Hz, set sample rate to
4049 8000 Hz:
4050 @example
4051 aevalsrc="sin(440*2*PI*t):s=8000"
4052 @end example
4053
4054 @item
4055 Generate a two channels signal, specify the channel layout (Front
4056 Center + Back Center) explicitly:
4057 @example
4058 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4059 @end example
4060
4061 @item
4062 Generate white noise:
4063 @example
4064 aevalsrc="-2+random(0)"
4065 @end example
4066
4067 @item
4068 Generate an amplitude modulated signal:
4069 @example
4070 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4071 @end example
4072
4073 @item
4074 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4075 @example
4076 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4077 @end example
4078
4079 @end itemize
4080
4081 @section anullsrc
4082
4083 The null audio source, return unprocessed audio frames. It is mainly useful
4084 as a template and to be employed in analysis / debugging tools, or as
4085 the source for filters which ignore the input data (for example the sox
4086 synth filter).
4087
4088 This source accepts the following options:
4089
4090 @table @option
4091
4092 @item channel_layout, cl
4093
4094 Specifies the channel layout, and can be either an integer or a string
4095 representing a channel layout. The default value of @var{channel_layout}
4096 is "stereo".
4097
4098 Check the channel_layout_map definition in
4099 @file{libavutil/channel_layout.c} for the mapping between strings and
4100 channel layout values.
4101
4102 @item sample_rate, r
4103 Specifies the sample rate, and defaults to 44100.
4104
4105 @item nb_samples, n
4106 Set the number of samples per requested frames.
4107
4108 @end table
4109
4110 @subsection Examples
4111
4112 @itemize
4113 @item
4114 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4115 @example
4116 anullsrc=r=48000:cl=4
4117 @end example
4118
4119 @item
4120 Do the same operation with a more obvious syntax:
4121 @example
4122 anullsrc=r=48000:cl=mono
4123 @end example
4124 @end itemize
4125
4126 All the parameters need to be explicitly defined.
4127
4128 @section flite
4129
4130 Synthesize a voice utterance using the libflite library.
4131
4132 To enable compilation of this filter you need to configure FFmpeg with
4133 @code{--enable-libflite}.
4134
4135 Note that the flite library is not thread-safe.
4136
4137 The filter accepts the following options:
4138
4139 @table @option
4140
4141 @item list_voices
4142 If set to 1, list the names of the available voices and exit
4143 immediately. Default value is 0.
4144
4145 @item nb_samples, n
4146 Set the maximum number of samples per frame. Default value is 512.
4147
4148 @item textfile
4149 Set the filename containing the text to speak.
4150
4151 @item text
4152 Set the text to speak.
4153
4154 @item voice, v
4155 Set the voice to use for the speech synthesis. Default value is
4156 @code{kal}. See also the @var{list_voices} option.
4157 @end table
4158
4159 @subsection Examples
4160
4161 @itemize
4162 @item
4163 Read from file @file{speech.txt}, and synthesize the text using the
4164 standard flite voice:
4165 @example
4166 flite=textfile=speech.txt
4167 @end example
4168
4169 @item
4170 Read the specified text selecting the @code{slt} voice:
4171 @example
4172 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4173 @end example
4174
4175 @item
4176 Input text to ffmpeg:
4177 @example
4178 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4179 @end example
4180
4181 @item
4182 Make @file{ffplay} speak the specified text, using @code{flite} and
4183 the @code{lavfi} device:
4184 @example
4185 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4186 @end example
4187 @end itemize
4188
4189 For more information about libflite, check:
4190 @url{http://www.speech.cs.cmu.edu/flite/}
4191
4192 @section anoisesrc
4193
4194 Generate a noise audio signal.
4195
4196 The filter accepts the following options:
4197
4198 @table @option
4199 @item sample_rate, r
4200 Specify the sample rate. Default value is 48000 Hz.
4201
4202 @item amplitude, a
4203 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4204 is 1.0.
4205
4206 @item duration, d
4207 Specify the duration of the generated audio stream. Not specifying this option
4208 results in noise with an infinite length.
4209
4210 @item color, colour, c
4211 Specify the color of noise. Available noise colors are white, pink, and brown.
4212 Default color is white.
4213
4214 @item seed, s
4215 Specify a value used to seed the PRNG.
4216
4217 @item nb_samples, n
4218 Set the number of samples per each output frame, default is 1024.
4219 @end table
4220
4221 @subsection Examples
4222
4223 @itemize
4224
4225 @item
4226 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4227 @example
4228 anoisesrc=d=60:c=pink:r=44100:a=0.5
4229 @end example
4230 @end itemize
4231
4232 @section sine
4233
4234 Generate an audio signal made of a sine wave with amplitude 1/8.
4235
4236 The audio signal is bit-exact.
4237
4238 The filter accepts the following options:
4239
4240 @table @option
4241
4242 @item frequency, f
4243 Set the carrier frequency. Default is 440 Hz.
4244
4245 @item beep_factor, b
4246 Enable a periodic beep every second with frequency @var{beep_factor} times
4247 the carrier frequency. Default is 0, meaning the beep is disabled.
4248
4249 @item sample_rate, r
4250 Specify the sample rate, default is 44100.
4251
4252 @item duration, d
4253 Specify the duration of the generated audio stream.
4254
4255 @item samples_per_frame
4256 Set the number of samples per output frame.
4257
4258 The expression can contain the following constants:
4259
4260 @table @option
4261 @item n
4262 The (sequential) number of the output audio frame, starting from 0.
4263
4264 @item pts
4265 The PTS (Presentation TimeStamp) of the output audio frame,
4266 expressed in @var{TB} units.
4267
4268 @item t
4269 The PTS of the output audio frame, expressed in seconds.
4270
4271 @item TB
4272 The timebase of the output audio frames.
4273 @end table
4274
4275 Default is @code{1024}.
4276 @end table
4277
4278 @subsection Examples
4279
4280 @itemize
4281
4282 @item
4283 Generate a simple 440 Hz sine wave:
4284 @example
4285 sine
4286 @end example
4287
4288 @item
4289 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4290 @example
4291 sine=220:4:d=5
4292 sine=f=220:b=4:d=5
4293 sine=frequency=220:beep_factor=4:duration=5
4294 @end example
4295
4296 @item
4297 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4298 pattern:
4299 @example
4300 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4301 @end example
4302 @end itemize
4303
4304 @c man end AUDIO SOURCES
4305
4306 @chapter Audio Sinks
4307 @c man begin AUDIO SINKS
4308
4309 Below is a description of the currently available audio sinks.
4310
4311 @section abuffersink
4312
4313 Buffer audio frames, and make them available to the end of filter chain.
4314
4315 This sink is mainly intended for programmatic use, in particular
4316 through the interface defined in @file{libavfilter/buffersink.h}
4317 or the options system.
4318
4319 It accepts a pointer to an AVABufferSinkContext structure, which
4320 defines the incoming buffers' formats, to be passed as the opaque
4321 parameter to @code{avfilter_init_filter} for initialization.
4322 @section anullsink
4323
4324 Null audio sink; do absolutely nothing with the input audio. It is
4325 mainly useful as a template and for use in analysis / debugging
4326 tools.
4327
4328 @c man end AUDIO SINKS
4329
4330 @chapter Video Filters
4331 @c man begin VIDEO FILTERS
4332
4333 When you configure your FFmpeg build, you can disable any of the
4334 existing filters using @code{--disable-filters}.
4335 The configure output will show the video filters included in your
4336 build.
4337
4338 Below is a description of the currently available video filters.
4339
4340 @section alphaextract
4341
4342 Extract the alpha component from the input as a grayscale video. This
4343 is especially useful with the @var{alphamerge} filter.
4344
4345 @section alphamerge
4346
4347 Add or replace the alpha component of the primary input with the
4348 grayscale value of a second input. This is intended for use with
4349 @var{alphaextract} to allow the transmission or storage of frame
4350 sequences that have alpha in a format that doesn't support an alpha
4351 channel.
4352
4353 For example, to reconstruct full frames from a normal YUV-encoded video
4354 and a separate video created with @var{alphaextract}, you might use:
4355 @example
4356 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4357 @end example
4358
4359 Since this filter is designed for reconstruction, it operates on frame
4360 sequences without considering timestamps, and terminates when either
4361 input reaches end of stream. This will cause problems if your encoding
4362 pipeline drops frames. If you're trying to apply an image as an
4363 overlay to a video stream, consider the @var{overlay} filter instead.
4364
4365 @section ass
4366
4367 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4368 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4369 Substation Alpha) subtitles files.
4370
4371 This filter accepts the following option in addition to the common options from
4372 the @ref{subtitles} filter:
4373
4374 @table @option
4375 @item shaping
4376 Set the shaping engine
4377
4378 Available values are:
4379 @table @samp
4380 @item auto
4381 The default libass shaping engine, which is the best available.
4382 @item simple
4383 Fast, font-agnostic shaper that can do only substitutions
4384 @item complex
4385 Slower shaper using OpenType for substitutions and positioning
4386 @end table
4387
4388 The default is @code{auto}.
4389 @end table
4390
4391 @section atadenoise
4392 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4393
4394 The filter accepts the following options:
4395
4396 @table @option
4397 @item 0a
4398 Set threshold A for 1st plane. Default is 0.02.
4399 Valid range is 0 to 0.3.
4400
4401 @item 0b
4402 Set threshold B for 1st plane. Default is 0.04.
4403 Valid range is 0 to 5.
4404
4405 @item 1a
4406 Set threshold A for 2nd plane. Default is 0.02.
4407 Valid range is 0 to 0.3.
4408
4409 @item 1b
4410 Set threshold B for 2nd plane. Default is 0.04.
4411 Valid range is 0 to 5.
4412
4413 @item 2a
4414 Set threshold A for 3rd plane. Default is 0.02.
4415 Valid range is 0 to 0.3.
4416
4417 @item 2b
4418 Set threshold B for 3rd plane. Default is 0.04.
4419 Valid range is 0 to 5.
4420
4421 Threshold A is designed to react on abrupt changes in the input signal and
4422 threshold B is designed to react on continuous changes in the input signal.
4423
4424 @item s
4425 Set number of frames filter will use for averaging. Default is 33. Must be odd
4426 number in range [5, 129].
4427
4428 @item p
4429 Set what planes of frame filter will use for averaging. Default is all.
4430 @end table
4431
4432 @section avgblur
4433
4434 Apply average blur filter.
4435
4436 The filter accepts the following options:
4437
4438 @table @option
4439 @item sizeX
4440 Set horizontal kernel size.
4441
4442 @item planes
4443 Set which planes to filter. By default all planes are filtered.
4444
4445 @item sizeY
4446 Set vertical kernel size, if zero it will be same as @code{sizeX}.
4447 Default is @code{0}.
4448 @end table
4449
4450 @section bbox
4451
4452 Compute the bounding box for the non-black pixels in the input frame
4453 luminance plane.
4454
4455 This filter computes the bounding box containing all the pixels with a
4456 luminance value greater than the minimum allowed value.
4457 The parameters describing the bounding box are printed on the filter
4458 log.
4459
4460 The filter accepts the following option:
4461
4462 @table @option
4463 @item min_val
4464 Set the minimal luminance value. Default is @code{16}.
4465 @end table
4466
4467 @section bitplanenoise
4468
4469 Show and measure bit plane noise.
4470
4471 The filter accepts the following options:
4472
4473 @table @option
4474 @item bitplane
4475 Set which plane to analyze. Default is @code{1}.
4476
4477 @item filter
4478 Filter out noisy pixels from @code{bitplane} set above.
4479 Default is disabled.
4480 @end table
4481
4482 @section blackdetect
4483
4484 Detect video intervals that are (almost) completely black. Can be
4485 useful to detect chapter transitions, commercials, or invalid
4486 recordings. Output lines contains the time for the start, end and
4487 duration of the detected black interval expressed in seconds.
4488
4489 In order to display the output lines, you need to set the loglevel at
4490 least to the AV_LOG_INFO value.
4491
4492 The filter accepts the following options:
4493
4494 @table @option
4495 @item black_min_duration, d
4496 Set the minimum detected black duration expressed in seconds. It must
4497 be a non-negative floating point number.
4498
4499 Default value is 2.0.
4500
4501 @item picture_black_ratio_th, pic_th
4502 Set the threshold for considering a picture "black".
4503 Express the minimum value for the ratio:
4504 @example
4505 @var{nb_black_pixels} / @var{nb_pixels}
4506 @end example
4507
4508 for which a picture is considered black.
4509 Default value is 0.98.
4510
4511 @item pixel_black_th, pix_th
4512 Set the threshold for considering a pixel "black".
4513
4514 The threshold expresses the maximum pixel luminance value for which a
4515 pixel is considered "black". The provided value is scaled according to
4516 the following equation:
4517 @example
4518 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4519 @end example
4520
4521 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4522 the input video format, the range is [0-255] for YUV full-range
4523 formats and [16-235] for YUV non full-range formats.
4524
4525 Default value is 0.10.
4526 @end table
4527
4528 The following example sets the maximum pixel threshold to the minimum
4529 value, and detects only black intervals of 2 or more seconds:
4530 @example
4531 blackdetect=d=2:pix_th=0.00
4532 @end example
4533
4534 @section blackframe
4535
4536 Detect frames that are (almost) completely black. Can be useful to
4537 detect chapter transitions or commercials. Output lines consist of
4538 the frame number of the detected frame, the percentage of blackness,
4539 the position in the file if known or -1 and the timestamp in seconds.
4540
4541 In order to display the output lines, you need to set the loglevel at
4542 least to the AV_LOG_INFO value.
4543
4544 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
4545 The value represents the percentage of pixels in the picture that
4546 are below the threshold value.
4547
4548 It accepts the following parameters:
4549
4550 @table @option
4551
4552 @item amount
4553 The percentage of the pixels that have to be below the threshold; it defaults to
4554 @code{98}.
4555
4556 @item threshold, thresh
4557 The threshold below which a pixel value is considered black; it defaults to
4558 @code{32}.
4559
4560 @end table
4561
4562 @section blend, tblend
4563
4564 Blend two video frames into each other.
4565
4566 The @code{blend} filter takes two input streams and outputs one
4567 stream, the first input is the "top" layer and second input is
4568 "bottom" layer.  By default, the output terminates when the longest input terminates.
4569
4570 The @code{tblend} (time blend) filter takes two consecutive frames
4571 from one single stream, and outputs the result obtained by blending
4572 the new frame on top of the old frame.
4573
4574 A description of the accepted options follows.
4575
4576 @table @option
4577 @item c0_mode
4578 @item c1_mode
4579 @item c2_mode
4580 @item c3_mode
4581 @item all_mode
4582 Set blend mode for specific pixel component or all pixel components in case
4583 of @var{all_mode}. Default value is @code{normal}.
4584
4585 Available values for component modes are:
4586 @table @samp
4587 @item addition
4588 @item addition128
4589 @item and
4590 @item average
4591 @item burn
4592 @item darken
4593 @item difference
4594 @item difference128
4595 @item divide
4596 @item dodge
4597 @item freeze
4598 @item exclusion
4599 @item glow
4600 @item hardlight
4601 @item hardmix
4602 @item heat
4603 @item lighten
4604 @item linearlight
4605 @item multiply
4606 @item multiply128
4607 @item negation
4608 @item normal
4609 @item or
4610 @item overlay
4611 @item phoenix
4612 @item pinlight
4613 @item reflect
4614 @item screen
4615 @item softlight
4616 @item subtract
4617 @item vividlight
4618 @item xor
4619 @end table
4620
4621 @item c0_opacity
4622 @item c1_opacity
4623 @item c2_opacity
4624 @item c3_opacity
4625 @item all_opacity
4626 Set blend opacity for specific pixel component or all pixel components in case
4627 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4628
4629 @item c0_expr
4630 @item c1_expr
4631 @item c2_expr
4632 @item c3_expr
4633 @item all_expr
4634 Set blend expression for specific pixel component or all pixel components in case
4635 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4636
4637 The expressions can use the following variables:
4638
4639 @table @option
4640 @item N
4641 The sequential number of the filtered frame, starting from @code{0}.
4642
4643 @item X
4644 @item Y
4645 the coordinates of the current sample
4646
4647 @item W
4648 @item H
4649 the width and height of currently filtered plane
4650
4651 @item SW
4652 @item SH
4653 Width and height scale depending on the currently filtered plane. It is the
4654 ratio between the corresponding luma plane number of pixels and the current
4655 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4656 @code{0.5,0.5} for chroma planes.
4657
4658 @item T
4659 Time of the current frame, expressed in seconds.
4660
4661 @item TOP, A
4662 Value of pixel component at current location for first video frame (top layer).
4663
4664 @item BOTTOM, B
4665 Value of pixel component at current location for second video frame (bottom layer).
4666 @end table
4667
4668 @item shortest
4669 Force termination when the shortest input terminates. Default is
4670 @code{0}. This option is only defined for the @code{blend} filter.
4671
4672 @item repeatlast
4673 Continue applying the last bottom frame after the end of the stream. A value of
4674 @code{0} disable the filter after the last frame of the bottom layer is reached.
4675 Default is @code{1}. This option is only defined for the @code{blend} filter.
4676 @end table
4677
4678 @subsection Examples
4679
4680 @itemize
4681 @item
4682 Apply transition from bottom layer to top layer in first 10 seconds:
4683 @example
4684 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4685 @end example
4686
4687 @item
4688 Apply 1x1 checkerboard effect:
4689 @example
4690 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4691 @end example
4692
4693 @item
4694 Apply uncover left effect:
4695 @example
4696 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4697 @end example
4698
4699 @item
4700 Apply uncover down effect:
4701 @example
4702 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4703 @end example
4704
4705 @item
4706 Apply uncover up-left effect:
4707 @example
4708 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4709 @end example
4710
4711 @item
4712 Split diagonally video and shows top and bottom layer on each side:
4713 @example
4714 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4715 @end example
4716
4717 @item
4718 Display differences between the current and the previous frame:
4719 @example
4720 tblend=all_mode=difference128
4721 @end example
4722 @end itemize
4723
4724 @section boxblur
4725
4726 Apply a boxblur algorithm to the input video.
4727
4728 It accepts the following parameters:
4729
4730 @table @option
4731
4732 @item luma_radius, lr
4733 @item luma_power, lp
4734 @item chroma_radius, cr
4735 @item chroma_power, cp
4736 @item alpha_radius, ar
4737 @item alpha_power, ap
4738
4739 @end table
4740
4741 A description of the accepted options follows.
4742
4743 @table @option
4744 @item luma_radius, lr
4745 @item chroma_radius, cr
4746 @item alpha_radius, ar
4747 Set an expression for the box radius in pixels used for blurring the
4748 corresponding input plane.
4749
4750 The radius value must be a non-negative number, and must not be
4751 greater than the value of the expression @code{min(w,h)/2} for the
4752 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4753 planes.
4754
4755 Default value for @option{luma_radius} is "2". If not specified,
4756 @option{chroma_radius} and @option{alpha_radius} default to the
4757 corresponding value set for @option{luma_radius}.
4758
4759 The expressions can contain the following constants:
4760 @table @option
4761 @item w
4762 @item h
4763 The input width and height in pixels.
4764
4765 @item cw
4766 @item ch
4767 The input chroma image width and height in pixels.
4768
4769 @item hsub
4770 @item vsub
4771 The horizontal and vertical chroma subsample values. For example, for the
4772 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4773 @end table
4774
4775 @item luma_power, lp
4776 @item chroma_power, cp
4777 @item alpha_power, ap
4778 Specify how many times the boxblur filter is applied to the
4779 corresponding plane.
4780
4781 Default value for @option{luma_power} is 2. If not specified,
4782 @option{chroma_power} and @option{alpha_power} default to the
4783 corresponding value set for @option{luma_power}.
4784
4785 A value of 0 will disable the effect.
4786 @end table
4787
4788 @subsection Examples
4789
4790 @itemize
4791 @item
4792 Apply a boxblur filter with the luma, chroma, and alpha radii
4793 set to 2:
4794 @example
4795 boxblur=luma_radius=2:luma_power=1
4796 boxblur=2:1
4797 @end example
4798
4799 @item
4800 Set the luma radius to 2, and alpha and chroma radius to 0:
4801 @example
4802 boxblur=2:1:cr=0:ar=0
4803 @end example
4804
4805 @item
4806 Set the luma and chroma radii to a fraction of the video dimension:
4807 @example
4808 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4809 @end example
4810 @end itemize
4811
4812 @section bwdif
4813
4814 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4815 Deinterlacing Filter").
4816
4817 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4818 interpolation algorithms.
4819 It accepts the following parameters:
4820
4821 @table @option
4822 @item mode
4823 The interlacing mode to adopt. It accepts one of the following values:
4824
4825 @table @option
4826 @item 0, send_frame
4827 Output one frame for each frame.
4828 @item 1, send_field
4829 Output one frame for each field.
4830 @end table
4831
4832 The default value is @code{send_field}.
4833
4834 @item parity
4835 The picture field parity assumed for the input interlaced video. It accepts one
4836 of the following values:
4837
4838 @table @option
4839 @item 0, tff
4840 Assume the top field is first.
4841 @item 1, bff
4842 Assume the bottom field is first.
4843 @item -1, auto
4844 Enable automatic detection of field parity.
4845 @end table
4846
4847 The default value is @code{auto}.
4848 If the interlacing is unknown or the decoder does not export this information,
4849 top field first will be assumed.
4850
4851 @item deint
4852 Specify which frames to deinterlace. Accept one of the following
4853 values:
4854
4855 @table @option
4856 @item 0, all
4857 Deinterlace all frames.
4858 @item 1, interlaced
4859 Only deinterlace frames marked as interlaced.
4860 @end table
4861
4862 The default value is @code{all}.
4863 @end table
4864
4865 @section chromakey
4866 YUV colorspace color/chroma keying.
4867
4868 The filter accepts the following options:
4869
4870 @table @option
4871 @item color
4872 The color which will be replaced with transparency.
4873
4874 @item similarity
4875 Similarity percentage with the key color.
4876
4877 0.01 matches only the exact key color, while 1.0 matches everything.
4878
4879 @item blend
4880 Blend percentage.
4881
4882 0.0 makes pixels either fully transparent, or not transparent at all.
4883
4884 Higher values result in semi-transparent pixels, with a higher transparency
4885 the more similar the pixels color is to the key color.
4886
4887 @item yuv
4888 Signals that the color passed is already in YUV instead of RGB.
4889
4890 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4891 This can be used to pass exact YUV values as hexadecimal numbers.
4892 @end table
4893
4894 @subsection Examples
4895
4896 @itemize
4897 @item
4898 Make every green pixel in the input image transparent:
4899 @example
4900 ffmpeg -i input.png -vf chromakey=green out.png
4901 @end example
4902
4903 @item
4904 Overlay a greenscreen-video on top of a static black background.
4905 @example
4906 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
4907 @end example
4908 @end itemize
4909
4910 @section ciescope
4911
4912 Display CIE color diagram with pixels overlaid onto it.
4913
4914 The filter accepts the following options:
4915
4916 @table @option
4917 @item system
4918 Set color system.
4919
4920 @table @samp
4921 @item ntsc, 470m
4922 @item ebu, 470bg
4923 @item smpte
4924 @item 240m
4925 @item apple
4926 @item widergb
4927 @item cie1931
4928 @item rec709, hdtv
4929 @item uhdtv, rec2020
4930 @end table
4931
4932 @item cie
4933 Set CIE system.
4934
4935 @table @samp
4936 @item xyy
4937 @item ucs
4938 @item luv
4939 @end table
4940
4941 @item gamuts
4942 Set what gamuts to draw.
4943
4944 See @code{system} option for available values.
4945
4946 @item size, s
4947 Set ciescope size, by default set to 512.
4948
4949 @item intensity, i
4950 Set intensity used to map input pixel values to CIE diagram.
4951
4952 @item contrast
4953 Set contrast used to draw tongue colors that are out of active color system gamut.
4954
4955 @item corrgamma
4956 Correct gamma displayed on scope, by default enabled.
4957
4958 @item showwhite
4959 Show white point on CIE diagram, by default disabled.
4960
4961 @item gamma
4962 Set input gamma. Used only with XYZ input color space.
4963 @end table
4964
4965 @section codecview
4966
4967 Visualize information exported by some codecs.
4968
4969 Some codecs can export information through frames using side-data or other
4970 means. For example, some MPEG based codecs export motion vectors through the
4971 @var{export_mvs} flag in the codec @option{flags2} option.
4972
4973 The filter accepts the following option:
4974
4975 @table @option
4976 @item mv
4977 Set motion vectors to visualize.
4978
4979 Available flags for @var{mv} are:
4980
4981 @table @samp
4982 @item pf
4983 forward predicted MVs of P-frames
4984 @item bf
4985 forward predicted MVs of B-frames
4986 @item bb
4987 backward predicted MVs of B-frames
4988 @end table
4989
4990 @item qp
4991 Display quantization parameters using the chroma planes.
4992
4993 @item mv_type, mvt
4994 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
4995
4996 Available flags for @var{mv_type} are:
4997
4998 @table @samp
4999 @item fp
5000 forward predicted MVs
5001 @item bp
5002 backward predicted MVs
5003 @end table
5004
5005 @item frame_type, ft
5006 Set frame type to visualize motion vectors of.
5007
5008 Available flags for @var{frame_type} are:
5009
5010 @table @samp
5011 @item if
5012 intra-coded frames (I-frames)
5013 @item pf
5014 predicted frames (P-frames)
5015 @item bf
5016 bi-directionally predicted frames (B-frames)
5017 @end table
5018 @end table
5019
5020 @subsection Examples
5021
5022 @itemize
5023 @item
5024 Visualize forward predicted MVs of all frames using @command{ffplay}:
5025 @example
5026 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
5027 @end example
5028
5029 @item
5030 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5031 @example
5032 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5033 @end example
5034 @end itemize
5035
5036 @section colorbalance
5037 Modify intensity of primary colors (red, green and blue) of input frames.
5038
5039 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5040 regions for the red-cyan, green-magenta or blue-yellow balance.
5041
5042 A positive adjustment value shifts the balance towards the primary color, a negative
5043 value towards the complementary color.
5044
5045 The filter accepts the following options:
5046
5047 @table @option
5048 @item rs
5049 @item gs
5050 @item bs
5051 Adjust red, green and blue shadows (darkest pixels).
5052
5053 @item rm
5054 @item gm
5055 @item bm
5056 Adjust red, green and blue midtones (medium pixels).
5057
5058 @item rh
5059 @item gh
5060 @item bh
5061 Adjust red, green and blue highlights (brightest pixels).
5062
5063 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5064 @end table
5065
5066 @subsection Examples
5067
5068 @itemize
5069 @item
5070 Add red color cast to shadows:
5071 @example
5072 colorbalance=rs=.3
5073 @end example
5074 @end itemize
5075
5076 @section colorkey
5077 RGB colorspace color keying.
5078
5079 The filter accepts the following options:
5080
5081 @table @option
5082 @item color
5083 The color which will be replaced with transparency.
5084
5085 @item similarity
5086 Similarity percentage with the key color.
5087
5088 0.01 matches only the exact key color, while 1.0 matches everything.
5089
5090 @item blend
5091 Blend percentage.
5092
5093 0.0 makes pixels either fully transparent, or not transparent at all.
5094
5095 Higher values result in semi-transparent pixels, with a higher transparency
5096 the more similar the pixels color is to the key color.
5097 @end table
5098
5099 @subsection Examples
5100
5101 @itemize
5102 @item
5103 Make every green pixel in the input image transparent:
5104 @example
5105 ffmpeg -i input.png -vf colorkey=green out.png
5106 @end example
5107
5108 @item
5109 Overlay a greenscreen-video on top of a static background image.
5110 @example
5111 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
5112 @end example
5113 @end itemize
5114
5115 @section colorlevels
5116
5117 Adjust video input frames using levels.
5118
5119 The filter accepts the following options:
5120
5121 @table @option
5122 @item rimin
5123 @item gimin
5124 @item bimin
5125 @item aimin
5126 Adjust red, green, blue and alpha input black point.
5127 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5128
5129 @item rimax
5130 @item gimax
5131 @item bimax
5132 @item aimax
5133 Adjust red, green, blue and alpha input white point.
5134 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5135
5136 Input levels are used to lighten highlights (bright tones), darken shadows
5137 (dark tones), change the balance of bright and dark tones.
5138
5139 @item romin
5140 @item gomin
5141 @item bomin
5142 @item aomin
5143 Adjust red, green, blue and alpha output black point.
5144 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5145
5146 @item romax
5147 @item gomax
5148 @item bomax
5149 @item aomax
5150 Adjust red, green, blue and alpha output white point.
5151 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5152
5153 Output levels allows manual selection of a constrained output level range.
5154 @end table
5155
5156 @subsection Examples
5157
5158 @itemize
5159 @item
5160 Make video output darker:
5161 @example
5162 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5163 @end example
5164
5165 @item
5166 Increase contrast:
5167 @example
5168 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5169 @end example
5170
5171 @item
5172 Make video output lighter:
5173 @example
5174 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5175 @end example
5176
5177 @item
5178 Increase brightness:
5179 @example
5180 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5181 @end example
5182 @end itemize
5183
5184 @section colorchannelmixer
5185
5186 Adjust video input frames by re-mixing color channels.
5187
5188 This filter modifies a color channel by adding the values associated to
5189 the other channels of the same pixels. For example if the value to
5190 modify is red, the output value will be:
5191 @example
5192 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5193 @end example
5194
5195 The filter accepts the following options:
5196
5197 @table @option
5198 @item rr
5199 @item rg
5200 @item rb
5201 @item ra
5202 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5203 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5204
5205 @item gr
5206 @item gg
5207 @item gb
5208 @item ga
5209 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5210 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5211
5212 @item br
5213 @item bg
5214 @item bb
5215 @item ba
5216 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5217 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5218
5219 @item ar
5220 @item ag
5221 @item ab
5222 @item aa
5223 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5224 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5225
5226 Allowed ranges for options are @code{[-2.0, 2.0]}.
5227 @end table
5228
5229 @subsection Examples
5230
5231 @itemize
5232 @item
5233 Convert source to grayscale:
5234 @example
5235 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5236 @end example
5237 @item
5238 Simulate sepia tones:
5239 @example
5240 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5241 @end example
5242 @end itemize
5243
5244 @section colormatrix
5245
5246 Convert color matrix.
5247
5248 The filter accepts the following options:
5249
5250 @table @option
5251 @item src
5252 @item dst
5253 Specify the source and destination color matrix. Both values must be
5254 specified.
5255
5256 The accepted values are:
5257 @table @samp
5258 @item bt709
5259 BT.709
5260
5261 @item bt601
5262 BT.601
5263
5264 @item smpte240m
5265 SMPTE-240M
5266
5267 @item fcc
5268 FCC
5269
5270 @item bt2020
5271 BT.2020
5272 @end table
5273 @end table
5274
5275 For example to convert from BT.601 to SMPTE-240M, use the command:
5276 @example
5277 colormatrix=bt601:smpte240m
5278 @end example
5279
5280 @section colorspace
5281
5282 Convert colorspace, transfer characteristics or color primaries.
5283 Input video needs to have an even size.
5284
5285 The filter accepts the following options:
5286
5287 @table @option
5288 @anchor{all}
5289 @item all
5290 Specify all color properties at once.
5291
5292 The accepted values are:
5293 @table @samp
5294 @item bt470m
5295 BT.470M
5296
5297 @item bt470bg
5298 BT.470BG
5299
5300 @item bt601-6-525
5301 BT.601-6 525
5302
5303 @item bt601-6-625
5304 BT.601-6 625
5305
5306 @item bt709
5307 BT.709
5308
5309 @item smpte170m
5310 SMPTE-170M
5311
5312 @item smpte240m
5313 SMPTE-240M
5314
5315 @item bt2020
5316 BT.2020
5317
5318 @end table
5319
5320 @anchor{space}
5321 @item space
5322 Specify output colorspace.
5323
5324 The accepted values are:
5325 @table @samp
5326 @item bt709
5327 BT.709
5328
5329 @item fcc
5330 FCC
5331
5332 @item bt470bg
5333 BT.470BG or BT.601-6 625
5334
5335 @item smpte170m
5336 SMPTE-170M or BT.601-6 525
5337
5338 @item smpte240m
5339 SMPTE-240M
5340
5341 @item ycgco
5342 YCgCo
5343
5344 @item bt2020ncl
5345 BT.2020 with non-constant luminance
5346
5347 @end table
5348
5349 @anchor{trc}
5350 @item trc
5351 Specify output transfer characteristics.
5352
5353 The accepted values are:
5354 @table @samp
5355 @item bt709
5356 BT.709
5357
5358 @item bt470m
5359 BT.470M
5360
5361 @item bt470bg
5362 BT.470BG
5363
5364 @item gamma22
5365 Constant gamma of 2.2
5366
5367 @item gamma28
5368 Constant gamma of 2.8
5369
5370 @item smpte170m
5371 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5372
5373 @item smpte240m
5374 SMPTE-240M
5375
5376 @item srgb
5377 SRGB
5378
5379 @item iec61966-2-1
5380 iec61966-2-1
5381
5382 @item iec61966-2-4
5383 iec61966-2-4
5384
5385 @item xvycc
5386 xvycc
5387
5388 @item bt2020-10
5389 BT.2020 for 10-bits content
5390
5391 @item bt2020-12
5392 BT.2020 for 12-bits content
5393
5394 @end table
5395
5396 @anchor{primaries}
5397 @item primaries
5398 Specify output color primaries.
5399
5400 The accepted values are:
5401 @table @samp
5402 @item bt709
5403 BT.709
5404
5405 @item bt470m
5406 BT.470M
5407
5408 @item bt470bg
5409 BT.470BG or BT.601-6 625
5410
5411 @item smpte170m
5412 SMPTE-170M or BT.601-6 525
5413
5414 @item smpte240m
5415 SMPTE-240M
5416
5417 @item film
5418 film
5419
5420 @item smpte431
5421 SMPTE-431
5422
5423 @item smpte432
5424 SMPTE-432
5425
5426 @item bt2020
5427 BT.2020
5428
5429 @end table
5430
5431 @anchor{range}
5432 @item range
5433 Specify output color range.
5434
5435 The accepted values are:
5436 @table @samp
5437 @item tv
5438 TV (restricted) range
5439
5440 @item mpeg
5441 MPEG (restricted) range
5442
5443 @item pc
5444 PC (full) range
5445
5446 @item jpeg
5447 JPEG (full) range
5448
5449 @end table
5450
5451 @item format
5452 Specify output color format.
5453
5454 The accepted values are:
5455 @table @samp
5456 @item yuv420p
5457 YUV 4:2:0 planar 8-bits
5458
5459 @item yuv420p10
5460 YUV 4:2:0 planar 10-bits
5461
5462 @item yuv420p12
5463 YUV 4:2:0 planar 12-bits
5464
5465 @item yuv422p
5466 YUV 4:2:2 planar 8-bits
5467
5468 @item yuv422p10
5469 YUV 4:2:2 planar 10-bits
5470
5471 @item yuv422p12
5472 YUV 4:2:2 planar 12-bits
5473
5474 @item yuv444p
5475 YUV 4:4:4 planar 8-bits
5476
5477 @item yuv444p10
5478 YUV 4:4:4 planar 10-bits
5479
5480 @item yuv444p12
5481 YUV 4:4:4 planar 12-bits
5482
5483 @end table
5484
5485 @item fast
5486 Do a fast conversion, which skips gamma/primary correction. This will take
5487 significantly less CPU, but will be mathematically incorrect. To get output
5488 compatible with that produced by the colormatrix filter, use fast=1.
5489
5490 @item dither
5491 Specify dithering mode.
5492
5493 The accepted values are:
5494 @table @samp
5495 @item none
5496 No dithering
5497
5498 @item fsb
5499 Floyd-Steinberg dithering
5500 @end table
5501
5502 @item wpadapt
5503 Whitepoint adaptation mode.
5504
5505 The accepted values are:
5506 @table @samp
5507 @item bradford
5508 Bradford whitepoint adaptation
5509
5510 @item vonkries
5511 von Kries whitepoint adaptation
5512
5513 @item identity
5514 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5515 @end table
5516
5517 @item iall
5518 Override all input properties at once. Same accepted values as @ref{all}.
5519
5520 @item ispace
5521 Override input colorspace. Same accepted values as @ref{space}.
5522
5523 @item iprimaries
5524 Override input color primaries. Same accepted values as @ref{primaries}.
5525
5526 @item itrc
5527 Override input transfer characteristics. Same accepted values as @ref{trc}.
5528
5529 @item irange
5530 Override input color range. Same accepted values as @ref{range}.
5531
5532 @end table
5533
5534 The filter converts the transfer characteristics, color space and color
5535 primaries to the specified user values. The output value, if not specified,
5536 is set to a default value based on the "all" property. If that property is
5537 also not specified, the filter will log an error. The output color range and
5538 format default to the same value as the input color range and format. The
5539 input transfer characteristics, color space, color primaries and color range
5540 should be set on the input data. If any of these are missing, the filter will
5541 log an error and no conversion will take place.
5542
5543 For example to convert the input to SMPTE-240M, use the command:
5544 @example
5545 colorspace=smpte240m
5546 @end example
5547
5548 @section convolution
5549
5550 Apply convolution 3x3 or 5x5 filter.
5551
5552 The filter accepts the following options:
5553
5554 @table @option
5555 @item 0m
5556 @item 1m
5557 @item 2m
5558 @item 3m
5559 Set matrix for each plane.
5560 Matrix is sequence of 9 or 25 signed integers.
5561
5562 @item 0rdiv
5563 @item 1rdiv
5564 @item 2rdiv
5565 @item 3rdiv
5566 Set multiplier for calculated value for each plane.
5567
5568 @item 0bias
5569 @item 1bias
5570 @item 2bias
5571 @item 3bias
5572 Set bias for each plane. This value is added to the result of the multiplication.
5573 Useful for making the overall image brighter or darker. Default is 0.0.
5574 @end table
5575
5576 @subsection Examples
5577
5578 @itemize
5579 @item
5580 Apply sharpen:
5581 @example
5582 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"
5583 @end example
5584
5585 @item
5586 Apply blur:
5587 @example
5588 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"
5589 @end example
5590
5591 @item
5592 Apply edge enhance:
5593 @example
5594 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"
5595 @end example
5596
5597 @item
5598 Apply edge detect:
5599 @example
5600 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"
5601 @end example
5602
5603 @item
5604 Apply emboss:
5605 @example
5606 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"
5607 @end example
5608 @end itemize
5609
5610 @section copy
5611
5612 Copy the input source unchanged to the output. This is mainly useful for
5613 testing purposes.
5614
5615 @anchor{coreimage}
5616 @section coreimage
5617 Video filtering on GPU using Apple's CoreImage API on OSX.
5618
5619 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5620 processed by video hardware. However, software-based OpenGL implementations
5621 exist which means there is no guarantee for hardware processing. It depends on
5622 the respective OSX.
5623
5624 There are many filters and image generators provided by Apple that come with a
5625 large variety of options. The filter has to be referenced by its name along
5626 with its options.
5627
5628 The coreimage filter accepts the following options:
5629 @table @option
5630 @item list_filters
5631 List all available filters and generators along with all their respective
5632 options as well as possible minimum and maximum values along with the default
5633 values.
5634 @example
5635 list_filters=true
5636 @end example
5637
5638 @item filter
5639 Specify all filters by their respective name and options.
5640 Use @var{list_filters} to determine all valid filter names and options.
5641 Numerical options are specified by a float value and are automatically clamped
5642 to their respective value range.  Vector and color options have to be specified
5643 by a list of space separated float values. Character escaping has to be done.
5644 A special option name @code{default} is available to use default options for a
5645 filter.
5646
5647 It is required to specify either @code{default} or at least one of the filter options.
5648 All omitted options are used with their default values.
5649 The syntax of the filter string is as follows:
5650 @example
5651 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5652 @end example
5653
5654 @item output_rect
5655 Specify a rectangle where the output of the filter chain is copied into the
5656 input image. It is given by a list of space separated float values:
5657 @example
5658 output_rect=x\ y\ width\ height
5659 @end example
5660 If not given, the output rectangle equals the dimensions of the input image.
5661 The output rectangle is automatically cropped at the borders of the input
5662 image. Negative values are valid for each component.
5663 @example
5664 output_rect=25\ 25\ 100\ 100
5665 @end example
5666 @end table
5667
5668 Several filters can be chained for successive processing without GPU-HOST
5669 transfers allowing for fast processing of complex filter chains.
5670 Currently, only filters with zero (generators) or exactly one (filters) input
5671 image and one output image are supported. Also, transition filters are not yet
5672 usable as intended.
5673
5674 Some filters generate output images with additional padding depending on the
5675 respective filter kernel. The padding is automatically removed to ensure the
5676 filter output has the same size as the input image.
5677
5678 For image generators, the size of the output image is determined by the
5679 previous output image of the filter chain or the input image of the whole
5680 filterchain, respectively. The generators do not use the pixel information of
5681 this image to generate their output. However, the generated output is
5682 blended onto this image, resulting in partial or complete coverage of the
5683 output image.
5684
5685 The @ref{coreimagesrc} video source can be used for generating input images
5686 which are directly fed into the filter chain. By using it, providing input
5687 images by another video source or an input video is not required.
5688
5689 @subsection Examples
5690
5691 @itemize
5692
5693 @item
5694 List all filters available:
5695 @example
5696 coreimage=list_filters=true
5697 @end example
5698
5699 @item
5700 Use the CIBoxBlur filter with default options to blur an image:
5701 @example
5702 coreimage=filter=CIBoxBlur@@default
5703 @end example
5704
5705 @item
5706 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5707 its center at 100x100 and a radius of 50 pixels:
5708 @example
5709 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5710 @end example
5711
5712 @item
5713 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5714 given as complete and escaped command-line for Apple's standard bash shell:
5715 @example
5716 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5717 @end example
5718 @end itemize
5719
5720 @section crop
5721
5722 Crop the input video to given dimensions.
5723
5724 It accepts the following parameters:
5725
5726 @table @option
5727 @item w, out_w
5728 The width of the output video. It defaults to @code{iw}.
5729 This expression is evaluated only once during the filter
5730 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5731
5732 @item h, out_h
5733 The height of the output video. It defaults to @code{ih}.
5734 This expression is evaluated only once during the filter
5735 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5736
5737 @item x
5738 The horizontal position, in the input video, of the left edge of the output
5739 video. It defaults to @code{(in_w-out_w)/2}.
5740 This expression is evaluated per-frame.
5741
5742 @item y
5743 The vertical position, in the input video, of the top edge of the output video.
5744 It defaults to @code{(in_h-out_h)/2}.
5745 This expression is evaluated per-frame.
5746
5747 @item keep_aspect
5748 If set to 1 will force the output display aspect ratio
5749 to be the same of the input, by changing the output sample aspect
5750 ratio. It defaults to 0.
5751
5752 @item exact
5753 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
5754 width/height/x/y as specified and will not be rounded to nearest smaller value.
5755 It defaults to 0.
5756 @end table
5757
5758 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5759 expressions containing the following constants:
5760
5761 @table @option
5762 @item x
5763 @item y
5764 The computed values for @var{x} and @var{y}. They are evaluated for
5765 each new frame.
5766
5767 @item in_w
5768 @item in_h
5769 The input width and height.
5770
5771 @item iw
5772 @item ih
5773 These are the same as @var{in_w} and @var{in_h}.
5774
5775 @item out_w
5776 @item out_h
5777 The output (cropped) width and height.
5778
5779 @item ow
5780 @item oh
5781 These are the same as @var{out_w} and @var{out_h}.
5782
5783 @item a
5784 same as @var{iw} / @var{ih}
5785
5786 @item sar
5787 input sample aspect ratio
5788
5789 @item dar
5790 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5791
5792 @item hsub
5793 @item vsub
5794 horizontal and vertical chroma subsample values. For example for the
5795 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5796
5797 @item n
5798 The number of the input frame, starting from 0.
5799
5800 @item pos
5801 the position in the file of the input frame, NAN if unknown
5802
5803 @item t
5804 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5805
5806 @end table
5807
5808 The expression for @var{out_w} may depend on the value of @var{out_h},
5809 and the expression for @var{out_h} may depend on @var{out_w}, but they
5810 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5811 evaluated after @var{out_w} and @var{out_h}.
5812
5813 The @var{x} and @var{y} parameters specify the expressions for the
5814 position of the top-left corner of the output (non-cropped) area. They
5815 are evaluated for each frame. If the evaluated value is not valid, it
5816 is approximated to the nearest valid value.
5817
5818 The expression for @var{x} may depend on @var{y}, and the expression
5819 for @var{y} may depend on @var{x}.
5820
5821 @subsection Examples
5822
5823 @itemize
5824 @item
5825 Crop area with size 100x100 at position (12,34).
5826 @example
5827 crop=100:100:12:34
5828 @end example
5829
5830 Using named options, the example above becomes:
5831 @example
5832 crop=w=100:h=100:x=12:y=34
5833 @end example
5834
5835 @item
5836 Crop the central input area with size 100x100:
5837 @example
5838 crop=100:100
5839 @end example
5840
5841 @item
5842 Crop the central input area with size 2/3 of the input video:
5843 @example
5844 crop=2/3*in_w:2/3*in_h
5845 @end example
5846
5847 @item
5848 Crop the input video central square:
5849 @example
5850 crop=out_w=in_h
5851 crop=in_h
5852 @end example
5853
5854 @item
5855 Delimit the rectangle with the top-left corner placed at position
5856 100:100 and the right-bottom corner corresponding to the right-bottom
5857 corner of the input image.
5858 @example
5859 crop=in_w-100:in_h-100:100:100
5860 @end example
5861
5862 @item
5863 Crop 10 pixels from the left and right borders, and 20 pixels from
5864 the top and bottom borders
5865 @example
5866 crop=in_w-2*10:in_h-2*20
5867 @end example
5868
5869 @item
5870 Keep only the bottom right quarter of the input image:
5871 @example
5872 crop=in_w/2:in_h/2:in_w/2:in_h/2
5873 @end example
5874
5875 @item
5876 Crop height for getting Greek harmony:
5877 @example
5878 crop=in_w:1/PHI*in_w
5879 @end example
5880
5881 @item
5882 Apply trembling effect:
5883 @example
5884 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)
5885 @end example
5886
5887 @item
5888 Apply erratic camera effect depending on timestamp:
5889 @example
5890 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)"
5891 @end example
5892
5893 @item
5894 Set x depending on the value of y:
5895 @example
5896 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5897 @end example
5898 @end itemize
5899
5900 @subsection Commands
5901
5902 This filter supports the following commands:
5903 @table @option
5904 @item w, out_w
5905 @item h, out_h
5906 @item x
5907 @item y
5908 Set width/height of the output video and the horizontal/vertical position
5909 in the input video.
5910 The command accepts the same syntax of the corresponding option.
5911
5912 If the specified expression is not valid, it is kept at its current
5913 value.
5914 @end table
5915
5916 @section cropdetect
5917
5918 Auto-detect the crop size.
5919
5920 It calculates the necessary cropping parameters and prints the
5921 recommended parameters via the logging system. The detected dimensions
5922 correspond to the non-black area of the input video.
5923
5924 It accepts the following parameters:
5925
5926 @table @option
5927
5928 @item limit
5929 Set higher black value threshold, which can be optionally specified
5930 from nothing (0) to everything (255 for 8-bit based formats). An intensity
5931 value greater to the set value is considered non-black. It defaults to 24.
5932 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5933 on the bitdepth of the pixel format.
5934
5935 @item round
5936 The value which the width/height should be divisible by. It defaults to
5937 16. The offset is automatically adjusted to center the video. Use 2 to
5938 get only even dimensions (needed for 4:2:2 video). 16 is best when
5939 encoding to most video codecs.
5940
5941 @item reset_count, reset
5942 Set the counter that determines after how many frames cropdetect will
5943 reset the previously detected largest video area and start over to
5944 detect the current optimal crop area. Default value is 0.
5945
5946 This can be useful when channel logos distort the video area. 0
5947 indicates 'never reset', and returns the largest area encountered during
5948 playback.
5949 @end table
5950
5951 @anchor{curves}
5952 @section curves
5953
5954 Apply color adjustments using curves.
5955
5956 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5957 component (red, green and blue) has its values defined by @var{N} key points
5958 tied from each other using a smooth curve. The x-axis represents the pixel
5959 values from the input frame, and the y-axis the new pixel values to be set for
5960 the output frame.
5961
5962 By default, a component curve is defined by the two points @var{(0;0)} and
5963 @var{(1;1)}. This creates a straight line where each original pixel value is
5964 "adjusted" to its own value, which means no change to the image.
5965
5966 The filter allows you to redefine these two points and add some more. A new
5967 curve (using a natural cubic spline interpolation) will be define to pass
5968 smoothly through all these new coordinates. The new defined points needs to be
5969 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5970 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5971 the vector spaces, the values will be clipped accordingly.
5972
5973 The filter accepts the following options:
5974
5975 @table @option
5976 @item preset
5977 Select one of the available color presets. This option can be used in addition
5978 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5979 options takes priority on the preset values.
5980 Available presets are:
5981 @table @samp
5982 @item none
5983 @item color_negative
5984 @item cross_process
5985 @item darker
5986 @item increase_contrast
5987 @item lighter
5988 @item linear_contrast
5989 @item medium_contrast
5990 @item negative
5991 @item strong_contrast
5992 @item vintage
5993 @end table
5994 Default is @code{none}.
5995 @item master, m
5996 Set the master key points. These points will define a second pass mapping. It
5997 is sometimes called a "luminance" or "value" mapping. It can be used with
5998 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5999 post-processing LUT.
6000 @item red, r
6001 Set the key points for the red component.
6002 @item green, g
6003 Set the key points for the green component.
6004 @item blue, b
6005 Set the key points for the blue component.
6006 @item all
6007 Set the key points for all components (not including master).
6008 Can be used in addition to the other key points component
6009 options. In this case, the unset component(s) will fallback on this
6010 @option{all} setting.
6011 @item psfile
6012 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
6013 @item plot
6014 Save Gnuplot script of the curves in specified file.
6015 @end table
6016
6017 To avoid some filtergraph syntax conflicts, each key points list need to be
6018 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
6019
6020 @subsection Examples
6021
6022 @itemize
6023 @item
6024 Increase slightly the middle level of blue:
6025 @example
6026 curves=blue='0/0 0.5/0.58 1/1'
6027 @end example
6028
6029 @item
6030 Vintage effect:
6031 @example
6032 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'
6033 @end example
6034 Here we obtain the following coordinates for each components:
6035 @table @var
6036 @item red
6037 @code{(0;0.11) (0.42;0.51) (1;0.95)}
6038 @item green
6039 @code{(0;0) (0.50;0.48) (1;1)}
6040 @item blue
6041 @code{(0;0.22) (0.49;0.44) (1;0.80)}
6042 @end table
6043
6044 @item
6045 The previous example can also be achieved with the associated built-in preset:
6046 @example
6047 curves=preset=vintage
6048 @end example
6049
6050 @item
6051 Or simply:
6052 @example
6053 curves=vintage
6054 @end example
6055
6056 @item
6057 Use a Photoshop preset and redefine the points of the green component:
6058 @example
6059 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
6060 @end example
6061
6062 @item
6063 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
6064 and @command{gnuplot}:
6065 @example
6066 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
6067 gnuplot -p /tmp/curves.plt
6068 @end example
6069 @end itemize
6070
6071 @section datascope
6072
6073 Video data analysis filter.
6074
6075 This filter shows hexadecimal pixel values of part of video.
6076
6077 The filter accepts the following options:
6078
6079 @table @option
6080 @item size, s
6081 Set output video size.
6082
6083 @item x
6084 Set x offset from where to pick pixels.
6085
6086 @item y
6087 Set y offset from where to pick pixels.
6088
6089 @item mode
6090 Set scope mode, can be one of the following:
6091 @table @samp
6092 @item mono
6093 Draw hexadecimal pixel values with white color on black background.
6094
6095 @item color
6096 Draw hexadecimal pixel values with input video pixel color on black
6097 background.
6098
6099 @item color2
6100 Draw hexadecimal pixel values on color background picked from input video,
6101 the text color is picked in such way so its always visible.
6102 @end table
6103
6104 @item axis
6105 Draw rows and columns numbers on left and top of video.
6106
6107 @item opacity
6108 Set background opacity.
6109 @end table
6110
6111 @section dctdnoiz
6112
6113 Denoise frames using 2D DCT (frequency domain filtering).
6114
6115 This filter is not designed for real time.
6116
6117 The filter accepts the following options:
6118
6119 @table @option
6120 @item sigma, s
6121 Set the noise sigma constant.
6122
6123 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6124 coefficient (absolute value) below this threshold with be dropped.
6125
6126 If you need a more advanced filtering, see @option{expr}.
6127
6128 Default is @code{0}.
6129
6130 @item overlap
6131 Set number overlapping pixels for each block. Since the filter can be slow, you
6132 may want to reduce this value, at the cost of a less effective filter and the
6133 risk of various artefacts.
6134
6135 If the overlapping value doesn't permit processing the whole input width or
6136 height, a warning will be displayed and according borders won't be denoised.
6137
6138 Default value is @var{blocksize}-1, which is the best possible setting.
6139
6140 @item expr, e
6141 Set the coefficient factor expression.
6142
6143 For each coefficient of a DCT block, this expression will be evaluated as a
6144 multiplier value for the coefficient.
6145
6146 If this is option is set, the @option{sigma} option will be ignored.
6147
6148 The absolute value of the coefficient can be accessed through the @var{c}
6149 variable.
6150
6151 @item n
6152 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6153 @var{blocksize}, which is the width and height of the processed blocks.
6154
6155 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6156 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6157 on the speed processing. Also, a larger block size does not necessarily means a
6158 better de-noising.
6159 @end table
6160
6161 @subsection Examples
6162
6163 Apply a denoise with a @option{sigma} of @code{4.5}:
6164 @example
6165 dctdnoiz=4.5
6166 @end example
6167
6168 The same operation can be achieved using the expression system:
6169 @example
6170 dctdnoiz=e='gte(c, 4.5*3)'
6171 @end example
6172
6173 Violent denoise using a block size of @code{16x16}:
6174 @example
6175 dctdnoiz=15:n=4
6176 @end example
6177
6178 @section deband
6179
6180 Remove banding artifacts from input video.
6181 It works by replacing banded pixels with average value of referenced pixels.
6182
6183 The filter accepts the following options:
6184
6185 @table @option
6186 @item 1thr
6187 @item 2thr
6188 @item 3thr
6189 @item 4thr
6190 Set banding detection threshold for each plane. Default is 0.02.
6191 Valid range is 0.00003 to 0.5.
6192 If difference between current pixel and reference pixel is less than threshold,
6193 it will be considered as banded.
6194
6195 @item range, r
6196 Banding detection range in pixels. Default is 16. If positive, random number
6197 in range 0 to set value will be used. If negative, exact absolute value
6198 will be used.
6199 The range defines square of four pixels around current pixel.
6200
6201 @item direction, d
6202 Set direction in radians from which four pixel will be compared. If positive,
6203 random direction from 0 to set direction will be picked. If negative, exact of
6204 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6205 will pick only pixels on same row and -PI/2 will pick only pixels on same
6206 column.
6207
6208 @item blur, b
6209 If enabled, current pixel is compared with average value of all four
6210 surrounding pixels. The default is enabled. If disabled current pixel is
6211 compared with all four surrounding pixels. The pixel is considered banded
6212 if only all four differences with surrounding pixels are less than threshold.
6213
6214 @item coupling, c
6215 If enabled, current pixel is changed if and only if all pixel components are banded,
6216 e.g. banding detection threshold is triggered for all color components.
6217 The default is disabled.
6218 @end table
6219
6220 @anchor{decimate}
6221 @section decimate
6222
6223 Drop duplicated frames at regular intervals.
6224
6225 The filter accepts the following options:
6226
6227 @table @option
6228 @item cycle
6229 Set the number of frames from which one will be dropped. Setting this to
6230 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6231 Default is @code{5}.
6232
6233 @item dupthresh
6234 Set the threshold for duplicate detection. If the difference metric for a frame
6235 is less than or equal to this value, then it is declared as duplicate. Default
6236 is @code{1.1}
6237
6238 @item scthresh
6239 Set scene change threshold. Default is @code{15}.
6240
6241 @item blockx
6242 @item blocky
6243 Set the size of the x and y-axis blocks used during metric calculations.
6244 Larger blocks give better noise suppression, but also give worse detection of
6245 small movements. Must be a power of two. Default is @code{32}.
6246
6247 @item ppsrc
6248 Mark main input as a pre-processed input and activate clean source input
6249 stream. This allows the input to be pre-processed with various filters to help
6250 the metrics calculation while keeping the frame selection lossless. When set to
6251 @code{1}, the first stream is for the pre-processed input, and the second
6252 stream is the clean source from where the kept frames are chosen. Default is
6253 @code{0}.
6254
6255 @item chroma
6256 Set whether or not chroma is considered in the metric calculations. Default is
6257 @code{1}.
6258 @end table
6259
6260 @section deflate
6261
6262 Apply deflate effect to the video.
6263
6264 This filter replaces the pixel by the local(3x3) average by taking into account
6265 only values lower than the pixel.
6266
6267 It accepts the following options:
6268
6269 @table @option
6270 @item threshold0
6271 @item threshold1
6272 @item threshold2
6273 @item threshold3
6274 Limit the maximum change for each plane, default is 65535.
6275 If 0, plane will remain unchanged.
6276 @end table
6277
6278 @section dejudder
6279
6280 Remove judder produced by partially interlaced telecined content.
6281
6282 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6283 source was partially telecined content then the output of @code{pullup,dejudder}
6284 will have a variable frame rate. May change the recorded frame rate of the
6285 container. Aside from that change, this filter will not affect constant frame
6286 rate video.
6287
6288 The option available in this filter is:
6289 @table @option
6290
6291 @item cycle
6292 Specify the length of the window over which the judder repeats.
6293
6294 Accepts any integer greater than 1. Useful values are:
6295 @table @samp
6296
6297 @item 4
6298 If the original was telecined from 24 to 30 fps (Film to NTSC).
6299
6300 @item 5
6301 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6302
6303 @item 20
6304 If a mixture of the two.
6305 @end table
6306
6307 The default is @samp{4}.
6308 @end table
6309
6310 @section delogo
6311
6312 Suppress a TV station logo by a simple interpolation of the surrounding
6313 pixels. Just set a rectangle covering the logo and watch it disappear
6314 (and sometimes something even uglier appear - your mileage may vary).
6315
6316 It accepts the following parameters:
6317 @table @option
6318
6319 @item x
6320 @item y
6321 Specify the top left corner coordinates of the logo. They must be
6322 specified.
6323
6324 @item w
6325 @item h
6326 Specify the width and height of the logo to clear. They must be
6327 specified.
6328
6329 @item band, t
6330 Specify the thickness of the fuzzy edge of the rectangle (added to
6331 @var{w} and @var{h}). The default value is 1. This option is
6332 deprecated, setting higher values should no longer be necessary and
6333 is not recommended.
6334
6335 @item show
6336 When set to 1, a green rectangle is drawn on the screen to simplify
6337 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6338 The default value is 0.
6339
6340 The rectangle is drawn on the outermost pixels which will be (partly)
6341 replaced with interpolated values. The values of the next pixels
6342 immediately outside this rectangle in each direction will be used to
6343 compute the interpolated pixel values inside the rectangle.
6344
6345 @end table
6346
6347 @subsection Examples
6348
6349 @itemize
6350 @item
6351 Set a rectangle covering the area with top left corner coordinates 0,0
6352 and size 100x77, and a band of size 10:
6353 @example
6354 delogo=x=0:y=0:w=100:h=77:band=10
6355 @end example
6356
6357 @end itemize
6358
6359 @section deshake
6360
6361 Attempt to fix small changes in horizontal and/or vertical shift. This
6362 filter helps remove camera shake from hand-holding a camera, bumping a
6363 tripod, moving on a vehicle, etc.
6364
6365 The filter accepts the following options:
6366
6367 @table @option
6368
6369 @item x
6370 @item y
6371 @item w
6372 @item h
6373 Specify a rectangular area where to limit the search for motion
6374 vectors.
6375 If desired the search for motion vectors can be limited to a
6376 rectangular area of the frame defined by its top left corner, width
6377 and height. These parameters have the same meaning as the drawbox
6378 filter which can be used to visualise the position of the bounding
6379 box.
6380
6381 This is useful when simultaneous movement of subjects within the frame
6382 might be confused for camera motion by the motion vector search.
6383
6384 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6385 then the full frame is used. This allows later options to be set
6386 without specifying the bounding box for the motion vector search.
6387
6388 Default - search the whole frame.
6389
6390 @item rx
6391 @item ry
6392 Specify the maximum extent of movement in x and y directions in the
6393 range 0-64 pixels. Default 16.
6394
6395 @item edge
6396 Specify how to generate pixels to fill blanks at the edge of the
6397 frame. Available values are:
6398 @table @samp
6399 @item blank, 0
6400 Fill zeroes at blank locations
6401 @item original, 1
6402 Original image at blank locations
6403 @item clamp, 2
6404 Extruded edge value at blank locations
6405 @item mirror, 3
6406 Mirrored edge at blank locations
6407 @end table
6408 Default value is @samp{mirror}.
6409
6410 @item blocksize
6411 Specify the blocksize to use for motion search. Range 4-128 pixels,
6412 default 8.
6413
6414 @item contrast
6415 Specify the contrast threshold for blocks. Only blocks with more than
6416 the specified contrast (difference between darkest and lightest
6417 pixels) will be considered. Range 1-255, default 125.
6418
6419 @item search
6420 Specify the search strategy. Available values are:
6421 @table @samp
6422 @item exhaustive, 0
6423 Set exhaustive search
6424 @item less, 1
6425 Set less exhaustive search.
6426 @end table
6427 Default value is @samp{exhaustive}.
6428
6429 @item filename
6430 If set then a detailed log of the motion search is written to the
6431 specified file.
6432
6433 @item opencl
6434 If set to 1, specify using OpenCL capabilities, only available if
6435 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6436
6437 @end table
6438
6439 @section detelecine
6440
6441 Apply an exact inverse of the telecine operation. It requires a predefined
6442 pattern specified using the pattern option which must be the same as that passed
6443 to the telecine filter.
6444
6445 This filter accepts the following options:
6446
6447 @table @option
6448 @item first_field
6449 @table @samp
6450 @item top, t
6451 top field first
6452 @item bottom, b
6453 bottom field first
6454 The default value is @code{top}.
6455 @end table
6456
6457 @item pattern
6458 A string of numbers representing the pulldown pattern you wish to apply.
6459 The default value is @code{23}.
6460
6461 @item start_frame
6462 A number representing position of the first frame with respect to the telecine
6463 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6464 @end table
6465
6466 @section dilation
6467
6468 Apply dilation effect to the video.
6469
6470 This filter replaces the pixel by the local(3x3) maximum.
6471
6472 It accepts the following options:
6473
6474 @table @option
6475 @item threshold0
6476 @item threshold1
6477 @item threshold2
6478 @item threshold3
6479 Limit the maximum change for each plane, default is 65535.
6480 If 0, plane will remain unchanged.
6481
6482 @item coordinates
6483 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6484 pixels are used.
6485
6486 Flags to local 3x3 coordinates maps like this:
6487
6488     1 2 3
6489     4   5
6490     6 7 8
6491 @end table
6492
6493 @section displace
6494
6495 Displace pixels as indicated by second and third input stream.
6496
6497 It takes three input streams and outputs one stream, the first input is the
6498 source, and second and third input are displacement maps.
6499
6500 The second input specifies how much to displace pixels along the
6501 x-axis, while the third input specifies how much to displace pixels
6502 along the y-axis.
6503 If one of displacement map streams terminates, last frame from that
6504 displacement map will be used.
6505
6506 Note that once generated, displacements maps can be reused over and over again.
6507
6508 A description of the accepted options follows.
6509
6510 @table @option
6511 @item edge
6512 Set displace behavior for pixels that are out of range.
6513
6514 Available values are:
6515 @table @samp
6516 @item blank
6517 Missing pixels are replaced by black pixels.
6518
6519 @item smear
6520 Adjacent pixels will spread out to replace missing pixels.
6521
6522 @item wrap
6523 Out of range pixels are wrapped so they point to pixels of other side.
6524 @end table
6525 Default is @samp{smear}.
6526
6527 @end table
6528
6529 @subsection Examples
6530
6531 @itemize
6532 @item
6533 Add ripple effect to rgb input of video size hd720:
6534 @example
6535 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
6536 @end example
6537
6538 @item
6539 Add wave effect to rgb input of video size hd720:
6540 @example
6541 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
6542 @end example
6543 @end itemize
6544
6545 @section drawbox
6546
6547 Draw a colored box on the input image.
6548
6549 It accepts the following parameters:
6550
6551 @table @option
6552 @item x
6553 @item y
6554 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6555
6556 @item width, w
6557 @item height, h
6558 The expressions which specify the width and height of the box; if 0 they are interpreted as
6559 the input width and height. It defaults to 0.
6560
6561 @item color, c
6562 Specify the color of the box to write. For the general syntax of this option,
6563 check the "Color" section in the ffmpeg-utils manual. If the special
6564 value @code{invert} is used, the box edge color is the same as the
6565 video with inverted luma.
6566
6567 @item thickness, t
6568 The expression which sets the thickness of the box edge. Default value is @code{3}.
6569
6570 See below for the list of accepted constants.
6571 @end table
6572
6573 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6574 following constants:
6575
6576 @table @option
6577 @item dar
6578 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6579
6580 @item hsub
6581 @item vsub
6582 horizontal and vertical chroma subsample values. For example for the
6583 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6584
6585 @item in_h, ih
6586 @item in_w, iw
6587 The input width and height.
6588
6589 @item sar
6590 The input sample aspect ratio.
6591
6592 @item x
6593 @item y
6594 The x and y offset coordinates where the box is drawn.
6595
6596 @item w
6597 @item h
6598 The width and height of the drawn box.
6599
6600 @item t
6601 The thickness of the drawn box.
6602
6603 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6604 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6605
6606 @end table
6607
6608 @subsection Examples
6609
6610 @itemize
6611 @item
6612 Draw a black box around the edge of the input image:
6613 @example
6614 drawbox
6615 @end example
6616
6617 @item
6618 Draw a box with color red and an opacity of 50%:
6619 @example
6620 drawbox=10:20:200:60:red@@0.5
6621 @end example
6622
6623 The previous example can be specified as:
6624 @example
6625 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6626 @end example
6627
6628 @item
6629 Fill the box with pink color:
6630 @example
6631 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6632 @end example
6633
6634 @item
6635 Draw a 2-pixel red 2.40:1 mask:
6636 @example
6637 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
6638 @end example
6639 @end itemize
6640
6641 @section drawgrid
6642
6643 Draw a grid on the input image.
6644
6645 It accepts the following parameters:
6646
6647 @table @option
6648 @item x
6649 @item y
6650 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6651
6652 @item width, w
6653 @item height, h
6654 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6655 input width and height, respectively, minus @code{thickness}, so image gets
6656 framed. Default to 0.
6657
6658 @item color, c
6659 Specify the color of the grid. For the general syntax of this option,
6660 check the "Color" section in the ffmpeg-utils manual. If the special
6661 value @code{invert} is used, the grid color is the same as the
6662 video with inverted luma.
6663
6664 @item thickness, t
6665 The expression which sets the thickness of the grid line. Default value is @code{1}.
6666
6667 See below for the list of accepted constants.
6668 @end table
6669
6670 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6671 following constants:
6672
6673 @table @option
6674 @item dar
6675 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6676
6677 @item hsub
6678 @item vsub
6679 horizontal and vertical chroma subsample values. For example for the
6680 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6681
6682 @item in_h, ih
6683 @item in_w, iw
6684 The input grid cell width and height.
6685
6686 @item sar
6687 The input sample aspect ratio.
6688
6689 @item x
6690 @item y
6691 The x and y coordinates of some point of grid intersection (meant to configure offset).
6692
6693 @item w
6694 @item h
6695 The width and height of the drawn cell.
6696
6697 @item t
6698 The thickness of the drawn cell.
6699
6700 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6701 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6702
6703 @end table
6704
6705 @subsection Examples
6706
6707 @itemize
6708 @item
6709 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6710 @example
6711 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6712 @end example
6713
6714 @item
6715 Draw a white 3x3 grid with an opacity of 50%:
6716 @example
6717 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6718 @end example
6719 @end itemize
6720
6721 @anchor{drawtext}
6722 @section drawtext
6723
6724 Draw a text string or text from a specified file on top of a video, using the
6725 libfreetype library.
6726
6727 To enable compilation of this filter, you need to configure FFmpeg with
6728 @code{--enable-libfreetype}.
6729 To enable default font fallback and the @var{font} option you need to
6730 configure FFmpeg with @code{--enable-libfontconfig}.
6731 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6732 @code{--enable-libfribidi}.
6733
6734 @subsection Syntax
6735
6736 It accepts the following parameters:
6737
6738 @table @option
6739
6740 @item box
6741 Used to draw a box around text using the background color.
6742 The value must be either 1 (enable) or 0 (disable).
6743 The default value of @var{box} is 0.
6744
6745 @item boxborderw
6746 Set the width of the border to be drawn around the box using @var{boxcolor}.
6747 The default value of @var{boxborderw} is 0.
6748
6749 @item boxcolor
6750 The color to be used for drawing box around text. For the syntax of this
6751 option, check the "Color" section in the ffmpeg-utils manual.
6752
6753 The default value of @var{boxcolor} is "white".
6754
6755 @item line_spacing
6756 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
6757 The default value of @var{line_spacing} is 0.
6758
6759 @item borderw
6760 Set the width of the border to be drawn around the text using @var{bordercolor}.
6761 The default value of @var{borderw} is 0.
6762
6763 @item bordercolor
6764 Set the color to be used for drawing border around text. For the syntax of this
6765 option, check the "Color" section in the ffmpeg-utils manual.
6766
6767 The default value of @var{bordercolor} is "black".
6768
6769 @item expansion
6770 Select how the @var{text} is expanded. Can be either @code{none},
6771 @code{strftime} (deprecated) or
6772 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6773 below for details.
6774
6775 @item basetime
6776 Set a start time for the count. Value is in microseconds. Only applied
6777 in the deprecated strftime expansion mode. To emulate in normal expansion
6778 mode use the @code{pts} function, supplying the start time (in seconds)
6779 as the second argument.
6780
6781 @item fix_bounds
6782 If true, check and fix text coords to avoid clipping.
6783
6784 @item fontcolor
6785 The color to be used for drawing fonts. For the syntax of this option, check
6786 the "Color" section in the ffmpeg-utils manual.
6787
6788 The default value of @var{fontcolor} is "black".
6789
6790 @item fontcolor_expr
6791 String which is expanded the same way as @var{text} to obtain dynamic
6792 @var{fontcolor} value. By default this option has empty value and is not
6793 processed. When this option is set, it overrides @var{fontcolor} option.
6794
6795 @item font
6796 The font family to be used for drawing text. By default Sans.
6797
6798 @item fontfile
6799 The font file to be used for drawing text. The path must be included.
6800 This parameter is mandatory if the fontconfig support is disabled.
6801
6802 @item alpha
6803 Draw the text applying alpha blending. The value can
6804 be a number between 0.0 and 1.0.
6805 The expression accepts the same variables @var{x, y} as well.
6806 The default value is 1.
6807 Please see @var{fontcolor_expr}.
6808
6809 @item fontsize
6810 The font size to be used for drawing text.
6811 The default value of @var{fontsize} is 16.
6812
6813 @item text_shaping
6814 If set to 1, attempt to shape the text (for example, reverse the order of
6815 right-to-left text and join Arabic characters) before drawing it.
6816 Otherwise, just draw the text exactly as given.
6817 By default 1 (if supported).
6818
6819 @item ft_load_flags
6820 The flags to be used for loading the fonts.
6821
6822 The flags map the corresponding flags supported by libfreetype, and are
6823 a combination of the following values:
6824 @table @var
6825 @item default
6826 @item no_scale
6827 @item no_hinting
6828 @item render
6829 @item no_bitmap
6830 @item vertical_layout
6831 @item force_autohint
6832 @item crop_bitmap
6833 @item pedantic
6834 @item ignore_global_advance_width
6835 @item no_recurse
6836 @item ignore_transform
6837 @item monochrome
6838 @item linear_design
6839 @item no_autohint
6840 @end table
6841
6842 Default value is "default".
6843
6844 For more information consult the documentation for the FT_LOAD_*
6845 libfreetype flags.
6846
6847 @item shadowcolor
6848 The color to be used for drawing a shadow behind the drawn text. For the
6849 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6850
6851 The default value of @var{shadowcolor} is "black".
6852
6853 @item shadowx
6854 @item shadowy
6855 The x and y offsets for the text shadow position with respect to the
6856 position of the text. They can be either positive or negative
6857 values. The default value for both is "0".
6858
6859 @item start_number
6860 The starting frame number for the n/frame_num variable. The default value
6861 is "0".
6862
6863 @item tabsize
6864 The size in number of spaces to use for rendering the tab.
6865 Default value is 4.
6866
6867 @item timecode
6868 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6869 format. It can be used with or without text parameter. @var{timecode_rate}
6870 option must be specified.
6871
6872 @item timecode_rate, rate, r
6873 Set the timecode frame rate (timecode only).
6874
6875 @item tc24hmax
6876 If set to 1, the output of the timecode option will wrap around at 24 hours.
6877 Default is 0 (disabled).
6878
6879 @item text
6880 The text string to be drawn. The text must be a sequence of UTF-8
6881 encoded characters.
6882 This parameter is mandatory if no file is specified with the parameter
6883 @var{textfile}.
6884
6885 @item textfile
6886 A text file containing text to be drawn. The text must be a sequence
6887 of UTF-8 encoded characters.
6888
6889 This parameter is mandatory if no text string is specified with the
6890 parameter @var{text}.
6891
6892 If both @var{text} and @var{textfile} are specified, an error is thrown.
6893
6894 @item reload
6895 If set to 1, the @var{textfile} will be reloaded before each frame.
6896 Be sure to update it atomically, or it may be read partially, or even fail.
6897
6898 @item x
6899 @item y
6900 The expressions which specify the offsets where text will be drawn
6901 within the video frame. They are relative to the top/left border of the
6902 output image.
6903
6904 The default value of @var{x} and @var{y} is "0".
6905
6906 See below for the list of accepted constants and functions.
6907 @end table
6908
6909 The parameters for @var{x} and @var{y} are expressions containing the
6910 following constants and functions:
6911
6912 @table @option
6913 @item dar
6914 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6915
6916 @item hsub
6917 @item vsub
6918 horizontal and vertical chroma subsample values. For example for the
6919 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6920
6921 @item line_h, lh
6922 the height of each text line
6923
6924 @item main_h, h, H
6925 the input height
6926
6927 @item main_w, w, W
6928 the input width
6929
6930 @item max_glyph_a, ascent
6931 the maximum distance from the baseline to the highest/upper grid
6932 coordinate used to place a glyph outline point, for all the rendered
6933 glyphs.
6934 It is a positive value, due to the grid's orientation with the Y axis
6935 upwards.
6936
6937 @item max_glyph_d, descent
6938 the maximum distance from the baseline to the lowest grid coordinate
6939 used to place a glyph outline point, for all the rendered glyphs.
6940 This is a negative value, due to the grid's orientation, with the Y axis
6941 upwards.
6942
6943 @item max_glyph_h
6944 maximum glyph height, that is the maximum height for all the glyphs
6945 contained in the rendered text, it is equivalent to @var{ascent} -
6946 @var{descent}.
6947
6948 @item max_glyph_w
6949 maximum glyph width, that is the maximum width for all the glyphs
6950 contained in the rendered text
6951
6952 @item n
6953 the number of input frame, starting from 0
6954
6955 @item rand(min, max)
6956 return a random number included between @var{min} and @var{max}
6957
6958 @item sar
6959 The input sample aspect ratio.
6960
6961 @item t
6962 timestamp expressed in seconds, NAN if the input timestamp is unknown
6963
6964 @item text_h, th
6965 the height of the rendered text
6966
6967 @item text_w, tw
6968 the width of the rendered text
6969
6970 @item x
6971 @item y
6972 the x and y offset coordinates where the text is drawn.
6973
6974 These parameters allow the @var{x} and @var{y} expressions to refer
6975 each other, so you can for example specify @code{y=x/dar}.
6976 @end table
6977
6978 @anchor{drawtext_expansion}
6979 @subsection Text expansion
6980
6981 If @option{expansion} is set to @code{strftime},
6982 the filter recognizes strftime() sequences in the provided text and
6983 expands them accordingly. Check the documentation of strftime(). This
6984 feature is deprecated.
6985
6986 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6987
6988 If @option{expansion} is set to @code{normal} (which is the default),
6989 the following expansion mechanism is used.
6990
6991 The backslash character @samp{\}, followed by any character, always expands to
6992 the second character.
6993
6994 Sequences of the form @code{%@{...@}} are expanded. The text between the
6995 braces is a function name, possibly followed by arguments separated by ':'.
6996 If the arguments contain special characters or delimiters (':' or '@}'),
6997 they should be escaped.
6998
6999 Note that they probably must also be escaped as the value for the
7000 @option{text} option in the filter argument string and as the filter
7001 argument in the filtergraph description, and possibly also for the shell,
7002 that makes up to four levels of escaping; using a text file avoids these
7003 problems.
7004
7005 The following functions are available:
7006
7007 @table @command
7008
7009 @item expr, e
7010 The expression evaluation result.
7011
7012 It must take one argument specifying the expression to be evaluated,
7013 which accepts the same constants and functions as the @var{x} and
7014 @var{y} values. Note that not all constants should be used, for
7015 example the text size is not known when evaluating the expression, so
7016 the constants @var{text_w} and @var{text_h} will have an undefined
7017 value.
7018
7019 @item expr_int_format, eif
7020 Evaluate the expression's value and output as formatted integer.
7021
7022 The first argument is the expression to be evaluated, just as for the @var{expr} function.
7023 The second argument specifies the output format. Allowed values are @samp{x},
7024 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
7025 @code{printf} function.
7026 The third parameter is optional and sets the number of positions taken by the output.
7027 It can be used to add padding with zeros from the left.
7028
7029 @item gmtime
7030 The time at which the filter is running, expressed in UTC.
7031 It can accept an argument: a strftime() format string.
7032
7033 @item localtime
7034 The time at which the filter is running, expressed in the local time zone.
7035 It can accept an argument: a strftime() format string.
7036
7037 @item metadata
7038 Frame metadata. Takes one or two arguments.
7039
7040 The first argument is mandatory and specifies the metadata key.
7041
7042 The second argument is optional and specifies a default value, used when the
7043 metadata key is not found or empty.
7044
7045 @item n, frame_num
7046 The frame number, starting from 0.
7047
7048 @item pict_type
7049 A 1 character description of the current picture type.
7050
7051 @item pts
7052 The timestamp of the current frame.
7053 It can take up to three arguments.
7054
7055 The first argument is the format of the timestamp; it defaults to @code{flt}
7056 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
7057 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
7058 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
7059 @code{localtime} stands for the timestamp of the frame formatted as
7060 local time zone time.
7061
7062 The second argument is an offset added to the timestamp.
7063
7064 If the format is set to @code{localtime} or @code{gmtime},
7065 a third argument may be supplied: a strftime() format string.
7066 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
7067 @end table
7068
7069 @subsection Examples
7070
7071 @itemize
7072 @item
7073 Draw "Test Text" with font FreeSerif, using the default values for the
7074 optional parameters.
7075
7076 @example
7077 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
7078 @end example
7079
7080 @item
7081 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
7082 and y=50 (counting from the top-left corner of the screen), text is
7083 yellow with a red box around it. Both the text and the box have an
7084 opacity of 20%.
7085
7086 @example
7087 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
7088           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
7089 @end example
7090
7091 Note that the double quotes are not necessary if spaces are not used
7092 within the parameter list.
7093
7094 @item
7095 Show the text at the center of the video frame:
7096 @example
7097 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
7098 @end example
7099
7100 @item
7101 Show the text at a random position, switching to a new position every 30 seconds:
7102 @example
7103 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)"
7104 @end example
7105
7106 @item
7107 Show a text line sliding from right to left in the last row of the video
7108 frame. The file @file{LONG_LINE} is assumed to contain a single line
7109 with no newlines.
7110 @example
7111 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
7112 @end example
7113
7114 @item
7115 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
7116 @example
7117 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
7118 @end example
7119
7120 @item
7121 Draw a single green letter "g", at the center of the input video.
7122 The glyph baseline is placed at half screen height.
7123 @example
7124 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7125 @end example
7126
7127 @item
7128 Show text for 1 second every 3 seconds:
7129 @example
7130 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7131 @end example
7132
7133 @item
7134 Use fontconfig to set the font. Note that the colons need to be escaped.
7135 @example
7136 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7137 @end example
7138
7139 @item
7140 Print the date of a real-time encoding (see strftime(3)):
7141 @example
7142 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7143 @end example
7144
7145 @item
7146 Show text fading in and out (appearing/disappearing):
7147 @example
7148 #!/bin/sh
7149 DS=1.0 # display start
7150 DE=10.0 # display end
7151 FID=1.5 # fade in duration
7152 FOD=5 # fade out duration
7153 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 @}"
7154 @end example
7155
7156 @item
7157 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
7158 and the @option{fontsize} value are included in the @option{y} offset.
7159 @example
7160 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
7161 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
7162 @end example
7163
7164 @end itemize
7165
7166 For more information about libfreetype, check:
7167 @url{http://www.freetype.org/}.
7168
7169 For more information about fontconfig, check:
7170 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7171
7172 For more information about libfribidi, check:
7173 @url{http://fribidi.org/}.
7174
7175 @section edgedetect
7176
7177 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7178
7179 The filter accepts the following options:
7180
7181 @table @option
7182 @item low
7183 @item high
7184 Set low and high threshold values used by the Canny thresholding
7185 algorithm.
7186
7187 The high threshold selects the "strong" edge pixels, which are then
7188 connected through 8-connectivity with the "weak" edge pixels selected
7189 by the low threshold.
7190
7191 @var{low} and @var{high} threshold values must be chosen in the range
7192 [0,1], and @var{low} should be lesser or equal to @var{high}.
7193
7194 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7195 is @code{50/255}.
7196
7197 @item mode
7198 Define the drawing mode.
7199
7200 @table @samp
7201 @item wires
7202 Draw white/gray wires on black background.
7203
7204 @item colormix
7205 Mix the colors to create a paint/cartoon effect.
7206 @end table
7207
7208 Default value is @var{wires}.
7209 @end table
7210
7211 @subsection Examples
7212
7213 @itemize
7214 @item
7215 Standard edge detection with custom values for the hysteresis thresholding:
7216 @example
7217 edgedetect=low=0.1:high=0.4
7218 @end example
7219
7220 @item
7221 Painting effect without thresholding:
7222 @example
7223 edgedetect=mode=colormix:high=0
7224 @end example
7225 @end itemize
7226
7227 @section eq
7228 Set brightness, contrast, saturation and approximate gamma adjustment.
7229
7230 The filter accepts the following options:
7231
7232 @table @option
7233 @item contrast
7234 Set the contrast expression. The value must be a float value in range
7235 @code{-2.0} to @code{2.0}. The default value is "1".
7236
7237 @item brightness
7238 Set the brightness expression. The value must be a float value in
7239 range @code{-1.0} to @code{1.0}. The default value is "0".
7240
7241 @item saturation
7242 Set the saturation expression. The value must be a float in
7243 range @code{0.0} to @code{3.0}. The default value is "1".
7244
7245 @item gamma
7246 Set the gamma expression. The value must be a float in range
7247 @code{0.1} to @code{10.0}.  The default value is "1".
7248
7249 @item gamma_r
7250 Set the gamma expression for red. The value must be a float in
7251 range @code{0.1} to @code{10.0}. The default value is "1".
7252
7253 @item gamma_g
7254 Set the gamma expression for green. The value must be a float in range
7255 @code{0.1} to @code{10.0}. The default value is "1".
7256
7257 @item gamma_b
7258 Set the gamma expression for blue. The value must be a float in range
7259 @code{0.1} to @code{10.0}. The default value is "1".
7260
7261 @item gamma_weight
7262 Set the gamma weight expression. It can be used to reduce the effect
7263 of a high gamma value on bright image areas, e.g. keep them from
7264 getting overamplified and just plain white. The value must be a float
7265 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7266 gamma correction all the way down while @code{1.0} leaves it at its
7267 full strength. Default is "1".
7268
7269 @item eval
7270 Set when the expressions for brightness, contrast, saturation and
7271 gamma expressions are evaluated.
7272
7273 It accepts the following values:
7274 @table @samp
7275 @item init
7276 only evaluate expressions once during the filter initialization or
7277 when a command is processed
7278
7279 @item frame
7280 evaluate expressions for each incoming frame
7281 @end table
7282
7283 Default value is @samp{init}.
7284 @end table
7285
7286 The expressions accept the following parameters:
7287 @table @option
7288 @item n
7289 frame count of the input frame starting from 0
7290
7291 @item pos
7292 byte position of the corresponding packet in the input file, NAN if
7293 unspecified
7294
7295 @item r
7296 frame rate of the input video, NAN if the input frame rate is unknown
7297
7298 @item t
7299 timestamp expressed in seconds, NAN if the input timestamp is unknown
7300 @end table
7301
7302 @subsection Commands
7303 The filter supports the following commands:
7304
7305 @table @option
7306 @item contrast
7307 Set the contrast expression.
7308
7309 @item brightness
7310 Set the brightness expression.
7311
7312 @item saturation
7313 Set the saturation expression.
7314
7315 @item gamma
7316 Set the gamma expression.
7317
7318 @item gamma_r
7319 Set the gamma_r expression.
7320
7321 @item gamma_g
7322 Set gamma_g expression.
7323
7324 @item gamma_b
7325 Set gamma_b expression.
7326
7327 @item gamma_weight
7328 Set gamma_weight expression.
7329
7330 The command accepts the same syntax of the corresponding option.
7331
7332 If the specified expression is not valid, it is kept at its current
7333 value.
7334
7335 @end table
7336
7337 @section erosion
7338
7339 Apply erosion effect to the video.
7340
7341 This filter replaces the pixel by the local(3x3) minimum.
7342
7343 It accepts the following options:
7344
7345 @table @option
7346 @item threshold0
7347 @item threshold1
7348 @item threshold2
7349 @item threshold3
7350 Limit the maximum change for each plane, default is 65535.
7351 If 0, plane will remain unchanged.
7352
7353 @item coordinates
7354 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7355 pixels are used.
7356
7357 Flags to local 3x3 coordinates maps like this:
7358
7359     1 2 3
7360     4   5
7361     6 7 8
7362 @end table
7363
7364 @section extractplanes
7365
7366 Extract color channel components from input video stream into
7367 separate grayscale video streams.
7368
7369 The filter accepts the following option:
7370
7371 @table @option
7372 @item planes
7373 Set plane(s) to extract.
7374
7375 Available values for planes are:
7376 @table @samp
7377 @item y
7378 @item u
7379 @item v
7380 @item a
7381 @item r
7382 @item g
7383 @item b
7384 @end table
7385
7386 Choosing planes not available in the input will result in an error.
7387 That means you cannot select @code{r}, @code{g}, @code{b} planes
7388 with @code{y}, @code{u}, @code{v} planes at same time.
7389 @end table
7390
7391 @subsection Examples
7392
7393 @itemize
7394 @item
7395 Extract luma, u and v color channel component from input video frame
7396 into 3 grayscale outputs:
7397 @example
7398 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
7399 @end example
7400 @end itemize
7401
7402 @section elbg
7403
7404 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7405
7406 For each input image, the filter will compute the optimal mapping from
7407 the input to the output given the codebook length, that is the number
7408 of distinct output colors.
7409
7410 This filter accepts the following options.
7411
7412 @table @option
7413 @item codebook_length, l
7414 Set codebook length. The value must be a positive integer, and
7415 represents the number of distinct output colors. Default value is 256.
7416
7417 @item nb_steps, n
7418 Set the maximum number of iterations to apply for computing the optimal
7419 mapping. The higher the value the better the result and the higher the
7420 computation time. Default value is 1.
7421
7422 @item seed, s
7423 Set a random seed, must be an integer included between 0 and
7424 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7425 will try to use a good random seed on a best effort basis.
7426
7427 @item pal8
7428 Set pal8 output pixel format. This option does not work with codebook
7429 length greater than 256.
7430 @end table
7431
7432 @section fade
7433
7434 Apply a fade-in/out effect to the input video.
7435
7436 It accepts the following parameters:
7437
7438 @table @option
7439 @item type, t
7440 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7441 effect.
7442 Default is @code{in}.
7443
7444 @item start_frame, s
7445 Specify the number of the frame to start applying the fade
7446 effect at. Default is 0.
7447
7448 @item nb_frames, n
7449 The number of frames that the fade effect lasts. At the end of the
7450 fade-in effect, the output video will have the same intensity as the input video.
7451 At the end of the fade-out transition, the output video will be filled with the
7452 selected @option{color}.
7453 Default is 25.
7454
7455 @item alpha
7456 If set to 1, fade only alpha channel, if one exists on the input.
7457 Default value is 0.
7458
7459 @item start_time, st
7460 Specify the timestamp (in seconds) of the frame to start to apply the fade
7461 effect. If both start_frame and start_time are specified, the fade will start at
7462 whichever comes last.  Default is 0.
7463
7464 @item duration, d
7465 The number of seconds for which the fade effect has to last. At the end of the
7466 fade-in effect the output video will have the same intensity as the input video,
7467 at the end of the fade-out transition the output video will be filled with the
7468 selected @option{color}.
7469 If both duration and nb_frames are specified, duration is used. Default is 0
7470 (nb_frames is used by default).
7471
7472 @item color, c
7473 Specify the color of the fade. Default is "black".
7474 @end table
7475
7476 @subsection Examples
7477
7478 @itemize
7479 @item
7480 Fade in the first 30 frames of video:
7481 @example
7482 fade=in:0:30
7483 @end example
7484
7485 The command above is equivalent to:
7486 @example
7487 fade=t=in:s=0:n=30
7488 @end example
7489
7490 @item
7491 Fade out the last 45 frames of a 200-frame video:
7492 @example
7493 fade=out:155:45
7494 fade=type=out:start_frame=155:nb_frames=45
7495 @end example
7496
7497 @item
7498 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7499 @example
7500 fade=in:0:25, fade=out:975:25
7501 @end example
7502
7503 @item
7504 Make the first 5 frames yellow, then fade in from frame 5-24:
7505 @example
7506 fade=in:5:20:color=yellow
7507 @end example
7508
7509 @item
7510 Fade in alpha over first 25 frames of video:
7511 @example
7512 fade=in:0:25:alpha=1
7513 @end example
7514
7515 @item
7516 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7517 @example
7518 fade=t=in:st=5.5:d=0.5
7519 @end example
7520
7521 @end itemize
7522
7523 @section fftfilt
7524 Apply arbitrary expressions to samples in frequency domain
7525
7526 @table @option
7527 @item dc_Y
7528 Adjust the dc value (gain) of the luma plane of the image. The filter
7529 accepts an integer value in range @code{0} to @code{1000}. The default
7530 value is set to @code{0}.
7531
7532 @item dc_U
7533 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7534 filter accepts an integer value in range @code{0} to @code{1000}. The
7535 default value is set to @code{0}.
7536
7537 @item dc_V
7538 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7539 filter accepts an integer value in range @code{0} to @code{1000}. The
7540 default value is set to @code{0}.
7541
7542 @item weight_Y
7543 Set the frequency domain weight expression for the luma plane.
7544
7545 @item weight_U
7546 Set the frequency domain weight expression for the 1st chroma plane.
7547
7548 @item weight_V
7549 Set the frequency domain weight expression for the 2nd chroma plane.
7550
7551 The filter accepts the following variables:
7552 @item X
7553 @item Y
7554 The coordinates of the current sample.
7555
7556 @item W
7557 @item H
7558 The width and height of the image.
7559 @end table
7560
7561 @subsection Examples
7562
7563 @itemize
7564 @item
7565 High-pass:
7566 @example
7567 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7568 @end example
7569
7570 @item
7571 Low-pass:
7572 @example
7573 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7574 @end example
7575
7576 @item
7577 Sharpen:
7578 @example
7579 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7580 @end example
7581
7582 @item
7583 Blur:
7584 @example
7585 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7586 @end example
7587
7588 @end itemize
7589
7590 @section field
7591
7592 Extract a single field from an interlaced image using stride
7593 arithmetic to avoid wasting CPU time. The output frames are marked as
7594 non-interlaced.
7595
7596 The filter accepts the following options:
7597
7598 @table @option
7599 @item type
7600 Specify whether to extract the top (if the value is @code{0} or
7601 @code{top}) or the bottom field (if the value is @code{1} or
7602 @code{bottom}).
7603 @end table
7604
7605 @section fieldhint
7606
7607 Create new frames by copying the top and bottom fields from surrounding frames
7608 supplied as numbers by the hint file.
7609
7610 @table @option
7611 @item hint
7612 Set file containing hints: absolute/relative frame numbers.
7613
7614 There must be one line for each frame in a clip. Each line must contain two
7615 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7616 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7617 is current frame number for @code{absolute} mode or out of [-1, 1] range
7618 for @code{relative} mode. First number tells from which frame to pick up top
7619 field and second number tells from which frame to pick up bottom field.
7620
7621 If optionally followed by @code{+} output frame will be marked as interlaced,
7622 else if followed by @code{-} output frame will be marked as progressive, else
7623 it will be marked same as input frame.
7624 If line starts with @code{#} or @code{;} that line is skipped.
7625
7626 @item mode
7627 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7628 @end table
7629
7630 Example of first several lines of @code{hint} file for @code{relative} mode:
7631 @example
7632 0,0 - # first frame
7633 1,0 - # second frame, use third's frame top field and second's frame bottom field
7634 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7635 1,0 -
7636 0,0 -
7637 0,0 -
7638 1,0 -
7639 1,0 -
7640 1,0 -
7641 0,0 -
7642 0,0 -
7643 1,0 -
7644 1,0 -
7645 1,0 -
7646 0,0 -
7647 @end example
7648
7649 @section fieldmatch
7650
7651 Field matching filter for inverse telecine. It is meant to reconstruct the
7652 progressive frames from a telecined stream. The filter does not drop duplicated
7653 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7654 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7655
7656 The separation of the field matching and the decimation is notably motivated by
7657 the possibility of inserting a de-interlacing filter fallback between the two.
7658 If the source has mixed telecined and real interlaced content,
7659 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7660 But these remaining combed frames will be marked as interlaced, and thus can be
7661 de-interlaced by a later filter such as @ref{yadif} before decimation.
7662
7663 In addition to the various configuration options, @code{fieldmatch} can take an
7664 optional second stream, activated through the @option{ppsrc} option. If
7665 enabled, the frames reconstruction will be based on the fields and frames from
7666 this second stream. This allows the first input to be pre-processed in order to
7667 help the various algorithms of the filter, while keeping the output lossless
7668 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7669 or brightness/contrast adjustments can help.
7670
7671 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7672 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7673 which @code{fieldmatch} is based on. While the semantic and usage are very
7674 close, some behaviour and options names can differ.
7675
7676 The @ref{decimate} filter currently only works for constant frame rate input.
7677 If your input has mixed telecined (30fps) and progressive content with a lower
7678 framerate like 24fps use the following filterchain to produce the necessary cfr
7679 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7680
7681 The filter accepts the following options:
7682
7683 @table @option
7684 @item order
7685 Specify the assumed field order of the input stream. Available values are:
7686
7687 @table @samp
7688 @item auto
7689 Auto detect parity (use FFmpeg's internal parity value).
7690 @item bff
7691 Assume bottom field first.
7692 @item tff
7693 Assume top field first.
7694 @end table
7695
7696 Note that it is sometimes recommended not to trust the parity announced by the
7697 stream.
7698
7699 Default value is @var{auto}.
7700
7701 @item mode
7702 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7703 sense that it won't risk creating jerkiness due to duplicate frames when
7704 possible, but if there are bad edits or blended fields it will end up
7705 outputting combed frames when a good match might actually exist. On the other
7706 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7707 but will almost always find a good frame if there is one. The other values are
7708 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7709 jerkiness and creating duplicate frames versus finding good matches in sections
7710 with bad edits, orphaned fields, blended fields, etc.
7711
7712 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7713
7714 Available values are:
7715
7716 @table @samp
7717 @item pc
7718 2-way matching (p/c)
7719 @item pc_n
7720 2-way matching, and trying 3rd match if still combed (p/c + n)
7721 @item pc_u
7722 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7723 @item pc_n_ub
7724 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7725 still combed (p/c + n + u/b)
7726 @item pcn
7727 3-way matching (p/c/n)
7728 @item pcn_ub
7729 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7730 detected as combed (p/c/n + u/b)
7731 @end table
7732
7733 The parenthesis at the end indicate the matches that would be used for that
7734 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7735 @var{top}).
7736
7737 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7738 the slowest.
7739
7740 Default value is @var{pc_n}.
7741
7742 @item ppsrc
7743 Mark the main input stream as a pre-processed input, and enable the secondary
7744 input stream as the clean source to pick the fields from. See the filter
7745 introduction for more details. It is similar to the @option{clip2} feature from
7746 VFM/TFM.
7747
7748 Default value is @code{0} (disabled).
7749
7750 @item field
7751 Set the field to match from. It is recommended to set this to the same value as
7752 @option{order} unless you experience matching failures with that setting. In
7753 certain circumstances changing the field that is used to match from can have a
7754 large impact on matching performance. Available values are:
7755
7756 @table @samp
7757 @item auto
7758 Automatic (same value as @option{order}).
7759 @item bottom
7760 Match from the bottom field.
7761 @item top
7762 Match from the top field.
7763 @end table
7764
7765 Default value is @var{auto}.
7766
7767 @item mchroma
7768 Set whether or not chroma is included during the match comparisons. In most
7769 cases it is recommended to leave this enabled. You should set this to @code{0}
7770 only if your clip has bad chroma problems such as heavy rainbowing or other
7771 artifacts. Setting this to @code{0} could also be used to speed things up at
7772 the cost of some accuracy.
7773
7774 Default value is @code{1}.
7775
7776 @item y0
7777 @item y1
7778 These define an exclusion band which excludes the lines between @option{y0} and
7779 @option{y1} from being included in the field matching decision. An exclusion
7780 band can be used to ignore subtitles, a logo, or other things that may
7781 interfere with the matching. @option{y0} sets the starting scan line and
7782 @option{y1} sets the ending line; all lines in between @option{y0} and
7783 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7784 @option{y0} and @option{y1} to the same value will disable the feature.
7785 @option{y0} and @option{y1} defaults to @code{0}.
7786
7787 @item scthresh
7788 Set the scene change detection threshold as a percentage of maximum change on
7789 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7790 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7791 @option{scthresh} is @code{[0.0, 100.0]}.
7792
7793 Default value is @code{12.0}.
7794
7795 @item combmatch
7796 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7797 account the combed scores of matches when deciding what match to use as the
7798 final match. Available values are:
7799
7800 @table @samp
7801 @item none
7802 No final matching based on combed scores.
7803 @item sc
7804 Combed scores are only used when a scene change is detected.
7805 @item full
7806 Use combed scores all the time.
7807 @end table
7808
7809 Default is @var{sc}.
7810
7811 @item combdbg
7812 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7813 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7814 Available values are:
7815
7816 @table @samp
7817 @item none
7818 No forced calculation.
7819 @item pcn
7820 Force p/c/n calculations.
7821 @item pcnub
7822 Force p/c/n/u/b calculations.
7823 @end table
7824
7825 Default value is @var{none}.
7826
7827 @item cthresh
7828 This is the area combing threshold used for combed frame detection. This
7829 essentially controls how "strong" or "visible" combing must be to be detected.
7830 Larger values mean combing must be more visible and smaller values mean combing
7831 can be less visible or strong and still be detected. Valid settings are from
7832 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7833 be detected as combed). This is basically a pixel difference value. A good
7834 range is @code{[8, 12]}.
7835
7836 Default value is @code{9}.
7837
7838 @item chroma
7839 Sets whether or not chroma is considered in the combed frame decision.  Only
7840 disable this if your source has chroma problems (rainbowing, etc.) that are
7841 causing problems for the combed frame detection with chroma enabled. Actually,
7842 using @option{chroma}=@var{0} is usually more reliable, except for the case
7843 where there is chroma only combing in the source.
7844
7845 Default value is @code{0}.
7846
7847 @item blockx
7848 @item blocky
7849 Respectively set the x-axis and y-axis size of the window used during combed
7850 frame detection. This has to do with the size of the area in which
7851 @option{combpel} pixels are required to be detected as combed for a frame to be
7852 declared combed. See the @option{combpel} parameter description for more info.
7853 Possible values are any number that is a power of 2 starting at 4 and going up
7854 to 512.
7855
7856 Default value is @code{16}.
7857
7858 @item combpel
7859 The number of combed pixels inside any of the @option{blocky} by
7860 @option{blockx} size blocks on the frame for the frame to be detected as
7861 combed. While @option{cthresh} controls how "visible" the combing must be, this
7862 setting controls "how much" combing there must be in any localized area (a
7863 window defined by the @option{blockx} and @option{blocky} settings) on the
7864 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7865 which point no frames will ever be detected as combed). This setting is known
7866 as @option{MI} in TFM/VFM vocabulary.
7867
7868 Default value is @code{80}.
7869 @end table
7870
7871 @anchor{p/c/n/u/b meaning}
7872 @subsection p/c/n/u/b meaning
7873
7874 @subsubsection p/c/n
7875
7876 We assume the following telecined stream:
7877
7878 @example
7879 Top fields:     1 2 2 3 4
7880 Bottom fields:  1 2 3 4 4
7881 @end example
7882
7883 The numbers correspond to the progressive frame the fields relate to. Here, the
7884 first two frames are progressive, the 3rd and 4th are combed, and so on.
7885
7886 When @code{fieldmatch} is configured to run a matching from bottom
7887 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7888
7889 @example
7890 Input stream:
7891                 T     1 2 2 3 4
7892                 B     1 2 3 4 4   <-- matching reference
7893
7894 Matches:              c c n n c
7895
7896 Output stream:
7897                 T     1 2 3 4 4
7898                 B     1 2 3 4 4
7899 @end example
7900
7901 As a result of the field matching, we can see that some frames get duplicated.
7902 To perform a complete inverse telecine, you need to rely on a decimation filter
7903 after this operation. See for instance the @ref{decimate} filter.
7904
7905 The same operation now matching from top fields (@option{field}=@var{top})
7906 looks like this:
7907
7908 @example
7909 Input stream:
7910                 T     1 2 2 3 4   <-- matching reference
7911                 B     1 2 3 4 4
7912
7913 Matches:              c c p p c
7914
7915 Output stream:
7916                 T     1 2 2 3 4
7917                 B     1 2 2 3 4
7918 @end example
7919
7920 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7921 basically, they refer to the frame and field of the opposite parity:
7922
7923 @itemize
7924 @item @var{p} matches the field of the opposite parity in the previous frame
7925 @item @var{c} matches the field of the opposite parity in the current frame
7926 @item @var{n} matches the field of the opposite parity in the next frame
7927 @end itemize
7928
7929 @subsubsection u/b
7930
7931 The @var{u} and @var{b} matching are a bit special in the sense that they match
7932 from the opposite parity flag. In the following examples, we assume that we are
7933 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7934 'x' is placed above and below each matched fields.
7935
7936 With bottom matching (@option{field}=@var{bottom}):
7937 @example
7938 Match:           c         p           n          b          u
7939
7940                  x       x               x        x          x
7941   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7942   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7943                  x         x           x        x              x
7944
7945 Output frames:
7946                  2          1          2          2          2
7947                  2          2          2          1          3
7948 @end example
7949
7950 With top matching (@option{field}=@var{top}):
7951 @example
7952 Match:           c         p           n          b          u
7953
7954                  x         x           x        x              x
7955   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7956   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7957                  x       x               x        x          x
7958
7959 Output frames:
7960                  2          2          2          1          2
7961                  2          1          3          2          2
7962 @end example
7963
7964 @subsection Examples
7965
7966 Simple IVTC of a top field first telecined stream:
7967 @example
7968 fieldmatch=order=tff:combmatch=none, decimate
7969 @end example
7970
7971 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7972 @example
7973 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7974 @end example
7975
7976 @section fieldorder
7977
7978 Transform the field order of the input video.
7979
7980 It accepts the following parameters:
7981
7982 @table @option
7983
7984 @item order
7985 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7986 for bottom field first.
7987 @end table
7988
7989 The default value is @samp{tff}.
7990
7991 The transformation is done by shifting the picture content up or down
7992 by one line, and filling the remaining line with appropriate picture content.
7993 This method is consistent with most broadcast field order converters.
7994
7995 If the input video is not flagged as being interlaced, or it is already
7996 flagged as being of the required output field order, then this filter does
7997 not alter the incoming video.
7998
7999 It is very useful when converting to or from PAL DV material,
8000 which is bottom field first.
8001
8002 For example:
8003 @example
8004 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
8005 @end example
8006
8007 @section fifo, afifo
8008
8009 Buffer input images and send them when they are requested.
8010
8011 It is mainly useful when auto-inserted by the libavfilter
8012 framework.
8013
8014 It does not take parameters.
8015
8016 @section find_rect
8017
8018 Find a rectangular object
8019
8020 It accepts the following options:
8021
8022 @table @option
8023 @item object
8024 Filepath of the object image, needs to be in gray8.
8025
8026 @item threshold
8027 Detection threshold, default is 0.5.
8028
8029 @item mipmaps
8030 Number of mipmaps, default is 3.
8031
8032 @item xmin, ymin, xmax, ymax
8033 Specifies the rectangle in which to search.
8034 @end table
8035
8036 @subsection Examples
8037
8038 @itemize
8039 @item
8040 Generate a representative palette of a given video using @command{ffmpeg}:
8041 @example
8042 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8043 @end example
8044 @end itemize
8045
8046 @section cover_rect
8047
8048 Cover a rectangular object
8049
8050 It accepts the following options:
8051
8052 @table @option
8053 @item cover
8054 Filepath of the optional cover image, needs to be in yuv420.
8055
8056 @item mode
8057 Set covering mode.
8058
8059 It accepts the following values:
8060 @table @samp
8061 @item cover
8062 cover it by the supplied image
8063 @item blur
8064 cover it by interpolating the surrounding pixels
8065 @end table
8066
8067 Default value is @var{blur}.
8068 @end table
8069
8070 @subsection Examples
8071
8072 @itemize
8073 @item
8074 Generate a representative palette of a given video using @command{ffmpeg}:
8075 @example
8076 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8077 @end example
8078 @end itemize
8079
8080 @anchor{format}
8081 @section format
8082
8083 Convert the input video to one of the specified pixel formats.
8084 Libavfilter will try to pick one that is suitable as input to
8085 the next filter.
8086
8087 It accepts the following parameters:
8088 @table @option
8089
8090 @item pix_fmts
8091 A '|'-separated list of pixel format names, such as
8092 "pix_fmts=yuv420p|monow|rgb24".
8093
8094 @end table
8095
8096 @subsection Examples
8097
8098 @itemize
8099 @item
8100 Convert the input video to the @var{yuv420p} format
8101 @example
8102 format=pix_fmts=yuv420p
8103 @end example
8104
8105 Convert the input video to any of the formats in the list
8106 @example
8107 format=pix_fmts=yuv420p|yuv444p|yuv410p
8108 @end example
8109 @end itemize
8110
8111 @anchor{fps}
8112 @section fps
8113
8114 Convert the video to specified constant frame rate by duplicating or dropping
8115 frames as necessary.
8116
8117 It accepts the following parameters:
8118 @table @option
8119
8120 @item fps
8121 The desired output frame rate. The default is @code{25}.
8122
8123 @item round
8124 Rounding method.
8125
8126 Possible values are:
8127 @table @option
8128 @item zero
8129 zero round towards 0
8130 @item inf
8131 round away from 0
8132 @item down
8133 round towards -infinity
8134 @item up
8135 round towards +infinity
8136 @item near
8137 round to nearest
8138 @end table
8139 The default is @code{near}.
8140
8141 @item start_time
8142 Assume the first PTS should be the given value, in seconds. This allows for
8143 padding/trimming at the start of stream. By default, no assumption is made
8144 about the first frame's expected PTS, so no padding or trimming is done.
8145 For example, this could be set to 0 to pad the beginning with duplicates of
8146 the first frame if a video stream starts after the audio stream or to trim any
8147 frames with a negative PTS.
8148
8149 @end table
8150
8151 Alternatively, the options can be specified as a flat string:
8152 @var{fps}[:@var{round}].
8153
8154 See also the @ref{setpts} filter.
8155
8156 @subsection Examples
8157
8158 @itemize
8159 @item
8160 A typical usage in order to set the fps to 25:
8161 @example
8162 fps=fps=25
8163 @end example
8164
8165 @item
8166 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8167 @example
8168 fps=fps=film:round=near
8169 @end example
8170 @end itemize
8171
8172 @section framepack
8173
8174 Pack two different video streams into a stereoscopic video, setting proper
8175 metadata on supported codecs. The two views should have the same size and
8176 framerate and processing will stop when the shorter video ends. Please note
8177 that you may conveniently adjust view properties with the @ref{scale} and
8178 @ref{fps} filters.
8179
8180 It accepts the following parameters:
8181 @table @option
8182
8183 @item format
8184 The desired packing format. Supported values are:
8185
8186 @table @option
8187
8188 @item sbs
8189 The views are next to each other (default).
8190
8191 @item tab
8192 The views are on top of each other.
8193
8194 @item lines
8195 The views are packed by line.
8196
8197 @item columns
8198 The views are packed by column.
8199
8200 @item frameseq
8201 The views are temporally interleaved.
8202
8203 @end table
8204
8205 @end table
8206
8207 Some examples:
8208
8209 @example
8210 # Convert left and right views into a frame-sequential video
8211 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8212
8213 # Convert views into a side-by-side video with the same output resolution as the input
8214 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
8215 @end example
8216
8217 @section framerate
8218
8219 Change the frame rate by interpolating new video output frames from the source
8220 frames.
8221
8222 This filter is not designed to function correctly with interlaced media. If
8223 you wish to change the frame rate of interlaced media then you are required
8224 to deinterlace before this filter and re-interlace after this filter.
8225
8226 A description of the accepted options follows.
8227
8228 @table @option
8229 @item fps
8230 Specify the output frames per second. This option can also be specified
8231 as a value alone. The default is @code{50}.
8232
8233 @item interp_start
8234 Specify the start of a range where the output frame will be created as a
8235 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8236 the default is @code{15}.
8237
8238 @item interp_end
8239 Specify the end of a range where the output frame will be created as a
8240 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8241 the default is @code{240}.
8242
8243 @item scene
8244 Specify the level at which a scene change is detected as a value between
8245 0 and 100 to indicate a new scene; a low value reflects a low
8246 probability for the current frame to introduce a new scene, while a higher
8247 value means the current frame is more likely to be one.
8248 The default is @code{7}.
8249
8250 @item flags
8251 Specify flags influencing the filter process.
8252
8253 Available value for @var{flags} is:
8254
8255 @table @option
8256 @item scene_change_detect, scd
8257 Enable scene change detection using the value of the option @var{scene}.
8258 This flag is enabled by default.
8259 @end table
8260 @end table
8261
8262 @section framestep
8263
8264 Select one frame every N-th frame.
8265
8266 This filter accepts the following option:
8267 @table @option
8268 @item step
8269 Select frame after every @code{step} frames.
8270 Allowed values are positive integers higher than 0. Default value is @code{1}.
8271 @end table
8272
8273 @anchor{frei0r}
8274 @section frei0r
8275
8276 Apply a frei0r effect to the input video.
8277
8278 To enable the compilation of this filter, you need to install the frei0r
8279 header and configure FFmpeg with @code{--enable-frei0r}.
8280
8281 It accepts the following parameters:
8282
8283 @table @option
8284
8285 @item filter_name
8286 The name of the frei0r effect to load. If the environment variable
8287 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8288 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8289 Otherwise, the standard frei0r paths are searched, in this order:
8290 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8291 @file{/usr/lib/frei0r-1/}.
8292
8293 @item filter_params
8294 A '|'-separated list of parameters to pass to the frei0r effect.
8295
8296 @end table
8297
8298 A frei0r effect parameter can be a boolean (its value is either
8299 "y" or "n"), a double, a color (specified as
8300 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8301 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8302 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8303 @var{X} and @var{Y} are floating point numbers) and/or a string.
8304
8305 The number and types of parameters depend on the loaded effect. If an
8306 effect parameter is not specified, the default value is set.
8307
8308 @subsection Examples
8309
8310 @itemize
8311 @item
8312 Apply the distort0r effect, setting the first two double parameters:
8313 @example
8314 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8315 @end example
8316
8317 @item
8318 Apply the colordistance effect, taking a color as the first parameter:
8319 @example
8320 frei0r=colordistance:0.2/0.3/0.4
8321 frei0r=colordistance:violet
8322 frei0r=colordistance:0x112233
8323 @end example
8324
8325 @item
8326 Apply the perspective effect, specifying the top left and top right image
8327 positions:
8328 @example
8329 frei0r=perspective:0.2/0.2|0.8/0.2
8330 @end example
8331 @end itemize
8332
8333 For more information, see
8334 @url{http://frei0r.dyne.org}
8335
8336 @section fspp
8337
8338 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8339
8340 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8341 processing filter, one of them is performed once per block, not per pixel.
8342 This allows for much higher speed.
8343
8344 The filter accepts the following options:
8345
8346 @table @option
8347 @item quality
8348 Set quality. This option defines the number of levels for averaging. It accepts
8349 an integer in the range 4-5. Default value is @code{4}.
8350
8351 @item qp
8352 Force a constant quantization parameter. It accepts an integer in range 0-63.
8353 If not set, the filter will use the QP from the video stream (if available).
8354
8355 @item strength
8356 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8357 more details but also more artifacts, while higher values make the image smoother
8358 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8359
8360 @item use_bframe_qp
8361 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8362 option may cause flicker since the B-Frames have often larger QP. Default is
8363 @code{0} (not enabled).
8364
8365 @end table
8366
8367 @section gblur
8368
8369 Apply Gaussian blur filter.
8370
8371 The filter accepts the following options:
8372
8373 @table @option
8374 @item sigma
8375 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
8376
8377 @item steps
8378 Set number of steps for Gaussian approximation. Defauls is @code{1}.
8379
8380 @item planes
8381 Set which planes to filter. By default all planes are filtered.
8382
8383 @item sigmaV
8384 Set vertical sigma, if negative it will be same as @code{sigma}.
8385 Default is @code{-1}.
8386 @end table
8387
8388 @section geq
8389
8390 The filter accepts the following options:
8391
8392 @table @option
8393 @item lum_expr, lum
8394 Set the luminance expression.
8395 @item cb_expr, cb
8396 Set the chrominance blue expression.
8397 @item cr_expr, cr
8398 Set the chrominance red expression.
8399 @item alpha_expr, a
8400 Set the alpha expression.
8401 @item red_expr, r
8402 Set the red expression.
8403 @item green_expr, g
8404 Set the green expression.
8405 @item blue_expr, b
8406 Set the blue expression.
8407 @end table
8408
8409 The colorspace is selected according to the specified options. If one
8410 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8411 options is specified, the filter will automatically select a YCbCr
8412 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8413 @option{blue_expr} options is specified, it will select an RGB
8414 colorspace.
8415
8416 If one of the chrominance expression is not defined, it falls back on the other
8417 one. If no alpha expression is specified it will evaluate to opaque value.
8418 If none of chrominance expressions are specified, they will evaluate
8419 to the luminance expression.
8420
8421 The expressions can use the following variables and functions:
8422
8423 @table @option
8424 @item N
8425 The sequential number of the filtered frame, starting from @code{0}.
8426
8427 @item X
8428 @item Y
8429 The coordinates of the current sample.
8430
8431 @item W
8432 @item H
8433 The width and height of the image.
8434
8435 @item SW
8436 @item SH
8437 Width and height scale depending on the currently filtered plane. It is the
8438 ratio between the corresponding luma plane number of pixels and the current
8439 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8440 @code{0.5,0.5} for chroma planes.
8441
8442 @item T
8443 Time of the current frame, expressed in seconds.
8444
8445 @item p(x, y)
8446 Return the value of the pixel at location (@var{x},@var{y}) of the current
8447 plane.
8448
8449 @item lum(x, y)
8450 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8451 plane.
8452
8453 @item cb(x, y)
8454 Return the value of the pixel at location (@var{x},@var{y}) of the
8455 blue-difference chroma plane. Return 0 if there is no such plane.
8456
8457 @item cr(x, y)
8458 Return the value of the pixel at location (@var{x},@var{y}) of the
8459 red-difference chroma plane. Return 0 if there is no such plane.
8460
8461 @item r(x, y)
8462 @item g(x, y)
8463 @item b(x, y)
8464 Return the value of the pixel at location (@var{x},@var{y}) of the
8465 red/green/blue component. Return 0 if there is no such component.
8466
8467 @item alpha(x, y)
8468 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8469 plane. Return 0 if there is no such plane.
8470 @end table
8471
8472 For functions, if @var{x} and @var{y} are outside the area, the value will be
8473 automatically clipped to the closer edge.
8474
8475 @subsection Examples
8476
8477 @itemize
8478 @item
8479 Flip the image horizontally:
8480 @example
8481 geq=p(W-X\,Y)
8482 @end example
8483
8484 @item
8485 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8486 wavelength of 100 pixels:
8487 @example
8488 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8489 @end example
8490
8491 @item
8492 Generate a fancy enigmatic moving light:
8493 @example
8494 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
8495 @end example
8496
8497 @item
8498 Generate a quick emboss effect:
8499 @example
8500 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8501 @end example
8502
8503 @item
8504 Modify RGB components depending on pixel position:
8505 @example
8506 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8507 @end example
8508
8509 @item
8510 Create a radial gradient that is the same size as the input (also see
8511 the @ref{vignette} filter):
8512 @example
8513 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8514 @end example
8515 @end itemize
8516
8517 @section gradfun
8518
8519 Fix the banding artifacts that are sometimes introduced into nearly flat
8520 regions by truncation to 8-bit color depth.
8521 Interpolate the gradients that should go where the bands are, and
8522 dither them.
8523
8524 It is designed for playback only.  Do not use it prior to
8525 lossy compression, because compression tends to lose the dither and
8526 bring back the bands.
8527
8528 It accepts the following parameters:
8529
8530 @table @option
8531
8532 @item strength
8533 The maximum amount by which the filter will change any one pixel. This is also
8534 the threshold for detecting nearly flat regions. Acceptable values range from
8535 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8536 valid range.
8537
8538 @item radius
8539 The neighborhood to fit the gradient to. A larger radius makes for smoother
8540 gradients, but also prevents the filter from modifying the pixels near detailed
8541 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8542 values will be clipped to the valid range.
8543
8544 @end table
8545
8546 Alternatively, the options can be specified as a flat string:
8547 @var{strength}[:@var{radius}]
8548
8549 @subsection Examples
8550
8551 @itemize
8552 @item
8553 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8554 @example
8555 gradfun=3.5:8
8556 @end example
8557
8558 @item
8559 Specify radius, omitting the strength (which will fall-back to the default
8560 value):
8561 @example
8562 gradfun=radius=8
8563 @end example
8564
8565 @end itemize
8566
8567 @anchor{haldclut}
8568 @section haldclut
8569
8570 Apply a Hald CLUT to a video stream.
8571
8572 First input is the video stream to process, and second one is the Hald CLUT.
8573 The Hald CLUT input can be a simple picture or a complete video stream.
8574
8575 The filter accepts the following options:
8576
8577 @table @option
8578 @item shortest
8579 Force termination when the shortest input terminates. Default is @code{0}.
8580 @item repeatlast
8581 Continue applying the last CLUT after the end of the stream. A value of
8582 @code{0} disable the filter after the last frame of the CLUT is reached.
8583 Default is @code{1}.
8584 @end table
8585
8586 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8587 filters share the same internals).
8588
8589 More information about the Hald CLUT can be found on Eskil Steenberg's website
8590 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8591
8592 @subsection Workflow examples
8593
8594 @subsubsection Hald CLUT video stream
8595
8596 Generate an identity Hald CLUT stream altered with various effects:
8597 @example
8598 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
8599 @end example
8600
8601 Note: make sure you use a lossless codec.
8602
8603 Then use it with @code{haldclut} to apply it on some random stream:
8604 @example
8605 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8606 @end example
8607
8608 The Hald CLUT will be applied to the 10 first seconds (duration of
8609 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8610 to the remaining frames of the @code{mandelbrot} stream.
8611
8612 @subsubsection Hald CLUT with preview
8613
8614 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8615 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8616 biggest possible square starting at the top left of the picture. The remaining
8617 padding pixels (bottom or right) will be ignored. This area can be used to add
8618 a preview of the Hald CLUT.
8619
8620 Typically, the following generated Hald CLUT will be supported by the
8621 @code{haldclut} filter:
8622
8623 @example
8624 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8625    pad=iw+320 [padded_clut];
8626    smptebars=s=320x256, split [a][b];
8627    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8628    [main][b] overlay=W-320" -frames:v 1 clut.png
8629 @end example
8630
8631 It contains the original and a preview of the effect of the CLUT: SMPTE color
8632 bars are displayed on the right-top, and below the same color bars processed by
8633 the color changes.
8634
8635 Then, the effect of this Hald CLUT can be visualized with:
8636 @example
8637 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8638 @end example
8639
8640 @section hflip
8641
8642 Flip the input video horizontally.
8643
8644 For example, to horizontally flip the input video with @command{ffmpeg}:
8645 @example
8646 ffmpeg -i in.avi -vf "hflip" out.avi
8647 @end example
8648
8649 @section histeq
8650 This filter applies a global color histogram equalization on a
8651 per-frame basis.
8652
8653 It can be used to correct video that has a compressed range of pixel
8654 intensities.  The filter redistributes the pixel intensities to
8655 equalize their distribution across the intensity range. It may be
8656 viewed as an "automatically adjusting contrast filter". This filter is
8657 useful only for correcting degraded or poorly captured source
8658 video.
8659
8660 The filter accepts the following options:
8661
8662 @table @option
8663 @item strength
8664 Determine the amount of equalization to be applied.  As the strength
8665 is reduced, the distribution of pixel intensities more-and-more
8666 approaches that of the input frame. The value must be a float number
8667 in the range [0,1] and defaults to 0.200.
8668
8669 @item intensity
8670 Set the maximum intensity that can generated and scale the output
8671 values appropriately.  The strength should be set as desired and then
8672 the intensity can be limited if needed to avoid washing-out. The value
8673 must be a float number in the range [0,1] and defaults to 0.210.
8674
8675 @item antibanding
8676 Set the antibanding level. If enabled the filter will randomly vary
8677 the luminance of output pixels by a small amount to avoid banding of
8678 the histogram. Possible values are @code{none}, @code{weak} or
8679 @code{strong}. It defaults to @code{none}.
8680 @end table
8681
8682 @section histogram
8683
8684 Compute and draw a color distribution histogram for the input video.
8685
8686 The computed histogram is a representation of the color component
8687 distribution in an image.
8688
8689 Standard histogram displays the color components distribution in an image.
8690 Displays color graph for each color component. Shows distribution of
8691 the Y, U, V, A or R, G, B components, depending on input format, in the
8692 current frame. Below each graph a color component scale meter is shown.
8693
8694 The filter accepts the following options:
8695
8696 @table @option
8697 @item level_height
8698 Set height of level. Default value is @code{200}.
8699 Allowed range is [50, 2048].
8700
8701 @item scale_height
8702 Set height of color scale. Default value is @code{12}.
8703 Allowed range is [0, 40].
8704
8705 @item display_mode
8706 Set display mode.
8707 It accepts the following values:
8708 @table @samp
8709 @item parade
8710 Per color component graphs are placed below each other.
8711
8712 @item overlay
8713 Presents information identical to that in the @code{parade}, except
8714 that the graphs representing color components are superimposed directly
8715 over one another.
8716 @end table
8717 Default is @code{parade}.
8718
8719 @item levels_mode
8720 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8721 Default is @code{linear}.
8722
8723 @item components
8724 Set what color components to display.
8725 Default is @code{7}.
8726
8727 @item fgopacity
8728 Set foreground opacity. Default is @code{0.7}.
8729
8730 @item bgopacity
8731 Set background opacity. Default is @code{0.5}.
8732 @end table
8733
8734 @subsection Examples
8735
8736 @itemize
8737
8738 @item
8739 Calculate and draw histogram:
8740 @example
8741 ffplay -i input -vf histogram
8742 @end example
8743
8744 @end itemize
8745
8746 @anchor{hqdn3d}
8747 @section hqdn3d
8748
8749 This is a high precision/quality 3d denoise filter. It aims to reduce
8750 image noise, producing smooth images and making still images really
8751 still. It should enhance compressibility.
8752
8753 It accepts the following optional parameters:
8754
8755 @table @option
8756 @item luma_spatial
8757 A non-negative floating point number which specifies spatial luma strength.
8758 It defaults to 4.0.
8759
8760 @item chroma_spatial
8761 A non-negative floating point number which specifies spatial chroma strength.
8762 It defaults to 3.0*@var{luma_spatial}/4.0.
8763
8764 @item luma_tmp
8765 A floating point number which specifies luma temporal strength. It defaults to
8766 6.0*@var{luma_spatial}/4.0.
8767
8768 @item chroma_tmp
8769 A floating point number which specifies chroma temporal strength. It defaults to
8770 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8771 @end table
8772
8773 @anchor{hwupload_cuda}
8774 @section hwupload_cuda
8775
8776 Upload system memory frames to a CUDA device.
8777
8778 It accepts the following optional parameters:
8779
8780 @table @option
8781 @item device
8782 The number of the CUDA device to use
8783 @end table
8784
8785 @section hqx
8786
8787 Apply a high-quality magnification filter designed for pixel art. This filter
8788 was originally created by Maxim Stepin.
8789
8790 It accepts the following option:
8791
8792 @table @option
8793 @item n
8794 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8795 @code{hq3x} and @code{4} for @code{hq4x}.
8796 Default is @code{3}.
8797 @end table
8798
8799 @section hstack
8800 Stack input videos horizontally.
8801
8802 All streams must be of same pixel format and of same height.
8803
8804 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8805 to create same output.
8806
8807 The filter accept the following option:
8808
8809 @table @option
8810 @item inputs
8811 Set number of input streams. Default is 2.
8812
8813 @item shortest
8814 If set to 1, force the output to terminate when the shortest input
8815 terminates. Default value is 0.
8816 @end table
8817
8818 @section hue
8819
8820 Modify the hue and/or the saturation of the input.
8821
8822 It accepts the following parameters:
8823
8824 @table @option
8825 @item h
8826 Specify the hue angle as a number of degrees. It accepts an expression,
8827 and defaults to "0".
8828
8829 @item s
8830 Specify the saturation in the [-10,10] range. It accepts an expression and
8831 defaults to "1".
8832
8833 @item H
8834 Specify the hue angle as a number of radians. It accepts an
8835 expression, and defaults to "0".
8836
8837 @item b
8838 Specify the brightness in the [-10,10] range. It accepts an expression and
8839 defaults to "0".
8840 @end table
8841
8842 @option{h} and @option{H} are mutually exclusive, and can't be
8843 specified at the same time.
8844
8845 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8846 expressions containing the following constants:
8847
8848 @table @option
8849 @item n
8850 frame count of the input frame starting from 0
8851
8852 @item pts
8853 presentation timestamp of the input frame expressed in time base units
8854
8855 @item r
8856 frame rate of the input video, NAN if the input frame rate is unknown
8857
8858 @item t
8859 timestamp expressed in seconds, NAN if the input timestamp is unknown
8860
8861 @item tb
8862 time base of the input video
8863 @end table
8864
8865 @subsection Examples
8866
8867 @itemize
8868 @item
8869 Set the hue to 90 degrees and the saturation to 1.0:
8870 @example
8871 hue=h=90:s=1
8872 @end example
8873
8874 @item
8875 Same command but expressing the hue in radians:
8876 @example
8877 hue=H=PI/2:s=1
8878 @end example
8879
8880 @item
8881 Rotate hue and make the saturation swing between 0
8882 and 2 over a period of 1 second:
8883 @example
8884 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8885 @end example
8886
8887 @item
8888 Apply a 3 seconds saturation fade-in effect starting at 0:
8889 @example
8890 hue="s=min(t/3\,1)"
8891 @end example
8892
8893 The general fade-in expression can be written as:
8894 @example
8895 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8896 @end example
8897
8898 @item
8899 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8900 @example
8901 hue="s=max(0\, min(1\, (8-t)/3))"
8902 @end example
8903
8904 The general fade-out expression can be written as:
8905 @example
8906 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8907 @end example
8908
8909 @end itemize
8910
8911 @subsection Commands
8912
8913 This filter supports the following commands:
8914 @table @option
8915 @item b
8916 @item s
8917 @item h
8918 @item H
8919 Modify the hue and/or the saturation and/or brightness of the input video.
8920 The command accepts the same syntax of the corresponding option.
8921
8922 If the specified expression is not valid, it is kept at its current
8923 value.
8924 @end table
8925
8926 @section hysteresis
8927
8928 Grow first stream into second stream by connecting components.
8929 This makes it possible to build more robust edge masks.
8930
8931 This filter accepts the following options:
8932
8933 @table @option
8934 @item planes
8935 Set which planes will be processed as bitmap, unprocessed planes will be
8936 copied from first stream.
8937 By default value 0xf, all planes will be processed.
8938
8939 @item threshold
8940 Set threshold which is used in filtering. If pixel component value is higher than
8941 this value filter algorithm for connecting components is activated.
8942 By default value is 0.
8943 @end table
8944
8945 @section idet
8946
8947 Detect video interlacing type.
8948
8949 This filter tries to detect if the input frames are interlaced, progressive,
8950 top or bottom field first. It will also try to detect fields that are
8951 repeated between adjacent frames (a sign of telecine).
8952
8953 Single frame detection considers only immediately adjacent frames when classifying each frame.
8954 Multiple frame detection incorporates the classification history of previous frames.
8955
8956 The filter will log these metadata values:
8957
8958 @table @option
8959 @item single.current_frame
8960 Detected type of current frame using single-frame detection. One of:
8961 ``tff'' (top field first), ``bff'' (bottom field first),
8962 ``progressive'', or ``undetermined''
8963
8964 @item single.tff
8965 Cumulative number of frames detected as top field first using single-frame detection.
8966
8967 @item multiple.tff
8968 Cumulative number of frames detected as top field first using multiple-frame detection.
8969
8970 @item single.bff
8971 Cumulative number of frames detected as bottom field first using single-frame detection.
8972
8973 @item multiple.current_frame
8974 Detected type of current frame using multiple-frame detection. One of:
8975 ``tff'' (top field first), ``bff'' (bottom field first),
8976 ``progressive'', or ``undetermined''
8977
8978 @item multiple.bff
8979 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8980
8981 @item single.progressive
8982 Cumulative number of frames detected as progressive using single-frame detection.
8983
8984 @item multiple.progressive
8985 Cumulative number of frames detected as progressive using multiple-frame detection.
8986
8987 @item single.undetermined
8988 Cumulative number of frames that could not be classified using single-frame detection.
8989
8990 @item multiple.undetermined
8991 Cumulative number of frames that could not be classified using multiple-frame detection.
8992
8993 @item repeated.current_frame
8994 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8995
8996 @item repeated.neither
8997 Cumulative number of frames with no repeated field.
8998
8999 @item repeated.top
9000 Cumulative number of frames with the top field repeated from the previous frame's top field.
9001
9002 @item repeated.bottom
9003 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
9004 @end table
9005
9006 The filter accepts the following options:
9007
9008 @table @option
9009 @item intl_thres
9010 Set interlacing threshold.
9011 @item prog_thres
9012 Set progressive threshold.
9013 @item rep_thres
9014 Threshold for repeated field detection.
9015 @item half_life
9016 Number of frames after which a given frame's contribution to the
9017 statistics is halved (i.e., it contributes only 0.5 to its
9018 classification). The default of 0 means that all frames seen are given
9019 full weight of 1.0 forever.
9020 @item analyze_interlaced_flag
9021 When this is not 0 then idet will use the specified number of frames to determine
9022 if the interlaced flag is accurate, it will not count undetermined frames.
9023 If the flag is found to be accurate it will be used without any further
9024 computations, if it is found to be inaccurate it will be cleared without any
9025 further computations. This allows inserting the idet filter as a low computational
9026 method to clean up the interlaced flag
9027 @end table
9028
9029 @section il
9030
9031 Deinterleave or interleave fields.
9032
9033 This filter allows one to process interlaced images fields without
9034 deinterlacing them. Deinterleaving splits the input frame into 2
9035 fields (so called half pictures). Odd lines are moved to the top
9036 half of the output image, even lines to the bottom half.
9037 You can process (filter) them independently and then re-interleave them.
9038
9039 The filter accepts the following options:
9040
9041 @table @option
9042 @item luma_mode, l
9043 @item chroma_mode, c
9044 @item alpha_mode, a
9045 Available values for @var{luma_mode}, @var{chroma_mode} and
9046 @var{alpha_mode} are:
9047
9048 @table @samp
9049 @item none
9050 Do nothing.
9051
9052 @item deinterleave, d
9053 Deinterleave fields, placing one above the other.
9054
9055 @item interleave, i
9056 Interleave fields. Reverse the effect of deinterleaving.
9057 @end table
9058 Default value is @code{none}.
9059
9060 @item luma_swap, ls
9061 @item chroma_swap, cs
9062 @item alpha_swap, as
9063 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
9064 @end table
9065
9066 @section inflate
9067
9068 Apply inflate effect to the video.
9069
9070 This filter replaces the pixel by the local(3x3) average by taking into account
9071 only values higher than the pixel.
9072
9073 It accepts the following options:
9074
9075 @table @option
9076 @item threshold0
9077 @item threshold1
9078 @item threshold2
9079 @item threshold3
9080 Limit the maximum change for each plane, default is 65535.
9081 If 0, plane will remain unchanged.
9082 @end table
9083
9084 @section interlace
9085
9086 Simple interlacing filter from progressive contents. This interleaves upper (or
9087 lower) lines from odd frames with lower (or upper) lines from even frames,
9088 halving the frame rate and preserving image height.
9089
9090 @example
9091    Original        Original             New Frame
9092    Frame 'j'      Frame 'j+1'             (tff)
9093   ==========      ===========       ==================
9094     Line 0  -------------------->    Frame 'j' Line 0
9095     Line 1          Line 1  ---->   Frame 'j+1' Line 1
9096     Line 2 --------------------->    Frame 'j' Line 2
9097     Line 3          Line 3  ---->   Frame 'j+1' Line 3
9098      ...             ...                   ...
9099 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
9100 @end example
9101
9102 It accepts the following optional parameters:
9103
9104 @table @option
9105 @item scan
9106 This determines whether the interlaced frame is taken from the even
9107 (tff - default) or odd (bff) lines of the progressive frame.
9108
9109 @item lowpass
9110 Enable (default) or disable the vertical lowpass filter to avoid twitter
9111 interlacing and reduce moire patterns.
9112 @end table
9113
9114 @section kerndeint
9115
9116 Deinterlace input video by applying Donald Graft's adaptive kernel
9117 deinterling. Work on interlaced parts of a video to produce
9118 progressive frames.
9119
9120 The description of the accepted parameters follows.
9121
9122 @table @option
9123 @item thresh
9124 Set the threshold which affects the filter's tolerance when
9125 determining if a pixel line must be processed. It must be an integer
9126 in the range [0,255] and defaults to 10. A value of 0 will result in
9127 applying the process on every pixels.
9128
9129 @item map
9130 Paint pixels exceeding the threshold value to white if set to 1.
9131 Default is 0.
9132
9133 @item order
9134 Set the fields order. Swap fields if set to 1, leave fields alone if
9135 0. Default is 0.
9136
9137 @item sharp
9138 Enable additional sharpening if set to 1. Default is 0.
9139
9140 @item twoway
9141 Enable twoway sharpening if set to 1. Default is 0.
9142 @end table
9143
9144 @subsection Examples
9145
9146 @itemize
9147 @item
9148 Apply default values:
9149 @example
9150 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9151 @end example
9152
9153 @item
9154 Enable additional sharpening:
9155 @example
9156 kerndeint=sharp=1
9157 @end example
9158
9159 @item
9160 Paint processed pixels in white:
9161 @example
9162 kerndeint=map=1
9163 @end example
9164 @end itemize
9165
9166 @section lenscorrection
9167
9168 Correct radial lens distortion
9169
9170 This filter can be used to correct for radial distortion as can result from the use
9171 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9172 one can use tools available for example as part of opencv or simply trial-and-error.
9173 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9174 and extract the k1 and k2 coefficients from the resulting matrix.
9175
9176 Note that effectively the same filter is available in the open-source tools Krita and
9177 Digikam from the KDE project.
9178
9179 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9180 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9181 brightness distribution, so you may want to use both filters together in certain
9182 cases, though you will have to take care of ordering, i.e. whether vignetting should
9183 be applied before or after lens correction.
9184
9185 @subsection Options
9186
9187 The filter accepts the following options:
9188
9189 @table @option
9190 @item cx
9191 Relative x-coordinate of the focal point of the image, and thereby the center of the
9192 distortion. This value has a range [0,1] and is expressed as fractions of the image
9193 width.
9194 @item cy
9195 Relative y-coordinate of the focal point of the image, and thereby the center of the
9196 distortion. This value has a range [0,1] and is expressed as fractions of the image
9197 height.
9198 @item k1
9199 Coefficient of the quadratic correction term. 0.5 means no correction.
9200 @item k2
9201 Coefficient of the double quadratic correction term. 0.5 means no correction.
9202 @end table
9203
9204 The formula that generates the correction is:
9205
9206 @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)
9207
9208 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9209 distances from the focal point in the source and target images, respectively.
9210
9211 @section loop
9212
9213 Loop video frames.
9214
9215 The filter accepts the following options:
9216
9217 @table @option
9218 @item loop
9219 Set the number of loops.
9220
9221 @item size
9222 Set maximal size in number of frames.
9223
9224 @item start
9225 Set first frame of loop.
9226 @end table
9227
9228 @anchor{lut3d}
9229 @section lut3d
9230
9231 Apply a 3D LUT to an input video.
9232
9233 The filter accepts the following options:
9234
9235 @table @option
9236 @item file
9237 Set the 3D LUT file name.
9238
9239 Currently supported formats:
9240 @table @samp
9241 @item 3dl
9242 AfterEffects
9243 @item cube
9244 Iridas
9245 @item dat
9246 DaVinci
9247 @item m3d
9248 Pandora
9249 @end table
9250 @item interp
9251 Select interpolation mode.
9252
9253 Available values are:
9254
9255 @table @samp
9256 @item nearest
9257 Use values from the nearest defined point.
9258 @item trilinear
9259 Interpolate values using the 8 points defining a cube.
9260 @item tetrahedral
9261 Interpolate values using a tetrahedron.
9262 @end table
9263 @end table
9264
9265 @section lut, lutrgb, lutyuv
9266
9267 Compute a look-up table for binding each pixel component input value
9268 to an output value, and apply it to the input video.
9269
9270 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9271 to an RGB input video.
9272
9273 These filters accept the following parameters:
9274 @table @option
9275 @item c0
9276 set first pixel component expression
9277 @item c1
9278 set second pixel component expression
9279 @item c2
9280 set third pixel component expression
9281 @item c3
9282 set fourth pixel component expression, corresponds to the alpha component
9283
9284 @item r
9285 set red component expression
9286 @item g
9287 set green component expression
9288 @item b
9289 set blue component expression
9290 @item a
9291 alpha component expression
9292
9293 @item y
9294 set Y/luminance component expression
9295 @item u
9296 set U/Cb component expression
9297 @item v
9298 set V/Cr component expression
9299 @end table
9300
9301 Each of them specifies the expression to use for computing the lookup table for
9302 the corresponding pixel component values.
9303
9304 The exact component associated to each of the @var{c*} options depends on the
9305 format in input.
9306
9307 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9308 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9309
9310 The expressions can contain the following constants and functions:
9311
9312 @table @option
9313 @item w
9314 @item h
9315 The input width and height.
9316
9317 @item val
9318 The input value for the pixel component.
9319
9320 @item clipval
9321 The input value, clipped to the @var{minval}-@var{maxval} range.
9322
9323 @item maxval
9324 The maximum value for the pixel component.
9325
9326 @item minval
9327 The minimum value for the pixel component.
9328
9329 @item negval
9330 The negated value for the pixel component value, clipped to the
9331 @var{minval}-@var{maxval} range; it corresponds to the expression
9332 "maxval-clipval+minval".
9333
9334 @item clip(val)
9335 The computed value in @var{val}, clipped to the
9336 @var{minval}-@var{maxval} range.
9337
9338 @item gammaval(gamma)
9339 The computed gamma correction value of the pixel component value,
9340 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9341 expression
9342 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9343
9344 @end table
9345
9346 All expressions default to "val".
9347
9348 @subsection Examples
9349
9350 @itemize
9351 @item
9352 Negate input video:
9353 @example
9354 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9355 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9356 @end example
9357
9358 The above is the same as:
9359 @example
9360 lutrgb="r=negval:g=negval:b=negval"
9361 lutyuv="y=negval:u=negval:v=negval"
9362 @end example
9363
9364 @item
9365 Negate luminance:
9366 @example
9367 lutyuv=y=negval
9368 @end example
9369
9370 @item
9371 Remove chroma components, turning the video into a graytone image:
9372 @example
9373 lutyuv="u=128:v=128"
9374 @end example
9375
9376 @item
9377 Apply a luma burning effect:
9378 @example
9379 lutyuv="y=2*val"
9380 @end example
9381
9382 @item
9383 Remove green and blue components:
9384 @example
9385 lutrgb="g=0:b=0"
9386 @end example
9387
9388 @item
9389 Set a constant alpha channel value on input:
9390 @example
9391 format=rgba,lutrgb=a="maxval-minval/2"
9392 @end example
9393
9394 @item
9395 Correct luminance gamma by a factor of 0.5:
9396 @example
9397 lutyuv=y=gammaval(0.5)
9398 @end example
9399
9400 @item
9401 Discard least significant bits of luma:
9402 @example
9403 lutyuv=y='bitand(val, 128+64+32)'
9404 @end example
9405
9406 @item
9407 Technicolor like effect:
9408 @example
9409 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9410 @end example
9411 @end itemize
9412
9413 @section lut2
9414
9415 Compute and apply a lookup table from two video inputs.
9416
9417 This filter accepts the following parameters:
9418 @table @option
9419 @item c0
9420 set first pixel component expression
9421 @item c1
9422 set second pixel component expression
9423 @item c2
9424 set third pixel component expression
9425 @item c3
9426 set fourth pixel component expression, corresponds to the alpha component
9427 @end table
9428
9429 Each of them specifies the expression to use for computing the lookup table for
9430 the corresponding pixel component values.
9431
9432 The exact component associated to each of the @var{c*} options depends on the
9433 format in inputs.
9434
9435 The expressions can contain the following constants:
9436
9437 @table @option
9438 @item w
9439 @item h
9440 The input width and height.
9441
9442 @item x
9443 The first input value for the pixel component.
9444
9445 @item y
9446 The second input value for the pixel component.
9447
9448 @item bdx
9449 The first input video bit depth.
9450
9451 @item bdy
9452 The second input video bit depth.
9453 @end table
9454
9455 All expressions default to "x".
9456
9457 @subsection Examples
9458
9459 @itemize
9460 @item
9461 Highlight differences between two RGB video streams:
9462 @example
9463 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)'
9464 @end example
9465
9466 @item
9467 Highlight differences between two YUV video streams:
9468 @example
9469 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)'
9470 @end example
9471 @end itemize
9472
9473 @section maskedclamp
9474
9475 Clamp the first input stream with the second input and third input stream.
9476
9477 Returns the value of first stream to be between second input
9478 stream - @code{undershoot} and third input stream + @code{overshoot}.
9479
9480 This filter accepts the following options:
9481 @table @option
9482 @item undershoot
9483 Default value is @code{0}.
9484
9485 @item overshoot
9486 Default value is @code{0}.
9487
9488 @item planes
9489 Set which planes will be processed as bitmap, unprocessed planes will be
9490 copied from first stream.
9491 By default value 0xf, all planes will be processed.
9492 @end table
9493
9494 @section maskedmerge
9495
9496 Merge the first input stream with the second input stream using per pixel
9497 weights in the third input stream.
9498
9499 A value of 0 in the third stream pixel component means that pixel component
9500 from first stream is returned unchanged, while maximum value (eg. 255 for
9501 8-bit videos) means that pixel component from second stream is returned
9502 unchanged. Intermediate values define the amount of merging between both
9503 input stream's pixel components.
9504
9505 This filter accepts the following options:
9506 @table @option
9507 @item planes
9508 Set which planes will be processed as bitmap, unprocessed planes will be
9509 copied from first stream.
9510 By default value 0xf, all planes will be processed.
9511 @end table
9512
9513 @section mcdeint
9514
9515 Apply motion-compensation deinterlacing.
9516
9517 It needs one field per frame as input and must thus be used together
9518 with yadif=1/3 or equivalent.
9519
9520 This filter accepts the following options:
9521 @table @option
9522 @item mode
9523 Set the deinterlacing mode.
9524
9525 It accepts one of the following values:
9526 @table @samp
9527 @item fast
9528 @item medium
9529 @item slow
9530 use iterative motion estimation
9531 @item extra_slow
9532 like @samp{slow}, but use multiple reference frames.
9533 @end table
9534 Default value is @samp{fast}.
9535
9536 @item parity
9537 Set the picture field parity assumed for the input video. It must be
9538 one of the following values:
9539
9540 @table @samp
9541 @item 0, tff
9542 assume top field first
9543 @item 1, bff
9544 assume bottom field first
9545 @end table
9546
9547 Default value is @samp{bff}.
9548
9549 @item qp
9550 Set per-block quantization parameter (QP) used by the internal
9551 encoder.
9552
9553 Higher values should result in a smoother motion vector field but less
9554 optimal individual vectors. Default value is 1.
9555 @end table
9556
9557 @section mergeplanes
9558
9559 Merge color channel components from several video streams.
9560
9561 The filter accepts up to 4 input streams, and merge selected input
9562 planes to the output video.
9563
9564 This filter accepts the following options:
9565 @table @option
9566 @item mapping
9567 Set input to output plane mapping. Default is @code{0}.
9568
9569 The mappings is specified as a bitmap. It should be specified as a
9570 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9571 mapping for the first plane of the output stream. 'A' sets the number of
9572 the input stream to use (from 0 to 3), and 'a' the plane number of the
9573 corresponding input to use (from 0 to 3). The rest of the mappings is
9574 similar, 'Bb' describes the mapping for the output stream second
9575 plane, 'Cc' describes the mapping for the output stream third plane and
9576 'Dd' describes the mapping for the output stream fourth plane.
9577
9578 @item format
9579 Set output pixel format. Default is @code{yuva444p}.
9580 @end table
9581
9582 @subsection Examples
9583
9584 @itemize
9585 @item
9586 Merge three gray video streams of same width and height into single video stream:
9587 @example
9588 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9589 @end example
9590
9591 @item
9592 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9593 @example
9594 [a0][a1]mergeplanes=0x00010210:yuva444p
9595 @end example
9596
9597 @item
9598 Swap Y and A plane in yuva444p stream:
9599 @example
9600 format=yuva444p,mergeplanes=0x03010200:yuva444p
9601 @end example
9602
9603 @item
9604 Swap U and V plane in yuv420p stream:
9605 @example
9606 format=yuv420p,mergeplanes=0x000201:yuv420p
9607 @end example
9608
9609 @item
9610 Cast a rgb24 clip to yuv444p:
9611 @example
9612 format=rgb24,mergeplanes=0x000102:yuv444p
9613 @end example
9614 @end itemize
9615
9616 @section mestimate
9617
9618 Estimate and export motion vectors using block matching algorithms.
9619 Motion vectors are stored in frame side data to be used by other filters.
9620
9621 This filter accepts the following options:
9622 @table @option
9623 @item method
9624 Specify the motion estimation method. Accepts one of the following values:
9625
9626 @table @samp
9627 @item esa
9628 Exhaustive search algorithm.
9629 @item tss
9630 Three step search algorithm.
9631 @item tdls
9632 Two dimensional logarithmic search algorithm.
9633 @item ntss
9634 New three step search algorithm.
9635 @item fss
9636 Four step search algorithm.
9637 @item ds
9638 Diamond search algorithm.
9639 @item hexbs
9640 Hexagon-based search algorithm.
9641 @item epzs
9642 Enhanced predictive zonal search algorithm.
9643 @item umh
9644 Uneven multi-hexagon search algorithm.
9645 @end table
9646 Default value is @samp{esa}.
9647
9648 @item mb_size
9649 Macroblock size. Default @code{16}.
9650
9651 @item search_param
9652 Search parameter. Default @code{7}.
9653 @end table
9654
9655 @section midequalizer
9656
9657 Apply Midway Image Equalization effect using two video streams.
9658
9659 Midway Image Equalization adjusts a pair of images to have the same
9660 histogram, while maintaining their dynamics as much as possible. It's
9661 useful for e.g. matching exposures from a pair of stereo cameras.
9662
9663 This filter has two inputs and one output, which must be of same pixel format, but
9664 may be of different sizes. The output of filter is first input adjusted with
9665 midway histogram of both inputs.
9666
9667 This filter accepts the following option:
9668
9669 @table @option
9670 @item planes
9671 Set which planes to process. Default is @code{15}, which is all available planes.
9672 @end table
9673
9674 @section minterpolate
9675
9676 Convert the video to specified frame rate using motion interpolation.
9677
9678 This filter accepts the following options:
9679 @table @option
9680 @item fps
9681 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}.
9682
9683 @item mi_mode
9684 Motion interpolation mode. Following values are accepted:
9685 @table @samp
9686 @item dup
9687 Duplicate previous or next frame for interpolating new ones.
9688 @item blend
9689 Blend source frames. Interpolated frame is mean of previous and next frames.
9690 @item mci
9691 Motion compensated interpolation. Following options are effective when this mode is selected:
9692
9693 @table @samp
9694 @item mc_mode
9695 Motion compensation mode. Following values are accepted:
9696 @table @samp
9697 @item obmc
9698 Overlapped block motion compensation.
9699 @item aobmc
9700 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
9701 @end table
9702 Default mode is @samp{obmc}.
9703
9704 @item me_mode
9705 Motion estimation mode. Following values are accepted:
9706 @table @samp
9707 @item bidir
9708 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
9709 @item bilat
9710 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
9711 @end table
9712 Default mode is @samp{bilat}.
9713
9714 @item me
9715 The algorithm to be used for motion estimation. Following values are accepted:
9716 @table @samp
9717 @item esa
9718 Exhaustive search algorithm.
9719 @item tss
9720 Three step search algorithm.
9721 @item tdls
9722 Two dimensional logarithmic search algorithm.
9723 @item ntss
9724 New three step search algorithm.
9725 @item fss
9726 Four step search algorithm.
9727 @item ds
9728 Diamond search algorithm.
9729 @item hexbs
9730 Hexagon-based search algorithm.
9731 @item epzs
9732 Enhanced predictive zonal search algorithm.
9733 @item umh
9734 Uneven multi-hexagon search algorithm.
9735 @end table
9736 Default algorithm is @samp{epzs}.
9737
9738 @item mb_size
9739 Macroblock size. Default @code{16}.
9740
9741 @item search_param
9742 Motion estimation search parameter. Default @code{32}.
9743
9744 @item vsbmc
9745 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).
9746 @end table
9747 @end table
9748
9749 @item scd
9750 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:
9751 @table @samp
9752 @item none
9753 Disable scene change detection.
9754 @item fdiff
9755 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
9756 @end table
9757 Default method is @samp{fdiff}.
9758
9759 @item scd_threshold
9760 Scene change detection threshold. Default is @code{5.0}.
9761 @end table
9762
9763 @section mpdecimate
9764
9765 Drop frames that do not differ greatly from the previous frame in
9766 order to reduce frame rate.
9767
9768 The main use of this filter is for very-low-bitrate encoding
9769 (e.g. streaming over dialup modem), but it could in theory be used for
9770 fixing movies that were inverse-telecined incorrectly.
9771
9772 A description of the accepted options follows.
9773
9774 @table @option
9775 @item max
9776 Set the maximum number of consecutive frames which can be dropped (if
9777 positive), or the minimum interval between dropped frames (if
9778 negative). If the value is 0, the frame is dropped unregarding the
9779 number of previous sequentially dropped frames.
9780
9781 Default value is 0.
9782
9783 @item hi
9784 @item lo
9785 @item frac
9786 Set the dropping threshold values.
9787
9788 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9789 represent actual pixel value differences, so a threshold of 64
9790 corresponds to 1 unit of difference for each pixel, or the same spread
9791 out differently over the block.
9792
9793 A frame is a candidate for dropping if no 8x8 blocks differ by more
9794 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9795 meaning the whole image) differ by more than a threshold of @option{lo}.
9796
9797 Default value for @option{hi} is 64*12, default value for @option{lo} is
9798 64*5, and default value for @option{frac} is 0.33.
9799 @end table
9800
9801
9802 @section negate
9803
9804 Negate input video.
9805
9806 It accepts an integer in input; if non-zero it negates the
9807 alpha component (if available). The default value in input is 0.
9808
9809 @section nlmeans
9810
9811 Denoise frames using Non-Local Means algorithm.
9812
9813 Each pixel is adjusted by looking for other pixels with similar contexts. This
9814 context similarity is defined by comparing their surrounding patches of size
9815 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
9816 around the pixel.
9817
9818 Note that the research area defines centers for patches, which means some
9819 patches will be made of pixels outside that research area.
9820
9821 The filter accepts the following options.
9822
9823 @table @option
9824 @item s
9825 Set denoising strength.
9826
9827 @item p
9828 Set patch size.
9829
9830 @item pc
9831 Same as @option{p} but for chroma planes.
9832
9833 The default value is @var{0} and means automatic.
9834
9835 @item r
9836 Set research size.
9837
9838 @item rc
9839 Same as @option{r} but for chroma planes.
9840
9841 The default value is @var{0} and means automatic.
9842 @end table
9843
9844 @section nnedi
9845
9846 Deinterlace video using neural network edge directed interpolation.
9847
9848 This filter accepts the following options:
9849
9850 @table @option
9851 @item weights
9852 Mandatory option, without binary file filter can not work.
9853 Currently file can be found here:
9854 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9855
9856 @item deint
9857 Set which frames to deinterlace, by default it is @code{all}.
9858 Can be @code{all} or @code{interlaced}.
9859
9860 @item field
9861 Set mode of operation.
9862
9863 Can be one of the following:
9864
9865 @table @samp
9866 @item af
9867 Use frame flags, both fields.
9868 @item a
9869 Use frame flags, single field.
9870 @item t
9871 Use top field only.
9872 @item b
9873 Use bottom field only.
9874 @item tf
9875 Use both fields, top first.
9876 @item bf
9877 Use both fields, bottom first.
9878 @end table
9879
9880 @item planes
9881 Set which planes to process, by default filter process all frames.
9882
9883 @item nsize
9884 Set size of local neighborhood around each pixel, used by the predictor neural
9885 network.
9886
9887 Can be one of the following:
9888
9889 @table @samp
9890 @item s8x6
9891 @item s16x6
9892 @item s32x6
9893 @item s48x6
9894 @item s8x4
9895 @item s16x4
9896 @item s32x4
9897 @end table
9898
9899 @item nns
9900 Set the number of neurons in predicctor neural network.
9901 Can be one of the following:
9902
9903 @table @samp
9904 @item n16
9905 @item n32
9906 @item n64
9907 @item n128
9908 @item n256
9909 @end table
9910
9911 @item qual
9912 Controls the number of different neural network predictions that are blended
9913 together to compute the final output value. Can be @code{fast}, default or
9914 @code{slow}.
9915
9916 @item etype
9917 Set which set of weights to use in the predictor.
9918 Can be one of the following:
9919
9920 @table @samp
9921 @item a
9922 weights trained to minimize absolute error
9923 @item s
9924 weights trained to minimize squared error
9925 @end table
9926
9927 @item pscrn
9928 Controls whether or not the prescreener neural network is used to decide
9929 which pixels should be processed by the predictor neural network and which
9930 can be handled by simple cubic interpolation.
9931 The prescreener is trained to know whether cubic interpolation will be
9932 sufficient for a pixel or whether it should be predicted by the predictor nn.
9933 The computational complexity of the prescreener nn is much less than that of
9934 the predictor nn. Since most pixels can be handled by cubic interpolation,
9935 using the prescreener generally results in much faster processing.
9936 The prescreener is pretty accurate, so the difference between using it and not
9937 using it is almost always unnoticeable.
9938
9939 Can be one of the following:
9940
9941 @table @samp
9942 @item none
9943 @item original
9944 @item new
9945 @end table
9946
9947 Default is @code{new}.
9948
9949 @item fapprox
9950 Set various debugging flags.
9951 @end table
9952
9953 @section noformat
9954
9955 Force libavfilter not to use any of the specified pixel formats for the
9956 input to the next filter.
9957
9958 It accepts the following parameters:
9959 @table @option
9960
9961 @item pix_fmts
9962 A '|'-separated list of pixel format names, such as
9963 apix_fmts=yuv420p|monow|rgb24".
9964
9965 @end table
9966
9967 @subsection Examples
9968
9969 @itemize
9970 @item
9971 Force libavfilter to use a format different from @var{yuv420p} for the
9972 input to the vflip filter:
9973 @example
9974 noformat=pix_fmts=yuv420p,vflip
9975 @end example
9976
9977 @item
9978 Convert the input video to any of the formats not contained in the list:
9979 @example
9980 noformat=yuv420p|yuv444p|yuv410p
9981 @end example
9982 @end itemize
9983
9984 @section noise
9985
9986 Add noise on video input frame.
9987
9988 The filter accepts the following options:
9989
9990 @table @option
9991 @item all_seed
9992 @item c0_seed
9993 @item c1_seed
9994 @item c2_seed
9995 @item c3_seed
9996 Set noise seed for specific pixel component or all pixel components in case
9997 of @var{all_seed}. Default value is @code{123457}.
9998
9999 @item all_strength, alls
10000 @item c0_strength, c0s
10001 @item c1_strength, c1s
10002 @item c2_strength, c2s
10003 @item c3_strength, c3s
10004 Set noise strength for specific pixel component or all pixel components in case
10005 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
10006
10007 @item all_flags, allf
10008 @item c0_flags, c0f
10009 @item c1_flags, c1f
10010 @item c2_flags, c2f
10011 @item c3_flags, c3f
10012 Set pixel component flags or set flags for all components if @var{all_flags}.
10013 Available values for component flags are:
10014 @table @samp
10015 @item a
10016 averaged temporal noise (smoother)
10017 @item p
10018 mix random noise with a (semi)regular pattern
10019 @item t
10020 temporal noise (noise pattern changes between frames)
10021 @item u
10022 uniform noise (gaussian otherwise)
10023 @end table
10024 @end table
10025
10026 @subsection Examples
10027
10028 Add temporal and uniform noise to input video:
10029 @example
10030 noise=alls=20:allf=t+u
10031 @end example
10032
10033 @section null
10034
10035 Pass the video source unchanged to the output.
10036
10037 @section ocr
10038 Optical Character Recognition
10039
10040 This filter uses Tesseract for optical character recognition.
10041
10042 It accepts the following options:
10043
10044 @table @option
10045 @item datapath
10046 Set datapath to tesseract data. Default is to use whatever was
10047 set at installation.
10048
10049 @item language
10050 Set language, default is "eng".
10051
10052 @item whitelist
10053 Set character whitelist.
10054
10055 @item blacklist
10056 Set character blacklist.
10057 @end table
10058
10059 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
10060
10061 @section ocv
10062
10063 Apply a video transform using libopencv.
10064
10065 To enable this filter, install the libopencv library and headers and
10066 configure FFmpeg with @code{--enable-libopencv}.
10067
10068 It accepts the following parameters:
10069
10070 @table @option
10071
10072 @item filter_name
10073 The name of the libopencv filter to apply.
10074
10075 @item filter_params
10076 The parameters to pass to the libopencv filter. If not specified, the default
10077 values are assumed.
10078
10079 @end table
10080
10081 Refer to the official libopencv documentation for more precise
10082 information:
10083 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
10084
10085 Several libopencv filters are supported; see the following subsections.
10086
10087 @anchor{dilate}
10088 @subsection dilate
10089
10090 Dilate an image by using a specific structuring element.
10091 It corresponds to the libopencv function @code{cvDilate}.
10092
10093 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
10094
10095 @var{struct_el} represents a structuring element, and has the syntax:
10096 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
10097
10098 @var{cols} and @var{rows} represent the number of columns and rows of
10099 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
10100 point, and @var{shape} the shape for the structuring element. @var{shape}
10101 must be "rect", "cross", "ellipse", or "custom".
10102
10103 If the value for @var{shape} is "custom", it must be followed by a
10104 string of the form "=@var{filename}". The file with name
10105 @var{filename} is assumed to represent a binary image, with each
10106 printable character corresponding to a bright pixel. When a custom
10107 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
10108 or columns and rows of the read file are assumed instead.
10109
10110 The default value for @var{struct_el} is "3x3+0x0/rect".
10111
10112 @var{nb_iterations} specifies the number of times the transform is
10113 applied to the image, and defaults to 1.
10114
10115 Some examples:
10116 @example
10117 # Use the default values
10118 ocv=dilate
10119
10120 # Dilate using a structuring element with a 5x5 cross, iterating two times
10121 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
10122
10123 # Read the shape from the file diamond.shape, iterating two times.
10124 # The file diamond.shape may contain a pattern of characters like this
10125 #   *
10126 #  ***
10127 # *****
10128 #  ***
10129 #   *
10130 # The specified columns and rows are ignored
10131 # but the anchor point coordinates are not
10132 ocv=dilate:0x0+2x2/custom=diamond.shape|2
10133 @end example
10134
10135 @subsection erode
10136
10137 Erode an image by using a specific structuring element.
10138 It corresponds to the libopencv function @code{cvErode}.
10139
10140 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
10141 with the same syntax and semantics as the @ref{dilate} filter.
10142
10143 @subsection smooth
10144
10145 Smooth the input video.
10146
10147 The filter takes the following parameters:
10148 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
10149
10150 @var{type} is the type of smooth filter to apply, and must be one of
10151 the following values: "blur", "blur_no_scale", "median", "gaussian",
10152 or "bilateral". The default value is "gaussian".
10153
10154 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
10155 depend on the smooth type. @var{param1} and
10156 @var{param2} accept integer positive values or 0. @var{param3} and
10157 @var{param4} accept floating point values.
10158
10159 The default value for @var{param1} is 3. The default value for the
10160 other parameters is 0.
10161
10162 These parameters correspond to the parameters assigned to the
10163 libopencv function @code{cvSmooth}.
10164
10165 @anchor{overlay}
10166 @section overlay
10167
10168 Overlay one video on top of another.
10169
10170 It takes two inputs and has one output. The first input is the "main"
10171 video on which the second input is overlaid.
10172
10173 It accepts the following parameters:
10174
10175 A description of the accepted options follows.
10176
10177 @table @option
10178 @item x
10179 @item y
10180 Set the expression for the x and y coordinates of the overlaid video
10181 on the main video. Default value is "0" for both expressions. In case
10182 the expression is invalid, it is set to a huge value (meaning that the
10183 overlay will not be displayed within the output visible area).
10184
10185 @item eof_action
10186 The action to take when EOF is encountered on the secondary input; it accepts
10187 one of the following values:
10188
10189 @table @option
10190 @item repeat
10191 Repeat the last frame (the default).
10192 @item endall
10193 End both streams.
10194 @item pass
10195 Pass the main input through.
10196 @end table
10197
10198 @item eval
10199 Set when the expressions for @option{x}, and @option{y} are evaluated.
10200
10201 It accepts the following values:
10202 @table @samp
10203 @item init
10204 only evaluate expressions once during the filter initialization or
10205 when a command is processed
10206
10207 @item frame
10208 evaluate expressions for each incoming frame
10209 @end table
10210
10211 Default value is @samp{frame}.
10212
10213 @item shortest
10214 If set to 1, force the output to terminate when the shortest input
10215 terminates. Default value is 0.
10216
10217 @item format
10218 Set the format for the output video.
10219
10220 It accepts the following values:
10221 @table @samp
10222 @item yuv420
10223 force YUV420 output
10224
10225 @item yuv422
10226 force YUV422 output
10227
10228 @item yuv444
10229 force YUV444 output
10230
10231 @item rgb
10232 force packed RGB output
10233
10234 @item gbrp
10235 force planar RGB output
10236 @end table
10237
10238 Default value is @samp{yuv420}.
10239
10240 @item rgb @emph{(deprecated)}
10241 If set to 1, force the filter to accept inputs in the RGB
10242 color space. Default value is 0. This option is deprecated, use
10243 @option{format} instead.
10244
10245 @item repeatlast
10246 If set to 1, force the filter to draw the last overlay frame over the
10247 main input until the end of the stream. A value of 0 disables this
10248 behavior. Default value is 1.
10249 @end table
10250
10251 The @option{x}, and @option{y} expressions can contain the following
10252 parameters.
10253
10254 @table @option
10255 @item main_w, W
10256 @item main_h, H
10257 The main input width and height.
10258
10259 @item overlay_w, w
10260 @item overlay_h, h
10261 The overlay input width and height.
10262
10263 @item x
10264 @item y
10265 The computed values for @var{x} and @var{y}. They are evaluated for
10266 each new frame.
10267
10268 @item hsub
10269 @item vsub
10270 horizontal and vertical chroma subsample values of the output
10271 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
10272 @var{vsub} is 1.
10273
10274 @item n
10275 the number of input frame, starting from 0
10276
10277 @item pos
10278 the position in the file of the input frame, NAN if unknown
10279
10280 @item t
10281 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
10282
10283 @end table
10284
10285 Note that the @var{n}, @var{pos}, @var{t} variables are available only
10286 when evaluation is done @emph{per frame}, and will evaluate to NAN
10287 when @option{eval} is set to @samp{init}.
10288
10289 Be aware that frames are taken from each input video in timestamp
10290 order, hence, if their initial timestamps differ, it is a good idea
10291 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
10292 have them begin in the same zero timestamp, as the example for
10293 the @var{movie} filter does.
10294
10295 You can chain together more overlays but you should test the
10296 efficiency of such approach.
10297
10298 @subsection Commands
10299
10300 This filter supports the following commands:
10301 @table @option
10302 @item x
10303 @item y
10304 Modify the x and y of the overlay input.
10305 The command accepts the same syntax of the corresponding option.
10306
10307 If the specified expression is not valid, it is kept at its current
10308 value.
10309 @end table
10310
10311 @subsection Examples
10312
10313 @itemize
10314 @item
10315 Draw the overlay at 10 pixels from the bottom right corner of the main
10316 video:
10317 @example
10318 overlay=main_w-overlay_w-10:main_h-overlay_h-10
10319 @end example
10320
10321 Using named options the example above becomes:
10322 @example
10323 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
10324 @end example
10325
10326 @item
10327 Insert a transparent PNG logo in the bottom left corner of the input,
10328 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
10329 @example
10330 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
10331 @end example
10332
10333 @item
10334 Insert 2 different transparent PNG logos (second logo on bottom
10335 right corner) using the @command{ffmpeg} tool:
10336 @example
10337 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
10338 @end example
10339
10340 @item
10341 Add a transparent color layer on top of the main video; @code{WxH}
10342 must specify the size of the main input to the overlay filter:
10343 @example
10344 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
10345 @end example
10346
10347 @item
10348 Play an original video and a filtered version (here with the deshake
10349 filter) side by side using the @command{ffplay} tool:
10350 @example
10351 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
10352 @end example
10353
10354 The above command is the same as:
10355 @example
10356 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
10357 @end example
10358
10359 @item
10360 Make a sliding overlay appearing from the left to the right top part of the
10361 screen starting since time 2:
10362 @example
10363 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
10364 @end example
10365
10366 @item
10367 Compose output by putting two input videos side to side:
10368 @example
10369 ffmpeg -i left.avi -i right.avi -filter_complex "
10370 nullsrc=size=200x100 [background];
10371 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
10372 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
10373 [background][left]       overlay=shortest=1       [background+left];
10374 [background+left][right] overlay=shortest=1:x=100 [left+right]
10375 "
10376 @end example
10377
10378 @item
10379 Mask 10-20 seconds of a video by applying the delogo filter to a section
10380 @example
10381 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
10382 -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]'
10383 masked.avi
10384 @end example
10385
10386 @item
10387 Chain several overlays in cascade:
10388 @example
10389 nullsrc=s=200x200 [bg];
10390 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
10391 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
10392 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
10393 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
10394 [in3] null,       [mid2] overlay=100:100 [out0]
10395 @end example
10396
10397 @end itemize
10398
10399 @section owdenoise
10400
10401 Apply Overcomplete Wavelet denoiser.
10402
10403 The filter accepts the following options:
10404
10405 @table @option
10406 @item depth
10407 Set depth.
10408
10409 Larger depth values will denoise lower frequency components more, but
10410 slow down filtering.
10411
10412 Must be an int in the range 8-16, default is @code{8}.
10413
10414 @item luma_strength, ls
10415 Set luma strength.
10416
10417 Must be a double value in the range 0-1000, default is @code{1.0}.
10418
10419 @item chroma_strength, cs
10420 Set chroma strength.
10421
10422 Must be a double value in the range 0-1000, default is @code{1.0}.
10423 @end table
10424
10425 @anchor{pad}
10426 @section pad
10427
10428 Add paddings to the input image, and place the original input at the
10429 provided @var{x}, @var{y} coordinates.
10430
10431 It accepts the following parameters:
10432
10433 @table @option
10434 @item width, w
10435 @item height, h
10436 Specify an expression for the size of the output image with the
10437 paddings added. If the value for @var{width} or @var{height} is 0, the
10438 corresponding input size is used for the output.
10439
10440 The @var{width} expression can reference the value set by the
10441 @var{height} expression, and vice versa.
10442
10443 The default value of @var{width} and @var{height} is 0.
10444
10445 @item x
10446 @item y
10447 Specify the offsets to place the input image at within the padded area,
10448 with respect to the top/left border of the output image.
10449
10450 The @var{x} expression can reference the value set by the @var{y}
10451 expression, and vice versa.
10452
10453 The default value of @var{x} and @var{y} is 0.
10454
10455 @item color
10456 Specify the color of the padded area. For the syntax of this option,
10457 check the "Color" section in the ffmpeg-utils manual.
10458
10459 The default value of @var{color} is "black".
10460
10461 @item eval
10462 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
10463
10464 It accepts the following values:
10465
10466 @table @samp
10467 @item init
10468 Only evaluate expressions once during the filter initialization or when
10469 a command is processed.
10470
10471 @item frame
10472 Evaluate expressions for each incoming frame.
10473
10474 @end table
10475
10476 Default value is @samp{init}.
10477
10478 @end table
10479
10480 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10481 options are expressions containing the following constants:
10482
10483 @table @option
10484 @item in_w
10485 @item in_h
10486 The input video width and height.
10487
10488 @item iw
10489 @item ih
10490 These are the same as @var{in_w} and @var{in_h}.
10491
10492 @item out_w
10493 @item out_h
10494 The output width and height (the size of the padded area), as
10495 specified by the @var{width} and @var{height} expressions.
10496
10497 @item ow
10498 @item oh
10499 These are the same as @var{out_w} and @var{out_h}.
10500
10501 @item x
10502 @item y
10503 The x and y offsets as specified by the @var{x} and @var{y}
10504 expressions, or NAN if not yet specified.
10505
10506 @item a
10507 same as @var{iw} / @var{ih}
10508
10509 @item sar
10510 input sample aspect ratio
10511
10512 @item dar
10513 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10514
10515 @item hsub
10516 @item vsub
10517 The horizontal and vertical chroma subsample values. For example for the
10518 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10519 @end table
10520
10521 @subsection Examples
10522
10523 @itemize
10524 @item
10525 Add paddings with the color "violet" to the input video. The output video
10526 size is 640x480, and the top-left corner of the input video is placed at
10527 column 0, row 40
10528 @example
10529 pad=640:480:0:40:violet
10530 @end example
10531
10532 The example above is equivalent to the following command:
10533 @example
10534 pad=width=640:height=480:x=0:y=40:color=violet
10535 @end example
10536
10537 @item
10538 Pad the input to get an output with dimensions increased by 3/2,
10539 and put the input video at the center of the padded area:
10540 @example
10541 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10542 @end example
10543
10544 @item
10545 Pad the input to get a squared output with size equal to the maximum
10546 value between the input width and height, and put the input video at
10547 the center of the padded area:
10548 @example
10549 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10550 @end example
10551
10552 @item
10553 Pad the input to get a final w/h ratio of 16:9:
10554 @example
10555 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10556 @end example
10557
10558 @item
10559 In case of anamorphic video, in order to set the output display aspect
10560 correctly, it is necessary to use @var{sar} in the expression,
10561 according to the relation:
10562 @example
10563 (ih * X / ih) * sar = output_dar
10564 X = output_dar / sar
10565 @end example
10566
10567 Thus the previous example needs to be modified to:
10568 @example
10569 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10570 @end example
10571
10572 @item
10573 Double the output size and put the input video in the bottom-right
10574 corner of the output padded area:
10575 @example
10576 pad="2*iw:2*ih:ow-iw:oh-ih"
10577 @end example
10578 @end itemize
10579
10580 @anchor{palettegen}
10581 @section palettegen
10582
10583 Generate one palette for a whole video stream.
10584
10585 It accepts the following options:
10586
10587 @table @option
10588 @item max_colors
10589 Set the maximum number of colors to quantize in the palette.
10590 Note: the palette will still contain 256 colors; the unused palette entries
10591 will be black.
10592
10593 @item reserve_transparent
10594 Create a palette of 255 colors maximum and reserve the last one for
10595 transparency. Reserving the transparency color is useful for GIF optimization.
10596 If not set, the maximum of colors in the palette will be 256. You probably want
10597 to disable this option for a standalone image.
10598 Set by default.
10599
10600 @item stats_mode
10601 Set statistics mode.
10602
10603 It accepts the following values:
10604 @table @samp
10605 @item full
10606 Compute full frame histograms.
10607 @item diff
10608 Compute histograms only for the part that differs from previous frame. This
10609 might be relevant to give more importance to the moving part of your input if
10610 the background is static.
10611 @item single
10612 Compute new histogram for each frame.
10613 @end table
10614
10615 Default value is @var{full}.
10616 @end table
10617
10618 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10619 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10620 color quantization of the palette. This information is also visible at
10621 @var{info} logging level.
10622
10623 @subsection Examples
10624
10625 @itemize
10626 @item
10627 Generate a representative palette of a given video using @command{ffmpeg}:
10628 @example
10629 ffmpeg -i input.mkv -vf palettegen palette.png
10630 @end example
10631 @end itemize
10632
10633 @section paletteuse
10634
10635 Use a palette to downsample an input video stream.
10636
10637 The filter takes two inputs: one video stream and a palette. The palette must
10638 be a 256 pixels image.
10639
10640 It accepts the following options:
10641
10642 @table @option
10643 @item dither
10644 Select dithering mode. Available algorithms are:
10645 @table @samp
10646 @item bayer
10647 Ordered 8x8 bayer dithering (deterministic)
10648 @item heckbert
10649 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10650 Note: this dithering is sometimes considered "wrong" and is included as a
10651 reference.
10652 @item floyd_steinberg
10653 Floyd and Steingberg dithering (error diffusion)
10654 @item sierra2
10655 Frankie Sierra dithering v2 (error diffusion)
10656 @item sierra2_4a
10657 Frankie Sierra dithering v2 "Lite" (error diffusion)
10658 @end table
10659
10660 Default is @var{sierra2_4a}.
10661
10662 @item bayer_scale
10663 When @var{bayer} dithering is selected, this option defines the scale of the
10664 pattern (how much the crosshatch pattern is visible). A low value means more
10665 visible pattern for less banding, and higher value means less visible pattern
10666 at the cost of more banding.
10667
10668 The option must be an integer value in the range [0,5]. Default is @var{2}.
10669
10670 @item diff_mode
10671 If set, define the zone to process
10672
10673 @table @samp
10674 @item rectangle
10675 Only the changing rectangle will be reprocessed. This is similar to GIF
10676 cropping/offsetting compression mechanism. This option can be useful for speed
10677 if only a part of the image is changing, and has use cases such as limiting the
10678 scope of the error diffusal @option{dither} to the rectangle that bounds the
10679 moving scene (it leads to more deterministic output if the scene doesn't change
10680 much, and as a result less moving noise and better GIF compression).
10681 @end table
10682
10683 Default is @var{none}.
10684
10685 @item new
10686 Take new palette for each output frame.
10687 @end table
10688
10689 @subsection Examples
10690
10691 @itemize
10692 @item
10693 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10694 using @command{ffmpeg}:
10695 @example
10696 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10697 @end example
10698 @end itemize
10699
10700 @section perspective
10701
10702 Correct perspective of video not recorded perpendicular to the screen.
10703
10704 A description of the accepted parameters follows.
10705
10706 @table @option
10707 @item x0
10708 @item y0
10709 @item x1
10710 @item y1
10711 @item x2
10712 @item y2
10713 @item x3
10714 @item y3
10715 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10716 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10717 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10718 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10719 then the corners of the source will be sent to the specified coordinates.
10720
10721 The expressions can use the following variables:
10722
10723 @table @option
10724 @item W
10725 @item H
10726 the width and height of video frame.
10727 @item in
10728 Input frame count.
10729 @item on
10730 Output frame count.
10731 @end table
10732
10733 @item interpolation
10734 Set interpolation for perspective correction.
10735
10736 It accepts the following values:
10737 @table @samp
10738 @item linear
10739 @item cubic
10740 @end table
10741
10742 Default value is @samp{linear}.
10743
10744 @item sense
10745 Set interpretation of coordinate options.
10746
10747 It accepts the following values:
10748 @table @samp
10749 @item 0, source
10750
10751 Send point in the source specified by the given coordinates to
10752 the corners of the destination.
10753
10754 @item 1, destination
10755
10756 Send the corners of the source to the point in the destination specified
10757 by the given coordinates.
10758
10759 Default value is @samp{source}.
10760 @end table
10761
10762 @item eval
10763 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10764
10765 It accepts the following values:
10766 @table @samp
10767 @item init
10768 only evaluate expressions once during the filter initialization or
10769 when a command is processed
10770
10771 @item frame
10772 evaluate expressions for each incoming frame
10773 @end table
10774
10775 Default value is @samp{init}.
10776 @end table
10777
10778 @section phase
10779
10780 Delay interlaced video by one field time so that the field order changes.
10781
10782 The intended use is to fix PAL movies that have been captured with the
10783 opposite field order to the film-to-video transfer.
10784
10785 A description of the accepted parameters follows.
10786
10787 @table @option
10788 @item mode
10789 Set phase mode.
10790
10791 It accepts the following values:
10792 @table @samp
10793 @item t
10794 Capture field order top-first, transfer bottom-first.
10795 Filter will delay the bottom field.
10796
10797 @item b
10798 Capture field order bottom-first, transfer top-first.
10799 Filter will delay the top field.
10800
10801 @item p
10802 Capture and transfer with the same field order. This mode only exists
10803 for the documentation of the other options to refer to, but if you
10804 actually select it, the filter will faithfully do nothing.
10805
10806 @item a
10807 Capture field order determined automatically by field flags, transfer
10808 opposite.
10809 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10810 basis using field flags. If no field information is available,
10811 then this works just like @samp{u}.
10812
10813 @item u
10814 Capture unknown or varying, transfer opposite.
10815 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10816 analyzing the images and selecting the alternative that produces best
10817 match between the fields.
10818
10819 @item T
10820 Capture top-first, transfer unknown or varying.
10821 Filter selects among @samp{t} and @samp{p} using image analysis.
10822
10823 @item B
10824 Capture bottom-first, transfer unknown or varying.
10825 Filter selects among @samp{b} and @samp{p} using image analysis.
10826
10827 @item A
10828 Capture determined by field flags, transfer unknown or varying.
10829 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10830 image analysis. If no field information is available, then this works just
10831 like @samp{U}. This is the default mode.
10832
10833 @item U
10834 Both capture and transfer unknown or varying.
10835 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10836 @end table
10837 @end table
10838
10839 @section pixdesctest
10840
10841 Pixel format descriptor test filter, mainly useful for internal
10842 testing. The output video should be equal to the input video.
10843
10844 For example:
10845 @example
10846 format=monow, pixdesctest
10847 @end example
10848
10849 can be used to test the monowhite pixel format descriptor definition.
10850
10851 @section pp
10852
10853 Enable the specified chain of postprocessing subfilters using libpostproc. This
10854 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10855 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10856 Each subfilter and some options have a short and a long name that can be used
10857 interchangeably, i.e. dr/dering are the same.
10858
10859 The filters accept the following options:
10860
10861 @table @option
10862 @item subfilters
10863 Set postprocessing subfilters string.
10864 @end table
10865
10866 All subfilters share common options to determine their scope:
10867
10868 @table @option
10869 @item a/autoq
10870 Honor the quality commands for this subfilter.
10871
10872 @item c/chrom
10873 Do chrominance filtering, too (default).
10874
10875 @item y/nochrom
10876 Do luminance filtering only (no chrominance).
10877
10878 @item n/noluma
10879 Do chrominance filtering only (no luminance).
10880 @end table
10881
10882 These options can be appended after the subfilter name, separated by a '|'.
10883
10884 Available subfilters are:
10885
10886 @table @option
10887 @item hb/hdeblock[|difference[|flatness]]
10888 Horizontal deblocking filter
10889 @table @option
10890 @item difference
10891 Difference factor where higher values mean more deblocking (default: @code{32}).
10892 @item flatness
10893 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10894 @end table
10895
10896 @item vb/vdeblock[|difference[|flatness]]
10897 Vertical deblocking filter
10898 @table @option
10899 @item difference
10900 Difference factor where higher values mean more deblocking (default: @code{32}).
10901 @item flatness
10902 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10903 @end table
10904
10905 @item ha/hadeblock[|difference[|flatness]]
10906 Accurate horizontal deblocking filter
10907 @table @option
10908 @item difference
10909 Difference factor where higher values mean more deblocking (default: @code{32}).
10910 @item flatness
10911 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10912 @end table
10913
10914 @item va/vadeblock[|difference[|flatness]]
10915 Accurate vertical deblocking filter
10916 @table @option
10917 @item difference
10918 Difference factor where higher values mean more deblocking (default: @code{32}).
10919 @item flatness
10920 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10921 @end table
10922 @end table
10923
10924 The horizontal and vertical deblocking filters share the difference and
10925 flatness values so you cannot set different horizontal and vertical
10926 thresholds.
10927
10928 @table @option
10929 @item h1/x1hdeblock
10930 Experimental horizontal deblocking filter
10931
10932 @item v1/x1vdeblock
10933 Experimental vertical deblocking filter
10934
10935 @item dr/dering
10936 Deringing filter
10937
10938 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10939 @table @option
10940 @item threshold1
10941 larger -> stronger filtering
10942 @item threshold2
10943 larger -> stronger filtering
10944 @item threshold3
10945 larger -> stronger filtering
10946 @end table
10947
10948 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10949 @table @option
10950 @item f/fullyrange
10951 Stretch luminance to @code{0-255}.
10952 @end table
10953
10954 @item lb/linblenddeint
10955 Linear blend deinterlacing filter that deinterlaces the given block by
10956 filtering all lines with a @code{(1 2 1)} filter.
10957
10958 @item li/linipoldeint
10959 Linear interpolating deinterlacing filter that deinterlaces the given block by
10960 linearly interpolating every second line.
10961
10962 @item ci/cubicipoldeint
10963 Cubic interpolating deinterlacing filter deinterlaces the given block by
10964 cubically interpolating every second line.
10965
10966 @item md/mediandeint
10967 Median deinterlacing filter that deinterlaces the given block by applying a
10968 median filter to every second line.
10969
10970 @item fd/ffmpegdeint
10971 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10972 second line with a @code{(-1 4 2 4 -1)} filter.
10973
10974 @item l5/lowpass5
10975 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10976 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10977
10978 @item fq/forceQuant[|quantizer]
10979 Overrides the quantizer table from the input with the constant quantizer you
10980 specify.
10981 @table @option
10982 @item quantizer
10983 Quantizer to use
10984 @end table
10985
10986 @item de/default
10987 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10988
10989 @item fa/fast
10990 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10991
10992 @item ac
10993 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10994 @end table
10995
10996 @subsection Examples
10997
10998 @itemize
10999 @item
11000 Apply horizontal and vertical deblocking, deringing and automatic
11001 brightness/contrast:
11002 @example
11003 pp=hb/vb/dr/al
11004 @end example
11005
11006 @item
11007 Apply default filters without brightness/contrast correction:
11008 @example
11009 pp=de/-al
11010 @end example
11011
11012 @item
11013 Apply default filters and temporal denoiser:
11014 @example
11015 pp=default/tmpnoise|1|2|3
11016 @end example
11017
11018 @item
11019 Apply deblocking on luminance only, and switch vertical deblocking on or off
11020 automatically depending on available CPU time:
11021 @example
11022 pp=hb|y/vb|a
11023 @end example
11024 @end itemize
11025
11026 @section pp7
11027 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
11028 similar to spp = 6 with 7 point DCT, where only the center sample is
11029 used after IDCT.
11030
11031 The filter accepts the following options:
11032
11033 @table @option
11034 @item qp
11035 Force a constant quantization parameter. It accepts an integer in range
11036 0 to 63. If not set, the filter will use the QP from the video stream
11037 (if available).
11038
11039 @item mode
11040 Set thresholding mode. Available modes are:
11041
11042 @table @samp
11043 @item hard
11044 Set hard thresholding.
11045 @item soft
11046 Set soft thresholding (better de-ringing effect, but likely blurrier).
11047 @item medium
11048 Set medium thresholding (good results, default).
11049 @end table
11050 @end table
11051
11052 @section premultiply
11053 Apply alpha premultiply effect to input video stream using first plane
11054 of second stream as alpha.
11055
11056 Both streams must have same dimensions and same pixel format.
11057
11058 @section prewitt
11059 Apply prewitt operator to input video stream.
11060
11061 The filter accepts the following option:
11062
11063 @table @option
11064 @item planes
11065 Set which planes will be processed, unprocessed planes will be copied.
11066 By default value 0xf, all planes will be processed.
11067
11068 @item scale
11069 Set value which will be multiplied with filtered result.
11070
11071 @item delta
11072 Set value which will be added to filtered result.
11073 @end table
11074
11075 @section psnr
11076
11077 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
11078 Ratio) between two input videos.
11079
11080 This filter takes in input two input videos, the first input is
11081 considered the "main" source and is passed unchanged to the
11082 output. The second input is used as a "reference" video for computing
11083 the PSNR.
11084
11085 Both video inputs must have the same resolution and pixel format for
11086 this filter to work correctly. Also it assumes that both inputs
11087 have the same number of frames, which are compared one by one.
11088
11089 The obtained average PSNR is printed through the logging system.
11090
11091 The filter stores the accumulated MSE (mean squared error) of each
11092 frame, and at the end of the processing it is averaged across all frames
11093 equally, and the following formula is applied to obtain the PSNR:
11094
11095 @example
11096 PSNR = 10*log10(MAX^2/MSE)
11097 @end example
11098
11099 Where MAX is the average of the maximum values of each component of the
11100 image.
11101
11102 The description of the accepted parameters follows.
11103
11104 @table @option
11105 @item stats_file, f
11106 If specified the filter will use the named file to save the PSNR of
11107 each individual frame. When filename equals "-" the data is sent to
11108 standard output.
11109
11110 @item stats_version
11111 Specifies which version of the stats file format to use. Details of
11112 each format are written below.
11113 Default value is 1.
11114
11115 @item stats_add_max
11116 Determines whether the max value is output to the stats log.
11117 Default value is 0.
11118 Requires stats_version >= 2. If this is set and stats_version < 2,
11119 the filter will return an error.
11120 @end table
11121
11122 The file printed if @var{stats_file} is selected, contains a sequence of
11123 key/value pairs of the form @var{key}:@var{value} for each compared
11124 couple of frames.
11125
11126 If a @var{stats_version} greater than 1 is specified, a header line precedes
11127 the list of per-frame-pair stats, with key value pairs following the frame
11128 format with the following parameters:
11129
11130 @table @option
11131 @item psnr_log_version
11132 The version of the log file format. Will match @var{stats_version}.
11133
11134 @item fields
11135 A comma separated list of the per-frame-pair parameters included in
11136 the log.
11137 @end table
11138
11139 A description of each shown per-frame-pair parameter follows:
11140
11141 @table @option
11142 @item n
11143 sequential number of the input frame, starting from 1
11144
11145 @item mse_avg
11146 Mean Square Error pixel-by-pixel average difference of the compared
11147 frames, averaged over all the image components.
11148
11149 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
11150 Mean Square Error pixel-by-pixel average difference of the compared
11151 frames for the component specified by the suffix.
11152
11153 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
11154 Peak Signal to Noise ratio of the compared frames for the component
11155 specified by the suffix.
11156
11157 @item max_avg, max_y, max_u, max_v
11158 Maximum allowed value for each channel, and average over all
11159 channels.
11160 @end table
11161
11162 For example:
11163 @example
11164 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
11165 [main][ref] psnr="stats_file=stats.log" [out]
11166 @end example
11167
11168 On this example the input file being processed is compared with the
11169 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
11170 is stored in @file{stats.log}.
11171
11172 @anchor{pullup}
11173 @section pullup
11174
11175 Pulldown reversal (inverse telecine) filter, capable of handling mixed
11176 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
11177 content.
11178
11179 The pullup filter is designed to take advantage of future context in making
11180 its decisions. This filter is stateless in the sense that it does not lock
11181 onto a pattern to follow, but it instead looks forward to the following
11182 fields in order to identify matches and rebuild progressive frames.
11183
11184 To produce content with an even framerate, insert the fps filter after
11185 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
11186 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
11187
11188 The filter accepts the following options:
11189
11190 @table @option
11191 @item jl
11192 @item jr
11193 @item jt
11194 @item jb
11195 These options set the amount of "junk" to ignore at the left, right, top, and
11196 bottom of the image, respectively. Left and right are in units of 8 pixels,
11197 while top and bottom are in units of 2 lines.
11198 The default is 8 pixels on each side.
11199
11200 @item sb
11201 Set the strict breaks. Setting this option to 1 will reduce the chances of
11202 filter generating an occasional mismatched frame, but it may also cause an
11203 excessive number of frames to be dropped during high motion sequences.
11204 Conversely, setting it to -1 will make filter match fields more easily.
11205 This may help processing of video where there is slight blurring between
11206 the fields, but may also cause there to be interlaced frames in the output.
11207 Default value is @code{0}.
11208
11209 @item mp
11210 Set the metric plane to use. It accepts the following values:
11211 @table @samp
11212 @item l
11213 Use luma plane.
11214
11215 @item u
11216 Use chroma blue plane.
11217
11218 @item v
11219 Use chroma red plane.
11220 @end table
11221
11222 This option may be set to use chroma plane instead of the default luma plane
11223 for doing filter's computations. This may improve accuracy on very clean
11224 source material, but more likely will decrease accuracy, especially if there
11225 is chroma noise (rainbow effect) or any grayscale video.
11226 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
11227 load and make pullup usable in realtime on slow machines.
11228 @end table
11229
11230 For best results (without duplicated frames in the output file) it is
11231 necessary to change the output frame rate. For example, to inverse
11232 telecine NTSC input:
11233 @example
11234 ffmpeg -i input -vf pullup -r 24000/1001 ...
11235 @end example
11236
11237 @section qp
11238
11239 Change video quantization parameters (QP).
11240
11241 The filter accepts the following option:
11242
11243 @table @option
11244 @item qp
11245 Set expression for quantization parameter.
11246 @end table
11247
11248 The expression is evaluated through the eval API and can contain, among others,
11249 the following constants:
11250
11251 @table @var
11252 @item known
11253 1 if index is not 129, 0 otherwise.
11254
11255 @item qp
11256 Sequentional index starting from -129 to 128.
11257 @end table
11258
11259 @subsection Examples
11260
11261 @itemize
11262 @item
11263 Some equation like:
11264 @example
11265 qp=2+2*sin(PI*qp)
11266 @end example
11267 @end itemize
11268
11269 @section random
11270
11271 Flush video frames from internal cache of frames into a random order.
11272 No frame is discarded.
11273 Inspired by @ref{frei0r} nervous filter.
11274
11275 @table @option
11276 @item frames
11277 Set size in number of frames of internal cache, in range from @code{2} to
11278 @code{512}. Default is @code{30}.
11279
11280 @item seed
11281 Set seed for random number generator, must be an integer included between
11282 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
11283 less than @code{0}, the filter will try to use a good random seed on a
11284 best effort basis.
11285 @end table
11286
11287 @section readeia608
11288
11289 Read closed captioning (EIA-608) information from the top lines of a video frame.
11290
11291 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
11292 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
11293 with EIA-608 data (starting from 0). A description of each metadata value follows:
11294
11295 @table @option
11296 @item lavfi.readeia608.X.cc
11297 The two bytes stored as EIA-608 data (printed in hexadecimal).
11298
11299 @item lavfi.readeia608.X.line
11300 The number of the line on which the EIA-608 data was identified and read.
11301 @end table
11302
11303 This filter accepts the following options:
11304
11305 @table @option
11306 @item scan_min
11307 Set the line to start scanning for EIA-608 data. Default is @code{0}.
11308
11309 @item scan_max
11310 Set the line to end scanning for EIA-608 data. Default is @code{29}.
11311
11312 @item mac
11313 Set minimal acceptable amplitude change for sync codes detection.
11314 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
11315
11316 @item spw
11317 Set the ratio of width reserved for sync code detection.
11318 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
11319
11320 @item mhd
11321 Set the max peaks height difference for sync code detection.
11322 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11323
11324 @item mpd
11325 Set max peaks period difference for sync code detection.
11326 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11327
11328 @item msd
11329 Set the first two max start code bits differences.
11330 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
11331
11332 @item bhd
11333 Set the minimum ratio of bits height compared to 3rd start code bit.
11334 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
11335
11336 @item th_w
11337 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
11338
11339 @item th_b
11340 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
11341
11342 @item chp
11343 Enable checking the parity bit. In the event of a parity error, the filter will output
11344 @code{0x00} for that character. Default is false.
11345 @end table
11346
11347 @subsection Examples
11348
11349 @itemize
11350 @item
11351 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
11352 @example
11353 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
11354 @end example
11355 @end itemize
11356
11357 @section readvitc
11358
11359 Read vertical interval timecode (VITC) information from the top lines of a
11360 video frame.
11361
11362 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
11363 timecode value, if a valid timecode has been detected. Further metadata key
11364 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
11365 timecode data has been found or not.
11366
11367 This filter accepts the following options:
11368
11369 @table @option
11370 @item scan_max
11371 Set the maximum number of lines to scan for VITC data. If the value is set to
11372 @code{-1} the full video frame is scanned. Default is @code{45}.
11373
11374 @item thr_b
11375 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
11376 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
11377
11378 @item thr_w
11379 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
11380 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
11381 @end table
11382
11383 @subsection Examples
11384
11385 @itemize
11386 @item
11387 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
11388 draw @code{--:--:--:--} as a placeholder:
11389 @example
11390 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
11391 @end example
11392 @end itemize
11393
11394 @section remap
11395
11396 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
11397
11398 Destination pixel at position (X, Y) will be picked from source (x, y) position
11399 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
11400 value for pixel will be used for destination pixel.
11401
11402 Xmap and Ymap input video streams must be of same dimensions. Output video stream
11403 will have Xmap/Ymap video stream dimensions.
11404 Xmap and Ymap input video streams are 16bit depth, single channel.
11405
11406 @section removegrain
11407
11408 The removegrain filter is a spatial denoiser for progressive video.
11409
11410 @table @option
11411 @item m0
11412 Set mode for the first plane.
11413
11414 @item m1
11415 Set mode for the second plane.
11416
11417 @item m2
11418 Set mode for the third plane.
11419
11420 @item m3
11421 Set mode for the fourth plane.
11422 @end table
11423
11424 Range of mode is from 0 to 24. Description of each mode follows:
11425
11426 @table @var
11427 @item 0
11428 Leave input plane unchanged. Default.
11429
11430 @item 1
11431 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
11432
11433 @item 2
11434 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
11435
11436 @item 3
11437 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
11438
11439 @item 4
11440 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
11441 This is equivalent to a median filter.
11442
11443 @item 5
11444 Line-sensitive clipping giving the minimal change.
11445
11446 @item 6
11447 Line-sensitive clipping, intermediate.
11448
11449 @item 7
11450 Line-sensitive clipping, intermediate.
11451
11452 @item 8
11453 Line-sensitive clipping, intermediate.
11454
11455 @item 9
11456 Line-sensitive clipping on a line where the neighbours pixels are the closest.
11457
11458 @item 10
11459 Replaces the target pixel with the closest neighbour.
11460
11461 @item 11
11462 [1 2 1] horizontal and vertical kernel blur.
11463
11464 @item 12
11465 Same as mode 11.
11466
11467 @item 13
11468 Bob mode, interpolates top field from the line where the neighbours
11469 pixels are the closest.
11470
11471 @item 14
11472 Bob mode, interpolates bottom field from the line where the neighbours
11473 pixels are the closest.
11474
11475 @item 15
11476 Bob mode, interpolates top field. Same as 13 but with a more complicated
11477 interpolation formula.
11478
11479 @item 16
11480 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
11481 interpolation formula.
11482
11483 @item 17
11484 Clips the pixel with the minimum and maximum of respectively the maximum and
11485 minimum of each pair of opposite neighbour pixels.
11486
11487 @item 18
11488 Line-sensitive clipping using opposite neighbours whose greatest distance from
11489 the current pixel is minimal.
11490
11491 @item 19
11492 Replaces the pixel with the average of its 8 neighbours.
11493
11494 @item 20
11495 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
11496
11497 @item 21
11498 Clips pixels using the averages of opposite neighbour.
11499
11500 @item 22
11501 Same as mode 21 but simpler and faster.
11502
11503 @item 23
11504 Small edge and halo removal, but reputed useless.
11505
11506 @item 24
11507 Similar as 23.
11508 @end table
11509
11510 @section removelogo
11511
11512 Suppress a TV station logo, using an image file to determine which
11513 pixels comprise the logo. It works by filling in the pixels that
11514 comprise the logo with neighboring pixels.
11515
11516 The filter accepts the following options:
11517
11518 @table @option
11519 @item filename, f
11520 Set the filter bitmap file, which can be any image format supported by
11521 libavformat. The width and height of the image file must match those of the
11522 video stream being processed.
11523 @end table
11524
11525 Pixels in the provided bitmap image with a value of zero are not
11526 considered part of the logo, non-zero pixels are considered part of
11527 the logo. If you use white (255) for the logo and black (0) for the
11528 rest, you will be safe. For making the filter bitmap, it is
11529 recommended to take a screen capture of a black frame with the logo
11530 visible, and then using a threshold filter followed by the erode
11531 filter once or twice.
11532
11533 If needed, little splotches can be fixed manually. Remember that if
11534 logo pixels are not covered, the filter quality will be much
11535 reduced. Marking too many pixels as part of the logo does not hurt as
11536 much, but it will increase the amount of blurring needed to cover over
11537 the image and will destroy more information than necessary, and extra
11538 pixels will slow things down on a large logo.
11539
11540 @section repeatfields
11541
11542 This filter uses the repeat_field flag from the Video ES headers and hard repeats
11543 fields based on its value.
11544
11545 @section reverse
11546
11547 Reverse a video clip.
11548
11549 Warning: This filter requires memory to buffer the entire clip, so trimming
11550 is suggested.
11551
11552 @subsection Examples
11553
11554 @itemize
11555 @item
11556 Take the first 5 seconds of a clip, and reverse it.
11557 @example
11558 trim=end=5,reverse
11559 @end example
11560 @end itemize
11561
11562 @section rotate
11563
11564 Rotate video by an arbitrary angle expressed in radians.
11565
11566 The filter accepts the following options:
11567
11568 A description of the optional parameters follows.
11569 @table @option
11570 @item angle, a
11571 Set an expression for the angle by which to rotate the input video
11572 clockwise, expressed as a number of radians. A negative value will
11573 result in a counter-clockwise rotation. By default it is set to "0".
11574
11575 This expression is evaluated for each frame.
11576
11577 @item out_w, ow
11578 Set the output width expression, default value is "iw".
11579 This expression is evaluated just once during configuration.
11580
11581 @item out_h, oh
11582 Set the output height expression, default value is "ih".
11583 This expression is evaluated just once during configuration.
11584
11585 @item bilinear
11586 Enable bilinear interpolation if set to 1, a value of 0 disables
11587 it. Default value is 1.
11588
11589 @item fillcolor, c
11590 Set the color used to fill the output area not covered by the rotated
11591 image. For the general syntax of this option, check the "Color" section in the
11592 ffmpeg-utils manual. If the special value "none" is selected then no
11593 background is printed (useful for example if the background is never shown).
11594
11595 Default value is "black".
11596 @end table
11597
11598 The expressions for the angle and the output size can contain the
11599 following constants and functions:
11600
11601 @table @option
11602 @item n
11603 sequential number of the input frame, starting from 0. It is always NAN
11604 before the first frame is filtered.
11605
11606 @item t
11607 time in seconds of the input frame, it is set to 0 when the filter is
11608 configured. It is always NAN before the first frame is filtered.
11609
11610 @item hsub
11611 @item vsub
11612 horizontal and vertical chroma subsample values. For example for the
11613 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11614
11615 @item in_w, iw
11616 @item in_h, ih
11617 the input video width and height
11618
11619 @item out_w, ow
11620 @item out_h, oh
11621 the output width and height, that is the size of the padded area as
11622 specified by the @var{width} and @var{height} expressions
11623
11624 @item rotw(a)
11625 @item roth(a)
11626 the minimal width/height required for completely containing the input
11627 video rotated by @var{a} radians.
11628
11629 These are only available when computing the @option{out_w} and
11630 @option{out_h} expressions.
11631 @end table
11632
11633 @subsection Examples
11634
11635 @itemize
11636 @item
11637 Rotate the input by PI/6 radians clockwise:
11638 @example
11639 rotate=PI/6
11640 @end example
11641
11642 @item
11643 Rotate the input by PI/6 radians counter-clockwise:
11644 @example
11645 rotate=-PI/6
11646 @end example
11647
11648 @item
11649 Rotate the input by 45 degrees clockwise:
11650 @example
11651 rotate=45*PI/180
11652 @end example
11653
11654 @item
11655 Apply a constant rotation with period T, starting from an angle of PI/3:
11656 @example
11657 rotate=PI/3+2*PI*t/T
11658 @end example
11659
11660 @item
11661 Make the input video rotation oscillating with a period of T
11662 seconds and an amplitude of A radians:
11663 @example
11664 rotate=A*sin(2*PI/T*t)
11665 @end example
11666
11667 @item
11668 Rotate the video, output size is chosen so that the whole rotating
11669 input video is always completely contained in the output:
11670 @example
11671 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11672 @end example
11673
11674 @item
11675 Rotate the video, reduce the output size so that no background is ever
11676 shown:
11677 @example
11678 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11679 @end example
11680 @end itemize
11681
11682 @subsection Commands
11683
11684 The filter supports the following commands:
11685
11686 @table @option
11687 @item a, angle
11688 Set the angle expression.
11689 The command accepts the same syntax of the corresponding option.
11690
11691 If the specified expression is not valid, it is kept at its current
11692 value.
11693 @end table
11694
11695 @section sab
11696
11697 Apply Shape Adaptive Blur.
11698
11699 The filter accepts the following options:
11700
11701 @table @option
11702 @item luma_radius, lr
11703 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11704 value is 1.0. A greater value will result in a more blurred image, and
11705 in slower processing.
11706
11707 @item luma_pre_filter_radius, lpfr
11708 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11709 value is 1.0.
11710
11711 @item luma_strength, ls
11712 Set luma maximum difference between pixels to still be considered, must
11713 be a value in the 0.1-100.0 range, default value is 1.0.
11714
11715 @item chroma_radius, cr
11716 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11717 greater value will result in a more blurred image, and in slower
11718 processing.
11719
11720 @item chroma_pre_filter_radius, cpfr
11721 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11722
11723 @item chroma_strength, cs
11724 Set chroma maximum difference between pixels to still be considered,
11725 must be a value in the -0.9-100.0 range.
11726 @end table
11727
11728 Each chroma option value, if not explicitly specified, is set to the
11729 corresponding luma option value.
11730
11731 @anchor{scale}
11732 @section scale
11733
11734 Scale (resize) the input video, using the libswscale library.
11735
11736 The scale filter forces the output display aspect ratio to be the same
11737 of the input, by changing the output sample aspect ratio.
11738
11739 If the input image format is different from the format requested by
11740 the next filter, the scale filter will convert the input to the
11741 requested format.
11742
11743 @subsection Options
11744 The filter accepts the following options, or any of the options
11745 supported by the libswscale scaler.
11746
11747 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11748 the complete list of scaler options.
11749
11750 @table @option
11751 @item width, w
11752 @item height, h
11753 Set the output video dimension expression. Default value is the input
11754 dimension.
11755
11756 If the value is 0, the input width is used for the output.
11757
11758 If one of the values is -1, the scale filter will use a value that
11759 maintains the aspect ratio of the input image, calculated from the
11760 other specified dimension. If both of them are -1, the input size is
11761 used
11762
11763 If one of the values is -n with n > 1, the scale filter will also use a value
11764 that maintains the aspect ratio of the input image, calculated from the other
11765 specified dimension. After that it will, however, make sure that the calculated
11766 dimension is divisible by n and adjust the value if necessary.
11767
11768 See below for the list of accepted constants for use in the dimension
11769 expression.
11770
11771 @item eval
11772 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11773
11774 @table @samp
11775 @item init
11776 Only evaluate expressions once during the filter initialization or when a command is processed.
11777
11778 @item frame
11779 Evaluate expressions for each incoming frame.
11780
11781 @end table
11782
11783 Default value is @samp{init}.
11784
11785
11786 @item interl
11787 Set the interlacing mode. It accepts the following values:
11788
11789 @table @samp
11790 @item 1
11791 Force interlaced aware scaling.
11792
11793 @item 0
11794 Do not apply interlaced scaling.
11795
11796 @item -1
11797 Select interlaced aware scaling depending on whether the source frames
11798 are flagged as interlaced or not.
11799 @end table
11800
11801 Default value is @samp{0}.
11802
11803 @item flags
11804 Set libswscale scaling flags. See
11805 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11806 complete list of values. If not explicitly specified the filter applies
11807 the default flags.
11808
11809
11810 @item param0, param1
11811 Set libswscale input parameters for scaling algorithms that need them. See
11812 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11813 complete documentation. If not explicitly specified the filter applies
11814 empty parameters.
11815
11816
11817
11818 @item size, s
11819 Set the video size. For the syntax of this option, check the
11820 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11821
11822 @item in_color_matrix
11823 @item out_color_matrix
11824 Set in/output YCbCr color space type.
11825
11826 This allows the autodetected value to be overridden as well as allows forcing
11827 a specific value used for the output and encoder.
11828
11829 If not specified, the color space type depends on the pixel format.
11830
11831 Possible values:
11832
11833 @table @samp
11834 @item auto
11835 Choose automatically.
11836
11837 @item bt709
11838 Format conforming to International Telecommunication Union (ITU)
11839 Recommendation BT.709.
11840
11841 @item fcc
11842 Set color space conforming to the United States Federal Communications
11843 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11844
11845 @item bt601
11846 Set color space conforming to:
11847
11848 @itemize
11849 @item
11850 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11851
11852 @item
11853 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11854
11855 @item
11856 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11857
11858 @end itemize
11859
11860 @item smpte240m
11861 Set color space conforming to SMPTE ST 240:1999.
11862 @end table
11863
11864 @item in_range
11865 @item out_range
11866 Set in/output YCbCr sample range.
11867
11868 This allows the autodetected value to be overridden as well as allows forcing
11869 a specific value used for the output and encoder. If not specified, the
11870 range depends on the pixel format. Possible values:
11871
11872 @table @samp
11873 @item auto
11874 Choose automatically.
11875
11876 @item jpeg/full/pc
11877 Set full range (0-255 in case of 8-bit luma).
11878
11879 @item mpeg/tv
11880 Set "MPEG" range (16-235 in case of 8-bit luma).
11881 @end table
11882
11883 @item force_original_aspect_ratio
11884 Enable decreasing or increasing output video width or height if necessary to
11885 keep the original aspect ratio. Possible values:
11886
11887 @table @samp
11888 @item disable
11889 Scale the video as specified and disable this feature.
11890
11891 @item decrease
11892 The output video dimensions will automatically be decreased if needed.
11893
11894 @item increase
11895 The output video dimensions will automatically be increased if needed.
11896
11897 @end table
11898
11899 One useful instance of this option is that when you know a specific device's
11900 maximum allowed resolution, you can use this to limit the output video to
11901 that, while retaining the aspect ratio. For example, device A allows
11902 1280x720 playback, and your video is 1920x800. Using this option (set it to
11903 decrease) and specifying 1280x720 to the command line makes the output
11904 1280x533.
11905
11906 Please note that this is a different thing than specifying -1 for @option{w}
11907 or @option{h}, you still need to specify the output resolution for this option
11908 to work.
11909
11910 @end table
11911
11912 The values of the @option{w} and @option{h} options are expressions
11913 containing the following constants:
11914
11915 @table @var
11916 @item in_w
11917 @item in_h
11918 The input width and height
11919
11920 @item iw
11921 @item ih
11922 These are the same as @var{in_w} and @var{in_h}.
11923
11924 @item out_w
11925 @item out_h
11926 The output (scaled) width and height
11927
11928 @item ow
11929 @item oh
11930 These are the same as @var{out_w} and @var{out_h}
11931
11932 @item a
11933 The same as @var{iw} / @var{ih}
11934
11935 @item sar
11936 input sample aspect ratio
11937
11938 @item dar
11939 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11940
11941 @item hsub
11942 @item vsub
11943 horizontal and vertical input chroma subsample values. For example for the
11944 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11945
11946 @item ohsub
11947 @item ovsub
11948 horizontal and vertical output chroma subsample values. For example for the
11949 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11950 @end table
11951
11952 @subsection Examples
11953
11954 @itemize
11955 @item
11956 Scale the input video to a size of 200x100
11957 @example
11958 scale=w=200:h=100
11959 @end example
11960
11961 This is equivalent to:
11962 @example
11963 scale=200:100
11964 @end example
11965
11966 or:
11967 @example
11968 scale=200x100
11969 @end example
11970
11971 @item
11972 Specify a size abbreviation for the output size:
11973 @example
11974 scale=qcif
11975 @end example
11976
11977 which can also be written as:
11978 @example
11979 scale=size=qcif
11980 @end example
11981
11982 @item
11983 Scale the input to 2x:
11984 @example
11985 scale=w=2*iw:h=2*ih
11986 @end example
11987
11988 @item
11989 The above is the same as:
11990 @example
11991 scale=2*in_w:2*in_h
11992 @end example
11993
11994 @item
11995 Scale the input to 2x with forced interlaced scaling:
11996 @example
11997 scale=2*iw:2*ih:interl=1
11998 @end example
11999
12000 @item
12001 Scale the input to half size:
12002 @example
12003 scale=w=iw/2:h=ih/2
12004 @end example
12005
12006 @item
12007 Increase the width, and set the height to the same size:
12008 @example
12009 scale=3/2*iw:ow
12010 @end example
12011
12012 @item
12013 Seek Greek harmony:
12014 @example
12015 scale=iw:1/PHI*iw
12016 scale=ih*PHI:ih
12017 @end example
12018
12019 @item
12020 Increase the height, and set the width to 3/2 of the height:
12021 @example
12022 scale=w=3/2*oh:h=3/5*ih
12023 @end example
12024
12025 @item
12026 Increase the size, making the size a multiple of the chroma
12027 subsample values:
12028 @example
12029 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
12030 @end example
12031
12032 @item
12033 Increase the width to a maximum of 500 pixels,
12034 keeping the same aspect ratio as the input:
12035 @example
12036 scale=w='min(500\, iw*3/2):h=-1'
12037 @end example
12038 @end itemize
12039
12040 @subsection Commands
12041
12042 This filter supports the following commands:
12043 @table @option
12044 @item width, w
12045 @item height, h
12046 Set the output video dimension expression.
12047 The command accepts the same syntax of the corresponding option.
12048
12049 If the specified expression is not valid, it is kept at its current
12050 value.
12051 @end table
12052
12053 @section scale_npp
12054
12055 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
12056 format conversion on CUDA video frames. Setting the output width and height
12057 works in the same way as for the @var{scale} filter.
12058
12059 The following additional options are accepted:
12060 @table @option
12061 @item format
12062 The pixel format of the output CUDA frames. If set to the string "same" (the
12063 default), the input format will be kept. Note that automatic format negotiation
12064 and conversion is not yet supported for hardware frames
12065
12066 @item interp_algo
12067 The interpolation algorithm used for resizing. One of the following:
12068 @table @option
12069 @item nn
12070 Nearest neighbour.
12071
12072 @item linear
12073 @item cubic
12074 @item cubic2p_bspline
12075 2-parameter cubic (B=1, C=0)
12076
12077 @item cubic2p_catmullrom
12078 2-parameter cubic (B=0, C=1/2)
12079
12080 @item cubic2p_b05c03
12081 2-parameter cubic (B=1/2, C=3/10)
12082
12083 @item super
12084 Supersampling
12085
12086 @item lanczos
12087 @end table
12088
12089 @end table
12090
12091 @section scale2ref
12092
12093 Scale (resize) the input video, based on a reference video.
12094
12095 See the scale filter for available options, scale2ref supports the same but
12096 uses the reference video instead of the main input as basis.
12097
12098 @subsection Examples
12099
12100 @itemize
12101 @item
12102 Scale a subtitle stream to match the main video in size before overlaying
12103 @example
12104 'scale2ref[b][a];[a][b]overlay'
12105 @end example
12106 @end itemize
12107
12108 @anchor{selectivecolor}
12109 @section selectivecolor
12110
12111 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
12112 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
12113 by the "purity" of the color (that is, how saturated it already is).
12114
12115 This filter is similar to the Adobe Photoshop Selective Color tool.
12116
12117 The filter accepts the following options:
12118
12119 @table @option
12120 @item correction_method
12121 Select color correction method.
12122
12123 Available values are:
12124 @table @samp
12125 @item absolute
12126 Specified adjustments are applied "as-is" (added/subtracted to original pixel
12127 component value).
12128 @item relative
12129 Specified adjustments are relative to the original component value.
12130 @end table
12131 Default is @code{absolute}.
12132 @item reds
12133 Adjustments for red pixels (pixels where the red component is the maximum)
12134 @item yellows
12135 Adjustments for yellow pixels (pixels where the blue component is the minimum)
12136 @item greens
12137 Adjustments for green pixels (pixels where the green component is the maximum)
12138 @item cyans
12139 Adjustments for cyan pixels (pixels where the red component is the minimum)
12140 @item blues
12141 Adjustments for blue pixels (pixels where the blue component is the maximum)
12142 @item magentas
12143 Adjustments for magenta pixels (pixels where the green component is the minimum)
12144 @item whites
12145 Adjustments for white pixels (pixels where all components are greater than 128)
12146 @item neutrals
12147 Adjustments for all pixels except pure black and pure white
12148 @item blacks
12149 Adjustments for black pixels (pixels where all components are lesser than 128)
12150 @item psfile
12151 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
12152 @end table
12153
12154 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
12155 4 space separated floating point adjustment values in the [-1,1] range,
12156 respectively to adjust the amount of cyan, magenta, yellow and black for the
12157 pixels of its range.
12158
12159 @subsection Examples
12160
12161 @itemize
12162 @item
12163 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
12164 increase magenta by 27% in blue areas:
12165 @example
12166 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
12167 @end example
12168
12169 @item
12170 Use a Photoshop selective color preset:
12171 @example
12172 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
12173 @end example
12174 @end itemize
12175
12176 @anchor{separatefields}
12177 @section separatefields
12178
12179 The @code{separatefields} takes a frame-based video input and splits
12180 each frame into its components fields, producing a new half height clip
12181 with twice the frame rate and twice the frame count.
12182
12183 This filter use field-dominance information in frame to decide which
12184 of each pair of fields to place first in the output.
12185 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
12186
12187 @section setdar, setsar
12188
12189 The @code{setdar} filter sets the Display Aspect Ratio for the filter
12190 output video.
12191
12192 This is done by changing the specified Sample (aka Pixel) Aspect
12193 Ratio, according to the following equation:
12194 @example
12195 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
12196 @end example
12197
12198 Keep in mind that the @code{setdar} filter does not modify the pixel
12199 dimensions of the video frame. Also, the display aspect ratio set by
12200 this filter may be changed by later filters in the filterchain,
12201 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
12202 applied.
12203
12204 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
12205 the filter output video.
12206
12207 Note that as a consequence of the application of this filter, the
12208 output display aspect ratio will change according to the equation
12209 above.
12210
12211 Keep in mind that the sample aspect ratio set by the @code{setsar}
12212 filter may be changed by later filters in the filterchain, e.g. if
12213 another "setsar" or a "setdar" filter is applied.
12214
12215 It accepts the following parameters:
12216
12217 @table @option
12218 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
12219 Set the aspect ratio used by the filter.
12220
12221 The parameter can be a floating point number string, an expression, or
12222 a string of the form @var{num}:@var{den}, where @var{num} and
12223 @var{den} are the numerator and denominator of the aspect ratio. If
12224 the parameter is not specified, it is assumed the value "0".
12225 In case the form "@var{num}:@var{den}" is used, the @code{:} character
12226 should be escaped.
12227
12228 @item max
12229 Set the maximum integer value to use for expressing numerator and
12230 denominator when reducing the expressed aspect ratio to a rational.
12231 Default value is @code{100}.
12232
12233 @end table
12234
12235 The parameter @var{sar} is an expression containing
12236 the following constants:
12237
12238 @table @option
12239 @item E, PI, PHI
12240 These are approximated values for the mathematical constants e
12241 (Euler's number), pi (Greek pi), and phi (the golden ratio).
12242
12243 @item w, h
12244 The input width and height.
12245
12246 @item a
12247 These are the same as @var{w} / @var{h}.
12248
12249 @item sar
12250 The input sample aspect ratio.
12251
12252 @item dar
12253 The input display aspect ratio. It is the same as
12254 (@var{w} / @var{h}) * @var{sar}.
12255
12256 @item hsub, vsub
12257 Horizontal and vertical chroma subsample values. For example, for the
12258 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12259 @end table
12260
12261 @subsection Examples
12262
12263 @itemize
12264
12265 @item
12266 To change the display aspect ratio to 16:9, specify one of the following:
12267 @example
12268 setdar=dar=1.77777
12269 setdar=dar=16/9
12270 @end example
12271
12272 @item
12273 To change the sample aspect ratio to 10:11, specify:
12274 @example
12275 setsar=sar=10/11
12276 @end example
12277
12278 @item
12279 To set a display aspect ratio of 16:9, and specify a maximum integer value of
12280 1000 in the aspect ratio reduction, use the command:
12281 @example
12282 setdar=ratio=16/9:max=1000
12283 @end example
12284
12285 @end itemize
12286
12287 @anchor{setfield}
12288 @section setfield
12289
12290 Force field for the output video frame.
12291
12292 The @code{setfield} filter marks the interlace type field for the
12293 output frames. It does not change the input frame, but only sets the
12294 corresponding property, which affects how the frame is treated by
12295 following filters (e.g. @code{fieldorder} or @code{yadif}).
12296
12297 The filter accepts the following options:
12298
12299 @table @option
12300
12301 @item mode
12302 Available values are:
12303
12304 @table @samp
12305 @item auto
12306 Keep the same field property.
12307
12308 @item bff
12309 Mark the frame as bottom-field-first.
12310
12311 @item tff
12312 Mark the frame as top-field-first.
12313
12314 @item prog
12315 Mark the frame as progressive.
12316 @end table
12317 @end table
12318
12319 @section showinfo
12320
12321 Show a line containing various information for each input video frame.
12322 The input video is not modified.
12323
12324 The shown line contains a sequence of key/value pairs of the form
12325 @var{key}:@var{value}.
12326
12327 The following values are shown in the output:
12328
12329 @table @option
12330 @item n
12331 The (sequential) number of the input frame, starting from 0.
12332
12333 @item pts
12334 The Presentation TimeStamp of the input frame, expressed as a number of
12335 time base units. The time base unit depends on the filter input pad.
12336
12337 @item pts_time
12338 The Presentation TimeStamp of the input frame, expressed as a number of
12339 seconds.
12340
12341 @item pos
12342 The position of the frame in the input stream, or -1 if this information is
12343 unavailable and/or meaningless (for example in case of synthetic video).
12344
12345 @item fmt
12346 The pixel format name.
12347
12348 @item sar
12349 The sample aspect ratio of the input frame, expressed in the form
12350 @var{num}/@var{den}.
12351
12352 @item s
12353 The size of the input frame. For the syntax of this option, check the
12354 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12355
12356 @item i
12357 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
12358 for bottom field first).
12359
12360 @item iskey
12361 This is 1 if the frame is a key frame, 0 otherwise.
12362
12363 @item type
12364 The picture type of the input frame ("I" for an I-frame, "P" for a
12365 P-frame, "B" for a B-frame, or "?" for an unknown type).
12366 Also refer to the documentation of the @code{AVPictureType} enum and of
12367 the @code{av_get_picture_type_char} function defined in
12368 @file{libavutil/avutil.h}.
12369
12370 @item checksum
12371 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
12372
12373 @item plane_checksum
12374 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
12375 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
12376 @end table
12377
12378 @section showpalette
12379
12380 Displays the 256 colors palette of each frame. This filter is only relevant for
12381 @var{pal8} pixel format frames.
12382
12383 It accepts the following option:
12384
12385 @table @option
12386 @item s
12387 Set the size of the box used to represent one palette color entry. Default is
12388 @code{30} (for a @code{30x30} pixel box).
12389 @end table
12390
12391 @section shuffleframes
12392
12393 Reorder and/or duplicate and/or drop video frames.
12394
12395 It accepts the following parameters:
12396
12397 @table @option
12398 @item mapping
12399 Set the destination indexes of input frames.
12400 This is space or '|' separated list of indexes that maps input frames to output
12401 frames. Number of indexes also sets maximal value that each index may have.
12402 '-1' index have special meaning and that is to drop frame.
12403 @end table
12404
12405 The first frame has the index 0. The default is to keep the input unchanged.
12406
12407 @subsection Examples
12408
12409 @itemize
12410 @item
12411 Swap second and third frame of every three frames of the input:
12412 @example
12413 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
12414 @end example
12415
12416 @item
12417 Swap 10th and 1st frame of every ten frames of the input:
12418 @example
12419 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
12420 @end example
12421 @end itemize
12422
12423 @section shuffleplanes
12424
12425 Reorder and/or duplicate video planes.
12426
12427 It accepts the following parameters:
12428
12429 @table @option
12430
12431 @item map0
12432 The index of the input plane to be used as the first output plane.
12433
12434 @item map1
12435 The index of the input plane to be used as the second output plane.
12436
12437 @item map2
12438 The index of the input plane to be used as the third output plane.
12439
12440 @item map3
12441 The index of the input plane to be used as the fourth output plane.
12442
12443 @end table
12444
12445 The first plane has the index 0. The default is to keep the input unchanged.
12446
12447 @subsection Examples
12448
12449 @itemize
12450 @item
12451 Swap the second and third planes of the input:
12452 @example
12453 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
12454 @end example
12455 @end itemize
12456
12457 @anchor{signalstats}
12458 @section signalstats
12459 Evaluate various visual metrics that assist in determining issues associated
12460 with the digitization of analog video media.
12461
12462 By default the filter will log these metadata values:
12463
12464 @table @option
12465 @item YMIN
12466 Display the minimal Y value contained within the input frame. Expressed in
12467 range of [0-255].
12468
12469 @item YLOW
12470 Display the Y value at the 10% percentile within the input frame. Expressed in
12471 range of [0-255].
12472
12473 @item YAVG
12474 Display the average Y value within the input frame. Expressed in range of
12475 [0-255].
12476
12477 @item YHIGH
12478 Display the Y value at the 90% percentile within the input frame. Expressed in
12479 range of [0-255].
12480
12481 @item YMAX
12482 Display the maximum Y value contained within the input frame. Expressed in
12483 range of [0-255].
12484
12485 @item UMIN
12486 Display the minimal U value contained within the input frame. Expressed in
12487 range of [0-255].
12488
12489 @item ULOW
12490 Display the U value at the 10% percentile within the input frame. Expressed in
12491 range of [0-255].
12492
12493 @item UAVG
12494 Display the average U value within the input frame. Expressed in range of
12495 [0-255].
12496
12497 @item UHIGH
12498 Display the U value at the 90% percentile within the input frame. Expressed in
12499 range of [0-255].
12500
12501 @item UMAX
12502 Display the maximum U value contained within the input frame. Expressed in
12503 range of [0-255].
12504
12505 @item VMIN
12506 Display the minimal V value contained within the input frame. Expressed in
12507 range of [0-255].
12508
12509 @item VLOW
12510 Display the V value at the 10% percentile within the input frame. Expressed in
12511 range of [0-255].
12512
12513 @item VAVG
12514 Display the average V value within the input frame. Expressed in range of
12515 [0-255].
12516
12517 @item VHIGH
12518 Display the V value at the 90% percentile within the input frame. Expressed in
12519 range of [0-255].
12520
12521 @item VMAX
12522 Display the maximum V value contained within the input frame. Expressed in
12523 range of [0-255].
12524
12525 @item SATMIN
12526 Display the minimal saturation value contained within the input frame.
12527 Expressed in range of [0-~181.02].
12528
12529 @item SATLOW
12530 Display the saturation value at the 10% percentile within the input frame.
12531 Expressed in range of [0-~181.02].
12532
12533 @item SATAVG
12534 Display the average saturation value within the input frame. Expressed in range
12535 of [0-~181.02].
12536
12537 @item SATHIGH
12538 Display the saturation value at the 90% percentile within the input frame.
12539 Expressed in range of [0-~181.02].
12540
12541 @item SATMAX
12542 Display the maximum saturation value contained within the input frame.
12543 Expressed in range of [0-~181.02].
12544
12545 @item HUEMED
12546 Display the median value for hue within the input frame. Expressed in range of
12547 [0-360].
12548
12549 @item HUEAVG
12550 Display the average value for hue within the input frame. Expressed in range of
12551 [0-360].
12552
12553 @item YDIF
12554 Display the average of sample value difference between all values of the Y
12555 plane in the current frame and corresponding values of the previous input frame.
12556 Expressed in range of [0-255].
12557
12558 @item UDIF
12559 Display the average of sample value difference between all values of the U
12560 plane in the current frame and corresponding values of the previous input frame.
12561 Expressed in range of [0-255].
12562
12563 @item VDIF
12564 Display the average of sample value difference between all values of the V
12565 plane in the current frame and corresponding values of the previous input frame.
12566 Expressed in range of [0-255].
12567
12568 @item YBITDEPTH
12569 Display bit depth of Y plane in current frame.
12570 Expressed in range of [0-16].
12571
12572 @item UBITDEPTH
12573 Display bit depth of U plane in current frame.
12574 Expressed in range of [0-16].
12575
12576 @item VBITDEPTH
12577 Display bit depth of V plane in current frame.
12578 Expressed in range of [0-16].
12579 @end table
12580
12581 The filter accepts the following options:
12582
12583 @table @option
12584 @item stat
12585 @item out
12586
12587 @option{stat} specify an additional form of image analysis.
12588 @option{out} output video with the specified type of pixel highlighted.
12589
12590 Both options accept the following values:
12591
12592 @table @samp
12593 @item tout
12594 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
12595 unlike the neighboring pixels of the same field. Examples of temporal outliers
12596 include the results of video dropouts, head clogs, or tape tracking issues.
12597
12598 @item vrep
12599 Identify @var{vertical line repetition}. Vertical line repetition includes
12600 similar rows of pixels within a frame. In born-digital video vertical line
12601 repetition is common, but this pattern is uncommon in video digitized from an
12602 analog source. When it occurs in video that results from the digitization of an
12603 analog source it can indicate concealment from a dropout compensator.
12604
12605 @item brng
12606 Identify pixels that fall outside of legal broadcast range.
12607 @end table
12608
12609 @item color, c
12610 Set the highlight color for the @option{out} option. The default color is
12611 yellow.
12612 @end table
12613
12614 @subsection Examples
12615
12616 @itemize
12617 @item
12618 Output data of various video metrics:
12619 @example
12620 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
12621 @end example
12622
12623 @item
12624 Output specific data about the minimum and maximum values of the Y plane per frame:
12625 @example
12626 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
12627 @end example
12628
12629 @item
12630 Playback video while highlighting pixels that are outside of broadcast range in red.
12631 @example
12632 ffplay example.mov -vf signalstats="out=brng:color=red"
12633 @end example
12634
12635 @item
12636 Playback video with signalstats metadata drawn over the frame.
12637 @example
12638 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12639 @end example
12640
12641 The contents of signalstat_drawtext.txt used in the command are:
12642 @example
12643 time %@{pts:hms@}
12644 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12645 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12646 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12647 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12648
12649 @end example
12650 @end itemize
12651
12652 @anchor{smartblur}
12653 @section smartblur
12654
12655 Blur the input video without impacting the outlines.
12656
12657 It accepts the following options:
12658
12659 @table @option
12660 @item luma_radius, lr
12661 Set the luma radius. The option value must be a float number in
12662 the range [0.1,5.0] that specifies the variance of the gaussian filter
12663 used to blur the image (slower if larger). Default value is 1.0.
12664
12665 @item luma_strength, ls
12666 Set the luma strength. The option value must be a float number
12667 in the range [-1.0,1.0] that configures the blurring. A value included
12668 in [0.0,1.0] will blur the image whereas a value included in
12669 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12670
12671 @item luma_threshold, lt
12672 Set the luma threshold used as a coefficient to determine
12673 whether a pixel should be blurred or not. The option value must be an
12674 integer in the range [-30,30]. A value of 0 will filter all the image,
12675 a value included in [0,30] will filter flat areas and a value included
12676 in [-30,0] will filter edges. Default value is 0.
12677
12678 @item chroma_radius, cr
12679 Set the chroma radius. The option value must be a float number in
12680 the range [0.1,5.0] that specifies the variance of the gaussian filter
12681 used to blur the image (slower if larger). Default value is @option{luma_radius}.
12682
12683 @item chroma_strength, cs
12684 Set the chroma strength. The option value must be a float number
12685 in the range [-1.0,1.0] that configures the blurring. A value included
12686 in [0.0,1.0] will blur the image whereas a value included in
12687 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
12688
12689 @item chroma_threshold, ct
12690 Set the chroma threshold used as a coefficient to determine
12691 whether a pixel should be blurred or not. The option value must be an
12692 integer in the range [-30,30]. A value of 0 will filter all the image,
12693 a value included in [0,30] will filter flat areas and a value included
12694 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
12695 @end table
12696
12697 If a chroma option is not explicitly set, the corresponding luma value
12698 is set.
12699
12700 @section ssim
12701
12702 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12703
12704 This filter takes in input two input videos, the first input is
12705 considered the "main" source and is passed unchanged to the
12706 output. The second input is used as a "reference" video for computing
12707 the SSIM.
12708
12709 Both video inputs must have the same resolution and pixel format for
12710 this filter to work correctly. Also it assumes that both inputs
12711 have the same number of frames, which are compared one by one.
12712
12713 The filter stores the calculated SSIM of each frame.
12714
12715 The description of the accepted parameters follows.
12716
12717 @table @option
12718 @item stats_file, f
12719 If specified the filter will use the named file to save the SSIM of
12720 each individual frame. When filename equals "-" the data is sent to
12721 standard output.
12722 @end table
12723
12724 The file printed if @var{stats_file} is selected, contains a sequence of
12725 key/value pairs of the form @var{key}:@var{value} for each compared
12726 couple of frames.
12727
12728 A description of each shown parameter follows:
12729
12730 @table @option
12731 @item n
12732 sequential number of the input frame, starting from 1
12733
12734 @item Y, U, V, R, G, B
12735 SSIM of the compared frames for the component specified by the suffix.
12736
12737 @item All
12738 SSIM of the compared frames for the whole frame.
12739
12740 @item dB
12741 Same as above but in dB representation.
12742 @end table
12743
12744 For example:
12745 @example
12746 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12747 [main][ref] ssim="stats_file=stats.log" [out]
12748 @end example
12749
12750 On this example the input file being processed is compared with the
12751 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12752 is stored in @file{stats.log}.
12753
12754 Another example with both psnr and ssim at same time:
12755 @example
12756 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12757 @end example
12758
12759 @section stereo3d
12760
12761 Convert between different stereoscopic image formats.
12762
12763 The filters accept the following options:
12764
12765 @table @option
12766 @item in
12767 Set stereoscopic image format of input.
12768
12769 Available values for input image formats are:
12770 @table @samp
12771 @item sbsl
12772 side by side parallel (left eye left, right eye right)
12773
12774 @item sbsr
12775 side by side crosseye (right eye left, left eye right)
12776
12777 @item sbs2l
12778 side by side parallel with half width resolution
12779 (left eye left, right eye right)
12780
12781 @item sbs2r
12782 side by side crosseye with half width resolution
12783 (right eye left, left eye right)
12784
12785 @item abl
12786 above-below (left eye above, right eye below)
12787
12788 @item abr
12789 above-below (right eye above, left eye below)
12790
12791 @item ab2l
12792 above-below with half height resolution
12793 (left eye above, right eye below)
12794
12795 @item ab2r
12796 above-below with half height resolution
12797 (right eye above, left eye below)
12798
12799 @item al
12800 alternating frames (left eye first, right eye second)
12801
12802 @item ar
12803 alternating frames (right eye first, left eye second)
12804
12805 @item irl
12806 interleaved rows (left eye has top row, right eye starts on next row)
12807
12808 @item irr
12809 interleaved rows (right eye has top row, left eye starts on next row)
12810
12811 @item icl
12812 interleaved columns, left eye first
12813
12814 @item icr
12815 interleaved columns, right eye first
12816
12817 Default value is @samp{sbsl}.
12818 @end table
12819
12820 @item out
12821 Set stereoscopic image format of output.
12822
12823 @table @samp
12824 @item sbsl
12825 side by side parallel (left eye left, right eye right)
12826
12827 @item sbsr
12828 side by side crosseye (right eye left, left eye right)
12829
12830 @item sbs2l
12831 side by side parallel with half width resolution
12832 (left eye left, right eye right)
12833
12834 @item sbs2r
12835 side by side crosseye with half width resolution
12836 (right eye left, left eye right)
12837
12838 @item abl
12839 above-below (left eye above, right eye below)
12840
12841 @item abr
12842 above-below (right eye above, left eye below)
12843
12844 @item ab2l
12845 above-below with half height resolution
12846 (left eye above, right eye below)
12847
12848 @item ab2r
12849 above-below with half height resolution
12850 (right eye above, left eye below)
12851
12852 @item al
12853 alternating frames (left eye first, right eye second)
12854
12855 @item ar
12856 alternating frames (right eye first, left eye second)
12857
12858 @item irl
12859 interleaved rows (left eye has top row, right eye starts on next row)
12860
12861 @item irr
12862 interleaved rows (right eye has top row, left eye starts on next row)
12863
12864 @item arbg
12865 anaglyph red/blue gray
12866 (red filter on left eye, blue filter on right eye)
12867
12868 @item argg
12869 anaglyph red/green gray
12870 (red filter on left eye, green filter on right eye)
12871
12872 @item arcg
12873 anaglyph red/cyan gray
12874 (red filter on left eye, cyan filter on right eye)
12875
12876 @item arch
12877 anaglyph red/cyan half colored
12878 (red filter on left eye, cyan filter on right eye)
12879
12880 @item arcc
12881 anaglyph red/cyan color
12882 (red filter on left eye, cyan filter on right eye)
12883
12884 @item arcd
12885 anaglyph red/cyan color optimized with the least squares projection of dubois
12886 (red filter on left eye, cyan filter on right eye)
12887
12888 @item agmg
12889 anaglyph green/magenta gray
12890 (green filter on left eye, magenta filter on right eye)
12891
12892 @item agmh
12893 anaglyph green/magenta half colored
12894 (green filter on left eye, magenta filter on right eye)
12895
12896 @item agmc
12897 anaglyph green/magenta colored
12898 (green filter on left eye, magenta filter on right eye)
12899
12900 @item agmd
12901 anaglyph green/magenta color optimized with the least squares projection of dubois
12902 (green filter on left eye, magenta filter on right eye)
12903
12904 @item aybg
12905 anaglyph yellow/blue gray
12906 (yellow filter on left eye, blue filter on right eye)
12907
12908 @item aybh
12909 anaglyph yellow/blue half colored
12910 (yellow filter on left eye, blue filter on right eye)
12911
12912 @item aybc
12913 anaglyph yellow/blue colored
12914 (yellow filter on left eye, blue filter on right eye)
12915
12916 @item aybd
12917 anaglyph yellow/blue color optimized with the least squares projection of dubois
12918 (yellow filter on left eye, blue filter on right eye)
12919
12920 @item ml
12921 mono output (left eye only)
12922
12923 @item mr
12924 mono output (right eye only)
12925
12926 @item chl
12927 checkerboard, left eye first
12928
12929 @item chr
12930 checkerboard, right eye first
12931
12932 @item icl
12933 interleaved columns, left eye first
12934
12935 @item icr
12936 interleaved columns, right eye first
12937
12938 @item hdmi
12939 HDMI frame pack
12940 @end table
12941
12942 Default value is @samp{arcd}.
12943 @end table
12944
12945 @subsection Examples
12946
12947 @itemize
12948 @item
12949 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12950 @example
12951 stereo3d=sbsl:aybd
12952 @end example
12953
12954 @item
12955 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12956 @example
12957 stereo3d=abl:sbsr
12958 @end example
12959 @end itemize
12960
12961 @section streamselect, astreamselect
12962 Select video or audio streams.
12963
12964 The filter accepts the following options:
12965
12966 @table @option
12967 @item inputs
12968 Set number of inputs. Default is 2.
12969
12970 @item map
12971 Set input indexes to remap to outputs.
12972 @end table
12973
12974 @subsection Commands
12975
12976 The @code{streamselect} and @code{astreamselect} filter supports the following
12977 commands:
12978
12979 @table @option
12980 @item map
12981 Set input indexes to remap to outputs.
12982 @end table
12983
12984 @subsection Examples
12985
12986 @itemize
12987 @item
12988 Select first 5 seconds 1st stream and rest of time 2nd stream:
12989 @example
12990 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12991 @end example
12992
12993 @item
12994 Same as above, but for audio:
12995 @example
12996 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12997 @end example
12998 @end itemize
12999
13000 @section sobel
13001 Apply sobel operator to input video stream.
13002
13003 The filter accepts the following option:
13004
13005 @table @option
13006 @item planes
13007 Set which planes will be processed, unprocessed planes will be copied.
13008 By default value 0xf, all planes will be processed.
13009
13010 @item scale
13011 Set value which will be multiplied with filtered result.
13012
13013 @item delta
13014 Set value which will be added to filtered result.
13015 @end table
13016
13017 @anchor{spp}
13018 @section spp
13019
13020 Apply a simple postprocessing filter that compresses and decompresses the image
13021 at several (or - in the case of @option{quality} level @code{6} - all) shifts
13022 and average the results.
13023
13024 The filter accepts the following options:
13025
13026 @table @option
13027 @item quality
13028 Set quality. This option defines the number of levels for averaging. It accepts
13029 an integer in the range 0-6. If set to @code{0}, the filter will have no
13030 effect. A value of @code{6} means the higher quality. For each increment of
13031 that value the speed drops by a factor of approximately 2.  Default value is
13032 @code{3}.
13033
13034 @item qp
13035 Force a constant quantization parameter. If not set, the filter will use the QP
13036 from the video stream (if available).
13037
13038 @item mode
13039 Set thresholding mode. Available modes are:
13040
13041 @table @samp
13042 @item hard
13043 Set hard thresholding (default).
13044 @item soft
13045 Set soft thresholding (better de-ringing effect, but likely blurrier).
13046 @end table
13047
13048 @item use_bframe_qp
13049 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
13050 option may cause flicker since the B-Frames have often larger QP. Default is
13051 @code{0} (not enabled).
13052 @end table
13053
13054 @anchor{subtitles}
13055 @section subtitles
13056
13057 Draw subtitles on top of input video using the libass library.
13058
13059 To enable compilation of this filter you need to configure FFmpeg with
13060 @code{--enable-libass}. This filter also requires a build with libavcodec and
13061 libavformat to convert the passed subtitles file to ASS (Advanced Substation
13062 Alpha) subtitles format.
13063
13064 The filter accepts the following options:
13065
13066 @table @option
13067 @item filename, f
13068 Set the filename of the subtitle file to read. It must be specified.
13069
13070 @item original_size
13071 Specify the size of the original video, the video for which the ASS file
13072 was composed. For the syntax of this option, check the
13073 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13074 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
13075 correctly scale the fonts if the aspect ratio has been changed.
13076
13077 @item fontsdir
13078 Set a directory path containing fonts that can be used by the filter.
13079 These fonts will be used in addition to whatever the font provider uses.
13080
13081 @item charenc
13082 Set subtitles input character encoding. @code{subtitles} filter only. Only
13083 useful if not UTF-8.
13084
13085 @item stream_index, si
13086 Set subtitles stream index. @code{subtitles} filter only.
13087
13088 @item force_style
13089 Override default style or script info parameters of the subtitles. It accepts a
13090 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
13091 @end table
13092
13093 If the first key is not specified, it is assumed that the first value
13094 specifies the @option{filename}.
13095
13096 For example, to render the file @file{sub.srt} on top of the input
13097 video, use the command:
13098 @example
13099 subtitles=sub.srt
13100 @end example
13101
13102 which is equivalent to:
13103 @example
13104 subtitles=filename=sub.srt
13105 @end example
13106
13107 To render the default subtitles stream from file @file{video.mkv}, use:
13108 @example
13109 subtitles=video.mkv
13110 @end example
13111
13112 To render the second subtitles stream from that file, use:
13113 @example
13114 subtitles=video.mkv:si=1
13115 @end example
13116
13117 To make the subtitles stream from @file{sub.srt} appear in transparent green
13118 @code{DejaVu Serif}, use:
13119 @example
13120 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
13121 @end example
13122
13123 @section super2xsai
13124
13125 Scale the input by 2x and smooth using the Super2xSaI (Scale and
13126 Interpolate) pixel art scaling algorithm.
13127
13128 Useful for enlarging pixel art images without reducing sharpness.
13129
13130 @section swaprect
13131
13132 Swap two rectangular objects in video.
13133
13134 This filter accepts the following options:
13135
13136 @table @option
13137 @item w
13138 Set object width.
13139
13140 @item h
13141 Set object height.
13142
13143 @item x1
13144 Set 1st rect x coordinate.
13145
13146 @item y1
13147 Set 1st rect y coordinate.
13148
13149 @item x2
13150 Set 2nd rect x coordinate.
13151
13152 @item y2
13153 Set 2nd rect y coordinate.
13154
13155 All expressions are evaluated once for each frame.
13156 @end table
13157
13158 The all options are expressions containing the following constants:
13159
13160 @table @option
13161 @item w
13162 @item h
13163 The input width and height.
13164
13165 @item a
13166 same as @var{w} / @var{h}
13167
13168 @item sar
13169 input sample aspect ratio
13170
13171 @item dar
13172 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
13173
13174 @item n
13175 The number of the input frame, starting from 0.
13176
13177 @item t
13178 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
13179
13180 @item pos
13181 the position in the file of the input frame, NAN if unknown
13182 @end table
13183
13184 @section swapuv
13185 Swap U & V plane.
13186
13187 @section telecine
13188
13189 Apply telecine process to the video.
13190
13191 This filter accepts the following options:
13192
13193 @table @option
13194 @item first_field
13195 @table @samp
13196 @item top, t
13197 top field first
13198 @item bottom, b
13199 bottom field first
13200 The default value is @code{top}.
13201 @end table
13202
13203 @item pattern
13204 A string of numbers representing the pulldown pattern you wish to apply.
13205 The default value is @code{23}.
13206 @end table
13207
13208 @example
13209 Some typical patterns:
13210
13211 NTSC output (30i):
13212 27.5p: 32222
13213 24p: 23 (classic)
13214 24p: 2332 (preferred)
13215 20p: 33
13216 18p: 334
13217 16p: 3444
13218
13219 PAL output (25i):
13220 27.5p: 12222
13221 24p: 222222222223 ("Euro pulldown")
13222 16.67p: 33
13223 16p: 33333334
13224 @end example
13225
13226 @section threshold
13227
13228 Apply threshold effect to video stream.
13229
13230 This filter needs four video streams to perform thresholding.
13231 First stream is stream we are filtering.
13232 Second stream is holding threshold values, third stream is holding min values,
13233 and last, fourth stream is holding max values.
13234
13235 The filter accepts the following option:
13236
13237 @table @option
13238 @item planes
13239 Set which planes will be processed, unprocessed planes will be copied.
13240 By default value 0xf, all planes will be processed.
13241 @end table
13242
13243 For example if first stream pixel's component value is less then threshold value
13244 of pixel component from 2nd threshold stream, third stream value will picked,
13245 otherwise fourth stream pixel component value will be picked.
13246
13247 Using color source filter one can perform various types of thresholding:
13248
13249 @subsection Examples
13250
13251 @itemize
13252 @item
13253 Binary threshold, using gray color as threshold:
13254 @example
13255 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
13256 @end example
13257
13258 @item
13259 Inverted binary threshold, using gray color as threshold:
13260 @example
13261 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
13262 @end example
13263
13264 @item
13265 Truncate binary threshold, using gray color as threshold:
13266 @example
13267 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
13268 @end example
13269
13270 @item
13271 Threshold to zero, using gray color as threshold:
13272 @example
13273 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
13274 @end example
13275
13276 @item
13277 Inverted threshold to zero, using gray color as threshold:
13278 @example
13279 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
13280 @end example
13281 @end itemize
13282
13283 @section thumbnail
13284 Select the most representative frame in a given sequence of consecutive frames.
13285
13286 The filter accepts the following options:
13287
13288 @table @option
13289 @item n
13290 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
13291 will pick one of them, and then handle the next batch of @var{n} frames until
13292 the end. Default is @code{100}.
13293 @end table
13294
13295 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
13296 value will result in a higher memory usage, so a high value is not recommended.
13297
13298 @subsection Examples
13299
13300 @itemize
13301 @item
13302 Extract one picture each 50 frames:
13303 @example
13304 thumbnail=50
13305 @end example
13306
13307 @item
13308 Complete example of a thumbnail creation with @command{ffmpeg}:
13309 @example
13310 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
13311 @end example
13312 @end itemize
13313
13314 @section tile
13315
13316 Tile several successive frames together.
13317
13318 The filter accepts the following options:
13319
13320 @table @option
13321
13322 @item layout
13323 Set the grid size (i.e. the number of lines and columns). For the syntax of
13324 this option, check the
13325 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13326
13327 @item nb_frames
13328 Set the maximum number of frames to render in the given area. It must be less
13329 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
13330 the area will be used.
13331
13332 @item margin
13333 Set the outer border margin in pixels.
13334
13335 @item padding
13336 Set the inner border thickness (i.e. the number of pixels between frames). For
13337 more advanced padding options (such as having different values for the edges),
13338 refer to the pad video filter.
13339
13340 @item color
13341 Specify the color of the unused area. For the syntax of this option, check the
13342 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
13343 is "black".
13344 @end table
13345
13346 @subsection Examples
13347
13348 @itemize
13349 @item
13350 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
13351 @example
13352 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
13353 @end example
13354 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
13355 duplicating each output frame to accommodate the originally detected frame
13356 rate.
13357
13358 @item
13359 Display @code{5} pictures in an area of @code{3x2} frames,
13360 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
13361 mixed flat and named options:
13362 @example
13363 tile=3x2:nb_frames=5:padding=7:margin=2
13364 @end example
13365 @end itemize
13366
13367 @section tinterlace
13368
13369 Perform various types of temporal field interlacing.
13370
13371 Frames are counted starting from 1, so the first input frame is
13372 considered odd.
13373
13374 The filter accepts the following options:
13375
13376 @table @option
13377
13378 @item mode
13379 Specify the mode of the interlacing. This option can also be specified
13380 as a value alone. See below for a list of values for this option.
13381
13382 Available values are:
13383
13384 @table @samp
13385 @item merge, 0
13386 Move odd frames into the upper field, even into the lower field,
13387 generating a double height frame at half frame rate.
13388 @example
13389  ------> time
13390 Input:
13391 Frame 1         Frame 2         Frame 3         Frame 4
13392
13393 11111           22222           33333           44444
13394 11111           22222           33333           44444
13395 11111           22222           33333           44444
13396 11111           22222           33333           44444
13397
13398 Output:
13399 11111                           33333
13400 22222                           44444
13401 11111                           33333
13402 22222                           44444
13403 11111                           33333
13404 22222                           44444
13405 11111                           33333
13406 22222                           44444
13407 @end example
13408
13409 @item drop_even, 1
13410 Only output odd frames, even frames are dropped, generating a frame with
13411 unchanged height at half frame rate.
13412
13413 @example
13414  ------> time
13415 Input:
13416 Frame 1         Frame 2         Frame 3         Frame 4
13417
13418 11111           22222           33333           44444
13419 11111           22222           33333           44444
13420 11111           22222           33333           44444
13421 11111           22222           33333           44444
13422
13423 Output:
13424 11111                           33333
13425 11111                           33333
13426 11111                           33333
13427 11111                           33333
13428 @end example
13429
13430 @item drop_odd, 2
13431 Only output even frames, odd frames are dropped, generating a frame with
13432 unchanged height at half frame rate.
13433
13434 @example
13435  ------> time
13436 Input:
13437 Frame 1         Frame 2         Frame 3         Frame 4
13438
13439 11111           22222           33333           44444
13440 11111           22222           33333           44444
13441 11111           22222           33333           44444
13442 11111           22222           33333           44444
13443
13444 Output:
13445                 22222                           44444
13446                 22222                           44444
13447                 22222                           44444
13448                 22222                           44444
13449 @end example
13450
13451 @item pad, 3
13452 Expand each frame to full height, but pad alternate lines with black,
13453 generating a frame with double height at the same input frame rate.
13454
13455 @example
13456  ------> time
13457 Input:
13458 Frame 1         Frame 2         Frame 3         Frame 4
13459
13460 11111           22222           33333           44444
13461 11111           22222           33333           44444
13462 11111           22222           33333           44444
13463 11111           22222           33333           44444
13464
13465 Output:
13466 11111           .....           33333           .....
13467 .....           22222           .....           44444
13468 11111           .....           33333           .....
13469 .....           22222           .....           44444
13470 11111           .....           33333           .....
13471 .....           22222           .....           44444
13472 11111           .....           33333           .....
13473 .....           22222           .....           44444
13474 @end example
13475
13476
13477 @item interleave_top, 4
13478 Interleave the upper field from odd frames with the lower field from
13479 even frames, generating a frame with unchanged height at half frame rate.
13480
13481 @example
13482  ------> time
13483 Input:
13484 Frame 1         Frame 2         Frame 3         Frame 4
13485
13486 11111<-         22222           33333<-         44444
13487 11111           22222<-         33333           44444<-
13488 11111<-         22222           33333<-         44444
13489 11111           22222<-         33333           44444<-
13490
13491 Output:
13492 11111                           33333
13493 22222                           44444
13494 11111                           33333
13495 22222                           44444
13496 @end example
13497
13498
13499 @item interleave_bottom, 5
13500 Interleave the lower field from odd frames with the upper field from
13501 even frames, generating a frame with unchanged height at half frame rate.
13502
13503 @example
13504  ------> time
13505 Input:
13506 Frame 1         Frame 2         Frame 3         Frame 4
13507
13508 11111           22222<-         33333           44444<-
13509 11111<-         22222           33333<-         44444
13510 11111           22222<-         33333           44444<-
13511 11111<-         22222           33333<-         44444
13512
13513 Output:
13514 22222                           44444
13515 11111                           33333
13516 22222                           44444
13517 11111                           33333
13518 @end example
13519
13520
13521 @item interlacex2, 6
13522 Double frame rate with unchanged height. Frames are inserted each
13523 containing the second temporal field from the previous input frame and
13524 the first temporal field from the next input frame. This mode relies on
13525 the top_field_first flag. Useful for interlaced video displays with no
13526 field synchronisation.
13527
13528 @example
13529  ------> time
13530 Input:
13531 Frame 1         Frame 2         Frame 3         Frame 4
13532
13533 11111           22222           33333           44444
13534  11111           22222           33333           44444
13535 11111           22222           33333           44444
13536  11111           22222           33333           44444
13537
13538 Output:
13539 11111   22222   22222   33333   33333   44444   44444
13540  11111   11111   22222   22222   33333   33333   44444
13541 11111   22222   22222   33333   33333   44444   44444
13542  11111   11111   22222   22222   33333   33333   44444
13543 @end example
13544
13545
13546 @item mergex2, 7
13547 Move odd frames into the upper field, even into the lower field,
13548 generating a double height frame at same frame rate.
13549
13550 @example
13551  ------> time
13552 Input:
13553 Frame 1         Frame 2         Frame 3         Frame 4
13554
13555 11111           22222           33333           44444
13556 11111           22222           33333           44444
13557 11111           22222           33333           44444
13558 11111           22222           33333           44444
13559
13560 Output:
13561 11111           33333           33333           55555
13562 22222           22222           44444           44444
13563 11111           33333           33333           55555
13564 22222           22222           44444           44444
13565 11111           33333           33333           55555
13566 22222           22222           44444           44444
13567 11111           33333           33333           55555
13568 22222           22222           44444           44444
13569 @end example
13570
13571 @end table
13572
13573 Numeric values are deprecated but are accepted for backward
13574 compatibility reasons.
13575
13576 Default mode is @code{merge}.
13577
13578 @item flags
13579 Specify flags influencing the filter process.
13580
13581 Available value for @var{flags} is:
13582
13583 @table @option
13584 @item low_pass_filter, vlfp
13585 Enable vertical low-pass filtering in the filter.
13586 Vertical low-pass filtering is required when creating an interlaced
13587 destination from a progressive source which contains high-frequency
13588 vertical detail. Filtering will reduce interlace 'twitter' and Moire
13589 patterning.
13590
13591 Vertical low-pass filtering can only be enabled for @option{mode}
13592 @var{interleave_top} and @var{interleave_bottom}.
13593
13594 @end table
13595 @end table
13596
13597 @section transpose
13598
13599 Transpose rows with columns in the input video and optionally flip it.
13600
13601 It accepts the following parameters:
13602
13603 @table @option
13604
13605 @item dir
13606 Specify the transposition direction.
13607
13608 Can assume the following values:
13609 @table @samp
13610 @item 0, 4, cclock_flip
13611 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
13612 @example
13613 L.R     L.l
13614 . . ->  . .
13615 l.r     R.r
13616 @end example
13617
13618 @item 1, 5, clock
13619 Rotate by 90 degrees clockwise, that is:
13620 @example
13621 L.R     l.L
13622 . . ->  . .
13623 l.r     r.R
13624 @end example
13625
13626 @item 2, 6, cclock
13627 Rotate by 90 degrees counterclockwise, that is:
13628 @example
13629 L.R     R.r
13630 . . ->  . .
13631 l.r     L.l
13632 @end example
13633
13634 @item 3, 7, clock_flip
13635 Rotate by 90 degrees clockwise and vertically flip, that is:
13636 @example
13637 L.R     r.R
13638 . . ->  . .
13639 l.r     l.L
13640 @end example
13641 @end table
13642
13643 For values between 4-7, the transposition is only done if the input
13644 video geometry is portrait and not landscape. These values are
13645 deprecated, the @code{passthrough} option should be used instead.
13646
13647 Numerical values are deprecated, and should be dropped in favor of
13648 symbolic constants.
13649
13650 @item passthrough
13651 Do not apply the transposition if the input geometry matches the one
13652 specified by the specified value. It accepts the following values:
13653 @table @samp
13654 @item none
13655 Always apply transposition.
13656 @item portrait
13657 Preserve portrait geometry (when @var{height} >= @var{width}).
13658 @item landscape
13659 Preserve landscape geometry (when @var{width} >= @var{height}).
13660 @end table
13661
13662 Default value is @code{none}.
13663 @end table
13664
13665 For example to rotate by 90 degrees clockwise and preserve portrait
13666 layout:
13667 @example
13668 transpose=dir=1:passthrough=portrait
13669 @end example
13670
13671 The command above can also be specified as:
13672 @example
13673 transpose=1:portrait
13674 @end example
13675
13676 @section trim
13677 Trim the input so that the output contains one continuous subpart of the input.
13678
13679 It accepts the following parameters:
13680 @table @option
13681 @item start
13682 Specify the time of the start of the kept section, i.e. the frame with the
13683 timestamp @var{start} will be the first frame in the output.
13684
13685 @item end
13686 Specify the time of the first frame that will be dropped, i.e. the frame
13687 immediately preceding the one with the timestamp @var{end} will be the last
13688 frame in the output.
13689
13690 @item start_pts
13691 This is the same as @var{start}, except this option sets the start timestamp
13692 in timebase units instead of seconds.
13693
13694 @item end_pts
13695 This is the same as @var{end}, except this option sets the end timestamp
13696 in timebase units instead of seconds.
13697
13698 @item duration
13699 The maximum duration of the output in seconds.
13700
13701 @item start_frame
13702 The number of the first frame that should be passed to the output.
13703
13704 @item end_frame
13705 The number of the first frame that should be dropped.
13706 @end table
13707
13708 @option{start}, @option{end}, and @option{duration} are expressed as time
13709 duration specifications; see
13710 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13711 for the accepted syntax.
13712
13713 Note that the first two sets of the start/end options and the @option{duration}
13714 option look at the frame timestamp, while the _frame variants simply count the
13715 frames that pass through the filter. Also note that this filter does not modify
13716 the timestamps. If you wish for the output timestamps to start at zero, insert a
13717 setpts filter after the trim filter.
13718
13719 If multiple start or end options are set, this filter tries to be greedy and
13720 keep all the frames that match at least one of the specified constraints. To keep
13721 only the part that matches all the constraints at once, chain multiple trim
13722 filters.
13723
13724 The defaults are such that all the input is kept. So it is possible to set e.g.
13725 just the end values to keep everything before the specified time.
13726
13727 Examples:
13728 @itemize
13729 @item
13730 Drop everything except the second minute of input:
13731 @example
13732 ffmpeg -i INPUT -vf trim=60:120
13733 @end example
13734
13735 @item
13736 Keep only the first second:
13737 @example
13738 ffmpeg -i INPUT -vf trim=duration=1
13739 @end example
13740
13741 @end itemize
13742
13743
13744 @anchor{unsharp}
13745 @section unsharp
13746
13747 Sharpen or blur the input video.
13748
13749 It accepts the following parameters:
13750
13751 @table @option
13752 @item luma_msize_x, lx
13753 Set the luma matrix horizontal size. It must be an odd integer between
13754 3 and 23. The default value is 5.
13755
13756 @item luma_msize_y, ly
13757 Set the luma matrix vertical size. It must be an odd integer between 3
13758 and 23. The default value is 5.
13759
13760 @item luma_amount, la
13761 Set the luma effect strength. It must be a floating point number, reasonable
13762 values lay between -1.5 and 1.5.
13763
13764 Negative values will blur the input video, while positive values will
13765 sharpen it, a value of zero will disable the effect.
13766
13767 Default value is 1.0.
13768
13769 @item chroma_msize_x, cx
13770 Set the chroma matrix horizontal size. It must be an odd integer
13771 between 3 and 23. The default value is 5.
13772
13773 @item chroma_msize_y, cy
13774 Set the chroma matrix vertical size. It must be an odd integer
13775 between 3 and 23. The default value is 5.
13776
13777 @item chroma_amount, ca
13778 Set the chroma effect strength. It must be a floating point number, reasonable
13779 values lay between -1.5 and 1.5.
13780
13781 Negative values will blur the input video, while positive values will
13782 sharpen it, a value of zero will disable the effect.
13783
13784 Default value is 0.0.
13785
13786 @item opencl
13787 If set to 1, specify using OpenCL capabilities, only available if
13788 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
13789
13790 @end table
13791
13792 All parameters are optional and default to the equivalent of the
13793 string '5:5:1.0:5:5:0.0'.
13794
13795 @subsection Examples
13796
13797 @itemize
13798 @item
13799 Apply strong luma sharpen effect:
13800 @example
13801 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13802 @end example
13803
13804 @item
13805 Apply a strong blur of both luma and chroma parameters:
13806 @example
13807 unsharp=7:7:-2:7:7:-2
13808 @end example
13809 @end itemize
13810
13811 @section uspp
13812
13813 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13814 the image at several (or - in the case of @option{quality} level @code{8} - all)
13815 shifts and average the results.
13816
13817 The way this differs from the behavior of spp is that uspp actually encodes &
13818 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13819 DCT similar to MJPEG.
13820
13821 The filter accepts the following options:
13822
13823 @table @option
13824 @item quality
13825 Set quality. This option defines the number of levels for averaging. It accepts
13826 an integer in the range 0-8. If set to @code{0}, the filter will have no
13827 effect. A value of @code{8} means the higher quality. For each increment of
13828 that value the speed drops by a factor of approximately 2.  Default value is
13829 @code{3}.
13830
13831 @item qp
13832 Force a constant quantization parameter. If not set, the filter will use the QP
13833 from the video stream (if available).
13834 @end table
13835
13836 @section vaguedenoiser
13837
13838 Apply a wavelet based denoiser.
13839
13840 It transforms each frame from the video input into the wavelet domain,
13841 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
13842 the obtained coefficients. It does an inverse wavelet transform after.
13843 Due to wavelet properties, it should give a nice smoothed result, and
13844 reduced noise, without blurring picture features.
13845
13846 This filter accepts the following options:
13847
13848 @table @option
13849 @item threshold
13850 The filtering strength. The higher, the more filtered the video will be.
13851 Hard thresholding can use a higher threshold than soft thresholding
13852 before the video looks overfiltered.
13853
13854 @item method
13855 The filtering method the filter will use.
13856
13857 It accepts the following values:
13858 @table @samp
13859 @item hard
13860 All values under the threshold will be zeroed.
13861
13862 @item soft
13863 All values under the threshold will be zeroed. All values above will be
13864 reduced by the threshold.
13865
13866 @item garrote
13867 Scales or nullifies coefficients - intermediary between (more) soft and
13868 (less) hard thresholding.
13869 @end table
13870
13871 @item nsteps
13872 Number of times, the wavelet will decompose the picture. Picture can't
13873 be decomposed beyond a particular point (typically, 8 for a 640x480
13874 frame - as 2^9 = 512 > 480)
13875
13876 @item percent
13877 Partial of full denoising (limited coefficients shrinking), from 0 to 100.
13878
13879 @item planes
13880 A list of the planes to process. By default all planes are processed.
13881 @end table
13882
13883 @section vectorscope
13884
13885 Display 2 color component values in the two dimensional graph (which is called
13886 a vectorscope).
13887
13888 This filter accepts the following options:
13889
13890 @table @option
13891 @item mode, m
13892 Set vectorscope mode.
13893
13894 It accepts the following values:
13895 @table @samp
13896 @item gray
13897 Gray values are displayed on graph, higher brightness means more pixels have
13898 same component color value on location in graph. This is the default mode.
13899
13900 @item color
13901 Gray values are displayed on graph. Surrounding pixels values which are not
13902 present in video frame are drawn in gradient of 2 color components which are
13903 set by option @code{x} and @code{y}. The 3rd color component is static.
13904
13905 @item color2
13906 Actual color components values present in video frame are displayed on graph.
13907
13908 @item color3
13909 Similar as color2 but higher frequency of same values @code{x} and @code{y}
13910 on graph increases value of another color component, which is luminance by
13911 default values of @code{x} and @code{y}.
13912
13913 @item color4
13914 Actual colors present in video frame are displayed on graph. If two different
13915 colors map to same position on graph then color with higher value of component
13916 not present in graph is picked.
13917
13918 @item color5
13919 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
13920 component picked from radial gradient.
13921 @end table
13922
13923 @item x
13924 Set which color component will be represented on X-axis. Default is @code{1}.
13925
13926 @item y
13927 Set which color component will be represented on Y-axis. Default is @code{2}.
13928
13929 @item intensity, i
13930 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
13931 of color component which represents frequency of (X, Y) location in graph.
13932
13933 @item envelope, e
13934 @table @samp
13935 @item none
13936 No envelope, this is default.
13937
13938 @item instant
13939 Instant envelope, even darkest single pixel will be clearly highlighted.
13940
13941 @item peak
13942 Hold maximum and minimum values presented in graph over time. This way you
13943 can still spot out of range values without constantly looking at vectorscope.
13944
13945 @item peak+instant
13946 Peak and instant envelope combined together.
13947 @end table
13948
13949 @item graticule, g
13950 Set what kind of graticule to draw.
13951 @table @samp
13952 @item none
13953 @item green
13954 @item color
13955 @end table
13956
13957 @item opacity, o
13958 Set graticule opacity.
13959
13960 @item flags, f
13961 Set graticule flags.
13962
13963 @table @samp
13964 @item white
13965 Draw graticule for white point.
13966
13967 @item black
13968 Draw graticule for black point.
13969
13970 @item name
13971 Draw color points short names.
13972 @end table
13973
13974 @item bgopacity, b
13975 Set background opacity.
13976
13977 @item lthreshold, l
13978 Set low threshold for color component not represented on X or Y axis.
13979 Values lower than this value will be ignored. Default is 0.
13980 Note this value is multiplied with actual max possible value one pixel component
13981 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13982 is 0.1 * 255 = 25.
13983
13984 @item hthreshold, h
13985 Set high threshold for color component not represented on X or Y axis.
13986 Values higher than this value will be ignored. Default is 1.
13987 Note this value is multiplied with actual max possible value one pixel component
13988 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13989 is 0.9 * 255 = 230.
13990
13991 @item colorspace, c
13992 Set what kind of colorspace to use when drawing graticule.
13993 @table @samp
13994 @item auto
13995 @item 601
13996 @item 709
13997 @end table
13998 Default is auto.
13999 @end table
14000
14001 @anchor{vidstabdetect}
14002 @section vidstabdetect
14003
14004 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
14005 @ref{vidstabtransform} for pass 2.
14006
14007 This filter generates a file with relative translation and rotation
14008 transform information about subsequent frames, which is then used by
14009 the @ref{vidstabtransform} filter.
14010
14011 To enable compilation of this filter you need to configure FFmpeg with
14012 @code{--enable-libvidstab}.
14013
14014 This filter accepts the following options:
14015
14016 @table @option
14017 @item result
14018 Set the path to the file used to write the transforms information.
14019 Default value is @file{transforms.trf}.
14020
14021 @item shakiness
14022 Set how shaky the video is and how quick the camera is. It accepts an
14023 integer in the range 1-10, a value of 1 means little shakiness, a
14024 value of 10 means strong shakiness. Default value is 5.
14025
14026 @item accuracy
14027 Set the accuracy of the detection process. It must be a value in the
14028 range 1-15. A value of 1 means low accuracy, a value of 15 means high
14029 accuracy. Default value is 15.
14030
14031 @item stepsize
14032 Set stepsize of the search process. The region around minimum is
14033 scanned with 1 pixel resolution. Default value is 6.
14034
14035 @item mincontrast
14036 Set minimum contrast. Below this value a local measurement field is
14037 discarded. Must be a floating point value in the range 0-1. Default
14038 value is 0.3.
14039
14040 @item tripod
14041 Set reference frame number for tripod mode.
14042
14043 If enabled, the motion of the frames is compared to a reference frame
14044 in the filtered stream, identified by the specified number. The idea
14045 is to compensate all movements in a more-or-less static scene and keep
14046 the camera view absolutely still.
14047
14048 If set to 0, it is disabled. The frames are counted starting from 1.
14049
14050 @item show
14051 Show fields and transforms in the resulting frames. It accepts an
14052 integer in the range 0-2. Default value is 0, which disables any
14053 visualization.
14054 @end table
14055
14056 @subsection Examples
14057
14058 @itemize
14059 @item
14060 Use default values:
14061 @example
14062 vidstabdetect
14063 @end example
14064
14065 @item
14066 Analyze strongly shaky movie and put the results in file
14067 @file{mytransforms.trf}:
14068 @example
14069 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
14070 @end example
14071
14072 @item
14073 Visualize the result of internal transformations in the resulting
14074 video:
14075 @example
14076 vidstabdetect=show=1
14077 @end example
14078
14079 @item
14080 Analyze a video with medium shakiness using @command{ffmpeg}:
14081 @example
14082 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
14083 @end example
14084 @end itemize
14085
14086 @anchor{vidstabtransform}
14087 @section vidstabtransform
14088
14089 Video stabilization/deshaking: pass 2 of 2,
14090 see @ref{vidstabdetect} for pass 1.
14091
14092 Read a file with transform information for each frame and
14093 apply/compensate them. Together with the @ref{vidstabdetect}
14094 filter this can be used to deshake videos. See also
14095 @url{http://public.hronopik.de/vid.stab}. It is important to also use
14096 the @ref{unsharp} filter, see below.
14097
14098 To enable compilation of this filter you need to configure FFmpeg with
14099 @code{--enable-libvidstab}.
14100
14101 @subsection Options
14102
14103 @table @option
14104 @item input
14105 Set path to the file used to read the transforms. Default value is
14106 @file{transforms.trf}.
14107
14108 @item smoothing
14109 Set the number of frames (value*2 + 1) used for lowpass filtering the
14110 camera movements. Default value is 10.
14111
14112 For example a number of 10 means that 21 frames are used (10 in the
14113 past and 10 in the future) to smoothen the motion in the video. A
14114 larger value leads to a smoother video, but limits the acceleration of
14115 the camera (pan/tilt movements). 0 is a special case where a static
14116 camera is simulated.
14117
14118 @item optalgo
14119 Set the camera path optimization algorithm.
14120
14121 Accepted values are:
14122 @table @samp
14123 @item gauss
14124 gaussian kernel low-pass filter on camera motion (default)
14125 @item avg
14126 averaging on transformations
14127 @end table
14128
14129 @item maxshift
14130 Set maximal number of pixels to translate frames. Default value is -1,
14131 meaning no limit.
14132
14133 @item maxangle
14134 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
14135 value is -1, meaning no limit.
14136
14137 @item crop
14138 Specify how to deal with borders that may be visible due to movement
14139 compensation.
14140
14141 Available values are:
14142 @table @samp
14143 @item keep
14144 keep image information from previous frame (default)
14145 @item black
14146 fill the border black
14147 @end table
14148
14149 @item invert
14150 Invert transforms if set to 1. Default value is 0.
14151
14152 @item relative
14153 Consider transforms as relative to previous frame if set to 1,
14154 absolute if set to 0. Default value is 0.
14155
14156 @item zoom
14157 Set percentage to zoom. A positive value will result in a zoom-in
14158 effect, a negative value in a zoom-out effect. Default value is 0 (no
14159 zoom).
14160
14161 @item optzoom
14162 Set optimal zooming to avoid borders.
14163
14164 Accepted values are:
14165 @table @samp
14166 @item 0
14167 disabled
14168 @item 1
14169 optimal static zoom value is determined (only very strong movements
14170 will lead to visible borders) (default)
14171 @item 2
14172 optimal adaptive zoom value is determined (no borders will be
14173 visible), see @option{zoomspeed}
14174 @end table
14175
14176 Note that the value given at zoom is added to the one calculated here.
14177
14178 @item zoomspeed
14179 Set percent to zoom maximally each frame (enabled when
14180 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
14181 0.25.
14182
14183 @item interpol
14184 Specify type of interpolation.
14185
14186 Available values are:
14187 @table @samp
14188 @item no
14189 no interpolation
14190 @item linear
14191 linear only horizontal
14192 @item bilinear
14193 linear in both directions (default)
14194 @item bicubic
14195 cubic in both directions (slow)
14196 @end table
14197
14198 @item tripod
14199 Enable virtual tripod mode if set to 1, which is equivalent to
14200 @code{relative=0:smoothing=0}. Default value is 0.
14201
14202 Use also @code{tripod} option of @ref{vidstabdetect}.
14203
14204 @item debug
14205 Increase log verbosity if set to 1. Also the detected global motions
14206 are written to the temporary file @file{global_motions.trf}. Default
14207 value is 0.
14208 @end table
14209
14210 @subsection Examples
14211
14212 @itemize
14213 @item
14214 Use @command{ffmpeg} for a typical stabilization with default values:
14215 @example
14216 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
14217 @end example
14218
14219 Note the use of the @ref{unsharp} filter which is always recommended.
14220
14221 @item
14222 Zoom in a bit more and load transform data from a given file:
14223 @example
14224 vidstabtransform=zoom=5:input="mytransforms.trf"
14225 @end example
14226
14227 @item
14228 Smoothen the video even more:
14229 @example
14230 vidstabtransform=smoothing=30
14231 @end example
14232 @end itemize
14233
14234 @section vflip
14235
14236 Flip the input video vertically.
14237
14238 For example, to vertically flip a video with @command{ffmpeg}:
14239 @example
14240 ffmpeg -i in.avi -vf "vflip" out.avi
14241 @end example
14242
14243 @anchor{vignette}
14244 @section vignette
14245
14246 Make or reverse a natural vignetting effect.
14247
14248 The filter accepts the following options:
14249
14250 @table @option
14251 @item angle, a
14252 Set lens angle expression as a number of radians.
14253
14254 The value is clipped in the @code{[0,PI/2]} range.
14255
14256 Default value: @code{"PI/5"}
14257
14258 @item x0
14259 @item y0
14260 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
14261 by default.
14262
14263 @item mode
14264 Set forward/backward mode.
14265
14266 Available modes are:
14267 @table @samp
14268 @item forward
14269 The larger the distance from the central point, the darker the image becomes.
14270
14271 @item backward
14272 The larger the distance from the central point, the brighter the image becomes.
14273 This can be used to reverse a vignette effect, though there is no automatic
14274 detection to extract the lens @option{angle} and other settings (yet). It can
14275 also be used to create a burning effect.
14276 @end table
14277
14278 Default value is @samp{forward}.
14279
14280 @item eval
14281 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
14282
14283 It accepts the following values:
14284 @table @samp
14285 @item init
14286 Evaluate expressions only once during the filter initialization.
14287
14288 @item frame
14289 Evaluate expressions for each incoming frame. This is way slower than the
14290 @samp{init} mode since it requires all the scalers to be re-computed, but it
14291 allows advanced dynamic expressions.
14292 @end table
14293
14294 Default value is @samp{init}.
14295
14296 @item dither
14297 Set dithering to reduce the circular banding effects. Default is @code{1}
14298 (enabled).
14299
14300 @item aspect
14301 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
14302 Setting this value to the SAR of the input will make a rectangular vignetting
14303 following the dimensions of the video.
14304
14305 Default is @code{1/1}.
14306 @end table
14307
14308 @subsection Expressions
14309
14310 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
14311 following parameters.
14312
14313 @table @option
14314 @item w
14315 @item h
14316 input width and height
14317
14318 @item n
14319 the number of input frame, starting from 0
14320
14321 @item pts
14322 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
14323 @var{TB} units, NAN if undefined
14324
14325 @item r
14326 frame rate of the input video, NAN if the input frame rate is unknown
14327
14328 @item t
14329 the PTS (Presentation TimeStamp) of the filtered video frame,
14330 expressed in seconds, NAN if undefined
14331
14332 @item tb
14333 time base of the input video
14334 @end table
14335
14336
14337 @subsection Examples
14338
14339 @itemize
14340 @item
14341 Apply simple strong vignetting effect:
14342 @example
14343 vignette=PI/4
14344 @end example
14345
14346 @item
14347 Make a flickering vignetting:
14348 @example
14349 vignette='PI/4+random(1)*PI/50':eval=frame
14350 @end example
14351
14352 @end itemize
14353
14354 @section vstack
14355 Stack input videos vertically.
14356
14357 All streams must be of same pixel format and of same width.
14358
14359 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
14360 to create same output.
14361
14362 The filter accept the following option:
14363
14364 @table @option
14365 @item inputs
14366 Set number of input streams. Default is 2.
14367
14368 @item shortest
14369 If set to 1, force the output to terminate when the shortest input
14370 terminates. Default value is 0.
14371 @end table
14372
14373 @section w3fdif
14374
14375 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
14376 Deinterlacing Filter").
14377
14378 Based on the process described by Martin Weston for BBC R&D, and
14379 implemented based on the de-interlace algorithm written by Jim
14380 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
14381 uses filter coefficients calculated by BBC R&D.
14382
14383 There are two sets of filter coefficients, so called "simple":
14384 and "complex". Which set of filter coefficients is used can
14385 be set by passing an optional parameter:
14386
14387 @table @option
14388 @item filter
14389 Set the interlacing filter coefficients. Accepts one of the following values:
14390
14391 @table @samp
14392 @item simple
14393 Simple filter coefficient set.
14394 @item complex
14395 More-complex filter coefficient set.
14396 @end table
14397 Default value is @samp{complex}.
14398
14399 @item deint
14400 Specify which frames to deinterlace. Accept one of the following values:
14401
14402 @table @samp
14403 @item all
14404 Deinterlace all frames,
14405 @item interlaced
14406 Only deinterlace frames marked as interlaced.
14407 @end table
14408
14409 Default value is @samp{all}.
14410 @end table
14411
14412 @section waveform
14413 Video waveform monitor.
14414
14415 The waveform monitor plots color component intensity. By default luminance
14416 only. Each column of the waveform corresponds to a column of pixels in the
14417 source video.
14418
14419 It accepts the following options:
14420
14421 @table @option
14422 @item mode, m
14423 Can be either @code{row}, or @code{column}. Default is @code{column}.
14424 In row mode, the graph on the left side represents color component value 0 and
14425 the right side represents value = 255. In column mode, the top side represents
14426 color component value = 0 and bottom side represents value = 255.
14427
14428 @item intensity, i
14429 Set intensity. Smaller values are useful to find out how many values of the same
14430 luminance are distributed across input rows/columns.
14431 Default value is @code{0.04}. Allowed range is [0, 1].
14432
14433 @item mirror, r
14434 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
14435 In mirrored mode, higher values will be represented on the left
14436 side for @code{row} mode and at the top for @code{column} mode. Default is
14437 @code{1} (mirrored).
14438
14439 @item display, d
14440 Set display mode.
14441 It accepts the following values:
14442 @table @samp
14443 @item overlay
14444 Presents information identical to that in the @code{parade}, except
14445 that the graphs representing color components are superimposed directly
14446 over one another.
14447
14448 This display mode makes it easier to spot relative differences or similarities
14449 in overlapping areas of the color components that are supposed to be identical,
14450 such as neutral whites, grays, or blacks.
14451
14452 @item stack
14453 Display separate graph for the color components side by side in
14454 @code{row} mode or one below the other in @code{column} mode.
14455
14456 @item parade
14457 Display separate graph for the color components side by side in
14458 @code{column} mode or one below the other in @code{row} mode.
14459
14460 Using this display mode makes it easy to spot color casts in the highlights
14461 and shadows of an image, by comparing the contours of the top and the bottom
14462 graphs of each waveform. Since whites, grays, and blacks are characterized
14463 by exactly equal amounts of red, green, and blue, neutral areas of the picture
14464 should display three waveforms of roughly equal width/height. If not, the
14465 correction is easy to perform by making level adjustments the three waveforms.
14466 @end table
14467 Default is @code{stack}.
14468
14469 @item components, c
14470 Set which color components to display. Default is 1, which means only luminance
14471 or red color component if input is in RGB colorspace. If is set for example to
14472 7 it will display all 3 (if) available color components.
14473
14474 @item envelope, e
14475 @table @samp
14476 @item none
14477 No envelope, this is default.
14478
14479 @item instant
14480 Instant envelope, minimum and maximum values presented in graph will be easily
14481 visible even with small @code{step} value.
14482
14483 @item peak
14484 Hold minimum and maximum values presented in graph across time. This way you
14485 can still spot out of range values without constantly looking at waveforms.
14486
14487 @item peak+instant
14488 Peak and instant envelope combined together.
14489 @end table
14490
14491 @item filter, f
14492 @table @samp
14493 @item lowpass
14494 No filtering, this is default.
14495
14496 @item flat
14497 Luma and chroma combined together.
14498
14499 @item aflat
14500 Similar as above, but shows difference between blue and red chroma.
14501
14502 @item chroma
14503 Displays only chroma.
14504
14505 @item color
14506 Displays actual color value on waveform.
14507
14508 @item acolor
14509 Similar as above, but with luma showing frequency of chroma values.
14510 @end table
14511
14512 @item graticule, g
14513 Set which graticule to display.
14514
14515 @table @samp
14516 @item none
14517 Do not display graticule.
14518
14519 @item green
14520 Display green graticule showing legal broadcast ranges.
14521 @end table
14522
14523 @item opacity, o
14524 Set graticule opacity.
14525
14526 @item flags, fl
14527 Set graticule flags.
14528
14529 @table @samp
14530 @item numbers
14531 Draw numbers above lines. By default enabled.
14532
14533 @item dots
14534 Draw dots instead of lines.
14535 @end table
14536
14537 @item scale, s
14538 Set scale used for displaying graticule.
14539
14540 @table @samp
14541 @item digital
14542 @item millivolts
14543 @item ire
14544 @end table
14545 Default is digital.
14546
14547 @item bgopacity, b
14548 Set background opacity.
14549 @end table
14550
14551 @section weave
14552
14553 The @code{weave} takes a field-based video input and join
14554 each two sequential fields into single frame, producing a new double
14555 height clip with half the frame rate and half the frame count.
14556
14557 It accepts the following option:
14558
14559 @table @option
14560 @item first_field
14561 Set first field. Available values are:
14562
14563 @table @samp
14564 @item top, t
14565 Set the frame as top-field-first.
14566
14567 @item bottom, b
14568 Set the frame as bottom-field-first.
14569 @end table
14570 @end table
14571
14572 @subsection Examples
14573
14574 @itemize
14575 @item
14576 Interlace video using @ref{select} and @ref{separatefields} filter:
14577 @example
14578 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
14579 @end example
14580 @end itemize
14581
14582 @section xbr
14583 Apply the xBR high-quality magnification filter which is designed for pixel
14584 art. It follows a set of edge-detection rules, see
14585 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
14586
14587 It accepts the following option:
14588
14589 @table @option
14590 @item n
14591 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
14592 @code{3xBR} and @code{4} for @code{4xBR}.
14593 Default is @code{3}.
14594 @end table
14595
14596 @anchor{yadif}
14597 @section yadif
14598
14599 Deinterlace the input video ("yadif" means "yet another deinterlacing
14600 filter").
14601
14602 It accepts the following parameters:
14603
14604
14605 @table @option
14606
14607 @item mode
14608 The interlacing mode to adopt. It accepts one of the following values:
14609
14610 @table @option
14611 @item 0, send_frame
14612 Output one frame for each frame.
14613 @item 1, send_field
14614 Output one frame for each field.
14615 @item 2, send_frame_nospatial
14616 Like @code{send_frame}, but it skips the spatial interlacing check.
14617 @item 3, send_field_nospatial
14618 Like @code{send_field}, but it skips the spatial interlacing check.
14619 @end table
14620
14621 The default value is @code{send_frame}.
14622
14623 @item parity
14624 The picture field parity assumed for the input interlaced video. It accepts one
14625 of the following values:
14626
14627 @table @option
14628 @item 0, tff
14629 Assume the top field is first.
14630 @item 1, bff
14631 Assume the bottom field is first.
14632 @item -1, auto
14633 Enable automatic detection of field parity.
14634 @end table
14635
14636 The default value is @code{auto}.
14637 If the interlacing is unknown or the decoder does not export this information,
14638 top field first will be assumed.
14639
14640 @item deint
14641 Specify which frames to deinterlace. Accept one of the following
14642 values:
14643
14644 @table @option
14645 @item 0, all
14646 Deinterlace all frames.
14647 @item 1, interlaced
14648 Only deinterlace frames marked as interlaced.
14649 @end table
14650
14651 The default value is @code{all}.
14652 @end table
14653
14654 @section zoompan
14655
14656 Apply Zoom & Pan effect.
14657
14658 This filter accepts the following options:
14659
14660 @table @option
14661 @item zoom, z
14662 Set the zoom expression. Default is 1.
14663
14664 @item x
14665 @item y
14666 Set the x and y expression. Default is 0.
14667
14668 @item d
14669 Set the duration expression in number of frames.
14670 This sets for how many number of frames effect will last for
14671 single input image.
14672
14673 @item s
14674 Set the output image size, default is 'hd720'.
14675
14676 @item fps
14677 Set the output frame rate, default is '25'.
14678 @end table
14679
14680 Each expression can contain the following constants:
14681
14682 @table @option
14683 @item in_w, iw
14684 Input width.
14685
14686 @item in_h, ih
14687 Input height.
14688
14689 @item out_w, ow
14690 Output width.
14691
14692 @item out_h, oh
14693 Output height.
14694
14695 @item in
14696 Input frame count.
14697
14698 @item on
14699 Output frame count.
14700
14701 @item x
14702 @item y
14703 Last calculated 'x' and 'y' position from 'x' and 'y' expression
14704 for current input frame.
14705
14706 @item px
14707 @item py
14708 'x' and 'y' of last output frame of previous input frame or 0 when there was
14709 not yet such frame (first input frame).
14710
14711 @item zoom
14712 Last calculated zoom from 'z' expression for current input frame.
14713
14714 @item pzoom
14715 Last calculated zoom of last output frame of previous input frame.
14716
14717 @item duration
14718 Number of output frames for current input frame. Calculated from 'd' expression
14719 for each input frame.
14720
14721 @item pduration
14722 number of output frames created for previous input frame
14723
14724 @item a
14725 Rational number: input width / input height
14726
14727 @item sar
14728 sample aspect ratio
14729
14730 @item dar
14731 display aspect ratio
14732
14733 @end table
14734
14735 @subsection Examples
14736
14737 @itemize
14738 @item
14739 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
14740 @example
14741 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
14742 @end example
14743
14744 @item
14745 Zoom-in up to 1.5 and pan always at center of picture:
14746 @example
14747 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14748 @end example
14749
14750 @item
14751 Same as above but without pausing:
14752 @example
14753 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
14754 @end example
14755 @end itemize
14756
14757 @section zscale
14758 Scale (resize) the input video, using the z.lib library:
14759 https://github.com/sekrit-twc/zimg.
14760
14761 The zscale filter forces the output display aspect ratio to be the same
14762 as the input, by changing the output sample aspect ratio.
14763
14764 If the input image format is different from the format requested by
14765 the next filter, the zscale filter will convert the input to the
14766 requested format.
14767
14768 @subsection Options
14769 The filter accepts the following options.
14770
14771 @table @option
14772 @item width, w
14773 @item height, h
14774 Set the output video dimension expression. Default value is the input
14775 dimension.
14776
14777 If the @var{width} or @var{w} is 0, the input width is used for the output.
14778 If the @var{height} or @var{h} is 0, the input height is used for the output.
14779
14780 If one of the values is -1, the zscale filter will use a value that
14781 maintains the aspect ratio of the input image, calculated from the
14782 other specified dimension. If both of them are -1, the input size is
14783 used
14784
14785 If one of the values is -n with n > 1, the zscale filter will also use a value
14786 that maintains the aspect ratio of the input image, calculated from the other
14787 specified dimension. After that it will, however, make sure that the calculated
14788 dimension is divisible by n and adjust the value if necessary.
14789
14790 See below for the list of accepted constants for use in the dimension
14791 expression.
14792
14793 @item size, s
14794 Set the video size. For the syntax of this option, check the
14795 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14796
14797 @item dither, d
14798 Set the dither type.
14799
14800 Possible values are:
14801 @table @var
14802 @item none
14803 @item ordered
14804 @item random
14805 @item error_diffusion
14806 @end table
14807
14808 Default is none.
14809
14810 @item filter, f
14811 Set the resize filter type.
14812
14813 Possible values are:
14814 @table @var
14815 @item point
14816 @item bilinear
14817 @item bicubic
14818 @item spline16
14819 @item spline36
14820 @item lanczos
14821 @end table
14822
14823 Default is bilinear.
14824
14825 @item range, r
14826 Set the color range.
14827
14828 Possible values are:
14829 @table @var
14830 @item input
14831 @item limited
14832 @item full
14833 @end table
14834
14835 Default is same as input.
14836
14837 @item primaries, p
14838 Set the color primaries.
14839
14840 Possible values are:
14841 @table @var
14842 @item input
14843 @item 709
14844 @item unspecified
14845 @item 170m
14846 @item 240m
14847 @item 2020
14848 @end table
14849
14850 Default is same as input.
14851
14852 @item transfer, t
14853 Set the transfer characteristics.
14854
14855 Possible values are:
14856 @table @var
14857 @item input
14858 @item 709
14859 @item unspecified
14860 @item 601
14861 @item linear
14862 @item 2020_10
14863 @item 2020_12
14864 @item smpte2084
14865 @item iec61966-2-1
14866 @item arib-std-b67
14867 @end table
14868
14869 Default is same as input.
14870
14871 @item matrix, m
14872 Set the colorspace matrix.
14873
14874 Possible value are:
14875 @table @var
14876 @item input
14877 @item 709
14878 @item unspecified
14879 @item 470bg
14880 @item 170m
14881 @item 2020_ncl
14882 @item 2020_cl
14883 @end table
14884
14885 Default is same as input.
14886
14887 @item rangein, rin
14888 Set the input color range.
14889
14890 Possible values are:
14891 @table @var
14892 @item input
14893 @item limited
14894 @item full
14895 @end table
14896
14897 Default is same as input.
14898
14899 @item primariesin, pin
14900 Set the input color primaries.
14901
14902 Possible values are:
14903 @table @var
14904 @item input
14905 @item 709
14906 @item unspecified
14907 @item 170m
14908 @item 240m
14909 @item 2020
14910 @end table
14911
14912 Default is same as input.
14913
14914 @item transferin, tin
14915 Set the input transfer characteristics.
14916
14917 Possible values are:
14918 @table @var
14919 @item input
14920 @item 709
14921 @item unspecified
14922 @item 601
14923 @item linear
14924 @item 2020_10
14925 @item 2020_12
14926 @end table
14927
14928 Default is same as input.
14929
14930 @item matrixin, min
14931 Set the input colorspace matrix.
14932
14933 Possible value are:
14934 @table @var
14935 @item input
14936 @item 709
14937 @item unspecified
14938 @item 470bg
14939 @item 170m
14940 @item 2020_ncl
14941 @item 2020_cl
14942 @end table
14943
14944 @item chromal, c
14945 Set the output chroma location.
14946
14947 Possible values are:
14948 @table @var
14949 @item input
14950 @item left
14951 @item center
14952 @item topleft
14953 @item top
14954 @item bottomleft
14955 @item bottom
14956 @end table
14957
14958 @item chromalin, cin
14959 Set the input chroma location.
14960
14961 Possible values are:
14962 @table @var
14963 @item input
14964 @item left
14965 @item center
14966 @item topleft
14967 @item top
14968 @item bottomleft
14969 @item bottom
14970 @end table
14971
14972 @item npl
14973 Set the nominal peak luminance.
14974 @end table
14975
14976 The values of the @option{w} and @option{h} options are expressions
14977 containing the following constants:
14978
14979 @table @var
14980 @item in_w
14981 @item in_h
14982 The input width and height
14983
14984 @item iw
14985 @item ih
14986 These are the same as @var{in_w} and @var{in_h}.
14987
14988 @item out_w
14989 @item out_h
14990 The output (scaled) width and height
14991
14992 @item ow
14993 @item oh
14994 These are the same as @var{out_w} and @var{out_h}
14995
14996 @item a
14997 The same as @var{iw} / @var{ih}
14998
14999 @item sar
15000 input sample aspect ratio
15001
15002 @item dar
15003 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
15004
15005 @item hsub
15006 @item vsub
15007 horizontal and vertical input chroma subsample values. For example for the
15008 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15009
15010 @item ohsub
15011 @item ovsub
15012 horizontal and vertical output chroma subsample values. For example for the
15013 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15014 @end table
15015
15016 @table @option
15017 @end table
15018
15019 @c man end VIDEO FILTERS
15020
15021 @chapter Video Sources
15022 @c man begin VIDEO SOURCES
15023
15024 Below is a description of the currently available video sources.
15025
15026 @section buffer
15027
15028 Buffer video frames, and make them available to the filter chain.
15029
15030 This source is mainly intended for a programmatic use, in particular
15031 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
15032
15033 It accepts the following parameters:
15034
15035 @table @option
15036
15037 @item video_size
15038 Specify the size (width and height) of the buffered video frames. For the
15039 syntax of this option, check the
15040 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15041
15042 @item width
15043 The input video width.
15044
15045 @item height
15046 The input video height.
15047
15048 @item pix_fmt
15049 A string representing the pixel format of the buffered video frames.
15050 It may be a number corresponding to a pixel format, or a pixel format
15051 name.
15052
15053 @item time_base
15054 Specify the timebase assumed by the timestamps of the buffered frames.
15055
15056 @item frame_rate
15057 Specify the frame rate expected for the video stream.
15058
15059 @item pixel_aspect, sar
15060 The sample (pixel) aspect ratio of the input video.
15061
15062 @item sws_param
15063 Specify the optional parameters to be used for the scale filter which
15064 is automatically inserted when an input change is detected in the
15065 input size or format.
15066
15067 @item hw_frames_ctx
15068 When using a hardware pixel format, this should be a reference to an
15069 AVHWFramesContext describing input frames.
15070 @end table
15071
15072 For example:
15073 @example
15074 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
15075 @end example
15076
15077 will instruct the source to accept video frames with size 320x240 and
15078 with format "yuv410p", assuming 1/24 as the timestamps timebase and
15079 square pixels (1:1 sample aspect ratio).
15080 Since the pixel format with name "yuv410p" corresponds to the number 6
15081 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
15082 this example corresponds to:
15083 @example
15084 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
15085 @end example
15086
15087 Alternatively, the options can be specified as a flat string, but this
15088 syntax is deprecated:
15089
15090 @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}]
15091
15092 @section cellauto
15093
15094 Create a pattern generated by an elementary cellular automaton.
15095
15096 The initial state of the cellular automaton can be defined through the
15097 @option{filename} and @option{pattern} options. If such options are
15098 not specified an initial state is created randomly.
15099
15100 At each new frame a new row in the video is filled with the result of
15101 the cellular automaton next generation. The behavior when the whole
15102 frame is filled is defined by the @option{scroll} option.
15103
15104 This source accepts the following options:
15105
15106 @table @option
15107 @item filename, f
15108 Read the initial cellular automaton state, i.e. the starting row, from
15109 the specified file.
15110 In the file, each non-whitespace character is considered an alive
15111 cell, a newline will terminate the row, and further characters in the
15112 file will be ignored.
15113
15114 @item pattern, p
15115 Read the initial cellular automaton state, i.e. the starting row, from
15116 the specified string.
15117
15118 Each non-whitespace character in the string is considered an alive
15119 cell, a newline will terminate the row, and further characters in the
15120 string will be ignored.
15121
15122 @item rate, r
15123 Set the video rate, that is the number of frames generated per second.
15124 Default is 25.
15125
15126 @item random_fill_ratio, ratio
15127 Set the random fill ratio for the initial cellular automaton row. It
15128 is a floating point number value ranging from 0 to 1, defaults to
15129 1/PHI.
15130
15131 This option is ignored when a file or a pattern is specified.
15132
15133 @item random_seed, seed
15134 Set the seed for filling randomly the initial row, must be an integer
15135 included between 0 and UINT32_MAX. If not specified, or if explicitly
15136 set to -1, the filter will try to use a good random seed on a best
15137 effort basis.
15138
15139 @item rule
15140 Set the cellular automaton rule, it is a number ranging from 0 to 255.
15141 Default value is 110.
15142
15143 @item size, s
15144 Set the size of the output video. For the syntax of this option, check the
15145 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15146
15147 If @option{filename} or @option{pattern} is specified, the size is set
15148 by default to the width of the specified initial state row, and the
15149 height is set to @var{width} * PHI.
15150
15151 If @option{size} is set, it must contain the width of the specified
15152 pattern string, and the specified pattern will be centered in the
15153 larger row.
15154
15155 If a filename or a pattern string is not specified, the size value
15156 defaults to "320x518" (used for a randomly generated initial state).
15157
15158 @item scroll
15159 If set to 1, scroll the output upward when all the rows in the output
15160 have been already filled. If set to 0, the new generated row will be
15161 written over the top row just after the bottom row is filled.
15162 Defaults to 1.
15163
15164 @item start_full, full
15165 If set to 1, completely fill the output with generated rows before
15166 outputting the first frame.
15167 This is the default behavior, for disabling set the value to 0.
15168
15169 @item stitch
15170 If set to 1, stitch the left and right row edges together.
15171 This is the default behavior, for disabling set the value to 0.
15172 @end table
15173
15174 @subsection Examples
15175
15176 @itemize
15177 @item
15178 Read the initial state from @file{pattern}, and specify an output of
15179 size 200x400.
15180 @example
15181 cellauto=f=pattern:s=200x400
15182 @end example
15183
15184 @item
15185 Generate a random initial row with a width of 200 cells, with a fill
15186 ratio of 2/3:
15187 @example
15188 cellauto=ratio=2/3:s=200x200
15189 @end example
15190
15191 @item
15192 Create a pattern generated by rule 18 starting by a single alive cell
15193 centered on an initial row with width 100:
15194 @example
15195 cellauto=p=@@:s=100x400:full=0:rule=18
15196 @end example
15197
15198 @item
15199 Specify a more elaborated initial pattern:
15200 @example
15201 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
15202 @end example
15203
15204 @end itemize
15205
15206 @anchor{coreimagesrc}
15207 @section coreimagesrc
15208 Video source generated on GPU using Apple's CoreImage API on OSX.
15209
15210 This video source is a specialized version of the @ref{coreimage} video filter.
15211 Use a core image generator at the beginning of the applied filterchain to
15212 generate the content.
15213
15214 The coreimagesrc video source accepts the following options:
15215 @table @option
15216 @item list_generators
15217 List all available generators along with all their respective options as well as
15218 possible minimum and maximum values along with the default values.
15219 @example
15220 list_generators=true
15221 @end example
15222
15223 @item size, s
15224 Specify the size of the sourced video. For the syntax of this option, check the
15225 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15226 The default value is @code{320x240}.
15227
15228 @item rate, r
15229 Specify the frame rate of the sourced video, as the number of frames
15230 generated per second. It has to be a string in the format
15231 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15232 number or a valid video frame rate abbreviation. The default value is
15233 "25".
15234
15235 @item sar
15236 Set the sample aspect ratio of the sourced video.
15237
15238 @item duration, d
15239 Set the duration of the sourced video. See
15240 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15241 for the accepted syntax.
15242
15243 If not specified, or the expressed duration is negative, the video is
15244 supposed to be generated forever.
15245 @end table
15246
15247 Additionally, all options of the @ref{coreimage} video filter are accepted.
15248 A complete filterchain can be used for further processing of the
15249 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
15250 and examples for details.
15251
15252 @subsection Examples
15253
15254 @itemize
15255
15256 @item
15257 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
15258 given as complete and escaped command-line for Apple's standard bash shell:
15259 @example
15260 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
15261 @end example
15262 This example is equivalent to the QRCode example of @ref{coreimage} without the
15263 need for a nullsrc video source.
15264 @end itemize
15265
15266
15267 @section mandelbrot
15268
15269 Generate a Mandelbrot set fractal, and progressively zoom towards the
15270 point specified with @var{start_x} and @var{start_y}.
15271
15272 This source accepts the following options:
15273
15274 @table @option
15275
15276 @item end_pts
15277 Set the terminal pts value. Default value is 400.
15278
15279 @item end_scale
15280 Set the terminal scale value.
15281 Must be a floating point value. Default value is 0.3.
15282
15283 @item inner
15284 Set the inner coloring mode, that is the algorithm used to draw the
15285 Mandelbrot fractal internal region.
15286
15287 It shall assume one of the following values:
15288 @table @option
15289 @item black
15290 Set black mode.
15291 @item convergence
15292 Show time until convergence.
15293 @item mincol
15294 Set color based on point closest to the origin of the iterations.
15295 @item period
15296 Set period mode.
15297 @end table
15298
15299 Default value is @var{mincol}.
15300
15301 @item bailout
15302 Set the bailout value. Default value is 10.0.
15303
15304 @item maxiter
15305 Set the maximum of iterations performed by the rendering
15306 algorithm. Default value is 7189.
15307
15308 @item outer
15309 Set outer coloring mode.
15310 It shall assume one of following values:
15311 @table @option
15312 @item iteration_count
15313 Set iteration cound mode.
15314 @item normalized_iteration_count
15315 set normalized iteration count mode.
15316 @end table
15317 Default value is @var{normalized_iteration_count}.
15318
15319 @item rate, r
15320 Set frame rate, expressed as number of frames per second. Default
15321 value is "25".
15322
15323 @item size, s
15324 Set frame size. For the syntax of this option, check the "Video
15325 size" section in the ffmpeg-utils manual. Default value is "640x480".
15326
15327 @item start_scale
15328 Set the initial scale value. Default value is 3.0.
15329
15330 @item start_x
15331 Set the initial x position. Must be a floating point value between
15332 -100 and 100. Default value is -0.743643887037158704752191506114774.
15333
15334 @item start_y
15335 Set the initial y position. Must be a floating point value between
15336 -100 and 100. Default value is -0.131825904205311970493132056385139.
15337 @end table
15338
15339 @section mptestsrc
15340
15341 Generate various test patterns, as generated by the MPlayer test filter.
15342
15343 The size of the generated video is fixed, and is 256x256.
15344 This source is useful in particular for testing encoding features.
15345
15346 This source accepts the following options:
15347
15348 @table @option
15349
15350 @item rate, r
15351 Specify the frame rate of the sourced video, as the number of frames
15352 generated per second. It has to be a string in the format
15353 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15354 number or a valid video frame rate abbreviation. The default value is
15355 "25".
15356
15357 @item duration, d
15358 Set the duration of the sourced video. See
15359 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15360 for the accepted syntax.
15361
15362 If not specified, or the expressed duration is negative, the video is
15363 supposed to be generated forever.
15364
15365 @item test, t
15366
15367 Set the number or the name of the test to perform. Supported tests are:
15368 @table @option
15369 @item dc_luma
15370 @item dc_chroma
15371 @item freq_luma
15372 @item freq_chroma
15373 @item amp_luma
15374 @item amp_chroma
15375 @item cbp
15376 @item mv
15377 @item ring1
15378 @item ring2
15379 @item all
15380
15381 @end table
15382
15383 Default value is "all", which will cycle through the list of all tests.
15384 @end table
15385
15386 Some examples:
15387 @example
15388 mptestsrc=t=dc_luma
15389 @end example
15390
15391 will generate a "dc_luma" test pattern.
15392
15393 @section frei0r_src
15394
15395 Provide a frei0r source.
15396
15397 To enable compilation of this filter you need to install the frei0r
15398 header and configure FFmpeg with @code{--enable-frei0r}.
15399
15400 This source accepts the following parameters:
15401
15402 @table @option
15403
15404 @item size
15405 The size of the video to generate. For the syntax of this option, check the
15406 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15407
15408 @item framerate
15409 The framerate of the generated video. It may be a string of the form
15410 @var{num}/@var{den} or a frame rate abbreviation.
15411
15412 @item filter_name
15413 The name to the frei0r source to load. For more information regarding frei0r and
15414 how to set the parameters, read the @ref{frei0r} section in the video filters
15415 documentation.
15416
15417 @item filter_params
15418 A '|'-separated list of parameters to pass to the frei0r source.
15419
15420 @end table
15421
15422 For example, to generate a frei0r partik0l source with size 200x200
15423 and frame rate 10 which is overlaid on the overlay filter main input:
15424 @example
15425 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
15426 @end example
15427
15428 @section life
15429
15430 Generate a life pattern.
15431
15432 This source is based on a generalization of John Conway's life game.
15433
15434 The sourced input represents a life grid, each pixel represents a cell
15435 which can be in one of two possible states, alive or dead. Every cell
15436 interacts with its eight neighbours, which are the cells that are
15437 horizontally, vertically, or diagonally adjacent.
15438
15439 At each interaction the grid evolves according to the adopted rule,
15440 which specifies the number of neighbor alive cells which will make a
15441 cell stay alive or born. The @option{rule} option allows one to specify
15442 the rule to adopt.
15443
15444 This source accepts the following options:
15445
15446 @table @option
15447 @item filename, f
15448 Set the file from which to read the initial grid state. In the file,
15449 each non-whitespace character is considered an alive cell, and newline
15450 is used to delimit the end of each row.
15451
15452 If this option is not specified, the initial grid is generated
15453 randomly.
15454
15455 @item rate, r
15456 Set the video rate, that is the number of frames generated per second.
15457 Default is 25.
15458
15459 @item random_fill_ratio, ratio
15460 Set the random fill ratio for the initial random grid. It is a
15461 floating point number value ranging from 0 to 1, defaults to 1/PHI.
15462 It is ignored when a file is specified.
15463
15464 @item random_seed, seed
15465 Set the seed for filling the initial random grid, must be an integer
15466 included between 0 and UINT32_MAX. If not specified, or if explicitly
15467 set to -1, the filter will try to use a good random seed on a best
15468 effort basis.
15469
15470 @item rule
15471 Set the life rule.
15472
15473 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
15474 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
15475 @var{NS} specifies the number of alive neighbor cells which make a
15476 live cell stay alive, and @var{NB} the number of alive neighbor cells
15477 which make a dead cell to become alive (i.e. to "born").
15478 "s" and "b" can be used in place of "S" and "B", respectively.
15479
15480 Alternatively a rule can be specified by an 18-bits integer. The 9
15481 high order bits are used to encode the next cell state if it is alive
15482 for each number of neighbor alive cells, the low order bits specify
15483 the rule for "borning" new cells. Higher order bits encode for an
15484 higher number of neighbor cells.
15485 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
15486 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
15487
15488 Default value is "S23/B3", which is the original Conway's game of life
15489 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
15490 cells, and will born a new cell if there are three alive cells around
15491 a dead cell.
15492
15493 @item size, s
15494 Set the size of the output video. For the syntax of this option, check the
15495 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15496
15497 If @option{filename} is specified, the size is set by default to the
15498 same size of the input file. If @option{size} is set, it must contain
15499 the size specified in the input file, and the initial grid defined in
15500 that file is centered in the larger resulting area.
15501
15502 If a filename is not specified, the size value defaults to "320x240"
15503 (used for a randomly generated initial grid).
15504
15505 @item stitch
15506 If set to 1, stitch the left and right grid edges together, and the
15507 top and bottom edges also. Defaults to 1.
15508
15509 @item mold
15510 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
15511 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
15512 value from 0 to 255.
15513
15514 @item life_color
15515 Set the color of living (or new born) cells.
15516
15517 @item death_color
15518 Set the color of dead cells. If @option{mold} is set, this is the first color
15519 used to represent a dead cell.
15520
15521 @item mold_color
15522 Set mold color, for definitely dead and moldy cells.
15523
15524 For the syntax of these 3 color options, check the "Color" section in the
15525 ffmpeg-utils manual.
15526 @end table
15527
15528 @subsection Examples
15529
15530 @itemize
15531 @item
15532 Read a grid from @file{pattern}, and center it on a grid of size
15533 300x300 pixels:
15534 @example
15535 life=f=pattern:s=300x300
15536 @end example
15537
15538 @item
15539 Generate a random grid of size 200x200, with a fill ratio of 2/3:
15540 @example
15541 life=ratio=2/3:s=200x200
15542 @end example
15543
15544 @item
15545 Specify a custom rule for evolving a randomly generated grid:
15546 @example
15547 life=rule=S14/B34
15548 @end example
15549
15550 @item
15551 Full example with slow death effect (mold) using @command{ffplay}:
15552 @example
15553 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
15554 @end example
15555 @end itemize
15556
15557 @anchor{allrgb}
15558 @anchor{allyuv}
15559 @anchor{color}
15560 @anchor{haldclutsrc}
15561 @anchor{nullsrc}
15562 @anchor{rgbtestsrc}
15563 @anchor{smptebars}
15564 @anchor{smptehdbars}
15565 @anchor{testsrc}
15566 @anchor{testsrc2}
15567 @anchor{yuvtestsrc}
15568 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
15569
15570 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
15571
15572 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
15573
15574 The @code{color} source provides an uniformly colored input.
15575
15576 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
15577 @ref{haldclut} filter.
15578
15579 The @code{nullsrc} source returns unprocessed video frames. It is
15580 mainly useful to be employed in analysis / debugging tools, or as the
15581 source for filters which ignore the input data.
15582
15583 The @code{rgbtestsrc} source generates an RGB test pattern useful for
15584 detecting RGB vs BGR issues. You should see a red, green and blue
15585 stripe from top to bottom.
15586
15587 The @code{smptebars} source generates a color bars pattern, based on
15588 the SMPTE Engineering Guideline EG 1-1990.
15589
15590 The @code{smptehdbars} source generates a color bars pattern, based on
15591 the SMPTE RP 219-2002.
15592
15593 The @code{testsrc} source generates a test video pattern, showing a
15594 color pattern, a scrolling gradient and a timestamp. This is mainly
15595 intended for testing purposes.
15596
15597 The @code{testsrc2} source is similar to testsrc, but supports more
15598 pixel formats instead of just @code{rgb24}. This allows using it as an
15599 input for other tests without requiring a format conversion.
15600
15601 The @code{yuvtestsrc} source generates an YUV test pattern. You should
15602 see a y, cb and cr stripe from top to bottom.
15603
15604 The sources accept the following parameters:
15605
15606 @table @option
15607
15608 @item color, c
15609 Specify the color of the source, only available in the @code{color}
15610 source. For the syntax of this option, check the "Color" section in the
15611 ffmpeg-utils manual.
15612
15613 @item level
15614 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
15615 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
15616 pixels to be used as identity matrix for 3D lookup tables. Each component is
15617 coded on a @code{1/(N*N)} scale.
15618
15619 @item size, s
15620 Specify the size of the sourced video. For the syntax of this option, check the
15621 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15622 The default value is @code{320x240}.
15623
15624 This option is not available with the @code{haldclutsrc} filter.
15625
15626 @item rate, r
15627 Specify the frame rate of the sourced video, as the number of frames
15628 generated per second. It has to be a string in the format
15629 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15630 number or a valid video frame rate abbreviation. The default value is
15631 "25".
15632
15633 @item sar
15634 Set the sample aspect ratio of the sourced video.
15635
15636 @item duration, d
15637 Set the duration of the sourced video. See
15638 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15639 for the accepted syntax.
15640
15641 If not specified, or the expressed duration is negative, the video is
15642 supposed to be generated forever.
15643
15644 @item decimals, n
15645 Set the number of decimals to show in the timestamp, only available in the
15646 @code{testsrc} source.
15647
15648 The displayed timestamp value will correspond to the original
15649 timestamp value multiplied by the power of 10 of the specified
15650 value. Default value is 0.
15651 @end table
15652
15653 For example the following:
15654 @example
15655 testsrc=duration=5.3:size=qcif:rate=10
15656 @end example
15657
15658 will generate a video with a duration of 5.3 seconds, with size
15659 176x144 and a frame rate of 10 frames per second.
15660
15661 The following graph description will generate a red source
15662 with an opacity of 0.2, with size "qcif" and a frame rate of 10
15663 frames per second.
15664 @example
15665 color=c=red@@0.2:s=qcif:r=10
15666 @end example
15667
15668 If the input content is to be ignored, @code{nullsrc} can be used. The
15669 following command generates noise in the luminance plane by employing
15670 the @code{geq} filter:
15671 @example
15672 nullsrc=s=256x256, geq=random(1)*255:128:128
15673 @end example
15674
15675 @subsection Commands
15676
15677 The @code{color} source supports the following commands:
15678
15679 @table @option
15680 @item c, color
15681 Set the color of the created image. Accepts the same syntax of the
15682 corresponding @option{color} option.
15683 @end table
15684
15685 @c man end VIDEO SOURCES
15686
15687 @chapter Video Sinks
15688 @c man begin VIDEO SINKS
15689
15690 Below is a description of the currently available video sinks.
15691
15692 @section buffersink
15693
15694 Buffer video frames, and make them available to the end of the filter
15695 graph.
15696
15697 This sink is mainly intended for programmatic use, in particular
15698 through the interface defined in @file{libavfilter/buffersink.h}
15699 or the options system.
15700
15701 It accepts a pointer to an AVBufferSinkContext structure, which
15702 defines the incoming buffers' formats, to be passed as the opaque
15703 parameter to @code{avfilter_init_filter} for initialization.
15704
15705 @section nullsink
15706
15707 Null video sink: do absolutely nothing with the input video. It is
15708 mainly useful as a template and for use in analysis / debugging
15709 tools.
15710
15711 @c man end VIDEO SINKS
15712
15713 @chapter Multimedia Filters
15714 @c man begin MULTIMEDIA FILTERS
15715
15716 Below is a description of the currently available multimedia filters.
15717
15718 @section abitscope
15719
15720 Convert input audio to a video output, displaying the audio bit scope.
15721
15722 The filter accepts the following options:
15723
15724 @table @option
15725 @item rate, r
15726 Set frame rate, expressed as number of frames per second. Default
15727 value is "25".
15728
15729 @item size, s
15730 Specify the video size for the output. For the syntax of this option, check the
15731 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15732 Default value is @code{1024x256}.
15733
15734 @item colors
15735 Specify list of colors separated by space or by '|' which will be used to
15736 draw channels. Unrecognized or missing colors will be replaced
15737 by white color.
15738 @end table
15739
15740 @section ahistogram
15741
15742 Convert input audio to a video output, displaying the volume histogram.
15743
15744 The filter accepts the following options:
15745
15746 @table @option
15747 @item dmode
15748 Specify how histogram is calculated.
15749
15750 It accepts the following values:
15751 @table @samp
15752 @item single
15753 Use single histogram for all channels.
15754 @item separate
15755 Use separate histogram for each channel.
15756 @end table
15757 Default is @code{single}.
15758
15759 @item rate, r
15760 Set frame rate, expressed as number of frames per second. Default
15761 value is "25".
15762
15763 @item size, s
15764 Specify the video size for the output. For the syntax of this option, check the
15765 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15766 Default value is @code{hd720}.
15767
15768 @item scale
15769 Set display scale.
15770
15771 It accepts the following values:
15772 @table @samp
15773 @item log
15774 logarithmic
15775 @item sqrt
15776 square root
15777 @item cbrt
15778 cubic root
15779 @item lin
15780 linear
15781 @item rlog
15782 reverse logarithmic
15783 @end table
15784 Default is @code{log}.
15785
15786 @item ascale
15787 Set amplitude scale.
15788
15789 It accepts the following values:
15790 @table @samp
15791 @item log
15792 logarithmic
15793 @item lin
15794 linear
15795 @end table
15796 Default is @code{log}.
15797
15798 @item acount
15799 Set how much frames to accumulate in histogram.
15800 Defauls is 1. Setting this to -1 accumulates all frames.
15801
15802 @item rheight
15803 Set histogram ratio of window height.
15804
15805 @item slide
15806 Set sonogram sliding.
15807
15808 It accepts the following values:
15809 @table @samp
15810 @item replace
15811 replace old rows with new ones.
15812 @item scroll
15813 scroll from top to bottom.
15814 @end table
15815 Default is @code{replace}.
15816 @end table
15817
15818 @section aphasemeter
15819
15820 Convert input audio to a video output, displaying the audio phase.
15821
15822 The filter accepts the following options:
15823
15824 @table @option
15825 @item rate, r
15826 Set the output frame rate. Default value is @code{25}.
15827
15828 @item size, s
15829 Set the video size for the output. For the syntax of this option, check the
15830 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15831 Default value is @code{800x400}.
15832
15833 @item rc
15834 @item gc
15835 @item bc
15836 Specify the red, green, blue contrast. Default values are @code{2},
15837 @code{7} and @code{1}.
15838 Allowed range is @code{[0, 255]}.
15839
15840 @item mpc
15841 Set color which will be used for drawing median phase. If color is
15842 @code{none} which is default, no median phase value will be drawn.
15843
15844 @item video
15845 Enable video output. Default is enabled.
15846 @end table
15847
15848 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
15849 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
15850 The @code{-1} means left and right channels are completely out of phase and
15851 @code{1} means channels are in phase.
15852
15853 @section avectorscope
15854
15855 Convert input audio to a video output, representing the audio vector
15856 scope.
15857
15858 The filter is used to measure the difference between channels of stereo
15859 audio stream. A monoaural signal, consisting of identical left and right
15860 signal, results in straight vertical line. Any stereo separation is visible
15861 as a deviation from this line, creating a Lissajous figure.
15862 If the straight (or deviation from it) but horizontal line appears this
15863 indicates that the left and right channels are out of phase.
15864
15865 The filter accepts the following options:
15866
15867 @table @option
15868 @item mode, m
15869 Set the vectorscope mode.
15870
15871 Available values are:
15872 @table @samp
15873 @item lissajous
15874 Lissajous rotated by 45 degrees.
15875
15876 @item lissajous_xy
15877 Same as above but not rotated.
15878
15879 @item polar
15880 Shape resembling half of circle.
15881 @end table
15882
15883 Default value is @samp{lissajous}.
15884
15885 @item size, s
15886 Set the video size for the output. For the syntax of this option, check the
15887 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15888 Default value is @code{400x400}.
15889
15890 @item rate, r
15891 Set the output frame rate. Default value is @code{25}.
15892
15893 @item rc
15894 @item gc
15895 @item bc
15896 @item ac
15897 Specify the red, green, blue and alpha contrast. Default values are @code{40},
15898 @code{160}, @code{80} and @code{255}.
15899 Allowed range is @code{[0, 255]}.
15900
15901 @item rf
15902 @item gf
15903 @item bf
15904 @item af
15905 Specify the red, green, blue and alpha fade. Default values are @code{15},
15906 @code{10}, @code{5} and @code{5}.
15907 Allowed range is @code{[0, 255]}.
15908
15909 @item zoom
15910 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
15911
15912 @item draw
15913 Set the vectorscope drawing mode.
15914
15915 Available values are:
15916 @table @samp
15917 @item dot
15918 Draw dot for each sample.
15919
15920 @item line
15921 Draw line between previous and current sample.
15922 @end table
15923
15924 Default value is @samp{dot}.
15925
15926 @item scale
15927 Specify amplitude scale of audio samples.
15928
15929 Available values are:
15930 @table @samp
15931 @item lin
15932 Linear.
15933
15934 @item sqrt
15935 Square root.
15936
15937 @item cbrt
15938 Cubic root.
15939
15940 @item log
15941 Logarithmic.
15942 @end table
15943
15944 @end table
15945
15946 @subsection Examples
15947
15948 @itemize
15949 @item
15950 Complete example using @command{ffplay}:
15951 @example
15952 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
15953              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
15954 @end example
15955 @end itemize
15956
15957 @section bench, abench
15958
15959 Benchmark part of a filtergraph.
15960
15961 The filter accepts the following options:
15962
15963 @table @option
15964 @item action
15965 Start or stop a timer.
15966
15967 Available values are:
15968 @table @samp
15969 @item start
15970 Get the current time, set it as frame metadata (using the key
15971 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
15972
15973 @item stop
15974 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
15975 the input frame metadata to get the time difference. Time difference, average,
15976 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
15977 @code{min}) are then printed. The timestamps are expressed in seconds.
15978 @end table
15979 @end table
15980
15981 @subsection Examples
15982
15983 @itemize
15984 @item
15985 Benchmark @ref{selectivecolor} filter:
15986 @example
15987 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
15988 @end example
15989 @end itemize
15990
15991 @section concat
15992
15993 Concatenate audio and video streams, joining them together one after the
15994 other.
15995
15996 The filter works on segments of synchronized video and audio streams. All
15997 segments must have the same number of streams of each type, and that will
15998 also be the number of streams at output.
15999
16000 The filter accepts the following options:
16001
16002 @table @option
16003
16004 @item n
16005 Set the number of segments. Default is 2.
16006
16007 @item v
16008 Set the number of output video streams, that is also the number of video
16009 streams in each segment. Default is 1.
16010
16011 @item a
16012 Set the number of output audio streams, that is also the number of audio
16013 streams in each segment. Default is 0.
16014
16015 @item unsafe
16016 Activate unsafe mode: do not fail if segments have a different format.
16017
16018 @end table
16019
16020 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
16021 @var{a} audio outputs.
16022
16023 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
16024 segment, in the same order as the outputs, then the inputs for the second
16025 segment, etc.
16026
16027 Related streams do not always have exactly the same duration, for various
16028 reasons including codec frame size or sloppy authoring. For that reason,
16029 related synchronized streams (e.g. a video and its audio track) should be
16030 concatenated at once. The concat filter will use the duration of the longest
16031 stream in each segment (except the last one), and if necessary pad shorter
16032 audio streams with silence.
16033
16034 For this filter to work correctly, all segments must start at timestamp 0.
16035
16036 All corresponding streams must have the same parameters in all segments; the
16037 filtering system will automatically select a common pixel format for video
16038 streams, and a common sample format, sample rate and channel layout for
16039 audio streams, but other settings, such as resolution, must be converted
16040 explicitly by the user.
16041
16042 Different frame rates are acceptable but will result in variable frame rate
16043 at output; be sure to configure the output file to handle it.
16044
16045 @subsection Examples
16046
16047 @itemize
16048 @item
16049 Concatenate an opening, an episode and an ending, all in bilingual version
16050 (video in stream 0, audio in streams 1 and 2):
16051 @example
16052 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
16053   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
16054    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
16055   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
16056 @end example
16057
16058 @item
16059 Concatenate two parts, handling audio and video separately, using the
16060 (a)movie sources, and adjusting the resolution:
16061 @example
16062 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
16063 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
16064 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
16065 @end example
16066 Note that a desync will happen at the stitch if the audio and video streams
16067 do not have exactly the same duration in the first file.
16068
16069 @end itemize
16070
16071 @section drawgraph, adrawgraph
16072
16073 Draw a graph using input video or audio metadata.
16074
16075 It accepts the following parameters:
16076
16077 @table @option
16078 @item m1
16079 Set 1st frame metadata key from which metadata values will be used to draw a graph.
16080
16081 @item fg1
16082 Set 1st foreground color expression.
16083
16084 @item m2
16085 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
16086
16087 @item fg2
16088 Set 2nd foreground color expression.
16089
16090 @item m3
16091 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
16092
16093 @item fg3
16094 Set 3rd foreground color expression.
16095
16096 @item m4
16097 Set 4th frame metadata key from which metadata values will be used to draw a graph.
16098
16099 @item fg4
16100 Set 4th foreground color expression.
16101
16102 @item min
16103 Set minimal value of metadata value.
16104
16105 @item max
16106 Set maximal value of metadata value.
16107
16108 @item bg
16109 Set graph background color. Default is white.
16110
16111 @item mode
16112 Set graph mode.
16113
16114 Available values for mode is:
16115 @table @samp
16116 @item bar
16117 @item dot
16118 @item line
16119 @end table
16120
16121 Default is @code{line}.
16122
16123 @item slide
16124 Set slide mode.
16125
16126 Available values for slide is:
16127 @table @samp
16128 @item frame
16129 Draw new frame when right border is reached.
16130
16131 @item replace
16132 Replace old columns with new ones.
16133
16134 @item scroll
16135 Scroll from right to left.
16136
16137 @item rscroll
16138 Scroll from left to right.
16139
16140 @item picture
16141 Draw single picture.
16142 @end table
16143
16144 Default is @code{frame}.
16145
16146 @item size
16147 Set size of graph video. For the syntax of this option, check the
16148 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16149 The default value is @code{900x256}.
16150
16151 The foreground color expressions can use the following variables:
16152 @table @option
16153 @item MIN
16154 Minimal value of metadata value.
16155
16156 @item MAX
16157 Maximal value of metadata value.
16158
16159 @item VAL
16160 Current metadata key value.
16161 @end table
16162
16163 The color is defined as 0xAABBGGRR.
16164 @end table
16165
16166 Example using metadata from @ref{signalstats} filter:
16167 @example
16168 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
16169 @end example
16170
16171 Example using metadata from @ref{ebur128} filter:
16172 @example
16173 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
16174 @end example
16175
16176 @anchor{ebur128}
16177 @section ebur128
16178
16179 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
16180 it unchanged. By default, it logs a message at a frequency of 10Hz with the
16181 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
16182 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
16183
16184 The filter also has a video output (see the @var{video} option) with a real
16185 time graph to observe the loudness evolution. The graphic contains the logged
16186 message mentioned above, so it is not printed anymore when this option is set,
16187 unless the verbose logging is set. The main graphing area contains the
16188 short-term loudness (3 seconds of analysis), and the gauge on the right is for
16189 the momentary loudness (400 milliseconds).
16190
16191 More information about the Loudness Recommendation EBU R128 on
16192 @url{http://tech.ebu.ch/loudness}.
16193
16194 The filter accepts the following options:
16195
16196 @table @option
16197
16198 @item video
16199 Activate the video output. The audio stream is passed unchanged whether this
16200 option is set or no. The video stream will be the first output stream if
16201 activated. Default is @code{0}.
16202
16203 @item size
16204 Set the video size. This option is for video only. For the syntax of this
16205 option, check the
16206 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16207 Default and minimum resolution is @code{640x480}.
16208
16209 @item meter
16210 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
16211 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
16212 other integer value between this range is allowed.
16213
16214 @item metadata
16215 Set metadata injection. If set to @code{1}, the audio input will be segmented
16216 into 100ms output frames, each of them containing various loudness information
16217 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
16218
16219 Default is @code{0}.
16220
16221 @item framelog
16222 Force the frame logging level.
16223
16224 Available values are:
16225 @table @samp
16226 @item info
16227 information logging level
16228 @item verbose
16229 verbose logging level
16230 @end table
16231
16232 By default, the logging level is set to @var{info}. If the @option{video} or
16233 the @option{metadata} options are set, it switches to @var{verbose}.
16234
16235 @item peak
16236 Set peak mode(s).
16237
16238 Available modes can be cumulated (the option is a @code{flag} type). Possible
16239 values are:
16240 @table @samp
16241 @item none
16242 Disable any peak mode (default).
16243 @item sample
16244 Enable sample-peak mode.
16245
16246 Simple peak mode looking for the higher sample value. It logs a message
16247 for sample-peak (identified by @code{SPK}).
16248 @item true
16249 Enable true-peak mode.
16250
16251 If enabled, the peak lookup is done on an over-sampled version of the input
16252 stream for better peak accuracy. It logs a message for true-peak.
16253 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
16254 This mode requires a build with @code{libswresample}.
16255 @end table
16256
16257 @item dualmono
16258 Treat mono input files as "dual mono". If a mono file is intended for playback
16259 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
16260 If set to @code{true}, this option will compensate for this effect.
16261 Multi-channel input files are not affected by this option.
16262
16263 @item panlaw
16264 Set a specific pan law to be used for the measurement of dual mono files.
16265 This parameter is optional, and has a default value of -3.01dB.
16266 @end table
16267
16268 @subsection Examples
16269
16270 @itemize
16271 @item
16272 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
16273 @example
16274 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
16275 @end example
16276
16277 @item
16278 Run an analysis with @command{ffmpeg}:
16279 @example
16280 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
16281 @end example
16282 @end itemize
16283
16284 @section interleave, ainterleave
16285
16286 Temporally interleave frames from several inputs.
16287
16288 @code{interleave} works with video inputs, @code{ainterleave} with audio.
16289
16290 These filters read frames from several inputs and send the oldest
16291 queued frame to the output.
16292
16293 Input streams must have well defined, monotonically increasing frame
16294 timestamp values.
16295
16296 In order to submit one frame to output, these filters need to enqueue
16297 at least one frame for each input, so they cannot work in case one
16298 input is not yet terminated and will not receive incoming frames.
16299
16300 For example consider the case when one input is a @code{select} filter
16301 which always drops input frames. The @code{interleave} filter will keep
16302 reading from that input, but it will never be able to send new frames
16303 to output until the input sends an end-of-stream signal.
16304
16305 Also, depending on inputs synchronization, the filters will drop
16306 frames in case one input receives more frames than the other ones, and
16307 the queue is already filled.
16308
16309 These filters accept the following options:
16310
16311 @table @option
16312 @item nb_inputs, n
16313 Set the number of different inputs, it is 2 by default.
16314 @end table
16315
16316 @subsection Examples
16317
16318 @itemize
16319 @item
16320 Interleave frames belonging to different streams using @command{ffmpeg}:
16321 @example
16322 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
16323 @end example
16324
16325 @item
16326 Add flickering blur effect:
16327 @example
16328 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
16329 @end example
16330 @end itemize
16331
16332 @section metadata, ametadata
16333
16334 Manipulate frame metadata.
16335
16336 This filter accepts the following options:
16337
16338 @table @option
16339 @item mode
16340 Set mode of operation of the filter.
16341
16342 Can be one of the following:
16343
16344 @table @samp
16345 @item select
16346 If both @code{value} and @code{key} is set, select frames
16347 which have such metadata. If only @code{key} is set, select
16348 every frame that has such key in metadata.
16349
16350 @item add
16351 Add new metadata @code{key} and @code{value}. If key is already available
16352 do nothing.
16353
16354 @item modify
16355 Modify value of already present key.
16356
16357 @item delete
16358 If @code{value} is set, delete only keys that have such value.
16359 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
16360 the frame.
16361
16362 @item print
16363 Print key and its value if metadata was found. If @code{key} is not set print all
16364 metadata values available in frame.
16365 @end table
16366
16367 @item key
16368 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
16369
16370 @item value
16371 Set metadata value which will be used. This option is mandatory for
16372 @code{modify} and @code{add} mode.
16373
16374 @item function
16375 Which function to use when comparing metadata value and @code{value}.
16376
16377 Can be one of following:
16378
16379 @table @samp
16380 @item same_str
16381 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
16382
16383 @item starts_with
16384 Values are interpreted as strings, returns true if metadata value starts with
16385 the @code{value} option string.
16386
16387 @item less
16388 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
16389
16390 @item equal
16391 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
16392
16393 @item greater
16394 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
16395
16396 @item expr
16397 Values are interpreted as floats, returns true if expression from option @code{expr}
16398 evaluates to true.
16399 @end table
16400
16401 @item expr
16402 Set expression which is used when @code{function} is set to @code{expr}.
16403 The expression is evaluated through the eval API and can contain the following
16404 constants:
16405
16406 @table @option
16407 @item VALUE1
16408 Float representation of @code{value} from metadata key.
16409
16410 @item VALUE2
16411 Float representation of @code{value} as supplied by user in @code{value} option.
16412 @end table
16413
16414 @item file
16415 If specified in @code{print} mode, output is written to the named file. Instead of
16416 plain filename any writable url can be specified. Filename ``-'' is a shorthand
16417 for standard output. If @code{file} option is not set, output is written to the log
16418 with AV_LOG_INFO loglevel.
16419
16420 @end table
16421
16422 @subsection Examples
16423
16424 @itemize
16425 @item
16426 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
16427 between 0 and 1.
16428 @example
16429 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
16430 @end example
16431 @item
16432 Print silencedetect output to file @file{metadata.txt}.
16433 @example
16434 silencedetect,ametadata=mode=print:file=metadata.txt
16435 @end example
16436 @item
16437 Direct all metadata to a pipe with file descriptor 4.
16438 @example
16439 metadata=mode=print:file='pipe\:4'
16440 @end example
16441 @end itemize
16442
16443 @section perms, aperms
16444
16445 Set read/write permissions for the output frames.
16446
16447 These filters are mainly aimed at developers to test direct path in the
16448 following filter in the filtergraph.
16449
16450 The filters accept the following options:
16451
16452 @table @option
16453 @item mode
16454 Select the permissions mode.
16455
16456 It accepts the following values:
16457 @table @samp
16458 @item none
16459 Do nothing. This is the default.
16460 @item ro
16461 Set all the output frames read-only.
16462 @item rw
16463 Set all the output frames directly writable.
16464 @item toggle
16465 Make the frame read-only if writable, and writable if read-only.
16466 @item random
16467 Set each output frame read-only or writable randomly.
16468 @end table
16469
16470 @item seed
16471 Set the seed for the @var{random} mode, must be an integer included between
16472 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16473 @code{-1}, the filter will try to use a good random seed on a best effort
16474 basis.
16475 @end table
16476
16477 Note: in case of auto-inserted filter between the permission filter and the
16478 following one, the permission might not be received as expected in that
16479 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
16480 perms/aperms filter can avoid this problem.
16481
16482 @section realtime, arealtime
16483
16484 Slow down filtering to match real time approximatively.
16485
16486 These filters will pause the filtering for a variable amount of time to
16487 match the output rate with the input timestamps.
16488 They are similar to the @option{re} option to @code{ffmpeg}.
16489
16490 They accept the following options:
16491
16492 @table @option
16493 @item limit
16494 Time limit for the pauses. Any pause longer than that will be considered
16495 a timestamp discontinuity and reset the timer. Default is 2 seconds.
16496 @end table
16497
16498 @anchor{select}
16499 @section select, aselect
16500
16501 Select frames to pass in output.
16502
16503 This filter accepts the following options:
16504
16505 @table @option
16506
16507 @item expr, e
16508 Set expression, which is evaluated for each input frame.
16509
16510 If the expression is evaluated to zero, the frame is discarded.
16511
16512 If the evaluation result is negative or NaN, the frame is sent to the
16513 first output; otherwise it is sent to the output with index
16514 @code{ceil(val)-1}, assuming that the input index starts from 0.
16515
16516 For example a value of @code{1.2} corresponds to the output with index
16517 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
16518
16519 @item outputs, n
16520 Set the number of outputs. The output to which to send the selected
16521 frame is based on the result of the evaluation. Default value is 1.
16522 @end table
16523
16524 The expression can contain the following constants:
16525
16526 @table @option
16527 @item n
16528 The (sequential) number of the filtered frame, starting from 0.
16529
16530 @item selected_n
16531 The (sequential) number of the selected frame, starting from 0.
16532
16533 @item prev_selected_n
16534 The sequential number of the last selected frame. It's NAN if undefined.
16535
16536 @item TB
16537 The timebase of the input timestamps.
16538
16539 @item pts
16540 The PTS (Presentation TimeStamp) of the filtered video frame,
16541 expressed in @var{TB} units. It's NAN if undefined.
16542
16543 @item t
16544 The PTS of the filtered video frame,
16545 expressed in seconds. It's NAN if undefined.
16546
16547 @item prev_pts
16548 The PTS of the previously filtered video frame. It's NAN if undefined.
16549
16550 @item prev_selected_pts
16551 The PTS of the last previously filtered video frame. It's NAN if undefined.
16552
16553 @item prev_selected_t
16554 The PTS of the last previously selected video frame. It's NAN if undefined.
16555
16556 @item start_pts
16557 The PTS of the first video frame in the video. It's NAN if undefined.
16558
16559 @item start_t
16560 The time of the first video frame in the video. It's NAN if undefined.
16561
16562 @item pict_type @emph{(video only)}
16563 The type of the filtered frame. It can assume one of the following
16564 values:
16565 @table @option
16566 @item I
16567 @item P
16568 @item B
16569 @item S
16570 @item SI
16571 @item SP
16572 @item BI
16573 @end table
16574
16575 @item interlace_type @emph{(video only)}
16576 The frame interlace type. It can assume one of the following values:
16577 @table @option
16578 @item PROGRESSIVE
16579 The frame is progressive (not interlaced).
16580 @item TOPFIRST
16581 The frame is top-field-first.
16582 @item BOTTOMFIRST
16583 The frame is bottom-field-first.
16584 @end table
16585
16586 @item consumed_sample_n @emph{(audio only)}
16587 the number of selected samples before the current frame
16588
16589 @item samples_n @emph{(audio only)}
16590 the number of samples in the current frame
16591
16592 @item sample_rate @emph{(audio only)}
16593 the input sample rate
16594
16595 @item key
16596 This is 1 if the filtered frame is a key-frame, 0 otherwise.
16597
16598 @item pos
16599 the position in the file of the filtered frame, -1 if the information
16600 is not available (e.g. for synthetic video)
16601
16602 @item scene @emph{(video only)}
16603 value between 0 and 1 to indicate a new scene; a low value reflects a low
16604 probability for the current frame to introduce a new scene, while a higher
16605 value means the current frame is more likely to be one (see the example below)
16606
16607 @item concatdec_select
16608 The concat demuxer can select only part of a concat input file by setting an
16609 inpoint and an outpoint, but the output packets may not be entirely contained
16610 in the selected interval. By using this variable, it is possible to skip frames
16611 generated by the concat demuxer which are not exactly contained in the selected
16612 interval.
16613
16614 This works by comparing the frame pts against the @var{lavf.concat.start_time}
16615 and the @var{lavf.concat.duration} packet metadata values which are also
16616 present in the decoded frames.
16617
16618 The @var{concatdec_select} variable is -1 if the frame pts is at least
16619 start_time and either the duration metadata is missing or the frame pts is less
16620 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
16621 missing.
16622
16623 That basically means that an input frame is selected if its pts is within the
16624 interval set by the concat demuxer.
16625
16626 @end table
16627
16628 The default value of the select expression is "1".
16629
16630 @subsection Examples
16631
16632 @itemize
16633 @item
16634 Select all frames in input:
16635 @example
16636 select
16637 @end example
16638
16639 The example above is the same as:
16640 @example
16641 select=1
16642 @end example
16643
16644 @item
16645 Skip all frames:
16646 @example
16647 select=0
16648 @end example
16649
16650 @item
16651 Select only I-frames:
16652 @example
16653 select='eq(pict_type\,I)'
16654 @end example
16655
16656 @item
16657 Select one frame every 100:
16658 @example
16659 select='not(mod(n\,100))'
16660 @end example
16661
16662 @item
16663 Select only frames contained in the 10-20 time interval:
16664 @example
16665 select=between(t\,10\,20)
16666 @end example
16667
16668 @item
16669 Select only I-frames contained in the 10-20 time interval:
16670 @example
16671 select=between(t\,10\,20)*eq(pict_type\,I)
16672 @end example
16673
16674 @item
16675 Select frames with a minimum distance of 10 seconds:
16676 @example
16677 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
16678 @end example
16679
16680 @item
16681 Use aselect to select only audio frames with samples number > 100:
16682 @example
16683 aselect='gt(samples_n\,100)'
16684 @end example
16685
16686 @item
16687 Create a mosaic of the first scenes:
16688 @example
16689 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
16690 @end example
16691
16692 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
16693 choice.
16694
16695 @item
16696 Send even and odd frames to separate outputs, and compose them:
16697 @example
16698 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
16699 @end example
16700
16701 @item
16702 Select useful frames from an ffconcat file which is using inpoints and
16703 outpoints but where the source files are not intra frame only.
16704 @example
16705 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
16706 @end example
16707 @end itemize
16708
16709 @section sendcmd, asendcmd
16710
16711 Send commands to filters in the filtergraph.
16712
16713 These filters read commands to be sent to other filters in the
16714 filtergraph.
16715
16716 @code{sendcmd} must be inserted between two video filters,
16717 @code{asendcmd} must be inserted between two audio filters, but apart
16718 from that they act the same way.
16719
16720 The specification of commands can be provided in the filter arguments
16721 with the @var{commands} option, or in a file specified by the
16722 @var{filename} option.
16723
16724 These filters accept the following options:
16725 @table @option
16726 @item commands, c
16727 Set the commands to be read and sent to the other filters.
16728 @item filename, f
16729 Set the filename of the commands to be read and sent to the other
16730 filters.
16731 @end table
16732
16733 @subsection Commands syntax
16734
16735 A commands description consists of a sequence of interval
16736 specifications, comprising a list of commands to be executed when a
16737 particular event related to that interval occurs. The occurring event
16738 is typically the current frame time entering or leaving a given time
16739 interval.
16740
16741 An interval is specified by the following syntax:
16742 @example
16743 @var{START}[-@var{END}] @var{COMMANDS};
16744 @end example
16745
16746 The time interval is specified by the @var{START} and @var{END} times.
16747 @var{END} is optional and defaults to the maximum time.
16748
16749 The current frame time is considered within the specified interval if
16750 it is included in the interval [@var{START}, @var{END}), that is when
16751 the time is greater or equal to @var{START} and is lesser than
16752 @var{END}.
16753
16754 @var{COMMANDS} consists of a sequence of one or more command
16755 specifications, separated by ",", relating to that interval.  The
16756 syntax of a command specification is given by:
16757 @example
16758 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
16759 @end example
16760
16761 @var{FLAGS} is optional and specifies the type of events relating to
16762 the time interval which enable sending the specified command, and must
16763 be a non-null sequence of identifier flags separated by "+" or "|" and
16764 enclosed between "[" and "]".
16765
16766 The following flags are recognized:
16767 @table @option
16768 @item enter
16769 The command is sent when the current frame timestamp enters the
16770 specified interval. In other words, the command is sent when the
16771 previous frame timestamp was not in the given interval, and the
16772 current is.
16773
16774 @item leave
16775 The command is sent when the current frame timestamp leaves the
16776 specified interval. In other words, the command is sent when the
16777 previous frame timestamp was in the given interval, and the
16778 current is not.
16779 @end table
16780
16781 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
16782 assumed.
16783
16784 @var{TARGET} specifies the target of the command, usually the name of
16785 the filter class or a specific filter instance name.
16786
16787 @var{COMMAND} specifies the name of the command for the target filter.
16788
16789 @var{ARG} is optional and specifies the optional list of argument for
16790 the given @var{COMMAND}.
16791
16792 Between one interval specification and another, whitespaces, or
16793 sequences of characters starting with @code{#} until the end of line,
16794 are ignored and can be used to annotate comments.
16795
16796 A simplified BNF description of the commands specification syntax
16797 follows:
16798 @example
16799 @var{COMMAND_FLAG}  ::= "enter" | "leave"
16800 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
16801 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
16802 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
16803 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
16804 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
16805 @end example
16806
16807 @subsection Examples
16808
16809 @itemize
16810 @item
16811 Specify audio tempo change at second 4:
16812 @example
16813 asendcmd=c='4.0 atempo tempo 1.5',atempo
16814 @end example
16815
16816 @item
16817 Specify a list of drawtext and hue commands in a file.
16818 @example
16819 # show text in the interval 5-10
16820 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
16821          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
16822
16823 # desaturate the image in the interval 15-20
16824 15.0-20.0 [enter] hue s 0,
16825           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
16826           [leave] hue s 1,
16827           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
16828
16829 # apply an exponential saturation fade-out effect, starting from time 25
16830 25 [enter] hue s exp(25-t)
16831 @end example
16832
16833 A filtergraph allowing to read and process the above command list
16834 stored in a file @file{test.cmd}, can be specified with:
16835 @example
16836 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
16837 @end example
16838 @end itemize
16839
16840 @anchor{setpts}
16841 @section setpts, asetpts
16842
16843 Change the PTS (presentation timestamp) of the input frames.
16844
16845 @code{setpts} works on video frames, @code{asetpts} on audio frames.
16846
16847 This filter accepts the following options:
16848
16849 @table @option
16850
16851 @item expr
16852 The expression which is evaluated for each frame to construct its timestamp.
16853
16854 @end table
16855
16856 The expression is evaluated through the eval API and can contain the following
16857 constants:
16858
16859 @table @option
16860 @item FRAME_RATE
16861 frame rate, only defined for constant frame-rate video
16862
16863 @item PTS
16864 The presentation timestamp in input
16865
16866 @item N
16867 The count of the input frame for video or the number of consumed samples,
16868 not including the current frame for audio, starting from 0.
16869
16870 @item NB_CONSUMED_SAMPLES
16871 The number of consumed samples, not including the current frame (only
16872 audio)
16873
16874 @item NB_SAMPLES, S
16875 The number of samples in the current frame (only audio)
16876
16877 @item SAMPLE_RATE, SR
16878 The audio sample rate.
16879
16880 @item STARTPTS
16881 The PTS of the first frame.
16882
16883 @item STARTT
16884 the time in seconds of the first frame
16885
16886 @item INTERLACED
16887 State whether the current frame is interlaced.
16888
16889 @item T
16890 the time in seconds of the current frame
16891
16892 @item POS
16893 original position in the file of the frame, or undefined if undefined
16894 for the current frame
16895
16896 @item PREV_INPTS
16897 The previous input PTS.
16898
16899 @item PREV_INT
16900 previous input time in seconds
16901
16902 @item PREV_OUTPTS
16903 The previous output PTS.
16904
16905 @item PREV_OUTT
16906 previous output time in seconds
16907
16908 @item RTCTIME
16909 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
16910 instead.
16911
16912 @item RTCSTART
16913 The wallclock (RTC) time at the start of the movie in microseconds.
16914
16915 @item TB
16916 The timebase of the input timestamps.
16917
16918 @end table
16919
16920 @subsection Examples
16921
16922 @itemize
16923 @item
16924 Start counting PTS from zero
16925 @example
16926 setpts=PTS-STARTPTS
16927 @end example
16928
16929 @item
16930 Apply fast motion effect:
16931 @example
16932 setpts=0.5*PTS
16933 @end example
16934
16935 @item
16936 Apply slow motion effect:
16937 @example
16938 setpts=2.0*PTS
16939 @end example
16940
16941 @item
16942 Set fixed rate of 25 frames per second:
16943 @example
16944 setpts=N/(25*TB)
16945 @end example
16946
16947 @item
16948 Set fixed rate 25 fps with some jitter:
16949 @example
16950 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
16951 @end example
16952
16953 @item
16954 Apply an offset of 10 seconds to the input PTS:
16955 @example
16956 setpts=PTS+10/TB
16957 @end example
16958
16959 @item
16960 Generate timestamps from a "live source" and rebase onto the current timebase:
16961 @example
16962 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
16963 @end example
16964
16965 @item
16966 Generate timestamps by counting samples:
16967 @example
16968 asetpts=N/SR/TB
16969 @end example
16970
16971 @end itemize
16972
16973 @section settb, asettb
16974
16975 Set the timebase to use for the output frames timestamps.
16976 It is mainly useful for testing timebase configuration.
16977
16978 It accepts the following parameters:
16979
16980 @table @option
16981
16982 @item expr, tb
16983 The expression which is evaluated into the output timebase.
16984
16985 @end table
16986
16987 The value for @option{tb} is an arithmetic expression representing a
16988 rational. The expression can contain the constants "AVTB" (the default
16989 timebase), "intb" (the input timebase) and "sr" (the sample rate,
16990 audio only). Default value is "intb".
16991
16992 @subsection Examples
16993
16994 @itemize
16995 @item
16996 Set the timebase to 1/25:
16997 @example
16998 settb=expr=1/25
16999 @end example
17000
17001 @item
17002 Set the timebase to 1/10:
17003 @example
17004 settb=expr=0.1
17005 @end example
17006
17007 @item
17008 Set the timebase to 1001/1000:
17009 @example
17010 settb=1+0.001
17011 @end example
17012
17013 @item
17014 Set the timebase to 2*intb:
17015 @example
17016 settb=2*intb
17017 @end example
17018
17019 @item
17020 Set the default timebase value:
17021 @example
17022 settb=AVTB
17023 @end example
17024 @end itemize
17025
17026 @section showcqt
17027 Convert input audio to a video output representing frequency spectrum
17028 logarithmically using Brown-Puckette constant Q transform algorithm with
17029 direct frequency domain coefficient calculation (but the transform itself
17030 is not really constant Q, instead the Q factor is actually variable/clamped),
17031 with musical tone scale, from E0 to D#10.
17032
17033 The filter accepts the following options:
17034
17035 @table @option
17036 @item size, s
17037 Specify the video size for the output. It must be even. For the syntax of this option,
17038 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17039 Default value is @code{1920x1080}.
17040
17041 @item fps, rate, r
17042 Set the output frame rate. Default value is @code{25}.
17043
17044 @item bar_h
17045 Set the bargraph height. It must be even. Default value is @code{-1} which
17046 computes the bargraph height automatically.
17047
17048 @item axis_h
17049 Set the axis height. It must be even. Default value is @code{-1} which computes
17050 the axis height automatically.
17051
17052 @item sono_h
17053 Set the sonogram height. It must be even. Default value is @code{-1} which
17054 computes the sonogram height automatically.
17055
17056 @item fullhd
17057 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
17058 instead. Default value is @code{1}.
17059
17060 @item sono_v, volume
17061 Specify the sonogram volume expression. It can contain variables:
17062 @table @option
17063 @item bar_v
17064 the @var{bar_v} evaluated expression
17065 @item frequency, freq, f
17066 the frequency where it is evaluated
17067 @item timeclamp, tc
17068 the value of @var{timeclamp} option
17069 @end table
17070 and functions:
17071 @table @option
17072 @item a_weighting(f)
17073 A-weighting of equal loudness
17074 @item b_weighting(f)
17075 B-weighting of equal loudness
17076 @item c_weighting(f)
17077 C-weighting of equal loudness.
17078 @end table
17079 Default value is @code{16}.
17080
17081 @item bar_v, volume2
17082 Specify the bargraph volume expression. It can contain variables:
17083 @table @option
17084 @item sono_v
17085 the @var{sono_v} evaluated expression
17086 @item frequency, freq, f
17087 the frequency where it is evaluated
17088 @item timeclamp, tc
17089 the value of @var{timeclamp} option
17090 @end table
17091 and functions:
17092 @table @option
17093 @item a_weighting(f)
17094 A-weighting of equal loudness
17095 @item b_weighting(f)
17096 B-weighting of equal loudness
17097 @item c_weighting(f)
17098 C-weighting of equal loudness.
17099 @end table
17100 Default value is @code{sono_v}.
17101
17102 @item sono_g, gamma
17103 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
17104 higher gamma makes the spectrum having more range. Default value is @code{3}.
17105 Acceptable range is @code{[1, 7]}.
17106
17107 @item bar_g, gamma2
17108 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
17109 @code{[1, 7]}.
17110
17111 @item bar_t
17112 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
17113 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
17114
17115 @item timeclamp, tc
17116 Specify the transform timeclamp. At low frequency, there is trade-off between
17117 accuracy in time domain and frequency domain. If timeclamp is lower,
17118 event in time domain is represented more accurately (such as fast bass drum),
17119 otherwise event in frequency domain is represented more accurately
17120 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
17121
17122 @item basefreq
17123 Specify the transform base frequency. Default value is @code{20.01523126408007475},
17124 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
17125
17126 @item endfreq
17127 Specify the transform end frequency. Default value is @code{20495.59681441799654},
17128 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
17129
17130 @item coeffclamp
17131 This option is deprecated and ignored.
17132
17133 @item tlength
17134 Specify the transform length in time domain. Use this option to control accuracy
17135 trade-off between time domain and frequency domain at every frequency sample.
17136 It can contain variables:
17137 @table @option
17138 @item frequency, freq, f
17139 the frequency where it is evaluated
17140 @item timeclamp, tc
17141 the value of @var{timeclamp} option.
17142 @end table
17143 Default value is @code{384*tc/(384+tc*f)}.
17144
17145 @item count
17146 Specify the transform count for every video frame. Default value is @code{6}.
17147 Acceptable range is @code{[1, 30]}.
17148
17149 @item fcount
17150 Specify the transform count for every single pixel. Default value is @code{0},
17151 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
17152
17153 @item fontfile
17154 Specify font file for use with freetype to draw the axis. If not specified,
17155 use embedded font. Note that drawing with font file or embedded font is not
17156 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
17157 option instead.
17158
17159 @item font
17160 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
17161 The : in the pattern may be replaced by | to avoid unnecessary escaping.
17162
17163 @item fontcolor
17164 Specify font color expression. This is arithmetic expression that should return
17165 integer value 0xRRGGBB. It can contain variables:
17166 @table @option
17167 @item frequency, freq, f
17168 the frequency where it is evaluated
17169 @item timeclamp, tc
17170 the value of @var{timeclamp} option
17171 @end table
17172 and functions:
17173 @table @option
17174 @item midi(f)
17175 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
17176 @item r(x), g(x), b(x)
17177 red, green, and blue value of intensity x.
17178 @end table
17179 Default value is @code{st(0, (midi(f)-59.5)/12);
17180 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
17181 r(1-ld(1)) + b(ld(1))}.
17182
17183 @item axisfile
17184 Specify image file to draw the axis. This option override @var{fontfile} and
17185 @var{fontcolor} option.
17186
17187 @item axis, text
17188 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
17189 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
17190 Default value is @code{1}.
17191
17192 @item csp
17193 Set colorspace. The accepted values are:
17194 @table @samp
17195 @item unspecified
17196 Unspecified (default)
17197
17198 @item bt709
17199 BT.709
17200
17201 @item fcc
17202 FCC
17203
17204 @item bt470bg
17205 BT.470BG or BT.601-6 625
17206
17207 @item smpte170m
17208 SMPTE-170M or BT.601-6 525
17209
17210 @item smpte240m
17211 SMPTE-240M
17212
17213 @item bt2020ncl
17214 BT.2020 with non-constant luminance
17215
17216 @end table
17217
17218 @item cscheme
17219 Set spectrogram color scheme. This is list of floating point values with format
17220 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
17221 The default is @code{1|0.5|0|0|0.5|1}.
17222
17223 @end table
17224
17225 @subsection Examples
17226
17227 @itemize
17228 @item
17229 Playing audio while showing the spectrum:
17230 @example
17231 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
17232 @end example
17233
17234 @item
17235 Same as above, but with frame rate 30 fps:
17236 @example
17237 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
17238 @end example
17239
17240 @item
17241 Playing at 1280x720:
17242 @example
17243 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
17244 @end example
17245
17246 @item
17247 Disable sonogram display:
17248 @example
17249 sono_h=0
17250 @end example
17251
17252 @item
17253 A1 and its harmonics: A1, A2, (near)E3, A3:
17254 @example
17255 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),
17256                  asplit[a][out1]; [a] showcqt [out0]'
17257 @end example
17258
17259 @item
17260 Same as above, but with more accuracy in frequency domain:
17261 @example
17262 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),
17263                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
17264 @end example
17265
17266 @item
17267 Custom volume:
17268 @example
17269 bar_v=10:sono_v=bar_v*a_weighting(f)
17270 @end example
17271
17272 @item
17273 Custom gamma, now spectrum is linear to the amplitude.
17274 @example
17275 bar_g=2:sono_g=2
17276 @end example
17277
17278 @item
17279 Custom tlength equation:
17280 @example
17281 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)))'
17282 @end example
17283
17284 @item
17285 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
17286 @example
17287 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
17288 @end example
17289
17290 @item
17291 Custom font using fontconfig:
17292 @example
17293 font='Courier New,Monospace,mono|bold'
17294 @end example
17295
17296 @item
17297 Custom frequency range with custom axis using image file:
17298 @example
17299 axisfile=myaxis.png:basefreq=40:endfreq=10000
17300 @end example
17301 @end itemize
17302
17303 @section showfreqs
17304
17305 Convert input audio to video output representing the audio power spectrum.
17306 Audio amplitude is on Y-axis while frequency is on X-axis.
17307
17308 The filter accepts the following options:
17309
17310 @table @option
17311 @item size, s
17312 Specify size of video. For the syntax of this option, check the
17313 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17314 Default is @code{1024x512}.
17315
17316 @item mode
17317 Set display mode.
17318 This set how each frequency bin will be represented.
17319
17320 It accepts the following values:
17321 @table @samp
17322 @item line
17323 @item bar
17324 @item dot
17325 @end table
17326 Default is @code{bar}.
17327
17328 @item ascale
17329 Set amplitude scale.
17330
17331 It accepts the following values:
17332 @table @samp
17333 @item lin
17334 Linear scale.
17335
17336 @item sqrt
17337 Square root scale.
17338
17339 @item cbrt
17340 Cubic root scale.
17341
17342 @item log
17343 Logarithmic scale.
17344 @end table
17345 Default is @code{log}.
17346
17347 @item fscale
17348 Set frequency scale.
17349
17350 It accepts the following values:
17351 @table @samp
17352 @item lin
17353 Linear scale.
17354
17355 @item log
17356 Logarithmic scale.
17357
17358 @item rlog
17359 Reverse logarithmic scale.
17360 @end table
17361 Default is @code{lin}.
17362
17363 @item win_size
17364 Set window size.
17365
17366 It accepts the following values:
17367 @table @samp
17368 @item w16
17369 @item w32
17370 @item w64
17371 @item w128
17372 @item w256
17373 @item w512
17374 @item w1024
17375 @item w2048
17376 @item w4096
17377 @item w8192
17378 @item w16384
17379 @item w32768
17380 @item w65536
17381 @end table
17382 Default is @code{w2048}
17383
17384 @item win_func
17385 Set windowing function.
17386
17387 It accepts the following values:
17388 @table @samp
17389 @item rect
17390 @item bartlett
17391 @item hanning
17392 @item hamming
17393 @item blackman
17394 @item welch
17395 @item flattop
17396 @item bharris
17397 @item bnuttall
17398 @item bhann
17399 @item sine
17400 @item nuttall
17401 @item lanczos
17402 @item gauss
17403 @item tukey
17404 @item dolph
17405 @item cauchy
17406 @item parzen
17407 @item poisson
17408 @end table
17409 Default is @code{hanning}.
17410
17411 @item overlap
17412 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17413 which means optimal overlap for selected window function will be picked.
17414
17415 @item averaging
17416 Set time averaging. Setting this to 0 will display current maximal peaks.
17417 Default is @code{1}, which means time averaging is disabled.
17418
17419 @item colors
17420 Specify list of colors separated by space or by '|' which will be used to
17421 draw channel frequencies. Unrecognized or missing colors will be replaced
17422 by white color.
17423
17424 @item cmode
17425 Set channel display mode.
17426
17427 It accepts the following values:
17428 @table @samp
17429 @item combined
17430 @item separate
17431 @end table
17432 Default is @code{combined}.
17433
17434 @item minamp
17435 Set minimum amplitude used in @code{log} amplitude scaler.
17436
17437 @end table
17438
17439 @anchor{showspectrum}
17440 @section showspectrum
17441
17442 Convert input audio to a video output, representing the audio frequency
17443 spectrum.
17444
17445 The filter accepts the following options:
17446
17447 @table @option
17448 @item size, s
17449 Specify the video size for the output. For the syntax of this option, check the
17450 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17451 Default value is @code{640x512}.
17452
17453 @item slide
17454 Specify how the spectrum should slide along the window.
17455
17456 It accepts the following values:
17457 @table @samp
17458 @item replace
17459 the samples start again on the left when they reach the right
17460 @item scroll
17461 the samples scroll from right to left
17462 @item fullframe
17463 frames are only produced when the samples reach the right
17464 @item rscroll
17465 the samples scroll from left to right
17466 @end table
17467
17468 Default value is @code{replace}.
17469
17470 @item mode
17471 Specify display mode.
17472
17473 It accepts the following values:
17474 @table @samp
17475 @item combined
17476 all channels are displayed in the same row
17477 @item separate
17478 all channels are displayed in separate rows
17479 @end table
17480
17481 Default value is @samp{combined}.
17482
17483 @item color
17484 Specify display color mode.
17485
17486 It accepts the following values:
17487 @table @samp
17488 @item channel
17489 each channel is displayed in a separate color
17490 @item intensity
17491 each channel is displayed using the same color scheme
17492 @item rainbow
17493 each channel is displayed using the rainbow color scheme
17494 @item moreland
17495 each channel is displayed using the moreland color scheme
17496 @item nebulae
17497 each channel is displayed using the nebulae color scheme
17498 @item fire
17499 each channel is displayed using the fire color scheme
17500 @item fiery
17501 each channel is displayed using the fiery color scheme
17502 @item fruit
17503 each channel is displayed using the fruit color scheme
17504 @item cool
17505 each channel is displayed using the cool color scheme
17506 @end table
17507
17508 Default value is @samp{channel}.
17509
17510 @item scale
17511 Specify scale used for calculating intensity color values.
17512
17513 It accepts the following values:
17514 @table @samp
17515 @item lin
17516 linear
17517 @item sqrt
17518 square root, default
17519 @item cbrt
17520 cubic root
17521 @item log
17522 logarithmic
17523 @item 4thrt
17524 4th root
17525 @item 5thrt
17526 5th root
17527 @end table
17528
17529 Default value is @samp{sqrt}.
17530
17531 @item saturation
17532 Set saturation modifier for displayed colors. Negative values provide
17533 alternative color scheme. @code{0} is no saturation at all.
17534 Saturation must be in [-10.0, 10.0] range.
17535 Default value is @code{1}.
17536
17537 @item win_func
17538 Set window function.
17539
17540 It accepts the following values:
17541 @table @samp
17542 @item rect
17543 @item bartlett
17544 @item hann
17545 @item hanning
17546 @item hamming
17547 @item blackman
17548 @item welch
17549 @item flattop
17550 @item bharris
17551 @item bnuttall
17552 @item bhann
17553 @item sine
17554 @item nuttall
17555 @item lanczos
17556 @item gauss
17557 @item tukey
17558 @item dolph
17559 @item cauchy
17560 @item parzen
17561 @item poisson
17562 @end table
17563
17564 Default value is @code{hann}.
17565
17566 @item orientation
17567 Set orientation of time vs frequency axis. Can be @code{vertical} or
17568 @code{horizontal}. Default is @code{vertical}.
17569
17570 @item overlap
17571 Set ratio of overlap window. Default value is @code{0}.
17572 When value is @code{1} overlap is set to recommended size for specific
17573 window function currently used.
17574
17575 @item gain
17576 Set scale gain for calculating intensity color values.
17577 Default value is @code{1}.
17578
17579 @item data
17580 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
17581
17582 @item rotation
17583 Set color rotation, must be in [-1.0, 1.0] range.
17584 Default value is @code{0}.
17585 @end table
17586
17587 The usage is very similar to the showwaves filter; see the examples in that
17588 section.
17589
17590 @subsection Examples
17591
17592 @itemize
17593 @item
17594 Large window with logarithmic color scaling:
17595 @example
17596 showspectrum=s=1280x480:scale=log
17597 @end example
17598
17599 @item
17600 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
17601 @example
17602 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17603              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
17604 @end example
17605 @end itemize
17606
17607 @section showspectrumpic
17608
17609 Convert input audio to a single video frame, representing the audio frequency
17610 spectrum.
17611
17612 The filter accepts the following options:
17613
17614 @table @option
17615 @item size, s
17616 Specify the video size for the output. For the syntax of this option, check the
17617 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17618 Default value is @code{4096x2048}.
17619
17620 @item mode
17621 Specify display mode.
17622
17623 It accepts the following values:
17624 @table @samp
17625 @item combined
17626 all channels are displayed in the same row
17627 @item separate
17628 all channels are displayed in separate rows
17629 @end table
17630 Default value is @samp{combined}.
17631
17632 @item color
17633 Specify display color mode.
17634
17635 It accepts the following values:
17636 @table @samp
17637 @item channel
17638 each channel is displayed in a separate color
17639 @item intensity
17640 each channel is displayed using the same color scheme
17641 @item rainbow
17642 each channel is displayed using the rainbow color scheme
17643 @item moreland
17644 each channel is displayed using the moreland color scheme
17645 @item nebulae
17646 each channel is displayed using the nebulae color scheme
17647 @item fire
17648 each channel is displayed using the fire color scheme
17649 @item fiery
17650 each channel is displayed using the fiery color scheme
17651 @item fruit
17652 each channel is displayed using the fruit color scheme
17653 @item cool
17654 each channel is displayed using the cool color scheme
17655 @end table
17656 Default value is @samp{intensity}.
17657
17658 @item scale
17659 Specify scale used for calculating intensity color values.
17660
17661 It accepts the following values:
17662 @table @samp
17663 @item lin
17664 linear
17665 @item sqrt
17666 square root, default
17667 @item cbrt
17668 cubic root
17669 @item log
17670 logarithmic
17671 @item 4thrt
17672 4th root
17673 @item 5thrt
17674 5th root
17675 @end table
17676 Default value is @samp{log}.
17677
17678 @item saturation
17679 Set saturation modifier for displayed colors. Negative values provide
17680 alternative color scheme. @code{0} is no saturation at all.
17681 Saturation must be in [-10.0, 10.0] range.
17682 Default value is @code{1}.
17683
17684 @item win_func
17685 Set window function.
17686
17687 It accepts the following values:
17688 @table @samp
17689 @item rect
17690 @item bartlett
17691 @item hann
17692 @item hanning
17693 @item hamming
17694 @item blackman
17695 @item welch
17696 @item flattop
17697 @item bharris
17698 @item bnuttall
17699 @item bhann
17700 @item sine
17701 @item nuttall
17702 @item lanczos
17703 @item gauss
17704 @item tukey
17705 @item dolph
17706 @item cauchy
17707 @item parzen
17708 @item poisson
17709 @end table
17710 Default value is @code{hann}.
17711
17712 @item orientation
17713 Set orientation of time vs frequency axis. Can be @code{vertical} or
17714 @code{horizontal}. Default is @code{vertical}.
17715
17716 @item gain
17717 Set scale gain for calculating intensity color values.
17718 Default value is @code{1}.
17719
17720 @item legend
17721 Draw time and frequency axes and legends. Default is enabled.
17722
17723 @item rotation
17724 Set color rotation, must be in [-1.0, 1.0] range.
17725 Default value is @code{0}.
17726 @end table
17727
17728 @subsection Examples
17729
17730 @itemize
17731 @item
17732 Extract an audio spectrogram of a whole audio track
17733 in a 1024x1024 picture using @command{ffmpeg}:
17734 @example
17735 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
17736 @end example
17737 @end itemize
17738
17739 @section showvolume
17740
17741 Convert input audio volume to a video output.
17742
17743 The filter accepts the following options:
17744
17745 @table @option
17746 @item rate, r
17747 Set video rate.
17748
17749 @item b
17750 Set border width, allowed range is [0, 5]. Default is 1.
17751
17752 @item w
17753 Set channel width, allowed range is [80, 8192]. Default is 400.
17754
17755 @item h
17756 Set channel height, allowed range is [1, 900]. Default is 20.
17757
17758 @item f
17759 Set fade, allowed range is [0.001, 1]. Default is 0.95.
17760
17761 @item c
17762 Set volume color expression.
17763
17764 The expression can use the following variables:
17765
17766 @table @option
17767 @item VOLUME
17768 Current max volume of channel in dB.
17769
17770 @item PEAK
17771 Current peak.
17772
17773 @item CHANNEL
17774 Current channel number, starting from 0.
17775 @end table
17776
17777 @item t
17778 If set, displays channel names. Default is enabled.
17779
17780 @item v
17781 If set, displays volume values. Default is enabled.
17782
17783 @item o
17784 Set orientation, can be @code{horizontal} or @code{vertical},
17785 default is @code{horizontal}.
17786
17787 @item s
17788 Set step size, allowed range s [0, 5]. Default is 0, which means
17789 step is disabled.
17790 @end table
17791
17792 @section showwaves
17793
17794 Convert input audio to a video output, representing the samples waves.
17795
17796 The filter accepts the following options:
17797
17798 @table @option
17799 @item size, s
17800 Specify the video size for the output. For the syntax of this option, check the
17801 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17802 Default value is @code{600x240}.
17803
17804 @item mode
17805 Set display mode.
17806
17807 Available values are:
17808 @table @samp
17809 @item point
17810 Draw a point for each sample.
17811
17812 @item line
17813 Draw a vertical line for each sample.
17814
17815 @item p2p
17816 Draw a point for each sample and a line between them.
17817
17818 @item cline
17819 Draw a centered vertical line for each sample.
17820 @end table
17821
17822 Default value is @code{point}.
17823
17824 @item n
17825 Set the number of samples which are printed on the same column. A
17826 larger value will decrease the frame rate. Must be a positive
17827 integer. This option can be set only if the value for @var{rate}
17828 is not explicitly specified.
17829
17830 @item rate, r
17831 Set the (approximate) output frame rate. This is done by setting the
17832 option @var{n}. Default value is "25".
17833
17834 @item split_channels
17835 Set if channels should be drawn separately or overlap. Default value is 0.
17836
17837 @item colors
17838 Set colors separated by '|' which are going to be used for drawing of each channel.
17839
17840 @item scale
17841 Set amplitude scale.
17842
17843 Available values are:
17844 @table @samp
17845 @item lin
17846 Linear.
17847
17848 @item log
17849 Logarithmic.
17850
17851 @item sqrt
17852 Square root.
17853
17854 @item cbrt
17855 Cubic root.
17856 @end table
17857
17858 Default is linear.
17859 @end table
17860
17861 @subsection Examples
17862
17863 @itemize
17864 @item
17865 Output the input file audio and the corresponding video representation
17866 at the same time:
17867 @example
17868 amovie=a.mp3,asplit[out0],showwaves[out1]
17869 @end example
17870
17871 @item
17872 Create a synthetic signal and show it with showwaves, forcing a
17873 frame rate of 30 frames per second:
17874 @example
17875 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
17876 @end example
17877 @end itemize
17878
17879 @section showwavespic
17880
17881 Convert input audio to a single video frame, representing the samples waves.
17882
17883 The filter accepts the following options:
17884
17885 @table @option
17886 @item size, s
17887 Specify the video size for the output. For the syntax of this option, check the
17888 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17889 Default value is @code{600x240}.
17890
17891 @item split_channels
17892 Set if channels should be drawn separately or overlap. Default value is 0.
17893
17894 @item colors
17895 Set colors separated by '|' which are going to be used for drawing of each channel.
17896
17897 @item scale
17898 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
17899 Default is linear.
17900 @end table
17901
17902 @subsection Examples
17903
17904 @itemize
17905 @item
17906 Extract a channel split representation of the wave form of a whole audio track
17907 in a 1024x800 picture using @command{ffmpeg}:
17908 @example
17909 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
17910 @end example
17911 @end itemize
17912
17913 @section sidedata, asidedata
17914
17915 Delete frame side data, or select frames based on it.
17916
17917 This filter accepts the following options:
17918
17919 @table @option
17920 @item mode
17921 Set mode of operation of the filter.
17922
17923 Can be one of the following:
17924
17925 @table @samp
17926 @item select
17927 Select every frame with side data of @code{type}.
17928
17929 @item delete
17930 Delete side data of @code{type}. If @code{type} is not set, delete all side
17931 data in the frame.
17932
17933 @end table
17934
17935 @item type
17936 Set side data type used with all modes. Must be set for @code{select} mode. For
17937 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
17938 in @file{libavutil/frame.h}. For example, to choose
17939 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
17940
17941 @end table
17942
17943 @section spectrumsynth
17944
17945 Sythesize audio from 2 input video spectrums, first input stream represents
17946 magnitude across time and second represents phase across time.
17947 The filter will transform from frequency domain as displayed in videos back
17948 to time domain as presented in audio output.
17949
17950 This filter is primarily created for reversing processed @ref{showspectrum}
17951 filter outputs, but can synthesize sound from other spectrograms too.
17952 But in such case results are going to be poor if the phase data is not
17953 available, because in such cases phase data need to be recreated, usually
17954 its just recreated from random noise.
17955 For best results use gray only output (@code{channel} color mode in
17956 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
17957 @code{lin} scale for phase video. To produce phase, for 2nd video, use
17958 @code{data} option. Inputs videos should generally use @code{fullframe}
17959 slide mode as that saves resources needed for decoding video.
17960
17961 The filter accepts the following options:
17962
17963 @table @option
17964 @item sample_rate
17965 Specify sample rate of output audio, the sample rate of audio from which
17966 spectrum was generated may differ.
17967
17968 @item channels
17969 Set number of channels represented in input video spectrums.
17970
17971 @item scale
17972 Set scale which was used when generating magnitude input spectrum.
17973 Can be @code{lin} or @code{log}. Default is @code{log}.
17974
17975 @item slide
17976 Set slide which was used when generating inputs spectrums.
17977 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
17978 Default is @code{fullframe}.
17979
17980 @item win_func
17981 Set window function used for resynthesis.
17982
17983 @item overlap
17984 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17985 which means optimal overlap for selected window function will be picked.
17986
17987 @item orientation
17988 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
17989 Default is @code{vertical}.
17990 @end table
17991
17992 @subsection Examples
17993
17994 @itemize
17995 @item
17996 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
17997 then resynthesize videos back to audio with spectrumsynth:
17998 @example
17999 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
18000 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
18001 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
18002 @end example
18003 @end itemize
18004
18005 @section split, asplit
18006
18007 Split input into several identical outputs.
18008
18009 @code{asplit} works with audio input, @code{split} with video.
18010
18011 The filter accepts a single parameter which specifies the number of outputs. If
18012 unspecified, it defaults to 2.
18013
18014 @subsection Examples
18015
18016 @itemize
18017 @item
18018 Create two separate outputs from the same input:
18019 @example
18020 [in] split [out0][out1]
18021 @end example
18022
18023 @item
18024 To create 3 or more outputs, you need to specify the number of
18025 outputs, like in:
18026 @example
18027 [in] asplit=3 [out0][out1][out2]
18028 @end example
18029
18030 @item
18031 Create two separate outputs from the same input, one cropped and
18032 one padded:
18033 @example
18034 [in] split [splitout1][splitout2];
18035 [splitout1] crop=100:100:0:0    [cropout];
18036 [splitout2] pad=200:200:100:100 [padout];
18037 @end example
18038
18039 @item
18040 Create 5 copies of the input audio with @command{ffmpeg}:
18041 @example
18042 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
18043 @end example
18044 @end itemize
18045
18046 @section zmq, azmq
18047
18048 Receive commands sent through a libzmq client, and forward them to
18049 filters in the filtergraph.
18050
18051 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
18052 must be inserted between two video filters, @code{azmq} between two
18053 audio filters.
18054
18055 To enable these filters you need to install the libzmq library and
18056 headers and configure FFmpeg with @code{--enable-libzmq}.
18057
18058 For more information about libzmq see:
18059 @url{http://www.zeromq.org/}
18060
18061 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
18062 receives messages sent through a network interface defined by the
18063 @option{bind_address} option.
18064
18065 The received message must be in the form:
18066 @example
18067 @var{TARGET} @var{COMMAND} [@var{ARG}]
18068 @end example
18069
18070 @var{TARGET} specifies the target of the command, usually the name of
18071 the filter class or a specific filter instance name.
18072
18073 @var{COMMAND} specifies the name of the command for the target filter.
18074
18075 @var{ARG} is optional and specifies the optional argument list for the
18076 given @var{COMMAND}.
18077
18078 Upon reception, the message is processed and the corresponding command
18079 is injected into the filtergraph. Depending on the result, the filter
18080 will send a reply to the client, adopting the format:
18081 @example
18082 @var{ERROR_CODE} @var{ERROR_REASON}
18083 @var{MESSAGE}
18084 @end example
18085
18086 @var{MESSAGE} is optional.
18087
18088 @subsection Examples
18089
18090 Look at @file{tools/zmqsend} for an example of a zmq client which can
18091 be used to send commands processed by these filters.
18092
18093 Consider the following filtergraph generated by @command{ffplay}
18094 @example
18095 ffplay -dumpgraph 1 -f lavfi "
18096 color=s=100x100:c=red  [l];
18097 color=s=100x100:c=blue [r];
18098 nullsrc=s=200x100, zmq [bg];
18099 [bg][l]   overlay      [bg+l];
18100 [bg+l][r] overlay=x=100 "
18101 @end example
18102
18103 To change the color of the left side of the video, the following
18104 command can be used:
18105 @example
18106 echo Parsed_color_0 c yellow | tools/zmqsend
18107 @end example
18108
18109 To change the right side:
18110 @example
18111 echo Parsed_color_1 c pink | tools/zmqsend
18112 @end example
18113
18114 @c man end MULTIMEDIA FILTERS
18115
18116 @chapter Multimedia Sources
18117 @c man begin MULTIMEDIA SOURCES
18118
18119 Below is a description of the currently available multimedia sources.
18120
18121 @section amovie
18122
18123 This is the same as @ref{movie} source, except it selects an audio
18124 stream by default.
18125
18126 @anchor{movie}
18127 @section movie
18128
18129 Read audio and/or video stream(s) from a movie container.
18130
18131 It accepts the following parameters:
18132
18133 @table @option
18134 @item filename
18135 The name of the resource to read (not necessarily a file; it can also be a
18136 device or a stream accessed through some protocol).
18137
18138 @item format_name, f
18139 Specifies the format assumed for the movie to read, and can be either
18140 the name of a container or an input device. If not specified, the
18141 format is guessed from @var{movie_name} or by probing.
18142
18143 @item seek_point, sp
18144 Specifies the seek point in seconds. The frames will be output
18145 starting from this seek point. The parameter is evaluated with
18146 @code{av_strtod}, so the numerical value may be suffixed by an IS
18147 postfix. The default value is "0".
18148
18149 @item streams, s
18150 Specifies the streams to read. Several streams can be specified,
18151 separated by "+". The source will then have as many outputs, in the
18152 same order. The syntax is explained in the ``Stream specifiers''
18153 section in the ffmpeg manual. Two special names, "dv" and "da" specify
18154 respectively the default (best suited) video and audio stream. Default
18155 is "dv", or "da" if the filter is called as "amovie".
18156
18157 @item stream_index, si
18158 Specifies the index of the video stream to read. If the value is -1,
18159 the most suitable video stream will be automatically selected. The default
18160 value is "-1". Deprecated. If the filter is called "amovie", it will select
18161 audio instead of video.
18162
18163 @item loop
18164 Specifies how many times to read the stream in sequence.
18165 If the value is 0, the stream will be looped infinitely.
18166 Default value is "1".
18167
18168 Note that when the movie is looped the source timestamps are not
18169 changed, so it will generate non monotonically increasing timestamps.
18170
18171 @item discontinuity
18172 Specifies the time difference between frames above which the point is
18173 considered a timestamp discontinuity which is removed by adjusting the later
18174 timestamps.
18175 @end table
18176
18177 It allows overlaying a second video on top of the main input of
18178 a filtergraph, as shown in this graph:
18179 @example
18180 input -----------> deltapts0 --> overlay --> output
18181                                     ^
18182                                     |
18183 movie --> scale--> deltapts1 -------+
18184 @end example
18185 @subsection Examples
18186
18187 @itemize
18188 @item
18189 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
18190 on top of the input labelled "in":
18191 @example
18192 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
18193 [in] setpts=PTS-STARTPTS [main];
18194 [main][over] overlay=16:16 [out]
18195 @end example
18196
18197 @item
18198 Read from a video4linux2 device, and overlay it on top of the input
18199 labelled "in":
18200 @example
18201 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
18202 [in] setpts=PTS-STARTPTS [main];
18203 [main][over] overlay=16:16 [out]
18204 @end example
18205
18206 @item
18207 Read the first video stream and the audio stream with id 0x81 from
18208 dvd.vob; the video is connected to the pad named "video" and the audio is
18209 connected to the pad named "audio":
18210 @example
18211 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
18212 @end example
18213 @end itemize
18214
18215 @subsection Commands
18216
18217 Both movie and amovie support the following commands:
18218 @table @option
18219 @item seek
18220 Perform seek using "av_seek_frame".
18221 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
18222 @itemize
18223 @item
18224 @var{stream_index}: If stream_index is -1, a default
18225 stream is selected, and @var{timestamp} is automatically converted
18226 from AV_TIME_BASE units to the stream specific time_base.
18227 @item
18228 @var{timestamp}: Timestamp in AVStream.time_base units
18229 or, if no stream is specified, in AV_TIME_BASE units.
18230 @item
18231 @var{flags}: Flags which select direction and seeking mode.
18232 @end itemize
18233
18234 @item get_duration
18235 Get movie duration in AV_TIME_BASE units.
18236
18237 @end table
18238
18239 @c man end MULTIMEDIA SOURCES