]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
fb131670c73568906d05813729067dcc94aaaec7
[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{id}=@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 optionally followed by "@@@var{id}".
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{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{framesync}
316 @chapter Options for filters with several inputs (framesync)
317 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
318
319 Some filters with several inputs support a common set of options.
320 These options can only be set by name, not with the short notation.
321
322 @table @option
323 @item eof_action
324 The action to take when EOF is encountered on the secondary input; it accepts
325 one of the following values:
326
327 @table @option
328 @item repeat
329 Repeat the last frame (the default).
330 @item endall
331 End both streams.
332 @item pass
333 Pass the main input through.
334 @end table
335
336 @item shortest
337 If set to 1, force the output to terminate when the shortest input
338 terminates. Default value is 0.
339
340 @item repeatlast
341 If set to 1, force the filter to extend the last frame of secondary streams
342 until the end of the primary stream. A value of 0 disables this behavior.
343 Default value is 1.
344 @end table
345
346 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
347
348 @chapter Audio Filters
349 @c man begin AUDIO FILTERS
350
351 When you configure your FFmpeg build, you can disable any of the
352 existing filters using @code{--disable-filters}.
353 The configure output will show the audio filters included in your
354 build.
355
356 Below is a description of the currently available audio filters.
357
358 @section acompressor
359
360 A compressor is mainly used to reduce the dynamic range of a signal.
361 Especially modern music is mostly compressed at a high ratio to
362 improve the overall loudness. It's done to get the highest attention
363 of a listener, "fatten" the sound and bring more "power" to the track.
364 If a signal is compressed too much it may sound dull or "dead"
365 afterwards or it may start to "pump" (which could be a powerful effect
366 but can also destroy a track completely).
367 The right compression is the key to reach a professional sound and is
368 the high art of mixing and mastering. Because of its complex settings
369 it may take a long time to get the right feeling for this kind of effect.
370
371 Compression is done by detecting the volume above a chosen level
372 @code{threshold} and dividing it by the factor set with @code{ratio}.
373 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
374 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
375 the signal would cause distortion of the waveform the reduction can be
376 levelled over the time. This is done by setting "Attack" and "Release".
377 @code{attack} determines how long the signal has to rise above the threshold
378 before any reduction will occur and @code{release} sets the time the signal
379 has to fall below the threshold to reduce the reduction again. Shorter signals
380 than the chosen attack time will be left untouched.
381 The overall reduction of the signal can be made up afterwards with the
382 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
383 raising the makeup to this level results in a signal twice as loud than the
384 source. To gain a softer entry in the compression the @code{knee} flattens the
385 hard edge at the threshold in the range of the chosen decibels.
386
387 The filter accepts the following options:
388
389 @table @option
390 @item level_in
391 Set input gain. Default is 1. Range is between 0.015625 and 64.
392
393 @item threshold
394 If a signal of stream rises above this level it will affect the gain
395 reduction.
396 By default it is 0.125. Range is between 0.00097563 and 1.
397
398 @item ratio
399 Set a ratio by which the signal is reduced. 1:2 means that if the level
400 rose 4dB above the threshold, it will be only 2dB above after the reduction.
401 Default is 2. Range is between 1 and 20.
402
403 @item attack
404 Amount of milliseconds the signal has to rise above the threshold before gain
405 reduction starts. Default is 20. Range is between 0.01 and 2000.
406
407 @item release
408 Amount of milliseconds the signal has to fall below the threshold before
409 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
410
411 @item makeup
412 Set the amount by how much signal will be amplified after processing.
413 Default is 1. Range is from 1 to 64.
414
415 @item knee
416 Curve the sharp knee around the threshold to enter gain reduction more softly.
417 Default is 2.82843. Range is between 1 and 8.
418
419 @item link
420 Choose if the @code{average} level between all channels of input stream
421 or the louder(@code{maximum}) channel of input stream affects the
422 reduction. Default is @code{average}.
423
424 @item detection
425 Should the exact signal be taken in case of @code{peak} or an RMS one in case
426 of @code{rms}. Default is @code{rms} which is mostly smoother.
427
428 @item mix
429 How much to use compressed signal in output. Default is 1.
430 Range is between 0 and 1.
431 @end table
432
433 @section acontrast
434 Simple audio dynamic range commpression/expansion filter.
435
436 The filter accepts the following options:
437
438 @table @option
439 @item contrast
440 Set contrast. Default is 33. Allowed range is between 0 and 100.
441 @end table
442
443 @section acopy
444
445 Copy the input audio source unchanged to the output. This is mainly useful for
446 testing purposes.
447
448 @section acrossfade
449
450 Apply cross fade from one input audio stream to another input audio stream.
451 The cross fade is applied for specified duration near the end of first stream.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item nb_samples, ns
457 Specify the number of samples for which the cross fade effect has to last.
458 At the end of the cross fade effect the first input audio will be completely
459 silent. Default is 44100.
460
461 @item duration, d
462 Specify the duration of the cross fade effect. See
463 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
464 for the accepted syntax.
465 By default the duration is determined by @var{nb_samples}.
466 If set this option is used instead of @var{nb_samples}.
467
468 @item overlap, o
469 Should first stream end overlap with second stream start. Default is enabled.
470
471 @item curve1
472 Set curve for cross fade transition for first stream.
473
474 @item curve2
475 Set curve for cross fade transition for second stream.
476
477 For description of available curve types see @ref{afade} filter description.
478 @end table
479
480 @subsection Examples
481
482 @itemize
483 @item
484 Cross fade from one input to another:
485 @example
486 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
487 @end example
488
489 @item
490 Cross fade from one input to another but without overlapping:
491 @example
492 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
493 @end example
494 @end itemize
495
496 @section acrusher
497
498 Reduce audio bit resolution.
499
500 This filter is bit crusher with enhanced functionality. A bit crusher
501 is used to audibly reduce number of bits an audio signal is sampled
502 with. This doesn't change the bit depth at all, it just produces the
503 effect. Material reduced in bit depth sounds more harsh and "digital".
504 This filter is able to even round to continuous values instead of discrete
505 bit depths.
506 Additionally it has a D/C offset which results in different crushing of
507 the lower and the upper half of the signal.
508 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
509
510 Another feature of this filter is the logarithmic mode.
511 This setting switches from linear distances between bits to logarithmic ones.
512 The result is a much more "natural" sounding crusher which doesn't gate low
513 signals for example. The human ear has a logarithmic perception,
514 so this kind of crushing is much more pleasant.
515 Logarithmic crushing is also able to get anti-aliased.
516
517 The filter accepts the following options:
518
519 @table @option
520 @item level_in
521 Set level in.
522
523 @item level_out
524 Set level out.
525
526 @item bits
527 Set bit reduction.
528
529 @item mix
530 Set mixing amount.
531
532 @item mode
533 Can be linear: @code{lin} or logarithmic: @code{log}.
534
535 @item dc
536 Set DC.
537
538 @item aa
539 Set anti-aliasing.
540
541 @item samples
542 Set sample reduction.
543
544 @item lfo
545 Enable LFO. By default disabled.
546
547 @item lforange
548 Set LFO range.
549
550 @item lforate
551 Set LFO rate.
552 @end table
553
554 @section adelay
555
556 Delay one or more audio channels.
557
558 Samples in delayed channel are filled with silence.
559
560 The filter accepts the following option:
561
562 @table @option
563 @item delays
564 Set list of delays in milliseconds for each channel separated by '|'.
565 Unused delays will be silently ignored. If number of given delays is
566 smaller than number of channels all remaining channels will not be delayed.
567 If you want to delay exact number of samples, append 'S' to number.
568 @end table
569
570 @subsection Examples
571
572 @itemize
573 @item
574 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
575 the second channel (and any other channels that may be present) unchanged.
576 @example
577 adelay=1500|0|500
578 @end example
579
580 @item
581 Delay second channel by 500 samples, the third channel by 700 samples and leave
582 the first channel (and any other channels that may be present) unchanged.
583 @example
584 adelay=0|500S|700S
585 @end example
586 @end itemize
587
588 @section aderivative, aintegral
589
590 Compute derivative/integral of audio stream.
591
592 Applying both filters one after another produces original audio.
593
594 @section aecho
595
596 Apply echoing to the input audio.
597
598 Echoes are reflected sound and can occur naturally amongst mountains
599 (and sometimes large buildings) when talking or shouting; digital echo
600 effects emulate this behaviour and are often used to help fill out the
601 sound of a single instrument or vocal. The time difference between the
602 original signal and the reflection is the @code{delay}, and the
603 loudness of the reflected signal is the @code{decay}.
604 Multiple echoes can have different delays and decays.
605
606 A description of the accepted parameters follows.
607
608 @table @option
609 @item in_gain
610 Set input gain of reflected signal. Default is @code{0.6}.
611
612 @item out_gain
613 Set output gain of reflected signal. Default is @code{0.3}.
614
615 @item delays
616 Set list of time intervals in milliseconds between original signal and reflections
617 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
618 Default is @code{1000}.
619
620 @item decays
621 Set list of loudness of reflected signals separated by '|'.
622 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
623 Default is @code{0.5}.
624 @end table
625
626 @subsection Examples
627
628 @itemize
629 @item
630 Make it sound as if there are twice as many instruments as are actually playing:
631 @example
632 aecho=0.8:0.88:60:0.4
633 @end example
634
635 @item
636 If delay is very short, then it sound like a (metallic) robot playing music:
637 @example
638 aecho=0.8:0.88:6:0.4
639 @end example
640
641 @item
642 A longer delay will sound like an open air concert in the mountains:
643 @example
644 aecho=0.8:0.9:1000:0.3
645 @end example
646
647 @item
648 Same as above but with one more mountain:
649 @example
650 aecho=0.8:0.9:1000|1800:0.3|0.25
651 @end example
652 @end itemize
653
654 @section aemphasis
655 Audio emphasis filter creates or restores material directly taken from LPs or
656 emphased CDs with different filter curves. E.g. to store music on vinyl the
657 signal has to be altered by a filter first to even out the disadvantages of
658 this recording medium.
659 Once the material is played back the inverse filter has to be applied to
660 restore the distortion of the frequency response.
661
662 The filter accepts the following options:
663
664 @table @option
665 @item level_in
666 Set input gain.
667
668 @item level_out
669 Set output gain.
670
671 @item mode
672 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
673 use @code{production} mode. Default is @code{reproduction} mode.
674
675 @item type
676 Set filter type. Selects medium. Can be one of the following:
677
678 @table @option
679 @item col
680 select Columbia.
681 @item emi
682 select EMI.
683 @item bsi
684 select BSI (78RPM).
685 @item riaa
686 select RIAA.
687 @item cd
688 select Compact Disc (CD).
689 @item 50fm
690 select 50µs (FM).
691 @item 75fm
692 select 75µs (FM).
693 @item 50kf
694 select 50µs (FM-KF).
695 @item 75kf
696 select 75µs (FM-KF).
697 @end table
698 @end table
699
700 @section aeval
701
702 Modify an audio signal according to the specified expressions.
703
704 This filter accepts one or more expressions (one for each channel),
705 which are evaluated and used to modify a corresponding audio signal.
706
707 It accepts the following parameters:
708
709 @table @option
710 @item exprs
711 Set the '|'-separated expressions list for each separate channel. If
712 the number of input channels is greater than the number of
713 expressions, the last specified expression is used for the remaining
714 output channels.
715
716 @item channel_layout, c
717 Set output channel layout. If not specified, the channel layout is
718 specified by the number of expressions. If set to @samp{same}, it will
719 use by default the same input channel layout.
720 @end table
721
722 Each expression in @var{exprs} can contain the following constants and functions:
723
724 @table @option
725 @item ch
726 channel number of the current expression
727
728 @item n
729 number of the evaluated sample, starting from 0
730
731 @item s
732 sample rate
733
734 @item t
735 time of the evaluated sample expressed in seconds
736
737 @item nb_in_channels
738 @item nb_out_channels
739 input and output number of channels
740
741 @item val(CH)
742 the value of input channel with number @var{CH}
743 @end table
744
745 Note: this filter is slow. For faster processing you should use a
746 dedicated filter.
747
748 @subsection Examples
749
750 @itemize
751 @item
752 Half volume:
753 @example
754 aeval=val(ch)/2:c=same
755 @end example
756
757 @item
758 Invert phase of the second channel:
759 @example
760 aeval=val(0)|-val(1)
761 @end example
762 @end itemize
763
764 @anchor{afade}
765 @section afade
766
767 Apply fade-in/out effect to input audio.
768
769 A description of the accepted parameters follows.
770
771 @table @option
772 @item type, t
773 Specify the effect type, can be either @code{in} for fade-in, or
774 @code{out} for a fade-out effect. Default is @code{in}.
775
776 @item start_sample, ss
777 Specify the number of the start sample for starting to apply the fade
778 effect. Default is 0.
779
780 @item nb_samples, ns
781 Specify the number of samples for which the fade effect has to last. At
782 the end of the fade-in effect the output audio will have the same
783 volume as the input audio, at the end of the fade-out transition
784 the output audio will be silence. Default is 44100.
785
786 @item start_time, st
787 Specify the start time of the fade effect. Default is 0.
788 The value must be specified as a time duration; see
789 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
790 for the accepted syntax.
791 If set this option is used instead of @var{start_sample}.
792
793 @item duration, d
794 Specify the duration of the fade effect. See
795 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
796 for the accepted syntax.
797 At the end of the fade-in effect the output audio will have the same
798 volume as the input audio, at the end of the fade-out transition
799 the output audio will be silence.
800 By default the duration is determined by @var{nb_samples}.
801 If set this option is used instead of @var{nb_samples}.
802
803 @item curve
804 Set curve for fade transition.
805
806 It accepts the following values:
807 @table @option
808 @item tri
809 select triangular, linear slope (default)
810 @item qsin
811 select quarter of sine wave
812 @item hsin
813 select half of sine wave
814 @item esin
815 select exponential sine wave
816 @item log
817 select logarithmic
818 @item ipar
819 select inverted parabola
820 @item qua
821 select quadratic
822 @item cub
823 select cubic
824 @item squ
825 select square root
826 @item cbr
827 select cubic root
828 @item par
829 select parabola
830 @item exp
831 select exponential
832 @item iqsin
833 select inverted quarter of sine wave
834 @item ihsin
835 select inverted half of sine wave
836 @item dese
837 select double-exponential seat
838 @item desi
839 select double-exponential sigmoid
840 @end table
841 @end table
842
843 @subsection Examples
844
845 @itemize
846 @item
847 Fade in first 15 seconds of audio:
848 @example
849 afade=t=in:ss=0:d=15
850 @end example
851
852 @item
853 Fade out last 25 seconds of a 900 seconds audio:
854 @example
855 afade=t=out:st=875:d=25
856 @end example
857 @end itemize
858
859 @section afftfilt
860 Apply arbitrary expressions to samples in frequency domain.
861
862 @table @option
863 @item real
864 Set frequency domain real expression for each separate channel separated
865 by '|'. Default is "1".
866 If the number of input channels is greater than the number of
867 expressions, the last specified expression is used for the remaining
868 output channels.
869
870 @item imag
871 Set frequency domain imaginary expression for each separate channel
872 separated by '|'. If not set, @var{real} option is used.
873
874 Each expression in @var{real} and @var{imag} can contain the following
875 constants:
876
877 @table @option
878 @item sr
879 sample rate
880
881 @item b
882 current frequency bin number
883
884 @item nb
885 number of available bins
886
887 @item ch
888 channel number of the current expression
889
890 @item chs
891 number of channels
892
893 @item pts
894 current frame pts
895 @end table
896
897 @item win_size
898 Set window size.
899
900 It accepts the following values:
901 @table @samp
902 @item w16
903 @item w32
904 @item w64
905 @item w128
906 @item w256
907 @item w512
908 @item w1024
909 @item w2048
910 @item w4096
911 @item w8192
912 @item w16384
913 @item w32768
914 @item w65536
915 @end table
916 Default is @code{w4096}
917
918 @item win_func
919 Set window function. Default is @code{hann}.
920
921 @item overlap
922 Set window overlap. If set to 1, the recommended overlap for selected
923 window function will be picked. Default is @code{0.75}.
924 @end table
925
926 @subsection Examples
927
928 @itemize
929 @item
930 Leave almost only low frequencies in audio:
931 @example
932 afftfilt="1-clip((b/nb)*b,0,1)"
933 @end example
934 @end itemize
935
936 @anchor{afir}
937 @section afir
938
939 Apply an arbitrary Frequency Impulse Response filter.
940
941 This filter is designed for applying long FIR filters,
942 up to 30 seconds long.
943
944 It can be used as component for digital crossover filters,
945 room equalization, cross talk cancellation, wavefield synthesis,
946 auralization, ambiophonics and ambisonics.
947
948 This filter uses second stream as FIR coefficients.
949 If second stream holds single channel, it will be used
950 for all input channels in first stream, otherwise
951 number of channels in second stream must be same as
952 number of channels in first stream.
953
954 It accepts the following parameters:
955
956 @table @option
957 @item dry
958 Set dry gain. This sets input gain.
959
960 @item wet
961 Set wet gain. This sets final output gain.
962
963 @item length
964 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
965
966 @item again
967 Enable applying gain measured from power of IR.
968
969 @item maxir
970 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
971 Allowed range is 0.1 to 60 seconds.
972
973 @item response
974 Show IR frequency reponse, magnitude and phase in additional video stream.
975 By default it is disabled.
976
977 @item channel
978 Set for which IR channel to display frequency response. By default is first channel
979 displayed. This option is used only when @var{response} is enabled.
980
981 @item size
982 Set video stream size. This option is used only when @var{response} is enabled.
983 @end table
984
985 @subsection Examples
986
987 @itemize
988 @item
989 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
990 @example
991 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
992 @end example
993 @end itemize
994
995 @anchor{aformat}
996 @section aformat
997
998 Set output format constraints for the input audio. The framework will
999 negotiate the most appropriate format to minimize conversions.
1000
1001 It accepts the following parameters:
1002 @table @option
1003
1004 @item sample_fmts
1005 A '|'-separated list of requested sample formats.
1006
1007 @item sample_rates
1008 A '|'-separated list of requested sample rates.
1009
1010 @item channel_layouts
1011 A '|'-separated list of requested channel layouts.
1012
1013 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1014 for the required syntax.
1015 @end table
1016
1017 If a parameter is omitted, all values are allowed.
1018
1019 Force the output to either unsigned 8-bit or signed 16-bit stereo
1020 @example
1021 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1022 @end example
1023
1024 @section agate
1025
1026 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1027 processing reduces disturbing noise between useful signals.
1028
1029 Gating is done by detecting the volume below a chosen level @var{threshold}
1030 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1031 floor is set via @var{range}. Because an exact manipulation of the signal
1032 would cause distortion of the waveform the reduction can be levelled over
1033 time. This is done by setting @var{attack} and @var{release}.
1034
1035 @var{attack} determines how long the signal has to fall below the threshold
1036 before any reduction will occur and @var{release} sets the time the signal
1037 has to rise above the threshold to reduce the reduction again.
1038 Shorter signals than the chosen attack time will be left untouched.
1039
1040 @table @option
1041 @item level_in
1042 Set input level before filtering.
1043 Default is 1. Allowed range is from 0.015625 to 64.
1044
1045 @item range
1046 Set the level of gain reduction when the signal is below the threshold.
1047 Default is 0.06125. Allowed range is from 0 to 1.
1048
1049 @item threshold
1050 If a signal rises above this level the gain reduction is released.
1051 Default is 0.125. Allowed range is from 0 to 1.
1052
1053 @item ratio
1054 Set a ratio by which the signal is reduced.
1055 Default is 2. Allowed range is from 1 to 9000.
1056
1057 @item attack
1058 Amount of milliseconds the signal has to rise above the threshold before gain
1059 reduction stops.
1060 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1061
1062 @item release
1063 Amount of milliseconds the signal has to fall below the threshold before the
1064 reduction is increased again. Default is 250 milliseconds.
1065 Allowed range is from 0.01 to 9000.
1066
1067 @item makeup
1068 Set amount of amplification of signal after processing.
1069 Default is 1. Allowed range is from 1 to 64.
1070
1071 @item knee
1072 Curve the sharp knee around the threshold to enter gain reduction more softly.
1073 Default is 2.828427125. Allowed range is from 1 to 8.
1074
1075 @item detection
1076 Choose if exact signal should be taken for detection or an RMS like one.
1077 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1078
1079 @item link
1080 Choose if the average level between all channels or the louder channel affects
1081 the reduction.
1082 Default is @code{average}. Can be @code{average} or @code{maximum}.
1083 @end table
1084
1085 @section aiir
1086
1087 Apply an arbitrary Infinite Impulse Response filter.
1088
1089 It accepts the following parameters:
1090
1091 @table @option
1092 @item z
1093 Set numerator/zeros coefficients.
1094
1095 @item p
1096 Set denominator/poles coefficients.
1097
1098 @item k
1099 Set channels gains.
1100
1101 @item dry_gain
1102 Set input gain.
1103
1104 @item wet_gain
1105 Set output gain.
1106
1107 @item f
1108 Set coefficients format.
1109
1110 @table @samp
1111 @item tf
1112 transfer function
1113 @item zp
1114 Z-plane zeros/poles, cartesian (default)
1115 @item pr
1116 Z-plane zeros/poles, polar radians
1117 @item pd
1118 Z-plane zeros/poles, polar degrees
1119 @end table
1120
1121 @item r
1122 Set kind of processing.
1123 Can be @code{d} - direct or @code{s} - serial cascading. Defauls is @code{s}.
1124
1125 @item e
1126 Set filtering precision.
1127
1128 @table @samp
1129 @item dbl
1130 double-precision floating-point (default)
1131 @item flt
1132 single-precision floating-point
1133 @item i32
1134 32-bit integers
1135 @item i16
1136 16-bit integers
1137 @end table
1138
1139 @item response
1140 Show IR frequency reponse, magnitude and phase in additional video stream.
1141 By default it is disabled.
1142
1143 @item channel
1144 Set for which IR channel to display frequency response. By default is first channel
1145 displayed. This option is used only when @var{response} is enabled.
1146
1147 @item size
1148 Set video stream size. This option is used only when @var{response} is enabled.
1149 @end table
1150
1151 Coefficients in @code{tf} format are separated by spaces and are in ascending
1152 order.
1153
1154 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1155 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1156 imaginary unit.
1157
1158 Different coefficients and gains can be provided for every channel, in such case
1159 use '|' to separate coefficients or gains. Last provided coefficients will be
1160 used for all remaining channels.
1161
1162 @subsection Examples
1163
1164 @itemize
1165 @item
1166 Apply 2 pole elliptic notch at arround 5000Hz for 48000 Hz sample rate:
1167 @example
1168 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1169 @end example
1170
1171 @item
1172 Same as above but in @code{zp} format:
1173 @example
1174 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1175 @end example
1176 @end itemize
1177
1178 @section alimiter
1179
1180 The limiter prevents an input signal from rising over a desired threshold.
1181 This limiter uses lookahead technology to prevent your signal from distorting.
1182 It means that there is a small delay after the signal is processed. Keep in mind
1183 that the delay it produces is the attack time you set.
1184
1185 The filter accepts the following options:
1186
1187 @table @option
1188 @item level_in
1189 Set input gain. Default is 1.
1190
1191 @item level_out
1192 Set output gain. Default is 1.
1193
1194 @item limit
1195 Don't let signals above this level pass the limiter. Default is 1.
1196
1197 @item attack
1198 The limiter will reach its attenuation level in this amount of time in
1199 milliseconds. Default is 5 milliseconds.
1200
1201 @item release
1202 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1203 Default is 50 milliseconds.
1204
1205 @item asc
1206 When gain reduction is always needed ASC takes care of releasing to an
1207 average reduction level rather than reaching a reduction of 0 in the release
1208 time.
1209
1210 @item asc_level
1211 Select how much the release time is affected by ASC, 0 means nearly no changes
1212 in release time while 1 produces higher release times.
1213
1214 @item level
1215 Auto level output signal. Default is enabled.
1216 This normalizes audio back to 0dB if enabled.
1217 @end table
1218
1219 Depending on picked setting it is recommended to upsample input 2x or 4x times
1220 with @ref{aresample} before applying this filter.
1221
1222 @section allpass
1223
1224 Apply a two-pole all-pass filter with central frequency (in Hz)
1225 @var{frequency}, and filter-width @var{width}.
1226 An all-pass filter changes the audio's frequency to phase relationship
1227 without changing its frequency to amplitude relationship.
1228
1229 The filter accepts the following options:
1230
1231 @table @option
1232 @item frequency, f
1233 Set frequency in Hz.
1234
1235 @item width_type, t
1236 Set method to specify band-width of filter.
1237 @table @option
1238 @item h
1239 Hz
1240 @item q
1241 Q-Factor
1242 @item o
1243 octave
1244 @item s
1245 slope
1246 @item k
1247 kHz
1248 @end table
1249
1250 @item width, w
1251 Specify the band-width of a filter in width_type units.
1252
1253 @item channels, c
1254 Specify which channels to filter, by default all available are filtered.
1255 @end table
1256
1257 @subsection Commands
1258
1259 This filter supports the following commands:
1260 @table @option
1261 @item frequency, f
1262 Change allpass frequency.
1263 Syntax for the command is : "@var{frequency}"
1264
1265 @item width_type, t
1266 Change allpass width_type.
1267 Syntax for the command is : "@var{width_type}"
1268
1269 @item width, w
1270 Change allpass width.
1271 Syntax for the command is : "@var{width}"
1272 @end table
1273
1274 @section aloop
1275
1276 Loop audio samples.
1277
1278 The filter accepts the following options:
1279
1280 @table @option
1281 @item loop
1282 Set the number of loops. Setting this value to -1 will result in infinite loops.
1283 Default is 0.
1284
1285 @item size
1286 Set maximal number of samples. Default is 0.
1287
1288 @item start
1289 Set first sample of loop. Default is 0.
1290 @end table
1291
1292 @anchor{amerge}
1293 @section amerge
1294
1295 Merge two or more audio streams into a single multi-channel stream.
1296
1297 The filter accepts the following options:
1298
1299 @table @option
1300
1301 @item inputs
1302 Set the number of inputs. Default is 2.
1303
1304 @end table
1305
1306 If the channel layouts of the inputs are disjoint, and therefore compatible,
1307 the channel layout of the output will be set accordingly and the channels
1308 will be reordered as necessary. If the channel layouts of the inputs are not
1309 disjoint, the output will have all the channels of the first input then all
1310 the channels of the second input, in that order, and the channel layout of
1311 the output will be the default value corresponding to the total number of
1312 channels.
1313
1314 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1315 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1316 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1317 first input, b1 is the first channel of the second input).
1318
1319 On the other hand, if both input are in stereo, the output channels will be
1320 in the default order: a1, a2, b1, b2, and the channel layout will be
1321 arbitrarily set to 4.0, which may or may not be the expected value.
1322
1323 All inputs must have the same sample rate, and format.
1324
1325 If inputs do not have the same duration, the output will stop with the
1326 shortest.
1327
1328 @subsection Examples
1329
1330 @itemize
1331 @item
1332 Merge two mono files into a stereo stream:
1333 @example
1334 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1335 @end example
1336
1337 @item
1338 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1339 @example
1340 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
1341 @end example
1342 @end itemize
1343
1344 @section amix
1345
1346 Mixes multiple audio inputs into a single output.
1347
1348 Note that this filter only supports float samples (the @var{amerge}
1349 and @var{pan} audio filters support many formats). If the @var{amix}
1350 input has integer samples then @ref{aresample} will be automatically
1351 inserted to perform the conversion to float samples.
1352
1353 For example
1354 @example
1355 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1356 @end example
1357 will mix 3 input audio streams to a single output with the same duration as the
1358 first input and a dropout transition time of 3 seconds.
1359
1360 It accepts the following parameters:
1361 @table @option
1362
1363 @item inputs
1364 The number of inputs. If unspecified, it defaults to 2.
1365
1366 @item duration
1367 How to determine the end-of-stream.
1368 @table @option
1369
1370 @item longest
1371 The duration of the longest input. (default)
1372
1373 @item shortest
1374 The duration of the shortest input.
1375
1376 @item first
1377 The duration of the first input.
1378
1379 @end table
1380
1381 @item dropout_transition
1382 The transition time, in seconds, for volume renormalization when an input
1383 stream ends. The default value is 2 seconds.
1384
1385 @item weights
1386 Specify weight of each input audio stream as sequence.
1387 Each weight is separated by space. By default all inputs have same weight.
1388 @end table
1389
1390 @section anequalizer
1391
1392 High-order parametric multiband equalizer for each channel.
1393
1394 It accepts the following parameters:
1395 @table @option
1396 @item params
1397
1398 This option string is in format:
1399 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1400 Each equalizer band is separated by '|'.
1401
1402 @table @option
1403 @item chn
1404 Set channel number to which equalization will be applied.
1405 If input doesn't have that channel the entry is ignored.
1406
1407 @item f
1408 Set central frequency for band.
1409 If input doesn't have that frequency the entry is ignored.
1410
1411 @item w
1412 Set band width in hertz.
1413
1414 @item g
1415 Set band gain in dB.
1416
1417 @item t
1418 Set filter type for band, optional, can be:
1419
1420 @table @samp
1421 @item 0
1422 Butterworth, this is default.
1423
1424 @item 1
1425 Chebyshev type 1.
1426
1427 @item 2
1428 Chebyshev type 2.
1429 @end table
1430 @end table
1431
1432 @item curves
1433 With this option activated frequency response of anequalizer is displayed
1434 in video stream.
1435
1436 @item size
1437 Set video stream size. Only useful if curves option is activated.
1438
1439 @item mgain
1440 Set max gain that will be displayed. Only useful if curves option is activated.
1441 Setting this to a reasonable value makes it possible to display gain which is derived from
1442 neighbour bands which are too close to each other and thus produce higher gain
1443 when both are activated.
1444
1445 @item fscale
1446 Set frequency scale used to draw frequency response in video output.
1447 Can be linear or logarithmic. Default is logarithmic.
1448
1449 @item colors
1450 Set color for each channel curve which is going to be displayed in video stream.
1451 This is list of color names separated by space or by '|'.
1452 Unrecognised or missing colors will be replaced by white color.
1453 @end table
1454
1455 @subsection Examples
1456
1457 @itemize
1458 @item
1459 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1460 for first 2 channels using Chebyshev type 1 filter:
1461 @example
1462 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1463 @end example
1464 @end itemize
1465
1466 @subsection Commands
1467
1468 This filter supports the following commands:
1469 @table @option
1470 @item change
1471 Alter existing filter parameters.
1472 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1473
1474 @var{fN} is existing filter number, starting from 0, if no such filter is available
1475 error is returned.
1476 @var{freq} set new frequency parameter.
1477 @var{width} set new width parameter in herz.
1478 @var{gain} set new gain parameter in dB.
1479
1480 Full filter invocation with asendcmd may look like this:
1481 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1482 @end table
1483
1484 @section anull
1485
1486 Pass the audio source unchanged to the output.
1487
1488 @section apad
1489
1490 Pad the end of an audio stream with silence.
1491
1492 This can be used together with @command{ffmpeg} @option{-shortest} to
1493 extend audio streams to the same length as the video stream.
1494
1495 A description of the accepted options follows.
1496
1497 @table @option
1498 @item packet_size
1499 Set silence packet size. Default value is 4096.
1500
1501 @item pad_len
1502 Set the number of samples of silence to add to the end. After the
1503 value is reached, the stream is terminated. This option is mutually
1504 exclusive with @option{whole_len}.
1505
1506 @item whole_len
1507 Set the minimum total number of samples in the output audio stream. If
1508 the value is longer than the input audio length, silence is added to
1509 the end, until the value is reached. This option is mutually exclusive
1510 with @option{pad_len}.
1511 @end table
1512
1513 If neither the @option{pad_len} nor the @option{whole_len} option is
1514 set, the filter will add silence to the end of the input stream
1515 indefinitely.
1516
1517 @subsection Examples
1518
1519 @itemize
1520 @item
1521 Add 1024 samples of silence to the end of the input:
1522 @example
1523 apad=pad_len=1024
1524 @end example
1525
1526 @item
1527 Make sure the audio output will contain at least 10000 samples, pad
1528 the input with silence if required:
1529 @example
1530 apad=whole_len=10000
1531 @end example
1532
1533 @item
1534 Use @command{ffmpeg} to pad the audio input with silence, so that the
1535 video stream will always result the shortest and will be converted
1536 until the end in the output file when using the @option{shortest}
1537 option:
1538 @example
1539 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1540 @end example
1541 @end itemize
1542
1543 @section aphaser
1544 Add a phasing effect to the input audio.
1545
1546 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1547 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1548
1549 A description of the accepted parameters follows.
1550
1551 @table @option
1552 @item in_gain
1553 Set input gain. Default is 0.4.
1554
1555 @item out_gain
1556 Set output gain. Default is 0.74
1557
1558 @item delay
1559 Set delay in milliseconds. Default is 3.0.
1560
1561 @item decay
1562 Set decay. Default is 0.4.
1563
1564 @item speed
1565 Set modulation speed in Hz. Default is 0.5.
1566
1567 @item type
1568 Set modulation type. Default is triangular.
1569
1570 It accepts the following values:
1571 @table @samp
1572 @item triangular, t
1573 @item sinusoidal, s
1574 @end table
1575 @end table
1576
1577 @section apulsator
1578
1579 Audio pulsator is something between an autopanner and a tremolo.
1580 But it can produce funny stereo effects as well. Pulsator changes the volume
1581 of the left and right channel based on a LFO (low frequency oscillator) with
1582 different waveforms and shifted phases.
1583 This filter have the ability to define an offset between left and right
1584 channel. An offset of 0 means that both LFO shapes match each other.
1585 The left and right channel are altered equally - a conventional tremolo.
1586 An offset of 50% means that the shape of the right channel is exactly shifted
1587 in phase (or moved backwards about half of the frequency) - pulsator acts as
1588 an autopanner. At 1 both curves match again. Every setting in between moves the
1589 phase shift gapless between all stages and produces some "bypassing" sounds with
1590 sine and triangle waveforms. The more you set the offset near 1 (starting from
1591 the 0.5) the faster the signal passes from the left to the right speaker.
1592
1593 The filter accepts the following options:
1594
1595 @table @option
1596 @item level_in
1597 Set input gain. By default it is 1. Range is [0.015625 - 64].
1598
1599 @item level_out
1600 Set output gain. By default it is 1. Range is [0.015625 - 64].
1601
1602 @item mode
1603 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1604 sawup or sawdown. Default is sine.
1605
1606 @item amount
1607 Set modulation. Define how much of original signal is affected by the LFO.
1608
1609 @item offset_l
1610 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1611
1612 @item offset_r
1613 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1614
1615 @item width
1616 Set pulse width. Default is 1. Allowed range is [0 - 2].
1617
1618 @item timing
1619 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1620
1621 @item bpm
1622 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1623 is set to bpm.
1624
1625 @item ms
1626 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1627 is set to ms.
1628
1629 @item hz
1630 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1631 if timing is set to hz.
1632 @end table
1633
1634 @anchor{aresample}
1635 @section aresample
1636
1637 Resample the input audio to the specified parameters, using the
1638 libswresample library. If none are specified then the filter will
1639 automatically convert between its input and output.
1640
1641 This filter is also able to stretch/squeeze the audio data to make it match
1642 the timestamps or to inject silence / cut out audio to make it match the
1643 timestamps, do a combination of both or do neither.
1644
1645 The filter accepts the syntax
1646 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1647 expresses a sample rate and @var{resampler_options} is a list of
1648 @var{key}=@var{value} pairs, separated by ":". See the
1649 @ref{Resampler Options,,"Resampler Options" section in the
1650 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1651 for the complete list of supported options.
1652
1653 @subsection Examples
1654
1655 @itemize
1656 @item
1657 Resample the input audio to 44100Hz:
1658 @example
1659 aresample=44100
1660 @end example
1661
1662 @item
1663 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1664 samples per second compensation:
1665 @example
1666 aresample=async=1000
1667 @end example
1668 @end itemize
1669
1670 @section areverse
1671
1672 Reverse an audio clip.
1673
1674 Warning: This filter requires memory to buffer the entire clip, so trimming
1675 is suggested.
1676
1677 @subsection Examples
1678
1679 @itemize
1680 @item
1681 Take the first 5 seconds of a clip, and reverse it.
1682 @example
1683 atrim=end=5,areverse
1684 @end example
1685 @end itemize
1686
1687 @section asetnsamples
1688
1689 Set the number of samples per each output audio frame.
1690
1691 The last output packet may contain a different number of samples, as
1692 the filter will flush all the remaining samples when the input audio
1693 signals its end.
1694
1695 The filter accepts the following options:
1696
1697 @table @option
1698
1699 @item nb_out_samples, n
1700 Set the number of frames per each output audio frame. The number is
1701 intended as the number of samples @emph{per each channel}.
1702 Default value is 1024.
1703
1704 @item pad, p
1705 If set to 1, the filter will pad the last audio frame with zeroes, so
1706 that the last frame will contain the same number of samples as the
1707 previous ones. Default value is 1.
1708 @end table
1709
1710 For example, to set the number of per-frame samples to 1234 and
1711 disable padding for the last frame, use:
1712 @example
1713 asetnsamples=n=1234:p=0
1714 @end example
1715
1716 @section asetrate
1717
1718 Set the sample rate without altering the PCM data.
1719 This will result in a change of speed and pitch.
1720
1721 The filter accepts the following options:
1722
1723 @table @option
1724 @item sample_rate, r
1725 Set the output sample rate. Default is 44100 Hz.
1726 @end table
1727
1728 @section ashowinfo
1729
1730 Show a line containing various information for each input audio frame.
1731 The input audio is not modified.
1732
1733 The shown line contains a sequence of key/value pairs of the form
1734 @var{key}:@var{value}.
1735
1736 The following values are shown in the output:
1737
1738 @table @option
1739 @item n
1740 The (sequential) number of the input frame, starting from 0.
1741
1742 @item pts
1743 The presentation timestamp of the input frame, in time base units; the time base
1744 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1745
1746 @item pts_time
1747 The presentation timestamp of the input frame in seconds.
1748
1749 @item pos
1750 position of the frame in the input stream, -1 if this information in
1751 unavailable and/or meaningless (for example in case of synthetic audio)
1752
1753 @item fmt
1754 The sample format.
1755
1756 @item chlayout
1757 The channel layout.
1758
1759 @item rate
1760 The sample rate for the audio frame.
1761
1762 @item nb_samples
1763 The number of samples (per channel) in the frame.
1764
1765 @item checksum
1766 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1767 audio, the data is treated as if all the planes were concatenated.
1768
1769 @item plane_checksums
1770 A list of Adler-32 checksums for each data plane.
1771 @end table
1772
1773 @anchor{astats}
1774 @section astats
1775
1776 Display time domain statistical information about the audio channels.
1777 Statistics are calculated and displayed for each audio channel and,
1778 where applicable, an overall figure is also given.
1779
1780 It accepts the following option:
1781 @table @option
1782 @item length
1783 Short window length in seconds, used for peak and trough RMS measurement.
1784 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
1785
1786 @item metadata
1787
1788 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1789 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1790 disabled.
1791
1792 Available keys for each channel are:
1793 DC_offset
1794 Min_level
1795 Max_level
1796 Min_difference
1797 Max_difference
1798 Mean_difference
1799 RMS_difference
1800 Peak_level
1801 RMS_peak
1802 RMS_trough
1803 Crest_factor
1804 Flat_factor
1805 Peak_count
1806 Bit_depth
1807 Dynamic_range
1808
1809 and for Overall:
1810 DC_offset
1811 Min_level
1812 Max_level
1813 Min_difference
1814 Max_difference
1815 Mean_difference
1816 RMS_difference
1817 Peak_level
1818 RMS_level
1819 RMS_peak
1820 RMS_trough
1821 Flat_factor
1822 Peak_count
1823 Bit_depth
1824 Number_of_samples
1825
1826 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1827 this @code{lavfi.astats.Overall.Peak_count}.
1828
1829 For description what each key means read below.
1830
1831 @item reset
1832 Set number of frame after which stats are going to be recalculated.
1833 Default is disabled.
1834 @end table
1835
1836 A description of each shown parameter follows:
1837
1838 @table @option
1839 @item DC offset
1840 Mean amplitude displacement from zero.
1841
1842 @item Min level
1843 Minimal sample level.
1844
1845 @item Max level
1846 Maximal sample level.
1847
1848 @item Min difference
1849 Minimal difference between two consecutive samples.
1850
1851 @item Max difference
1852 Maximal difference between two consecutive samples.
1853
1854 @item Mean difference
1855 Mean difference between two consecutive samples.
1856 The average of each difference between two consecutive samples.
1857
1858 @item RMS difference
1859 Root Mean Square difference between two consecutive samples.
1860
1861 @item Peak level dB
1862 @item RMS level dB
1863 Standard peak and RMS level measured in dBFS.
1864
1865 @item RMS peak dB
1866 @item RMS trough dB
1867 Peak and trough values for RMS level measured over a short window.
1868
1869 @item Crest factor
1870 Standard ratio of peak to RMS level (note: not in dB).
1871
1872 @item Flat factor
1873 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1874 (i.e. either @var{Min level} or @var{Max level}).
1875
1876 @item Peak count
1877 Number of occasions (not the number of samples) that the signal attained either
1878 @var{Min level} or @var{Max level}.
1879
1880 @item Bit depth
1881 Overall bit depth of audio. Number of bits used for each sample.
1882
1883 @item Dynamic range
1884 Measured dynamic range of audio in dB.
1885 @end table
1886
1887 @section atempo
1888
1889 Adjust audio tempo.
1890
1891 The filter accepts exactly one parameter, the audio tempo. If not
1892 specified then the filter will assume nominal 1.0 tempo. Tempo must
1893 be in the [0.5, 2.0] range.
1894
1895 @subsection Examples
1896
1897 @itemize
1898 @item
1899 Slow down audio to 80% tempo:
1900 @example
1901 atempo=0.8
1902 @end example
1903
1904 @item
1905 To speed up audio to 125% tempo:
1906 @example
1907 atempo=1.25
1908 @end example
1909 @end itemize
1910
1911 @section atrim
1912
1913 Trim the input so that the output contains one continuous subpart of the input.
1914
1915 It accepts the following parameters:
1916 @table @option
1917 @item start
1918 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1919 sample with the timestamp @var{start} will be the first sample in the output.
1920
1921 @item end
1922 Specify time of the first audio sample that will be dropped, i.e. the
1923 audio sample immediately preceding the one with the timestamp @var{end} will be
1924 the last sample in the output.
1925
1926 @item start_pts
1927 Same as @var{start}, except this option sets the start timestamp in samples
1928 instead of seconds.
1929
1930 @item end_pts
1931 Same as @var{end}, except this option sets the end timestamp in samples instead
1932 of seconds.
1933
1934 @item duration
1935 The maximum duration of the output in seconds.
1936
1937 @item start_sample
1938 The number of the first sample that should be output.
1939
1940 @item end_sample
1941 The number of the first sample that should be dropped.
1942 @end table
1943
1944 @option{start}, @option{end}, and @option{duration} are expressed as time
1945 duration specifications; see
1946 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1947
1948 Note that the first two sets of the start/end options and the @option{duration}
1949 option look at the frame timestamp, while the _sample options simply count the
1950 samples that pass through the filter. So start/end_pts and start/end_sample will
1951 give different results when the timestamps are wrong, inexact or do not start at
1952 zero. Also note that this filter does not modify the timestamps. If you wish
1953 to have the output timestamps start at zero, insert the asetpts filter after the
1954 atrim filter.
1955
1956 If multiple start or end options are set, this filter tries to be greedy and
1957 keep all samples that match at least one of the specified constraints. To keep
1958 only the part that matches all the constraints at once, chain multiple atrim
1959 filters.
1960
1961 The defaults are such that all the input is kept. So it is possible to set e.g.
1962 just the end values to keep everything before the specified time.
1963
1964 Examples:
1965 @itemize
1966 @item
1967 Drop everything except the second minute of input:
1968 @example
1969 ffmpeg -i INPUT -af atrim=60:120
1970 @end example
1971
1972 @item
1973 Keep only the first 1000 samples:
1974 @example
1975 ffmpeg -i INPUT -af atrim=end_sample=1000
1976 @end example
1977
1978 @end itemize
1979
1980 @section bandpass
1981
1982 Apply a two-pole Butterworth band-pass filter with central
1983 frequency @var{frequency}, and (3dB-point) band-width width.
1984 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1985 instead of the default: constant 0dB peak gain.
1986 The filter roll off at 6dB per octave (20dB per decade).
1987
1988 The filter accepts the following options:
1989
1990 @table @option
1991 @item frequency, f
1992 Set the filter's central frequency. Default is @code{3000}.
1993
1994 @item csg
1995 Constant skirt gain if set to 1. Defaults to 0.
1996
1997 @item width_type, t
1998 Set method to specify band-width of filter.
1999 @table @option
2000 @item h
2001 Hz
2002 @item q
2003 Q-Factor
2004 @item o
2005 octave
2006 @item s
2007 slope
2008 @item k
2009 kHz
2010 @end table
2011
2012 @item width, w
2013 Specify the band-width of a filter in width_type units.
2014
2015 @item channels, c
2016 Specify which channels to filter, by default all available are filtered.
2017 @end table
2018
2019 @subsection Commands
2020
2021 This filter supports the following commands:
2022 @table @option
2023 @item frequency, f
2024 Change bandpass frequency.
2025 Syntax for the command is : "@var{frequency}"
2026
2027 @item width_type, t
2028 Change bandpass width_type.
2029 Syntax for the command is : "@var{width_type}"
2030
2031 @item width, w
2032 Change bandpass width.
2033 Syntax for the command is : "@var{width}"
2034 @end table
2035
2036 @section bandreject
2037
2038 Apply a two-pole Butterworth band-reject filter with central
2039 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2040 The filter roll off at 6dB per octave (20dB per decade).
2041
2042 The filter accepts the following options:
2043
2044 @table @option
2045 @item frequency, f
2046 Set the filter's central frequency. Default is @code{3000}.
2047
2048 @item width_type, t
2049 Set method to specify band-width of filter.
2050 @table @option
2051 @item h
2052 Hz
2053 @item q
2054 Q-Factor
2055 @item o
2056 octave
2057 @item s
2058 slope
2059 @item k
2060 kHz
2061 @end table
2062
2063 @item width, w
2064 Specify the band-width of a filter in width_type units.
2065
2066 @item channels, c
2067 Specify which channels to filter, by default all available are filtered.
2068 @end table
2069
2070 @subsection Commands
2071
2072 This filter supports the following commands:
2073 @table @option
2074 @item frequency, f
2075 Change bandreject frequency.
2076 Syntax for the command is : "@var{frequency}"
2077
2078 @item width_type, t
2079 Change bandreject width_type.
2080 Syntax for the command is : "@var{width_type}"
2081
2082 @item width, w
2083 Change bandreject width.
2084 Syntax for the command is : "@var{width}"
2085 @end table
2086
2087 @section bass, lowshelf
2088
2089 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2090 shelving filter with a response similar to that of a standard
2091 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2092
2093 The filter accepts the following options:
2094
2095 @table @option
2096 @item gain, g
2097 Give the gain at 0 Hz. Its useful range is about -20
2098 (for a large cut) to +20 (for a large boost).
2099 Beware of clipping when using a positive gain.
2100
2101 @item frequency, f
2102 Set the filter's central frequency and so can be used
2103 to extend or reduce the frequency range to be boosted or cut.
2104 The default value is @code{100} Hz.
2105
2106 @item width_type, t
2107 Set method to specify band-width of filter.
2108 @table @option
2109 @item h
2110 Hz
2111 @item q
2112 Q-Factor
2113 @item o
2114 octave
2115 @item s
2116 slope
2117 @item k
2118 kHz
2119 @end table
2120
2121 @item width, w
2122 Determine how steep is the filter's shelf transition.
2123
2124 @item channels, c
2125 Specify which channels to filter, by default all available are filtered.
2126 @end table
2127
2128 @subsection Commands
2129
2130 This filter supports the following commands:
2131 @table @option
2132 @item frequency, f
2133 Change bass frequency.
2134 Syntax for the command is : "@var{frequency}"
2135
2136 @item width_type, t
2137 Change bass width_type.
2138 Syntax for the command is : "@var{width_type}"
2139
2140 @item width, w
2141 Change bass width.
2142 Syntax for the command is : "@var{width}"
2143
2144 @item gain, g
2145 Change bass gain.
2146 Syntax for the command is : "@var{gain}"
2147 @end table
2148
2149 @section biquad
2150
2151 Apply a biquad IIR filter with the given coefficients.
2152 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2153 are the numerator and denominator coefficients respectively.
2154 and @var{channels}, @var{c} specify which channels to filter, by default all
2155 available are filtered.
2156
2157 @subsection Commands
2158
2159 This filter supports the following commands:
2160 @table @option
2161 @item a0
2162 @item a1
2163 @item a2
2164 @item b0
2165 @item b1
2166 @item b2
2167 Change biquad parameter.
2168 Syntax for the command is : "@var{value}"
2169 @end table
2170
2171 @section bs2b
2172 Bauer stereo to binaural transformation, which improves headphone listening of
2173 stereo audio records.
2174
2175 To enable compilation of this filter you need to configure FFmpeg with
2176 @code{--enable-libbs2b}.
2177
2178 It accepts the following parameters:
2179 @table @option
2180
2181 @item profile
2182 Pre-defined crossfeed level.
2183 @table @option
2184
2185 @item default
2186 Default level (fcut=700, feed=50).
2187
2188 @item cmoy
2189 Chu Moy circuit (fcut=700, feed=60).
2190
2191 @item jmeier
2192 Jan Meier circuit (fcut=650, feed=95).
2193
2194 @end table
2195
2196 @item fcut
2197 Cut frequency (in Hz).
2198
2199 @item feed
2200 Feed level (in Hz).
2201
2202 @end table
2203
2204 @section channelmap
2205
2206 Remap input channels to new locations.
2207
2208 It accepts the following parameters:
2209 @table @option
2210 @item map
2211 Map channels from input to output. The argument is a '|'-separated list of
2212 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2213 @var{in_channel} form. @var{in_channel} can be either the name of the input
2214 channel (e.g. FL for front left) or its index in the input channel layout.
2215 @var{out_channel} is the name of the output channel or its index in the output
2216 channel layout. If @var{out_channel} is not given then it is implicitly an
2217 index, starting with zero and increasing by one for each mapping.
2218
2219 @item channel_layout
2220 The channel layout of the output stream.
2221 @end table
2222
2223 If no mapping is present, the filter will implicitly map input channels to
2224 output channels, preserving indices.
2225
2226 @subsection Examples
2227
2228 @itemize
2229 @item
2230 For example, assuming a 5.1+downmix input MOV file,
2231 @example
2232 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2233 @end example
2234 will create an output WAV file tagged as stereo from the downmix channels of
2235 the input.
2236
2237 @item
2238 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2239 @example
2240 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2241 @end example
2242 @end itemize
2243
2244 @section channelsplit
2245
2246 Split each channel from an input audio stream into a separate output stream.
2247
2248 It accepts the following parameters:
2249 @table @option
2250 @item channel_layout
2251 The channel layout of the input stream. The default is "stereo".
2252 @item channels
2253 A channel layout describing the channels to be extracted as separate output streams
2254 or "all" to extract each input channel as a separate stream. The default is "all".
2255
2256 Choosing channels not present in channel layout in the input will result in an error.
2257 @end table
2258
2259 @subsection Examples
2260
2261 @itemize
2262 @item
2263 For example, assuming a stereo input MP3 file,
2264 @example
2265 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2266 @end example
2267 will create an output Matroska file with two audio streams, one containing only
2268 the left channel and the other the right channel.
2269
2270 @item
2271 Split a 5.1 WAV file into per-channel files:
2272 @example
2273 ffmpeg -i in.wav -filter_complex
2274 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2275 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2276 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2277 side_right.wav
2278 @end example
2279
2280 @item
2281 Extract only LFE from a 5.1 WAV file:
2282 @example
2283 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2284 -map '[LFE]' lfe.wav
2285 @end example
2286 @end itemize
2287
2288 @section chorus
2289 Add a chorus effect to the audio.
2290
2291 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2292
2293 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2294 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2295 The modulation depth defines the range the modulated delay is played before or after
2296 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2297 sound tuned around the original one, like in a chorus where some vocals are slightly
2298 off key.
2299
2300 It accepts the following parameters:
2301 @table @option
2302 @item in_gain
2303 Set input gain. Default is 0.4.
2304
2305 @item out_gain
2306 Set output gain. Default is 0.4.
2307
2308 @item delays
2309 Set delays. A typical delay is around 40ms to 60ms.
2310
2311 @item decays
2312 Set decays.
2313
2314 @item speeds
2315 Set speeds.
2316
2317 @item depths
2318 Set depths.
2319 @end table
2320
2321 @subsection Examples
2322
2323 @itemize
2324 @item
2325 A single delay:
2326 @example
2327 chorus=0.7:0.9:55:0.4:0.25:2
2328 @end example
2329
2330 @item
2331 Two delays:
2332 @example
2333 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2334 @end example
2335
2336 @item
2337 Fuller sounding chorus with three delays:
2338 @example
2339 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
2340 @end example
2341 @end itemize
2342
2343 @section compand
2344 Compress or expand the audio's dynamic range.
2345
2346 It accepts the following parameters:
2347
2348 @table @option
2349
2350 @item attacks
2351 @item decays
2352 A list of times in seconds for each channel over which the instantaneous level
2353 of the input signal is averaged to determine its volume. @var{attacks} refers to
2354 increase of volume and @var{decays} refers to decrease of volume. For most
2355 situations, the attack time (response to the audio getting louder) should be
2356 shorter than the decay time, because the human ear is more sensitive to sudden
2357 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2358 a typical value for decay is 0.8 seconds.
2359 If specified number of attacks & decays is lower than number of channels, the last
2360 set attack/decay will be used for all remaining channels.
2361
2362 @item points
2363 A list of points for the transfer function, specified in dB relative to the
2364 maximum possible signal amplitude. Each key points list must be defined using
2365 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2366 @code{x0/y0 x1/y1 x2/y2 ....}
2367
2368 The input values must be in strictly increasing order but the transfer function
2369 does not have to be monotonically rising. The point @code{0/0} is assumed but
2370 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2371 function are @code{-70/-70|-60/-20|1/0}.
2372
2373 @item soft-knee
2374 Set the curve radius in dB for all joints. It defaults to 0.01.
2375
2376 @item gain
2377 Set the additional gain in dB to be applied at all points on the transfer
2378 function. This allows for easy adjustment of the overall gain.
2379 It defaults to 0.
2380
2381 @item volume
2382 Set an initial volume, in dB, to be assumed for each channel when filtering
2383 starts. This permits the user to supply a nominal level initially, so that, for
2384 example, a very large gain is not applied to initial signal levels before the
2385 companding has begun to operate. A typical value for audio which is initially
2386 quiet is -90 dB. It defaults to 0.
2387
2388 @item delay
2389 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2390 delayed before being fed to the volume adjuster. Specifying a delay
2391 approximately equal to the attack/decay times allows the filter to effectively
2392 operate in predictive rather than reactive mode. It defaults to 0.
2393
2394 @end table
2395
2396 @subsection Examples
2397
2398 @itemize
2399 @item
2400 Make music with both quiet and loud passages suitable for listening to in a
2401 noisy environment:
2402 @example
2403 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2404 @end example
2405
2406 Another example for audio with whisper and explosion parts:
2407 @example
2408 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2409 @end example
2410
2411 @item
2412 A noise gate for when the noise is at a lower level than the signal:
2413 @example
2414 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2415 @end example
2416
2417 @item
2418 Here is another noise gate, this time for when the noise is at a higher level
2419 than the signal (making it, in some ways, similar to squelch):
2420 @example
2421 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2422 @end example
2423
2424 @item
2425 2:1 compression starting at -6dB:
2426 @example
2427 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2428 @end example
2429
2430 @item
2431 2:1 compression starting at -9dB:
2432 @example
2433 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2434 @end example
2435
2436 @item
2437 2:1 compression starting at -12dB:
2438 @example
2439 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2440 @end example
2441
2442 @item
2443 2:1 compression starting at -18dB:
2444 @example
2445 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2446 @end example
2447
2448 @item
2449 3:1 compression starting at -15dB:
2450 @example
2451 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2452 @end example
2453
2454 @item
2455 Compressor/Gate:
2456 @example
2457 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2458 @end example
2459
2460 @item
2461 Expander:
2462 @example
2463 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
2464 @end example
2465
2466 @item
2467 Hard limiter at -6dB:
2468 @example
2469 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2470 @end example
2471
2472 @item
2473 Hard limiter at -12dB:
2474 @example
2475 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2476 @end example
2477
2478 @item
2479 Hard noise gate at -35 dB:
2480 @example
2481 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2482 @end example
2483
2484 @item
2485 Soft limiter:
2486 @example
2487 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2488 @end example
2489 @end itemize
2490
2491 @section compensationdelay
2492
2493 Compensation Delay Line is a metric based delay to compensate differing
2494 positions of microphones or speakers.
2495
2496 For example, you have recorded guitar with two microphones placed in
2497 different location. Because the front of sound wave has fixed speed in
2498 normal conditions, the phasing of microphones can vary and depends on
2499 their location and interposition. The best sound mix can be achieved when
2500 these microphones are in phase (synchronized). Note that distance of
2501 ~30 cm between microphones makes one microphone to capture signal in
2502 antiphase to another microphone. That makes the final mix sounding moody.
2503 This filter helps to solve phasing problems by adding different delays
2504 to each microphone track and make them synchronized.
2505
2506 The best result can be reached when you take one track as base and
2507 synchronize other tracks one by one with it.
2508 Remember that synchronization/delay tolerance depends on sample rate, too.
2509 Higher sample rates will give more tolerance.
2510
2511 It accepts the following parameters:
2512
2513 @table @option
2514 @item mm
2515 Set millimeters distance. This is compensation distance for fine tuning.
2516 Default is 0.
2517
2518 @item cm
2519 Set cm distance. This is compensation distance for tightening distance setup.
2520 Default is 0.
2521
2522 @item m
2523 Set meters distance. This is compensation distance for hard distance setup.
2524 Default is 0.
2525
2526 @item dry
2527 Set dry amount. Amount of unprocessed (dry) signal.
2528 Default is 0.
2529
2530 @item wet
2531 Set wet amount. Amount of processed (wet) signal.
2532 Default is 1.
2533
2534 @item temp
2535 Set temperature degree in Celsius. This is the temperature of the environment.
2536 Default is 20.
2537 @end table
2538
2539 @section crossfeed
2540 Apply headphone crossfeed filter.
2541
2542 Crossfeed is the process of blending the left and right channels of stereo
2543 audio recording.
2544 It is mainly used to reduce extreme stereo separation of low frequencies.
2545
2546 The intent is to produce more speaker like sound to the listener.
2547
2548 The filter accepts the following options:
2549
2550 @table @option
2551 @item strength
2552 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
2553 This sets gain of low shelf filter for side part of stereo image.
2554 Default is -6dB. Max allowed is -30db when strength is set to 1.
2555
2556 @item range
2557 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
2558 This sets cut off frequency of low shelf filter. Default is cut off near
2559 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
2560
2561 @item level_in
2562 Set input gain. Default is 0.9.
2563
2564 @item level_out
2565 Set output gain. Default is 1.
2566 @end table
2567
2568 @section crystalizer
2569 Simple algorithm to expand audio dynamic range.
2570
2571 The filter accepts the following options:
2572
2573 @table @option
2574 @item i
2575 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2576 (unchanged sound) to 10.0 (maximum effect).
2577
2578 @item c
2579 Enable clipping. By default is enabled.
2580 @end table
2581
2582 @section dcshift
2583 Apply a DC shift to the audio.
2584
2585 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2586 in the recording chain) from the audio. The effect of a DC offset is reduced
2587 headroom and hence volume. The @ref{astats} filter can be used to determine if
2588 a signal has a DC offset.
2589
2590 @table @option
2591 @item shift
2592 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2593 the audio.
2594
2595 @item limitergain
2596 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2597 used to prevent clipping.
2598 @end table
2599
2600 @section drmeter
2601 Measure audio dynamic range.
2602
2603 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
2604 is found in transition material. And anything less that 8 have very poor dynamics
2605 and is very compressed.
2606
2607 The filter accepts the following options:
2608
2609 @table @option
2610 @item length
2611 Set window length in seconds used to split audio into segments of equal length.
2612 Default is 3 seconds.
2613 @end table
2614
2615 @section dynaudnorm
2616 Dynamic Audio Normalizer.
2617
2618 This filter applies a certain amount of gain to the input audio in order
2619 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2620 contrast to more "simple" normalization algorithms, the Dynamic Audio
2621 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2622 This allows for applying extra gain to the "quiet" sections of the audio
2623 while avoiding distortions or clipping the "loud" sections. In other words:
2624 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2625 sections, in the sense that the volume of each section is brought to the
2626 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2627 this goal *without* applying "dynamic range compressing". It will retain 100%
2628 of the dynamic range *within* each section of the audio file.
2629
2630 @table @option
2631 @item f
2632 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2633 Default is 500 milliseconds.
2634 The Dynamic Audio Normalizer processes the input audio in small chunks,
2635 referred to as frames. This is required, because a peak magnitude has no
2636 meaning for just a single sample value. Instead, we need to determine the
2637 peak magnitude for a contiguous sequence of sample values. While a "standard"
2638 normalizer would simply use the peak magnitude of the complete file, the
2639 Dynamic Audio Normalizer determines the peak magnitude individually for each
2640 frame. The length of a frame is specified in milliseconds. By default, the
2641 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2642 been found to give good results with most files.
2643 Note that the exact frame length, in number of samples, will be determined
2644 automatically, based on the sampling rate of the individual input audio file.
2645
2646 @item g
2647 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2648 number. Default is 31.
2649 Probably the most important parameter of the Dynamic Audio Normalizer is the
2650 @code{window size} of the Gaussian smoothing filter. The filter's window size
2651 is specified in frames, centered around the current frame. For the sake of
2652 simplicity, this must be an odd number. Consequently, the default value of 31
2653 takes into account the current frame, as well as the 15 preceding frames and
2654 the 15 subsequent frames. Using a larger window results in a stronger
2655 smoothing effect and thus in less gain variation, i.e. slower gain
2656 adaptation. Conversely, using a smaller window results in a weaker smoothing
2657 effect and thus in more gain variation, i.e. faster gain adaptation.
2658 In other words, the more you increase this value, the more the Dynamic Audio
2659 Normalizer will behave like a "traditional" normalization filter. On the
2660 contrary, the more you decrease this value, the more the Dynamic Audio
2661 Normalizer will behave like a dynamic range compressor.
2662
2663 @item p
2664 Set the target peak value. This specifies the highest permissible magnitude
2665 level for the normalized audio input. This filter will try to approach the
2666 target peak magnitude as closely as possible, but at the same time it also
2667 makes sure that the normalized signal will never exceed the peak magnitude.
2668 A frame's maximum local gain factor is imposed directly by the target peak
2669 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2670 It is not recommended to go above this value.
2671
2672 @item m
2673 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2674 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2675 factor for each input frame, i.e. the maximum gain factor that does not
2676 result in clipping or distortion. The maximum gain factor is determined by
2677 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2678 additionally bounds the frame's maximum gain factor by a predetermined
2679 (global) maximum gain factor. This is done in order to avoid excessive gain
2680 factors in "silent" or almost silent frames. By default, the maximum gain
2681 factor is 10.0, For most inputs the default value should be sufficient and
2682 it usually is not recommended to increase this value. Though, for input
2683 with an extremely low overall volume level, it may be necessary to allow even
2684 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2685 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2686 Instead, a "sigmoid" threshold function will be applied. This way, the
2687 gain factors will smoothly approach the threshold value, but never exceed that
2688 value.
2689
2690 @item r
2691 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2692 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2693 This means that the maximum local gain factor for each frame is defined
2694 (only) by the frame's highest magnitude sample. This way, the samples can
2695 be amplified as much as possible without exceeding the maximum signal
2696 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2697 Normalizer can also take into account the frame's root mean square,
2698 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2699 determine the power of a time-varying signal. It is therefore considered
2700 that the RMS is a better approximation of the "perceived loudness" than
2701 just looking at the signal's peak magnitude. Consequently, by adjusting all
2702 frames to a constant RMS value, a uniform "perceived loudness" can be
2703 established. If a target RMS value has been specified, a frame's local gain
2704 factor is defined as the factor that would result in exactly that RMS value.
2705 Note, however, that the maximum local gain factor is still restricted by the
2706 frame's highest magnitude sample, in order to prevent clipping.
2707
2708 @item n
2709 Enable channels coupling. By default is enabled.
2710 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2711 amount. This means the same gain factor will be applied to all channels, i.e.
2712 the maximum possible gain factor is determined by the "loudest" channel.
2713 However, in some recordings, it may happen that the volume of the different
2714 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2715 In this case, this option can be used to disable the channel coupling. This way,
2716 the gain factor will be determined independently for each channel, depending
2717 only on the individual channel's highest magnitude sample. This allows for
2718 harmonizing the volume of the different channels.
2719
2720 @item c
2721 Enable DC bias correction. By default is disabled.
2722 An audio signal (in the time domain) is a sequence of sample values.
2723 In the Dynamic Audio Normalizer these sample values are represented in the
2724 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2725 audio signal, or "waveform", should be centered around the zero point.
2726 That means if we calculate the mean value of all samples in a file, or in a
2727 single frame, then the result should be 0.0 or at least very close to that
2728 value. If, however, there is a significant deviation of the mean value from
2729 0.0, in either positive or negative direction, this is referred to as a
2730 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2731 Audio Normalizer provides optional DC bias correction.
2732 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2733 the mean value, or "DC correction" offset, of each input frame and subtract
2734 that value from all of the frame's sample values which ensures those samples
2735 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2736 boundaries, the DC correction offset values will be interpolated smoothly
2737 between neighbouring frames.
2738
2739 @item b
2740 Enable alternative boundary mode. By default is disabled.
2741 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2742 around each frame. This includes the preceding frames as well as the
2743 subsequent frames. However, for the "boundary" frames, located at the very
2744 beginning and at the very end of the audio file, not all neighbouring
2745 frames are available. In particular, for the first few frames in the audio
2746 file, the preceding frames are not known. And, similarly, for the last few
2747 frames in the audio file, the subsequent frames are not known. Thus, the
2748 question arises which gain factors should be assumed for the missing frames
2749 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2750 to deal with this situation. The default boundary mode assumes a gain factor
2751 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2752 "fade out" at the beginning and at the end of the input, respectively.
2753
2754 @item s
2755 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2756 By default, the Dynamic Audio Normalizer does not apply "traditional"
2757 compression. This means that signal peaks will not be pruned and thus the
2758 full dynamic range will be retained within each local neighbourhood. However,
2759 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2760 normalization algorithm with a more "traditional" compression.
2761 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2762 (thresholding) function. If (and only if) the compression feature is enabled,
2763 all input frames will be processed by a soft knee thresholding function prior
2764 to the actual normalization process. Put simply, the thresholding function is
2765 going to prune all samples whose magnitude exceeds a certain threshold value.
2766 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2767 value. Instead, the threshold value will be adjusted for each individual
2768 frame.
2769 In general, smaller parameters result in stronger compression, and vice versa.
2770 Values below 3.0 are not recommended, because audible distortion may appear.
2771 @end table
2772
2773 @section earwax
2774
2775 Make audio easier to listen to on headphones.
2776
2777 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2778 so that when listened to on headphones the stereo image is moved from
2779 inside your head (standard for headphones) to outside and in front of
2780 the listener (standard for speakers).
2781
2782 Ported from SoX.
2783
2784 @section equalizer
2785
2786 Apply a two-pole peaking equalisation (EQ) filter. With this
2787 filter, the signal-level at and around a selected frequency can
2788 be increased or decreased, whilst (unlike bandpass and bandreject
2789 filters) that at all other frequencies is unchanged.
2790
2791 In order to produce complex equalisation curves, this filter can
2792 be given several times, each with a different central frequency.
2793
2794 The filter accepts the following options:
2795
2796 @table @option
2797 @item frequency, f
2798 Set the filter's central frequency in Hz.
2799
2800 @item width_type, t
2801 Set method to specify band-width of filter.
2802 @table @option
2803 @item h
2804 Hz
2805 @item q
2806 Q-Factor
2807 @item o
2808 octave
2809 @item s
2810 slope
2811 @item k
2812 kHz
2813 @end table
2814
2815 @item width, w
2816 Specify the band-width of a filter in width_type units.
2817
2818 @item gain, g
2819 Set the required gain or attenuation in dB.
2820 Beware of clipping when using a positive gain.
2821
2822 @item channels, c
2823 Specify which channels to filter, by default all available are filtered.
2824 @end table
2825
2826 @subsection Examples
2827 @itemize
2828 @item
2829 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2830 @example
2831 equalizer=f=1000:t=h:width=200:g=-10
2832 @end example
2833
2834 @item
2835 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2836 @example
2837 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
2838 @end example
2839 @end itemize
2840
2841 @subsection Commands
2842
2843 This filter supports the following commands:
2844 @table @option
2845 @item frequency, f
2846 Change equalizer frequency.
2847 Syntax for the command is : "@var{frequency}"
2848
2849 @item width_type, t
2850 Change equalizer width_type.
2851 Syntax for the command is : "@var{width_type}"
2852
2853 @item width, w
2854 Change equalizer width.
2855 Syntax for the command is : "@var{width}"
2856
2857 @item gain, g
2858 Change equalizer gain.
2859 Syntax for the command is : "@var{gain}"
2860 @end table
2861
2862 @section extrastereo
2863
2864 Linearly increases the difference between left and right channels which
2865 adds some sort of "live" effect to playback.
2866
2867 The filter accepts the following options:
2868
2869 @table @option
2870 @item m
2871 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2872 (average of both channels), with 1.0 sound will be unchanged, with
2873 -1.0 left and right channels will be swapped.
2874
2875 @item c
2876 Enable clipping. By default is enabled.
2877 @end table
2878
2879 @section firequalizer
2880 Apply FIR Equalization using arbitrary frequency response.
2881
2882 The filter accepts the following option:
2883
2884 @table @option
2885 @item gain
2886 Set gain curve equation (in dB). The expression can contain variables:
2887 @table @option
2888 @item f
2889 the evaluated frequency
2890 @item sr
2891 sample rate
2892 @item ch
2893 channel number, set to 0 when multichannels evaluation is disabled
2894 @item chid
2895 channel id, see libavutil/channel_layout.h, set to the first channel id when
2896 multichannels evaluation is disabled
2897 @item chs
2898 number of channels
2899 @item chlayout
2900 channel_layout, see libavutil/channel_layout.h
2901
2902 @end table
2903 and functions:
2904 @table @option
2905 @item gain_interpolate(f)
2906 interpolate gain on frequency f based on gain_entry
2907 @item cubic_interpolate(f)
2908 same as gain_interpolate, but smoother
2909 @end table
2910 This option is also available as command. Default is @code{gain_interpolate(f)}.
2911
2912 @item gain_entry
2913 Set gain entry for gain_interpolate function. The expression can
2914 contain functions:
2915 @table @option
2916 @item entry(f, g)
2917 store gain entry at frequency f with value g
2918 @end table
2919 This option is also available as command.
2920
2921 @item delay
2922 Set filter delay in seconds. Higher value means more accurate.
2923 Default is @code{0.01}.
2924
2925 @item accuracy
2926 Set filter accuracy in Hz. Lower value means more accurate.
2927 Default is @code{5}.
2928
2929 @item wfunc
2930 Set window function. Acceptable values are:
2931 @table @option
2932 @item rectangular
2933 rectangular window, useful when gain curve is already smooth
2934 @item hann
2935 hann window (default)
2936 @item hamming
2937 hamming window
2938 @item blackman
2939 blackman window
2940 @item nuttall3
2941 3-terms continuous 1st derivative nuttall window
2942 @item mnuttall3
2943 minimum 3-terms discontinuous nuttall window
2944 @item nuttall
2945 4-terms continuous 1st derivative nuttall window
2946 @item bnuttall
2947 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2948 @item bharris
2949 blackman-harris window
2950 @item tukey
2951 tukey window
2952 @end table
2953
2954 @item fixed
2955 If enabled, use fixed number of audio samples. This improves speed when
2956 filtering with large delay. Default is disabled.
2957
2958 @item multi
2959 Enable multichannels evaluation on gain. Default is disabled.
2960
2961 @item zero_phase
2962 Enable zero phase mode by subtracting timestamp to compensate delay.
2963 Default is disabled.
2964
2965 @item scale
2966 Set scale used by gain. Acceptable values are:
2967 @table @option
2968 @item linlin
2969 linear frequency, linear gain
2970 @item linlog
2971 linear frequency, logarithmic (in dB) gain (default)
2972 @item loglin
2973 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
2974 @item loglog
2975 logarithmic frequency, logarithmic gain
2976 @end table
2977
2978 @item dumpfile
2979 Set file for dumping, suitable for gnuplot.
2980
2981 @item dumpscale
2982 Set scale for dumpfile. Acceptable values are same with scale option.
2983 Default is linlog.
2984
2985 @item fft2
2986 Enable 2-channel convolution using complex FFT. This improves speed significantly.
2987 Default is disabled.
2988
2989 @item min_phase
2990 Enable minimum phase impulse response. Default is disabled.
2991 @end table
2992
2993 @subsection Examples
2994 @itemize
2995 @item
2996 lowpass at 1000 Hz:
2997 @example
2998 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2999 @end example
3000 @item
3001 lowpass at 1000 Hz with gain_entry:
3002 @example
3003 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3004 @end example
3005 @item
3006 custom equalization:
3007 @example
3008 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3009 @end example
3010 @item
3011 higher delay with zero phase to compensate delay:
3012 @example
3013 firequalizer=delay=0.1:fixed=on:zero_phase=on
3014 @end example
3015 @item
3016 lowpass on left channel, highpass on right channel:
3017 @example
3018 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3019 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3020 @end example
3021 @end itemize
3022
3023 @section flanger
3024 Apply a flanging effect to the audio.
3025
3026 The filter accepts the following options:
3027
3028 @table @option
3029 @item delay
3030 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3031
3032 @item depth
3033 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3034
3035 @item regen
3036 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3037 Default value is 0.
3038
3039 @item width
3040 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3041 Default value is 71.
3042
3043 @item speed
3044 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3045
3046 @item shape
3047 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3048 Default value is @var{sinusoidal}.
3049
3050 @item phase
3051 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3052 Default value is 25.
3053
3054 @item interp
3055 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3056 Default is @var{linear}.
3057 @end table
3058
3059 @section haas
3060 Apply Haas effect to audio.
3061
3062 Note that this makes most sense to apply on mono signals.
3063 With this filter applied to mono signals it give some directionality and
3064 stretches its stereo image.
3065
3066 The filter accepts the following options:
3067
3068 @table @option
3069 @item level_in
3070 Set input level. By default is @var{1}, or 0dB
3071
3072 @item level_out
3073 Set output level. By default is @var{1}, or 0dB.
3074
3075 @item side_gain
3076 Set gain applied to side part of signal. By default is @var{1}.
3077
3078 @item middle_source
3079 Set kind of middle source. Can be one of the following:
3080
3081 @table @samp
3082 @item left
3083 Pick left channel.
3084
3085 @item right
3086 Pick right channel.
3087
3088 @item mid
3089 Pick middle part signal of stereo image.
3090
3091 @item side
3092 Pick side part signal of stereo image.
3093 @end table
3094
3095 @item middle_phase
3096 Change middle phase. By default is disabled.
3097
3098 @item left_delay
3099 Set left channel delay. By default is @var{2.05} milliseconds.
3100
3101 @item left_balance
3102 Set left channel balance. By default is @var{-1}.
3103
3104 @item left_gain
3105 Set left channel gain. By default is @var{1}.
3106
3107 @item left_phase
3108 Change left phase. By default is disabled.
3109
3110 @item right_delay
3111 Set right channel delay. By defaults is @var{2.12} milliseconds.
3112
3113 @item right_balance
3114 Set right channel balance. By default is @var{1}.
3115
3116 @item right_gain
3117 Set right channel gain. By default is @var{1}.
3118
3119 @item right_phase
3120 Change right phase. By default is enabled.
3121 @end table
3122
3123 @section hdcd
3124
3125 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3126 embedded HDCD codes is expanded into a 20-bit PCM stream.
3127
3128 The filter supports the Peak Extend and Low-level Gain Adjustment features
3129 of HDCD, and detects the Transient Filter flag.
3130
3131 @example
3132 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3133 @end example
3134
3135 When using the filter with wav, note the default encoding for wav is 16-bit,
3136 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3137 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3138 @example
3139 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3140 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3141 @end example
3142
3143 The filter accepts the following options:
3144
3145 @table @option
3146 @item disable_autoconvert
3147 Disable any automatic format conversion or resampling in the filter graph.
3148
3149 @item process_stereo
3150 Process the stereo channels together. If target_gain does not match between
3151 channels, consider it invalid and use the last valid target_gain.
3152
3153 @item cdt_ms
3154 Set the code detect timer period in ms.
3155
3156 @item force_pe
3157 Always extend peaks above -3dBFS even if PE isn't signaled.
3158
3159 @item analyze_mode
3160 Replace audio with a solid tone and adjust the amplitude to signal some
3161 specific aspect of the decoding process. The output file can be loaded in
3162 an audio editor alongside the original to aid analysis.
3163
3164 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3165
3166 Modes are:
3167 @table @samp
3168 @item 0, off
3169 Disabled
3170 @item 1, lle
3171 Gain adjustment level at each sample
3172 @item 2, pe
3173 Samples where peak extend occurs
3174 @item 3, cdt
3175 Samples where the code detect timer is active
3176 @item 4, tgm
3177 Samples where the target gain does not match between channels
3178 @end table
3179 @end table
3180
3181 @section headphone
3182
3183 Apply head-related transfer functions (HRTFs) to create virtual
3184 loudspeakers around the user for binaural listening via headphones.
3185 The HRIRs are provided via additional streams, for each channel
3186 one stereo input stream is needed.
3187
3188 The filter accepts the following options:
3189
3190 @table @option
3191 @item map
3192 Set mapping of input streams for convolution.
3193 The argument is a '|'-separated list of channel names in order as they
3194 are given as additional stream inputs for filter.
3195 This also specify number of input streams. Number of input streams
3196 must be not less than number of channels in first stream plus one.
3197
3198 @item gain
3199 Set gain applied to audio. Value is in dB. Default is 0.
3200
3201 @item type
3202 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3203 processing audio in time domain which is slow.
3204 @var{freq} is processing audio in frequency domain which is fast.
3205 Default is @var{freq}.
3206
3207 @item lfe
3208 Set custom gain for LFE channels. Value is in dB. Default is 0.
3209
3210 @item size
3211 Set size of frame in number of samples which will be processed at once.
3212 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3213
3214 @item hrir
3215 Set format of hrir stream.
3216 Default value is @var{stereo}. Alternative value is @var{multich}.
3217 If value is set to @var{stereo}, number of additional streams should
3218 be greater or equal to number of input channels in first input stream.
3219 Also each additional stream should have stereo number of channels.
3220 If value is set to @var{multich}, number of additional streams should
3221 be exactly one. Also number of input channels of additional stream
3222 should be equal or greater than twice number of channels of first input
3223 stream.
3224 @end table
3225
3226 @subsection Examples
3227
3228 @itemize
3229 @item
3230 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3231 each amovie filter use stereo file with IR coefficients as input.
3232 The files give coefficients for each position of virtual loudspeaker:
3233 @example
3234 ffmpeg -i input.wav -lavfi-complex "amovie=azi_270_ele_0_DFC.wav[sr],amovie=azi_90_ele_0_DFC.wav[sl],amovie=azi_225_ele_0_DFC.wav[br],amovie=azi_135_ele_0_DFC.wav[bl],amovie=azi_0_ele_0_DFC.wav,asplit[fc][lfe],amovie=azi_35_ele_0_DFC.wav[fl],amovie=azi_325_ele_0_DFC.wav[fr],[a:0][fl][fr][fc][lfe][bl][br][sl][sr]headphone=FL|FR|FC|LFE|BL|BR|SL|SR"
3235 output.wav
3236 @end example
3237
3238 @item
3239 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3240 but now in @var{multich} @var{hrir} format.
3241 @example
3242 ffmpeg -i input.wav -lavfi-complex "amovie=minp.wav[hrirs],[a:0][hrirs]headphone=map=FL|FR|FC|LFE|BL|BR|SL|SR:hrir=multich"
3243 output.wav
3244 @end example
3245 @end itemize
3246
3247 @section highpass
3248
3249 Apply a high-pass filter with 3dB point frequency.
3250 The filter can be either single-pole, or double-pole (the default).
3251 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3252
3253 The filter accepts the following options:
3254
3255 @table @option
3256 @item frequency, f
3257 Set frequency in Hz. Default is 3000.
3258
3259 @item poles, p
3260 Set number of poles. Default is 2.
3261
3262 @item width_type, t
3263 Set method to specify band-width of filter.
3264 @table @option
3265 @item h
3266 Hz
3267 @item q
3268 Q-Factor
3269 @item o
3270 octave
3271 @item s
3272 slope
3273 @item k
3274 kHz
3275 @end table
3276
3277 @item width, w
3278 Specify the band-width of a filter in width_type units.
3279 Applies only to double-pole filter.
3280 The default is 0.707q and gives a Butterworth response.
3281
3282 @item channels, c
3283 Specify which channels to filter, by default all available are filtered.
3284 @end table
3285
3286 @subsection Commands
3287
3288 This filter supports the following commands:
3289 @table @option
3290 @item frequency, f
3291 Change highpass frequency.
3292 Syntax for the command is : "@var{frequency}"
3293
3294 @item width_type, t
3295 Change highpass width_type.
3296 Syntax for the command is : "@var{width_type}"
3297
3298 @item width, w
3299 Change highpass width.
3300 Syntax for the command is : "@var{width}"
3301 @end table
3302
3303 @section join
3304
3305 Join multiple input streams into one multi-channel stream.
3306
3307 It accepts the following parameters:
3308 @table @option
3309
3310 @item inputs
3311 The number of input streams. It defaults to 2.
3312
3313 @item channel_layout
3314 The desired output channel layout. It defaults to stereo.
3315
3316 @item map
3317 Map channels from inputs to output. The argument is a '|'-separated list of
3318 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
3319 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
3320 can be either the name of the input channel (e.g. FL for front left) or its
3321 index in the specified input stream. @var{out_channel} is the name of the output
3322 channel.
3323 @end table
3324
3325 The filter will attempt to guess the mappings when they are not specified
3326 explicitly. It does so by first trying to find an unused matching input channel
3327 and if that fails it picks the first unused input channel.
3328
3329 Join 3 inputs (with properly set channel layouts):
3330 @example
3331 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3332 @end example
3333
3334 Build a 5.1 output from 6 single-channel streams:
3335 @example
3336 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3337 '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'
3338 out
3339 @end example
3340
3341 @section ladspa
3342
3343 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3344
3345 To enable compilation of this filter you need to configure FFmpeg with
3346 @code{--enable-ladspa}.
3347
3348 @table @option
3349 @item file, f
3350 Specifies the name of LADSPA plugin library to load. If the environment
3351 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3352 each one of the directories specified by the colon separated list in
3353 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3354 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3355 @file{/usr/lib/ladspa/}.
3356
3357 @item plugin, p
3358 Specifies the plugin within the library. Some libraries contain only
3359 one plugin, but others contain many of them. If this is not set filter
3360 will list all available plugins within the specified library.
3361
3362 @item controls, c
3363 Set the '|' separated list of controls which are zero or more floating point
3364 values that determine the behavior of the loaded plugin (for example delay,
3365 threshold or gain).
3366 Controls need to be defined using the following syntax:
3367 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3368 @var{valuei} is the value set on the @var{i}-th control.
3369 Alternatively they can be also defined using the following syntax:
3370 @var{value0}|@var{value1}|@var{value2}|..., where
3371 @var{valuei} is the value set on the @var{i}-th control.
3372 If @option{controls} is set to @code{help}, all available controls and
3373 their valid ranges are printed.
3374
3375 @item sample_rate, s
3376 Specify the sample rate, default to 44100. Only used if plugin have
3377 zero inputs.
3378
3379 @item nb_samples, n
3380 Set the number of samples per channel per each output frame, default
3381 is 1024. Only used if plugin have zero inputs.
3382
3383 @item duration, d
3384 Set the minimum duration of the sourced audio. See
3385 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3386 for the accepted syntax.
3387 Note that the resulting duration may be greater than the specified duration,
3388 as the generated audio is always cut at the end of a complete frame.
3389 If not specified, or the expressed duration is negative, the audio is
3390 supposed to be generated forever.
3391 Only used if plugin have zero inputs.
3392
3393 @end table
3394
3395 @subsection Examples
3396
3397 @itemize
3398 @item
3399 List all available plugins within amp (LADSPA example plugin) library:
3400 @example
3401 ladspa=file=amp
3402 @end example
3403
3404 @item
3405 List all available controls and their valid ranges for @code{vcf_notch}
3406 plugin from @code{VCF} library:
3407 @example
3408 ladspa=f=vcf:p=vcf_notch:c=help
3409 @end example
3410
3411 @item
3412 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3413 plugin library:
3414 @example
3415 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3416 @end example
3417
3418 @item
3419 Add reverberation to the audio using TAP-plugins
3420 (Tom's Audio Processing plugins):
3421 @example
3422 ladspa=file=tap_reverb:tap_reverb
3423 @end example
3424
3425 @item
3426 Generate white noise, with 0.2 amplitude:
3427 @example
3428 ladspa=file=cmt:noise_source_white:c=c0=.2
3429 @end example
3430
3431 @item
3432 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3433 @code{C* Audio Plugin Suite} (CAPS) library:
3434 @example
3435 ladspa=file=caps:Click:c=c1=20'
3436 @end example
3437
3438 @item
3439 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3440 @example
3441 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3442 @end example
3443
3444 @item
3445 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3446 @code{SWH Plugins} collection:
3447 @example
3448 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3449 @end example
3450
3451 @item
3452 Attenuate low frequencies using Multiband EQ from Steve Harris
3453 @code{SWH Plugins} collection:
3454 @example
3455 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3456 @end example
3457
3458 @item
3459 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3460 (CAPS) library:
3461 @example
3462 ladspa=caps:Narrower
3463 @end example
3464
3465 @item
3466 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3467 @example
3468 ladspa=caps:White:.2
3469 @end example
3470
3471 @item
3472 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3473 @example
3474 ladspa=caps:Fractal:c=c1=1
3475 @end example
3476
3477 @item
3478 Dynamic volume normalization using @code{VLevel} plugin:
3479 @example
3480 ladspa=vlevel-ladspa:vlevel_mono
3481 @end example
3482 @end itemize
3483
3484 @subsection Commands
3485
3486 This filter supports the following commands:
3487 @table @option
3488 @item cN
3489 Modify the @var{N}-th control value.
3490
3491 If the specified value is not valid, it is ignored and prior one is kept.
3492 @end table
3493
3494 @section loudnorm
3495
3496 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
3497 Support for both single pass (livestreams, files) and double pass (files) modes.
3498 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
3499 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
3500 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
3501
3502 The filter accepts the following options:
3503
3504 @table @option
3505 @item I, i
3506 Set integrated loudness target.
3507 Range is -70.0 - -5.0. Default value is -24.0.
3508
3509 @item LRA, lra
3510 Set loudness range target.
3511 Range is 1.0 - 20.0. Default value is 7.0.
3512
3513 @item TP, tp
3514 Set maximum true peak.
3515 Range is -9.0 - +0.0. Default value is -2.0.
3516
3517 @item measured_I, measured_i
3518 Measured IL of input file.
3519 Range is -99.0 - +0.0.
3520
3521 @item measured_LRA, measured_lra
3522 Measured LRA of input file.
3523 Range is  0.0 - 99.0.
3524
3525 @item measured_TP, measured_tp
3526 Measured true peak of input file.
3527 Range is  -99.0 - +99.0.
3528
3529 @item measured_thresh
3530 Measured threshold of input file.
3531 Range is -99.0 - +0.0.
3532
3533 @item offset
3534 Set offset gain. Gain is applied before the true-peak limiter.
3535 Range is  -99.0 - +99.0. Default is +0.0.
3536
3537 @item linear
3538 Normalize linearly if possible.
3539 measured_I, measured_LRA, measured_TP, and measured_thresh must also
3540 to be specified in order to use this mode.
3541 Options are true or false. Default is true.
3542
3543 @item dual_mono
3544 Treat mono input files as "dual-mono". If a mono file is intended for playback
3545 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
3546 If set to @code{true}, this option will compensate for this effect.
3547 Multi-channel input files are not affected by this option.
3548 Options are true or false. Default is false.
3549
3550 @item print_format
3551 Set print format for stats. Options are summary, json, or none.
3552 Default value is none.
3553 @end table
3554
3555 @section lowpass
3556
3557 Apply a low-pass filter with 3dB point frequency.
3558 The filter can be either single-pole or double-pole (the default).
3559 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3560
3561 The filter accepts the following options:
3562
3563 @table @option
3564 @item frequency, f
3565 Set frequency in Hz. Default is 500.
3566
3567 @item poles, p
3568 Set number of poles. Default is 2.
3569
3570 @item width_type, t
3571 Set method to specify band-width of filter.
3572 @table @option
3573 @item h
3574 Hz
3575 @item q
3576 Q-Factor
3577 @item o
3578 octave
3579 @item s
3580 slope
3581 @item k
3582 kHz
3583 @end table
3584
3585 @item width, w
3586 Specify the band-width of a filter in width_type units.
3587 Applies only to double-pole filter.
3588 The default is 0.707q and gives a Butterworth response.
3589
3590 @item channels, c
3591 Specify which channels to filter, by default all available are filtered.
3592 @end table
3593
3594 @subsection Examples
3595 @itemize
3596 @item
3597 Lowpass only LFE channel, it LFE is not present it does nothing:
3598 @example
3599 lowpass=c=LFE
3600 @end example
3601 @end itemize
3602
3603 @subsection Commands
3604
3605 This filter supports the following commands:
3606 @table @option
3607 @item frequency, f
3608 Change lowpass frequency.
3609 Syntax for the command is : "@var{frequency}"
3610
3611 @item width_type, t
3612 Change lowpass width_type.
3613 Syntax for the command is : "@var{width_type}"
3614
3615 @item width, w
3616 Change lowpass width.
3617 Syntax for the command is : "@var{width}"
3618 @end table
3619
3620 @section lv2
3621
3622 Load a LV2 (LADSPA Version 2) plugin.
3623
3624 To enable compilation of this filter you need to configure FFmpeg with
3625 @code{--enable-lv2}.
3626
3627 @table @option
3628 @item plugin, p
3629 Specifies the plugin URI. You may need to escape ':'.
3630
3631 @item controls, c
3632 Set the '|' separated list of controls which are zero or more floating point
3633 values that determine the behavior of the loaded plugin (for example delay,
3634 threshold or gain).
3635 If @option{controls} is set to @code{help}, all available controls and
3636 their valid ranges are printed.
3637
3638 @item sample_rate, s
3639 Specify the sample rate, default to 44100. Only used if plugin have
3640 zero inputs.
3641
3642 @item nb_samples, n
3643 Set the number of samples per channel per each output frame, default
3644 is 1024. Only used if plugin have zero inputs.
3645
3646 @item duration, d
3647 Set the minimum duration of the sourced audio. See
3648 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3649 for the accepted syntax.
3650 Note that the resulting duration may be greater than the specified duration,
3651 as the generated audio is always cut at the end of a complete frame.
3652 If not specified, or the expressed duration is negative, the audio is
3653 supposed to be generated forever.
3654 Only used if plugin have zero inputs.
3655 @end table
3656
3657 @subsection Examples
3658
3659 @itemize
3660 @item
3661 Apply bass enhancer plugin from Calf:
3662 @example
3663 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
3664 @end example
3665
3666 @item
3667 Apply vinyl plugin from Calf:
3668 @example
3669 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
3670 @end example
3671
3672 @item
3673 Apply bit crusher plugin from ArtyFX:
3674 @example
3675 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
3676 @end example
3677 @end itemize
3678
3679 @section mcompand
3680 Multiband Compress or expand the audio's dynamic range.
3681
3682 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
3683 This is akin to the crossover of a loudspeaker, and results in flat frequency
3684 response when absent compander action.
3685
3686 It accepts the following parameters:
3687
3688 @table @option
3689 @item args
3690 This option syntax is:
3691 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
3692 For explanation of each item refer to compand filter documentation.
3693 @end table
3694
3695 @anchor{pan}
3696 @section pan
3697
3698 Mix channels with specific gain levels. The filter accepts the output
3699 channel layout followed by a set of channels definitions.
3700
3701 This filter is also designed to efficiently remap the channels of an audio
3702 stream.
3703
3704 The filter accepts parameters of the form:
3705 "@var{l}|@var{outdef}|@var{outdef}|..."
3706
3707 @table @option
3708 @item l
3709 output channel layout or number of channels
3710
3711 @item outdef
3712 output channel specification, of the form:
3713 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
3714
3715 @item out_name
3716 output channel to define, either a channel name (FL, FR, etc.) or a channel
3717 number (c0, c1, etc.)
3718
3719 @item gain
3720 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3721
3722 @item in_name
3723 input channel to use, see out_name for details; it is not possible to mix
3724 named and numbered input channels
3725 @end table
3726
3727 If the `=' in a channel specification is replaced by `<', then the gains for
3728 that specification will be renormalized so that the total is 1, thus
3729 avoiding clipping noise.
3730
3731 @subsection Mixing examples
3732
3733 For example, if you want to down-mix from stereo to mono, but with a bigger
3734 factor for the left channel:
3735 @example
3736 pan=1c|c0=0.9*c0+0.1*c1
3737 @end example
3738
3739 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3740 7-channels surround:
3741 @example
3742 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3743 @end example
3744
3745 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3746 that should be preferred (see "-ac" option) unless you have very specific
3747 needs.
3748
3749 @subsection Remapping examples
3750
3751 The channel remapping will be effective if, and only if:
3752
3753 @itemize
3754 @item gain coefficients are zeroes or ones,
3755 @item only one input per channel output,
3756 @end itemize
3757
3758 If all these conditions are satisfied, the filter will notify the user ("Pure
3759 channel mapping detected"), and use an optimized and lossless method to do the
3760 remapping.
3761
3762 For example, if you have a 5.1 source and want a stereo audio stream by
3763 dropping the extra channels:
3764 @example
3765 pan="stereo| c0=FL | c1=FR"
3766 @end example
3767
3768 Given the same source, you can also switch front left and front right channels
3769 and keep the input channel layout:
3770 @example
3771 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3772 @end example
3773
3774 If the input is a stereo audio stream, you can mute the front left channel (and
3775 still keep the stereo channel layout) with:
3776 @example
3777 pan="stereo|c1=c1"
3778 @end example
3779
3780 Still with a stereo audio stream input, you can copy the right channel in both
3781 front left and right:
3782 @example
3783 pan="stereo| c0=FR | c1=FR"
3784 @end example
3785
3786 @section replaygain
3787
3788 ReplayGain scanner filter. This filter takes an audio stream as an input and
3789 outputs it unchanged.
3790 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3791
3792 @section resample
3793
3794 Convert the audio sample format, sample rate and channel layout. It is
3795 not meant to be used directly.
3796
3797 @section rubberband
3798 Apply time-stretching and pitch-shifting with librubberband.
3799
3800 The filter accepts the following options:
3801
3802 @table @option
3803 @item tempo
3804 Set tempo scale factor.
3805
3806 @item pitch
3807 Set pitch scale factor.
3808
3809 @item transients
3810 Set transients detector.
3811 Possible values are:
3812 @table @var
3813 @item crisp
3814 @item mixed
3815 @item smooth
3816 @end table
3817
3818 @item detector
3819 Set detector.
3820 Possible values are:
3821 @table @var
3822 @item compound
3823 @item percussive
3824 @item soft
3825 @end table
3826
3827 @item phase
3828 Set phase.
3829 Possible values are:
3830 @table @var
3831 @item laminar
3832 @item independent
3833 @end table
3834
3835 @item window
3836 Set processing window size.
3837 Possible values are:
3838 @table @var
3839 @item standard
3840 @item short
3841 @item long
3842 @end table
3843
3844 @item smoothing
3845 Set smoothing.
3846 Possible values are:
3847 @table @var
3848 @item off
3849 @item on
3850 @end table
3851
3852 @item formant
3853 Enable formant preservation when shift pitching.
3854 Possible values are:
3855 @table @var
3856 @item shifted
3857 @item preserved
3858 @end table
3859
3860 @item pitchq
3861 Set pitch quality.
3862 Possible values are:
3863 @table @var
3864 @item quality
3865 @item speed
3866 @item consistency
3867 @end table
3868
3869 @item channels
3870 Set channels.
3871 Possible values are:
3872 @table @var
3873 @item apart
3874 @item together
3875 @end table
3876 @end table
3877
3878 @section sidechaincompress
3879
3880 This filter acts like normal compressor but has the ability to compress
3881 detected signal using second input signal.
3882 It needs two input streams and returns one output stream.
3883 First input stream will be processed depending on second stream signal.
3884 The filtered signal then can be filtered with other filters in later stages of
3885 processing. See @ref{pan} and @ref{amerge} filter.
3886
3887 The filter accepts the following options:
3888
3889 @table @option
3890 @item level_in
3891 Set input gain. Default is 1. Range is between 0.015625 and 64.
3892
3893 @item threshold
3894 If a signal of second stream raises above this level it will affect the gain
3895 reduction of first stream.
3896 By default is 0.125. Range is between 0.00097563 and 1.
3897
3898 @item ratio
3899 Set a ratio about which the signal is reduced. 1:2 means that if the level
3900 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3901 Default is 2. Range is between 1 and 20.
3902
3903 @item attack
3904 Amount of milliseconds the signal has to rise above the threshold before gain
3905 reduction starts. Default is 20. Range is between 0.01 and 2000.
3906
3907 @item release
3908 Amount of milliseconds the signal has to fall below the threshold before
3909 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3910
3911 @item makeup
3912 Set the amount by how much signal will be amplified after processing.
3913 Default is 1. Range is from 1 to 64.
3914
3915 @item knee
3916 Curve the sharp knee around the threshold to enter gain reduction more softly.
3917 Default is 2.82843. Range is between 1 and 8.
3918
3919 @item link
3920 Choose if the @code{average} level between all channels of side-chain stream
3921 or the louder(@code{maximum}) channel of side-chain stream affects the
3922 reduction. Default is @code{average}.
3923
3924 @item detection
3925 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3926 of @code{rms}. Default is @code{rms} which is mainly smoother.
3927
3928 @item level_sc
3929 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3930
3931 @item mix
3932 How much to use compressed signal in output. Default is 1.
3933 Range is between 0 and 1.
3934 @end table
3935
3936 @subsection Examples
3937
3938 @itemize
3939 @item
3940 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3941 depending on the signal of 2nd input and later compressed signal to be
3942 merged with 2nd input:
3943 @example
3944 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3945 @end example
3946 @end itemize
3947
3948 @section sidechaingate
3949
3950 A sidechain gate acts like a normal (wideband) gate but has the ability to
3951 filter the detected signal before sending it to the gain reduction stage.
3952 Normally a gate uses the full range signal to detect a level above the
3953 threshold.
3954 For example: If you cut all lower frequencies from your sidechain signal
3955 the gate will decrease the volume of your track only if not enough highs
3956 appear. With this technique you are able to reduce the resonation of a
3957 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3958 guitar.
3959 It needs two input streams and returns one output stream.
3960 First input stream will be processed depending on second stream signal.
3961
3962 The filter accepts the following options:
3963
3964 @table @option
3965 @item level_in
3966 Set input level before filtering.
3967 Default is 1. Allowed range is from 0.015625 to 64.
3968
3969 @item range
3970 Set the level of gain reduction when the signal is below the threshold.
3971 Default is 0.06125. Allowed range is from 0 to 1.
3972
3973 @item threshold
3974 If a signal rises above this level the gain reduction is released.
3975 Default is 0.125. Allowed range is from 0 to 1.
3976
3977 @item ratio
3978 Set a ratio about which the signal is reduced.
3979 Default is 2. Allowed range is from 1 to 9000.
3980
3981 @item attack
3982 Amount of milliseconds the signal has to rise above the threshold before gain
3983 reduction stops.
3984 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3985
3986 @item release
3987 Amount of milliseconds the signal has to fall below the threshold before the
3988 reduction is increased again. Default is 250 milliseconds.
3989 Allowed range is from 0.01 to 9000.
3990
3991 @item makeup
3992 Set amount of amplification of signal after processing.
3993 Default is 1. Allowed range is from 1 to 64.
3994
3995 @item knee
3996 Curve the sharp knee around the threshold to enter gain reduction more softly.
3997 Default is 2.828427125. Allowed range is from 1 to 8.
3998
3999 @item detection
4000 Choose if exact signal should be taken for detection or an RMS like one.
4001 Default is rms. Can be peak or rms.
4002
4003 @item link
4004 Choose if the average level between all channels or the louder channel affects
4005 the reduction.
4006 Default is average. Can be average or maximum.
4007
4008 @item level_sc
4009 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4010 @end table
4011
4012 @section silencedetect
4013
4014 Detect silence in an audio stream.
4015
4016 This filter logs a message when it detects that the input audio volume is less
4017 or equal to a noise tolerance value for a duration greater or equal to the
4018 minimum detected noise duration.
4019
4020 The printed times and duration are expressed in seconds.
4021
4022 The filter accepts the following options:
4023
4024 @table @option
4025 @item duration, d
4026 Set silence duration until notification (default is 2 seconds).
4027
4028 @item noise, n
4029 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4030 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4031 @end table
4032
4033 @subsection Examples
4034
4035 @itemize
4036 @item
4037 Detect 5 seconds of silence with -50dB noise tolerance:
4038 @example
4039 silencedetect=n=-50dB:d=5
4040 @end example
4041
4042 @item
4043 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4044 tolerance in @file{silence.mp3}:
4045 @example
4046 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4047 @end example
4048 @end itemize
4049
4050 @section silenceremove
4051
4052 Remove silence from the beginning, middle or end of the audio.
4053
4054 The filter accepts the following options:
4055
4056 @table @option
4057 @item start_periods
4058 This value is used to indicate if audio should be trimmed at beginning of
4059 the audio. A value of zero indicates no silence should be trimmed from the
4060 beginning. When specifying a non-zero value, it trims audio up until it
4061 finds non-silence. Normally, when trimming silence from beginning of audio
4062 the @var{start_periods} will be @code{1} but it can be increased to higher
4063 values to trim all audio up to specific count of non-silence periods.
4064 Default value is @code{0}.
4065
4066 @item start_duration
4067 Specify the amount of time that non-silence must be detected before it stops
4068 trimming audio. By increasing the duration, bursts of noises can be treated
4069 as silence and trimmed off. Default value is @code{0}.
4070
4071 @item start_threshold
4072 This indicates what sample value should be treated as silence. For digital
4073 audio, a value of @code{0} may be fine but for audio recorded from analog,
4074 you may wish to increase the value to account for background noise.
4075 Can be specified in dB (in case "dB" is appended to the specified value)
4076 or amplitude ratio. Default value is @code{0}.
4077
4078 @item stop_periods
4079 Set the count for trimming silence from the end of audio.
4080 To remove silence from the middle of a file, specify a @var{stop_periods}
4081 that is negative. This value is then treated as a positive value and is
4082 used to indicate the effect should restart processing as specified by
4083 @var{start_periods}, making it suitable for removing periods of silence
4084 in the middle of the audio.
4085 Default value is @code{0}.
4086
4087 @item stop_duration
4088 Specify a duration of silence that must exist before audio is not copied any
4089 more. By specifying a higher duration, silence that is wanted can be left in
4090 the audio.
4091 Default value is @code{0}.
4092
4093 @item stop_threshold
4094 This is the same as @option{start_threshold} but for trimming silence from
4095 the end of audio.
4096 Can be specified in dB (in case "dB" is appended to the specified value)
4097 or amplitude ratio. Default value is @code{0}.
4098
4099 @item leave_silence
4100 This indicates that @var{stop_duration} length of audio should be left intact
4101 at the beginning of each period of silence.
4102 For example, if you want to remove long pauses between words but do not want
4103 to remove the pauses completely. Default value is @code{0}.
4104
4105 @item detection
4106 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4107 and works better with digital silence which is exactly 0.
4108 Default value is @code{rms}.
4109
4110 @item window
4111 Set ratio used to calculate size of window for detecting silence.
4112 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4113 @end table
4114
4115 @subsection Examples
4116
4117 @itemize
4118 @item
4119 The following example shows how this filter can be used to start a recording
4120 that does not contain the delay at the start which usually occurs between
4121 pressing the record button and the start of the performance:
4122 @example
4123 silenceremove=1:5:0.02
4124 @end example
4125
4126 @item
4127 Trim all silence encountered from beginning to end where there is more than 1
4128 second of silence in audio:
4129 @example
4130 silenceremove=0:0:0:-1:1:-90dB
4131 @end example
4132 @end itemize
4133
4134 @section sofalizer
4135
4136 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4137 loudspeakers around the user for binaural listening via headphones (audio
4138 formats up to 9 channels supported).
4139 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4140 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4141 Austrian Academy of Sciences.
4142
4143 To enable compilation of this filter you need to configure FFmpeg with
4144 @code{--enable-libmysofa}.
4145
4146 The filter accepts the following options:
4147
4148 @table @option
4149 @item sofa
4150 Set the SOFA file used for rendering.
4151
4152 @item gain
4153 Set gain applied to audio. Value is in dB. Default is 0.
4154
4155 @item rotation
4156 Set rotation of virtual loudspeakers in deg. Default is 0.
4157
4158 @item elevation
4159 Set elevation of virtual speakers in deg. Default is 0.
4160
4161 @item radius
4162 Set distance in meters between loudspeakers and the listener with near-field
4163 HRTFs. Default is 1.
4164
4165 @item type
4166 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4167 processing audio in time domain which is slow.
4168 @var{freq} is processing audio in frequency domain which is fast.
4169 Default is @var{freq}.
4170
4171 @item speakers
4172 Set custom positions of virtual loudspeakers. Syntax for this option is:
4173 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4174 Each virtual loudspeaker is described with short channel name following with
4175 azimuth and elevation in degrees.
4176 Each virtual loudspeaker description is separated by '|'.
4177 For example to override front left and front right channel positions use:
4178 'speakers=FL 45 15|FR 345 15'.
4179 Descriptions with unrecognised channel names are ignored.
4180
4181 @item lfegain
4182 Set custom gain for LFE channels. Value is in dB. Default is 0.
4183 @end table
4184
4185 @subsection Examples
4186
4187 @itemize
4188 @item
4189 Using ClubFritz6 sofa file:
4190 @example
4191 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
4192 @end example
4193
4194 @item
4195 Using ClubFritz12 sofa file and bigger radius with small rotation:
4196 @example
4197 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
4198 @end example
4199
4200 @item
4201 Similar as above but with custom speaker positions for front left, front right, back left and back right
4202 and also with custom gain:
4203 @example
4204 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
4205 @end example
4206 @end itemize
4207
4208 @section stereotools
4209
4210 This filter has some handy utilities to manage stereo signals, for converting
4211 M/S stereo recordings to L/R signal while having control over the parameters
4212 or spreading the stereo image of master track.
4213
4214 The filter accepts the following options:
4215
4216 @table @option
4217 @item level_in
4218 Set input level before filtering for both channels. Defaults is 1.
4219 Allowed range is from 0.015625 to 64.
4220
4221 @item level_out
4222 Set output level after filtering for both channels. Defaults is 1.
4223 Allowed range is from 0.015625 to 64.
4224
4225 @item balance_in
4226 Set input balance between both channels. Default is 0.
4227 Allowed range is from -1 to 1.
4228
4229 @item balance_out
4230 Set output balance between both channels. Default is 0.
4231 Allowed range is from -1 to 1.
4232
4233 @item softclip
4234 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
4235 clipping. Disabled by default.
4236
4237 @item mutel
4238 Mute the left channel. Disabled by default.
4239
4240 @item muter
4241 Mute the right channel. Disabled by default.
4242
4243 @item phasel
4244 Change the phase of the left channel. Disabled by default.
4245
4246 @item phaser
4247 Change the phase of the right channel. Disabled by default.
4248
4249 @item mode
4250 Set stereo mode. Available values are:
4251
4252 @table @samp
4253 @item lr>lr
4254 Left/Right to Left/Right, this is default.
4255
4256 @item lr>ms
4257 Left/Right to Mid/Side.
4258
4259 @item ms>lr
4260 Mid/Side to Left/Right.
4261
4262 @item lr>ll
4263 Left/Right to Left/Left.
4264
4265 @item lr>rr
4266 Left/Right to Right/Right.
4267
4268 @item lr>l+r
4269 Left/Right to Left + Right.
4270
4271 @item lr>rl
4272 Left/Right to Right/Left.
4273
4274 @item ms>ll
4275 Mid/Side to Left/Left.
4276
4277 @item ms>rr
4278 Mid/Side to Right/Right.
4279 @end table
4280
4281 @item slev
4282 Set level of side signal. Default is 1.
4283 Allowed range is from 0.015625 to 64.
4284
4285 @item sbal
4286 Set balance of side signal. Default is 0.
4287 Allowed range is from -1 to 1.
4288
4289 @item mlev
4290 Set level of the middle signal. Default is 1.
4291 Allowed range is from 0.015625 to 64.
4292
4293 @item mpan
4294 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
4295
4296 @item base
4297 Set stereo base between mono and inversed channels. Default is 0.
4298 Allowed range is from -1 to 1.
4299
4300 @item delay
4301 Set delay in milliseconds how much to delay left from right channel and
4302 vice versa. Default is 0. Allowed range is from -20 to 20.
4303
4304 @item sclevel
4305 Set S/C level. Default is 1. Allowed range is from 1 to 100.
4306
4307 @item phase
4308 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
4309
4310 @item bmode_in, bmode_out
4311 Set balance mode for balance_in/balance_out option.
4312
4313 Can be one of the following:
4314
4315 @table @samp
4316 @item balance
4317 Classic balance mode. Attenuate one channel at time.
4318 Gain is raised up to 1.
4319
4320 @item amplitude
4321 Similar as classic mode above but gain is raised up to 2.
4322
4323 @item power
4324 Equal power distribution, from -6dB to +6dB range.
4325 @end table
4326 @end table
4327
4328 @subsection Examples
4329
4330 @itemize
4331 @item
4332 Apply karaoke like effect:
4333 @example
4334 stereotools=mlev=0.015625
4335 @end example
4336
4337 @item
4338 Convert M/S signal to L/R:
4339 @example
4340 "stereotools=mode=ms>lr"
4341 @end example
4342 @end itemize
4343
4344 @section stereowiden
4345
4346 This filter enhance the stereo effect by suppressing signal common to both
4347 channels and by delaying the signal of left into right and vice versa,
4348 thereby widening the stereo effect.
4349
4350 The filter accepts the following options:
4351
4352 @table @option
4353 @item delay
4354 Time in milliseconds of the delay of left signal into right and vice versa.
4355 Default is 20 milliseconds.
4356
4357 @item feedback
4358 Amount of gain in delayed signal into right and vice versa. Gives a delay
4359 effect of left signal in right output and vice versa which gives widening
4360 effect. Default is 0.3.
4361
4362 @item crossfeed
4363 Cross feed of left into right with inverted phase. This helps in suppressing
4364 the mono. If the value is 1 it will cancel all the signal common to both
4365 channels. Default is 0.3.
4366
4367 @item drymix
4368 Set level of input signal of original channel. Default is 0.8.
4369 @end table
4370
4371 @section superequalizer
4372 Apply 18 band equalizer.
4373
4374 The filter accepts the following options:
4375 @table @option
4376 @item 1b
4377 Set 65Hz band gain.
4378 @item 2b
4379 Set 92Hz band gain.
4380 @item 3b
4381 Set 131Hz band gain.
4382 @item 4b
4383 Set 185Hz band gain.
4384 @item 5b
4385 Set 262Hz band gain.
4386 @item 6b
4387 Set 370Hz band gain.
4388 @item 7b
4389 Set 523Hz band gain.
4390 @item 8b
4391 Set 740Hz band gain.
4392 @item 9b
4393 Set 1047Hz band gain.
4394 @item 10b
4395 Set 1480Hz band gain.
4396 @item 11b
4397 Set 2093Hz band gain.
4398 @item 12b
4399 Set 2960Hz band gain.
4400 @item 13b
4401 Set 4186Hz band gain.
4402 @item 14b
4403 Set 5920Hz band gain.
4404 @item 15b
4405 Set 8372Hz band gain.
4406 @item 16b
4407 Set 11840Hz band gain.
4408 @item 17b
4409 Set 16744Hz band gain.
4410 @item 18b
4411 Set 20000Hz band gain.
4412 @end table
4413
4414 @section surround
4415 Apply audio surround upmix filter.
4416
4417 This filter allows to produce multichannel output from audio stream.
4418
4419 The filter accepts the following options:
4420
4421 @table @option
4422 @item chl_out
4423 Set output channel layout. By default, this is @var{5.1}.
4424
4425 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4426 for the required syntax.
4427
4428 @item chl_in
4429 Set input channel layout. By default, this is @var{stereo}.
4430
4431 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4432 for the required syntax.
4433
4434 @item level_in
4435 Set input volume level. By default, this is @var{1}.
4436
4437 @item level_out
4438 Set output volume level. By default, this is @var{1}.
4439
4440 @item lfe
4441 Enable LFE channel output if output channel layout has it. By default, this is enabled.
4442
4443 @item lfe_low
4444 Set LFE low cut off frequency. By default, this is @var{128} Hz.
4445
4446 @item lfe_high
4447 Set LFE high cut off frequency. By default, this is @var{256} Hz.
4448
4449 @item fc_in
4450 Set front center input volume. By default, this is @var{1}.
4451
4452 @item fc_out
4453 Set front center output volume. By default, this is @var{1}.
4454
4455 @item lfe_in
4456 Set LFE input volume. By default, this is @var{1}.
4457
4458 @item lfe_out
4459 Set LFE output volume. By default, this is @var{1}.
4460 @end table
4461
4462 @section treble, highshelf
4463
4464 Boost or cut treble (upper) frequencies of the audio using a two-pole
4465 shelving filter with a response similar to that of a standard
4466 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
4467
4468 The filter accepts the following options:
4469
4470 @table @option
4471 @item gain, g
4472 Give the gain at whichever is the lower of ~22 kHz and the
4473 Nyquist frequency. Its useful range is about -20 (for a large cut)
4474 to +20 (for a large boost). Beware of clipping when using a positive gain.
4475
4476 @item frequency, f
4477 Set the filter's central frequency and so can be used
4478 to extend or reduce the frequency range to be boosted or cut.
4479 The default value is @code{3000} Hz.
4480
4481 @item width_type, t
4482 Set method to specify band-width of filter.
4483 @table @option
4484 @item h
4485 Hz
4486 @item q
4487 Q-Factor
4488 @item o
4489 octave
4490 @item s
4491 slope
4492 @item k
4493 kHz
4494 @end table
4495
4496 @item width, w
4497 Determine how steep is the filter's shelf transition.
4498
4499 @item channels, c
4500 Specify which channels to filter, by default all available are filtered.
4501 @end table
4502
4503 @subsection Commands
4504
4505 This filter supports the following commands:
4506 @table @option
4507 @item frequency, f
4508 Change treble frequency.
4509 Syntax for the command is : "@var{frequency}"
4510
4511 @item width_type, t
4512 Change treble width_type.
4513 Syntax for the command is : "@var{width_type}"
4514
4515 @item width, w
4516 Change treble width.
4517 Syntax for the command is : "@var{width}"
4518
4519 @item gain, g
4520 Change treble gain.
4521 Syntax for the command is : "@var{gain}"
4522 @end table
4523
4524 @section tremolo
4525
4526 Sinusoidal amplitude modulation.
4527
4528 The filter accepts the following options:
4529
4530 @table @option
4531 @item f
4532 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
4533 (20 Hz or lower) will result in a tremolo effect.
4534 This filter may also be used as a ring modulator by specifying
4535 a modulation frequency higher than 20 Hz.
4536 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4537
4538 @item d
4539 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4540 Default value is 0.5.
4541 @end table
4542
4543 @section vibrato
4544
4545 Sinusoidal phase modulation.
4546
4547 The filter accepts the following options:
4548
4549 @table @option
4550 @item f
4551 Modulation frequency in Hertz.
4552 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4553
4554 @item d
4555 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4556 Default value is 0.5.
4557 @end table
4558
4559 @section volume
4560
4561 Adjust the input audio volume.
4562
4563 It accepts the following parameters:
4564 @table @option
4565
4566 @item volume
4567 Set audio volume expression.
4568
4569 Output values are clipped to the maximum value.
4570
4571 The output audio volume is given by the relation:
4572 @example
4573 @var{output_volume} = @var{volume} * @var{input_volume}
4574 @end example
4575
4576 The default value for @var{volume} is "1.0".
4577
4578 @item precision
4579 This parameter represents the mathematical precision.
4580
4581 It determines which input sample formats will be allowed, which affects the
4582 precision of the volume scaling.
4583
4584 @table @option
4585 @item fixed
4586 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
4587 @item float
4588 32-bit floating-point; this limits input sample format to FLT. (default)
4589 @item double
4590 64-bit floating-point; this limits input sample format to DBL.
4591 @end table
4592
4593 @item replaygain
4594 Choose the behaviour on encountering ReplayGain side data in input frames.
4595
4596 @table @option
4597 @item drop
4598 Remove ReplayGain side data, ignoring its contents (the default).
4599
4600 @item ignore
4601 Ignore ReplayGain side data, but leave it in the frame.
4602
4603 @item track
4604 Prefer the track gain, if present.
4605
4606 @item album
4607 Prefer the album gain, if present.
4608 @end table
4609
4610 @item replaygain_preamp
4611 Pre-amplification gain in dB to apply to the selected replaygain gain.
4612
4613 Default value for @var{replaygain_preamp} is 0.0.
4614
4615 @item eval
4616 Set when the volume expression is evaluated.
4617
4618 It accepts the following values:
4619 @table @samp
4620 @item once
4621 only evaluate expression once during the filter initialization, or
4622 when the @samp{volume} command is sent
4623
4624 @item frame
4625 evaluate expression for each incoming frame
4626 @end table
4627
4628 Default value is @samp{once}.
4629 @end table
4630
4631 The volume expression can contain the following parameters.
4632
4633 @table @option
4634 @item n
4635 frame number (starting at zero)
4636 @item nb_channels
4637 number of channels
4638 @item nb_consumed_samples
4639 number of samples consumed by the filter
4640 @item nb_samples
4641 number of samples in the current frame
4642 @item pos
4643 original frame position in the file
4644 @item pts
4645 frame PTS
4646 @item sample_rate
4647 sample rate
4648 @item startpts
4649 PTS at start of stream
4650 @item startt
4651 time at start of stream
4652 @item t
4653 frame time
4654 @item tb
4655 timestamp timebase
4656 @item volume
4657 last set volume value
4658 @end table
4659
4660 Note that when @option{eval} is set to @samp{once} only the
4661 @var{sample_rate} and @var{tb} variables are available, all other
4662 variables will evaluate to NAN.
4663
4664 @subsection Commands
4665
4666 This filter supports the following commands:
4667 @table @option
4668 @item volume
4669 Modify the volume expression.
4670 The command accepts the same syntax of the corresponding option.
4671
4672 If the specified expression is not valid, it is kept at its current
4673 value.
4674 @item replaygain_noclip
4675 Prevent clipping by limiting the gain applied.
4676
4677 Default value for @var{replaygain_noclip} is 1.
4678
4679 @end table
4680
4681 @subsection Examples
4682
4683 @itemize
4684 @item
4685 Halve the input audio volume:
4686 @example
4687 volume=volume=0.5
4688 volume=volume=1/2
4689 volume=volume=-6.0206dB
4690 @end example
4691
4692 In all the above example the named key for @option{volume} can be
4693 omitted, for example like in:
4694 @example
4695 volume=0.5
4696 @end example
4697
4698 @item
4699 Increase input audio power by 6 decibels using fixed-point precision:
4700 @example
4701 volume=volume=6dB:precision=fixed
4702 @end example
4703
4704 @item
4705 Fade volume after time 10 with an annihilation period of 5 seconds:
4706 @example
4707 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
4708 @end example
4709 @end itemize
4710
4711 @section volumedetect
4712
4713 Detect the volume of the input video.
4714
4715 The filter has no parameters. The input is not modified. Statistics about
4716 the volume will be printed in the log when the input stream end is reached.
4717
4718 In particular it will show the mean volume (root mean square), maximum
4719 volume (on a per-sample basis), and the beginning of a histogram of the
4720 registered volume values (from the maximum value to a cumulated 1/1000 of
4721 the samples).
4722
4723 All volumes are in decibels relative to the maximum PCM value.
4724
4725 @subsection Examples
4726
4727 Here is an excerpt of the output:
4728 @example
4729 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
4730 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
4731 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
4732 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
4733 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
4734 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
4735 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
4736 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
4737 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
4738 @end example
4739
4740 It means that:
4741 @itemize
4742 @item
4743 The mean square energy is approximately -27 dB, or 10^-2.7.
4744 @item
4745 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
4746 @item
4747 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
4748 @end itemize
4749
4750 In other words, raising the volume by +4 dB does not cause any clipping,
4751 raising it by +5 dB causes clipping for 6 samples, etc.
4752
4753 @c man end AUDIO FILTERS
4754
4755 @chapter Audio Sources
4756 @c man begin AUDIO SOURCES
4757
4758 Below is a description of the currently available audio sources.
4759
4760 @section abuffer
4761
4762 Buffer audio frames, and make them available to the filter chain.
4763
4764 This source is mainly intended for a programmatic use, in particular
4765 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
4766
4767 It accepts the following parameters:
4768 @table @option
4769
4770 @item time_base
4771 The timebase which will be used for timestamps of submitted frames. It must be
4772 either a floating-point number or in @var{numerator}/@var{denominator} form.
4773
4774 @item sample_rate
4775 The sample rate of the incoming audio buffers.
4776
4777 @item sample_fmt
4778 The sample format of the incoming audio buffers.
4779 Either a sample format name or its corresponding integer representation from
4780 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
4781
4782 @item channel_layout
4783 The channel layout of the incoming audio buffers.
4784 Either a channel layout name from channel_layout_map in
4785 @file{libavutil/channel_layout.c} or its corresponding integer representation
4786 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
4787
4788 @item channels
4789 The number of channels of the incoming audio buffers.
4790 If both @var{channels} and @var{channel_layout} are specified, then they
4791 must be consistent.
4792
4793 @end table
4794
4795 @subsection Examples
4796
4797 @example
4798 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
4799 @end example
4800
4801 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
4802 Since the sample format with name "s16p" corresponds to the number
4803 6 and the "stereo" channel layout corresponds to the value 0x3, this is
4804 equivalent to:
4805 @example
4806 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
4807 @end example
4808
4809 @section aevalsrc
4810
4811 Generate an audio signal specified by an expression.
4812
4813 This source accepts in input one or more expressions (one for each
4814 channel), which are evaluated and used to generate a corresponding
4815 audio signal.
4816
4817 This source accepts the following options:
4818
4819 @table @option
4820 @item exprs
4821 Set the '|'-separated expressions list for each separate channel. In case the
4822 @option{channel_layout} option is not specified, the selected channel layout
4823 depends on the number of provided expressions. Otherwise the last
4824 specified expression is applied to the remaining output channels.
4825
4826 @item channel_layout, c
4827 Set the channel layout. The number of channels in the specified layout
4828 must be equal to the number of specified expressions.
4829
4830 @item duration, d
4831 Set the minimum duration of the sourced audio. See
4832 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4833 for the accepted syntax.
4834 Note that the resulting duration may be greater than the specified
4835 duration, as the generated audio is always cut at the end of a
4836 complete frame.
4837
4838 If not specified, or the expressed duration is negative, the audio is
4839 supposed to be generated forever.
4840
4841 @item nb_samples, n
4842 Set the number of samples per channel per each output frame,
4843 default to 1024.
4844
4845 @item sample_rate, s
4846 Specify the sample rate, default to 44100.
4847 @end table
4848
4849 Each expression in @var{exprs} can contain the following constants:
4850
4851 @table @option
4852 @item n
4853 number of the evaluated sample, starting from 0
4854
4855 @item t
4856 time of the evaluated sample expressed in seconds, starting from 0
4857
4858 @item s
4859 sample rate
4860
4861 @end table
4862
4863 @subsection Examples
4864
4865 @itemize
4866 @item
4867 Generate silence:
4868 @example
4869 aevalsrc=0
4870 @end example
4871
4872 @item
4873 Generate a sin signal with frequency of 440 Hz, set sample rate to
4874 8000 Hz:
4875 @example
4876 aevalsrc="sin(440*2*PI*t):s=8000"
4877 @end example
4878
4879 @item
4880 Generate a two channels signal, specify the channel layout (Front
4881 Center + Back Center) explicitly:
4882 @example
4883 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4884 @end example
4885
4886 @item
4887 Generate white noise:
4888 @example
4889 aevalsrc="-2+random(0)"
4890 @end example
4891
4892 @item
4893 Generate an amplitude modulated signal:
4894 @example
4895 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4896 @end example
4897
4898 @item
4899 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4900 @example
4901 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4902 @end example
4903
4904 @end itemize
4905
4906 @section anullsrc
4907
4908 The null audio source, return unprocessed audio frames. It is mainly useful
4909 as a template and to be employed in analysis / debugging tools, or as
4910 the source for filters which ignore the input data (for example the sox
4911 synth filter).
4912
4913 This source accepts the following options:
4914
4915 @table @option
4916
4917 @item channel_layout, cl
4918
4919 Specifies the channel layout, and can be either an integer or a string
4920 representing a channel layout. The default value of @var{channel_layout}
4921 is "stereo".
4922
4923 Check the channel_layout_map definition in
4924 @file{libavutil/channel_layout.c} for the mapping between strings and
4925 channel layout values.
4926
4927 @item sample_rate, r
4928 Specifies the sample rate, and defaults to 44100.
4929
4930 @item nb_samples, n
4931 Set the number of samples per requested frames.
4932
4933 @end table
4934
4935 @subsection Examples
4936
4937 @itemize
4938 @item
4939 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4940 @example
4941 anullsrc=r=48000:cl=4
4942 @end example
4943
4944 @item
4945 Do the same operation with a more obvious syntax:
4946 @example
4947 anullsrc=r=48000:cl=mono
4948 @end example
4949 @end itemize
4950
4951 All the parameters need to be explicitly defined.
4952
4953 @section flite
4954
4955 Synthesize a voice utterance using the libflite library.
4956
4957 To enable compilation of this filter you need to configure FFmpeg with
4958 @code{--enable-libflite}.
4959
4960 Note that versions of the flite library prior to 2.0 are not thread-safe.
4961
4962 The filter accepts the following options:
4963
4964 @table @option
4965
4966 @item list_voices
4967 If set to 1, list the names of the available voices and exit
4968 immediately. Default value is 0.
4969
4970 @item nb_samples, n
4971 Set the maximum number of samples per frame. Default value is 512.
4972
4973 @item textfile
4974 Set the filename containing the text to speak.
4975
4976 @item text
4977 Set the text to speak.
4978
4979 @item voice, v
4980 Set the voice to use for the speech synthesis. Default value is
4981 @code{kal}. See also the @var{list_voices} option.
4982 @end table
4983
4984 @subsection Examples
4985
4986 @itemize
4987 @item
4988 Read from file @file{speech.txt}, and synthesize the text using the
4989 standard flite voice:
4990 @example
4991 flite=textfile=speech.txt
4992 @end example
4993
4994 @item
4995 Read the specified text selecting the @code{slt} voice:
4996 @example
4997 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4998 @end example
4999
5000 @item
5001 Input text to ffmpeg:
5002 @example
5003 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5004 @end example
5005
5006 @item
5007 Make @file{ffplay} speak the specified text, using @code{flite} and
5008 the @code{lavfi} device:
5009 @example
5010 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
5011 @end example
5012 @end itemize
5013
5014 For more information about libflite, check:
5015 @url{http://www.festvox.org/flite/}
5016
5017 @section anoisesrc
5018
5019 Generate a noise audio signal.
5020
5021 The filter accepts the following options:
5022
5023 @table @option
5024 @item sample_rate, r
5025 Specify the sample rate. Default value is 48000 Hz.
5026
5027 @item amplitude, a
5028 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
5029 is 1.0.
5030
5031 @item duration, d
5032 Specify the duration of the generated audio stream. Not specifying this option
5033 results in noise with an infinite length.
5034
5035 @item color, colour, c
5036 Specify the color of noise. Available noise colors are white, pink, brown,
5037 blue and violet. Default color is white.
5038
5039 @item seed, s
5040 Specify a value used to seed the PRNG.
5041
5042 @item nb_samples, n
5043 Set the number of samples per each output frame, default is 1024.
5044 @end table
5045
5046 @subsection Examples
5047
5048 @itemize
5049
5050 @item
5051 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
5052 @example
5053 anoisesrc=d=60:c=pink:r=44100:a=0.5
5054 @end example
5055 @end itemize
5056
5057 @section hilbert
5058
5059 Generate odd-tap Hilbert transform FIR coefficients.
5060
5061 The resulting stream can be used with @ref{afir} filter for phase-shifting
5062 the signal by 90 degrees.
5063
5064 This is used in many matrix coding schemes and for analytic signal generation.
5065 The process is often written as a multiplication by i (or j), the imaginary unit.
5066
5067 The filter accepts the following options:
5068
5069 @table @option
5070
5071 @item sample_rate, s
5072 Set sample rate, default is 44100.
5073
5074 @item taps, t
5075 Set length of FIR filter, default is 22051.
5076
5077 @item nb_samples, n
5078 Set number of samples per each frame.
5079
5080 @item win_func, w
5081 Set window function to be used when generating FIR coefficients.
5082 @end table
5083
5084 @section sine
5085
5086 Generate an audio signal made of a sine wave with amplitude 1/8.
5087
5088 The audio signal is bit-exact.
5089
5090 The filter accepts the following options:
5091
5092 @table @option
5093
5094 @item frequency, f
5095 Set the carrier frequency. Default is 440 Hz.
5096
5097 @item beep_factor, b
5098 Enable a periodic beep every second with frequency @var{beep_factor} times
5099 the carrier frequency. Default is 0, meaning the beep is disabled.
5100
5101 @item sample_rate, r
5102 Specify the sample rate, default is 44100.
5103
5104 @item duration, d
5105 Specify the duration of the generated audio stream.
5106
5107 @item samples_per_frame
5108 Set the number of samples per output frame.
5109
5110 The expression can contain the following constants:
5111
5112 @table @option
5113 @item n
5114 The (sequential) number of the output audio frame, starting from 0.
5115
5116 @item pts
5117 The PTS (Presentation TimeStamp) of the output audio frame,
5118 expressed in @var{TB} units.
5119
5120 @item t
5121 The PTS of the output audio frame, expressed in seconds.
5122
5123 @item TB
5124 The timebase of the output audio frames.
5125 @end table
5126
5127 Default is @code{1024}.
5128 @end table
5129
5130 @subsection Examples
5131
5132 @itemize
5133
5134 @item
5135 Generate a simple 440 Hz sine wave:
5136 @example
5137 sine
5138 @end example
5139
5140 @item
5141 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
5142 @example
5143 sine=220:4:d=5
5144 sine=f=220:b=4:d=5
5145 sine=frequency=220:beep_factor=4:duration=5
5146 @end example
5147
5148 @item
5149 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
5150 pattern:
5151 @example
5152 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
5153 @end example
5154 @end itemize
5155
5156 @c man end AUDIO SOURCES
5157
5158 @chapter Audio Sinks
5159 @c man begin AUDIO SINKS
5160
5161 Below is a description of the currently available audio sinks.
5162
5163 @section abuffersink
5164
5165 Buffer audio frames, and make them available to the end of filter chain.
5166
5167 This sink is mainly intended for programmatic use, in particular
5168 through the interface defined in @file{libavfilter/buffersink.h}
5169 or the options system.
5170
5171 It accepts a pointer to an AVABufferSinkContext structure, which
5172 defines the incoming buffers' formats, to be passed as the opaque
5173 parameter to @code{avfilter_init_filter} for initialization.
5174 @section anullsink
5175
5176 Null audio sink; do absolutely nothing with the input audio. It is
5177 mainly useful as a template and for use in analysis / debugging
5178 tools.
5179
5180 @c man end AUDIO SINKS
5181
5182 @chapter Video Filters
5183 @c man begin VIDEO FILTERS
5184
5185 When you configure your FFmpeg build, you can disable any of the
5186 existing filters using @code{--disable-filters}.
5187 The configure output will show the video filters included in your
5188 build.
5189
5190 Below is a description of the currently available video filters.
5191
5192 @section alphaextract
5193
5194 Extract the alpha component from the input as a grayscale video. This
5195 is especially useful with the @var{alphamerge} filter.
5196
5197 @section alphamerge
5198
5199 Add or replace the alpha component of the primary input with the
5200 grayscale value of a second input. This is intended for use with
5201 @var{alphaextract} to allow the transmission or storage of frame
5202 sequences that have alpha in a format that doesn't support an alpha
5203 channel.
5204
5205 For example, to reconstruct full frames from a normal YUV-encoded video
5206 and a separate video created with @var{alphaextract}, you might use:
5207 @example
5208 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
5209 @end example
5210
5211 Since this filter is designed for reconstruction, it operates on frame
5212 sequences without considering timestamps, and terminates when either
5213 input reaches end of stream. This will cause problems if your encoding
5214 pipeline drops frames. If you're trying to apply an image as an
5215 overlay to a video stream, consider the @var{overlay} filter instead.
5216
5217 @section amplify
5218
5219 Amplify differences between current pixel and pixels of adjacent frames in
5220 same pixel location.
5221
5222 This filter accepts the following options:
5223
5224 @table @option
5225 @item radius
5226 Set frame radius. Default is 2. Allowed range is from 1 to 63.
5227 For example radius of 3 will instruct filter to calculate average of 7 frames.
5228
5229 @item factor
5230 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
5231
5232 @item threshold
5233 Set threshold for difference amplification. Any differrence greater or equal to
5234 this value will not alter source pixel. Default is 10.
5235 Allowed range is from 0 to 65535.
5236
5237 @item low
5238 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
5239 This option controls maximum possible value that will decrease source pixel value.
5240
5241 @item high
5242 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
5243 This option controls maximum possible value that will increase source pixel value.
5244
5245 @item planes
5246 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
5247 @end table
5248
5249 @section ass
5250
5251 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
5252 and libavformat to work. On the other hand, it is limited to ASS (Advanced
5253 Substation Alpha) subtitles files.
5254
5255 This filter accepts the following option in addition to the common options from
5256 the @ref{subtitles} filter:
5257
5258 @table @option
5259 @item shaping
5260 Set the shaping engine
5261
5262 Available values are:
5263 @table @samp
5264 @item auto
5265 The default libass shaping engine, which is the best available.
5266 @item simple
5267 Fast, font-agnostic shaper that can do only substitutions
5268 @item complex
5269 Slower shaper using OpenType for substitutions and positioning
5270 @end table
5271
5272 The default is @code{auto}.
5273 @end table
5274
5275 @section atadenoise
5276 Apply an Adaptive Temporal Averaging Denoiser to the video input.
5277
5278 The filter accepts the following options:
5279
5280 @table @option
5281 @item 0a
5282 Set threshold A for 1st plane. Default is 0.02.
5283 Valid range is 0 to 0.3.
5284
5285 @item 0b
5286 Set threshold B for 1st plane. Default is 0.04.
5287 Valid range is 0 to 5.
5288
5289 @item 1a
5290 Set threshold A for 2nd plane. Default is 0.02.
5291 Valid range is 0 to 0.3.
5292
5293 @item 1b
5294 Set threshold B for 2nd plane. Default is 0.04.
5295 Valid range is 0 to 5.
5296
5297 @item 2a
5298 Set threshold A for 3rd plane. Default is 0.02.
5299 Valid range is 0 to 0.3.
5300
5301 @item 2b
5302 Set threshold B for 3rd plane. Default is 0.04.
5303 Valid range is 0 to 5.
5304
5305 Threshold A is designed to react on abrupt changes in the input signal and
5306 threshold B is designed to react on continuous changes in the input signal.
5307
5308 @item s
5309 Set number of frames filter will use for averaging. Default is 9. Must be odd
5310 number in range [5, 129].
5311
5312 @item p
5313 Set what planes of frame filter will use for averaging. Default is all.
5314 @end table
5315
5316 @section avgblur
5317
5318 Apply average blur filter.
5319
5320 The filter accepts the following options:
5321
5322 @table @option
5323 @item sizeX
5324 Set horizontal kernel size.
5325
5326 @item planes
5327 Set which planes to filter. By default all planes are filtered.
5328
5329 @item sizeY
5330 Set vertical kernel size, if zero it will be same as @code{sizeX}.
5331 Default is @code{0}.
5332 @end table
5333
5334 @section bbox
5335
5336 Compute the bounding box for the non-black pixels in the input frame
5337 luminance plane.
5338
5339 This filter computes the bounding box containing all the pixels with a
5340 luminance value greater than the minimum allowed value.
5341 The parameters describing the bounding box are printed on the filter
5342 log.
5343
5344 The filter accepts the following option:
5345
5346 @table @option
5347 @item min_val
5348 Set the minimal luminance value. Default is @code{16}.
5349 @end table
5350
5351 @section bitplanenoise
5352
5353 Show and measure bit plane noise.
5354
5355 The filter accepts the following options:
5356
5357 @table @option
5358 @item bitplane
5359 Set which plane to analyze. Default is @code{1}.
5360
5361 @item filter
5362 Filter out noisy pixels from @code{bitplane} set above.
5363 Default is disabled.
5364 @end table
5365
5366 @section blackdetect
5367
5368 Detect video intervals that are (almost) completely black. Can be
5369 useful to detect chapter transitions, commercials, or invalid
5370 recordings. Output lines contains the time for the start, end and
5371 duration of the detected black interval expressed in seconds.
5372
5373 In order to display the output lines, you need to set the loglevel at
5374 least to the AV_LOG_INFO value.
5375
5376 The filter accepts the following options:
5377
5378 @table @option
5379 @item black_min_duration, d
5380 Set the minimum detected black duration expressed in seconds. It must
5381 be a non-negative floating point number.
5382
5383 Default value is 2.0.
5384
5385 @item picture_black_ratio_th, pic_th
5386 Set the threshold for considering a picture "black".
5387 Express the minimum value for the ratio:
5388 @example
5389 @var{nb_black_pixels} / @var{nb_pixels}
5390 @end example
5391
5392 for which a picture is considered black.
5393 Default value is 0.98.
5394
5395 @item pixel_black_th, pix_th
5396 Set the threshold for considering a pixel "black".
5397
5398 The threshold expresses the maximum pixel luminance value for which a
5399 pixel is considered "black". The provided value is scaled according to
5400 the following equation:
5401 @example
5402 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
5403 @end example
5404
5405 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
5406 the input video format, the range is [0-255] for YUV full-range
5407 formats and [16-235] for YUV non full-range formats.
5408
5409 Default value is 0.10.
5410 @end table
5411
5412 The following example sets the maximum pixel threshold to the minimum
5413 value, and detects only black intervals of 2 or more seconds:
5414 @example
5415 blackdetect=d=2:pix_th=0.00
5416 @end example
5417
5418 @section blackframe
5419
5420 Detect frames that are (almost) completely black. Can be useful to
5421 detect chapter transitions or commercials. Output lines consist of
5422 the frame number of the detected frame, the percentage of blackness,
5423 the position in the file if known or -1 and the timestamp in seconds.
5424
5425 In order to display the output lines, you need to set the loglevel at
5426 least to the AV_LOG_INFO value.
5427
5428 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
5429 The value represents the percentage of pixels in the picture that
5430 are below the threshold value.
5431
5432 It accepts the following parameters:
5433
5434 @table @option
5435
5436 @item amount
5437 The percentage of the pixels that have to be below the threshold; it defaults to
5438 @code{98}.
5439
5440 @item threshold, thresh
5441 The threshold below which a pixel value is considered black; it defaults to
5442 @code{32}.
5443
5444 @end table
5445
5446 @section blend, tblend
5447
5448 Blend two video frames into each other.
5449
5450 The @code{blend} filter takes two input streams and outputs one
5451 stream, the first input is the "top" layer and second input is
5452 "bottom" layer.  By default, the output terminates when the longest input terminates.
5453
5454 The @code{tblend} (time blend) filter takes two consecutive frames
5455 from one single stream, and outputs the result obtained by blending
5456 the new frame on top of the old frame.
5457
5458 A description of the accepted options follows.
5459
5460 @table @option
5461 @item c0_mode
5462 @item c1_mode
5463 @item c2_mode
5464 @item c3_mode
5465 @item all_mode
5466 Set blend mode for specific pixel component or all pixel components in case
5467 of @var{all_mode}. Default value is @code{normal}.
5468
5469 Available values for component modes are:
5470 @table @samp
5471 @item addition
5472 @item grainmerge
5473 @item and
5474 @item average
5475 @item burn
5476 @item darken
5477 @item difference
5478 @item grainextract
5479 @item divide
5480 @item dodge
5481 @item freeze
5482 @item exclusion
5483 @item extremity
5484 @item glow
5485 @item hardlight
5486 @item hardmix
5487 @item heat
5488 @item lighten
5489 @item linearlight
5490 @item multiply
5491 @item multiply128
5492 @item negation
5493 @item normal
5494 @item or
5495 @item overlay
5496 @item phoenix
5497 @item pinlight
5498 @item reflect
5499 @item screen
5500 @item softlight
5501 @item subtract
5502 @item vividlight
5503 @item xor
5504 @end table
5505
5506 @item c0_opacity
5507 @item c1_opacity
5508 @item c2_opacity
5509 @item c3_opacity
5510 @item all_opacity
5511 Set blend opacity for specific pixel component or all pixel components in case
5512 of @var{all_opacity}. Only used in combination with pixel component blend modes.
5513
5514 @item c0_expr
5515 @item c1_expr
5516 @item c2_expr
5517 @item c3_expr
5518 @item all_expr
5519 Set blend expression for specific pixel component or all pixel components in case
5520 of @var{all_expr}. Note that related mode options will be ignored if those are set.
5521
5522 The expressions can use the following variables:
5523
5524 @table @option
5525 @item N
5526 The sequential number of the filtered frame, starting from @code{0}.
5527
5528 @item X
5529 @item Y
5530 the coordinates of the current sample
5531
5532 @item W
5533 @item H
5534 the width and height of currently filtered plane
5535
5536 @item SW
5537 @item SH
5538 Width and height scale depending on the currently filtered plane. It is the
5539 ratio between the corresponding luma plane number of pixels and the current
5540 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
5541 @code{0.5,0.5} for chroma planes.
5542
5543 @item T
5544 Time of the current frame, expressed in seconds.
5545
5546 @item TOP, A
5547 Value of pixel component at current location for first video frame (top layer).
5548
5549 @item BOTTOM, B
5550 Value of pixel component at current location for second video frame (bottom layer).
5551 @end table
5552 @end table
5553
5554 The @code{blend} filter also supports the @ref{framesync} options.
5555
5556 @subsection Examples
5557
5558 @itemize
5559 @item
5560 Apply transition from bottom layer to top layer in first 10 seconds:
5561 @example
5562 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
5563 @end example
5564
5565 @item
5566 Apply linear horizontal transition from top layer to bottom layer:
5567 @example
5568 blend=all_expr='A*(X/W)+B*(1-X/W)'
5569 @end example
5570
5571 @item
5572 Apply 1x1 checkerboard effect:
5573 @example
5574 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
5575 @end example
5576
5577 @item
5578 Apply uncover left effect:
5579 @example
5580 blend=all_expr='if(gte(N*SW+X,W),A,B)'
5581 @end example
5582
5583 @item
5584 Apply uncover down effect:
5585 @example
5586 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
5587 @end example
5588
5589 @item
5590 Apply uncover up-left effect:
5591 @example
5592 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
5593 @end example
5594
5595 @item
5596 Split diagonally video and shows top and bottom layer on each side:
5597 @example
5598 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
5599 @end example
5600
5601 @item
5602 Display differences between the current and the previous frame:
5603 @example
5604 tblend=all_mode=grainextract
5605 @end example
5606 @end itemize
5607
5608 @section boxblur
5609
5610 Apply a boxblur algorithm to the input video.
5611
5612 It accepts the following parameters:
5613
5614 @table @option
5615
5616 @item luma_radius, lr
5617 @item luma_power, lp
5618 @item chroma_radius, cr
5619 @item chroma_power, cp
5620 @item alpha_radius, ar
5621 @item alpha_power, ap
5622
5623 @end table
5624
5625 A description of the accepted options follows.
5626
5627 @table @option
5628 @item luma_radius, lr
5629 @item chroma_radius, cr
5630 @item alpha_radius, ar
5631 Set an expression for the box radius in pixels used for blurring the
5632 corresponding input plane.
5633
5634 The radius value must be a non-negative number, and must not be
5635 greater than the value of the expression @code{min(w,h)/2} for the
5636 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
5637 planes.
5638
5639 Default value for @option{luma_radius} is "2". If not specified,
5640 @option{chroma_radius} and @option{alpha_radius} default to the
5641 corresponding value set for @option{luma_radius}.
5642
5643 The expressions can contain the following constants:
5644 @table @option
5645 @item w
5646 @item h
5647 The input width and height in pixels.
5648
5649 @item cw
5650 @item ch
5651 The input chroma image width and height in pixels.
5652
5653 @item hsub
5654 @item vsub
5655 The horizontal and vertical chroma subsample values. For example, for the
5656 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
5657 @end table
5658
5659 @item luma_power, lp
5660 @item chroma_power, cp
5661 @item alpha_power, ap
5662 Specify how many times the boxblur filter is applied to the
5663 corresponding plane.
5664
5665 Default value for @option{luma_power} is 2. If not specified,
5666 @option{chroma_power} and @option{alpha_power} default to the
5667 corresponding value set for @option{luma_power}.
5668
5669 A value of 0 will disable the effect.
5670 @end table
5671
5672 @subsection Examples
5673
5674 @itemize
5675 @item
5676 Apply a boxblur filter with the luma, chroma, and alpha radii
5677 set to 2:
5678 @example
5679 boxblur=luma_radius=2:luma_power=1
5680 boxblur=2:1
5681 @end example
5682
5683 @item
5684 Set the luma radius to 2, and alpha and chroma radius to 0:
5685 @example
5686 boxblur=2:1:cr=0:ar=0
5687 @end example
5688
5689 @item
5690 Set the luma and chroma radii to a fraction of the video dimension:
5691 @example
5692 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
5693 @end example
5694 @end itemize
5695
5696 @section bwdif
5697
5698 Deinterlace the input video ("bwdif" stands for "Bob Weaver
5699 Deinterlacing Filter").
5700
5701 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
5702 interpolation algorithms.
5703 It accepts the following parameters:
5704
5705 @table @option
5706 @item mode
5707 The interlacing mode to adopt. It accepts one of the following values:
5708
5709 @table @option
5710 @item 0, send_frame
5711 Output one frame for each frame.
5712 @item 1, send_field
5713 Output one frame for each field.
5714 @end table
5715
5716 The default value is @code{send_field}.
5717
5718 @item parity
5719 The picture field parity assumed for the input interlaced video. It accepts one
5720 of the following values:
5721
5722 @table @option
5723 @item 0, tff
5724 Assume the top field is first.
5725 @item 1, bff
5726 Assume the bottom field is first.
5727 @item -1, auto
5728 Enable automatic detection of field parity.
5729 @end table
5730
5731 The default value is @code{auto}.
5732 If the interlacing is unknown or the decoder does not export this information,
5733 top field first will be assumed.
5734
5735 @item deint
5736 Specify which frames to deinterlace. Accept one of the following
5737 values:
5738
5739 @table @option
5740 @item 0, all
5741 Deinterlace all frames.
5742 @item 1, interlaced
5743 Only deinterlace frames marked as interlaced.
5744 @end table
5745
5746 The default value is @code{all}.
5747 @end table
5748
5749 @section chromakey
5750 YUV colorspace color/chroma keying.
5751
5752 The filter accepts the following options:
5753
5754 @table @option
5755 @item color
5756 The color which will be replaced with transparency.
5757
5758 @item similarity
5759 Similarity percentage with the key color.
5760
5761 0.01 matches only the exact key color, while 1.0 matches everything.
5762
5763 @item blend
5764 Blend percentage.
5765
5766 0.0 makes pixels either fully transparent, or not transparent at all.
5767
5768 Higher values result in semi-transparent pixels, with a higher transparency
5769 the more similar the pixels color is to the key color.
5770
5771 @item yuv
5772 Signals that the color passed is already in YUV instead of RGB.
5773
5774 Literal colors like "green" or "red" don't make sense with this enabled anymore.
5775 This can be used to pass exact YUV values as hexadecimal numbers.
5776 @end table
5777
5778 @subsection Examples
5779
5780 @itemize
5781 @item
5782 Make every green pixel in the input image transparent:
5783 @example
5784 ffmpeg -i input.png -vf chromakey=green out.png
5785 @end example
5786
5787 @item
5788 Overlay a greenscreen-video on top of a static black background.
5789 @example
5790 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
5791 @end example
5792 @end itemize
5793
5794 @section ciescope
5795
5796 Display CIE color diagram with pixels overlaid onto it.
5797
5798 The filter accepts the following options:
5799
5800 @table @option
5801 @item system
5802 Set color system.
5803
5804 @table @samp
5805 @item ntsc, 470m
5806 @item ebu, 470bg
5807 @item smpte
5808 @item 240m
5809 @item apple
5810 @item widergb
5811 @item cie1931
5812 @item rec709, hdtv
5813 @item uhdtv, rec2020
5814 @end table
5815
5816 @item cie
5817 Set CIE system.
5818
5819 @table @samp
5820 @item xyy
5821 @item ucs
5822 @item luv
5823 @end table
5824
5825 @item gamuts
5826 Set what gamuts to draw.
5827
5828 See @code{system} option for available values.
5829
5830 @item size, s
5831 Set ciescope size, by default set to 512.
5832
5833 @item intensity, i
5834 Set intensity used to map input pixel values to CIE diagram.
5835
5836 @item contrast
5837 Set contrast used to draw tongue colors that are out of active color system gamut.
5838
5839 @item corrgamma
5840 Correct gamma displayed on scope, by default enabled.
5841
5842 @item showwhite
5843 Show white point on CIE diagram, by default disabled.
5844
5845 @item gamma
5846 Set input gamma. Used only with XYZ input color space.
5847 @end table
5848
5849 @section codecview
5850
5851 Visualize information exported by some codecs.
5852
5853 Some codecs can export information through frames using side-data or other
5854 means. For example, some MPEG based codecs export motion vectors through the
5855 @var{export_mvs} flag in the codec @option{flags2} option.
5856
5857 The filter accepts the following option:
5858
5859 @table @option
5860 @item mv
5861 Set motion vectors to visualize.
5862
5863 Available flags for @var{mv} are:
5864
5865 @table @samp
5866 @item pf
5867 forward predicted MVs of P-frames
5868 @item bf
5869 forward predicted MVs of B-frames
5870 @item bb
5871 backward predicted MVs of B-frames
5872 @end table
5873
5874 @item qp
5875 Display quantization parameters using the chroma planes.
5876
5877 @item mv_type, mvt
5878 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
5879
5880 Available flags for @var{mv_type} are:
5881
5882 @table @samp
5883 @item fp
5884 forward predicted MVs
5885 @item bp
5886 backward predicted MVs
5887 @end table
5888
5889 @item frame_type, ft
5890 Set frame type to visualize motion vectors of.
5891
5892 Available flags for @var{frame_type} are:
5893
5894 @table @samp
5895 @item if
5896 intra-coded frames (I-frames)
5897 @item pf
5898 predicted frames (P-frames)
5899 @item bf
5900 bi-directionally predicted frames (B-frames)
5901 @end table
5902 @end table
5903
5904 @subsection Examples
5905
5906 @itemize
5907 @item
5908 Visualize forward predicted MVs of all frames using @command{ffplay}:
5909 @example
5910 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
5911 @end example
5912
5913 @item
5914 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5915 @example
5916 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5917 @end example
5918 @end itemize
5919
5920 @section colorbalance
5921 Modify intensity of primary colors (red, green and blue) of input frames.
5922
5923 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5924 regions for the red-cyan, green-magenta or blue-yellow balance.
5925
5926 A positive adjustment value shifts the balance towards the primary color, a negative
5927 value towards the complementary color.
5928
5929 The filter accepts the following options:
5930
5931 @table @option
5932 @item rs
5933 @item gs
5934 @item bs
5935 Adjust red, green and blue shadows (darkest pixels).
5936
5937 @item rm
5938 @item gm
5939 @item bm
5940 Adjust red, green and blue midtones (medium pixels).
5941
5942 @item rh
5943 @item gh
5944 @item bh
5945 Adjust red, green and blue highlights (brightest pixels).
5946
5947 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5948 @end table
5949
5950 @subsection Examples
5951
5952 @itemize
5953 @item
5954 Add red color cast to shadows:
5955 @example
5956 colorbalance=rs=.3
5957 @end example
5958 @end itemize
5959
5960 @section colorkey
5961 RGB colorspace color keying.
5962
5963 The filter accepts the following options:
5964
5965 @table @option
5966 @item color
5967 The color which will be replaced with transparency.
5968
5969 @item similarity
5970 Similarity percentage with the key color.
5971
5972 0.01 matches only the exact key color, while 1.0 matches everything.
5973
5974 @item blend
5975 Blend percentage.
5976
5977 0.0 makes pixels either fully transparent, or not transparent at all.
5978
5979 Higher values result in semi-transparent pixels, with a higher transparency
5980 the more similar the pixels color is to the key color.
5981 @end table
5982
5983 @subsection Examples
5984
5985 @itemize
5986 @item
5987 Make every green pixel in the input image transparent:
5988 @example
5989 ffmpeg -i input.png -vf colorkey=green out.png
5990 @end example
5991
5992 @item
5993 Overlay a greenscreen-video on top of a static background image.
5994 @example
5995 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
5996 @end example
5997 @end itemize
5998
5999 @section colorlevels
6000
6001 Adjust video input frames using levels.
6002
6003 The filter accepts the following options:
6004
6005 @table @option
6006 @item rimin
6007 @item gimin
6008 @item bimin
6009 @item aimin
6010 Adjust red, green, blue and alpha input black point.
6011 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6012
6013 @item rimax
6014 @item gimax
6015 @item bimax
6016 @item aimax
6017 Adjust red, green, blue and alpha input white point.
6018 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
6019
6020 Input levels are used to lighten highlights (bright tones), darken shadows
6021 (dark tones), change the balance of bright and dark tones.
6022
6023 @item romin
6024 @item gomin
6025 @item bomin
6026 @item aomin
6027 Adjust red, green, blue and alpha output black point.
6028 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
6029
6030 @item romax
6031 @item gomax
6032 @item bomax
6033 @item aomax
6034 Adjust red, green, blue and alpha output white point.
6035 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
6036
6037 Output levels allows manual selection of a constrained output level range.
6038 @end table
6039
6040 @subsection Examples
6041
6042 @itemize
6043 @item
6044 Make video output darker:
6045 @example
6046 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
6047 @end example
6048
6049 @item
6050 Increase contrast:
6051 @example
6052 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
6053 @end example
6054
6055 @item
6056 Make video output lighter:
6057 @example
6058 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
6059 @end example
6060
6061 @item
6062 Increase brightness:
6063 @example
6064 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
6065 @end example
6066 @end itemize
6067
6068 @section colorchannelmixer
6069
6070 Adjust video input frames by re-mixing color channels.
6071
6072 This filter modifies a color channel by adding the values associated to
6073 the other channels of the same pixels. For example if the value to
6074 modify is red, the output value will be:
6075 @example
6076 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
6077 @end example
6078
6079 The filter accepts the following options:
6080
6081 @table @option
6082 @item rr
6083 @item rg
6084 @item rb
6085 @item ra
6086 Adjust contribution of input red, green, blue and alpha channels for output red channel.
6087 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
6088
6089 @item gr
6090 @item gg
6091 @item gb
6092 @item ga
6093 Adjust contribution of input red, green, blue and alpha channels for output green channel.
6094 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
6095
6096 @item br
6097 @item bg
6098 @item bb
6099 @item ba
6100 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
6101 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
6102
6103 @item ar
6104 @item ag
6105 @item ab
6106 @item aa
6107 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
6108 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
6109
6110 Allowed ranges for options are @code{[-2.0, 2.0]}.
6111 @end table
6112
6113 @subsection Examples
6114
6115 @itemize
6116 @item
6117 Convert source to grayscale:
6118 @example
6119 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
6120 @end example
6121 @item
6122 Simulate sepia tones:
6123 @example
6124 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
6125 @end example
6126 @end itemize
6127
6128 @section colormatrix
6129
6130 Convert color matrix.
6131
6132 The filter accepts the following options:
6133
6134 @table @option
6135 @item src
6136 @item dst
6137 Specify the source and destination color matrix. Both values must be
6138 specified.
6139
6140 The accepted values are:
6141 @table @samp
6142 @item bt709
6143 BT.709
6144
6145 @item fcc
6146 FCC
6147
6148 @item bt601
6149 BT.601
6150
6151 @item bt470
6152 BT.470
6153
6154 @item bt470bg
6155 BT.470BG
6156
6157 @item smpte170m
6158 SMPTE-170M
6159
6160 @item smpte240m
6161 SMPTE-240M
6162
6163 @item bt2020
6164 BT.2020
6165 @end table
6166 @end table
6167
6168 For example to convert from BT.601 to SMPTE-240M, use the command:
6169 @example
6170 colormatrix=bt601:smpte240m
6171 @end example
6172
6173 @section colorspace
6174
6175 Convert colorspace, transfer characteristics or color primaries.
6176 Input video needs to have an even size.
6177
6178 The filter accepts the following options:
6179
6180 @table @option
6181 @anchor{all}
6182 @item all
6183 Specify all color properties at once.
6184
6185 The accepted values are:
6186 @table @samp
6187 @item bt470m
6188 BT.470M
6189
6190 @item bt470bg
6191 BT.470BG
6192
6193 @item bt601-6-525
6194 BT.601-6 525
6195
6196 @item bt601-6-625
6197 BT.601-6 625
6198
6199 @item bt709
6200 BT.709
6201
6202 @item smpte170m
6203 SMPTE-170M
6204
6205 @item smpte240m
6206 SMPTE-240M
6207
6208 @item bt2020
6209 BT.2020
6210
6211 @end table
6212
6213 @anchor{space}
6214 @item space
6215 Specify output colorspace.
6216
6217 The accepted values are:
6218 @table @samp
6219 @item bt709
6220 BT.709
6221
6222 @item fcc
6223 FCC
6224
6225 @item bt470bg
6226 BT.470BG or BT.601-6 625
6227
6228 @item smpte170m
6229 SMPTE-170M or BT.601-6 525
6230
6231 @item smpte240m
6232 SMPTE-240M
6233
6234 @item ycgco
6235 YCgCo
6236
6237 @item bt2020ncl
6238 BT.2020 with non-constant luminance
6239
6240 @end table
6241
6242 @anchor{trc}
6243 @item trc
6244 Specify output transfer characteristics.
6245
6246 The accepted values are:
6247 @table @samp
6248 @item bt709
6249 BT.709
6250
6251 @item bt470m
6252 BT.470M
6253
6254 @item bt470bg
6255 BT.470BG
6256
6257 @item gamma22
6258 Constant gamma of 2.2
6259
6260 @item gamma28
6261 Constant gamma of 2.8
6262
6263 @item smpte170m
6264 SMPTE-170M, BT.601-6 625 or BT.601-6 525
6265
6266 @item smpte240m
6267 SMPTE-240M
6268
6269 @item srgb
6270 SRGB
6271
6272 @item iec61966-2-1
6273 iec61966-2-1
6274
6275 @item iec61966-2-4
6276 iec61966-2-4
6277
6278 @item xvycc
6279 xvycc
6280
6281 @item bt2020-10
6282 BT.2020 for 10-bits content
6283
6284 @item bt2020-12
6285 BT.2020 for 12-bits content
6286
6287 @end table
6288
6289 @anchor{primaries}
6290 @item primaries
6291 Specify output color primaries.
6292
6293 The accepted values are:
6294 @table @samp
6295 @item bt709
6296 BT.709
6297
6298 @item bt470m
6299 BT.470M
6300
6301 @item bt470bg
6302 BT.470BG or BT.601-6 625
6303
6304 @item smpte170m
6305 SMPTE-170M or BT.601-6 525
6306
6307 @item smpte240m
6308 SMPTE-240M
6309
6310 @item film
6311 film
6312
6313 @item smpte431
6314 SMPTE-431
6315
6316 @item smpte432
6317 SMPTE-432
6318
6319 @item bt2020
6320 BT.2020
6321
6322 @item jedec-p22
6323 JEDEC P22 phosphors
6324
6325 @end table
6326
6327 @anchor{range}
6328 @item range
6329 Specify output color range.
6330
6331 The accepted values are:
6332 @table @samp
6333 @item tv
6334 TV (restricted) range
6335
6336 @item mpeg
6337 MPEG (restricted) range
6338
6339 @item pc
6340 PC (full) range
6341
6342 @item jpeg
6343 JPEG (full) range
6344
6345 @end table
6346
6347 @item format
6348 Specify output color format.
6349
6350 The accepted values are:
6351 @table @samp
6352 @item yuv420p
6353 YUV 4:2:0 planar 8-bits
6354
6355 @item yuv420p10
6356 YUV 4:2:0 planar 10-bits
6357
6358 @item yuv420p12
6359 YUV 4:2:0 planar 12-bits
6360
6361 @item yuv422p
6362 YUV 4:2:2 planar 8-bits
6363
6364 @item yuv422p10
6365 YUV 4:2:2 planar 10-bits
6366
6367 @item yuv422p12
6368 YUV 4:2:2 planar 12-bits
6369
6370 @item yuv444p
6371 YUV 4:4:4 planar 8-bits
6372
6373 @item yuv444p10
6374 YUV 4:4:4 planar 10-bits
6375
6376 @item yuv444p12
6377 YUV 4:4:4 planar 12-bits
6378
6379 @end table
6380
6381 @item fast
6382 Do a fast conversion, which skips gamma/primary correction. This will take
6383 significantly less CPU, but will be mathematically incorrect. To get output
6384 compatible with that produced by the colormatrix filter, use fast=1.
6385
6386 @item dither
6387 Specify dithering mode.
6388
6389 The accepted values are:
6390 @table @samp
6391 @item none
6392 No dithering
6393
6394 @item fsb
6395 Floyd-Steinberg dithering
6396 @end table
6397
6398 @item wpadapt
6399 Whitepoint adaptation mode.
6400
6401 The accepted values are:
6402 @table @samp
6403 @item bradford
6404 Bradford whitepoint adaptation
6405
6406 @item vonkries
6407 von Kries whitepoint adaptation
6408
6409 @item identity
6410 identity whitepoint adaptation (i.e. no whitepoint adaptation)
6411 @end table
6412
6413 @item iall
6414 Override all input properties at once. Same accepted values as @ref{all}.
6415
6416 @item ispace
6417 Override input colorspace. Same accepted values as @ref{space}.
6418
6419 @item iprimaries
6420 Override input color primaries. Same accepted values as @ref{primaries}.
6421
6422 @item itrc
6423 Override input transfer characteristics. Same accepted values as @ref{trc}.
6424
6425 @item irange
6426 Override input color range. Same accepted values as @ref{range}.
6427
6428 @end table
6429
6430 The filter converts the transfer characteristics, color space and color
6431 primaries to the specified user values. The output value, if not specified,
6432 is set to a default value based on the "all" property. If that property is
6433 also not specified, the filter will log an error. The output color range and
6434 format default to the same value as the input color range and format. The
6435 input transfer characteristics, color space, color primaries and color range
6436 should be set on the input data. If any of these are missing, the filter will
6437 log an error and no conversion will take place.
6438
6439 For example to convert the input to SMPTE-240M, use the command:
6440 @example
6441 colorspace=smpte240m
6442 @end example
6443
6444 @section convolution
6445
6446 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
6447
6448 The filter accepts the following options:
6449
6450 @table @option
6451 @item 0m
6452 @item 1m
6453 @item 2m
6454 @item 3m
6455 Set matrix for each plane.
6456 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
6457 and from 1 to 49 odd number of signed integers in @var{row} mode.
6458
6459 @item 0rdiv
6460 @item 1rdiv
6461 @item 2rdiv
6462 @item 3rdiv
6463 Set multiplier for calculated value for each plane.
6464 If unset or 0, it will be sum of all matrix elements.
6465
6466 @item 0bias
6467 @item 1bias
6468 @item 2bias
6469 @item 3bias
6470 Set bias for each plane. This value is added to the result of the multiplication.
6471 Useful for making the overall image brighter or darker. Default is 0.0.
6472
6473 @item 0mode
6474 @item 1mode
6475 @item 2mode
6476 @item 3mode
6477 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
6478 Default is @var{square}.
6479 @end table
6480
6481 @subsection Examples
6482
6483 @itemize
6484 @item
6485 Apply sharpen:
6486 @example
6487 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"
6488 @end example
6489
6490 @item
6491 Apply blur:
6492 @example
6493 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"
6494 @end example
6495
6496 @item
6497 Apply edge enhance:
6498 @example
6499 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"
6500 @end example
6501
6502 @item
6503 Apply edge detect:
6504 @example
6505 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"
6506 @end example
6507
6508 @item
6509 Apply laplacian edge detector which includes diagonals:
6510 @example
6511 convolution="1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:5:5:5:1:0:128:128:0"
6512 @end example
6513
6514 @item
6515 Apply emboss:
6516 @example
6517 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"
6518 @end example
6519 @end itemize
6520
6521 @section convolve
6522
6523 Apply 2D convolution of video stream in frequency domain using second stream
6524 as impulse.
6525
6526 The filter accepts the following options:
6527
6528 @table @option
6529 @item planes
6530 Set which planes to process.
6531
6532 @item impulse
6533 Set which impulse video frames will be processed, can be @var{first}
6534 or @var{all}. Default is @var{all}.
6535 @end table
6536
6537 The @code{convolve} filter also supports the @ref{framesync} options.
6538
6539 @section copy
6540
6541 Copy the input video source unchanged to the output. This is mainly useful for
6542 testing purposes.
6543
6544 @anchor{coreimage}
6545 @section coreimage
6546 Video filtering on GPU using Apple's CoreImage API on OSX.
6547
6548 Hardware acceleration is based on an OpenGL context. Usually, this means it is
6549 processed by video hardware. However, software-based OpenGL implementations
6550 exist which means there is no guarantee for hardware processing. It depends on
6551 the respective OSX.
6552
6553 There are many filters and image generators provided by Apple that come with a
6554 large variety of options. The filter has to be referenced by its name along
6555 with its options.
6556
6557 The coreimage filter accepts the following options:
6558 @table @option
6559 @item list_filters
6560 List all available filters and generators along with all their respective
6561 options as well as possible minimum and maximum values along with the default
6562 values.
6563 @example
6564 list_filters=true
6565 @end example
6566
6567 @item filter
6568 Specify all filters by their respective name and options.
6569 Use @var{list_filters} to determine all valid filter names and options.
6570 Numerical options are specified by a float value and are automatically clamped
6571 to their respective value range.  Vector and color options have to be specified
6572 by a list of space separated float values. Character escaping has to be done.
6573 A special option name @code{default} is available to use default options for a
6574 filter.
6575
6576 It is required to specify either @code{default} or at least one of the filter options.
6577 All omitted options are used with their default values.
6578 The syntax of the filter string is as follows:
6579 @example
6580 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
6581 @end example
6582
6583 @item output_rect
6584 Specify a rectangle where the output of the filter chain is copied into the
6585 input image. It is given by a list of space separated float values:
6586 @example
6587 output_rect=x\ y\ width\ height
6588 @end example
6589 If not given, the output rectangle equals the dimensions of the input image.
6590 The output rectangle is automatically cropped at the borders of the input
6591 image. Negative values are valid for each component.
6592 @example
6593 output_rect=25\ 25\ 100\ 100
6594 @end example
6595 @end table
6596
6597 Several filters can be chained for successive processing without GPU-HOST
6598 transfers allowing for fast processing of complex filter chains.
6599 Currently, only filters with zero (generators) or exactly one (filters) input
6600 image and one output image are supported. Also, transition filters are not yet
6601 usable as intended.
6602
6603 Some filters generate output images with additional padding depending on the
6604 respective filter kernel. The padding is automatically removed to ensure the
6605 filter output has the same size as the input image.
6606
6607 For image generators, the size of the output image is determined by the
6608 previous output image of the filter chain or the input image of the whole
6609 filterchain, respectively. The generators do not use the pixel information of
6610 this image to generate their output. However, the generated output is
6611 blended onto this image, resulting in partial or complete coverage of the
6612 output image.
6613
6614 The @ref{coreimagesrc} video source can be used for generating input images
6615 which are directly fed into the filter chain. By using it, providing input
6616 images by another video source or an input video is not required.
6617
6618 @subsection Examples
6619
6620 @itemize
6621
6622 @item
6623 List all filters available:
6624 @example
6625 coreimage=list_filters=true
6626 @end example
6627
6628 @item
6629 Use the CIBoxBlur filter with default options to blur an image:
6630 @example
6631 coreimage=filter=CIBoxBlur@@default
6632 @end example
6633
6634 @item
6635 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
6636 its center at 100x100 and a radius of 50 pixels:
6637 @example
6638 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
6639 @end example
6640
6641 @item
6642 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
6643 given as complete and escaped command-line for Apple's standard bash shell:
6644 @example
6645 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
6646 @end example
6647 @end itemize
6648
6649 @section crop
6650
6651 Crop the input video to given dimensions.
6652
6653 It accepts the following parameters:
6654
6655 @table @option
6656 @item w, out_w
6657 The width of the output video. It defaults to @code{iw}.
6658 This expression is evaluated only once during the filter
6659 configuration, or when the @samp{w} or @samp{out_w} command is sent.
6660
6661 @item h, out_h
6662 The height of the output video. It defaults to @code{ih}.
6663 This expression is evaluated only once during the filter
6664 configuration, or when the @samp{h} or @samp{out_h} command is sent.
6665
6666 @item x
6667 The horizontal position, in the input video, of the left edge of the output
6668 video. It defaults to @code{(in_w-out_w)/2}.
6669 This expression is evaluated per-frame.
6670
6671 @item y
6672 The vertical position, in the input video, of the top edge of the output video.
6673 It defaults to @code{(in_h-out_h)/2}.
6674 This expression is evaluated per-frame.
6675
6676 @item keep_aspect
6677 If set to 1 will force the output display aspect ratio
6678 to be the same of the input, by changing the output sample aspect
6679 ratio. It defaults to 0.
6680
6681 @item exact
6682 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
6683 width/height/x/y as specified and will not be rounded to nearest smaller value.
6684 It defaults to 0.
6685 @end table
6686
6687 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
6688 expressions containing the following constants:
6689
6690 @table @option
6691 @item x
6692 @item y
6693 The computed values for @var{x} and @var{y}. They are evaluated for
6694 each new frame.
6695
6696 @item in_w
6697 @item in_h
6698 The input width and height.
6699
6700 @item iw
6701 @item ih
6702 These are the same as @var{in_w} and @var{in_h}.
6703
6704 @item out_w
6705 @item out_h
6706 The output (cropped) width and height.
6707
6708 @item ow
6709 @item oh
6710 These are the same as @var{out_w} and @var{out_h}.
6711
6712 @item a
6713 same as @var{iw} / @var{ih}
6714
6715 @item sar
6716 input sample aspect ratio
6717
6718 @item dar
6719 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
6720
6721 @item hsub
6722 @item vsub
6723 horizontal and vertical chroma subsample values. For example for the
6724 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6725
6726 @item n
6727 The number of the input frame, starting from 0.
6728
6729 @item pos
6730 the position in the file of the input frame, NAN if unknown
6731
6732 @item t
6733 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
6734
6735 @end table
6736
6737 The expression for @var{out_w} may depend on the value of @var{out_h},
6738 and the expression for @var{out_h} may depend on @var{out_w}, but they
6739 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
6740 evaluated after @var{out_w} and @var{out_h}.
6741
6742 The @var{x} and @var{y} parameters specify the expressions for the
6743 position of the top-left corner of the output (non-cropped) area. They
6744 are evaluated for each frame. If the evaluated value is not valid, it
6745 is approximated to the nearest valid value.
6746
6747 The expression for @var{x} may depend on @var{y}, and the expression
6748 for @var{y} may depend on @var{x}.
6749
6750 @subsection Examples
6751
6752 @itemize
6753 @item
6754 Crop area with size 100x100 at position (12,34).
6755 @example
6756 crop=100:100:12:34
6757 @end example
6758
6759 Using named options, the example above becomes:
6760 @example
6761 crop=w=100:h=100:x=12:y=34
6762 @end example
6763
6764 @item
6765 Crop the central input area with size 100x100:
6766 @example
6767 crop=100:100
6768 @end example
6769
6770 @item
6771 Crop the central input area with size 2/3 of the input video:
6772 @example
6773 crop=2/3*in_w:2/3*in_h
6774 @end example
6775
6776 @item
6777 Crop the input video central square:
6778 @example
6779 crop=out_w=in_h
6780 crop=in_h
6781 @end example
6782
6783 @item
6784 Delimit the rectangle with the top-left corner placed at position
6785 100:100 and the right-bottom corner corresponding to the right-bottom
6786 corner of the input image.
6787 @example
6788 crop=in_w-100:in_h-100:100:100
6789 @end example
6790
6791 @item
6792 Crop 10 pixels from the left and right borders, and 20 pixels from
6793 the top and bottom borders
6794 @example
6795 crop=in_w-2*10:in_h-2*20
6796 @end example
6797
6798 @item
6799 Keep only the bottom right quarter of the input image:
6800 @example
6801 crop=in_w/2:in_h/2:in_w/2:in_h/2
6802 @end example
6803
6804 @item
6805 Crop height for getting Greek harmony:
6806 @example
6807 crop=in_w:1/PHI*in_w
6808 @end example
6809
6810 @item
6811 Apply trembling effect:
6812 @example
6813 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)
6814 @end example
6815
6816 @item
6817 Apply erratic camera effect depending on timestamp:
6818 @example
6819 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)"
6820 @end example
6821
6822 @item
6823 Set x depending on the value of y:
6824 @example
6825 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
6826 @end example
6827 @end itemize
6828
6829 @subsection Commands
6830
6831 This filter supports the following commands:
6832 @table @option
6833 @item w, out_w
6834 @item h, out_h
6835 @item x
6836 @item y
6837 Set width/height of the output video and the horizontal/vertical position
6838 in the input video.
6839 The command accepts the same syntax of the corresponding option.
6840
6841 If the specified expression is not valid, it is kept at its current
6842 value.
6843 @end table
6844
6845 @section cropdetect
6846
6847 Auto-detect the crop size.
6848
6849 It calculates the necessary cropping parameters and prints the
6850 recommended parameters via the logging system. The detected dimensions
6851 correspond to the non-black area of the input video.
6852
6853 It accepts the following parameters:
6854
6855 @table @option
6856
6857 @item limit
6858 Set higher black value threshold, which can be optionally specified
6859 from nothing (0) to everything (255 for 8-bit based formats). An intensity
6860 value greater to the set value is considered non-black. It defaults to 24.
6861 You can also specify a value between 0.0 and 1.0 which will be scaled depending
6862 on the bitdepth of the pixel format.
6863
6864 @item round
6865 The value which the width/height should be divisible by. It defaults to
6866 16. The offset is automatically adjusted to center the video. Use 2 to
6867 get only even dimensions (needed for 4:2:2 video). 16 is best when
6868 encoding to most video codecs.
6869
6870 @item reset_count, reset
6871 Set the counter that determines after how many frames cropdetect will
6872 reset the previously detected largest video area and start over to
6873 detect the current optimal crop area. Default value is 0.
6874
6875 This can be useful when channel logos distort the video area. 0
6876 indicates 'never reset', and returns the largest area encountered during
6877 playback.
6878 @end table
6879
6880 @anchor{curves}
6881 @section curves
6882
6883 Apply color adjustments using curves.
6884
6885 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
6886 component (red, green and blue) has its values defined by @var{N} key points
6887 tied from each other using a smooth curve. The x-axis represents the pixel
6888 values from the input frame, and the y-axis the new pixel values to be set for
6889 the output frame.
6890
6891 By default, a component curve is defined by the two points @var{(0;0)} and
6892 @var{(1;1)}. This creates a straight line where each original pixel value is
6893 "adjusted" to its own value, which means no change to the image.
6894
6895 The filter allows you to redefine these two points and add some more. A new
6896 curve (using a natural cubic spline interpolation) will be define to pass
6897 smoothly through all these new coordinates. The new defined points needs to be
6898 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
6899 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
6900 the vector spaces, the values will be clipped accordingly.
6901
6902 The filter accepts the following options:
6903
6904 @table @option
6905 @item preset
6906 Select one of the available color presets. This option can be used in addition
6907 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
6908 options takes priority on the preset values.
6909 Available presets are:
6910 @table @samp
6911 @item none
6912 @item color_negative
6913 @item cross_process
6914 @item darker
6915 @item increase_contrast
6916 @item lighter
6917 @item linear_contrast
6918 @item medium_contrast
6919 @item negative
6920 @item strong_contrast
6921 @item vintage
6922 @end table
6923 Default is @code{none}.
6924 @item master, m
6925 Set the master key points. These points will define a second pass mapping. It
6926 is sometimes called a "luminance" or "value" mapping. It can be used with
6927 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
6928 post-processing LUT.
6929 @item red, r
6930 Set the key points for the red component.
6931 @item green, g
6932 Set the key points for the green component.
6933 @item blue, b
6934 Set the key points for the blue component.
6935 @item all
6936 Set the key points for all components (not including master).
6937 Can be used in addition to the other key points component
6938 options. In this case, the unset component(s) will fallback on this
6939 @option{all} setting.
6940 @item psfile
6941 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
6942 @item plot
6943 Save Gnuplot script of the curves in specified file.
6944 @end table
6945
6946 To avoid some filtergraph syntax conflicts, each key points list need to be
6947 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
6948
6949 @subsection Examples
6950
6951 @itemize
6952 @item
6953 Increase slightly the middle level of blue:
6954 @example
6955 curves=blue='0/0 0.5/0.58 1/1'
6956 @end example
6957
6958 @item
6959 Vintage effect:
6960 @example
6961 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'
6962 @end example
6963 Here we obtain the following coordinates for each components:
6964 @table @var
6965 @item red
6966 @code{(0;0.11) (0.42;0.51) (1;0.95)}
6967 @item green
6968 @code{(0;0) (0.50;0.48) (1;1)}
6969 @item blue
6970 @code{(0;0.22) (0.49;0.44) (1;0.80)}
6971 @end table
6972
6973 @item
6974 The previous example can also be achieved with the associated built-in preset:
6975 @example
6976 curves=preset=vintage
6977 @end example
6978
6979 @item
6980 Or simply:
6981 @example
6982 curves=vintage
6983 @end example
6984
6985 @item
6986 Use a Photoshop preset and redefine the points of the green component:
6987 @example
6988 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
6989 @end example
6990
6991 @item
6992 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
6993 and @command{gnuplot}:
6994 @example
6995 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
6996 gnuplot -p /tmp/curves.plt
6997 @end example
6998 @end itemize
6999
7000 @section datascope
7001
7002 Video data analysis filter.
7003
7004 This filter shows hexadecimal pixel values of part of video.
7005
7006 The filter accepts the following options:
7007
7008 @table @option
7009 @item size, s
7010 Set output video size.
7011
7012 @item x
7013 Set x offset from where to pick pixels.
7014
7015 @item y
7016 Set y offset from where to pick pixels.
7017
7018 @item mode
7019 Set scope mode, can be one of the following:
7020 @table @samp
7021 @item mono
7022 Draw hexadecimal pixel values with white color on black background.
7023
7024 @item color
7025 Draw hexadecimal pixel values with input video pixel color on black
7026 background.
7027
7028 @item color2
7029 Draw hexadecimal pixel values on color background picked from input video,
7030 the text color is picked in such way so its always visible.
7031 @end table
7032
7033 @item axis
7034 Draw rows and columns numbers on left and top of video.
7035
7036 @item opacity
7037 Set background opacity.
7038 @end table
7039
7040 @section dctdnoiz
7041
7042 Denoise frames using 2D DCT (frequency domain filtering).
7043
7044 This filter is not designed for real time.
7045
7046 The filter accepts the following options:
7047
7048 @table @option
7049 @item sigma, s
7050 Set the noise sigma constant.
7051
7052 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
7053 coefficient (absolute value) below this threshold with be dropped.
7054
7055 If you need a more advanced filtering, see @option{expr}.
7056
7057 Default is @code{0}.
7058
7059 @item overlap
7060 Set number overlapping pixels for each block. Since the filter can be slow, you
7061 may want to reduce this value, at the cost of a less effective filter and the
7062 risk of various artefacts.
7063
7064 If the overlapping value doesn't permit processing the whole input width or
7065 height, a warning will be displayed and according borders won't be denoised.
7066
7067 Default value is @var{blocksize}-1, which is the best possible setting.
7068
7069 @item expr, e
7070 Set the coefficient factor expression.
7071
7072 For each coefficient of a DCT block, this expression will be evaluated as a
7073 multiplier value for the coefficient.
7074
7075 If this is option is set, the @option{sigma} option will be ignored.
7076
7077 The absolute value of the coefficient can be accessed through the @var{c}
7078 variable.
7079
7080 @item n
7081 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
7082 @var{blocksize}, which is the width and height of the processed blocks.
7083
7084 The default value is @var{3} (8x8) and can be raised to @var{4} for a
7085 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
7086 on the speed processing. Also, a larger block size does not necessarily means a
7087 better de-noising.
7088 @end table
7089
7090 @subsection Examples
7091
7092 Apply a denoise with a @option{sigma} of @code{4.5}:
7093 @example
7094 dctdnoiz=4.5
7095 @end example
7096
7097 The same operation can be achieved using the expression system:
7098 @example
7099 dctdnoiz=e='gte(c, 4.5*3)'
7100 @end example
7101
7102 Violent denoise using a block size of @code{16x16}:
7103 @example
7104 dctdnoiz=15:n=4
7105 @end example
7106
7107 @section deband
7108
7109 Remove banding artifacts from input video.
7110 It works by replacing banded pixels with average value of referenced pixels.
7111
7112 The filter accepts the following options:
7113
7114 @table @option
7115 @item 1thr
7116 @item 2thr
7117 @item 3thr
7118 @item 4thr
7119 Set banding detection threshold for each plane. Default is 0.02.
7120 Valid range is 0.00003 to 0.5.
7121 If difference between current pixel and reference pixel is less than threshold,
7122 it will be considered as banded.
7123
7124 @item range, r
7125 Banding detection range in pixels. Default is 16. If positive, random number
7126 in range 0 to set value will be used. If negative, exact absolute value
7127 will be used.
7128 The range defines square of four pixels around current pixel.
7129
7130 @item direction, d
7131 Set direction in radians from which four pixel will be compared. If positive,
7132 random direction from 0 to set direction will be picked. If negative, exact of
7133 absolute value will be picked. For example direction 0, -PI or -2*PI radians
7134 will pick only pixels on same row and -PI/2 will pick only pixels on same
7135 column.
7136
7137 @item blur, b
7138 If enabled, current pixel is compared with average value of all four
7139 surrounding pixels. The default is enabled. If disabled current pixel is
7140 compared with all four surrounding pixels. The pixel is considered banded
7141 if only all four differences with surrounding pixels are less than threshold.
7142
7143 @item coupling, c
7144 If enabled, current pixel is changed if and only if all pixel components are banded,
7145 e.g. banding detection threshold is triggered for all color components.
7146 The default is disabled.
7147 @end table
7148
7149 @section deblock
7150
7151 Remove blocking artifacts from input video.
7152
7153 The filter accepts the following options:
7154
7155 @table @option
7156 @item filter
7157 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
7158 This controls what kind of deblocking is applied.
7159
7160 @item block
7161 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
7162
7163 @item alpha
7164 @item beta
7165 @item gamma
7166 @item delta
7167 Set blocking detection thresholds. Allowed range is 0 to 1.
7168 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
7169 Using higher threshold gives more deblocking strength.
7170 Setting @var{alpha} controls threshold detection at exact edge of block.
7171 Remaining options controls threshold detection near the edge. Each one for
7172 below/above or left/right. Setting any of those to @var{0} disables
7173 deblocking.
7174
7175 @item planes
7176 Set planes to filter. Default is to filter all available planes.
7177 @end table
7178
7179 @subsection Examples
7180
7181 @itemize
7182 @item
7183 Deblock using weak filter and block size of 4 pixels.
7184 @example
7185 deblock=filter=weak:block=4
7186 @end example
7187
7188 @item
7189 Deblock using strong filter, block size of 4 pixels and custom thresholds for
7190 deblocking more edges.
7191 @example
7192 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
7193 @end example
7194
7195 @item
7196 Similar as above, but filter only first plane.
7197 @example
7198 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
7199 @end example
7200
7201 @item
7202 Similar as above, but filter only second and third plane.
7203 @example
7204 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
7205 @end example
7206 @end itemize
7207
7208 @anchor{decimate}
7209 @section decimate
7210
7211 Drop duplicated frames at regular intervals.
7212
7213 The filter accepts the following options:
7214
7215 @table @option
7216 @item cycle
7217 Set the number of frames from which one will be dropped. Setting this to
7218 @var{N} means one frame in every batch of @var{N} frames will be dropped.
7219 Default is @code{5}.
7220
7221 @item dupthresh
7222 Set the threshold for duplicate detection. If the difference metric for a frame
7223 is less than or equal to this value, then it is declared as duplicate. Default
7224 is @code{1.1}
7225
7226 @item scthresh
7227 Set scene change threshold. Default is @code{15}.
7228
7229 @item blockx
7230 @item blocky
7231 Set the size of the x and y-axis blocks used during metric calculations.
7232 Larger blocks give better noise suppression, but also give worse detection of
7233 small movements. Must be a power of two. Default is @code{32}.
7234
7235 @item ppsrc
7236 Mark main input as a pre-processed input and activate clean source input
7237 stream. This allows the input to be pre-processed with various filters to help
7238 the metrics calculation while keeping the frame selection lossless. When set to
7239 @code{1}, the first stream is for the pre-processed input, and the second
7240 stream is the clean source from where the kept frames are chosen. Default is
7241 @code{0}.
7242
7243 @item chroma
7244 Set whether or not chroma is considered in the metric calculations. Default is
7245 @code{1}.
7246 @end table
7247
7248 @section deconvolve
7249
7250 Apply 2D deconvolution of video stream in frequency domain using second stream
7251 as impulse.
7252
7253 The filter accepts the following options:
7254
7255 @table @option
7256 @item planes
7257 Set which planes to process.
7258
7259 @item impulse
7260 Set which impulse video frames will be processed, can be @var{first}
7261 or @var{all}. Default is @var{all}.
7262
7263 @item noise
7264 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
7265 and height are not same and not power of 2 or if stream prior to convolving
7266 had noise.
7267 @end table
7268
7269 The @code{deconvolve} filter also supports the @ref{framesync} options.
7270
7271 @section deflate
7272
7273 Apply deflate effect to the video.
7274
7275 This filter replaces the pixel by the local(3x3) average by taking into account
7276 only values lower than the pixel.
7277
7278 It accepts the following options:
7279
7280 @table @option
7281 @item threshold0
7282 @item threshold1
7283 @item threshold2
7284 @item threshold3
7285 Limit the maximum change for each plane, default is 65535.
7286 If 0, plane will remain unchanged.
7287 @end table
7288
7289 @section deflicker
7290
7291 Remove temporal frame luminance variations.
7292
7293 It accepts the following options:
7294
7295 @table @option
7296 @item size, s
7297 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
7298
7299 @item mode, m
7300 Set averaging mode to smooth temporal luminance variations.
7301
7302 Available values are:
7303 @table @samp
7304 @item am
7305 Arithmetic mean
7306
7307 @item gm
7308 Geometric mean
7309
7310 @item hm
7311 Harmonic mean
7312
7313 @item qm
7314 Quadratic mean
7315
7316 @item cm
7317 Cubic mean
7318
7319 @item pm
7320 Power mean
7321
7322 @item median
7323 Median
7324 @end table
7325
7326 @item bypass
7327 Do not actually modify frame. Useful when one only wants metadata.
7328 @end table
7329
7330 @section dejudder
7331
7332 Remove judder produced by partially interlaced telecined content.
7333
7334 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
7335 source was partially telecined content then the output of @code{pullup,dejudder}
7336 will have a variable frame rate. May change the recorded frame rate of the
7337 container. Aside from that change, this filter will not affect constant frame
7338 rate video.
7339
7340 The option available in this filter is:
7341 @table @option
7342
7343 @item cycle
7344 Specify the length of the window over which the judder repeats.
7345
7346 Accepts any integer greater than 1. Useful values are:
7347 @table @samp
7348
7349 @item 4
7350 If the original was telecined from 24 to 30 fps (Film to NTSC).
7351
7352 @item 5
7353 If the original was telecined from 25 to 30 fps (PAL to NTSC).
7354
7355 @item 20
7356 If a mixture of the two.
7357 @end table
7358
7359 The default is @samp{4}.
7360 @end table
7361
7362 @section delogo
7363
7364 Suppress a TV station logo by a simple interpolation of the surrounding
7365 pixels. Just set a rectangle covering the logo and watch it disappear
7366 (and sometimes something even uglier appear - your mileage may vary).
7367
7368 It accepts the following parameters:
7369 @table @option
7370
7371 @item x
7372 @item y
7373 Specify the top left corner coordinates of the logo. They must be
7374 specified.
7375
7376 @item w
7377 @item h
7378 Specify the width and height of the logo to clear. They must be
7379 specified.
7380
7381 @item band, t
7382 Specify the thickness of the fuzzy edge of the rectangle (added to
7383 @var{w} and @var{h}). The default value is 1. This option is
7384 deprecated, setting higher values should no longer be necessary and
7385 is not recommended.
7386
7387 @item show
7388 When set to 1, a green rectangle is drawn on the screen to simplify
7389 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
7390 The default value is 0.
7391
7392 The rectangle is drawn on the outermost pixels which will be (partly)
7393 replaced with interpolated values. The values of the next pixels
7394 immediately outside this rectangle in each direction will be used to
7395 compute the interpolated pixel values inside the rectangle.
7396
7397 @end table
7398
7399 @subsection Examples
7400
7401 @itemize
7402 @item
7403 Set a rectangle covering the area with top left corner coordinates 0,0
7404 and size 100x77, and a band of size 10:
7405 @example
7406 delogo=x=0:y=0:w=100:h=77:band=10
7407 @end example
7408
7409 @end itemize
7410
7411 @section deshake
7412
7413 Attempt to fix small changes in horizontal and/or vertical shift. This
7414 filter helps remove camera shake from hand-holding a camera, bumping a
7415 tripod, moving on a vehicle, etc.
7416
7417 The filter accepts the following options:
7418
7419 @table @option
7420
7421 @item x
7422 @item y
7423 @item w
7424 @item h
7425 Specify a rectangular area where to limit the search for motion
7426 vectors.
7427 If desired the search for motion vectors can be limited to a
7428 rectangular area of the frame defined by its top left corner, width
7429 and height. These parameters have the same meaning as the drawbox
7430 filter which can be used to visualise the position of the bounding
7431 box.
7432
7433 This is useful when simultaneous movement of subjects within the frame
7434 might be confused for camera motion by the motion vector search.
7435
7436 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
7437 then the full frame is used. This allows later options to be set
7438 without specifying the bounding box for the motion vector search.
7439
7440 Default - search the whole frame.
7441
7442 @item rx
7443 @item ry
7444 Specify the maximum extent of movement in x and y directions in the
7445 range 0-64 pixels. Default 16.
7446
7447 @item edge
7448 Specify how to generate pixels to fill blanks at the edge of the
7449 frame. Available values are:
7450 @table @samp
7451 @item blank, 0
7452 Fill zeroes at blank locations
7453 @item original, 1
7454 Original image at blank locations
7455 @item clamp, 2
7456 Extruded edge value at blank locations
7457 @item mirror, 3
7458 Mirrored edge at blank locations
7459 @end table
7460 Default value is @samp{mirror}.
7461
7462 @item blocksize
7463 Specify the blocksize to use for motion search. Range 4-128 pixels,
7464 default 8.
7465
7466 @item contrast
7467 Specify the contrast threshold for blocks. Only blocks with more than
7468 the specified contrast (difference between darkest and lightest
7469 pixels) will be considered. Range 1-255, default 125.
7470
7471 @item search
7472 Specify the search strategy. Available values are:
7473 @table @samp
7474 @item exhaustive, 0
7475 Set exhaustive search
7476 @item less, 1
7477 Set less exhaustive search.
7478 @end table
7479 Default value is @samp{exhaustive}.
7480
7481 @item filename
7482 If set then a detailed log of the motion search is written to the
7483 specified file.
7484
7485 @end table
7486
7487 @section despill
7488
7489 Remove unwanted contamination of foreground colors, caused by reflected color of
7490 greenscreen or bluescreen.
7491
7492 This filter accepts the following options:
7493
7494 @table @option
7495 @item type
7496 Set what type of despill to use.
7497
7498 @item mix
7499 Set how spillmap will be generated.
7500
7501 @item expand
7502 Set how much to get rid of still remaining spill.
7503
7504 @item red
7505 Controls amount of red in spill area.
7506
7507 @item green
7508 Controls amount of green in spill area.
7509 Should be -1 for greenscreen.
7510
7511 @item blue
7512 Controls amount of blue in spill area.
7513 Should be -1 for bluescreen.
7514
7515 @item brightness
7516 Controls brightness of spill area, preserving colors.
7517
7518 @item alpha
7519 Modify alpha from generated spillmap.
7520 @end table
7521
7522 @section detelecine
7523
7524 Apply an exact inverse of the telecine operation. It requires a predefined
7525 pattern specified using the pattern option which must be the same as that passed
7526 to the telecine filter.
7527
7528 This filter accepts the following options:
7529
7530 @table @option
7531 @item first_field
7532 @table @samp
7533 @item top, t
7534 top field first
7535 @item bottom, b
7536 bottom field first
7537 The default value is @code{top}.
7538 @end table
7539
7540 @item pattern
7541 A string of numbers representing the pulldown pattern you wish to apply.
7542 The default value is @code{23}.
7543
7544 @item start_frame
7545 A number representing position of the first frame with respect to the telecine
7546 pattern. This is to be used if the stream is cut. The default value is @code{0}.
7547 @end table
7548
7549 @section dilation
7550
7551 Apply dilation effect to the video.
7552
7553 This filter replaces the pixel by the local(3x3) maximum.
7554
7555 It accepts the following options:
7556
7557 @table @option
7558 @item threshold0
7559 @item threshold1
7560 @item threshold2
7561 @item threshold3
7562 Limit the maximum change for each plane, default is 65535.
7563 If 0, plane will remain unchanged.
7564
7565 @item coordinates
7566 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7567 pixels are used.
7568
7569 Flags to local 3x3 coordinates maps like this:
7570
7571     1 2 3
7572     4   5
7573     6 7 8
7574 @end table
7575
7576 @section displace
7577
7578 Displace pixels as indicated by second and third input stream.
7579
7580 It takes three input streams and outputs one stream, the first input is the
7581 source, and second and third input are displacement maps.
7582
7583 The second input specifies how much to displace pixels along the
7584 x-axis, while the third input specifies how much to displace pixels
7585 along the y-axis.
7586 If one of displacement map streams terminates, last frame from that
7587 displacement map will be used.
7588
7589 Note that once generated, displacements maps can be reused over and over again.
7590
7591 A description of the accepted options follows.
7592
7593 @table @option
7594 @item edge
7595 Set displace behavior for pixels that are out of range.
7596
7597 Available values are:
7598 @table @samp
7599 @item blank
7600 Missing pixels are replaced by black pixels.
7601
7602 @item smear
7603 Adjacent pixels will spread out to replace missing pixels.
7604
7605 @item wrap
7606 Out of range pixels are wrapped so they point to pixels of other side.
7607
7608 @item mirror
7609 Out of range pixels will be replaced with mirrored pixels.
7610 @end table
7611 Default is @samp{smear}.
7612
7613 @end table
7614
7615 @subsection Examples
7616
7617 @itemize
7618 @item
7619 Add ripple effect to rgb input of video size hd720:
7620 @example
7621 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
7622 @end example
7623
7624 @item
7625 Add wave effect to rgb input of video size hd720:
7626 @example
7627 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
7628 @end example
7629 @end itemize
7630
7631 @section drawbox
7632
7633 Draw a colored box on the input image.
7634
7635 It accepts the following parameters:
7636
7637 @table @option
7638 @item x
7639 @item y
7640 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
7641
7642 @item width, w
7643 @item height, h
7644 The expressions which specify the width and height of the box; if 0 they are interpreted as
7645 the input width and height. It defaults to 0.
7646
7647 @item color, c
7648 Specify the color of the box to write. For the general syntax of this option,
7649 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
7650 value @code{invert} is used, the box edge color is the same as the
7651 video with inverted luma.
7652
7653 @item thickness, t
7654 The expression which sets the thickness of the box edge.
7655 A value of @code{fill} will create a filled box. Default value is @code{3}.
7656
7657 See below for the list of accepted constants.
7658
7659 @item replace
7660 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
7661 will overwrite the video's color and alpha pixels.
7662 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
7663 @end table
7664
7665 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
7666 following constants:
7667
7668 @table @option
7669 @item dar
7670 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
7671
7672 @item hsub
7673 @item vsub
7674 horizontal and vertical chroma subsample values. For example for the
7675 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7676
7677 @item in_h, ih
7678 @item in_w, iw
7679 The input width and height.
7680
7681 @item sar
7682 The input sample aspect ratio.
7683
7684 @item x
7685 @item y
7686 The x and y offset coordinates where the box is drawn.
7687
7688 @item w
7689 @item h
7690 The width and height of the drawn box.
7691
7692 @item t
7693 The thickness of the drawn box.
7694
7695 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
7696 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
7697
7698 @end table
7699
7700 @subsection Examples
7701
7702 @itemize
7703 @item
7704 Draw a black box around the edge of the input image:
7705 @example
7706 drawbox
7707 @end example
7708
7709 @item
7710 Draw a box with color red and an opacity of 50%:
7711 @example
7712 drawbox=10:20:200:60:red@@0.5
7713 @end example
7714
7715 The previous example can be specified as:
7716 @example
7717 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
7718 @end example
7719
7720 @item
7721 Fill the box with pink color:
7722 @example
7723 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
7724 @end example
7725
7726 @item
7727 Draw a 2-pixel red 2.40:1 mask:
7728 @example
7729 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
7730 @end example
7731 @end itemize
7732
7733 @section drawgrid
7734
7735 Draw a grid on the input image.
7736
7737 It accepts the following parameters:
7738
7739 @table @option
7740 @item x
7741 @item y
7742 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
7743
7744 @item width, w
7745 @item height, h
7746 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
7747 input width and height, respectively, minus @code{thickness}, so image gets
7748 framed. Default to 0.
7749
7750 @item color, c
7751 Specify the color of the grid. For the general syntax of this option,
7752 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
7753 value @code{invert} is used, the grid color is the same as the
7754 video with inverted luma.
7755
7756 @item thickness, t
7757 The expression which sets the thickness of the grid line. Default value is @code{1}.
7758
7759 See below for the list of accepted constants.
7760
7761 @item replace
7762 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
7763 will overwrite the video's color and alpha pixels.
7764 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
7765 @end table
7766
7767 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
7768 following constants:
7769
7770 @table @option
7771 @item dar
7772 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
7773
7774 @item hsub
7775 @item vsub
7776 horizontal and vertical chroma subsample values. For example for the
7777 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7778
7779 @item in_h, ih
7780 @item in_w, iw
7781 The input grid cell width and height.
7782
7783 @item sar
7784 The input sample aspect ratio.
7785
7786 @item x
7787 @item y
7788 The x and y coordinates of some point of grid intersection (meant to configure offset).
7789
7790 @item w
7791 @item h
7792 The width and height of the drawn cell.
7793
7794 @item t
7795 The thickness of the drawn cell.
7796
7797 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
7798 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
7799
7800 @end table
7801
7802 @subsection Examples
7803
7804 @itemize
7805 @item
7806 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
7807 @example
7808 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
7809 @end example
7810
7811 @item
7812 Draw a white 3x3 grid with an opacity of 50%:
7813 @example
7814 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
7815 @end example
7816 @end itemize
7817
7818 @anchor{drawtext}
7819 @section drawtext
7820
7821 Draw a text string or text from a specified file on top of a video, using the
7822 libfreetype library.
7823
7824 To enable compilation of this filter, you need to configure FFmpeg with
7825 @code{--enable-libfreetype}.
7826 To enable default font fallback and the @var{font} option you need to
7827 configure FFmpeg with @code{--enable-libfontconfig}.
7828 To enable the @var{text_shaping} option, you need to configure FFmpeg with
7829 @code{--enable-libfribidi}.
7830
7831 @subsection Syntax
7832
7833 It accepts the following parameters:
7834
7835 @table @option
7836
7837 @item box
7838 Used to draw a box around text using the background color.
7839 The value must be either 1 (enable) or 0 (disable).
7840 The default value of @var{box} is 0.
7841
7842 @item boxborderw
7843 Set the width of the border to be drawn around the box using @var{boxcolor}.
7844 The default value of @var{boxborderw} is 0.
7845
7846 @item boxcolor
7847 The color to be used for drawing box around text. For the syntax of this
7848 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
7849
7850 The default value of @var{boxcolor} is "white".
7851
7852 @item line_spacing
7853 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
7854 The default value of @var{line_spacing} is 0.
7855
7856 @item borderw
7857 Set the width of the border to be drawn around the text using @var{bordercolor}.
7858 The default value of @var{borderw} is 0.
7859
7860 @item bordercolor
7861 Set the color to be used for drawing border around text. For the syntax of this
7862 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
7863
7864 The default value of @var{bordercolor} is "black".
7865
7866 @item expansion
7867 Select how the @var{text} is expanded. Can be either @code{none},
7868 @code{strftime} (deprecated) or
7869 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
7870 below for details.
7871
7872 @item basetime
7873 Set a start time for the count. Value is in microseconds. Only applied
7874 in the deprecated strftime expansion mode. To emulate in normal expansion
7875 mode use the @code{pts} function, supplying the start time (in seconds)
7876 as the second argument.
7877
7878 @item fix_bounds
7879 If true, check and fix text coords to avoid clipping.
7880
7881 @item fontcolor
7882 The color to be used for drawing fonts. For the syntax of this option, check
7883 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
7884
7885 The default value of @var{fontcolor} is "black".
7886
7887 @item fontcolor_expr
7888 String which is expanded the same way as @var{text} to obtain dynamic
7889 @var{fontcolor} value. By default this option has empty value and is not
7890 processed. When this option is set, it overrides @var{fontcolor} option.
7891
7892 @item font
7893 The font family to be used for drawing text. By default Sans.
7894
7895 @item fontfile
7896 The font file to be used for drawing text. The path must be included.
7897 This parameter is mandatory if the fontconfig support is disabled.
7898
7899 @item alpha
7900 Draw the text applying alpha blending. The value can
7901 be a number between 0.0 and 1.0.
7902 The expression accepts the same variables @var{x, y} as well.
7903 The default value is 1.
7904 Please see @var{fontcolor_expr}.
7905
7906 @item fontsize
7907 The font size to be used for drawing text.
7908 The default value of @var{fontsize} is 16.
7909
7910 @item text_shaping
7911 If set to 1, attempt to shape the text (for example, reverse the order of
7912 right-to-left text and join Arabic characters) before drawing it.
7913 Otherwise, just draw the text exactly as given.
7914 By default 1 (if supported).
7915
7916 @item ft_load_flags
7917 The flags to be used for loading the fonts.
7918
7919 The flags map the corresponding flags supported by libfreetype, and are
7920 a combination of the following values:
7921 @table @var
7922 @item default
7923 @item no_scale
7924 @item no_hinting
7925 @item render
7926 @item no_bitmap
7927 @item vertical_layout
7928 @item force_autohint
7929 @item crop_bitmap
7930 @item pedantic
7931 @item ignore_global_advance_width
7932 @item no_recurse
7933 @item ignore_transform
7934 @item monochrome
7935 @item linear_design
7936 @item no_autohint
7937 @end table
7938
7939 Default value is "default".
7940
7941 For more information consult the documentation for the FT_LOAD_*
7942 libfreetype flags.
7943
7944 @item shadowcolor
7945 The color to be used for drawing a shadow behind the drawn text. For the
7946 syntax of this option, check the @ref{color syntax,,"Color" section in the
7947 ffmpeg-utils manual,ffmpeg-utils}.
7948
7949 The default value of @var{shadowcolor} is "black".
7950
7951 @item shadowx
7952 @item shadowy
7953 The x and y offsets for the text shadow position with respect to the
7954 position of the text. They can be either positive or negative
7955 values. The default value for both is "0".
7956
7957 @item start_number
7958 The starting frame number for the n/frame_num variable. The default value
7959 is "0".
7960
7961 @item tabsize
7962 The size in number of spaces to use for rendering the tab.
7963 Default value is 4.
7964
7965 @item timecode
7966 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
7967 format. It can be used with or without text parameter. @var{timecode_rate}
7968 option must be specified.
7969
7970 @item timecode_rate, rate, r
7971 Set the timecode frame rate (timecode only). Value will be rounded to nearest
7972 integer. Minimum value is "1".
7973 Drop-frame timecode is supported for frame rates 30 & 60.
7974
7975 @item tc24hmax
7976 If set to 1, the output of the timecode option will wrap around at 24 hours.
7977 Default is 0 (disabled).
7978
7979 @item text
7980 The text string to be drawn. The text must be a sequence of UTF-8
7981 encoded characters.
7982 This parameter is mandatory if no file is specified with the parameter
7983 @var{textfile}.
7984
7985 @item textfile
7986 A text file containing text to be drawn. The text must be a sequence
7987 of UTF-8 encoded characters.
7988
7989 This parameter is mandatory if no text string is specified with the
7990 parameter @var{text}.
7991
7992 If both @var{text} and @var{textfile} are specified, an error is thrown.
7993
7994 @item reload
7995 If set to 1, the @var{textfile} will be reloaded before each frame.
7996 Be sure to update it atomically, or it may be read partially, or even fail.
7997
7998 @item x
7999 @item y
8000 The expressions which specify the offsets where text will be drawn
8001 within the video frame. They are relative to the top/left border of the
8002 output image.
8003
8004 The default value of @var{x} and @var{y} is "0".
8005
8006 See below for the list of accepted constants and functions.
8007 @end table
8008
8009 The parameters for @var{x} and @var{y} are expressions containing the
8010 following constants and functions:
8011
8012 @table @option
8013 @item dar
8014 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
8015
8016 @item hsub
8017 @item vsub
8018 horizontal and vertical chroma subsample values. For example for the
8019 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8020
8021 @item line_h, lh
8022 the height of each text line
8023
8024 @item main_h, h, H
8025 the input height
8026
8027 @item main_w, w, W
8028 the input width
8029
8030 @item max_glyph_a, ascent
8031 the maximum distance from the baseline to the highest/upper grid
8032 coordinate used to place a glyph outline point, for all the rendered
8033 glyphs.
8034 It is a positive value, due to the grid's orientation with the Y axis
8035 upwards.
8036
8037 @item max_glyph_d, descent
8038 the maximum distance from the baseline to the lowest grid coordinate
8039 used to place a glyph outline point, for all the rendered glyphs.
8040 This is a negative value, due to the grid's orientation, with the Y axis
8041 upwards.
8042
8043 @item max_glyph_h
8044 maximum glyph height, that is the maximum height for all the glyphs
8045 contained in the rendered text, it is equivalent to @var{ascent} -
8046 @var{descent}.
8047
8048 @item max_glyph_w
8049 maximum glyph width, that is the maximum width for all the glyphs
8050 contained in the rendered text
8051
8052 @item n
8053 the number of input frame, starting from 0
8054
8055 @item rand(min, max)
8056 return a random number included between @var{min} and @var{max}
8057
8058 @item sar
8059 The input sample aspect ratio.
8060
8061 @item t
8062 timestamp expressed in seconds, NAN if the input timestamp is unknown
8063
8064 @item text_h, th
8065 the height of the rendered text
8066
8067 @item text_w, tw
8068 the width of the rendered text
8069
8070 @item x
8071 @item y
8072 the x and y offset coordinates where the text is drawn.
8073
8074 These parameters allow the @var{x} and @var{y} expressions to refer
8075 each other, so you can for example specify @code{y=x/dar}.
8076 @end table
8077
8078 @anchor{drawtext_expansion}
8079 @subsection Text expansion
8080
8081 If @option{expansion} is set to @code{strftime},
8082 the filter recognizes strftime() sequences in the provided text and
8083 expands them accordingly. Check the documentation of strftime(). This
8084 feature is deprecated.
8085
8086 If @option{expansion} is set to @code{none}, the text is printed verbatim.
8087
8088 If @option{expansion} is set to @code{normal} (which is the default),
8089 the following expansion mechanism is used.
8090
8091 The backslash character @samp{\}, followed by any character, always expands to
8092 the second character.
8093
8094 Sequences of the form @code{%@{...@}} are expanded. The text between the
8095 braces is a function name, possibly followed by arguments separated by ':'.
8096 If the arguments contain special characters or delimiters (':' or '@}'),
8097 they should be escaped.
8098
8099 Note that they probably must also be escaped as the value for the
8100 @option{text} option in the filter argument string and as the filter
8101 argument in the filtergraph description, and possibly also for the shell,
8102 that makes up to four levels of escaping; using a text file avoids these
8103 problems.
8104
8105 The following functions are available:
8106
8107 @table @command
8108
8109 @item expr, e
8110 The expression evaluation result.
8111
8112 It must take one argument specifying the expression to be evaluated,
8113 which accepts the same constants and functions as the @var{x} and
8114 @var{y} values. Note that not all constants should be used, for
8115 example the text size is not known when evaluating the expression, so
8116 the constants @var{text_w} and @var{text_h} will have an undefined
8117 value.
8118
8119 @item expr_int_format, eif
8120 Evaluate the expression's value and output as formatted integer.
8121
8122 The first argument is the expression to be evaluated, just as for the @var{expr} function.
8123 The second argument specifies the output format. Allowed values are @samp{x},
8124 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
8125 @code{printf} function.
8126 The third parameter is optional and sets the number of positions taken by the output.
8127 It can be used to add padding with zeros from the left.
8128
8129 @item gmtime
8130 The time at which the filter is running, expressed in UTC.
8131 It can accept an argument: a strftime() format string.
8132
8133 @item localtime
8134 The time at which the filter is running, expressed in the local time zone.
8135 It can accept an argument: a strftime() format string.
8136
8137 @item metadata
8138 Frame metadata. Takes one or two arguments.
8139
8140 The first argument is mandatory and specifies the metadata key.
8141
8142 The second argument is optional and specifies a default value, used when the
8143 metadata key is not found or empty.
8144
8145 @item n, frame_num
8146 The frame number, starting from 0.
8147
8148 @item pict_type
8149 A 1 character description of the current picture type.
8150
8151 @item pts
8152 The timestamp of the current frame.
8153 It can take up to three arguments.
8154
8155 The first argument is the format of the timestamp; it defaults to @code{flt}
8156 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
8157 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
8158 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
8159 @code{localtime} stands for the timestamp of the frame formatted as
8160 local time zone time.
8161
8162 The second argument is an offset added to the timestamp.
8163
8164 If the format is set to @code{localtime} or @code{gmtime},
8165 a third argument may be supplied: a strftime() format string.
8166 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
8167 @end table
8168
8169 @subsection Examples
8170
8171 @itemize
8172 @item
8173 Draw "Test Text" with font FreeSerif, using the default values for the
8174 optional parameters.
8175
8176 @example
8177 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
8178 @end example
8179
8180 @item
8181 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
8182 and y=50 (counting from the top-left corner of the screen), text is
8183 yellow with a red box around it. Both the text and the box have an
8184 opacity of 20%.
8185
8186 @example
8187 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
8188           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
8189 @end example
8190
8191 Note that the double quotes are not necessary if spaces are not used
8192 within the parameter list.
8193
8194 @item
8195 Show the text at the center of the video frame:
8196 @example
8197 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
8198 @end example
8199
8200 @item
8201 Show the text at a random position, switching to a new position every 30 seconds:
8202 @example
8203 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)"
8204 @end example
8205
8206 @item
8207 Show a text line sliding from right to left in the last row of the video
8208 frame. The file @file{LONG_LINE} is assumed to contain a single line
8209 with no newlines.
8210 @example
8211 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
8212 @end example
8213
8214 @item
8215 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
8216 @example
8217 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
8218 @end example
8219
8220 @item
8221 Draw a single green letter "g", at the center of the input video.
8222 The glyph baseline is placed at half screen height.
8223 @example
8224 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
8225 @end example
8226
8227 @item
8228 Show text for 1 second every 3 seconds:
8229 @example
8230 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
8231 @end example
8232
8233 @item
8234 Use fontconfig to set the font. Note that the colons need to be escaped.
8235 @example
8236 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
8237 @end example
8238
8239 @item
8240 Print the date of a real-time encoding (see strftime(3)):
8241 @example
8242 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
8243 @end example
8244
8245 @item
8246 Show text fading in and out (appearing/disappearing):
8247 @example
8248 #!/bin/sh
8249 DS=1.0 # display start
8250 DE=10.0 # display end
8251 FID=1.5 # fade in duration
8252 FOD=5 # fade out duration
8253 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 @}"
8254 @end example
8255
8256 @item
8257 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
8258 and the @option{fontsize} value are included in the @option{y} offset.
8259 @example
8260 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
8261 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
8262 @end example
8263
8264 @end itemize
8265
8266 For more information about libfreetype, check:
8267 @url{http://www.freetype.org/}.
8268
8269 For more information about fontconfig, check:
8270 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
8271
8272 For more information about libfribidi, check:
8273 @url{http://fribidi.org/}.
8274
8275 @section edgedetect
8276
8277 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
8278
8279 The filter accepts the following options:
8280
8281 @table @option
8282 @item low
8283 @item high
8284 Set low and high threshold values used by the Canny thresholding
8285 algorithm.
8286
8287 The high threshold selects the "strong" edge pixels, which are then
8288 connected through 8-connectivity with the "weak" edge pixels selected
8289 by the low threshold.
8290
8291 @var{low} and @var{high} threshold values must be chosen in the range
8292 [0,1], and @var{low} should be lesser or equal to @var{high}.
8293
8294 Default value for @var{low} is @code{20/255}, and default value for @var{high}
8295 is @code{50/255}.
8296
8297 @item mode
8298 Define the drawing mode.
8299
8300 @table @samp
8301 @item wires
8302 Draw white/gray wires on black background.
8303
8304 @item colormix
8305 Mix the colors to create a paint/cartoon effect.
8306
8307 @item canny
8308 Apply Canny edge detector on all selected planes.
8309 @end table
8310 Default value is @var{wires}.
8311
8312 @item planes
8313 Select planes for filtering. By default all available planes are filtered.
8314 @end table
8315
8316 @subsection Examples
8317
8318 @itemize
8319 @item
8320 Standard edge detection with custom values for the hysteresis thresholding:
8321 @example
8322 edgedetect=low=0.1:high=0.4
8323 @end example
8324
8325 @item
8326 Painting effect without thresholding:
8327 @example
8328 edgedetect=mode=colormix:high=0
8329 @end example
8330 @end itemize
8331
8332 @section eq
8333 Set brightness, contrast, saturation and approximate gamma adjustment.
8334
8335 The filter accepts the following options:
8336
8337 @table @option
8338 @item contrast
8339 Set the contrast expression. The value must be a float value in range
8340 @code{-2.0} to @code{2.0}. The default value is "1".
8341
8342 @item brightness
8343 Set the brightness expression. The value must be a float value in
8344 range @code{-1.0} to @code{1.0}. The default value is "0".
8345
8346 @item saturation
8347 Set the saturation expression. The value must be a float in
8348 range @code{0.0} to @code{3.0}. The default value is "1".
8349
8350 @item gamma
8351 Set the gamma expression. The value must be a float in range
8352 @code{0.1} to @code{10.0}.  The default value is "1".
8353
8354 @item gamma_r
8355 Set the gamma expression for red. The value must be a float in
8356 range @code{0.1} to @code{10.0}. The default value is "1".
8357
8358 @item gamma_g
8359 Set the gamma expression for green. The value must be a float in range
8360 @code{0.1} to @code{10.0}. The default value is "1".
8361
8362 @item gamma_b
8363 Set the gamma expression for blue. The value must be a float in range
8364 @code{0.1} to @code{10.0}. The default value is "1".
8365
8366 @item gamma_weight
8367 Set the gamma weight expression. It can be used to reduce the effect
8368 of a high gamma value on bright image areas, e.g. keep them from
8369 getting overamplified and just plain white. The value must be a float
8370 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
8371 gamma correction all the way down while @code{1.0} leaves it at its
8372 full strength. Default is "1".
8373
8374 @item eval
8375 Set when the expressions for brightness, contrast, saturation and
8376 gamma expressions are evaluated.
8377
8378 It accepts the following values:
8379 @table @samp
8380 @item init
8381 only evaluate expressions once during the filter initialization or
8382 when a command is processed
8383
8384 @item frame
8385 evaluate expressions for each incoming frame
8386 @end table
8387
8388 Default value is @samp{init}.
8389 @end table
8390
8391 The expressions accept the following parameters:
8392 @table @option
8393 @item n
8394 frame count of the input frame starting from 0
8395
8396 @item pos
8397 byte position of the corresponding packet in the input file, NAN if
8398 unspecified
8399
8400 @item r
8401 frame rate of the input video, NAN if the input frame rate is unknown
8402
8403 @item t
8404 timestamp expressed in seconds, NAN if the input timestamp is unknown
8405 @end table
8406
8407 @subsection Commands
8408 The filter supports the following commands:
8409
8410 @table @option
8411 @item contrast
8412 Set the contrast expression.
8413
8414 @item brightness
8415 Set the brightness expression.
8416
8417 @item saturation
8418 Set the saturation expression.
8419
8420 @item gamma
8421 Set the gamma expression.
8422
8423 @item gamma_r
8424 Set the gamma_r expression.
8425
8426 @item gamma_g
8427 Set gamma_g expression.
8428
8429 @item gamma_b
8430 Set gamma_b expression.
8431
8432 @item gamma_weight
8433 Set gamma_weight expression.
8434
8435 The command accepts the same syntax of the corresponding option.
8436
8437 If the specified expression is not valid, it is kept at its current
8438 value.
8439
8440 @end table
8441
8442 @section erosion
8443
8444 Apply erosion effect to the video.
8445
8446 This filter replaces the pixel by the local(3x3) minimum.
8447
8448 It accepts the following options:
8449
8450 @table @option
8451 @item threshold0
8452 @item threshold1
8453 @item threshold2
8454 @item threshold3
8455 Limit the maximum change for each plane, default is 65535.
8456 If 0, plane will remain unchanged.
8457
8458 @item coordinates
8459 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
8460 pixels are used.
8461
8462 Flags to local 3x3 coordinates maps like this:
8463
8464     1 2 3
8465     4   5
8466     6 7 8
8467 @end table
8468
8469 @section extractplanes
8470
8471 Extract color channel components from input video stream into
8472 separate grayscale video streams.
8473
8474 The filter accepts the following option:
8475
8476 @table @option
8477 @item planes
8478 Set plane(s) to extract.
8479
8480 Available values for planes are:
8481 @table @samp
8482 @item y
8483 @item u
8484 @item v
8485 @item a
8486 @item r
8487 @item g
8488 @item b
8489 @end table
8490
8491 Choosing planes not available in the input will result in an error.
8492 That means you cannot select @code{r}, @code{g}, @code{b} planes
8493 with @code{y}, @code{u}, @code{v} planes at same time.
8494 @end table
8495
8496 @subsection Examples
8497
8498 @itemize
8499 @item
8500 Extract luma, u and v color channel component from input video frame
8501 into 3 grayscale outputs:
8502 @example
8503 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
8504 @end example
8505 @end itemize
8506
8507 @section elbg
8508
8509 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
8510
8511 For each input image, the filter will compute the optimal mapping from
8512 the input to the output given the codebook length, that is the number
8513 of distinct output colors.
8514
8515 This filter accepts the following options.
8516
8517 @table @option
8518 @item codebook_length, l
8519 Set codebook length. The value must be a positive integer, and
8520 represents the number of distinct output colors. Default value is 256.
8521
8522 @item nb_steps, n
8523 Set the maximum number of iterations to apply for computing the optimal
8524 mapping. The higher the value the better the result and the higher the
8525 computation time. Default value is 1.
8526
8527 @item seed, s
8528 Set a random seed, must be an integer included between 0 and
8529 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
8530 will try to use a good random seed on a best effort basis.
8531
8532 @item pal8
8533 Set pal8 output pixel format. This option does not work with codebook
8534 length greater than 256.
8535 @end table
8536
8537 @section entropy
8538
8539 Measure graylevel entropy in histogram of color channels of video frames.
8540
8541 It accepts the following parameters:
8542
8543 @table @option
8544 @item mode
8545 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
8546
8547 @var{diff} mode measures entropy of histogram delta values, absolute differences
8548 between neighbour histogram values.
8549 @end table
8550
8551 @section fade
8552
8553 Apply a fade-in/out effect to the input video.
8554
8555 It accepts the following parameters:
8556
8557 @table @option
8558 @item type, t
8559 The effect type can be either "in" for a fade-in, or "out" for a fade-out
8560 effect.
8561 Default is @code{in}.
8562
8563 @item start_frame, s
8564 Specify the number of the frame to start applying the fade
8565 effect at. Default is 0.
8566
8567 @item nb_frames, n
8568 The number of frames that the fade effect lasts. At the end of the
8569 fade-in effect, the output video will have the same intensity as the input video.
8570 At the end of the fade-out transition, the output video will be filled with the
8571 selected @option{color}.
8572 Default is 25.
8573
8574 @item alpha
8575 If set to 1, fade only alpha channel, if one exists on the input.
8576 Default value is 0.
8577
8578 @item start_time, st
8579 Specify the timestamp (in seconds) of the frame to start to apply the fade
8580 effect. If both start_frame and start_time are specified, the fade will start at
8581 whichever comes last.  Default is 0.
8582
8583 @item duration, d
8584 The number of seconds for which the fade effect has to last. At the end of the
8585 fade-in effect the output video will have the same intensity as the input video,
8586 at the end of the fade-out transition the output video will be filled with the
8587 selected @option{color}.
8588 If both duration and nb_frames are specified, duration is used. Default is 0
8589 (nb_frames is used by default).
8590
8591 @item color, c
8592 Specify the color of the fade. Default is "black".
8593 @end table
8594
8595 @subsection Examples
8596
8597 @itemize
8598 @item
8599 Fade in the first 30 frames of video:
8600 @example
8601 fade=in:0:30
8602 @end example
8603
8604 The command above is equivalent to:
8605 @example
8606 fade=t=in:s=0:n=30
8607 @end example
8608
8609 @item
8610 Fade out the last 45 frames of a 200-frame video:
8611 @example
8612 fade=out:155:45
8613 fade=type=out:start_frame=155:nb_frames=45
8614 @end example
8615
8616 @item
8617 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
8618 @example
8619 fade=in:0:25, fade=out:975:25
8620 @end example
8621
8622 @item
8623 Make the first 5 frames yellow, then fade in from frame 5-24:
8624 @example
8625 fade=in:5:20:color=yellow
8626 @end example
8627
8628 @item
8629 Fade in alpha over first 25 frames of video:
8630 @example
8631 fade=in:0:25:alpha=1
8632 @end example
8633
8634 @item
8635 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
8636 @example
8637 fade=t=in:st=5.5:d=0.5
8638 @end example
8639
8640 @end itemize
8641
8642 @section fftfilt
8643 Apply arbitrary expressions to samples in frequency domain
8644
8645 @table @option
8646 @item dc_Y
8647 Adjust the dc value (gain) of the luma plane of the image. The filter
8648 accepts an integer value in range @code{0} to @code{1000}. The default
8649 value is set to @code{0}.
8650
8651 @item dc_U
8652 Adjust the dc value (gain) of the 1st chroma plane of the image. The
8653 filter accepts an integer value in range @code{0} to @code{1000}. The
8654 default value is set to @code{0}.
8655
8656 @item dc_V
8657 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
8658 filter accepts an integer value in range @code{0} to @code{1000}. The
8659 default value is set to @code{0}.
8660
8661 @item weight_Y
8662 Set the frequency domain weight expression for the luma plane.
8663
8664 @item weight_U
8665 Set the frequency domain weight expression for the 1st chroma plane.
8666
8667 @item weight_V
8668 Set the frequency domain weight expression for the 2nd chroma plane.
8669
8670 @item eval
8671 Set when the expressions are evaluated.
8672
8673 It accepts the following values:
8674 @table @samp
8675 @item init
8676 Only evaluate expressions once during the filter initialization.
8677
8678 @item frame
8679 Evaluate expressions for each incoming frame.
8680 @end table
8681
8682 Default value is @samp{init}.
8683
8684 The filter accepts the following variables:
8685 @item X
8686 @item Y
8687 The coordinates of the current sample.
8688
8689 @item W
8690 @item H
8691 The width and height of the image.
8692
8693 @item N
8694 The number of input frame, starting from 0.
8695 @end table
8696
8697 @subsection Examples
8698
8699 @itemize
8700 @item
8701 High-pass:
8702 @example
8703 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
8704 @end example
8705
8706 @item
8707 Low-pass:
8708 @example
8709 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
8710 @end example
8711
8712 @item
8713 Sharpen:
8714 @example
8715 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
8716 @end example
8717
8718 @item
8719 Blur:
8720 @example
8721 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
8722 @end example
8723
8724 @end itemize
8725
8726 @section fftdnoiz
8727 Denoise frames using 3D FFT (frequency domain filtering).
8728
8729 The filter accepts the following options:
8730
8731 @table @option
8732 @item sigma
8733 Set the noise sigma constant. This sets denoising strength.
8734 Default value is 1. Allowed range is from 0 to 30.
8735 Using very high sigma with low overlap may give blocking artifacts.
8736
8737 @item amount
8738 Set amount of denoising. By default all detected noise is reduced.
8739 Default value is 1. Allowed range is from 0 to 1.
8740
8741 @item block
8742 Set size of block, Default is 4, can be 3, 4, 5 or 6.
8743 Actual size of block in pixels is 2 to power of @var{block}, so by default
8744 block size in pixels is 2^4 which is 16.
8745
8746 @item overlap
8747 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
8748
8749 @item prev
8750 Set number of previous frames to use for denoising. By default is set to 0.
8751
8752 @item next
8753 Set number of next frames to to use for denoising. By default is set to 0.
8754
8755 @item planes
8756 Set planes which will be filtered, by default are all available filtered
8757 except alpha.
8758 @end table
8759
8760 @section field
8761
8762 Extract a single field from an interlaced image using stride
8763 arithmetic to avoid wasting CPU time. The output frames are marked as
8764 non-interlaced.
8765
8766 The filter accepts the following options:
8767
8768 @table @option
8769 @item type
8770 Specify whether to extract the top (if the value is @code{0} or
8771 @code{top}) or the bottom field (if the value is @code{1} or
8772 @code{bottom}).
8773 @end table
8774
8775 @section fieldhint
8776
8777 Create new frames by copying the top and bottom fields from surrounding frames
8778 supplied as numbers by the hint file.
8779
8780 @table @option
8781 @item hint
8782 Set file containing hints: absolute/relative frame numbers.
8783
8784 There must be one line for each frame in a clip. Each line must contain two
8785 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
8786 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
8787 is current frame number for @code{absolute} mode or out of [-1, 1] range
8788 for @code{relative} mode. First number tells from which frame to pick up top
8789 field and second number tells from which frame to pick up bottom field.
8790
8791 If optionally followed by @code{+} output frame will be marked as interlaced,
8792 else if followed by @code{-} output frame will be marked as progressive, else
8793 it will be marked same as input frame.
8794 If line starts with @code{#} or @code{;} that line is skipped.
8795
8796 @item mode
8797 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
8798 @end table
8799
8800 Example of first several lines of @code{hint} file for @code{relative} mode:
8801 @example
8802 0,0 - # first frame
8803 1,0 - # second frame, use third's frame top field and second's frame bottom field
8804 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
8805 1,0 -
8806 0,0 -
8807 0,0 -
8808 1,0 -
8809 1,0 -
8810 1,0 -
8811 0,0 -
8812 0,0 -
8813 1,0 -
8814 1,0 -
8815 1,0 -
8816 0,0 -
8817 @end example
8818
8819 @section fieldmatch
8820
8821 Field matching filter for inverse telecine. It is meant to reconstruct the
8822 progressive frames from a telecined stream. The filter does not drop duplicated
8823 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
8824 followed by a decimation filter such as @ref{decimate} in the filtergraph.
8825
8826 The separation of the field matching and the decimation is notably motivated by
8827 the possibility of inserting a de-interlacing filter fallback between the two.
8828 If the source has mixed telecined and real interlaced content,
8829 @code{fieldmatch} will not be able to match fields for the interlaced parts.
8830 But these remaining combed frames will be marked as interlaced, and thus can be
8831 de-interlaced by a later filter such as @ref{yadif} before decimation.
8832
8833 In addition to the various configuration options, @code{fieldmatch} can take an
8834 optional second stream, activated through the @option{ppsrc} option. If
8835 enabled, the frames reconstruction will be based on the fields and frames from
8836 this second stream. This allows the first input to be pre-processed in order to
8837 help the various algorithms of the filter, while keeping the output lossless
8838 (assuming the fields are matched properly). Typically, a field-aware denoiser,
8839 or brightness/contrast adjustments can help.
8840
8841 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
8842 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
8843 which @code{fieldmatch} is based on. While the semantic and usage are very
8844 close, some behaviour and options names can differ.
8845
8846 The @ref{decimate} filter currently only works for constant frame rate input.
8847 If your input has mixed telecined (30fps) and progressive content with a lower
8848 framerate like 24fps use the following filterchain to produce the necessary cfr
8849 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
8850
8851 The filter accepts the following options:
8852
8853 @table @option
8854 @item order
8855 Specify the assumed field order of the input stream. Available values are:
8856
8857 @table @samp
8858 @item auto
8859 Auto detect parity (use FFmpeg's internal parity value).
8860 @item bff
8861 Assume bottom field first.
8862 @item tff
8863 Assume top field first.
8864 @end table
8865
8866 Note that it is sometimes recommended not to trust the parity announced by the
8867 stream.
8868
8869 Default value is @var{auto}.
8870
8871 @item mode
8872 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
8873 sense that it won't risk creating jerkiness due to duplicate frames when
8874 possible, but if there are bad edits or blended fields it will end up
8875 outputting combed frames when a good match might actually exist. On the other
8876 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
8877 but will almost always find a good frame if there is one. The other values are
8878 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
8879 jerkiness and creating duplicate frames versus finding good matches in sections
8880 with bad edits, orphaned fields, blended fields, etc.
8881
8882 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
8883
8884 Available values are:
8885
8886 @table @samp
8887 @item pc
8888 2-way matching (p/c)
8889 @item pc_n
8890 2-way matching, and trying 3rd match if still combed (p/c + n)
8891 @item pc_u
8892 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
8893 @item pc_n_ub
8894 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
8895 still combed (p/c + n + u/b)
8896 @item pcn
8897 3-way matching (p/c/n)
8898 @item pcn_ub
8899 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
8900 detected as combed (p/c/n + u/b)
8901 @end table
8902
8903 The parenthesis at the end indicate the matches that would be used for that
8904 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
8905 @var{top}).
8906
8907 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
8908 the slowest.
8909
8910 Default value is @var{pc_n}.
8911
8912 @item ppsrc
8913 Mark the main input stream as a pre-processed input, and enable the secondary
8914 input stream as the clean source to pick the fields from. See the filter
8915 introduction for more details. It is similar to the @option{clip2} feature from
8916 VFM/TFM.
8917
8918 Default value is @code{0} (disabled).
8919
8920 @item field
8921 Set the field to match from. It is recommended to set this to the same value as
8922 @option{order} unless you experience matching failures with that setting. In
8923 certain circumstances changing the field that is used to match from can have a
8924 large impact on matching performance. Available values are:
8925
8926 @table @samp
8927 @item auto
8928 Automatic (same value as @option{order}).
8929 @item bottom
8930 Match from the bottom field.
8931 @item top
8932 Match from the top field.
8933 @end table
8934
8935 Default value is @var{auto}.
8936
8937 @item mchroma
8938 Set whether or not chroma is included during the match comparisons. In most
8939 cases it is recommended to leave this enabled. You should set this to @code{0}
8940 only if your clip has bad chroma problems such as heavy rainbowing or other
8941 artifacts. Setting this to @code{0} could also be used to speed things up at
8942 the cost of some accuracy.
8943
8944 Default value is @code{1}.
8945
8946 @item y0
8947 @item y1
8948 These define an exclusion band which excludes the lines between @option{y0} and
8949 @option{y1} from being included in the field matching decision. An exclusion
8950 band can be used to ignore subtitles, a logo, or other things that may
8951 interfere with the matching. @option{y0} sets the starting scan line and
8952 @option{y1} sets the ending line; all lines in between @option{y0} and
8953 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
8954 @option{y0} and @option{y1} to the same value will disable the feature.
8955 @option{y0} and @option{y1} defaults to @code{0}.
8956
8957 @item scthresh
8958 Set the scene change detection threshold as a percentage of maximum change on
8959 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
8960 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
8961 @option{scthresh} is @code{[0.0, 100.0]}.
8962
8963 Default value is @code{12.0}.
8964
8965 @item combmatch
8966 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
8967 account the combed scores of matches when deciding what match to use as the
8968 final match. Available values are:
8969
8970 @table @samp
8971 @item none
8972 No final matching based on combed scores.
8973 @item sc
8974 Combed scores are only used when a scene change is detected.
8975 @item full
8976 Use combed scores all the time.
8977 @end table
8978
8979 Default is @var{sc}.
8980
8981 @item combdbg
8982 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
8983 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
8984 Available values are:
8985
8986 @table @samp
8987 @item none
8988 No forced calculation.
8989 @item pcn
8990 Force p/c/n calculations.
8991 @item pcnub
8992 Force p/c/n/u/b calculations.
8993 @end table
8994
8995 Default value is @var{none}.
8996
8997 @item cthresh
8998 This is the area combing threshold used for combed frame detection. This
8999 essentially controls how "strong" or "visible" combing must be to be detected.
9000 Larger values mean combing must be more visible and smaller values mean combing
9001 can be less visible or strong and still be detected. Valid settings are from
9002 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
9003 be detected as combed). This is basically a pixel difference value. A good
9004 range is @code{[8, 12]}.
9005
9006 Default value is @code{9}.
9007
9008 @item chroma
9009 Sets whether or not chroma is considered in the combed frame decision.  Only
9010 disable this if your source has chroma problems (rainbowing, etc.) that are
9011 causing problems for the combed frame detection with chroma enabled. Actually,
9012 using @option{chroma}=@var{0} is usually more reliable, except for the case
9013 where there is chroma only combing in the source.
9014
9015 Default value is @code{0}.
9016
9017 @item blockx
9018 @item blocky
9019 Respectively set the x-axis and y-axis size of the window used during combed
9020 frame detection. This has to do with the size of the area in which
9021 @option{combpel} pixels are required to be detected as combed for a frame to be
9022 declared combed. See the @option{combpel} parameter description for more info.
9023 Possible values are any number that is a power of 2 starting at 4 and going up
9024 to 512.
9025
9026 Default value is @code{16}.
9027
9028 @item combpel
9029 The number of combed pixels inside any of the @option{blocky} by
9030 @option{blockx} size blocks on the frame for the frame to be detected as
9031 combed. While @option{cthresh} controls how "visible" the combing must be, this
9032 setting controls "how much" combing there must be in any localized area (a
9033 window defined by the @option{blockx} and @option{blocky} settings) on the
9034 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
9035 which point no frames will ever be detected as combed). This setting is known
9036 as @option{MI} in TFM/VFM vocabulary.
9037
9038 Default value is @code{80}.
9039 @end table
9040
9041 @anchor{p/c/n/u/b meaning}
9042 @subsection p/c/n/u/b meaning
9043
9044 @subsubsection p/c/n
9045
9046 We assume the following telecined stream:
9047
9048 @example
9049 Top fields:     1 2 2 3 4
9050 Bottom fields:  1 2 3 4 4
9051 @end example
9052
9053 The numbers correspond to the progressive frame the fields relate to. Here, the
9054 first two frames are progressive, the 3rd and 4th are combed, and so on.
9055
9056 When @code{fieldmatch} is configured to run a matching from bottom
9057 (@option{field}=@var{bottom}) this is how this input stream get transformed:
9058
9059 @example
9060 Input stream:
9061                 T     1 2 2 3 4
9062                 B     1 2 3 4 4   <-- matching reference
9063
9064 Matches:              c c n n c
9065
9066 Output stream:
9067                 T     1 2 3 4 4
9068                 B     1 2 3 4 4
9069 @end example
9070
9071 As a result of the field matching, we can see that some frames get duplicated.
9072 To perform a complete inverse telecine, you need to rely on a decimation filter
9073 after this operation. See for instance the @ref{decimate} filter.
9074
9075 The same operation now matching from top fields (@option{field}=@var{top})
9076 looks like this:
9077
9078 @example
9079 Input stream:
9080                 T     1 2 2 3 4   <-- matching reference
9081                 B     1 2 3 4 4
9082
9083 Matches:              c c p p c
9084
9085 Output stream:
9086                 T     1 2 2 3 4
9087                 B     1 2 2 3 4
9088 @end example
9089
9090 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
9091 basically, they refer to the frame and field of the opposite parity:
9092
9093 @itemize
9094 @item @var{p} matches the field of the opposite parity in the previous frame
9095 @item @var{c} matches the field of the opposite parity in the current frame
9096 @item @var{n} matches the field of the opposite parity in the next frame
9097 @end itemize
9098
9099 @subsubsection u/b
9100
9101 The @var{u} and @var{b} matching are a bit special in the sense that they match
9102 from the opposite parity flag. In the following examples, we assume that we are
9103 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
9104 'x' is placed above and below each matched fields.
9105
9106 With bottom matching (@option{field}=@var{bottom}):
9107 @example
9108 Match:           c         p           n          b          u
9109
9110                  x       x               x        x          x
9111   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
9112   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
9113                  x         x           x        x              x
9114
9115 Output frames:
9116                  2          1          2          2          2
9117                  2          2          2          1          3
9118 @end example
9119
9120 With top matching (@option{field}=@var{top}):
9121 @example
9122 Match:           c         p           n          b          u
9123
9124                  x         x           x        x              x
9125   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
9126   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
9127                  x       x               x        x          x
9128
9129 Output frames:
9130                  2          2          2          1          2
9131                  2          1          3          2          2
9132 @end example
9133
9134 @subsection Examples
9135
9136 Simple IVTC of a top field first telecined stream:
9137 @example
9138 fieldmatch=order=tff:combmatch=none, decimate
9139 @end example
9140
9141 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
9142 @example
9143 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
9144 @end example
9145
9146 @section fieldorder
9147
9148 Transform the field order of the input video.
9149
9150 It accepts the following parameters:
9151
9152 @table @option
9153
9154 @item order
9155 The output field order. Valid values are @var{tff} for top field first or @var{bff}
9156 for bottom field first.
9157 @end table
9158
9159 The default value is @samp{tff}.
9160
9161 The transformation is done by shifting the picture content up or down
9162 by one line, and filling the remaining line with appropriate picture content.
9163 This method is consistent with most broadcast field order converters.
9164
9165 If the input video is not flagged as being interlaced, or it is already
9166 flagged as being of the required output field order, then this filter does
9167 not alter the incoming video.
9168
9169 It is very useful when converting to or from PAL DV material,
9170 which is bottom field first.
9171
9172 For example:
9173 @example
9174 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
9175 @end example
9176
9177 @section fifo, afifo
9178
9179 Buffer input images and send them when they are requested.
9180
9181 It is mainly useful when auto-inserted by the libavfilter
9182 framework.
9183
9184 It does not take parameters.
9185
9186 @section fillborders
9187
9188 Fill borders of the input video, without changing video stream dimensions.
9189 Sometimes video can have garbage at the four edges and you may not want to
9190 crop video input to keep size multiple of some number.
9191
9192 This filter accepts the following options:
9193
9194 @table @option
9195 @item left
9196 Number of pixels to fill from left border.
9197
9198 @item right
9199 Number of pixels to fill from right border.
9200
9201 @item top
9202 Number of pixels to fill from top border.
9203
9204 @item bottom
9205 Number of pixels to fill from bottom border.
9206
9207 @item mode
9208 Set fill mode.
9209
9210 It accepts the following values:
9211 @table @samp
9212 @item smear
9213 fill pixels using outermost pixels
9214
9215 @item mirror
9216 fill pixels using mirroring
9217
9218 @item fixed
9219 fill pixels with constant value
9220 @end table
9221
9222 Default is @var{smear}.
9223
9224 @item color
9225 Set color for pixels in fixed mode. Default is @var{black}.
9226 @end table
9227
9228 @section find_rect
9229
9230 Find a rectangular object
9231
9232 It accepts the following options:
9233
9234 @table @option
9235 @item object
9236 Filepath of the object image, needs to be in gray8.
9237
9238 @item threshold
9239 Detection threshold, default is 0.5.
9240
9241 @item mipmaps
9242 Number of mipmaps, default is 3.
9243
9244 @item xmin, ymin, xmax, ymax
9245 Specifies the rectangle in which to search.
9246 @end table
9247
9248 @subsection Examples
9249
9250 @itemize
9251 @item
9252 Generate a representative palette of a given video using @command{ffmpeg}:
9253 @example
9254 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
9255 @end example
9256 @end itemize
9257
9258 @section cover_rect
9259
9260 Cover a rectangular object
9261
9262 It accepts the following options:
9263
9264 @table @option
9265 @item cover
9266 Filepath of the optional cover image, needs to be in yuv420.
9267
9268 @item mode
9269 Set covering mode.
9270
9271 It accepts the following values:
9272 @table @samp
9273 @item cover
9274 cover it by the supplied image
9275 @item blur
9276 cover it by interpolating the surrounding pixels
9277 @end table
9278
9279 Default value is @var{blur}.
9280 @end table
9281
9282 @subsection Examples
9283
9284 @itemize
9285 @item
9286 Generate a representative palette of a given video using @command{ffmpeg}:
9287 @example
9288 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
9289 @end example
9290 @end itemize
9291
9292 @section floodfill
9293
9294 Flood area with values of same pixel components with another values.
9295
9296 It accepts the following options:
9297 @table @option
9298 @item x
9299 Set pixel x coordinate.
9300
9301 @item y
9302 Set pixel y coordinate.
9303
9304 @item s0
9305 Set source #0 component value.
9306
9307 @item s1
9308 Set source #1 component value.
9309
9310 @item s2
9311 Set source #2 component value.
9312
9313 @item s3
9314 Set source #3 component value.
9315
9316 @item d0
9317 Set destination #0 component value.
9318
9319 @item d1
9320 Set destination #1 component value.
9321
9322 @item d2
9323 Set destination #2 component value.
9324
9325 @item d3
9326 Set destination #3 component value.
9327 @end table
9328
9329 @anchor{format}
9330 @section format
9331
9332 Convert the input video to one of the specified pixel formats.
9333 Libavfilter will try to pick one that is suitable as input to
9334 the next filter.
9335
9336 It accepts the following parameters:
9337 @table @option
9338
9339 @item pix_fmts
9340 A '|'-separated list of pixel format names, such as
9341 "pix_fmts=yuv420p|monow|rgb24".
9342
9343 @end table
9344
9345 @subsection Examples
9346
9347 @itemize
9348 @item
9349 Convert the input video to the @var{yuv420p} format
9350 @example
9351 format=pix_fmts=yuv420p
9352 @end example
9353
9354 Convert the input video to any of the formats in the list
9355 @example
9356 format=pix_fmts=yuv420p|yuv444p|yuv410p
9357 @end example
9358 @end itemize
9359
9360 @anchor{fps}
9361 @section fps
9362
9363 Convert the video to specified constant frame rate by duplicating or dropping
9364 frames as necessary.
9365
9366 It accepts the following parameters:
9367 @table @option
9368
9369 @item fps
9370 The desired output frame rate. The default is @code{25}.
9371
9372 @item start_time
9373 Assume the first PTS should be the given value, in seconds. This allows for
9374 padding/trimming at the start of stream. By default, no assumption is made
9375 about the first frame's expected PTS, so no padding or trimming is done.
9376 For example, this could be set to 0 to pad the beginning with duplicates of
9377 the first frame if a video stream starts after the audio stream or to trim any
9378 frames with a negative PTS.
9379
9380 @item round
9381 Timestamp (PTS) rounding method.
9382
9383 Possible values are:
9384 @table @option
9385 @item zero
9386 round towards 0
9387 @item inf
9388 round away from 0
9389 @item down
9390 round towards -infinity
9391 @item up
9392 round towards +infinity
9393 @item near
9394 round to nearest
9395 @end table
9396 The default is @code{near}.
9397
9398 @item eof_action
9399 Action performed when reading the last frame.
9400
9401 Possible values are:
9402 @table @option
9403 @item round
9404 Use same timestamp rounding method as used for other frames.
9405 @item pass
9406 Pass through last frame if input duration has not been reached yet.
9407 @end table
9408 The default is @code{round}.
9409
9410 @end table
9411
9412 Alternatively, the options can be specified as a flat string:
9413 @var{fps}[:@var{start_time}[:@var{round}]].
9414
9415 See also the @ref{setpts} filter.
9416
9417 @subsection Examples
9418
9419 @itemize
9420 @item
9421 A typical usage in order to set the fps to 25:
9422 @example
9423 fps=fps=25
9424 @end example
9425
9426 @item
9427 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
9428 @example
9429 fps=fps=film:round=near
9430 @end example
9431 @end itemize
9432
9433 @section framepack
9434
9435 Pack two different video streams into a stereoscopic video, setting proper
9436 metadata on supported codecs. The two views should have the same size and
9437 framerate and processing will stop when the shorter video ends. Please note
9438 that you may conveniently adjust view properties with the @ref{scale} and
9439 @ref{fps} filters.
9440
9441 It accepts the following parameters:
9442 @table @option
9443
9444 @item format
9445 The desired packing format. Supported values are:
9446
9447 @table @option
9448
9449 @item sbs
9450 The views are next to each other (default).
9451
9452 @item tab
9453 The views are on top of each other.
9454
9455 @item lines
9456 The views are packed by line.
9457
9458 @item columns
9459 The views are packed by column.
9460
9461 @item frameseq
9462 The views are temporally interleaved.
9463
9464 @end table
9465
9466 @end table
9467
9468 Some examples:
9469
9470 @example
9471 # Convert left and right views into a frame-sequential video
9472 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
9473
9474 # Convert views into a side-by-side video with the same output resolution as the input
9475 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
9476 @end example
9477
9478 @section framerate
9479
9480 Change the frame rate by interpolating new video output frames from the source
9481 frames.
9482
9483 This filter is not designed to function correctly with interlaced media. If
9484 you wish to change the frame rate of interlaced media then you are required
9485 to deinterlace before this filter and re-interlace after this filter.
9486
9487 A description of the accepted options follows.
9488
9489 @table @option
9490 @item fps
9491 Specify the output frames per second. This option can also be specified
9492 as a value alone. The default is @code{50}.
9493
9494 @item interp_start
9495 Specify the start of a range where the output frame will be created as a
9496 linear interpolation of two frames. The range is [@code{0}-@code{255}],
9497 the default is @code{15}.
9498
9499 @item interp_end
9500 Specify the end of a range where the output frame will be created as a
9501 linear interpolation of two frames. The range is [@code{0}-@code{255}],
9502 the default is @code{240}.
9503
9504 @item scene
9505 Specify the level at which a scene change is detected as a value between
9506 0 and 100 to indicate a new scene; a low value reflects a low
9507 probability for the current frame to introduce a new scene, while a higher
9508 value means the current frame is more likely to be one.
9509 The default is @code{8.2}.
9510
9511 @item flags
9512 Specify flags influencing the filter process.
9513
9514 Available value for @var{flags} is:
9515
9516 @table @option
9517 @item scene_change_detect, scd
9518 Enable scene change detection using the value of the option @var{scene}.
9519 This flag is enabled by default.
9520 @end table
9521 @end table
9522
9523 @section framestep
9524
9525 Select one frame every N-th frame.
9526
9527 This filter accepts the following option:
9528 @table @option
9529 @item step
9530 Select frame after every @code{step} frames.
9531 Allowed values are positive integers higher than 0. Default value is @code{1}.
9532 @end table
9533
9534 @anchor{frei0r}
9535 @section frei0r
9536
9537 Apply a frei0r effect to the input video.
9538
9539 To enable the compilation of this filter, you need to install the frei0r
9540 header and configure FFmpeg with @code{--enable-frei0r}.
9541
9542 It accepts the following parameters:
9543
9544 @table @option
9545
9546 @item filter_name
9547 The name of the frei0r effect to load. If the environment variable
9548 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
9549 directories specified by the colon-separated list in @env{FREI0R_PATH}.
9550 Otherwise, the standard frei0r paths are searched, in this order:
9551 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
9552 @file{/usr/lib/frei0r-1/}.
9553
9554 @item filter_params
9555 A '|'-separated list of parameters to pass to the frei0r effect.
9556
9557 @end table
9558
9559 A frei0r effect parameter can be a boolean (its value is either
9560 "y" or "n"), a double, a color (specified as
9561 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
9562 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
9563 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
9564 a position (specified as @var{X}/@var{Y}, where
9565 @var{X} and @var{Y} are floating point numbers) and/or a string.
9566
9567 The number and types of parameters depend on the loaded effect. If an
9568 effect parameter is not specified, the default value is set.
9569
9570 @subsection Examples
9571
9572 @itemize
9573 @item
9574 Apply the distort0r effect, setting the first two double parameters:
9575 @example
9576 frei0r=filter_name=distort0r:filter_params=0.5|0.01
9577 @end example
9578
9579 @item
9580 Apply the colordistance effect, taking a color as the first parameter:
9581 @example
9582 frei0r=colordistance:0.2/0.3/0.4
9583 frei0r=colordistance:violet
9584 frei0r=colordistance:0x112233
9585 @end example
9586
9587 @item
9588 Apply the perspective effect, specifying the top left and top right image
9589 positions:
9590 @example
9591 frei0r=perspective:0.2/0.2|0.8/0.2
9592 @end example
9593 @end itemize
9594
9595 For more information, see
9596 @url{http://frei0r.dyne.org}
9597
9598 @section fspp
9599
9600 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
9601
9602 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
9603 processing filter, one of them is performed once per block, not per pixel.
9604 This allows for much higher speed.
9605
9606 The filter accepts the following options:
9607
9608 @table @option
9609 @item quality
9610 Set quality. This option defines the number of levels for averaging. It accepts
9611 an integer in the range 4-5. Default value is @code{4}.
9612
9613 @item qp
9614 Force a constant quantization parameter. It accepts an integer in range 0-63.
9615 If not set, the filter will use the QP from the video stream (if available).
9616
9617 @item strength
9618 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
9619 more details but also more artifacts, while higher values make the image smoother
9620 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
9621
9622 @item use_bframe_qp
9623 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
9624 option may cause flicker since the B-Frames have often larger QP. Default is
9625 @code{0} (not enabled).
9626
9627 @end table
9628
9629 @section gblur
9630
9631 Apply Gaussian blur filter.
9632
9633 The filter accepts the following options:
9634
9635 @table @option
9636 @item sigma
9637 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
9638
9639 @item steps
9640 Set number of steps for Gaussian approximation. Defauls is @code{1}.
9641
9642 @item planes
9643 Set which planes to filter. By default all planes are filtered.
9644
9645 @item sigmaV
9646 Set vertical sigma, if negative it will be same as @code{sigma}.
9647 Default is @code{-1}.
9648 @end table
9649
9650 @section geq
9651
9652 The filter accepts the following options:
9653
9654 @table @option
9655 @item lum_expr, lum
9656 Set the luminance expression.
9657 @item cb_expr, cb
9658 Set the chrominance blue expression.
9659 @item cr_expr, cr
9660 Set the chrominance red expression.
9661 @item alpha_expr, a
9662 Set the alpha expression.
9663 @item red_expr, r
9664 Set the red expression.
9665 @item green_expr, g
9666 Set the green expression.
9667 @item blue_expr, b
9668 Set the blue expression.
9669 @end table
9670
9671 The colorspace is selected according to the specified options. If one
9672 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
9673 options is specified, the filter will automatically select a YCbCr
9674 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
9675 @option{blue_expr} options is specified, it will select an RGB
9676 colorspace.
9677
9678 If one of the chrominance expression is not defined, it falls back on the other
9679 one. If no alpha expression is specified it will evaluate to opaque value.
9680 If none of chrominance expressions are specified, they will evaluate
9681 to the luminance expression.
9682
9683 The expressions can use the following variables and functions:
9684
9685 @table @option
9686 @item N
9687 The sequential number of the filtered frame, starting from @code{0}.
9688
9689 @item X
9690 @item Y
9691 The coordinates of the current sample.
9692
9693 @item W
9694 @item H
9695 The width and height of the image.
9696
9697 @item SW
9698 @item SH
9699 Width and height scale depending on the currently filtered plane. It is the
9700 ratio between the corresponding luma plane number of pixels and the current
9701 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
9702 @code{0.5,0.5} for chroma planes.
9703
9704 @item T
9705 Time of the current frame, expressed in seconds.
9706
9707 @item p(x, y)
9708 Return the value of the pixel at location (@var{x},@var{y}) of the current
9709 plane.
9710
9711 @item lum(x, y)
9712 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
9713 plane.
9714
9715 @item cb(x, y)
9716 Return the value of the pixel at location (@var{x},@var{y}) of the
9717 blue-difference chroma plane. Return 0 if there is no such plane.
9718
9719 @item cr(x, y)
9720 Return the value of the pixel at location (@var{x},@var{y}) of the
9721 red-difference chroma plane. Return 0 if there is no such plane.
9722
9723 @item r(x, y)
9724 @item g(x, y)
9725 @item b(x, y)
9726 Return the value of the pixel at location (@var{x},@var{y}) of the
9727 red/green/blue component. Return 0 if there is no such component.
9728
9729 @item alpha(x, y)
9730 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
9731 plane. Return 0 if there is no such plane.
9732 @end table
9733
9734 For functions, if @var{x} and @var{y} are outside the area, the value will be
9735 automatically clipped to the closer edge.
9736
9737 @subsection Examples
9738
9739 @itemize
9740 @item
9741 Flip the image horizontally:
9742 @example
9743 geq=p(W-X\,Y)
9744 @end example
9745
9746 @item
9747 Generate a bidimensional sine wave, with angle @code{PI/3} and a
9748 wavelength of 100 pixels:
9749 @example
9750 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
9751 @end example
9752
9753 @item
9754 Generate a fancy enigmatic moving light:
9755 @example
9756 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
9757 @end example
9758
9759 @item
9760 Generate a quick emboss effect:
9761 @example
9762 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
9763 @end example
9764
9765 @item
9766 Modify RGB components depending on pixel position:
9767 @example
9768 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
9769 @end example
9770
9771 @item
9772 Create a radial gradient that is the same size as the input (also see
9773 the @ref{vignette} filter):
9774 @example
9775 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
9776 @end example
9777 @end itemize
9778
9779 @section gradfun
9780
9781 Fix the banding artifacts that are sometimes introduced into nearly flat
9782 regions by truncation to 8-bit color depth.
9783 Interpolate the gradients that should go where the bands are, and
9784 dither them.
9785
9786 It is designed for playback only.  Do not use it prior to
9787 lossy compression, because compression tends to lose the dither and
9788 bring back the bands.
9789
9790 It accepts the following parameters:
9791
9792 @table @option
9793
9794 @item strength
9795 The maximum amount by which the filter will change any one pixel. This is also
9796 the threshold for detecting nearly flat regions. Acceptable values range from
9797 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
9798 valid range.
9799
9800 @item radius
9801 The neighborhood to fit the gradient to. A larger radius makes for smoother
9802 gradients, but also prevents the filter from modifying the pixels near detailed
9803 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
9804 values will be clipped to the valid range.
9805
9806 @end table
9807
9808 Alternatively, the options can be specified as a flat string:
9809 @var{strength}[:@var{radius}]
9810
9811 @subsection Examples
9812
9813 @itemize
9814 @item
9815 Apply the filter with a @code{3.5} strength and radius of @code{8}:
9816 @example
9817 gradfun=3.5:8
9818 @end example
9819
9820 @item
9821 Specify radius, omitting the strength (which will fall-back to the default
9822 value):
9823 @example
9824 gradfun=radius=8
9825 @end example
9826
9827 @end itemize
9828
9829 @anchor{haldclut}
9830 @section haldclut
9831
9832 Apply a Hald CLUT to a video stream.
9833
9834 First input is the video stream to process, and second one is the Hald CLUT.
9835 The Hald CLUT input can be a simple picture or a complete video stream.
9836
9837 The filter accepts the following options:
9838
9839 @table @option
9840 @item shortest
9841 Force termination when the shortest input terminates. Default is @code{0}.
9842 @item repeatlast
9843 Continue applying the last CLUT after the end of the stream. A value of
9844 @code{0} disable the filter after the last frame of the CLUT is reached.
9845 Default is @code{1}.
9846 @end table
9847
9848 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
9849 filters share the same internals).
9850
9851 More information about the Hald CLUT can be found on Eskil Steenberg's website
9852 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
9853
9854 @subsection Workflow examples
9855
9856 @subsubsection Hald CLUT video stream
9857
9858 Generate an identity Hald CLUT stream altered with various effects:
9859 @example
9860 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
9861 @end example
9862
9863 Note: make sure you use a lossless codec.
9864
9865 Then use it with @code{haldclut} to apply it on some random stream:
9866 @example
9867 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
9868 @end example
9869
9870 The Hald CLUT will be applied to the 10 first seconds (duration of
9871 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
9872 to the remaining frames of the @code{mandelbrot} stream.
9873
9874 @subsubsection Hald CLUT with preview
9875
9876 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
9877 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
9878 biggest possible square starting at the top left of the picture. The remaining
9879 padding pixels (bottom or right) will be ignored. This area can be used to add
9880 a preview of the Hald CLUT.
9881
9882 Typically, the following generated Hald CLUT will be supported by the
9883 @code{haldclut} filter:
9884
9885 @example
9886 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
9887    pad=iw+320 [padded_clut];
9888    smptebars=s=320x256, split [a][b];
9889    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
9890    [main][b] overlay=W-320" -frames:v 1 clut.png
9891 @end example
9892
9893 It contains the original and a preview of the effect of the CLUT: SMPTE color
9894 bars are displayed on the right-top, and below the same color bars processed by
9895 the color changes.
9896
9897 Then, the effect of this Hald CLUT can be visualized with:
9898 @example
9899 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
9900 @end example
9901
9902 @section hflip
9903
9904 Flip the input video horizontally.
9905
9906 For example, to horizontally flip the input video with @command{ffmpeg}:
9907 @example
9908 ffmpeg -i in.avi -vf "hflip" out.avi
9909 @end example
9910
9911 @section histeq
9912 This filter applies a global color histogram equalization on a
9913 per-frame basis.
9914
9915 It can be used to correct video that has a compressed range of pixel
9916 intensities.  The filter redistributes the pixel intensities to
9917 equalize their distribution across the intensity range. It may be
9918 viewed as an "automatically adjusting contrast filter". This filter is
9919 useful only for correcting degraded or poorly captured source
9920 video.
9921
9922 The filter accepts the following options:
9923
9924 @table @option
9925 @item strength
9926 Determine the amount of equalization to be applied.  As the strength
9927 is reduced, the distribution of pixel intensities more-and-more
9928 approaches that of the input frame. The value must be a float number
9929 in the range [0,1] and defaults to 0.200.
9930
9931 @item intensity
9932 Set the maximum intensity that can generated and scale the output
9933 values appropriately.  The strength should be set as desired and then
9934 the intensity can be limited if needed to avoid washing-out. The value
9935 must be a float number in the range [0,1] and defaults to 0.210.
9936
9937 @item antibanding
9938 Set the antibanding level. If enabled the filter will randomly vary
9939 the luminance of output pixels by a small amount to avoid banding of
9940 the histogram. Possible values are @code{none}, @code{weak} or
9941 @code{strong}. It defaults to @code{none}.
9942 @end table
9943
9944 @section histogram
9945
9946 Compute and draw a color distribution histogram for the input video.
9947
9948 The computed histogram is a representation of the color component
9949 distribution in an image.
9950
9951 Standard histogram displays the color components distribution in an image.
9952 Displays color graph for each color component. Shows distribution of
9953 the Y, U, V, A or R, G, B components, depending on input format, in the
9954 current frame. Below each graph a color component scale meter is shown.
9955
9956 The filter accepts the following options:
9957
9958 @table @option
9959 @item level_height
9960 Set height of level. Default value is @code{200}.
9961 Allowed range is [50, 2048].
9962
9963 @item scale_height
9964 Set height of color scale. Default value is @code{12}.
9965 Allowed range is [0, 40].
9966
9967 @item display_mode
9968 Set display mode.
9969 It accepts the following values:
9970 @table @samp
9971 @item stack
9972 Per color component graphs are placed below each other.
9973
9974 @item parade
9975 Per color component graphs are placed side by side.
9976
9977 @item overlay
9978 Presents information identical to that in the @code{parade}, except
9979 that the graphs representing color components are superimposed directly
9980 over one another.
9981 @end table
9982 Default is @code{stack}.
9983
9984 @item levels_mode
9985 Set mode. Can be either @code{linear}, or @code{logarithmic}.
9986 Default is @code{linear}.
9987
9988 @item components
9989 Set what color components to display.
9990 Default is @code{7}.
9991
9992 @item fgopacity
9993 Set foreground opacity. Default is @code{0.7}.
9994
9995 @item bgopacity
9996 Set background opacity. Default is @code{0.5}.
9997 @end table
9998
9999 @subsection Examples
10000
10001 @itemize
10002
10003 @item
10004 Calculate and draw histogram:
10005 @example
10006 ffplay -i input -vf histogram
10007 @end example
10008
10009 @end itemize
10010
10011 @anchor{hqdn3d}
10012 @section hqdn3d
10013
10014 This is a high precision/quality 3d denoise filter. It aims to reduce
10015 image noise, producing smooth images and making still images really
10016 still. It should enhance compressibility.
10017
10018 It accepts the following optional parameters:
10019
10020 @table @option
10021 @item luma_spatial
10022 A non-negative floating point number which specifies spatial luma strength.
10023 It defaults to 4.0.
10024
10025 @item chroma_spatial
10026 A non-negative floating point number which specifies spatial chroma strength.
10027 It defaults to 3.0*@var{luma_spatial}/4.0.
10028
10029 @item luma_tmp
10030 A floating point number which specifies luma temporal strength. It defaults to
10031 6.0*@var{luma_spatial}/4.0.
10032
10033 @item chroma_tmp
10034 A floating point number which specifies chroma temporal strength. It defaults to
10035 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
10036 @end table
10037
10038 @section hwdownload
10039
10040 Download hardware frames to system memory.
10041
10042 The input must be in hardware frames, and the output a non-hardware format.
10043 Not all formats will be supported on the output - it may be necessary to insert
10044 an additional @option{format} filter immediately following in the graph to get
10045 the output in a supported format.
10046
10047 @section hwmap
10048
10049 Map hardware frames to system memory or to another device.
10050
10051 This filter has several different modes of operation; which one is used depends
10052 on the input and output formats:
10053 @itemize
10054 @item
10055 Hardware frame input, normal frame output
10056
10057 Map the input frames to system memory and pass them to the output.  If the
10058 original hardware frame is later required (for example, after overlaying
10059 something else on part of it), the @option{hwmap} filter can be used again
10060 in the next mode to retrieve it.
10061 @item
10062 Normal frame input, hardware frame output
10063
10064 If the input is actually a software-mapped hardware frame, then unmap it -
10065 that is, return the original hardware frame.
10066
10067 Otherwise, a device must be provided.  Create new hardware surfaces on that
10068 device for the output, then map them back to the software format at the input
10069 and give those frames to the preceding filter.  This will then act like the
10070 @option{hwupload} filter, but may be able to avoid an additional copy when
10071 the input is already in a compatible format.
10072 @item
10073 Hardware frame input and output
10074
10075 A device must be supplied for the output, either directly or with the
10076 @option{derive_device} option.  The input and output devices must be of
10077 different types and compatible - the exact meaning of this is
10078 system-dependent, but typically it means that they must refer to the same
10079 underlying hardware context (for example, refer to the same graphics card).
10080
10081 If the input frames were originally created on the output device, then unmap
10082 to retrieve the original frames.
10083
10084 Otherwise, map the frames to the output device - create new hardware frames
10085 on the output corresponding to the frames on the input.
10086 @end itemize
10087
10088 The following additional parameters are accepted:
10089
10090 @table @option
10091 @item mode
10092 Set the frame mapping mode.  Some combination of:
10093 @table @var
10094 @item read
10095 The mapped frame should be readable.
10096 @item write
10097 The mapped frame should be writeable.
10098 @item overwrite
10099 The mapping will always overwrite the entire frame.
10100
10101 This may improve performance in some cases, as the original contents of the
10102 frame need not be loaded.
10103 @item direct
10104 The mapping must not involve any copying.
10105
10106 Indirect mappings to copies of frames are created in some cases where either
10107 direct mapping is not possible or it would have unexpected properties.
10108 Setting this flag ensures that the mapping is direct and will fail if that is
10109 not possible.
10110 @end table
10111 Defaults to @var{read+write} if not specified.
10112
10113 @item derive_device @var{type}
10114 Rather than using the device supplied at initialisation, instead derive a new
10115 device of type @var{type} from the device the input frames exist on.
10116
10117 @item reverse
10118 In a hardware to hardware mapping, map in reverse - create frames in the sink
10119 and map them back to the source.  This may be necessary in some cases where
10120 a mapping in one direction is required but only the opposite direction is
10121 supported by the devices being used.
10122
10123 This option is dangerous - it may break the preceding filter in undefined
10124 ways if there are any additional constraints on that filter's output.
10125 Do not use it without fully understanding the implications of its use.
10126 @end table
10127
10128 @section hwupload
10129
10130 Upload system memory frames to hardware surfaces.
10131
10132 The device to upload to must be supplied when the filter is initialised.  If
10133 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
10134 option.
10135
10136 @anchor{hwupload_cuda}
10137 @section hwupload_cuda
10138
10139 Upload system memory frames to a CUDA device.
10140
10141 It accepts the following optional parameters:
10142
10143 @table @option
10144 @item device
10145 The number of the CUDA device to use
10146 @end table
10147
10148 @section hqx
10149
10150 Apply a high-quality magnification filter designed for pixel art. This filter
10151 was originally created by Maxim Stepin.
10152
10153 It accepts the following option:
10154
10155 @table @option
10156 @item n
10157 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
10158 @code{hq3x} and @code{4} for @code{hq4x}.
10159 Default is @code{3}.
10160 @end table
10161
10162 @section hstack
10163 Stack input videos horizontally.
10164
10165 All streams must be of same pixel format and of same height.
10166
10167 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
10168 to create same output.
10169
10170 The filter accept the following option:
10171
10172 @table @option
10173 @item inputs
10174 Set number of input streams. Default is 2.
10175
10176 @item shortest
10177 If set to 1, force the output to terminate when the shortest input
10178 terminates. Default value is 0.
10179 @end table
10180
10181 @section hue
10182
10183 Modify the hue and/or the saturation of the input.
10184
10185 It accepts the following parameters:
10186
10187 @table @option
10188 @item h
10189 Specify the hue angle as a number of degrees. It accepts an expression,
10190 and defaults to "0".
10191
10192 @item s
10193 Specify the saturation in the [-10,10] range. It accepts an expression and
10194 defaults to "1".
10195
10196 @item H
10197 Specify the hue angle as a number of radians. It accepts an
10198 expression, and defaults to "0".
10199
10200 @item b
10201 Specify the brightness in the [-10,10] range. It accepts an expression and
10202 defaults to "0".
10203 @end table
10204
10205 @option{h} and @option{H} are mutually exclusive, and can't be
10206 specified at the same time.
10207
10208 The @option{b}, @option{h}, @option{H} and @option{s} option values are
10209 expressions containing the following constants:
10210
10211 @table @option
10212 @item n
10213 frame count of the input frame starting from 0
10214
10215 @item pts
10216 presentation timestamp of the input frame expressed in time base units
10217
10218 @item r
10219 frame rate of the input video, NAN if the input frame rate is unknown
10220
10221 @item t
10222 timestamp expressed in seconds, NAN if the input timestamp is unknown
10223
10224 @item tb
10225 time base of the input video
10226 @end table
10227
10228 @subsection Examples
10229
10230 @itemize
10231 @item
10232 Set the hue to 90 degrees and the saturation to 1.0:
10233 @example
10234 hue=h=90:s=1
10235 @end example
10236
10237 @item
10238 Same command but expressing the hue in radians:
10239 @example
10240 hue=H=PI/2:s=1
10241 @end example
10242
10243 @item
10244 Rotate hue and make the saturation swing between 0
10245 and 2 over a period of 1 second:
10246 @example
10247 hue="H=2*PI*t: s=sin(2*PI*t)+1"
10248 @end example
10249
10250 @item
10251 Apply a 3 seconds saturation fade-in effect starting at 0:
10252 @example
10253 hue="s=min(t/3\,1)"
10254 @end example
10255
10256 The general fade-in expression can be written as:
10257 @example
10258 hue="s=min(0\, max((t-START)/DURATION\, 1))"
10259 @end example
10260
10261 @item
10262 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
10263 @example
10264 hue="s=max(0\, min(1\, (8-t)/3))"
10265 @end example
10266
10267 The general fade-out expression can be written as:
10268 @example
10269 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
10270 @end example
10271
10272 @end itemize
10273
10274 @subsection Commands
10275
10276 This filter supports the following commands:
10277 @table @option
10278 @item b
10279 @item s
10280 @item h
10281 @item H
10282 Modify the hue and/or the saturation and/or brightness of the input video.
10283 The command accepts the same syntax of the corresponding option.
10284
10285 If the specified expression is not valid, it is kept at its current
10286 value.
10287 @end table
10288
10289 @section hysteresis
10290
10291 Grow first stream into second stream by connecting components.
10292 This makes it possible to build more robust edge masks.
10293
10294 This filter accepts the following options:
10295
10296 @table @option
10297 @item planes
10298 Set which planes will be processed as bitmap, unprocessed planes will be
10299 copied from first stream.
10300 By default value 0xf, all planes will be processed.
10301
10302 @item threshold
10303 Set threshold which is used in filtering. If pixel component value is higher than
10304 this value filter algorithm for connecting components is activated.
10305 By default value is 0.
10306 @end table
10307
10308 @section idet
10309
10310 Detect video interlacing type.
10311
10312 This filter tries to detect if the input frames are interlaced, progressive,
10313 top or bottom field first. It will also try to detect fields that are
10314 repeated between adjacent frames (a sign of telecine).
10315
10316 Single frame detection considers only immediately adjacent frames when classifying each frame.
10317 Multiple frame detection incorporates the classification history of previous frames.
10318
10319 The filter will log these metadata values:
10320
10321 @table @option
10322 @item single.current_frame
10323 Detected type of current frame using single-frame detection. One of:
10324 ``tff'' (top field first), ``bff'' (bottom field first),
10325 ``progressive'', or ``undetermined''
10326
10327 @item single.tff
10328 Cumulative number of frames detected as top field first using single-frame detection.
10329
10330 @item multiple.tff
10331 Cumulative number of frames detected as top field first using multiple-frame detection.
10332
10333 @item single.bff
10334 Cumulative number of frames detected as bottom field first using single-frame detection.
10335
10336 @item multiple.current_frame
10337 Detected type of current frame using multiple-frame detection. One of:
10338 ``tff'' (top field first), ``bff'' (bottom field first),
10339 ``progressive'', or ``undetermined''
10340
10341 @item multiple.bff
10342 Cumulative number of frames detected as bottom field first using multiple-frame detection.
10343
10344 @item single.progressive
10345 Cumulative number of frames detected as progressive using single-frame detection.
10346
10347 @item multiple.progressive
10348 Cumulative number of frames detected as progressive using multiple-frame detection.
10349
10350 @item single.undetermined
10351 Cumulative number of frames that could not be classified using single-frame detection.
10352
10353 @item multiple.undetermined
10354 Cumulative number of frames that could not be classified using multiple-frame detection.
10355
10356 @item repeated.current_frame
10357 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
10358
10359 @item repeated.neither
10360 Cumulative number of frames with no repeated field.
10361
10362 @item repeated.top
10363 Cumulative number of frames with the top field repeated from the previous frame's top field.
10364
10365 @item repeated.bottom
10366 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
10367 @end table
10368
10369 The filter accepts the following options:
10370
10371 @table @option
10372 @item intl_thres
10373 Set interlacing threshold.
10374 @item prog_thres
10375 Set progressive threshold.
10376 @item rep_thres
10377 Threshold for repeated field detection.
10378 @item half_life
10379 Number of frames after which a given frame's contribution to the
10380 statistics is halved (i.e., it contributes only 0.5 to its
10381 classification). The default of 0 means that all frames seen are given
10382 full weight of 1.0 forever.
10383 @item analyze_interlaced_flag
10384 When this is not 0 then idet will use the specified number of frames to determine
10385 if the interlaced flag is accurate, it will not count undetermined frames.
10386 If the flag is found to be accurate it will be used without any further
10387 computations, if it is found to be inaccurate it will be cleared without any
10388 further computations. This allows inserting the idet filter as a low computational
10389 method to clean up the interlaced flag
10390 @end table
10391
10392 @section il
10393
10394 Deinterleave or interleave fields.
10395
10396 This filter allows one to process interlaced images fields without
10397 deinterlacing them. Deinterleaving splits the input frame into 2
10398 fields (so called half pictures). Odd lines are moved to the top
10399 half of the output image, even lines to the bottom half.
10400 You can process (filter) them independently and then re-interleave them.
10401
10402 The filter accepts the following options:
10403
10404 @table @option
10405 @item luma_mode, l
10406 @item chroma_mode, c
10407 @item alpha_mode, a
10408 Available values for @var{luma_mode}, @var{chroma_mode} and
10409 @var{alpha_mode} are:
10410
10411 @table @samp
10412 @item none
10413 Do nothing.
10414
10415 @item deinterleave, d
10416 Deinterleave fields, placing one above the other.
10417
10418 @item interleave, i
10419 Interleave fields. Reverse the effect of deinterleaving.
10420 @end table
10421 Default value is @code{none}.
10422
10423 @item luma_swap, ls
10424 @item chroma_swap, cs
10425 @item alpha_swap, as
10426 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
10427 @end table
10428
10429 @section inflate
10430
10431 Apply inflate effect to the video.
10432
10433 This filter replaces the pixel by the local(3x3) average by taking into account
10434 only values higher than the pixel.
10435
10436 It accepts the following options:
10437
10438 @table @option
10439 @item threshold0
10440 @item threshold1
10441 @item threshold2
10442 @item threshold3
10443 Limit the maximum change for each plane, default is 65535.
10444 If 0, plane will remain unchanged.
10445 @end table
10446
10447 @section interlace
10448
10449 Simple interlacing filter from progressive contents. This interleaves upper (or
10450 lower) lines from odd frames with lower (or upper) lines from even frames,
10451 halving the frame rate and preserving image height.
10452
10453 @example
10454    Original        Original             New Frame
10455    Frame 'j'      Frame 'j+1'             (tff)
10456   ==========      ===========       ==================
10457     Line 0  -------------------->    Frame 'j' Line 0
10458     Line 1          Line 1  ---->   Frame 'j+1' Line 1
10459     Line 2 --------------------->    Frame 'j' Line 2
10460     Line 3          Line 3  ---->   Frame 'j+1' Line 3
10461      ...             ...                   ...
10462 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
10463 @end example
10464
10465 It accepts the following optional parameters:
10466
10467 @table @option
10468 @item scan
10469 This determines whether the interlaced frame is taken from the even
10470 (tff - default) or odd (bff) lines of the progressive frame.
10471
10472 @item lowpass
10473 Vertical lowpass filter to avoid twitter interlacing and
10474 reduce moire patterns.
10475
10476 @table @samp
10477 @item 0, off
10478 Disable vertical lowpass filter
10479
10480 @item 1, linear
10481 Enable linear filter (default)
10482
10483 @item 2, complex
10484 Enable complex filter. This will slightly less reduce twitter and moire
10485 but better retain detail and subjective sharpness impression.
10486
10487 @end table
10488 @end table
10489
10490 @section kerndeint
10491
10492 Deinterlace input video by applying Donald Graft's adaptive kernel
10493 deinterling. Work on interlaced parts of a video to produce
10494 progressive frames.
10495
10496 The description of the accepted parameters follows.
10497
10498 @table @option
10499 @item thresh
10500 Set the threshold which affects the filter's tolerance when
10501 determining if a pixel line must be processed. It must be an integer
10502 in the range [0,255] and defaults to 10. A value of 0 will result in
10503 applying the process on every pixels.
10504
10505 @item map
10506 Paint pixels exceeding the threshold value to white if set to 1.
10507 Default is 0.
10508
10509 @item order
10510 Set the fields order. Swap fields if set to 1, leave fields alone if
10511 0. Default is 0.
10512
10513 @item sharp
10514 Enable additional sharpening if set to 1. Default is 0.
10515
10516 @item twoway
10517 Enable twoway sharpening if set to 1. Default is 0.
10518 @end table
10519
10520 @subsection Examples
10521
10522 @itemize
10523 @item
10524 Apply default values:
10525 @example
10526 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
10527 @end example
10528
10529 @item
10530 Enable additional sharpening:
10531 @example
10532 kerndeint=sharp=1
10533 @end example
10534
10535 @item
10536 Paint processed pixels in white:
10537 @example
10538 kerndeint=map=1
10539 @end example
10540 @end itemize
10541
10542 @section lenscorrection
10543
10544 Correct radial lens distortion
10545
10546 This filter can be used to correct for radial distortion as can result from the use
10547 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
10548 one can use tools available for example as part of opencv or simply trial-and-error.
10549 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
10550 and extract the k1 and k2 coefficients from the resulting matrix.
10551
10552 Note that effectively the same filter is available in the open-source tools Krita and
10553 Digikam from the KDE project.
10554
10555 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
10556 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
10557 brightness distribution, so you may want to use both filters together in certain
10558 cases, though you will have to take care of ordering, i.e. whether vignetting should
10559 be applied before or after lens correction.
10560
10561 @subsection Options
10562
10563 The filter accepts the following options:
10564
10565 @table @option
10566 @item cx
10567 Relative x-coordinate of the focal point of the image, and thereby the center of the
10568 distortion. This value has a range [0,1] and is expressed as fractions of the image
10569 width. Default is 0.5.
10570 @item cy
10571 Relative y-coordinate of the focal point of the image, and thereby the center of the
10572 distortion. This value has a range [0,1] and is expressed as fractions of the image
10573 height. Default is 0.5.
10574 @item k1
10575 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
10576 no correction. Default is 0.
10577 @item k2
10578 Coefficient of the double quadratic correction term. This value has a range [-1,1].
10579 0 means no correction. Default is 0.
10580 @end table
10581
10582 The formula that generates the correction is:
10583
10584 @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)
10585
10586 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
10587 distances from the focal point in the source and target images, respectively.
10588
10589 @section libvmaf
10590
10591 Obtain the VMAF (Video Multi-Method Assessment Fusion)
10592 score between two input videos.
10593
10594 The obtained VMAF score is printed through the logging system.
10595
10596 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
10597 After installing the library it can be enabled using:
10598 @code{./configure --enable-libvmaf}.
10599 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
10600
10601 The filter has following options:
10602
10603 @table @option
10604 @item model_path
10605 Set the model path which is to be used for SVM.
10606 Default value: @code{"vmaf_v0.6.1.pkl"}
10607
10608 @item log_path
10609 Set the file path to be used to store logs.
10610
10611 @item log_fmt
10612 Set the format of the log file (xml or json).
10613
10614 @item enable_transform
10615 Enables transform for computing vmaf.
10616
10617 @item phone_model
10618 Invokes the phone model which will generate VMAF scores higher than in the
10619 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
10620
10621 @item psnr
10622 Enables computing psnr along with vmaf.
10623
10624 @item ssim
10625 Enables computing ssim along with vmaf.
10626
10627 @item ms_ssim
10628 Enables computing ms_ssim along with vmaf.
10629
10630 @item pool
10631 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
10632 @end table
10633
10634 This filter also supports the @ref{framesync} options.
10635
10636 On the below examples the input file @file{main.mpg} being processed is
10637 compared with the reference file @file{ref.mpg}.
10638
10639 @example
10640 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
10641 @end example
10642
10643 Example with options:
10644 @example
10645 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:enable-transform=1" -f null -
10646 @end example
10647
10648 @section limiter
10649
10650 Limits the pixel components values to the specified range [min, max].
10651
10652 The filter accepts the following options:
10653
10654 @table @option
10655 @item min
10656 Lower bound. Defaults to the lowest allowed value for the input.
10657
10658 @item max
10659 Upper bound. Defaults to the highest allowed value for the input.
10660
10661 @item planes
10662 Specify which planes will be processed. Defaults to all available.
10663 @end table
10664
10665 @section loop
10666
10667 Loop video frames.
10668
10669 The filter accepts the following options:
10670
10671 @table @option
10672 @item loop
10673 Set the number of loops. Setting this value to -1 will result in infinite loops.
10674 Default is 0.
10675
10676 @item size
10677 Set maximal size in number of frames. Default is 0.
10678
10679 @item start
10680 Set first frame of loop. Default is 0.
10681 @end table
10682
10683 @anchor{lut3d}
10684 @section lut3d
10685
10686 Apply a 3D LUT to an input video.
10687
10688 The filter accepts the following options:
10689
10690 @table @option
10691 @item file
10692 Set the 3D LUT file name.
10693
10694 Currently supported formats:
10695 @table @samp
10696 @item 3dl
10697 AfterEffects
10698 @item cube
10699 Iridas
10700 @item dat
10701 DaVinci
10702 @item m3d
10703 Pandora
10704 @end table
10705 @item interp
10706 Select interpolation mode.
10707
10708 Available values are:
10709
10710 @table @samp
10711 @item nearest
10712 Use values from the nearest defined point.
10713 @item trilinear
10714 Interpolate values using the 8 points defining a cube.
10715 @item tetrahedral
10716 Interpolate values using a tetrahedron.
10717 @end table
10718 @end table
10719
10720 This filter also supports the @ref{framesync} options.
10721
10722 @section lumakey
10723
10724 Turn certain luma values into transparency.
10725
10726 The filter accepts the following options:
10727
10728 @table @option
10729 @item threshold
10730 Set the luma which will be used as base for transparency.
10731 Default value is @code{0}.
10732
10733 @item tolerance
10734 Set the range of luma values to be keyed out.
10735 Default value is @code{0}.
10736
10737 @item softness
10738 Set the range of softness. Default value is @code{0}.
10739 Use this to control gradual transition from zero to full transparency.
10740 @end table
10741
10742 @section lut, lutrgb, lutyuv
10743
10744 Compute a look-up table for binding each pixel component input value
10745 to an output value, and apply it to the input video.
10746
10747 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
10748 to an RGB input video.
10749
10750 These filters accept the following parameters:
10751 @table @option
10752 @item c0
10753 set first pixel component expression
10754 @item c1
10755 set second pixel component expression
10756 @item c2
10757 set third pixel component expression
10758 @item c3
10759 set fourth pixel component expression, corresponds to the alpha component
10760
10761 @item r
10762 set red component expression
10763 @item g
10764 set green component expression
10765 @item b
10766 set blue component expression
10767 @item a
10768 alpha component expression
10769
10770 @item y
10771 set Y/luminance component expression
10772 @item u
10773 set U/Cb component expression
10774 @item v
10775 set V/Cr component expression
10776 @end table
10777
10778 Each of them specifies the expression to use for computing the lookup table for
10779 the corresponding pixel component values.
10780
10781 The exact component associated to each of the @var{c*} options depends on the
10782 format in input.
10783
10784 The @var{lut} filter requires either YUV or RGB pixel formats in input,
10785 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
10786
10787 The expressions can contain the following constants and functions:
10788
10789 @table @option
10790 @item w
10791 @item h
10792 The input width and height.
10793
10794 @item val
10795 The input value for the pixel component.
10796
10797 @item clipval
10798 The input value, clipped to the @var{minval}-@var{maxval} range.
10799
10800 @item maxval
10801 The maximum value for the pixel component.
10802
10803 @item minval
10804 The minimum value for the pixel component.
10805
10806 @item negval
10807 The negated value for the pixel component value, clipped to the
10808 @var{minval}-@var{maxval} range; it corresponds to the expression
10809 "maxval-clipval+minval".
10810
10811 @item clip(val)
10812 The computed value in @var{val}, clipped to the
10813 @var{minval}-@var{maxval} range.
10814
10815 @item gammaval(gamma)
10816 The computed gamma correction value of the pixel component value,
10817 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
10818 expression
10819 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
10820
10821 @end table
10822
10823 All expressions default to "val".
10824
10825 @subsection Examples
10826
10827 @itemize
10828 @item
10829 Negate input video:
10830 @example
10831 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
10832 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
10833 @end example
10834
10835 The above is the same as:
10836 @example
10837 lutrgb="r=negval:g=negval:b=negval"
10838 lutyuv="y=negval:u=negval:v=negval"
10839 @end example
10840
10841 @item
10842 Negate luminance:
10843 @example
10844 lutyuv=y=negval
10845 @end example
10846
10847 @item
10848 Remove chroma components, turning the video into a graytone image:
10849 @example
10850 lutyuv="u=128:v=128"
10851 @end example
10852
10853 @item
10854 Apply a luma burning effect:
10855 @example
10856 lutyuv="y=2*val"
10857 @end example
10858
10859 @item
10860 Remove green and blue components:
10861 @example
10862 lutrgb="g=0:b=0"
10863 @end example
10864
10865 @item
10866 Set a constant alpha channel value on input:
10867 @example
10868 format=rgba,lutrgb=a="maxval-minval/2"
10869 @end example
10870
10871 @item
10872 Correct luminance gamma by a factor of 0.5:
10873 @example
10874 lutyuv=y=gammaval(0.5)
10875 @end example
10876
10877 @item
10878 Discard least significant bits of luma:
10879 @example
10880 lutyuv=y='bitand(val, 128+64+32)'
10881 @end example
10882
10883 @item
10884 Technicolor like effect:
10885 @example
10886 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
10887 @end example
10888 @end itemize
10889
10890 @section lut2, tlut2
10891
10892 The @code{lut2} filter takes two input streams and outputs one
10893 stream.
10894
10895 The @code{tlut2} (time lut2) filter takes two consecutive frames
10896 from one single stream.
10897
10898 This filter accepts the following parameters:
10899 @table @option
10900 @item c0
10901 set first pixel component expression
10902 @item c1
10903 set second pixel component expression
10904 @item c2
10905 set third pixel component expression
10906 @item c3
10907 set fourth pixel component expression, corresponds to the alpha component
10908 @end table
10909
10910 Each of them specifies the expression to use for computing the lookup table for
10911 the corresponding pixel component values.
10912
10913 The exact component associated to each of the @var{c*} options depends on the
10914 format in inputs.
10915
10916 The expressions can contain the following constants:
10917
10918 @table @option
10919 @item w
10920 @item h
10921 The input width and height.
10922
10923 @item x
10924 The first input value for the pixel component.
10925
10926 @item y
10927 The second input value for the pixel component.
10928
10929 @item bdx
10930 The first input video bit depth.
10931
10932 @item bdy
10933 The second input video bit depth.
10934 @end table
10935
10936 All expressions default to "x".
10937
10938 @subsection Examples
10939
10940 @itemize
10941 @item
10942 Highlight differences between two RGB video streams:
10943 @example
10944 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)'
10945 @end example
10946
10947 @item
10948 Highlight differences between two YUV video streams:
10949 @example
10950 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)'
10951 @end example
10952
10953 @item
10954 Show max difference between two video streams:
10955 @example
10956 lut2='if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1))):if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1))):if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1)))'
10957 @end example
10958 @end itemize
10959
10960 @section maskedclamp
10961
10962 Clamp the first input stream with the second input and third input stream.
10963
10964 Returns the value of first stream to be between second input
10965 stream - @code{undershoot} and third input stream + @code{overshoot}.
10966
10967 This filter accepts the following options:
10968 @table @option
10969 @item undershoot
10970 Default value is @code{0}.
10971
10972 @item overshoot
10973 Default value is @code{0}.
10974
10975 @item planes
10976 Set which planes will be processed as bitmap, unprocessed planes will be
10977 copied from first stream.
10978 By default value 0xf, all planes will be processed.
10979 @end table
10980
10981 @section maskedmerge
10982
10983 Merge the first input stream with the second input stream using per pixel
10984 weights in the third input stream.
10985
10986 A value of 0 in the third stream pixel component means that pixel component
10987 from first stream is returned unchanged, while maximum value (eg. 255 for
10988 8-bit videos) means that pixel component from second stream is returned
10989 unchanged. Intermediate values define the amount of merging between both
10990 input stream's pixel components.
10991
10992 This filter accepts the following options:
10993 @table @option
10994 @item planes
10995 Set which planes will be processed as bitmap, unprocessed planes will be
10996 copied from first stream.
10997 By default value 0xf, all planes will be processed.
10998 @end table
10999
11000 @section mcdeint
11001
11002 Apply motion-compensation deinterlacing.
11003
11004 It needs one field per frame as input and must thus be used together
11005 with yadif=1/3 or equivalent.
11006
11007 This filter accepts the following options:
11008 @table @option
11009 @item mode
11010 Set the deinterlacing mode.
11011
11012 It accepts one of the following values:
11013 @table @samp
11014 @item fast
11015 @item medium
11016 @item slow
11017 use iterative motion estimation
11018 @item extra_slow
11019 like @samp{slow}, but use multiple reference frames.
11020 @end table
11021 Default value is @samp{fast}.
11022
11023 @item parity
11024 Set the picture field parity assumed for the input video. It must be
11025 one of the following values:
11026
11027 @table @samp
11028 @item 0, tff
11029 assume top field first
11030 @item 1, bff
11031 assume bottom field first
11032 @end table
11033
11034 Default value is @samp{bff}.
11035
11036 @item qp
11037 Set per-block quantization parameter (QP) used by the internal
11038 encoder.
11039
11040 Higher values should result in a smoother motion vector field but less
11041 optimal individual vectors. Default value is 1.
11042 @end table
11043
11044 @section mergeplanes
11045
11046 Merge color channel components from several video streams.
11047
11048 The filter accepts up to 4 input streams, and merge selected input
11049 planes to the output video.
11050
11051 This filter accepts the following options:
11052 @table @option
11053 @item mapping
11054 Set input to output plane mapping. Default is @code{0}.
11055
11056 The mappings is specified as a bitmap. It should be specified as a
11057 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
11058 mapping for the first plane of the output stream. 'A' sets the number of
11059 the input stream to use (from 0 to 3), and 'a' the plane number of the
11060 corresponding input to use (from 0 to 3). The rest of the mappings is
11061 similar, 'Bb' describes the mapping for the output stream second
11062 plane, 'Cc' describes the mapping for the output stream third plane and
11063 'Dd' describes the mapping for the output stream fourth plane.
11064
11065 @item format
11066 Set output pixel format. Default is @code{yuva444p}.
11067 @end table
11068
11069 @subsection Examples
11070
11071 @itemize
11072 @item
11073 Merge three gray video streams of same width and height into single video stream:
11074 @example
11075 [a0][a1][a2]mergeplanes=0x001020:yuv444p
11076 @end example
11077
11078 @item
11079 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
11080 @example
11081 [a0][a1]mergeplanes=0x00010210:yuva444p
11082 @end example
11083
11084 @item
11085 Swap Y and A plane in yuva444p stream:
11086 @example
11087 format=yuva444p,mergeplanes=0x03010200:yuva444p
11088 @end example
11089
11090 @item
11091 Swap U and V plane in yuv420p stream:
11092 @example
11093 format=yuv420p,mergeplanes=0x000201:yuv420p
11094 @end example
11095
11096 @item
11097 Cast a rgb24 clip to yuv444p:
11098 @example
11099 format=rgb24,mergeplanes=0x000102:yuv444p
11100 @end example
11101 @end itemize
11102
11103 @section mestimate
11104
11105 Estimate and export motion vectors using block matching algorithms.
11106 Motion vectors are stored in frame side data to be used by other filters.
11107
11108 This filter accepts the following options:
11109 @table @option
11110 @item method
11111 Specify the motion estimation method. Accepts one of the following values:
11112
11113 @table @samp
11114 @item esa
11115 Exhaustive search algorithm.
11116 @item tss
11117 Three step search algorithm.
11118 @item tdls
11119 Two dimensional logarithmic search algorithm.
11120 @item ntss
11121 New three step search algorithm.
11122 @item fss
11123 Four step search algorithm.
11124 @item ds
11125 Diamond search algorithm.
11126 @item hexbs
11127 Hexagon-based search algorithm.
11128 @item epzs
11129 Enhanced predictive zonal search algorithm.
11130 @item umh
11131 Uneven multi-hexagon search algorithm.
11132 @end table
11133 Default value is @samp{esa}.
11134
11135 @item mb_size
11136 Macroblock size. Default @code{16}.
11137
11138 @item search_param
11139 Search parameter. Default @code{7}.
11140 @end table
11141
11142 @section midequalizer
11143
11144 Apply Midway Image Equalization effect using two video streams.
11145
11146 Midway Image Equalization adjusts a pair of images to have the same
11147 histogram, while maintaining their dynamics as much as possible. It's
11148 useful for e.g. matching exposures from a pair of stereo cameras.
11149
11150 This filter has two inputs and one output, which must be of same pixel format, but
11151 may be of different sizes. The output of filter is first input adjusted with
11152 midway histogram of both inputs.
11153
11154 This filter accepts the following option:
11155
11156 @table @option
11157 @item planes
11158 Set which planes to process. Default is @code{15}, which is all available planes.
11159 @end table
11160
11161 @section minterpolate
11162
11163 Convert the video to specified frame rate using motion interpolation.
11164
11165 This filter accepts the following options:
11166 @table @option
11167 @item fps
11168 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}.
11169
11170 @item mi_mode
11171 Motion interpolation mode. Following values are accepted:
11172 @table @samp
11173 @item dup
11174 Duplicate previous or next frame for interpolating new ones.
11175 @item blend
11176 Blend source frames. Interpolated frame is mean of previous and next frames.
11177 @item mci
11178 Motion compensated interpolation. Following options are effective when this mode is selected:
11179
11180 @table @samp
11181 @item mc_mode
11182 Motion compensation mode. Following values are accepted:
11183 @table @samp
11184 @item obmc
11185 Overlapped block motion compensation.
11186 @item aobmc
11187 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
11188 @end table
11189 Default mode is @samp{obmc}.
11190
11191 @item me_mode
11192 Motion estimation mode. Following values are accepted:
11193 @table @samp
11194 @item bidir
11195 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
11196 @item bilat
11197 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
11198 @end table
11199 Default mode is @samp{bilat}.
11200
11201 @item me
11202 The algorithm to be used for motion estimation. Following values are accepted:
11203 @table @samp
11204 @item esa
11205 Exhaustive search algorithm.
11206 @item tss
11207 Three step search algorithm.
11208 @item tdls
11209 Two dimensional logarithmic search algorithm.
11210 @item ntss
11211 New three step search algorithm.
11212 @item fss
11213 Four step search algorithm.
11214 @item ds
11215 Diamond search algorithm.
11216 @item hexbs
11217 Hexagon-based search algorithm.
11218 @item epzs
11219 Enhanced predictive zonal search algorithm.
11220 @item umh
11221 Uneven multi-hexagon search algorithm.
11222 @end table
11223 Default algorithm is @samp{epzs}.
11224
11225 @item mb_size
11226 Macroblock size. Default @code{16}.
11227
11228 @item search_param
11229 Motion estimation search parameter. Default @code{32}.
11230
11231 @item vsbmc
11232 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).
11233 @end table
11234 @end table
11235
11236 @item scd
11237 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:
11238 @table @samp
11239 @item none
11240 Disable scene change detection.
11241 @item fdiff
11242 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
11243 @end table
11244 Default method is @samp{fdiff}.
11245
11246 @item scd_threshold
11247 Scene change detection threshold. Default is @code{5.0}.
11248 @end table
11249
11250 @section mix
11251
11252 Mix several video input streams into one video stream.
11253
11254 A description of the accepted options follows.
11255
11256 @table @option
11257 @item nb_inputs
11258 The number of inputs. If unspecified, it defaults to 2.
11259
11260 @item weights
11261 Specify weight of each input video stream as sequence.
11262 Each weight is separated by space. If number of weights
11263 is smaller than number of @var{frames} last specified
11264 weight will be used for all remaining unset weights.
11265
11266 @item scale
11267 Specify scale, if it is set it will be multiplied with sum
11268 of each weight multiplied with pixel values to give final destination
11269 pixel value. By default @var{scale} is auto scaled to sum of weights.
11270
11271 @item duration
11272 Specify how end of stream is determined.
11273 @table @samp
11274 @item longest
11275 The duration of the longest input. (default)
11276
11277 @item shortest
11278 The duration of the shortest input.
11279
11280 @item first
11281 The duration of the first input.
11282 @end table
11283 @end table
11284
11285 @section mpdecimate
11286
11287 Drop frames that do not differ greatly from the previous frame in
11288 order to reduce frame rate.
11289
11290 The main use of this filter is for very-low-bitrate encoding
11291 (e.g. streaming over dialup modem), but it could in theory be used for
11292 fixing movies that were inverse-telecined incorrectly.
11293
11294 A description of the accepted options follows.
11295
11296 @table @option
11297 @item max
11298 Set the maximum number of consecutive frames which can be dropped (if
11299 positive), or the minimum interval between dropped frames (if
11300 negative). If the value is 0, the frame is dropped disregarding the
11301 number of previous sequentially dropped frames.
11302
11303 Default value is 0.
11304
11305 @item hi
11306 @item lo
11307 @item frac
11308 Set the dropping threshold values.
11309
11310 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
11311 represent actual pixel value differences, so a threshold of 64
11312 corresponds to 1 unit of difference for each pixel, or the same spread
11313 out differently over the block.
11314
11315 A frame is a candidate for dropping if no 8x8 blocks differ by more
11316 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
11317 meaning the whole image) differ by more than a threshold of @option{lo}.
11318
11319 Default value for @option{hi} is 64*12, default value for @option{lo} is
11320 64*5, and default value for @option{frac} is 0.33.
11321 @end table
11322
11323
11324 @section negate
11325
11326 Negate input video.
11327
11328 It accepts an integer in input; if non-zero it negates the
11329 alpha component (if available). The default value in input is 0.
11330
11331 @section nlmeans
11332
11333 Denoise frames using Non-Local Means algorithm.
11334
11335 Each pixel is adjusted by looking for other pixels with similar contexts. This
11336 context similarity is defined by comparing their surrounding patches of size
11337 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
11338 around the pixel.
11339
11340 Note that the research area defines centers for patches, which means some
11341 patches will be made of pixels outside that research area.
11342
11343 The filter accepts the following options.
11344
11345 @table @option
11346 @item s
11347 Set denoising strength.
11348
11349 @item p
11350 Set patch size.
11351
11352 @item pc
11353 Same as @option{p} but for chroma planes.
11354
11355 The default value is @var{0} and means automatic.
11356
11357 @item r
11358 Set research size.
11359
11360 @item rc
11361 Same as @option{r} but for chroma planes.
11362
11363 The default value is @var{0} and means automatic.
11364 @end table
11365
11366 @section nnedi
11367
11368 Deinterlace video using neural network edge directed interpolation.
11369
11370 This filter accepts the following options:
11371
11372 @table @option
11373 @item weights
11374 Mandatory option, without binary file filter can not work.
11375 Currently file can be found here:
11376 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
11377
11378 @item deint
11379 Set which frames to deinterlace, by default it is @code{all}.
11380 Can be @code{all} or @code{interlaced}.
11381
11382 @item field
11383 Set mode of operation.
11384
11385 Can be one of the following:
11386
11387 @table @samp
11388 @item af
11389 Use frame flags, both fields.
11390 @item a
11391 Use frame flags, single field.
11392 @item t
11393 Use top field only.
11394 @item b
11395 Use bottom field only.
11396 @item tf
11397 Use both fields, top first.
11398 @item bf
11399 Use both fields, bottom first.
11400 @end table
11401
11402 @item planes
11403 Set which planes to process, by default filter process all frames.
11404
11405 @item nsize
11406 Set size of local neighborhood around each pixel, used by the predictor neural
11407 network.
11408
11409 Can be one of the following:
11410
11411 @table @samp
11412 @item s8x6
11413 @item s16x6
11414 @item s32x6
11415 @item s48x6
11416 @item s8x4
11417 @item s16x4
11418 @item s32x4
11419 @end table
11420
11421 @item nns
11422 Set the number of neurons in predictor neural network.
11423 Can be one of the following:
11424
11425 @table @samp
11426 @item n16
11427 @item n32
11428 @item n64
11429 @item n128
11430 @item n256
11431 @end table
11432
11433 @item qual
11434 Controls the number of different neural network predictions that are blended
11435 together to compute the final output value. Can be @code{fast}, default or
11436 @code{slow}.
11437
11438 @item etype
11439 Set which set of weights to use in the predictor.
11440 Can be one of the following:
11441
11442 @table @samp
11443 @item a
11444 weights trained to minimize absolute error
11445 @item s
11446 weights trained to minimize squared error
11447 @end table
11448
11449 @item pscrn
11450 Controls whether or not the prescreener neural network is used to decide
11451 which pixels should be processed by the predictor neural network and which
11452 can be handled by simple cubic interpolation.
11453 The prescreener is trained to know whether cubic interpolation will be
11454 sufficient for a pixel or whether it should be predicted by the predictor nn.
11455 The computational complexity of the prescreener nn is much less than that of
11456 the predictor nn. Since most pixels can be handled by cubic interpolation,
11457 using the prescreener generally results in much faster processing.
11458 The prescreener is pretty accurate, so the difference between using it and not
11459 using it is almost always unnoticeable.
11460
11461 Can be one of the following:
11462
11463 @table @samp
11464 @item none
11465 @item original
11466 @item new
11467 @end table
11468
11469 Default is @code{new}.
11470
11471 @item fapprox
11472 Set various debugging flags.
11473 @end table
11474
11475 @section noformat
11476
11477 Force libavfilter not to use any of the specified pixel formats for the
11478 input to the next filter.
11479
11480 It accepts the following parameters:
11481 @table @option
11482
11483 @item pix_fmts
11484 A '|'-separated list of pixel format names, such as
11485 pix_fmts=yuv420p|monow|rgb24".
11486
11487 @end table
11488
11489 @subsection Examples
11490
11491 @itemize
11492 @item
11493 Force libavfilter to use a format different from @var{yuv420p} for the
11494 input to the vflip filter:
11495 @example
11496 noformat=pix_fmts=yuv420p,vflip
11497 @end example
11498
11499 @item
11500 Convert the input video to any of the formats not contained in the list:
11501 @example
11502 noformat=yuv420p|yuv444p|yuv410p
11503 @end example
11504 @end itemize
11505
11506 @section noise
11507
11508 Add noise on video input frame.
11509
11510 The filter accepts the following options:
11511
11512 @table @option
11513 @item all_seed
11514 @item c0_seed
11515 @item c1_seed
11516 @item c2_seed
11517 @item c3_seed
11518 Set noise seed for specific pixel component or all pixel components in case
11519 of @var{all_seed}. Default value is @code{123457}.
11520
11521 @item all_strength, alls
11522 @item c0_strength, c0s
11523 @item c1_strength, c1s
11524 @item c2_strength, c2s
11525 @item c3_strength, c3s
11526 Set noise strength for specific pixel component or all pixel components in case
11527 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
11528
11529 @item all_flags, allf
11530 @item c0_flags, c0f
11531 @item c1_flags, c1f
11532 @item c2_flags, c2f
11533 @item c3_flags, c3f
11534 Set pixel component flags or set flags for all components if @var{all_flags}.
11535 Available values for component flags are:
11536 @table @samp
11537 @item a
11538 averaged temporal noise (smoother)
11539 @item p
11540 mix random noise with a (semi)regular pattern
11541 @item t
11542 temporal noise (noise pattern changes between frames)
11543 @item u
11544 uniform noise (gaussian otherwise)
11545 @end table
11546 @end table
11547
11548 @subsection Examples
11549
11550 Add temporal and uniform noise to input video:
11551 @example
11552 noise=alls=20:allf=t+u
11553 @end example
11554
11555 @section normalize
11556
11557 Normalize RGB video (aka histogram stretching, contrast stretching).
11558 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
11559
11560 For each channel of each frame, the filter computes the input range and maps
11561 it linearly to the user-specified output range. The output range defaults
11562 to the full dynamic range from pure black to pure white.
11563
11564 Temporal smoothing can be used on the input range to reduce flickering (rapid
11565 changes in brightness) caused when small dark or bright objects enter or leave
11566 the scene. This is similar to the auto-exposure (automatic gain control) on a
11567 video camera, and, like a video camera, it may cause a period of over- or
11568 under-exposure of the video.
11569
11570 The R,G,B channels can be normalized independently, which may cause some
11571 color shifting, or linked together as a single channel, which prevents
11572 color shifting. Linked normalization preserves hue. Independent normalization
11573 does not, so it can be used to remove some color casts. Independent and linked
11574 normalization can be combined in any ratio.
11575
11576 The normalize filter accepts the following options:
11577
11578 @table @option
11579 @item blackpt
11580 @item whitept
11581 Colors which define the output range. The minimum input value is mapped to
11582 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
11583 The defaults are black and white respectively. Specifying white for
11584 @var{blackpt} and black for @var{whitept} will give color-inverted,
11585 normalized video. Shades of grey can be used to reduce the dynamic range
11586 (contrast). Specifying saturated colors here can create some interesting
11587 effects.
11588
11589 @item smoothing
11590 The number of previous frames to use for temporal smoothing. The input range
11591 of each channel is smoothed using a rolling average over the current frame
11592 and the @var{smoothing} previous frames. The default is 0 (no temporal
11593 smoothing).
11594
11595 @item independence
11596 Controls the ratio of independent (color shifting) channel normalization to
11597 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
11598 independent. Defaults to 1.0 (fully independent).
11599
11600 @item strength
11601 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
11602 expensive no-op. Defaults to 1.0 (full strength).
11603
11604 @end table
11605
11606 @subsection Examples
11607
11608 Stretch video contrast to use the full dynamic range, with no temporal
11609 smoothing; may flicker depending on the source content:
11610 @example
11611 normalize=blackpt=black:whitept=white:smoothing=0
11612 @end example
11613
11614 As above, but with 50 frames of temporal smoothing; flicker should be
11615 reduced, depending on the source content:
11616 @example
11617 normalize=blackpt=black:whitept=white:smoothing=50
11618 @end example
11619
11620 As above, but with hue-preserving linked channel normalization:
11621 @example
11622 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
11623 @end example
11624
11625 As above, but with half strength:
11626 @example
11627 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
11628 @end example
11629
11630 Map the darkest input color to red, the brightest input color to cyan:
11631 @example
11632 normalize=blackpt=red:whitept=cyan
11633 @end example
11634
11635 @section null
11636
11637 Pass the video source unchanged to the output.
11638
11639 @section ocr
11640 Optical Character Recognition
11641
11642 This filter uses Tesseract for optical character recognition.
11643
11644 It accepts the following options:
11645
11646 @table @option
11647 @item datapath
11648 Set datapath to tesseract data. Default is to use whatever was
11649 set at installation.
11650
11651 @item language
11652 Set language, default is "eng".
11653
11654 @item whitelist
11655 Set character whitelist.
11656
11657 @item blacklist
11658 Set character blacklist.
11659 @end table
11660
11661 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
11662
11663 @section ocv
11664
11665 Apply a video transform using libopencv.
11666
11667 To enable this filter, install the libopencv library and headers and
11668 configure FFmpeg with @code{--enable-libopencv}.
11669
11670 It accepts the following parameters:
11671
11672 @table @option
11673
11674 @item filter_name
11675 The name of the libopencv filter to apply.
11676
11677 @item filter_params
11678 The parameters to pass to the libopencv filter. If not specified, the default
11679 values are assumed.
11680
11681 @end table
11682
11683 Refer to the official libopencv documentation for more precise
11684 information:
11685 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
11686
11687 Several libopencv filters are supported; see the following subsections.
11688
11689 @anchor{dilate}
11690 @subsection dilate
11691
11692 Dilate an image by using a specific structuring element.
11693 It corresponds to the libopencv function @code{cvDilate}.
11694
11695 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
11696
11697 @var{struct_el} represents a structuring element, and has the syntax:
11698 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
11699
11700 @var{cols} and @var{rows} represent the number of columns and rows of
11701 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
11702 point, and @var{shape} the shape for the structuring element. @var{shape}
11703 must be "rect", "cross", "ellipse", or "custom".
11704
11705 If the value for @var{shape} is "custom", it must be followed by a
11706 string of the form "=@var{filename}". The file with name
11707 @var{filename} is assumed to represent a binary image, with each
11708 printable character corresponding to a bright pixel. When a custom
11709 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
11710 or columns and rows of the read file are assumed instead.
11711
11712 The default value for @var{struct_el} is "3x3+0x0/rect".
11713
11714 @var{nb_iterations} specifies the number of times the transform is
11715 applied to the image, and defaults to 1.
11716
11717 Some examples:
11718 @example
11719 # Use the default values
11720 ocv=dilate
11721
11722 # Dilate using a structuring element with a 5x5 cross, iterating two times
11723 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
11724
11725 # Read the shape from the file diamond.shape, iterating two times.
11726 # The file diamond.shape may contain a pattern of characters like this
11727 #   *
11728 #  ***
11729 # *****
11730 #  ***
11731 #   *
11732 # The specified columns and rows are ignored
11733 # but the anchor point coordinates are not
11734 ocv=dilate:0x0+2x2/custom=diamond.shape|2
11735 @end example
11736
11737 @subsection erode
11738
11739 Erode an image by using a specific structuring element.
11740 It corresponds to the libopencv function @code{cvErode}.
11741
11742 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
11743 with the same syntax and semantics as the @ref{dilate} filter.
11744
11745 @subsection smooth
11746
11747 Smooth the input video.
11748
11749 The filter takes the following parameters:
11750 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
11751
11752 @var{type} is the type of smooth filter to apply, and must be one of
11753 the following values: "blur", "blur_no_scale", "median", "gaussian",
11754 or "bilateral". The default value is "gaussian".
11755
11756 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
11757 depend on the smooth type. @var{param1} and
11758 @var{param2} accept integer positive values or 0. @var{param3} and
11759 @var{param4} accept floating point values.
11760
11761 The default value for @var{param1} is 3. The default value for the
11762 other parameters is 0.
11763
11764 These parameters correspond to the parameters assigned to the
11765 libopencv function @code{cvSmooth}.
11766
11767 @section oscilloscope
11768
11769 2D Video Oscilloscope.
11770
11771 Useful to measure spatial impulse, step responses, chroma delays, etc.
11772
11773 It accepts the following parameters:
11774
11775 @table @option
11776 @item x
11777 Set scope center x position.
11778
11779 @item y
11780 Set scope center y position.
11781
11782 @item s
11783 Set scope size, relative to frame diagonal.
11784
11785 @item t
11786 Set scope tilt/rotation.
11787
11788 @item o
11789 Set trace opacity.
11790
11791 @item tx
11792 Set trace center x position.
11793
11794 @item ty
11795 Set trace center y position.
11796
11797 @item tw
11798 Set trace width, relative to width of frame.
11799
11800 @item th
11801 Set trace height, relative to height of frame.
11802
11803 @item c
11804 Set which components to trace. By default it traces first three components.
11805
11806 @item g
11807 Draw trace grid. By default is enabled.
11808
11809 @item st
11810 Draw some statistics. By default is enabled.
11811
11812 @item sc
11813 Draw scope. By default is enabled.
11814 @end table
11815
11816 @subsection Examples
11817
11818 @itemize
11819 @item
11820 Inspect full first row of video frame.
11821 @example
11822 oscilloscope=x=0.5:y=0:s=1
11823 @end example
11824
11825 @item
11826 Inspect full last row of video frame.
11827 @example
11828 oscilloscope=x=0.5:y=1:s=1
11829 @end example
11830
11831 @item
11832 Inspect full 5th line of video frame of height 1080.
11833 @example
11834 oscilloscope=x=0.5:y=5/1080:s=1
11835 @end example
11836
11837 @item
11838 Inspect full last column of video frame.
11839 @example
11840 oscilloscope=x=1:y=0.5:s=1:t=1
11841 @end example
11842
11843 @end itemize
11844
11845 @anchor{overlay}
11846 @section overlay
11847
11848 Overlay one video on top of another.
11849
11850 It takes two inputs and has one output. The first input is the "main"
11851 video on which the second input is overlaid.
11852
11853 It accepts the following parameters:
11854
11855 A description of the accepted options follows.
11856
11857 @table @option
11858 @item x
11859 @item y
11860 Set the expression for the x and y coordinates of the overlaid video
11861 on the main video. Default value is "0" for both expressions. In case
11862 the expression is invalid, it is set to a huge value (meaning that the
11863 overlay will not be displayed within the output visible area).
11864
11865 @item eof_action
11866 See @ref{framesync}.
11867
11868 @item eval
11869 Set when the expressions for @option{x}, and @option{y} are evaluated.
11870
11871 It accepts the following values:
11872 @table @samp
11873 @item init
11874 only evaluate expressions once during the filter initialization or
11875 when a command is processed
11876
11877 @item frame
11878 evaluate expressions for each incoming frame
11879 @end table
11880
11881 Default value is @samp{frame}.
11882
11883 @item shortest
11884 See @ref{framesync}.
11885
11886 @item format
11887 Set the format for the output video.
11888
11889 It accepts the following values:
11890 @table @samp
11891 @item yuv420
11892 force YUV420 output
11893
11894 @item yuv422
11895 force YUV422 output
11896
11897 @item yuv444
11898 force YUV444 output
11899
11900 @item rgb
11901 force packed RGB output
11902
11903 @item gbrp
11904 force planar RGB output
11905
11906 @item auto
11907 automatically pick format
11908 @end table
11909
11910 Default value is @samp{yuv420}.
11911
11912 @item repeatlast
11913 See @ref{framesync}.
11914
11915 @item alpha
11916 Set format of alpha of the overlaid video, it can be @var{straight} or
11917 @var{premultiplied}. Default is @var{straight}.
11918 @end table
11919
11920 The @option{x}, and @option{y} expressions can contain the following
11921 parameters.
11922
11923 @table @option
11924 @item main_w, W
11925 @item main_h, H
11926 The main input width and height.
11927
11928 @item overlay_w, w
11929 @item overlay_h, h
11930 The overlay input width and height.
11931
11932 @item x
11933 @item y
11934 The computed values for @var{x} and @var{y}. They are evaluated for
11935 each new frame.
11936
11937 @item hsub
11938 @item vsub
11939 horizontal and vertical chroma subsample values of the output
11940 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
11941 @var{vsub} is 1.
11942
11943 @item n
11944 the number of input frame, starting from 0
11945
11946 @item pos
11947 the position in the file of the input frame, NAN if unknown
11948
11949 @item t
11950 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
11951
11952 @end table
11953
11954 This filter also supports the @ref{framesync} options.
11955
11956 Note that the @var{n}, @var{pos}, @var{t} variables are available only
11957 when evaluation is done @emph{per frame}, and will evaluate to NAN
11958 when @option{eval} is set to @samp{init}.
11959
11960 Be aware that frames are taken from each input video in timestamp
11961 order, hence, if their initial timestamps differ, it is a good idea
11962 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
11963 have them begin in the same zero timestamp, as the example for
11964 the @var{movie} filter does.
11965
11966 You can chain together more overlays but you should test the
11967 efficiency of such approach.
11968
11969 @subsection Commands
11970
11971 This filter supports the following commands:
11972 @table @option
11973 @item x
11974 @item y
11975 Modify the x and y of the overlay input.
11976 The command accepts the same syntax of the corresponding option.
11977
11978 If the specified expression is not valid, it is kept at its current
11979 value.
11980 @end table
11981
11982 @subsection Examples
11983
11984 @itemize
11985 @item
11986 Draw the overlay at 10 pixels from the bottom right corner of the main
11987 video:
11988 @example
11989 overlay=main_w-overlay_w-10:main_h-overlay_h-10
11990 @end example
11991
11992 Using named options the example above becomes:
11993 @example
11994 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
11995 @end example
11996
11997 @item
11998 Insert a transparent PNG logo in the bottom left corner of the input,
11999 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
12000 @example
12001 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
12002 @end example
12003
12004 @item
12005 Insert 2 different transparent PNG logos (second logo on bottom
12006 right corner) using the @command{ffmpeg} tool:
12007 @example
12008 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
12009 @end example
12010
12011 @item
12012 Add a transparent color layer on top of the main video; @code{WxH}
12013 must specify the size of the main input to the overlay filter:
12014 @example
12015 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
12016 @end example
12017
12018 @item
12019 Play an original video and a filtered version (here with the deshake
12020 filter) side by side using the @command{ffplay} tool:
12021 @example
12022 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
12023 @end example
12024
12025 The above command is the same as:
12026 @example
12027 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
12028 @end example
12029
12030 @item
12031 Make a sliding overlay appearing from the left to the right top part of the
12032 screen starting since time 2:
12033 @example
12034 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
12035 @end example
12036
12037 @item
12038 Compose output by putting two input videos side to side:
12039 @example
12040 ffmpeg -i left.avi -i right.avi -filter_complex "
12041 nullsrc=size=200x100 [background];
12042 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
12043 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
12044 [background][left]       overlay=shortest=1       [background+left];
12045 [background+left][right] overlay=shortest=1:x=100 [left+right]
12046 "
12047 @end example
12048
12049 @item
12050 Mask 10-20 seconds of a video by applying the delogo filter to a section
12051 @example
12052 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
12053 -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]'
12054 masked.avi
12055 @end example
12056
12057 @item
12058 Chain several overlays in cascade:
12059 @example
12060 nullsrc=s=200x200 [bg];
12061 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
12062 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
12063 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
12064 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
12065 [in3] null,       [mid2] overlay=100:100 [out0]
12066 @end example
12067
12068 @end itemize
12069
12070 @section owdenoise
12071
12072 Apply Overcomplete Wavelet denoiser.
12073
12074 The filter accepts the following options:
12075
12076 @table @option
12077 @item depth
12078 Set depth.
12079
12080 Larger depth values will denoise lower frequency components more, but
12081 slow down filtering.
12082
12083 Must be an int in the range 8-16, default is @code{8}.
12084
12085 @item luma_strength, ls
12086 Set luma strength.
12087
12088 Must be a double value in the range 0-1000, default is @code{1.0}.
12089
12090 @item chroma_strength, cs
12091 Set chroma strength.
12092
12093 Must be a double value in the range 0-1000, default is @code{1.0}.
12094 @end table
12095
12096 @anchor{pad}
12097 @section pad
12098
12099 Add paddings to the input image, and place the original input at the
12100 provided @var{x}, @var{y} coordinates.
12101
12102 It accepts the following parameters:
12103
12104 @table @option
12105 @item width, w
12106 @item height, h
12107 Specify an expression for the size of the output image with the
12108 paddings added. If the value for @var{width} or @var{height} is 0, the
12109 corresponding input size is used for the output.
12110
12111 The @var{width} expression can reference the value set by the
12112 @var{height} expression, and vice versa.
12113
12114 The default value of @var{width} and @var{height} is 0.
12115
12116 @item x
12117 @item y
12118 Specify the offsets to place the input image at within the padded area,
12119 with respect to the top/left border of the output image.
12120
12121 The @var{x} expression can reference the value set by the @var{y}
12122 expression, and vice versa.
12123
12124 The default value of @var{x} and @var{y} is 0.
12125
12126 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
12127 so the input image is centered on the padded area.
12128
12129 @item color
12130 Specify the color of the padded area. For the syntax of this option,
12131 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
12132 manual,ffmpeg-utils}.
12133
12134 The default value of @var{color} is "black".
12135
12136 @item eval
12137 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
12138
12139 It accepts the following values:
12140
12141 @table @samp
12142 @item init
12143 Only evaluate expressions once during the filter initialization or when
12144 a command is processed.
12145
12146 @item frame
12147 Evaluate expressions for each incoming frame.
12148
12149 @end table
12150
12151 Default value is @samp{init}.
12152
12153 @item aspect
12154 Pad to aspect instead to a resolution.
12155
12156 @end table
12157
12158 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
12159 options are expressions containing the following constants:
12160
12161 @table @option
12162 @item in_w
12163 @item in_h
12164 The input video width and height.
12165
12166 @item iw
12167 @item ih
12168 These are the same as @var{in_w} and @var{in_h}.
12169
12170 @item out_w
12171 @item out_h
12172 The output width and height (the size of the padded area), as
12173 specified by the @var{width} and @var{height} expressions.
12174
12175 @item ow
12176 @item oh
12177 These are the same as @var{out_w} and @var{out_h}.
12178
12179 @item x
12180 @item y
12181 The x and y offsets as specified by the @var{x} and @var{y}
12182 expressions, or NAN if not yet specified.
12183
12184 @item a
12185 same as @var{iw} / @var{ih}
12186
12187 @item sar
12188 input sample aspect ratio
12189
12190 @item dar
12191 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
12192
12193 @item hsub
12194 @item vsub
12195 The horizontal and vertical chroma subsample values. For example for the
12196 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12197 @end table
12198
12199 @subsection Examples
12200
12201 @itemize
12202 @item
12203 Add paddings with the color "violet" to the input video. The output video
12204 size is 640x480, and the top-left corner of the input video is placed at
12205 column 0, row 40
12206 @example
12207 pad=640:480:0:40:violet
12208 @end example
12209
12210 The example above is equivalent to the following command:
12211 @example
12212 pad=width=640:height=480:x=0:y=40:color=violet
12213 @end example
12214
12215 @item
12216 Pad the input to get an output with dimensions increased by 3/2,
12217 and put the input video at the center of the padded area:
12218 @example
12219 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
12220 @end example
12221
12222 @item
12223 Pad the input to get a squared output with size equal to the maximum
12224 value between the input width and height, and put the input video at
12225 the center of the padded area:
12226 @example
12227 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
12228 @end example
12229
12230 @item
12231 Pad the input to get a final w/h ratio of 16:9:
12232 @example
12233 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
12234 @end example
12235
12236 @item
12237 In case of anamorphic video, in order to set the output display aspect
12238 correctly, it is necessary to use @var{sar} in the expression,
12239 according to the relation:
12240 @example
12241 (ih * X / ih) * sar = output_dar
12242 X = output_dar / sar
12243 @end example
12244
12245 Thus the previous example needs to be modified to:
12246 @example
12247 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
12248 @end example
12249
12250 @item
12251 Double the output size and put the input video in the bottom-right
12252 corner of the output padded area:
12253 @example
12254 pad="2*iw:2*ih:ow-iw:oh-ih"
12255 @end example
12256 @end itemize
12257
12258 @anchor{palettegen}
12259 @section palettegen
12260
12261 Generate one palette for a whole video stream.
12262
12263 It accepts the following options:
12264
12265 @table @option
12266 @item max_colors
12267 Set the maximum number of colors to quantize in the palette.
12268 Note: the palette will still contain 256 colors; the unused palette entries
12269 will be black.
12270
12271 @item reserve_transparent
12272 Create a palette of 255 colors maximum and reserve the last one for
12273 transparency. Reserving the transparency color is useful for GIF optimization.
12274 If not set, the maximum of colors in the palette will be 256. You probably want
12275 to disable this option for a standalone image.
12276 Set by default.
12277
12278 @item transparency_color
12279 Set the color that will be used as background for transparency.
12280
12281 @item stats_mode
12282 Set statistics mode.
12283
12284 It accepts the following values:
12285 @table @samp
12286 @item full
12287 Compute full frame histograms.
12288 @item diff
12289 Compute histograms only for the part that differs from previous frame. This
12290 might be relevant to give more importance to the moving part of your input if
12291 the background is static.
12292 @item single
12293 Compute new histogram for each frame.
12294 @end table
12295
12296 Default value is @var{full}.
12297 @end table
12298
12299 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
12300 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
12301 color quantization of the palette. This information is also visible at
12302 @var{info} logging level.
12303
12304 @subsection Examples
12305
12306 @itemize
12307 @item
12308 Generate a representative palette of a given video using @command{ffmpeg}:
12309 @example
12310 ffmpeg -i input.mkv -vf palettegen palette.png
12311 @end example
12312 @end itemize
12313
12314 @section paletteuse
12315
12316 Use a palette to downsample an input video stream.
12317
12318 The filter takes two inputs: one video stream and a palette. The palette must
12319 be a 256 pixels image.
12320
12321 It accepts the following options:
12322
12323 @table @option
12324 @item dither
12325 Select dithering mode. Available algorithms are:
12326 @table @samp
12327 @item bayer
12328 Ordered 8x8 bayer dithering (deterministic)
12329 @item heckbert
12330 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
12331 Note: this dithering is sometimes considered "wrong" and is included as a
12332 reference.
12333 @item floyd_steinberg
12334 Floyd and Steingberg dithering (error diffusion)
12335 @item sierra2
12336 Frankie Sierra dithering v2 (error diffusion)
12337 @item sierra2_4a
12338 Frankie Sierra dithering v2 "Lite" (error diffusion)
12339 @end table
12340
12341 Default is @var{sierra2_4a}.
12342
12343 @item bayer_scale
12344 When @var{bayer} dithering is selected, this option defines the scale of the
12345 pattern (how much the crosshatch pattern is visible). A low value means more
12346 visible pattern for less banding, and higher value means less visible pattern
12347 at the cost of more banding.
12348
12349 The option must be an integer value in the range [0,5]. Default is @var{2}.
12350
12351 @item diff_mode
12352 If set, define the zone to process
12353
12354 @table @samp
12355 @item rectangle
12356 Only the changing rectangle will be reprocessed. This is similar to GIF
12357 cropping/offsetting compression mechanism. This option can be useful for speed
12358 if only a part of the image is changing, and has use cases such as limiting the
12359 scope of the error diffusal @option{dither} to the rectangle that bounds the
12360 moving scene (it leads to more deterministic output if the scene doesn't change
12361 much, and as a result less moving noise and better GIF compression).
12362 @end table
12363
12364 Default is @var{none}.
12365
12366 @item new
12367 Take new palette for each output frame.
12368
12369 @item alpha_threshold
12370 Sets the alpha threshold for transparency. Alpha values above this threshold
12371 will be treated as completely opaque, and values below this threshold will be
12372 treated as completely transparent.
12373
12374 The option must be an integer value in the range [0,255]. Default is @var{128}.
12375 @end table
12376
12377 @subsection Examples
12378
12379 @itemize
12380 @item
12381 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
12382 using @command{ffmpeg}:
12383 @example
12384 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
12385 @end example
12386 @end itemize
12387
12388 @section perspective
12389
12390 Correct perspective of video not recorded perpendicular to the screen.
12391
12392 A description of the accepted parameters follows.
12393
12394 @table @option
12395 @item x0
12396 @item y0
12397 @item x1
12398 @item y1
12399 @item x2
12400 @item y2
12401 @item x3
12402 @item y3
12403 Set coordinates expression for top left, top right, bottom left and bottom right corners.
12404 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
12405 If the @code{sense} option is set to @code{source}, then the specified points will be sent
12406 to the corners of the destination. If the @code{sense} option is set to @code{destination},
12407 then the corners of the source will be sent to the specified coordinates.
12408
12409 The expressions can use the following variables:
12410
12411 @table @option
12412 @item W
12413 @item H
12414 the width and height of video frame.
12415 @item in
12416 Input frame count.
12417 @item on
12418 Output frame count.
12419 @end table
12420
12421 @item interpolation
12422 Set interpolation for perspective correction.
12423
12424 It accepts the following values:
12425 @table @samp
12426 @item linear
12427 @item cubic
12428 @end table
12429
12430 Default value is @samp{linear}.
12431
12432 @item sense
12433 Set interpretation of coordinate options.
12434
12435 It accepts the following values:
12436 @table @samp
12437 @item 0, source
12438
12439 Send point in the source specified by the given coordinates to
12440 the corners of the destination.
12441
12442 @item 1, destination
12443
12444 Send the corners of the source to the point in the destination specified
12445 by the given coordinates.
12446
12447 Default value is @samp{source}.
12448 @end table
12449
12450 @item eval
12451 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
12452
12453 It accepts the following values:
12454 @table @samp
12455 @item init
12456 only evaluate expressions once during the filter initialization or
12457 when a command is processed
12458
12459 @item frame
12460 evaluate expressions for each incoming frame
12461 @end table
12462
12463 Default value is @samp{init}.
12464 @end table
12465
12466 @section phase
12467
12468 Delay interlaced video by one field time so that the field order changes.
12469
12470 The intended use is to fix PAL movies that have been captured with the
12471 opposite field order to the film-to-video transfer.
12472
12473 A description of the accepted parameters follows.
12474
12475 @table @option
12476 @item mode
12477 Set phase mode.
12478
12479 It accepts the following values:
12480 @table @samp
12481 @item t
12482 Capture field order top-first, transfer bottom-first.
12483 Filter will delay the bottom field.
12484
12485 @item b
12486 Capture field order bottom-first, transfer top-first.
12487 Filter will delay the top field.
12488
12489 @item p
12490 Capture and transfer with the same field order. This mode only exists
12491 for the documentation of the other options to refer to, but if you
12492 actually select it, the filter will faithfully do nothing.
12493
12494 @item a
12495 Capture field order determined automatically by field flags, transfer
12496 opposite.
12497 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
12498 basis using field flags. If no field information is available,
12499 then this works just like @samp{u}.
12500
12501 @item u
12502 Capture unknown or varying, transfer opposite.
12503 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
12504 analyzing the images and selecting the alternative that produces best
12505 match between the fields.
12506
12507 @item T
12508 Capture top-first, transfer unknown or varying.
12509 Filter selects among @samp{t} and @samp{p} using image analysis.
12510
12511 @item B
12512 Capture bottom-first, transfer unknown or varying.
12513 Filter selects among @samp{b} and @samp{p} using image analysis.
12514
12515 @item A
12516 Capture determined by field flags, transfer unknown or varying.
12517 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
12518 image analysis. If no field information is available, then this works just
12519 like @samp{U}. This is the default mode.
12520
12521 @item U
12522 Both capture and transfer unknown or varying.
12523 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
12524 @end table
12525 @end table
12526
12527 @section pixdesctest
12528
12529 Pixel format descriptor test filter, mainly useful for internal
12530 testing. The output video should be equal to the input video.
12531
12532 For example:
12533 @example
12534 format=monow, pixdesctest
12535 @end example
12536
12537 can be used to test the monowhite pixel format descriptor definition.
12538
12539 @section pixscope
12540
12541 Display sample values of color channels. Mainly useful for checking color
12542 and levels. Minimum supported resolution is 640x480.
12543
12544 The filters accept the following options:
12545
12546 @table @option
12547 @item x
12548 Set scope X position, relative offset on X axis.
12549
12550 @item y
12551 Set scope Y position, relative offset on Y axis.
12552
12553 @item w
12554 Set scope width.
12555
12556 @item h
12557 Set scope height.
12558
12559 @item o
12560 Set window opacity. This window also holds statistics about pixel area.
12561
12562 @item wx
12563 Set window X position, relative offset on X axis.
12564
12565 @item wy
12566 Set window Y position, relative offset on Y axis.
12567 @end table
12568
12569 @section pp
12570
12571 Enable the specified chain of postprocessing subfilters using libpostproc. This
12572 library should be automatically selected with a GPL build (@code{--enable-gpl}).
12573 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
12574 Each subfilter and some options have a short and a long name that can be used
12575 interchangeably, i.e. dr/dering are the same.
12576
12577 The filters accept the following options:
12578
12579 @table @option
12580 @item subfilters
12581 Set postprocessing subfilters string.
12582 @end table
12583
12584 All subfilters share common options to determine their scope:
12585
12586 @table @option
12587 @item a/autoq
12588 Honor the quality commands for this subfilter.
12589
12590 @item c/chrom
12591 Do chrominance filtering, too (default).
12592
12593 @item y/nochrom
12594 Do luminance filtering only (no chrominance).
12595
12596 @item n/noluma
12597 Do chrominance filtering only (no luminance).
12598 @end table
12599
12600 These options can be appended after the subfilter name, separated by a '|'.
12601
12602 Available subfilters are:
12603
12604 @table @option
12605 @item hb/hdeblock[|difference[|flatness]]
12606 Horizontal deblocking filter
12607 @table @option
12608 @item difference
12609 Difference factor where higher values mean more deblocking (default: @code{32}).
12610 @item flatness
12611 Flatness threshold where lower values mean more deblocking (default: @code{39}).
12612 @end table
12613
12614 @item vb/vdeblock[|difference[|flatness]]
12615 Vertical deblocking filter
12616 @table @option
12617 @item difference
12618 Difference factor where higher values mean more deblocking (default: @code{32}).
12619 @item flatness
12620 Flatness threshold where lower values mean more deblocking (default: @code{39}).
12621 @end table
12622
12623 @item ha/hadeblock[|difference[|flatness]]
12624 Accurate horizontal deblocking filter
12625 @table @option
12626 @item difference
12627 Difference factor where higher values mean more deblocking (default: @code{32}).
12628 @item flatness
12629 Flatness threshold where lower values mean more deblocking (default: @code{39}).
12630 @end table
12631
12632 @item va/vadeblock[|difference[|flatness]]
12633 Accurate vertical deblocking filter
12634 @table @option
12635 @item difference
12636 Difference factor where higher values mean more deblocking (default: @code{32}).
12637 @item flatness
12638 Flatness threshold where lower values mean more deblocking (default: @code{39}).
12639 @end table
12640 @end table
12641
12642 The horizontal and vertical deblocking filters share the difference and
12643 flatness values so you cannot set different horizontal and vertical
12644 thresholds.
12645
12646 @table @option
12647 @item h1/x1hdeblock
12648 Experimental horizontal deblocking filter
12649
12650 @item v1/x1vdeblock
12651 Experimental vertical deblocking filter
12652
12653 @item dr/dering
12654 Deringing filter
12655
12656 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
12657 @table @option
12658 @item threshold1
12659 larger -> stronger filtering
12660 @item threshold2
12661 larger -> stronger filtering
12662 @item threshold3
12663 larger -> stronger filtering
12664 @end table
12665
12666 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
12667 @table @option
12668 @item f/fullyrange
12669 Stretch luminance to @code{0-255}.
12670 @end table
12671
12672 @item lb/linblenddeint
12673 Linear blend deinterlacing filter that deinterlaces the given block by
12674 filtering all lines with a @code{(1 2 1)} filter.
12675
12676 @item li/linipoldeint
12677 Linear interpolating deinterlacing filter that deinterlaces the given block by
12678 linearly interpolating every second line.
12679
12680 @item ci/cubicipoldeint
12681 Cubic interpolating deinterlacing filter deinterlaces the given block by
12682 cubically interpolating every second line.
12683
12684 @item md/mediandeint
12685 Median deinterlacing filter that deinterlaces the given block by applying a
12686 median filter to every second line.
12687
12688 @item fd/ffmpegdeint
12689 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
12690 second line with a @code{(-1 4 2 4 -1)} filter.
12691
12692 @item l5/lowpass5
12693 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
12694 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
12695
12696 @item fq/forceQuant[|quantizer]
12697 Overrides the quantizer table from the input with the constant quantizer you
12698 specify.
12699 @table @option
12700 @item quantizer
12701 Quantizer to use
12702 @end table
12703
12704 @item de/default
12705 Default pp filter combination (@code{hb|a,vb|a,dr|a})
12706
12707 @item fa/fast
12708 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
12709
12710 @item ac
12711 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
12712 @end table
12713
12714 @subsection Examples
12715
12716 @itemize
12717 @item
12718 Apply horizontal and vertical deblocking, deringing and automatic
12719 brightness/contrast:
12720 @example
12721 pp=hb/vb/dr/al
12722 @end example
12723
12724 @item
12725 Apply default filters without brightness/contrast correction:
12726 @example
12727 pp=de/-al
12728 @end example
12729
12730 @item
12731 Apply default filters and temporal denoiser:
12732 @example
12733 pp=default/tmpnoise|1|2|3
12734 @end example
12735
12736 @item
12737 Apply deblocking on luminance only, and switch vertical deblocking on or off
12738 automatically depending on available CPU time:
12739 @example
12740 pp=hb|y/vb|a
12741 @end example
12742 @end itemize
12743
12744 @section pp7
12745 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
12746 similar to spp = 6 with 7 point DCT, where only the center sample is
12747 used after IDCT.
12748
12749 The filter accepts the following options:
12750
12751 @table @option
12752 @item qp
12753 Force a constant quantization parameter. It accepts an integer in range
12754 0 to 63. If not set, the filter will use the QP from the video stream
12755 (if available).
12756
12757 @item mode
12758 Set thresholding mode. Available modes are:
12759
12760 @table @samp
12761 @item hard
12762 Set hard thresholding.
12763 @item soft
12764 Set soft thresholding (better de-ringing effect, but likely blurrier).
12765 @item medium
12766 Set medium thresholding (good results, default).
12767 @end table
12768 @end table
12769
12770 @section premultiply
12771 Apply alpha premultiply effect to input video stream using first plane
12772 of second stream as alpha.
12773
12774 Both streams must have same dimensions and same pixel format.
12775
12776 The filter accepts the following option:
12777
12778 @table @option
12779 @item planes
12780 Set which planes will be processed, unprocessed planes will be copied.
12781 By default value 0xf, all planes will be processed.
12782
12783 @item inplace
12784 Do not require 2nd input for processing, instead use alpha plane from input stream.
12785 @end table
12786
12787 @section prewitt
12788 Apply prewitt operator to input video stream.
12789
12790 The filter accepts the following option:
12791
12792 @table @option
12793 @item planes
12794 Set which planes will be processed, unprocessed planes will be copied.
12795 By default value 0xf, all planes will be processed.
12796
12797 @item scale
12798 Set value which will be multiplied with filtered result.
12799
12800 @item delta
12801 Set value which will be added to filtered result.
12802 @end table
12803
12804 @anchor{program_opencl}
12805 @section program_opencl
12806
12807 Filter video using an OpenCL program.
12808
12809 @table @option
12810
12811 @item source
12812 OpenCL program source file.
12813
12814 @item kernel
12815 Kernel name in program.
12816
12817 @item inputs
12818 Number of inputs to the filter.  Defaults to 1.
12819
12820 @item size, s
12821 Size of output frames.  Defaults to the same as the first input.
12822
12823 @end table
12824
12825 The program source file must contain a kernel function with the given name,
12826 which will be run once for each plane of the output.  Each run on a plane
12827 gets enqueued as a separate 2D global NDRange with one work-item for each
12828 pixel to be generated.  The global ID offset for each work-item is therefore
12829 the coordinates of a pixel in the destination image.
12830
12831 The kernel function needs to take the following arguments:
12832 @itemize
12833 @item
12834 Destination image, @var{__write_only image2d_t}.
12835
12836 This image will become the output; the kernel should write all of it.
12837 @item
12838 Frame index, @var{unsigned int}.
12839
12840 This is a counter starting from zero and increasing by one for each frame.
12841 @item
12842 Source images, @var{__read_only image2d_t}.
12843
12844 These are the most recent images on each input.  The kernel may read from
12845 them to generate the output, but they can't be written to.
12846 @end itemize
12847
12848 Example programs:
12849
12850 @itemize
12851 @item
12852 Copy the input to the output (output must be the same size as the input).
12853 @verbatim
12854 __kernel void copy(__write_only image2d_t destination,
12855                    unsigned int index,
12856                    __read_only  image2d_t source)
12857 {
12858     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
12859
12860     int2 location = (int2)(get_global_id(0), get_global_id(1));
12861
12862     float4 value = read_imagef(source, sampler, location);
12863
12864     write_imagef(destination, location, value);
12865 }
12866 @end verbatim
12867
12868 @item
12869 Apply a simple transformation, rotating the input by an amount increasing
12870 with the index counter.  Pixel values are linearly interpolated by the
12871 sampler, and the output need not have the same dimensions as the input.
12872 @verbatim
12873 __kernel void rotate_image(__write_only image2d_t dst,
12874                            unsigned int index,
12875                            __read_only  image2d_t src)
12876 {
12877     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
12878                                CLK_FILTER_LINEAR);
12879
12880     float angle = (float)index / 100.0f;
12881
12882     float2 dst_dim = convert_float2(get_image_dim(dst));
12883     float2 src_dim = convert_float2(get_image_dim(src));
12884
12885     float2 dst_cen = dst_dim / 2.0f;
12886     float2 src_cen = src_dim / 2.0f;
12887
12888     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
12889
12890     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
12891     float2 src_pos = {
12892         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
12893         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
12894     };
12895     src_pos = src_pos * src_dim / dst_dim;
12896
12897     float2 src_loc = src_pos + src_cen;
12898
12899     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
12900         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
12901         write_imagef(dst, dst_loc, 0.5f);
12902     else
12903         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
12904 }
12905 @end verbatim
12906
12907 @item
12908 Blend two inputs together, with the amount of each input used varying
12909 with the index counter.
12910 @verbatim
12911 __kernel void blend_images(__write_only image2d_t dst,
12912                            unsigned int index,
12913                            __read_only  image2d_t src1,
12914                            __read_only  image2d_t src2)
12915 {
12916     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
12917                                CLK_FILTER_LINEAR);
12918
12919     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
12920
12921     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
12922     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
12923     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
12924
12925     float4 val1 = read_imagef(src1, sampler, src1_loc);
12926     float4 val2 = read_imagef(src2, sampler, src2_loc);
12927
12928     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
12929 }
12930 @end verbatim
12931
12932 @end itemize
12933
12934 @section pseudocolor
12935
12936 Alter frame colors in video with pseudocolors.
12937
12938 This filter accept the following options:
12939
12940 @table @option
12941 @item c0
12942 set pixel first component expression
12943
12944 @item c1
12945 set pixel second component expression
12946
12947 @item c2
12948 set pixel third component expression
12949
12950 @item c3
12951 set pixel fourth component expression, corresponds to the alpha component
12952
12953 @item i
12954 set component to use as base for altering colors
12955 @end table
12956
12957 Each of them specifies the expression to use for computing the lookup table for
12958 the corresponding pixel component values.
12959
12960 The expressions can contain the following constants and functions:
12961
12962 @table @option
12963 @item w
12964 @item h
12965 The input width and height.
12966
12967 @item val
12968 The input value for the pixel component.
12969
12970 @item ymin, umin, vmin, amin
12971 The minimum allowed component value.
12972
12973 @item ymax, umax, vmax, amax
12974 The maximum allowed component value.
12975 @end table
12976
12977 All expressions default to "val".
12978
12979 @subsection Examples
12980
12981 @itemize
12982 @item
12983 Change too high luma values to gradient:
12984 @example
12985 pseudocolor="'if(between(val,ymax,amax),lerp(ymin,ymax,(val-ymax)/(amax-ymax)),-1):if(between(val,ymax,amax),lerp(umax,umin,(val-ymax)/(amax-ymax)),-1):if(between(val,ymax,amax),lerp(vmin,vmax,(val-ymax)/(amax-ymax)),-1):-1'"
12986 @end example
12987 @end itemize
12988
12989 @section psnr
12990
12991 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
12992 Ratio) between two input videos.
12993
12994 This filter takes in input two input videos, the first input is
12995 considered the "main" source and is passed unchanged to the
12996 output. The second input is used as a "reference" video for computing
12997 the PSNR.
12998
12999 Both video inputs must have the same resolution and pixel format for
13000 this filter to work correctly. Also it assumes that both inputs
13001 have the same number of frames, which are compared one by one.
13002
13003 The obtained average PSNR is printed through the logging system.
13004
13005 The filter stores the accumulated MSE (mean squared error) of each
13006 frame, and at the end of the processing it is averaged across all frames
13007 equally, and the following formula is applied to obtain the PSNR:
13008
13009 @example
13010 PSNR = 10*log10(MAX^2/MSE)
13011 @end example
13012
13013 Where MAX is the average of the maximum values of each component of the
13014 image.
13015
13016 The description of the accepted parameters follows.
13017
13018 @table @option
13019 @item stats_file, f
13020 If specified the filter will use the named file to save the PSNR of
13021 each individual frame. When filename equals "-" the data is sent to
13022 standard output.
13023
13024 @item stats_version
13025 Specifies which version of the stats file format to use. Details of
13026 each format are written below.
13027 Default value is 1.
13028
13029 @item stats_add_max
13030 Determines whether the max value is output to the stats log.
13031 Default value is 0.
13032 Requires stats_version >= 2. If this is set and stats_version < 2,
13033 the filter will return an error.
13034 @end table
13035
13036 This filter also supports the @ref{framesync} options.
13037
13038 The file printed if @var{stats_file} is selected, contains a sequence of
13039 key/value pairs of the form @var{key}:@var{value} for each compared
13040 couple of frames.
13041
13042 If a @var{stats_version} greater than 1 is specified, a header line precedes
13043 the list of per-frame-pair stats, with key value pairs following the frame
13044 format with the following parameters:
13045
13046 @table @option
13047 @item psnr_log_version
13048 The version of the log file format. Will match @var{stats_version}.
13049
13050 @item fields
13051 A comma separated list of the per-frame-pair parameters included in
13052 the log.
13053 @end table
13054
13055 A description of each shown per-frame-pair parameter follows:
13056
13057 @table @option
13058 @item n
13059 sequential number of the input frame, starting from 1
13060
13061 @item mse_avg
13062 Mean Square Error pixel-by-pixel average difference of the compared
13063 frames, averaged over all the image components.
13064
13065 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
13066 Mean Square Error pixel-by-pixel average difference of the compared
13067 frames for the component specified by the suffix.
13068
13069 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
13070 Peak Signal to Noise ratio of the compared frames for the component
13071 specified by the suffix.
13072
13073 @item max_avg, max_y, max_u, max_v
13074 Maximum allowed value for each channel, and average over all
13075 channels.
13076 @end table
13077
13078 For example:
13079 @example
13080 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
13081 [main][ref] psnr="stats_file=stats.log" [out]
13082 @end example
13083
13084 On this example the input file being processed is compared with the
13085 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
13086 is stored in @file{stats.log}.
13087
13088 @anchor{pullup}
13089 @section pullup
13090
13091 Pulldown reversal (inverse telecine) filter, capable of handling mixed
13092 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
13093 content.
13094
13095 The pullup filter is designed to take advantage of future context in making
13096 its decisions. This filter is stateless in the sense that it does not lock
13097 onto a pattern to follow, but it instead looks forward to the following
13098 fields in order to identify matches and rebuild progressive frames.
13099
13100 To produce content with an even framerate, insert the fps filter after
13101 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
13102 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
13103
13104 The filter accepts the following options:
13105
13106 @table @option
13107 @item jl
13108 @item jr
13109 @item jt
13110 @item jb
13111 These options set the amount of "junk" to ignore at the left, right, top, and
13112 bottom of the image, respectively. Left and right are in units of 8 pixels,
13113 while top and bottom are in units of 2 lines.
13114 The default is 8 pixels on each side.
13115
13116 @item sb
13117 Set the strict breaks. Setting this option to 1 will reduce the chances of
13118 filter generating an occasional mismatched frame, but it may also cause an
13119 excessive number of frames to be dropped during high motion sequences.
13120 Conversely, setting it to -1 will make filter match fields more easily.
13121 This may help processing of video where there is slight blurring between
13122 the fields, but may also cause there to be interlaced frames in the output.
13123 Default value is @code{0}.
13124
13125 @item mp
13126 Set the metric plane to use. It accepts the following values:
13127 @table @samp
13128 @item l
13129 Use luma plane.
13130
13131 @item u
13132 Use chroma blue plane.
13133
13134 @item v
13135 Use chroma red plane.
13136 @end table
13137
13138 This option may be set to use chroma plane instead of the default luma plane
13139 for doing filter's computations. This may improve accuracy on very clean
13140 source material, but more likely will decrease accuracy, especially if there
13141 is chroma noise (rainbow effect) or any grayscale video.
13142 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
13143 load and make pullup usable in realtime on slow machines.
13144 @end table
13145
13146 For best results (without duplicated frames in the output file) it is
13147 necessary to change the output frame rate. For example, to inverse
13148 telecine NTSC input:
13149 @example
13150 ffmpeg -i input -vf pullup -r 24000/1001 ...
13151 @end example
13152
13153 @section qp
13154
13155 Change video quantization parameters (QP).
13156
13157 The filter accepts the following option:
13158
13159 @table @option
13160 @item qp
13161 Set expression for quantization parameter.
13162 @end table
13163
13164 The expression is evaluated through the eval API and can contain, among others,
13165 the following constants:
13166
13167 @table @var
13168 @item known
13169 1 if index is not 129, 0 otherwise.
13170
13171 @item qp
13172 Sequential index starting from -129 to 128.
13173 @end table
13174
13175 @subsection Examples
13176
13177 @itemize
13178 @item
13179 Some equation like:
13180 @example
13181 qp=2+2*sin(PI*qp)
13182 @end example
13183 @end itemize
13184
13185 @section random
13186
13187 Flush video frames from internal cache of frames into a random order.
13188 No frame is discarded.
13189 Inspired by @ref{frei0r} nervous filter.
13190
13191 @table @option
13192 @item frames
13193 Set size in number of frames of internal cache, in range from @code{2} to
13194 @code{512}. Default is @code{30}.
13195
13196 @item seed
13197 Set seed for random number generator, must be an integer included between
13198 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
13199 less than @code{0}, the filter will try to use a good random seed on a
13200 best effort basis.
13201 @end table
13202
13203 @section readeia608
13204
13205 Read closed captioning (EIA-608) information from the top lines of a video frame.
13206
13207 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
13208 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
13209 with EIA-608 data (starting from 0). A description of each metadata value follows:
13210
13211 @table @option
13212 @item lavfi.readeia608.X.cc
13213 The two bytes stored as EIA-608 data (printed in hexadecimal).
13214
13215 @item lavfi.readeia608.X.line
13216 The number of the line on which the EIA-608 data was identified and read.
13217 @end table
13218
13219 This filter accepts the following options:
13220
13221 @table @option
13222 @item scan_min
13223 Set the line to start scanning for EIA-608 data. Default is @code{0}.
13224
13225 @item scan_max
13226 Set the line to end scanning for EIA-608 data. Default is @code{29}.
13227
13228 @item mac
13229 Set minimal acceptable amplitude change for sync codes detection.
13230 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
13231
13232 @item spw
13233 Set the ratio of width reserved for sync code detection.
13234 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
13235
13236 @item mhd
13237 Set the max peaks height difference for sync code detection.
13238 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
13239
13240 @item mpd
13241 Set max peaks period difference for sync code detection.
13242 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
13243
13244 @item msd
13245 Set the first two max start code bits differences.
13246 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
13247
13248 @item bhd
13249 Set the minimum ratio of bits height compared to 3rd start code bit.
13250 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
13251
13252 @item th_w
13253 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
13254
13255 @item th_b
13256 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
13257
13258 @item chp
13259 Enable checking the parity bit. In the event of a parity error, the filter will output
13260 @code{0x00} for that character. Default is false.
13261 @end table
13262
13263 @subsection Examples
13264
13265 @itemize
13266 @item
13267 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
13268 @example
13269 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
13270 @end example
13271 @end itemize
13272
13273 @section readvitc
13274
13275 Read vertical interval timecode (VITC) information from the top lines of a
13276 video frame.
13277
13278 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
13279 timecode value, if a valid timecode has been detected. Further metadata key
13280 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
13281 timecode data has been found or not.
13282
13283 This filter accepts the following options:
13284
13285 @table @option
13286 @item scan_max
13287 Set the maximum number of lines to scan for VITC data. If the value is set to
13288 @code{-1} the full video frame is scanned. Default is @code{45}.
13289
13290 @item thr_b
13291 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
13292 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
13293
13294 @item thr_w
13295 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
13296 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
13297 @end table
13298
13299 @subsection Examples
13300
13301 @itemize
13302 @item
13303 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
13304 draw @code{--:--:--:--} as a placeholder:
13305 @example
13306 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
13307 @end example
13308 @end itemize
13309
13310 @section remap
13311
13312 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
13313
13314 Destination pixel at position (X, Y) will be picked from source (x, y) position
13315 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
13316 value for pixel will be used for destination pixel.
13317
13318 Xmap and Ymap input video streams must be of same dimensions. Output video stream
13319 will have Xmap/Ymap video stream dimensions.
13320 Xmap and Ymap input video streams are 16bit depth, single channel.
13321
13322 @section removegrain
13323
13324 The removegrain filter is a spatial denoiser for progressive video.
13325
13326 @table @option
13327 @item m0
13328 Set mode for the first plane.
13329
13330 @item m1
13331 Set mode for the second plane.
13332
13333 @item m2
13334 Set mode for the third plane.
13335
13336 @item m3
13337 Set mode for the fourth plane.
13338 @end table
13339
13340 Range of mode is from 0 to 24. Description of each mode follows:
13341
13342 @table @var
13343 @item 0
13344 Leave input plane unchanged. Default.
13345
13346 @item 1
13347 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
13348
13349 @item 2
13350 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
13351
13352 @item 3
13353 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
13354
13355 @item 4
13356 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
13357 This is equivalent to a median filter.
13358
13359 @item 5
13360 Line-sensitive clipping giving the minimal change.
13361
13362 @item 6
13363 Line-sensitive clipping, intermediate.
13364
13365 @item 7
13366 Line-sensitive clipping, intermediate.
13367
13368 @item 8
13369 Line-sensitive clipping, intermediate.
13370
13371 @item 9
13372 Line-sensitive clipping on a line where the neighbours pixels are the closest.
13373
13374 @item 10
13375 Replaces the target pixel with the closest neighbour.
13376
13377 @item 11
13378 [1 2 1] horizontal and vertical kernel blur.
13379
13380 @item 12
13381 Same as mode 11.
13382
13383 @item 13
13384 Bob mode, interpolates top field from the line where the neighbours
13385 pixels are the closest.
13386
13387 @item 14
13388 Bob mode, interpolates bottom field from the line where the neighbours
13389 pixels are the closest.
13390
13391 @item 15
13392 Bob mode, interpolates top field. Same as 13 but with a more complicated
13393 interpolation formula.
13394
13395 @item 16
13396 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
13397 interpolation formula.
13398
13399 @item 17
13400 Clips the pixel with the minimum and maximum of respectively the maximum and
13401 minimum of each pair of opposite neighbour pixels.
13402
13403 @item 18
13404 Line-sensitive clipping using opposite neighbours whose greatest distance from
13405 the current pixel is minimal.
13406
13407 @item 19
13408 Replaces the pixel with the average of its 8 neighbours.
13409
13410 @item 20
13411 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
13412
13413 @item 21
13414 Clips pixels using the averages of opposite neighbour.
13415
13416 @item 22
13417 Same as mode 21 but simpler and faster.
13418
13419 @item 23
13420 Small edge and halo removal, but reputed useless.
13421
13422 @item 24
13423 Similar as 23.
13424 @end table
13425
13426 @section removelogo
13427
13428 Suppress a TV station logo, using an image file to determine which
13429 pixels comprise the logo. It works by filling in the pixels that
13430 comprise the logo with neighboring pixels.
13431
13432 The filter accepts the following options:
13433
13434 @table @option
13435 @item filename, f
13436 Set the filter bitmap file, which can be any image format supported by
13437 libavformat. The width and height of the image file must match those of the
13438 video stream being processed.
13439 @end table
13440
13441 Pixels in the provided bitmap image with a value of zero are not
13442 considered part of the logo, non-zero pixels are considered part of
13443 the logo. If you use white (255) for the logo and black (0) for the
13444 rest, you will be safe. For making the filter bitmap, it is
13445 recommended to take a screen capture of a black frame with the logo
13446 visible, and then using a threshold filter followed by the erode
13447 filter once or twice.
13448
13449 If needed, little splotches can be fixed manually. Remember that if
13450 logo pixels are not covered, the filter quality will be much
13451 reduced. Marking too many pixels as part of the logo does not hurt as
13452 much, but it will increase the amount of blurring needed to cover over
13453 the image and will destroy more information than necessary, and extra
13454 pixels will slow things down on a large logo.
13455
13456 @section repeatfields
13457
13458 This filter uses the repeat_field flag from the Video ES headers and hard repeats
13459 fields based on its value.
13460
13461 @section reverse
13462
13463 Reverse a video clip.
13464
13465 Warning: This filter requires memory to buffer the entire clip, so trimming
13466 is suggested.
13467
13468 @subsection Examples
13469
13470 @itemize
13471 @item
13472 Take the first 5 seconds of a clip, and reverse it.
13473 @example
13474 trim=end=5,reverse
13475 @end example
13476 @end itemize
13477
13478 @section roberts
13479 Apply roberts cross operator to input video stream.
13480
13481 The filter accepts the following option:
13482
13483 @table @option
13484 @item planes
13485 Set which planes will be processed, unprocessed planes will be copied.
13486 By default value 0xf, all planes will be processed.
13487
13488 @item scale
13489 Set value which will be multiplied with filtered result.
13490
13491 @item delta
13492 Set value which will be added to filtered result.
13493 @end table
13494
13495 @section rotate
13496
13497 Rotate video by an arbitrary angle expressed in radians.
13498
13499 The filter accepts the following options:
13500
13501 A description of the optional parameters follows.
13502 @table @option
13503 @item angle, a
13504 Set an expression for the angle by which to rotate the input video
13505 clockwise, expressed as a number of radians. A negative value will
13506 result in a counter-clockwise rotation. By default it is set to "0".
13507
13508 This expression is evaluated for each frame.
13509
13510 @item out_w, ow
13511 Set the output width expression, default value is "iw".
13512 This expression is evaluated just once during configuration.
13513
13514 @item out_h, oh
13515 Set the output height expression, default value is "ih".
13516 This expression is evaluated just once during configuration.
13517
13518 @item bilinear
13519 Enable bilinear interpolation if set to 1, a value of 0 disables
13520 it. Default value is 1.
13521
13522 @item fillcolor, c
13523 Set the color used to fill the output area not covered by the rotated
13524 image. For the general syntax of this option, check the
13525 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
13526 If the special value "none" is selected then no
13527 background is printed (useful for example if the background is never shown).
13528
13529 Default value is "black".
13530 @end table
13531
13532 The expressions for the angle and the output size can contain the
13533 following constants and functions:
13534
13535 @table @option
13536 @item n
13537 sequential number of the input frame, starting from 0. It is always NAN
13538 before the first frame is filtered.
13539
13540 @item t
13541 time in seconds of the input frame, it is set to 0 when the filter is
13542 configured. It is always NAN before the first frame is filtered.
13543
13544 @item hsub
13545 @item vsub
13546 horizontal and vertical chroma subsample values. For example for the
13547 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13548
13549 @item in_w, iw
13550 @item in_h, ih
13551 the input video width and height
13552
13553 @item out_w, ow
13554 @item out_h, oh
13555 the output width and height, that is the size of the padded area as
13556 specified by the @var{width} and @var{height} expressions
13557
13558 @item rotw(a)
13559 @item roth(a)
13560 the minimal width/height required for completely containing the input
13561 video rotated by @var{a} radians.
13562
13563 These are only available when computing the @option{out_w} and
13564 @option{out_h} expressions.
13565 @end table
13566
13567 @subsection Examples
13568
13569 @itemize
13570 @item
13571 Rotate the input by PI/6 radians clockwise:
13572 @example
13573 rotate=PI/6
13574 @end example
13575
13576 @item
13577 Rotate the input by PI/6 radians counter-clockwise:
13578 @example
13579 rotate=-PI/6
13580 @end example
13581
13582 @item
13583 Rotate the input by 45 degrees clockwise:
13584 @example
13585 rotate=45*PI/180
13586 @end example
13587
13588 @item
13589 Apply a constant rotation with period T, starting from an angle of PI/3:
13590 @example
13591 rotate=PI/3+2*PI*t/T
13592 @end example
13593
13594 @item
13595 Make the input video rotation oscillating with a period of T
13596 seconds and an amplitude of A radians:
13597 @example
13598 rotate=A*sin(2*PI/T*t)
13599 @end example
13600
13601 @item
13602 Rotate the video, output size is chosen so that the whole rotating
13603 input video is always completely contained in the output:
13604 @example
13605 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
13606 @end example
13607
13608 @item
13609 Rotate the video, reduce the output size so that no background is ever
13610 shown:
13611 @example
13612 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
13613 @end example
13614 @end itemize
13615
13616 @subsection Commands
13617
13618 The filter supports the following commands:
13619
13620 @table @option
13621 @item a, angle
13622 Set the angle expression.
13623 The command accepts the same syntax of the corresponding option.
13624
13625 If the specified expression is not valid, it is kept at its current
13626 value.
13627 @end table
13628
13629 @section sab
13630
13631 Apply Shape Adaptive Blur.
13632
13633 The filter accepts the following options:
13634
13635 @table @option
13636 @item luma_radius, lr
13637 Set luma blur filter strength, must be a value in range 0.1-4.0, default
13638 value is 1.0. A greater value will result in a more blurred image, and
13639 in slower processing.
13640
13641 @item luma_pre_filter_radius, lpfr
13642 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
13643 value is 1.0.
13644
13645 @item luma_strength, ls
13646 Set luma maximum difference between pixels to still be considered, must
13647 be a value in the 0.1-100.0 range, default value is 1.0.
13648
13649 @item chroma_radius, cr
13650 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
13651 greater value will result in a more blurred image, and in slower
13652 processing.
13653
13654 @item chroma_pre_filter_radius, cpfr
13655 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
13656
13657 @item chroma_strength, cs
13658 Set chroma maximum difference between pixels to still be considered,
13659 must be a value in the -0.9-100.0 range.
13660 @end table
13661
13662 Each chroma option value, if not explicitly specified, is set to the
13663 corresponding luma option value.
13664
13665 @anchor{scale}
13666 @section scale
13667
13668 Scale (resize) the input video, using the libswscale library.
13669
13670 The scale filter forces the output display aspect ratio to be the same
13671 of the input, by changing the output sample aspect ratio.
13672
13673 If the input image format is different from the format requested by
13674 the next filter, the scale filter will convert the input to the
13675 requested format.
13676
13677 @subsection Options
13678 The filter accepts the following options, or any of the options
13679 supported by the libswscale scaler.
13680
13681 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
13682 the complete list of scaler options.
13683
13684 @table @option
13685 @item width, w
13686 @item height, h
13687 Set the output video dimension expression. Default value is the input
13688 dimension.
13689
13690 If the @var{width} or @var{w} value is 0, the input width is used for
13691 the output. If the @var{height} or @var{h} value is 0, the input height
13692 is used for the output.
13693
13694 If one and only one of the values is -n with n >= 1, the scale filter
13695 will use a value that maintains the aspect ratio of the input image,
13696 calculated from the other specified dimension. After that it will,
13697 however, make sure that the calculated dimension is divisible by n and
13698 adjust the value if necessary.
13699
13700 If both values are -n with n >= 1, the behavior will be identical to
13701 both values being set to 0 as previously detailed.
13702
13703 See below for the list of accepted constants for use in the dimension
13704 expression.
13705
13706 @item eval
13707 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
13708
13709 @table @samp
13710 @item init
13711 Only evaluate expressions once during the filter initialization or when a command is processed.
13712
13713 @item frame
13714 Evaluate expressions for each incoming frame.
13715
13716 @end table
13717
13718 Default value is @samp{init}.
13719
13720
13721 @item interl
13722 Set the interlacing mode. It accepts the following values:
13723
13724 @table @samp
13725 @item 1
13726 Force interlaced aware scaling.
13727
13728 @item 0
13729 Do not apply interlaced scaling.
13730
13731 @item -1
13732 Select interlaced aware scaling depending on whether the source frames
13733 are flagged as interlaced or not.
13734 @end table
13735
13736 Default value is @samp{0}.
13737
13738 @item flags
13739 Set libswscale scaling flags. See
13740 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
13741 complete list of values. If not explicitly specified the filter applies
13742 the default flags.
13743
13744
13745 @item param0, param1
13746 Set libswscale input parameters for scaling algorithms that need them. See
13747 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
13748 complete documentation. If not explicitly specified the filter applies
13749 empty parameters.
13750
13751
13752
13753 @item size, s
13754 Set the video size. For the syntax of this option, check the
13755 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13756
13757 @item in_color_matrix
13758 @item out_color_matrix
13759 Set in/output YCbCr color space type.
13760
13761 This allows the autodetected value to be overridden as well as allows forcing
13762 a specific value used for the output and encoder.
13763
13764 If not specified, the color space type depends on the pixel format.
13765
13766 Possible values:
13767
13768 @table @samp
13769 @item auto
13770 Choose automatically.
13771
13772 @item bt709
13773 Format conforming to International Telecommunication Union (ITU)
13774 Recommendation BT.709.
13775
13776 @item fcc
13777 Set color space conforming to the United States Federal Communications
13778 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
13779
13780 @item bt601
13781 Set color space conforming to:
13782
13783 @itemize
13784 @item
13785 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
13786
13787 @item
13788 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
13789
13790 @item
13791 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
13792
13793 @end itemize
13794
13795 @item smpte240m
13796 Set color space conforming to SMPTE ST 240:1999.
13797 @end table
13798
13799 @item in_range
13800 @item out_range
13801 Set in/output YCbCr sample range.
13802
13803 This allows the autodetected value to be overridden as well as allows forcing
13804 a specific value used for the output and encoder. If not specified, the
13805 range depends on the pixel format. Possible values:
13806
13807 @table @samp
13808 @item auto/unknown
13809 Choose automatically.
13810
13811 @item jpeg/full/pc
13812 Set full range (0-255 in case of 8-bit luma).
13813
13814 @item mpeg/limited/tv
13815 Set "MPEG" range (16-235 in case of 8-bit luma).
13816 @end table
13817
13818 @item force_original_aspect_ratio
13819 Enable decreasing or increasing output video width or height if necessary to
13820 keep the original aspect ratio. Possible values:
13821
13822 @table @samp
13823 @item disable
13824 Scale the video as specified and disable this feature.
13825
13826 @item decrease
13827 The output video dimensions will automatically be decreased if needed.
13828
13829 @item increase
13830 The output video dimensions will automatically be increased if needed.
13831
13832 @end table
13833
13834 One useful instance of this option is that when you know a specific device's
13835 maximum allowed resolution, you can use this to limit the output video to
13836 that, while retaining the aspect ratio. For example, device A allows
13837 1280x720 playback, and your video is 1920x800. Using this option (set it to
13838 decrease) and specifying 1280x720 to the command line makes the output
13839 1280x533.
13840
13841 Please note that this is a different thing than specifying -1 for @option{w}
13842 or @option{h}, you still need to specify the output resolution for this option
13843 to work.
13844
13845 @end table
13846
13847 The values of the @option{w} and @option{h} options are expressions
13848 containing the following constants:
13849
13850 @table @var
13851 @item in_w
13852 @item in_h
13853 The input width and height
13854
13855 @item iw
13856 @item ih
13857 These are the same as @var{in_w} and @var{in_h}.
13858
13859 @item out_w
13860 @item out_h
13861 The output (scaled) width and height
13862
13863 @item ow
13864 @item oh
13865 These are the same as @var{out_w} and @var{out_h}
13866
13867 @item a
13868 The same as @var{iw} / @var{ih}
13869
13870 @item sar
13871 input sample aspect ratio
13872
13873 @item dar
13874 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
13875
13876 @item hsub
13877 @item vsub
13878 horizontal and vertical input chroma subsample values. For example for the
13879 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13880
13881 @item ohsub
13882 @item ovsub
13883 horizontal and vertical output chroma subsample values. For example for the
13884 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13885 @end table
13886
13887 @subsection Examples
13888
13889 @itemize
13890 @item
13891 Scale the input video to a size of 200x100
13892 @example
13893 scale=w=200:h=100
13894 @end example
13895
13896 This is equivalent to:
13897 @example
13898 scale=200:100
13899 @end example
13900
13901 or:
13902 @example
13903 scale=200x100
13904 @end example
13905
13906 @item
13907 Specify a size abbreviation for the output size:
13908 @example
13909 scale=qcif
13910 @end example
13911
13912 which can also be written as:
13913 @example
13914 scale=size=qcif
13915 @end example
13916
13917 @item
13918 Scale the input to 2x:
13919 @example
13920 scale=w=2*iw:h=2*ih
13921 @end example
13922
13923 @item
13924 The above is the same as:
13925 @example
13926 scale=2*in_w:2*in_h
13927 @end example
13928
13929 @item
13930 Scale the input to 2x with forced interlaced scaling:
13931 @example
13932 scale=2*iw:2*ih:interl=1
13933 @end example
13934
13935 @item
13936 Scale the input to half size:
13937 @example
13938 scale=w=iw/2:h=ih/2
13939 @end example
13940
13941 @item
13942 Increase the width, and set the height to the same size:
13943 @example
13944 scale=3/2*iw:ow
13945 @end example
13946
13947 @item
13948 Seek Greek harmony:
13949 @example
13950 scale=iw:1/PHI*iw
13951 scale=ih*PHI:ih
13952 @end example
13953
13954 @item
13955 Increase the height, and set the width to 3/2 of the height:
13956 @example
13957 scale=w=3/2*oh:h=3/5*ih
13958 @end example
13959
13960 @item
13961 Increase the size, making the size a multiple of the chroma
13962 subsample values:
13963 @example
13964 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
13965 @end example
13966
13967 @item
13968 Increase the width to a maximum of 500 pixels,
13969 keeping the same aspect ratio as the input:
13970 @example
13971 scale=w='min(500\, iw*3/2):h=-1'
13972 @end example
13973
13974 @item
13975 Make pixels square by combining scale and setsar:
13976 @example
13977 scale='trunc(ih*dar):ih',setsar=1/1
13978 @end example
13979
13980 @item
13981 Make pixels square by combining scale and setsar,
13982 making sure the resulting resolution is even (required by some codecs):
13983 @example
13984 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
13985 @end example
13986 @end itemize
13987
13988 @subsection Commands
13989
13990 This filter supports the following commands:
13991 @table @option
13992 @item width, w
13993 @item height, h
13994 Set the output video dimension expression.
13995 The command accepts the same syntax of the corresponding option.
13996
13997 If the specified expression is not valid, it is kept at its current
13998 value.
13999 @end table
14000
14001 @section scale_npp
14002
14003 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
14004 format conversion on CUDA video frames. Setting the output width and height
14005 works in the same way as for the @var{scale} filter.
14006
14007 The following additional options are accepted:
14008 @table @option
14009 @item format
14010 The pixel format of the output CUDA frames. If set to the string "same" (the
14011 default), the input format will be kept. Note that automatic format negotiation
14012 and conversion is not yet supported for hardware frames
14013
14014 @item interp_algo
14015 The interpolation algorithm used for resizing. One of the following:
14016 @table @option
14017 @item nn
14018 Nearest neighbour.
14019
14020 @item linear
14021 @item cubic
14022 @item cubic2p_bspline
14023 2-parameter cubic (B=1, C=0)
14024
14025 @item cubic2p_catmullrom
14026 2-parameter cubic (B=0, C=1/2)
14027
14028 @item cubic2p_b05c03
14029 2-parameter cubic (B=1/2, C=3/10)
14030
14031 @item super
14032 Supersampling
14033
14034 @item lanczos
14035 @end table
14036
14037 @end table
14038
14039 @section scale2ref
14040
14041 Scale (resize) the input video, based on a reference video.
14042
14043 See the scale filter for available options, scale2ref supports the same but
14044 uses the reference video instead of the main input as basis. scale2ref also
14045 supports the following additional constants for the @option{w} and
14046 @option{h} options:
14047
14048 @table @var
14049 @item main_w
14050 @item main_h
14051 The main input video's width and height
14052
14053 @item main_a
14054 The same as @var{main_w} / @var{main_h}
14055
14056 @item main_sar
14057 The main input video's sample aspect ratio
14058
14059 @item main_dar, mdar
14060 The main input video's display aspect ratio. Calculated from
14061 @code{(main_w / main_h) * main_sar}.
14062
14063 @item main_hsub
14064 @item main_vsub
14065 The main input video's horizontal and vertical chroma subsample values.
14066 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
14067 is 1.
14068 @end table
14069
14070 @subsection Examples
14071
14072 @itemize
14073 @item
14074 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
14075 @example
14076 'scale2ref[b][a];[a][b]overlay'
14077 @end example
14078 @end itemize
14079
14080 @anchor{selectivecolor}
14081 @section selectivecolor
14082
14083 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
14084 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
14085 by the "purity" of the color (that is, how saturated it already is).
14086
14087 This filter is similar to the Adobe Photoshop Selective Color tool.
14088
14089 The filter accepts the following options:
14090
14091 @table @option
14092 @item correction_method
14093 Select color correction method.
14094
14095 Available values are:
14096 @table @samp
14097 @item absolute
14098 Specified adjustments are applied "as-is" (added/subtracted to original pixel
14099 component value).
14100 @item relative
14101 Specified adjustments are relative to the original component value.
14102 @end table
14103 Default is @code{absolute}.
14104 @item reds
14105 Adjustments for red pixels (pixels where the red component is the maximum)
14106 @item yellows
14107 Adjustments for yellow pixels (pixels where the blue component is the minimum)
14108 @item greens
14109 Adjustments for green pixels (pixels where the green component is the maximum)
14110 @item cyans
14111 Adjustments for cyan pixels (pixels where the red component is the minimum)
14112 @item blues
14113 Adjustments for blue pixels (pixels where the blue component is the maximum)
14114 @item magentas
14115 Adjustments for magenta pixels (pixels where the green component is the minimum)
14116 @item whites
14117 Adjustments for white pixels (pixels where all components are greater than 128)
14118 @item neutrals
14119 Adjustments for all pixels except pure black and pure white
14120 @item blacks
14121 Adjustments for black pixels (pixels where all components are lesser than 128)
14122 @item psfile
14123 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
14124 @end table
14125
14126 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
14127 4 space separated floating point adjustment values in the [-1,1] range,
14128 respectively to adjust the amount of cyan, magenta, yellow and black for the
14129 pixels of its range.
14130
14131 @subsection Examples
14132
14133 @itemize
14134 @item
14135 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
14136 increase magenta by 27% in blue areas:
14137 @example
14138 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
14139 @end example
14140
14141 @item
14142 Use a Photoshop selective color preset:
14143 @example
14144 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
14145 @end example
14146 @end itemize
14147
14148 @anchor{separatefields}
14149 @section separatefields
14150
14151 The @code{separatefields} takes a frame-based video input and splits
14152 each frame into its components fields, producing a new half height clip
14153 with twice the frame rate and twice the frame count.
14154
14155 This filter use field-dominance information in frame to decide which
14156 of each pair of fields to place first in the output.
14157 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
14158
14159 @section setdar, setsar
14160
14161 The @code{setdar} filter sets the Display Aspect Ratio for the filter
14162 output video.
14163
14164 This is done by changing the specified Sample (aka Pixel) Aspect
14165 Ratio, according to the following equation:
14166 @example
14167 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
14168 @end example
14169
14170 Keep in mind that the @code{setdar} filter does not modify the pixel
14171 dimensions of the video frame. Also, the display aspect ratio set by
14172 this filter may be changed by later filters in the filterchain,
14173 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
14174 applied.
14175
14176 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
14177 the filter output video.
14178
14179 Note that as a consequence of the application of this filter, the
14180 output display aspect ratio will change according to the equation
14181 above.
14182
14183 Keep in mind that the sample aspect ratio set by the @code{setsar}
14184 filter may be changed by later filters in the filterchain, e.g. if
14185 another "setsar" or a "setdar" filter is applied.
14186
14187 It accepts the following parameters:
14188
14189 @table @option
14190 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
14191 Set the aspect ratio used by the filter.
14192
14193 The parameter can be a floating point number string, an expression, or
14194 a string of the form @var{num}:@var{den}, where @var{num} and
14195 @var{den} are the numerator and denominator of the aspect ratio. If
14196 the parameter is not specified, it is assumed the value "0".
14197 In case the form "@var{num}:@var{den}" is used, the @code{:} character
14198 should be escaped.
14199
14200 @item max
14201 Set the maximum integer value to use for expressing numerator and
14202 denominator when reducing the expressed aspect ratio to a rational.
14203 Default value is @code{100}.
14204
14205 @end table
14206
14207 The parameter @var{sar} is an expression containing
14208 the following constants:
14209
14210 @table @option
14211 @item E, PI, PHI
14212 These are approximated values for the mathematical constants e
14213 (Euler's number), pi (Greek pi), and phi (the golden ratio).
14214
14215 @item w, h
14216 The input width and height.
14217
14218 @item a
14219 These are the same as @var{w} / @var{h}.
14220
14221 @item sar
14222 The input sample aspect ratio.
14223
14224 @item dar
14225 The input display aspect ratio. It is the same as
14226 (@var{w} / @var{h}) * @var{sar}.
14227
14228 @item hsub, vsub
14229 Horizontal and vertical chroma subsample values. For example, for the
14230 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14231 @end table
14232
14233 @subsection Examples
14234
14235 @itemize
14236
14237 @item
14238 To change the display aspect ratio to 16:9, specify one of the following:
14239 @example
14240 setdar=dar=1.77777
14241 setdar=dar=16/9
14242 @end example
14243
14244 @item
14245 To change the sample aspect ratio to 10:11, specify:
14246 @example
14247 setsar=sar=10/11
14248 @end example
14249
14250 @item
14251 To set a display aspect ratio of 16:9, and specify a maximum integer value of
14252 1000 in the aspect ratio reduction, use the command:
14253 @example
14254 setdar=ratio=16/9:max=1000
14255 @end example
14256
14257 @end itemize
14258
14259 @anchor{setfield}
14260 @section setfield
14261
14262 Force field for the output video frame.
14263
14264 The @code{setfield} filter marks the interlace type field for the
14265 output frames. It does not change the input frame, but only sets the
14266 corresponding property, which affects how the frame is treated by
14267 following filters (e.g. @code{fieldorder} or @code{yadif}).
14268
14269 The filter accepts the following options:
14270
14271 @table @option
14272
14273 @item mode
14274 Available values are:
14275
14276 @table @samp
14277 @item auto
14278 Keep the same field property.
14279
14280 @item bff
14281 Mark the frame as bottom-field-first.
14282
14283 @item tff
14284 Mark the frame as top-field-first.
14285
14286 @item prog
14287 Mark the frame as progressive.
14288 @end table
14289 @end table
14290
14291 @section showinfo
14292
14293 Show a line containing various information for each input video frame.
14294 The input video is not modified.
14295
14296 The shown line contains a sequence of key/value pairs of the form
14297 @var{key}:@var{value}.
14298
14299 The following values are shown in the output:
14300
14301 @table @option
14302 @item n
14303 The (sequential) number of the input frame, starting from 0.
14304
14305 @item pts
14306 The Presentation TimeStamp of the input frame, expressed as a number of
14307 time base units. The time base unit depends on the filter input pad.
14308
14309 @item pts_time
14310 The Presentation TimeStamp of the input frame, expressed as a number of
14311 seconds.
14312
14313 @item pos
14314 The position of the frame in the input stream, or -1 if this information is
14315 unavailable and/or meaningless (for example in case of synthetic video).
14316
14317 @item fmt
14318 The pixel format name.
14319
14320 @item sar
14321 The sample aspect ratio of the input frame, expressed in the form
14322 @var{num}/@var{den}.
14323
14324 @item s
14325 The size of the input frame. For the syntax of this option, check the
14326 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14327
14328 @item i
14329 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
14330 for bottom field first).
14331
14332 @item iskey
14333 This is 1 if the frame is a key frame, 0 otherwise.
14334
14335 @item type
14336 The picture type of the input frame ("I" for an I-frame, "P" for a
14337 P-frame, "B" for a B-frame, or "?" for an unknown type).
14338 Also refer to the documentation of the @code{AVPictureType} enum and of
14339 the @code{av_get_picture_type_char} function defined in
14340 @file{libavutil/avutil.h}.
14341
14342 @item checksum
14343 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
14344
14345 @item plane_checksum
14346 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
14347 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
14348 @end table
14349
14350 @section showpalette
14351
14352 Displays the 256 colors palette of each frame. This filter is only relevant for
14353 @var{pal8} pixel format frames.
14354
14355 It accepts the following option:
14356
14357 @table @option
14358 @item s
14359 Set the size of the box used to represent one palette color entry. Default is
14360 @code{30} (for a @code{30x30} pixel box).
14361 @end table
14362
14363 @section shuffleframes
14364
14365 Reorder and/or duplicate and/or drop video frames.
14366
14367 It accepts the following parameters:
14368
14369 @table @option
14370 @item mapping
14371 Set the destination indexes of input frames.
14372 This is space or '|' separated list of indexes that maps input frames to output
14373 frames. Number of indexes also sets maximal value that each index may have.
14374 '-1' index have special meaning and that is to drop frame.
14375 @end table
14376
14377 The first frame has the index 0. The default is to keep the input unchanged.
14378
14379 @subsection Examples
14380
14381 @itemize
14382 @item
14383 Swap second and third frame of every three frames of the input:
14384 @example
14385 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
14386 @end example
14387
14388 @item
14389 Swap 10th and 1st frame of every ten frames of the input:
14390 @example
14391 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
14392 @end example
14393 @end itemize
14394
14395 @section shuffleplanes
14396
14397 Reorder and/or duplicate video planes.
14398
14399 It accepts the following parameters:
14400
14401 @table @option
14402
14403 @item map0
14404 The index of the input plane to be used as the first output plane.
14405
14406 @item map1
14407 The index of the input plane to be used as the second output plane.
14408
14409 @item map2
14410 The index of the input plane to be used as the third output plane.
14411
14412 @item map3
14413 The index of the input plane to be used as the fourth output plane.
14414
14415 @end table
14416
14417 The first plane has the index 0. The default is to keep the input unchanged.
14418
14419 @subsection Examples
14420
14421 @itemize
14422 @item
14423 Swap the second and third planes of the input:
14424 @example
14425 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
14426 @end example
14427 @end itemize
14428
14429 @anchor{signalstats}
14430 @section signalstats
14431 Evaluate various visual metrics that assist in determining issues associated
14432 with the digitization of analog video media.
14433
14434 By default the filter will log these metadata values:
14435
14436 @table @option
14437 @item YMIN
14438 Display the minimal Y value contained within the input frame. Expressed in
14439 range of [0-255].
14440
14441 @item YLOW
14442 Display the Y value at the 10% percentile within the input frame. Expressed in
14443 range of [0-255].
14444
14445 @item YAVG
14446 Display the average Y value within the input frame. Expressed in range of
14447 [0-255].
14448
14449 @item YHIGH
14450 Display the Y value at the 90% percentile within the input frame. Expressed in
14451 range of [0-255].
14452
14453 @item YMAX
14454 Display the maximum Y value contained within the input frame. Expressed in
14455 range of [0-255].
14456
14457 @item UMIN
14458 Display the minimal U value contained within the input frame. Expressed in
14459 range of [0-255].
14460
14461 @item ULOW
14462 Display the U value at the 10% percentile within the input frame. Expressed in
14463 range of [0-255].
14464
14465 @item UAVG
14466 Display the average U value within the input frame. Expressed in range of
14467 [0-255].
14468
14469 @item UHIGH
14470 Display the U value at the 90% percentile within the input frame. Expressed in
14471 range of [0-255].
14472
14473 @item UMAX
14474 Display the maximum U value contained within the input frame. Expressed in
14475 range of [0-255].
14476
14477 @item VMIN
14478 Display the minimal V value contained within the input frame. Expressed in
14479 range of [0-255].
14480
14481 @item VLOW
14482 Display the V value at the 10% percentile within the input frame. Expressed in
14483 range of [0-255].
14484
14485 @item VAVG
14486 Display the average V value within the input frame. Expressed in range of
14487 [0-255].
14488
14489 @item VHIGH
14490 Display the V value at the 90% percentile within the input frame. Expressed in
14491 range of [0-255].
14492
14493 @item VMAX
14494 Display the maximum V value contained within the input frame. Expressed in
14495 range of [0-255].
14496
14497 @item SATMIN
14498 Display the minimal saturation value contained within the input frame.
14499 Expressed in range of [0-~181.02].
14500
14501 @item SATLOW
14502 Display the saturation value at the 10% percentile within the input frame.
14503 Expressed in range of [0-~181.02].
14504
14505 @item SATAVG
14506 Display the average saturation value within the input frame. Expressed in range
14507 of [0-~181.02].
14508
14509 @item SATHIGH
14510 Display the saturation value at the 90% percentile within the input frame.
14511 Expressed in range of [0-~181.02].
14512
14513 @item SATMAX
14514 Display the maximum saturation value contained within the input frame.
14515 Expressed in range of [0-~181.02].
14516
14517 @item HUEMED
14518 Display the median value for hue within the input frame. Expressed in range of
14519 [0-360].
14520
14521 @item HUEAVG
14522 Display the average value for hue within the input frame. Expressed in range of
14523 [0-360].
14524
14525 @item YDIF
14526 Display the average of sample value difference between all values of the Y
14527 plane in the current frame and corresponding values of the previous input frame.
14528 Expressed in range of [0-255].
14529
14530 @item UDIF
14531 Display the average of sample value difference between all values of the U
14532 plane in the current frame and corresponding values of the previous input frame.
14533 Expressed in range of [0-255].
14534
14535 @item VDIF
14536 Display the average of sample value difference between all values of the V
14537 plane in the current frame and corresponding values of the previous input frame.
14538 Expressed in range of [0-255].
14539
14540 @item YBITDEPTH
14541 Display bit depth of Y plane in current frame.
14542 Expressed in range of [0-16].
14543
14544 @item UBITDEPTH
14545 Display bit depth of U plane in current frame.
14546 Expressed in range of [0-16].
14547
14548 @item VBITDEPTH
14549 Display bit depth of V plane in current frame.
14550 Expressed in range of [0-16].
14551 @end table
14552
14553 The filter accepts the following options:
14554
14555 @table @option
14556 @item stat
14557 @item out
14558
14559 @option{stat} specify an additional form of image analysis.
14560 @option{out} output video with the specified type of pixel highlighted.
14561
14562 Both options accept the following values:
14563
14564 @table @samp
14565 @item tout
14566 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
14567 unlike the neighboring pixels of the same field. Examples of temporal outliers
14568 include the results of video dropouts, head clogs, or tape tracking issues.
14569
14570 @item vrep
14571 Identify @var{vertical line repetition}. Vertical line repetition includes
14572 similar rows of pixels within a frame. In born-digital video vertical line
14573 repetition is common, but this pattern is uncommon in video digitized from an
14574 analog source. When it occurs in video that results from the digitization of an
14575 analog source it can indicate concealment from a dropout compensator.
14576
14577 @item brng
14578 Identify pixels that fall outside of legal broadcast range.
14579 @end table
14580
14581 @item color, c
14582 Set the highlight color for the @option{out} option. The default color is
14583 yellow.
14584 @end table
14585
14586 @subsection Examples
14587
14588 @itemize
14589 @item
14590 Output data of various video metrics:
14591 @example
14592 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
14593 @end example
14594
14595 @item
14596 Output specific data about the minimum and maximum values of the Y plane per frame:
14597 @example
14598 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
14599 @end example
14600
14601 @item
14602 Playback video while highlighting pixels that are outside of broadcast range in red.
14603 @example
14604 ffplay example.mov -vf signalstats="out=brng:color=red"
14605 @end example
14606
14607 @item
14608 Playback video with signalstats metadata drawn over the frame.
14609 @example
14610 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
14611 @end example
14612
14613 The contents of signalstat_drawtext.txt used in the command are:
14614 @example
14615 time %@{pts:hms@}
14616 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
14617 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
14618 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
14619 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
14620
14621 @end example
14622 @end itemize
14623
14624 @anchor{signature}
14625 @section signature
14626
14627 Calculates the MPEG-7 Video Signature. The filter can handle more than one
14628 input. In this case the matching between the inputs can be calculated additionally.
14629 The filter always passes through the first input. The signature of each stream can
14630 be written into a file.
14631
14632 It accepts the following options:
14633
14634 @table @option
14635 @item detectmode
14636 Enable or disable the matching process.
14637
14638 Available values are:
14639
14640 @table @samp
14641 @item off
14642 Disable the calculation of a matching (default).
14643 @item full
14644 Calculate the matching for the whole video and output whether the whole video
14645 matches or only parts.
14646 @item fast
14647 Calculate only until a matching is found or the video ends. Should be faster in
14648 some cases.
14649 @end table
14650
14651 @item nb_inputs
14652 Set the number of inputs. The option value must be a non negative integer.
14653 Default value is 1.
14654
14655 @item filename
14656 Set the path to which the output is written. If there is more than one input,
14657 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
14658 integer), that will be replaced with the input number. If no filename is
14659 specified, no output will be written. This is the default.
14660
14661 @item format
14662 Choose the output format.
14663
14664 Available values are:
14665
14666 @table @samp
14667 @item binary
14668 Use the specified binary representation (default).
14669 @item xml
14670 Use the specified xml representation.
14671 @end table
14672
14673 @item th_d
14674 Set threshold to detect one word as similar. The option value must be an integer
14675 greater than zero. The default value is 9000.
14676
14677 @item th_dc
14678 Set threshold to detect all words as similar. The option value must be an integer
14679 greater than zero. The default value is 60000.
14680
14681 @item th_xh
14682 Set threshold to detect frames as similar. The option value must be an integer
14683 greater than zero. The default value is 116.
14684
14685 @item th_di
14686 Set the minimum length of a sequence in frames to recognize it as matching
14687 sequence. The option value must be a non negative integer value.
14688 The default value is 0.
14689
14690 @item th_it
14691 Set the minimum relation, that matching frames to all frames must have.
14692 The option value must be a double value between 0 and 1. The default value is 0.5.
14693 @end table
14694
14695 @subsection Examples
14696
14697 @itemize
14698 @item
14699 To calculate the signature of an input video and store it in signature.bin:
14700 @example
14701 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
14702 @end example
14703
14704 @item
14705 To detect whether two videos match and store the signatures in XML format in
14706 signature0.xml and signature1.xml:
14707 @example
14708 ffmpeg -i input1.mkv -i input2.mkv -filter_complex "[0:v][1:v] signature=nb_inputs=2:detectmode=full:format=xml:filename=signature%d.xml" -map :v -f null -
14709 @end example
14710
14711 @end itemize
14712
14713 @anchor{smartblur}
14714 @section smartblur
14715
14716 Blur the input video without impacting the outlines.
14717
14718 It accepts the following options:
14719
14720 @table @option
14721 @item luma_radius, lr
14722 Set the luma radius. The option value must be a float number in
14723 the range [0.1,5.0] that specifies the variance of the gaussian filter
14724 used to blur the image (slower if larger). Default value is 1.0.
14725
14726 @item luma_strength, ls
14727 Set the luma strength. The option value must be a float number
14728 in the range [-1.0,1.0] that configures the blurring. A value included
14729 in [0.0,1.0] will blur the image whereas a value included in
14730 [-1.0,0.0] will sharpen the image. Default value is 1.0.
14731
14732 @item luma_threshold, lt
14733 Set the luma threshold used as a coefficient to determine
14734 whether a pixel should be blurred or not. The option value must be an
14735 integer in the range [-30,30]. A value of 0 will filter all the image,
14736 a value included in [0,30] will filter flat areas and a value included
14737 in [-30,0] will filter edges. Default value is 0.
14738
14739 @item chroma_radius, cr
14740 Set the chroma radius. The option value must be a float number in
14741 the range [0.1,5.0] that specifies the variance of the gaussian filter
14742 used to blur the image (slower if larger). Default value is @option{luma_radius}.
14743
14744 @item chroma_strength, cs
14745 Set the chroma strength. The option value must be a float number
14746 in the range [-1.0,1.0] that configures the blurring. A value included
14747 in [0.0,1.0] will blur the image whereas a value included in
14748 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
14749
14750 @item chroma_threshold, ct
14751 Set the chroma threshold used as a coefficient to determine
14752 whether a pixel should be blurred or not. The option value must be an
14753 integer in the range [-30,30]. A value of 0 will filter all the image,
14754 a value included in [0,30] will filter flat areas and a value included
14755 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
14756 @end table
14757
14758 If a chroma option is not explicitly set, the corresponding luma value
14759 is set.
14760
14761 @section ssim
14762
14763 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
14764
14765 This filter takes in input two input videos, the first input is
14766 considered the "main" source and is passed unchanged to the
14767 output. The second input is used as a "reference" video for computing
14768 the SSIM.
14769
14770 Both video inputs must have the same resolution and pixel format for
14771 this filter to work correctly. Also it assumes that both inputs
14772 have the same number of frames, which are compared one by one.
14773
14774 The filter stores the calculated SSIM of each frame.
14775
14776 The description of the accepted parameters follows.
14777
14778 @table @option
14779 @item stats_file, f
14780 If specified the filter will use the named file to save the SSIM of
14781 each individual frame. When filename equals "-" the data is sent to
14782 standard output.
14783 @end table
14784
14785 The file printed if @var{stats_file} is selected, contains a sequence of
14786 key/value pairs of the form @var{key}:@var{value} for each compared
14787 couple of frames.
14788
14789 A description of each shown parameter follows:
14790
14791 @table @option
14792 @item n
14793 sequential number of the input frame, starting from 1
14794
14795 @item Y, U, V, R, G, B
14796 SSIM of the compared frames for the component specified by the suffix.
14797
14798 @item All
14799 SSIM of the compared frames for the whole frame.
14800
14801 @item dB
14802 Same as above but in dB representation.
14803 @end table
14804
14805 This filter also supports the @ref{framesync} options.
14806
14807 For example:
14808 @example
14809 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
14810 [main][ref] ssim="stats_file=stats.log" [out]
14811 @end example
14812
14813 On this example the input file being processed is compared with the
14814 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
14815 is stored in @file{stats.log}.
14816
14817 Another example with both psnr and ssim at same time:
14818 @example
14819 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
14820 @end example
14821
14822 @section stereo3d
14823
14824 Convert between different stereoscopic image formats.
14825
14826 The filters accept the following options:
14827
14828 @table @option
14829 @item in
14830 Set stereoscopic image format of input.
14831
14832 Available values for input image formats are:
14833 @table @samp
14834 @item sbsl
14835 side by side parallel (left eye left, right eye right)
14836
14837 @item sbsr
14838 side by side crosseye (right eye left, left eye right)
14839
14840 @item sbs2l
14841 side by side parallel with half width resolution
14842 (left eye left, right eye right)
14843
14844 @item sbs2r
14845 side by side crosseye with half width resolution
14846 (right eye left, left eye right)
14847
14848 @item abl
14849 above-below (left eye above, right eye below)
14850
14851 @item abr
14852 above-below (right eye above, left eye below)
14853
14854 @item ab2l
14855 above-below with half height resolution
14856 (left eye above, right eye below)
14857
14858 @item ab2r
14859 above-below with half height resolution
14860 (right eye above, left eye below)
14861
14862 @item al
14863 alternating frames (left eye first, right eye second)
14864
14865 @item ar
14866 alternating frames (right eye first, left eye second)
14867
14868 @item irl
14869 interleaved rows (left eye has top row, right eye starts on next row)
14870
14871 @item irr
14872 interleaved rows (right eye has top row, left eye starts on next row)
14873
14874 @item icl
14875 interleaved columns, left eye first
14876
14877 @item icr
14878 interleaved columns, right eye first
14879
14880 Default value is @samp{sbsl}.
14881 @end table
14882
14883 @item out
14884 Set stereoscopic image format of output.
14885
14886 @table @samp
14887 @item sbsl
14888 side by side parallel (left eye left, right eye right)
14889
14890 @item sbsr
14891 side by side crosseye (right eye left, left eye right)
14892
14893 @item sbs2l
14894 side by side parallel with half width resolution
14895 (left eye left, right eye right)
14896
14897 @item sbs2r
14898 side by side crosseye with half width resolution
14899 (right eye left, left eye right)
14900
14901 @item abl
14902 above-below (left eye above, right eye below)
14903
14904 @item abr
14905 above-below (right eye above, left eye below)
14906
14907 @item ab2l
14908 above-below with half height resolution
14909 (left eye above, right eye below)
14910
14911 @item ab2r
14912 above-below with half height resolution
14913 (right eye above, left eye below)
14914
14915 @item al
14916 alternating frames (left eye first, right eye second)
14917
14918 @item ar
14919 alternating frames (right eye first, left eye second)
14920
14921 @item irl
14922 interleaved rows (left eye has top row, right eye starts on next row)
14923
14924 @item irr
14925 interleaved rows (right eye has top row, left eye starts on next row)
14926
14927 @item arbg
14928 anaglyph red/blue gray
14929 (red filter on left eye, blue filter on right eye)
14930
14931 @item argg
14932 anaglyph red/green gray
14933 (red filter on left eye, green filter on right eye)
14934
14935 @item arcg
14936 anaglyph red/cyan gray
14937 (red filter on left eye, cyan filter on right eye)
14938
14939 @item arch
14940 anaglyph red/cyan half colored
14941 (red filter on left eye, cyan filter on right eye)
14942
14943 @item arcc
14944 anaglyph red/cyan color
14945 (red filter on left eye, cyan filter on right eye)
14946
14947 @item arcd
14948 anaglyph red/cyan color optimized with the least squares projection of dubois
14949 (red filter on left eye, cyan filter on right eye)
14950
14951 @item agmg
14952 anaglyph green/magenta gray
14953 (green filter on left eye, magenta filter on right eye)
14954
14955 @item agmh
14956 anaglyph green/magenta half colored
14957 (green filter on left eye, magenta filter on right eye)
14958
14959 @item agmc
14960 anaglyph green/magenta colored
14961 (green filter on left eye, magenta filter on right eye)
14962
14963 @item agmd
14964 anaglyph green/magenta color optimized with the least squares projection of dubois
14965 (green filter on left eye, magenta filter on right eye)
14966
14967 @item aybg
14968 anaglyph yellow/blue gray
14969 (yellow filter on left eye, blue filter on right eye)
14970
14971 @item aybh
14972 anaglyph yellow/blue half colored
14973 (yellow filter on left eye, blue filter on right eye)
14974
14975 @item aybc
14976 anaglyph yellow/blue colored
14977 (yellow filter on left eye, blue filter on right eye)
14978
14979 @item aybd
14980 anaglyph yellow/blue color optimized with the least squares projection of dubois
14981 (yellow filter on left eye, blue filter on right eye)
14982
14983 @item ml
14984 mono output (left eye only)
14985
14986 @item mr
14987 mono output (right eye only)
14988
14989 @item chl
14990 checkerboard, left eye first
14991
14992 @item chr
14993 checkerboard, right eye first
14994
14995 @item icl
14996 interleaved columns, left eye first
14997
14998 @item icr
14999 interleaved columns, right eye first
15000
15001 @item hdmi
15002 HDMI frame pack
15003 @end table
15004
15005 Default value is @samp{arcd}.
15006 @end table
15007
15008 @subsection Examples
15009
15010 @itemize
15011 @item
15012 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
15013 @example
15014 stereo3d=sbsl:aybd
15015 @end example
15016
15017 @item
15018 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
15019 @example
15020 stereo3d=abl:sbsr
15021 @end example
15022 @end itemize
15023
15024 @section streamselect, astreamselect
15025 Select video or audio streams.
15026
15027 The filter accepts the following options:
15028
15029 @table @option
15030 @item inputs
15031 Set number of inputs. Default is 2.
15032
15033 @item map
15034 Set input indexes to remap to outputs.
15035 @end table
15036
15037 @subsection Commands
15038
15039 The @code{streamselect} and @code{astreamselect} filter supports the following
15040 commands:
15041
15042 @table @option
15043 @item map
15044 Set input indexes to remap to outputs.
15045 @end table
15046
15047 @subsection Examples
15048
15049 @itemize
15050 @item
15051 Select first 5 seconds 1st stream and rest of time 2nd stream:
15052 @example
15053 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
15054 @end example
15055
15056 @item
15057 Same as above, but for audio:
15058 @example
15059 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
15060 @end example
15061 @end itemize
15062
15063 @section sobel
15064 Apply sobel operator to input video stream.
15065
15066 The filter accepts the following option:
15067
15068 @table @option
15069 @item planes
15070 Set which planes will be processed, unprocessed planes will be copied.
15071 By default value 0xf, all planes will be processed.
15072
15073 @item scale
15074 Set value which will be multiplied with filtered result.
15075
15076 @item delta
15077 Set value which will be added to filtered result.
15078 @end table
15079
15080 @anchor{spp}
15081 @section spp
15082
15083 Apply a simple postprocessing filter that compresses and decompresses the image
15084 at several (or - in the case of @option{quality} level @code{6} - all) shifts
15085 and average the results.
15086
15087 The filter accepts the following options:
15088
15089 @table @option
15090 @item quality
15091 Set quality. This option defines the number of levels for averaging. It accepts
15092 an integer in the range 0-6. If set to @code{0}, the filter will have no
15093 effect. A value of @code{6} means the higher quality. For each increment of
15094 that value the speed drops by a factor of approximately 2.  Default value is
15095 @code{3}.
15096
15097 @item qp
15098 Force a constant quantization parameter. If not set, the filter will use the QP
15099 from the video stream (if available).
15100
15101 @item mode
15102 Set thresholding mode. Available modes are:
15103
15104 @table @samp
15105 @item hard
15106 Set hard thresholding (default).
15107 @item soft
15108 Set soft thresholding (better de-ringing effect, but likely blurrier).
15109 @end table
15110
15111 @item use_bframe_qp
15112 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
15113 option may cause flicker since the B-Frames have often larger QP. Default is
15114 @code{0} (not enabled).
15115 @end table
15116
15117 @anchor{subtitles}
15118 @section subtitles
15119
15120 Draw subtitles on top of input video using the libass library.
15121
15122 To enable compilation of this filter you need to configure FFmpeg with
15123 @code{--enable-libass}. This filter also requires a build with libavcodec and
15124 libavformat to convert the passed subtitles file to ASS (Advanced Substation
15125 Alpha) subtitles format.
15126
15127 The filter accepts the following options:
15128
15129 @table @option
15130 @item filename, f
15131 Set the filename of the subtitle file to read. It must be specified.
15132
15133 @item original_size
15134 Specify the size of the original video, the video for which the ASS file
15135 was composed. For the syntax of this option, check the
15136 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15137 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
15138 correctly scale the fonts if the aspect ratio has been changed.
15139
15140 @item fontsdir
15141 Set a directory path containing fonts that can be used by the filter.
15142 These fonts will be used in addition to whatever the font provider uses.
15143
15144 @item alpha
15145 Process alpha channel, by default alpha channel is untouched.
15146
15147 @item charenc
15148 Set subtitles input character encoding. @code{subtitles} filter only. Only
15149 useful if not UTF-8.
15150
15151 @item stream_index, si
15152 Set subtitles stream index. @code{subtitles} filter only.
15153
15154 @item force_style
15155 Override default style or script info parameters of the subtitles. It accepts a
15156 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
15157 @end table
15158
15159 If the first key is not specified, it is assumed that the first value
15160 specifies the @option{filename}.
15161
15162 For example, to render the file @file{sub.srt} on top of the input
15163 video, use the command:
15164 @example
15165 subtitles=sub.srt
15166 @end example
15167
15168 which is equivalent to:
15169 @example
15170 subtitles=filename=sub.srt
15171 @end example
15172
15173 To render the default subtitles stream from file @file{video.mkv}, use:
15174 @example
15175 subtitles=video.mkv
15176 @end example
15177
15178 To render the second subtitles stream from that file, use:
15179 @example
15180 subtitles=video.mkv:si=1
15181 @end example
15182
15183 To make the subtitles stream from @file{sub.srt} appear in transparent green
15184 @code{DejaVu Serif}, use:
15185 @example
15186 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
15187 @end example
15188
15189 @section super2xsai
15190
15191 Scale the input by 2x and smooth using the Super2xSaI (Scale and
15192 Interpolate) pixel art scaling algorithm.
15193
15194 Useful for enlarging pixel art images without reducing sharpness.
15195
15196 @section swaprect
15197
15198 Swap two rectangular objects in video.
15199
15200 This filter accepts the following options:
15201
15202 @table @option
15203 @item w
15204 Set object width.
15205
15206 @item h
15207 Set object height.
15208
15209 @item x1
15210 Set 1st rect x coordinate.
15211
15212 @item y1
15213 Set 1st rect y coordinate.
15214
15215 @item x2
15216 Set 2nd rect x coordinate.
15217
15218 @item y2
15219 Set 2nd rect y coordinate.
15220
15221 All expressions are evaluated once for each frame.
15222 @end table
15223
15224 The all options are expressions containing the following constants:
15225
15226 @table @option
15227 @item w
15228 @item h
15229 The input width and height.
15230
15231 @item a
15232 same as @var{w} / @var{h}
15233
15234 @item sar
15235 input sample aspect ratio
15236
15237 @item dar
15238 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
15239
15240 @item n
15241 The number of the input frame, starting from 0.
15242
15243 @item t
15244 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
15245
15246 @item pos
15247 the position in the file of the input frame, NAN if unknown
15248 @end table
15249
15250 @section swapuv
15251 Swap U & V plane.
15252
15253 @section telecine
15254
15255 Apply telecine process to the video.
15256
15257 This filter accepts the following options:
15258
15259 @table @option
15260 @item first_field
15261 @table @samp
15262 @item top, t
15263 top field first
15264 @item bottom, b
15265 bottom field first
15266 The default value is @code{top}.
15267 @end table
15268
15269 @item pattern
15270 A string of numbers representing the pulldown pattern you wish to apply.
15271 The default value is @code{23}.
15272 @end table
15273
15274 @example
15275 Some typical patterns:
15276
15277 NTSC output (30i):
15278 27.5p: 32222
15279 24p: 23 (classic)
15280 24p: 2332 (preferred)
15281 20p: 33
15282 18p: 334
15283 16p: 3444
15284
15285 PAL output (25i):
15286 27.5p: 12222
15287 24p: 222222222223 ("Euro pulldown")
15288 16.67p: 33
15289 16p: 33333334
15290 @end example
15291
15292 @section threshold
15293
15294 Apply threshold effect to video stream.
15295
15296 This filter needs four video streams to perform thresholding.
15297 First stream is stream we are filtering.
15298 Second stream is holding threshold values, third stream is holding min values,
15299 and last, fourth stream is holding max values.
15300
15301 The filter accepts the following option:
15302
15303 @table @option
15304 @item planes
15305 Set which planes will be processed, unprocessed planes will be copied.
15306 By default value 0xf, all planes will be processed.
15307 @end table
15308
15309 For example if first stream pixel's component value is less then threshold value
15310 of pixel component from 2nd threshold stream, third stream value will picked,
15311 otherwise fourth stream pixel component value will be picked.
15312
15313 Using color source filter one can perform various types of thresholding:
15314
15315 @subsection Examples
15316
15317 @itemize
15318 @item
15319 Binary threshold, using gray color as threshold:
15320 @example
15321 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
15322 @end example
15323
15324 @item
15325 Inverted binary threshold, using gray color as threshold:
15326 @example
15327 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
15328 @end example
15329
15330 @item
15331 Truncate binary threshold, using gray color as threshold:
15332 @example
15333 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
15334 @end example
15335
15336 @item
15337 Threshold to zero, using gray color as threshold:
15338 @example
15339 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
15340 @end example
15341
15342 @item
15343 Inverted threshold to zero, using gray color as threshold:
15344 @example
15345 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
15346 @end example
15347 @end itemize
15348
15349 @section thumbnail
15350 Select the most representative frame in a given sequence of consecutive frames.
15351
15352 The filter accepts the following options:
15353
15354 @table @option
15355 @item n
15356 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
15357 will pick one of them, and then handle the next batch of @var{n} frames until
15358 the end. Default is @code{100}.
15359 @end table
15360
15361 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
15362 value will result in a higher memory usage, so a high value is not recommended.
15363
15364 @subsection Examples
15365
15366 @itemize
15367 @item
15368 Extract one picture each 50 frames:
15369 @example
15370 thumbnail=50
15371 @end example
15372
15373 @item
15374 Complete example of a thumbnail creation with @command{ffmpeg}:
15375 @example
15376 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
15377 @end example
15378 @end itemize
15379
15380 @section tile
15381
15382 Tile several successive frames together.
15383
15384 The filter accepts the following options:
15385
15386 @table @option
15387
15388 @item layout
15389 Set the grid size (i.e. the number of lines and columns). For the syntax of
15390 this option, check the
15391 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15392
15393 @item nb_frames
15394 Set the maximum number of frames to render in the given area. It must be less
15395 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
15396 the area will be used.
15397
15398 @item margin
15399 Set the outer border margin in pixels.
15400
15401 @item padding
15402 Set the inner border thickness (i.e. the number of pixels between frames). For
15403 more advanced padding options (such as having different values for the edges),
15404 refer to the pad video filter.
15405
15406 @item color
15407 Specify the color of the unused area. For the syntax of this option, check the
15408 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15409 The default value of @var{color} is "black".
15410
15411 @item overlap
15412 Set the number of frames to overlap when tiling several successive frames together.
15413 The value must be between @code{0} and @var{nb_frames - 1}.
15414
15415 @item init_padding
15416 Set the number of frames to initially be empty before displaying first output frame.
15417 This controls how soon will one get first output frame.
15418 The value must be between @code{0} and @var{nb_frames - 1}.
15419 @end table
15420
15421 @subsection Examples
15422
15423 @itemize
15424 @item
15425 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
15426 @example
15427 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
15428 @end example
15429 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
15430 duplicating each output frame to accommodate the originally detected frame
15431 rate.
15432
15433 @item
15434 Display @code{5} pictures in an area of @code{3x2} frames,
15435 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
15436 mixed flat and named options:
15437 @example
15438 tile=3x2:nb_frames=5:padding=7:margin=2
15439 @end example
15440 @end itemize
15441
15442 @section tinterlace
15443
15444 Perform various types of temporal field interlacing.
15445
15446 Frames are counted starting from 1, so the first input frame is
15447 considered odd.
15448
15449 The filter accepts the following options:
15450
15451 @table @option
15452
15453 @item mode
15454 Specify the mode of the interlacing. This option can also be specified
15455 as a value alone. See below for a list of values for this option.
15456
15457 Available values are:
15458
15459 @table @samp
15460 @item merge, 0
15461 Move odd frames into the upper field, even into the lower field,
15462 generating a double height frame at half frame rate.
15463 @example
15464  ------> time
15465 Input:
15466 Frame 1         Frame 2         Frame 3         Frame 4
15467
15468 11111           22222           33333           44444
15469 11111           22222           33333           44444
15470 11111           22222           33333           44444
15471 11111           22222           33333           44444
15472
15473 Output:
15474 11111                           33333
15475 22222                           44444
15476 11111                           33333
15477 22222                           44444
15478 11111                           33333
15479 22222                           44444
15480 11111                           33333
15481 22222                           44444
15482 @end example
15483
15484 @item drop_even, 1
15485 Only output odd frames, even frames are dropped, generating a frame with
15486 unchanged height at half frame rate.
15487
15488 @example
15489  ------> time
15490 Input:
15491 Frame 1         Frame 2         Frame 3         Frame 4
15492
15493 11111           22222           33333           44444
15494 11111           22222           33333           44444
15495 11111           22222           33333           44444
15496 11111           22222           33333           44444
15497
15498 Output:
15499 11111                           33333
15500 11111                           33333
15501 11111                           33333
15502 11111                           33333
15503 @end example
15504
15505 @item drop_odd, 2
15506 Only output even frames, odd frames are dropped, generating a frame with
15507 unchanged height at half frame rate.
15508
15509 @example
15510  ------> time
15511 Input:
15512 Frame 1         Frame 2         Frame 3         Frame 4
15513
15514 11111           22222           33333           44444
15515 11111           22222           33333           44444
15516 11111           22222           33333           44444
15517 11111           22222           33333           44444
15518
15519 Output:
15520                 22222                           44444
15521                 22222                           44444
15522                 22222                           44444
15523                 22222                           44444
15524 @end example
15525
15526 @item pad, 3
15527 Expand each frame to full height, but pad alternate lines with black,
15528 generating a frame with double height at the same input frame rate.
15529
15530 @example
15531  ------> time
15532 Input:
15533 Frame 1         Frame 2         Frame 3         Frame 4
15534
15535 11111           22222           33333           44444
15536 11111           22222           33333           44444
15537 11111           22222           33333           44444
15538 11111           22222           33333           44444
15539
15540 Output:
15541 11111           .....           33333           .....
15542 .....           22222           .....           44444
15543 11111           .....           33333           .....
15544 .....           22222           .....           44444
15545 11111           .....           33333           .....
15546 .....           22222           .....           44444
15547 11111           .....           33333           .....
15548 .....           22222           .....           44444
15549 @end example
15550
15551
15552 @item interleave_top, 4
15553 Interleave the upper field from odd frames with the lower field from
15554 even frames, generating a frame with unchanged height at half frame rate.
15555
15556 @example
15557  ------> time
15558 Input:
15559 Frame 1         Frame 2         Frame 3         Frame 4
15560
15561 11111<-         22222           33333<-         44444
15562 11111           22222<-         33333           44444<-
15563 11111<-         22222           33333<-         44444
15564 11111           22222<-         33333           44444<-
15565
15566 Output:
15567 11111                           33333
15568 22222                           44444
15569 11111                           33333
15570 22222                           44444
15571 @end example
15572
15573
15574 @item interleave_bottom, 5
15575 Interleave the lower field from odd frames with the upper field from
15576 even frames, generating a frame with unchanged height at half frame rate.
15577
15578 @example
15579  ------> time
15580 Input:
15581 Frame 1         Frame 2         Frame 3         Frame 4
15582
15583 11111           22222<-         33333           44444<-
15584 11111<-         22222           33333<-         44444
15585 11111           22222<-         33333           44444<-
15586 11111<-         22222           33333<-         44444
15587
15588 Output:
15589 22222                           44444
15590 11111                           33333
15591 22222                           44444
15592 11111                           33333
15593 @end example
15594
15595
15596 @item interlacex2, 6
15597 Double frame rate with unchanged height. Frames are inserted each
15598 containing the second temporal field from the previous input frame and
15599 the first temporal field from the next input frame. This mode relies on
15600 the top_field_first flag. Useful for interlaced video displays with no
15601 field synchronisation.
15602
15603 @example
15604  ------> time
15605 Input:
15606 Frame 1         Frame 2         Frame 3         Frame 4
15607
15608 11111           22222           33333           44444
15609  11111           22222           33333           44444
15610 11111           22222           33333           44444
15611  11111           22222           33333           44444
15612
15613 Output:
15614 11111   22222   22222   33333   33333   44444   44444
15615  11111   11111   22222   22222   33333   33333   44444
15616 11111   22222   22222   33333   33333   44444   44444
15617  11111   11111   22222   22222   33333   33333   44444
15618 @end example
15619
15620
15621 @item mergex2, 7
15622 Move odd frames into the upper field, even into the lower field,
15623 generating a double height frame at same frame rate.
15624
15625 @example
15626  ------> time
15627 Input:
15628 Frame 1         Frame 2         Frame 3         Frame 4
15629
15630 11111           22222           33333           44444
15631 11111           22222           33333           44444
15632 11111           22222           33333           44444
15633 11111           22222           33333           44444
15634
15635 Output:
15636 11111           33333           33333           55555
15637 22222           22222           44444           44444
15638 11111           33333           33333           55555
15639 22222           22222           44444           44444
15640 11111           33333           33333           55555
15641 22222           22222           44444           44444
15642 11111           33333           33333           55555
15643 22222           22222           44444           44444
15644 @end example
15645
15646 @end table
15647
15648 Numeric values are deprecated but are accepted for backward
15649 compatibility reasons.
15650
15651 Default mode is @code{merge}.
15652
15653 @item flags
15654 Specify flags influencing the filter process.
15655
15656 Available value for @var{flags} is:
15657
15658 @table @option
15659 @item low_pass_filter, vlfp
15660 Enable linear vertical low-pass filtering in the filter.
15661 Vertical low-pass filtering is required when creating an interlaced
15662 destination from a progressive source which contains high-frequency
15663 vertical detail. Filtering will reduce interlace 'twitter' and Moire
15664 patterning.
15665
15666 @item complex_filter, cvlfp
15667 Enable complex vertical low-pass filtering.
15668 This will slightly less reduce interlace 'twitter' and Moire
15669 patterning but better retain detail and subjective sharpness impression.
15670
15671 @end table
15672
15673 Vertical low-pass filtering can only be enabled for @option{mode}
15674 @var{interleave_top} and @var{interleave_bottom}.
15675
15676 @end table
15677
15678 @section tmix
15679
15680 Mix successive video frames.
15681
15682 A description of the accepted options follows.
15683
15684 @table @option
15685 @item frames
15686 The number of successive frames to mix. If unspecified, it defaults to 3.
15687
15688 @item weights
15689 Specify weight of each input video frame.
15690 Each weight is separated by space. If number of weights is smaller than
15691 number of @var{frames} last specified weight will be used for all remaining
15692 unset weights.
15693
15694 @item scale
15695 Specify scale, if it is set it will be multiplied with sum
15696 of each weight multiplied with pixel values to give final destination
15697 pixel value. By default @var{scale} is auto scaled to sum of weights.
15698 @end table
15699
15700 @subsection Examples
15701
15702 @itemize
15703 @item
15704 Average 7 successive frames:
15705 @example
15706 tmix=frames=7:weights="1 1 1 1 1 1 1"
15707 @end example
15708
15709 @item
15710 Apply simple temporal convolution:
15711 @example
15712 tmix=frames=3:weights="-1 3 -1"
15713 @end example
15714
15715 @item
15716 Similar as above but only showing temporal differences:
15717 @example
15718 tmix=frames=3:weights="-1 2 -1":scale=1
15719 @end example
15720 @end itemize
15721
15722 @section tonemap
15723 Tone map colors from different dynamic ranges.
15724
15725 This filter expects data in single precision floating point, as it needs to
15726 operate on (and can output) out-of-range values. Another filter, such as
15727 @ref{zscale}, is needed to convert the resulting frame to a usable format.
15728
15729 The tonemapping algorithms implemented only work on linear light, so input
15730 data should be linearized beforehand (and possibly correctly tagged).
15731
15732 @example
15733 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
15734 @end example
15735
15736 @subsection Options
15737 The filter accepts the following options.
15738
15739 @table @option
15740 @item tonemap
15741 Set the tone map algorithm to use.
15742
15743 Possible values are:
15744 @table @var
15745 @item none
15746 Do not apply any tone map, only desaturate overbright pixels.
15747
15748 @item clip
15749 Hard-clip any out-of-range values. Use it for perfect color accuracy for
15750 in-range values, while distorting out-of-range values.
15751
15752 @item linear
15753 Stretch the entire reference gamut to a linear multiple of the display.
15754
15755 @item gamma
15756 Fit a logarithmic transfer between the tone curves.
15757
15758 @item reinhard
15759 Preserve overall image brightness with a simple curve, using nonlinear
15760 contrast, which results in flattening details and degrading color accuracy.
15761
15762 @item hable
15763 Preserve both dark and bright details better than @var{reinhard}, at the cost
15764 of slightly darkening everything. Use it when detail preservation is more
15765 important than color and brightness accuracy.
15766
15767 @item mobius
15768 Smoothly map out-of-range values, while retaining contrast and colors for
15769 in-range material as much as possible. Use it when color accuracy is more
15770 important than detail preservation.
15771 @end table
15772
15773 Default is none.
15774
15775 @item param
15776 Tune the tone mapping algorithm.
15777
15778 This affects the following algorithms:
15779 @table @var
15780 @item none
15781 Ignored.
15782
15783 @item linear
15784 Specifies the scale factor to use while stretching.
15785 Default to 1.0.
15786
15787 @item gamma
15788 Specifies the exponent of the function.
15789 Default to 1.8.
15790
15791 @item clip
15792 Specify an extra linear coefficient to multiply into the signal before clipping.
15793 Default to 1.0.
15794
15795 @item reinhard
15796 Specify the local contrast coefficient at the display peak.
15797 Default to 0.5, which means that in-gamut values will be about half as bright
15798 as when clipping.
15799
15800 @item hable
15801 Ignored.
15802
15803 @item mobius
15804 Specify the transition point from linear to mobius transform. Every value
15805 below this point is guaranteed to be mapped 1:1. The higher the value, the
15806 more accurate the result will be, at the cost of losing bright details.
15807 Default to 0.3, which due to the steep initial slope still preserves in-range
15808 colors fairly accurately.
15809 @end table
15810
15811 @item desat
15812 Apply desaturation for highlights that exceed this level of brightness. The
15813 higher the parameter, the more color information will be preserved. This
15814 setting helps prevent unnaturally blown-out colors for super-highlights, by
15815 (smoothly) turning into white instead. This makes images feel more natural,
15816 at the cost of reducing information about out-of-range colors.
15817
15818 The default of 2.0 is somewhat conservative and will mostly just apply to
15819 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
15820
15821 This option works only if the input frame has a supported color tag.
15822
15823 @item peak
15824 Override signal/nominal/reference peak with this value. Useful when the
15825 embedded peak information in display metadata is not reliable or when tone
15826 mapping from a lower range to a higher range.
15827 @end table
15828
15829 @section transpose
15830
15831 Transpose rows with columns in the input video and optionally flip it.
15832
15833 It accepts the following parameters:
15834
15835 @table @option
15836
15837 @item dir
15838 Specify the transposition direction.
15839
15840 Can assume the following values:
15841 @table @samp
15842 @item 0, 4, cclock_flip
15843 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
15844 @example
15845 L.R     L.l
15846 . . ->  . .
15847 l.r     R.r
15848 @end example
15849
15850 @item 1, 5, clock
15851 Rotate by 90 degrees clockwise, that is:
15852 @example
15853 L.R     l.L
15854 . . ->  . .
15855 l.r     r.R
15856 @end example
15857
15858 @item 2, 6, cclock
15859 Rotate by 90 degrees counterclockwise, that is:
15860 @example
15861 L.R     R.r
15862 . . ->  . .
15863 l.r     L.l
15864 @end example
15865
15866 @item 3, 7, clock_flip
15867 Rotate by 90 degrees clockwise and vertically flip, that is:
15868 @example
15869 L.R     r.R
15870 . . ->  . .
15871 l.r     l.L
15872 @end example
15873 @end table
15874
15875 For values between 4-7, the transposition is only done if the input
15876 video geometry is portrait and not landscape. These values are
15877 deprecated, the @code{passthrough} option should be used instead.
15878
15879 Numerical values are deprecated, and should be dropped in favor of
15880 symbolic constants.
15881
15882 @item passthrough
15883 Do not apply the transposition if the input geometry matches the one
15884 specified by the specified value. It accepts the following values:
15885 @table @samp
15886 @item none
15887 Always apply transposition.
15888 @item portrait
15889 Preserve portrait geometry (when @var{height} >= @var{width}).
15890 @item landscape
15891 Preserve landscape geometry (when @var{width} >= @var{height}).
15892 @end table
15893
15894 Default value is @code{none}.
15895 @end table
15896
15897 For example to rotate by 90 degrees clockwise and preserve portrait
15898 layout:
15899 @example
15900 transpose=dir=1:passthrough=portrait
15901 @end example
15902
15903 The command above can also be specified as:
15904 @example
15905 transpose=1:portrait
15906 @end example
15907
15908 @section trim
15909 Trim the input so that the output contains one continuous subpart of the input.
15910
15911 It accepts the following parameters:
15912 @table @option
15913 @item start
15914 Specify the time of the start of the kept section, i.e. the frame with the
15915 timestamp @var{start} will be the first frame in the output.
15916
15917 @item end
15918 Specify the time of the first frame that will be dropped, i.e. the frame
15919 immediately preceding the one with the timestamp @var{end} will be the last
15920 frame in the output.
15921
15922 @item start_pts
15923 This is the same as @var{start}, except this option sets the start timestamp
15924 in timebase units instead of seconds.
15925
15926 @item end_pts
15927 This is the same as @var{end}, except this option sets the end timestamp
15928 in timebase units instead of seconds.
15929
15930 @item duration
15931 The maximum duration of the output in seconds.
15932
15933 @item start_frame
15934 The number of the first frame that should be passed to the output.
15935
15936 @item end_frame
15937 The number of the first frame that should be dropped.
15938 @end table
15939
15940 @option{start}, @option{end}, and @option{duration} are expressed as time
15941 duration specifications; see
15942 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15943 for the accepted syntax.
15944
15945 Note that the first two sets of the start/end options and the @option{duration}
15946 option look at the frame timestamp, while the _frame variants simply count the
15947 frames that pass through the filter. Also note that this filter does not modify
15948 the timestamps. If you wish for the output timestamps to start at zero, insert a
15949 setpts filter after the trim filter.
15950
15951 If multiple start or end options are set, this filter tries to be greedy and
15952 keep all the frames that match at least one of the specified constraints. To keep
15953 only the part that matches all the constraints at once, chain multiple trim
15954 filters.
15955
15956 The defaults are such that all the input is kept. So it is possible to set e.g.
15957 just the end values to keep everything before the specified time.
15958
15959 Examples:
15960 @itemize
15961 @item
15962 Drop everything except the second minute of input:
15963 @example
15964 ffmpeg -i INPUT -vf trim=60:120
15965 @end example
15966
15967 @item
15968 Keep only the first second:
15969 @example
15970 ffmpeg -i INPUT -vf trim=duration=1
15971 @end example
15972
15973 @end itemize
15974
15975 @section unpremultiply
15976 Apply alpha unpremultiply effect to input video stream using first plane
15977 of second stream as alpha.
15978
15979 Both streams must have same dimensions and same pixel format.
15980
15981 The filter accepts the following option:
15982
15983 @table @option
15984 @item planes
15985 Set which planes will be processed, unprocessed planes will be copied.
15986 By default value 0xf, all planes will be processed.
15987
15988 If the format has 1 or 2 components, then luma is bit 0.
15989 If the format has 3 or 4 components:
15990 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
15991 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
15992 If present, the alpha channel is always the last bit.
15993
15994 @item inplace
15995 Do not require 2nd input for processing, instead use alpha plane from input stream.
15996 @end table
15997
15998 @anchor{unsharp}
15999 @section unsharp
16000
16001 Sharpen or blur the input video.
16002
16003 It accepts the following parameters:
16004
16005 @table @option
16006 @item luma_msize_x, lx
16007 Set the luma matrix horizontal size. It must be an odd integer between
16008 3 and 23. The default value is 5.
16009
16010 @item luma_msize_y, ly
16011 Set the luma matrix vertical size. It must be an odd integer between 3
16012 and 23. The default value is 5.
16013
16014 @item luma_amount, la
16015 Set the luma effect strength. It must be a floating point number, reasonable
16016 values lay between -1.5 and 1.5.
16017
16018 Negative values will blur the input video, while positive values will
16019 sharpen it, a value of zero will disable the effect.
16020
16021 Default value is 1.0.
16022
16023 @item chroma_msize_x, cx
16024 Set the chroma matrix horizontal size. It must be an odd integer
16025 between 3 and 23. The default value is 5.
16026
16027 @item chroma_msize_y, cy
16028 Set the chroma matrix vertical size. It must be an odd integer
16029 between 3 and 23. The default value is 5.
16030
16031 @item chroma_amount, ca
16032 Set the chroma effect strength. It must be a floating point number, reasonable
16033 values lay between -1.5 and 1.5.
16034
16035 Negative values will blur the input video, while positive values will
16036 sharpen it, a value of zero will disable the effect.
16037
16038 Default value is 0.0.
16039
16040 @end table
16041
16042 All parameters are optional and default to the equivalent of the
16043 string '5:5:1.0:5:5:0.0'.
16044
16045 @subsection Examples
16046
16047 @itemize
16048 @item
16049 Apply strong luma sharpen effect:
16050 @example
16051 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
16052 @end example
16053
16054 @item
16055 Apply a strong blur of both luma and chroma parameters:
16056 @example
16057 unsharp=7:7:-2:7:7:-2
16058 @end example
16059 @end itemize
16060
16061 @section uspp
16062
16063 Apply ultra slow/simple postprocessing filter that compresses and decompresses
16064 the image at several (or - in the case of @option{quality} level @code{8} - all)
16065 shifts and average the results.
16066
16067 The way this differs from the behavior of spp is that uspp actually encodes &
16068 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
16069 DCT similar to MJPEG.
16070
16071 The filter accepts the following options:
16072
16073 @table @option
16074 @item quality
16075 Set quality. This option defines the number of levels for averaging. It accepts
16076 an integer in the range 0-8. If set to @code{0}, the filter will have no
16077 effect. A value of @code{8} means the higher quality. For each increment of
16078 that value the speed drops by a factor of approximately 2.  Default value is
16079 @code{3}.
16080
16081 @item qp
16082 Force a constant quantization parameter. If not set, the filter will use the QP
16083 from the video stream (if available).
16084 @end table
16085
16086 @section vaguedenoiser
16087
16088 Apply a wavelet based denoiser.
16089
16090 It transforms each frame from the video input into the wavelet domain,
16091 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
16092 the obtained coefficients. It does an inverse wavelet transform after.
16093 Due to wavelet properties, it should give a nice smoothed result, and
16094 reduced noise, without blurring picture features.
16095
16096 This filter accepts the following options:
16097
16098 @table @option
16099 @item threshold
16100 The filtering strength. The higher, the more filtered the video will be.
16101 Hard thresholding can use a higher threshold than soft thresholding
16102 before the video looks overfiltered. Default value is 2.
16103
16104 @item method
16105 The filtering method the filter will use.
16106
16107 It accepts the following values:
16108 @table @samp
16109 @item hard
16110 All values under the threshold will be zeroed.
16111
16112 @item soft
16113 All values under the threshold will be zeroed. All values above will be
16114 reduced by the threshold.
16115
16116 @item garrote
16117 Scales or nullifies coefficients - intermediary between (more) soft and
16118 (less) hard thresholding.
16119 @end table
16120
16121 Default is garrote.
16122
16123 @item nsteps
16124 Number of times, the wavelet will decompose the picture. Picture can't
16125 be decomposed beyond a particular point (typically, 8 for a 640x480
16126 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
16127
16128 @item percent
16129 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
16130
16131 @item planes
16132 A list of the planes to process. By default all planes are processed.
16133 @end table
16134
16135 @section vectorscope
16136
16137 Display 2 color component values in the two dimensional graph (which is called
16138 a vectorscope).
16139
16140 This filter accepts the following options:
16141
16142 @table @option
16143 @item mode, m
16144 Set vectorscope mode.
16145
16146 It accepts the following values:
16147 @table @samp
16148 @item gray
16149 Gray values are displayed on graph, higher brightness means more pixels have
16150 same component color value on location in graph. This is the default mode.
16151
16152 @item color
16153 Gray values are displayed on graph. Surrounding pixels values which are not
16154 present in video frame are drawn in gradient of 2 color components which are
16155 set by option @code{x} and @code{y}. The 3rd color component is static.
16156
16157 @item color2
16158 Actual color components values present in video frame are displayed on graph.
16159
16160 @item color3
16161 Similar as color2 but higher frequency of same values @code{x} and @code{y}
16162 on graph increases value of another color component, which is luminance by
16163 default values of @code{x} and @code{y}.
16164
16165 @item color4
16166 Actual colors present in video frame are displayed on graph. If two different
16167 colors map to same position on graph then color with higher value of component
16168 not present in graph is picked.
16169
16170 @item color5
16171 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
16172 component picked from radial gradient.
16173 @end table
16174
16175 @item x
16176 Set which color component will be represented on X-axis. Default is @code{1}.
16177
16178 @item y
16179 Set which color component will be represented on Y-axis. Default is @code{2}.
16180
16181 @item intensity, i
16182 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
16183 of color component which represents frequency of (X, Y) location in graph.
16184
16185 @item envelope, e
16186 @table @samp
16187 @item none
16188 No envelope, this is default.
16189
16190 @item instant
16191 Instant envelope, even darkest single pixel will be clearly highlighted.
16192
16193 @item peak
16194 Hold maximum and minimum values presented in graph over time. This way you
16195 can still spot out of range values without constantly looking at vectorscope.
16196
16197 @item peak+instant
16198 Peak and instant envelope combined together.
16199 @end table
16200
16201 @item graticule, g
16202 Set what kind of graticule to draw.
16203 @table @samp
16204 @item none
16205 @item green
16206 @item color
16207 @end table
16208
16209 @item opacity, o
16210 Set graticule opacity.
16211
16212 @item flags, f
16213 Set graticule flags.
16214
16215 @table @samp
16216 @item white
16217 Draw graticule for white point.
16218
16219 @item black
16220 Draw graticule for black point.
16221
16222 @item name
16223 Draw color points short names.
16224 @end table
16225
16226 @item bgopacity, b
16227 Set background opacity.
16228
16229 @item lthreshold, l
16230 Set low threshold for color component not represented on X or Y axis.
16231 Values lower than this value will be ignored. Default is 0.
16232 Note this value is multiplied with actual max possible value one pixel component
16233 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
16234 is 0.1 * 255 = 25.
16235
16236 @item hthreshold, h
16237 Set high threshold for color component not represented on X or Y axis.
16238 Values higher than this value will be ignored. Default is 1.
16239 Note this value is multiplied with actual max possible value one pixel component
16240 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
16241 is 0.9 * 255 = 230.
16242
16243 @item colorspace, c
16244 Set what kind of colorspace to use when drawing graticule.
16245 @table @samp
16246 @item auto
16247 @item 601
16248 @item 709
16249 @end table
16250 Default is auto.
16251 @end table
16252
16253 @anchor{vidstabdetect}
16254 @section vidstabdetect
16255
16256 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
16257 @ref{vidstabtransform} for pass 2.
16258
16259 This filter generates a file with relative translation and rotation
16260 transform information about subsequent frames, which is then used by
16261 the @ref{vidstabtransform} filter.
16262
16263 To enable compilation of this filter you need to configure FFmpeg with
16264 @code{--enable-libvidstab}.
16265
16266 This filter accepts the following options:
16267
16268 @table @option
16269 @item result
16270 Set the path to the file used to write the transforms information.
16271 Default value is @file{transforms.trf}.
16272
16273 @item shakiness
16274 Set how shaky the video is and how quick the camera is. It accepts an
16275 integer in the range 1-10, a value of 1 means little shakiness, a
16276 value of 10 means strong shakiness. Default value is 5.
16277
16278 @item accuracy
16279 Set the accuracy of the detection process. It must be a value in the
16280 range 1-15. A value of 1 means low accuracy, a value of 15 means high
16281 accuracy. Default value is 15.
16282
16283 @item stepsize
16284 Set stepsize of the search process. The region around minimum is
16285 scanned with 1 pixel resolution. Default value is 6.
16286
16287 @item mincontrast
16288 Set minimum contrast. Below this value a local measurement field is
16289 discarded. Must be a floating point value in the range 0-1. Default
16290 value is 0.3.
16291
16292 @item tripod
16293 Set reference frame number for tripod mode.
16294
16295 If enabled, the motion of the frames is compared to a reference frame
16296 in the filtered stream, identified by the specified number. The idea
16297 is to compensate all movements in a more-or-less static scene and keep
16298 the camera view absolutely still.
16299
16300 If set to 0, it is disabled. The frames are counted starting from 1.
16301
16302 @item show
16303 Show fields and transforms in the resulting frames. It accepts an
16304 integer in the range 0-2. Default value is 0, which disables any
16305 visualization.
16306 @end table
16307
16308 @subsection Examples
16309
16310 @itemize
16311 @item
16312 Use default values:
16313 @example
16314 vidstabdetect
16315 @end example
16316
16317 @item
16318 Analyze strongly shaky movie and put the results in file
16319 @file{mytransforms.trf}:
16320 @example
16321 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
16322 @end example
16323
16324 @item
16325 Visualize the result of internal transformations in the resulting
16326 video:
16327 @example
16328 vidstabdetect=show=1
16329 @end example
16330
16331 @item
16332 Analyze a video with medium shakiness using @command{ffmpeg}:
16333 @example
16334 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
16335 @end example
16336 @end itemize
16337
16338 @anchor{vidstabtransform}
16339 @section vidstabtransform
16340
16341 Video stabilization/deshaking: pass 2 of 2,
16342 see @ref{vidstabdetect} for pass 1.
16343
16344 Read a file with transform information for each frame and
16345 apply/compensate them. Together with the @ref{vidstabdetect}
16346 filter this can be used to deshake videos. See also
16347 @url{http://public.hronopik.de/vid.stab}. It is important to also use
16348 the @ref{unsharp} filter, see below.
16349
16350 To enable compilation of this filter you need to configure FFmpeg with
16351 @code{--enable-libvidstab}.
16352
16353 @subsection Options
16354
16355 @table @option
16356 @item input
16357 Set path to the file used to read the transforms. Default value is
16358 @file{transforms.trf}.
16359
16360 @item smoothing
16361 Set the number of frames (value*2 + 1) used for lowpass filtering the
16362 camera movements. Default value is 10.
16363
16364 For example a number of 10 means that 21 frames are used (10 in the
16365 past and 10 in the future) to smoothen the motion in the video. A
16366 larger value leads to a smoother video, but limits the acceleration of
16367 the camera (pan/tilt movements). 0 is a special case where a static
16368 camera is simulated.
16369
16370 @item optalgo
16371 Set the camera path optimization algorithm.
16372
16373 Accepted values are:
16374 @table @samp
16375 @item gauss
16376 gaussian kernel low-pass filter on camera motion (default)
16377 @item avg
16378 averaging on transformations
16379 @end table
16380
16381 @item maxshift
16382 Set maximal number of pixels to translate frames. Default value is -1,
16383 meaning no limit.
16384
16385 @item maxangle
16386 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
16387 value is -1, meaning no limit.
16388
16389 @item crop
16390 Specify how to deal with borders that may be visible due to movement
16391 compensation.
16392
16393 Available values are:
16394 @table @samp
16395 @item keep
16396 keep image information from previous frame (default)
16397 @item black
16398 fill the border black
16399 @end table
16400
16401 @item invert
16402 Invert transforms if set to 1. Default value is 0.
16403
16404 @item relative
16405 Consider transforms as relative to previous frame if set to 1,
16406 absolute if set to 0. Default value is 0.
16407
16408 @item zoom
16409 Set percentage to zoom. A positive value will result in a zoom-in
16410 effect, a negative value in a zoom-out effect. Default value is 0 (no
16411 zoom).
16412
16413 @item optzoom
16414 Set optimal zooming to avoid borders.
16415
16416 Accepted values are:
16417 @table @samp
16418 @item 0
16419 disabled
16420 @item 1
16421 optimal static zoom value is determined (only very strong movements
16422 will lead to visible borders) (default)
16423 @item 2
16424 optimal adaptive zoom value is determined (no borders will be
16425 visible), see @option{zoomspeed}
16426 @end table
16427
16428 Note that the value given at zoom is added to the one calculated here.
16429
16430 @item zoomspeed
16431 Set percent to zoom maximally each frame (enabled when
16432 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
16433 0.25.
16434
16435 @item interpol
16436 Specify type of interpolation.
16437
16438 Available values are:
16439 @table @samp
16440 @item no
16441 no interpolation
16442 @item linear
16443 linear only horizontal
16444 @item bilinear
16445 linear in both directions (default)
16446 @item bicubic
16447 cubic in both directions (slow)
16448 @end table
16449
16450 @item tripod
16451 Enable virtual tripod mode if set to 1, which is equivalent to
16452 @code{relative=0:smoothing=0}. Default value is 0.
16453
16454 Use also @code{tripod} option of @ref{vidstabdetect}.
16455
16456 @item debug
16457 Increase log verbosity if set to 1. Also the detected global motions
16458 are written to the temporary file @file{global_motions.trf}. Default
16459 value is 0.
16460 @end table
16461
16462 @subsection Examples
16463
16464 @itemize
16465 @item
16466 Use @command{ffmpeg} for a typical stabilization with default values:
16467 @example
16468 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
16469 @end example
16470
16471 Note the use of the @ref{unsharp} filter which is always recommended.
16472
16473 @item
16474 Zoom in a bit more and load transform data from a given file:
16475 @example
16476 vidstabtransform=zoom=5:input="mytransforms.trf"
16477 @end example
16478
16479 @item
16480 Smoothen the video even more:
16481 @example
16482 vidstabtransform=smoothing=30
16483 @end example
16484 @end itemize
16485
16486 @section vflip
16487
16488 Flip the input video vertically.
16489
16490 For example, to vertically flip a video with @command{ffmpeg}:
16491 @example
16492 ffmpeg -i in.avi -vf "vflip" out.avi
16493 @end example
16494
16495 @section vfrdet
16496
16497 Detect variable frame rate video.
16498
16499 This filter tries to detect if the input is variable or constant frame rate.
16500
16501 At end it will output number of frames detected as having variable delta pts,
16502 and ones with constant delta pts.
16503 If there was frames with variable delta, than it will also show min and max delta
16504 encountered.
16505
16506 @anchor{vignette}
16507 @section vignette
16508
16509 Make or reverse a natural vignetting effect.
16510
16511 The filter accepts the following options:
16512
16513 @table @option
16514 @item angle, a
16515 Set lens angle expression as a number of radians.
16516
16517 The value is clipped in the @code{[0,PI/2]} range.
16518
16519 Default value: @code{"PI/5"}
16520
16521 @item x0
16522 @item y0
16523 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
16524 by default.
16525
16526 @item mode
16527 Set forward/backward mode.
16528
16529 Available modes are:
16530 @table @samp
16531 @item forward
16532 The larger the distance from the central point, the darker the image becomes.
16533
16534 @item backward
16535 The larger the distance from the central point, the brighter the image becomes.
16536 This can be used to reverse a vignette effect, though there is no automatic
16537 detection to extract the lens @option{angle} and other settings (yet). It can
16538 also be used to create a burning effect.
16539 @end table
16540
16541 Default value is @samp{forward}.
16542
16543 @item eval
16544 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
16545
16546 It accepts the following values:
16547 @table @samp
16548 @item init
16549 Evaluate expressions only once during the filter initialization.
16550
16551 @item frame
16552 Evaluate expressions for each incoming frame. This is way slower than the
16553 @samp{init} mode since it requires all the scalers to be re-computed, but it
16554 allows advanced dynamic expressions.
16555 @end table
16556
16557 Default value is @samp{init}.
16558
16559 @item dither
16560 Set dithering to reduce the circular banding effects. Default is @code{1}
16561 (enabled).
16562
16563 @item aspect
16564 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
16565 Setting this value to the SAR of the input will make a rectangular vignetting
16566 following the dimensions of the video.
16567
16568 Default is @code{1/1}.
16569 @end table
16570
16571 @subsection Expressions
16572
16573 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
16574 following parameters.
16575
16576 @table @option
16577 @item w
16578 @item h
16579 input width and height
16580
16581 @item n
16582 the number of input frame, starting from 0
16583
16584 @item pts
16585 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
16586 @var{TB} units, NAN if undefined
16587
16588 @item r
16589 frame rate of the input video, NAN if the input frame rate is unknown
16590
16591 @item t
16592 the PTS (Presentation TimeStamp) of the filtered video frame,
16593 expressed in seconds, NAN if undefined
16594
16595 @item tb
16596 time base of the input video
16597 @end table
16598
16599
16600 @subsection Examples
16601
16602 @itemize
16603 @item
16604 Apply simple strong vignetting effect:
16605 @example
16606 vignette=PI/4
16607 @end example
16608
16609 @item
16610 Make a flickering vignetting:
16611 @example
16612 vignette='PI/4+random(1)*PI/50':eval=frame
16613 @end example
16614
16615 @end itemize
16616
16617 @section vmafmotion
16618
16619 Obtain the average vmaf motion score of a video.
16620 It is one of the component filters of VMAF.
16621
16622 The obtained average motion score is printed through the logging system.
16623
16624 In the below example the input file @file{ref.mpg} is being processed and score
16625 is computed.
16626
16627 @example
16628 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
16629 @end example
16630
16631 @section vstack
16632 Stack input videos vertically.
16633
16634 All streams must be of same pixel format and of same width.
16635
16636 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
16637 to create same output.
16638
16639 The filter accept the following option:
16640
16641 @table @option
16642 @item inputs
16643 Set number of input streams. Default is 2.
16644
16645 @item shortest
16646 If set to 1, force the output to terminate when the shortest input
16647 terminates. Default value is 0.
16648 @end table
16649
16650 @section w3fdif
16651
16652 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
16653 Deinterlacing Filter").
16654
16655 Based on the process described by Martin Weston for BBC R&D, and
16656 implemented based on the de-interlace algorithm written by Jim
16657 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
16658 uses filter coefficients calculated by BBC R&D.
16659
16660 There are two sets of filter coefficients, so called "simple":
16661 and "complex". Which set of filter coefficients is used can
16662 be set by passing an optional parameter:
16663
16664 @table @option
16665 @item filter
16666 Set the interlacing filter coefficients. Accepts one of the following values:
16667
16668 @table @samp
16669 @item simple
16670 Simple filter coefficient set.
16671 @item complex
16672 More-complex filter coefficient set.
16673 @end table
16674 Default value is @samp{complex}.
16675
16676 @item deint
16677 Specify which frames to deinterlace. Accept one of the following values:
16678
16679 @table @samp
16680 @item all
16681 Deinterlace all frames,
16682 @item interlaced
16683 Only deinterlace frames marked as interlaced.
16684 @end table
16685
16686 Default value is @samp{all}.
16687 @end table
16688
16689 @section waveform
16690 Video waveform monitor.
16691
16692 The waveform monitor plots color component intensity. By default luminance
16693 only. Each column of the waveform corresponds to a column of pixels in the
16694 source video.
16695
16696 It accepts the following options:
16697
16698 @table @option
16699 @item mode, m
16700 Can be either @code{row}, or @code{column}. Default is @code{column}.
16701 In row mode, the graph on the left side represents color component value 0 and
16702 the right side represents value = 255. In column mode, the top side represents
16703 color component value = 0 and bottom side represents value = 255.
16704
16705 @item intensity, i
16706 Set intensity. Smaller values are useful to find out how many values of the same
16707 luminance are distributed across input rows/columns.
16708 Default value is @code{0.04}. Allowed range is [0, 1].
16709
16710 @item mirror, r
16711 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
16712 In mirrored mode, higher values will be represented on the left
16713 side for @code{row} mode and at the top for @code{column} mode. Default is
16714 @code{1} (mirrored).
16715
16716 @item display, d
16717 Set display mode.
16718 It accepts the following values:
16719 @table @samp
16720 @item overlay
16721 Presents information identical to that in the @code{parade}, except
16722 that the graphs representing color components are superimposed directly
16723 over one another.
16724
16725 This display mode makes it easier to spot relative differences or similarities
16726 in overlapping areas of the color components that are supposed to be identical,
16727 such as neutral whites, grays, or blacks.
16728
16729 @item stack
16730 Display separate graph for the color components side by side in
16731 @code{row} mode or one below the other in @code{column} mode.
16732
16733 @item parade
16734 Display separate graph for the color components side by side in
16735 @code{column} mode or one below the other in @code{row} mode.
16736
16737 Using this display mode makes it easy to spot color casts in the highlights
16738 and shadows of an image, by comparing the contours of the top and the bottom
16739 graphs of each waveform. Since whites, grays, and blacks are characterized
16740 by exactly equal amounts of red, green, and blue, neutral areas of the picture
16741 should display three waveforms of roughly equal width/height. If not, the
16742 correction is easy to perform by making level adjustments the three waveforms.
16743 @end table
16744 Default is @code{stack}.
16745
16746 @item components, c
16747 Set which color components to display. Default is 1, which means only luminance
16748 or red color component if input is in RGB colorspace. If is set for example to
16749 7 it will display all 3 (if) available color components.
16750
16751 @item envelope, e
16752 @table @samp
16753 @item none
16754 No envelope, this is default.
16755
16756 @item instant
16757 Instant envelope, minimum and maximum values presented in graph will be easily
16758 visible even with small @code{step} value.
16759
16760 @item peak
16761 Hold minimum and maximum values presented in graph across time. This way you
16762 can still spot out of range values without constantly looking at waveforms.
16763
16764 @item peak+instant
16765 Peak and instant envelope combined together.
16766 @end table
16767
16768 @item filter, f
16769 @table @samp
16770 @item lowpass
16771 No filtering, this is default.
16772
16773 @item flat
16774 Luma and chroma combined together.
16775
16776 @item aflat
16777 Similar as above, but shows difference between blue and red chroma.
16778
16779 @item xflat
16780 Similar as above, but use different colors.
16781
16782 @item chroma
16783 Displays only chroma.
16784
16785 @item color
16786 Displays actual color value on waveform.
16787
16788 @item acolor
16789 Similar as above, but with luma showing frequency of chroma values.
16790 @end table
16791
16792 @item graticule, g
16793 Set which graticule to display.
16794
16795 @table @samp
16796 @item none
16797 Do not display graticule.
16798
16799 @item green
16800 Display green graticule showing legal broadcast ranges.
16801
16802 @item orange
16803 Display orange graticule showing legal broadcast ranges.
16804 @end table
16805
16806 @item opacity, o
16807 Set graticule opacity.
16808
16809 @item flags, fl
16810 Set graticule flags.
16811
16812 @table @samp
16813 @item numbers
16814 Draw numbers above lines. By default enabled.
16815
16816 @item dots
16817 Draw dots instead of lines.
16818 @end table
16819
16820 @item scale, s
16821 Set scale used for displaying graticule.
16822
16823 @table @samp
16824 @item digital
16825 @item millivolts
16826 @item ire
16827 @end table
16828 Default is digital.
16829
16830 @item bgopacity, b
16831 Set background opacity.
16832 @end table
16833
16834 @section weave, doubleweave
16835
16836 The @code{weave} takes a field-based video input and join
16837 each two sequential fields into single frame, producing a new double
16838 height clip with half the frame rate and half the frame count.
16839
16840 The @code{doubleweave} works same as @code{weave} but without
16841 halving frame rate and frame count.
16842
16843 It accepts the following option:
16844
16845 @table @option
16846 @item first_field
16847 Set first field. Available values are:
16848
16849 @table @samp
16850 @item top, t
16851 Set the frame as top-field-first.
16852
16853 @item bottom, b
16854 Set the frame as bottom-field-first.
16855 @end table
16856 @end table
16857
16858 @subsection Examples
16859
16860 @itemize
16861 @item
16862 Interlace video using @ref{select} and @ref{separatefields} filter:
16863 @example
16864 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
16865 @end example
16866 @end itemize
16867
16868 @section xbr
16869 Apply the xBR high-quality magnification filter which is designed for pixel
16870 art. It follows a set of edge-detection rules, see
16871 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
16872
16873 It accepts the following option:
16874
16875 @table @option
16876 @item n
16877 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
16878 @code{3xBR} and @code{4} for @code{4xBR}.
16879 Default is @code{3}.
16880 @end table
16881
16882 @anchor{yadif}
16883 @section yadif
16884
16885 Deinterlace the input video ("yadif" means "yet another deinterlacing
16886 filter").
16887
16888 It accepts the following parameters:
16889
16890
16891 @table @option
16892
16893 @item mode
16894 The interlacing mode to adopt. It accepts one of the following values:
16895
16896 @table @option
16897 @item 0, send_frame
16898 Output one frame for each frame.
16899 @item 1, send_field
16900 Output one frame for each field.
16901 @item 2, send_frame_nospatial
16902 Like @code{send_frame}, but it skips the spatial interlacing check.
16903 @item 3, send_field_nospatial
16904 Like @code{send_field}, but it skips the spatial interlacing check.
16905 @end table
16906
16907 The default value is @code{send_frame}.
16908
16909 @item parity
16910 The picture field parity assumed for the input interlaced video. It accepts one
16911 of the following values:
16912
16913 @table @option
16914 @item 0, tff
16915 Assume the top field is first.
16916 @item 1, bff
16917 Assume the bottom field is first.
16918 @item -1, auto
16919 Enable automatic detection of field parity.
16920 @end table
16921
16922 The default value is @code{auto}.
16923 If the interlacing is unknown or the decoder does not export this information,
16924 top field first will be assumed.
16925
16926 @item deint
16927 Specify which frames to deinterlace. Accept one of the following
16928 values:
16929
16930 @table @option
16931 @item 0, all
16932 Deinterlace all frames.
16933 @item 1, interlaced
16934 Only deinterlace frames marked as interlaced.
16935 @end table
16936
16937 The default value is @code{all}.
16938 @end table
16939
16940 @section zoompan
16941
16942 Apply Zoom & Pan effect.
16943
16944 This filter accepts the following options:
16945
16946 @table @option
16947 @item zoom, z
16948 Set the zoom expression. Default is 1.
16949
16950 @item x
16951 @item y
16952 Set the x and y expression. Default is 0.
16953
16954 @item d
16955 Set the duration expression in number of frames.
16956 This sets for how many number of frames effect will last for
16957 single input image.
16958
16959 @item s
16960 Set the output image size, default is 'hd720'.
16961
16962 @item fps
16963 Set the output frame rate, default is '25'.
16964 @end table
16965
16966 Each expression can contain the following constants:
16967
16968 @table @option
16969 @item in_w, iw
16970 Input width.
16971
16972 @item in_h, ih
16973 Input height.
16974
16975 @item out_w, ow
16976 Output width.
16977
16978 @item out_h, oh
16979 Output height.
16980
16981 @item in
16982 Input frame count.
16983
16984 @item on
16985 Output frame count.
16986
16987 @item x
16988 @item y
16989 Last calculated 'x' and 'y' position from 'x' and 'y' expression
16990 for current input frame.
16991
16992 @item px
16993 @item py
16994 'x' and 'y' of last output frame of previous input frame or 0 when there was
16995 not yet such frame (first input frame).
16996
16997 @item zoom
16998 Last calculated zoom from 'z' expression for current input frame.
16999
17000 @item pzoom
17001 Last calculated zoom of last output frame of previous input frame.
17002
17003 @item duration
17004 Number of output frames for current input frame. Calculated from 'd' expression
17005 for each input frame.
17006
17007 @item pduration
17008 number of output frames created for previous input frame
17009
17010 @item a
17011 Rational number: input width / input height
17012
17013 @item sar
17014 sample aspect ratio
17015
17016 @item dar
17017 display aspect ratio
17018
17019 @end table
17020
17021 @subsection Examples
17022
17023 @itemize
17024 @item
17025 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
17026 @example
17027 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
17028 @end example
17029
17030 @item
17031 Zoom-in up to 1.5 and pan always at center of picture:
17032 @example
17033 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
17034 @end example
17035
17036 @item
17037 Same as above but without pausing:
17038 @example
17039 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
17040 @end example
17041 @end itemize
17042
17043 @anchor{zscale}
17044 @section zscale
17045 Scale (resize) the input video, using the z.lib library:
17046 https://github.com/sekrit-twc/zimg.
17047
17048 The zscale filter forces the output display aspect ratio to be the same
17049 as the input, by changing the output sample aspect ratio.
17050
17051 If the input image format is different from the format requested by
17052 the next filter, the zscale filter will convert the input to the
17053 requested format.
17054
17055 @subsection Options
17056 The filter accepts the following options.
17057
17058 @table @option
17059 @item width, w
17060 @item height, h
17061 Set the output video dimension expression. Default value is the input
17062 dimension.
17063
17064 If the @var{width} or @var{w} value is 0, the input width is used for
17065 the output. If the @var{height} or @var{h} value is 0, the input height
17066 is used for the output.
17067
17068 If one and only one of the values is -n with n >= 1, the zscale filter
17069 will use a value that maintains the aspect ratio of the input image,
17070 calculated from the other specified dimension. After that it will,
17071 however, make sure that the calculated dimension is divisible by n and
17072 adjust the value if necessary.
17073
17074 If both values are -n with n >= 1, the behavior will be identical to
17075 both values being set to 0 as previously detailed.
17076
17077 See below for the list of accepted constants for use in the dimension
17078 expression.
17079
17080 @item size, s
17081 Set the video size. For the syntax of this option, check the
17082 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17083
17084 @item dither, d
17085 Set the dither type.
17086
17087 Possible values are:
17088 @table @var
17089 @item none
17090 @item ordered
17091 @item random
17092 @item error_diffusion
17093 @end table
17094
17095 Default is none.
17096
17097 @item filter, f
17098 Set the resize filter type.
17099
17100 Possible values are:
17101 @table @var
17102 @item point
17103 @item bilinear
17104 @item bicubic
17105 @item spline16
17106 @item spline36
17107 @item lanczos
17108 @end table
17109
17110 Default is bilinear.
17111
17112 @item range, r
17113 Set the color range.
17114
17115 Possible values are:
17116 @table @var
17117 @item input
17118 @item limited
17119 @item full
17120 @end table
17121
17122 Default is same as input.
17123
17124 @item primaries, p
17125 Set the color primaries.
17126
17127 Possible values are:
17128 @table @var
17129 @item input
17130 @item 709
17131 @item unspecified
17132 @item 170m
17133 @item 240m
17134 @item 2020
17135 @end table
17136
17137 Default is same as input.
17138
17139 @item transfer, t
17140 Set the transfer characteristics.
17141
17142 Possible values are:
17143 @table @var
17144 @item input
17145 @item 709
17146 @item unspecified
17147 @item 601
17148 @item linear
17149 @item 2020_10
17150 @item 2020_12
17151 @item smpte2084
17152 @item iec61966-2-1
17153 @item arib-std-b67
17154 @end table
17155
17156 Default is same as input.
17157
17158 @item matrix, m
17159 Set the colorspace matrix.
17160
17161 Possible value are:
17162 @table @var
17163 @item input
17164 @item 709
17165 @item unspecified
17166 @item 470bg
17167 @item 170m
17168 @item 2020_ncl
17169 @item 2020_cl
17170 @end table
17171
17172 Default is same as input.
17173
17174 @item rangein, rin
17175 Set the input color range.
17176
17177 Possible values are:
17178 @table @var
17179 @item input
17180 @item limited
17181 @item full
17182 @end table
17183
17184 Default is same as input.
17185
17186 @item primariesin, pin
17187 Set the input color primaries.
17188
17189 Possible values are:
17190 @table @var
17191 @item input
17192 @item 709
17193 @item unspecified
17194 @item 170m
17195 @item 240m
17196 @item 2020
17197 @end table
17198
17199 Default is same as input.
17200
17201 @item transferin, tin
17202 Set the input transfer characteristics.
17203
17204 Possible values are:
17205 @table @var
17206 @item input
17207 @item 709
17208 @item unspecified
17209 @item 601
17210 @item linear
17211 @item 2020_10
17212 @item 2020_12
17213 @end table
17214
17215 Default is same as input.
17216
17217 @item matrixin, min
17218 Set the input colorspace matrix.
17219
17220 Possible value are:
17221 @table @var
17222 @item input
17223 @item 709
17224 @item unspecified
17225 @item 470bg
17226 @item 170m
17227 @item 2020_ncl
17228 @item 2020_cl
17229 @end table
17230
17231 @item chromal, c
17232 Set the output chroma location.
17233
17234 Possible values are:
17235 @table @var
17236 @item input
17237 @item left
17238 @item center
17239 @item topleft
17240 @item top
17241 @item bottomleft
17242 @item bottom
17243 @end table
17244
17245 @item chromalin, cin
17246 Set the input chroma location.
17247
17248 Possible values are:
17249 @table @var
17250 @item input
17251 @item left
17252 @item center
17253 @item topleft
17254 @item top
17255 @item bottomleft
17256 @item bottom
17257 @end table
17258
17259 @item npl
17260 Set the nominal peak luminance.
17261 @end table
17262
17263 The values of the @option{w} and @option{h} options are expressions
17264 containing the following constants:
17265
17266 @table @var
17267 @item in_w
17268 @item in_h
17269 The input width and height
17270
17271 @item iw
17272 @item ih
17273 These are the same as @var{in_w} and @var{in_h}.
17274
17275 @item out_w
17276 @item out_h
17277 The output (scaled) width and height
17278
17279 @item ow
17280 @item oh
17281 These are the same as @var{out_w} and @var{out_h}
17282
17283 @item a
17284 The same as @var{iw} / @var{ih}
17285
17286 @item sar
17287 input sample aspect ratio
17288
17289 @item dar
17290 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
17291
17292 @item hsub
17293 @item vsub
17294 horizontal and vertical input chroma subsample values. For example for the
17295 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17296
17297 @item ohsub
17298 @item ovsub
17299 horizontal and vertical output chroma subsample values. For example for the
17300 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17301 @end table
17302
17303 @table @option
17304 @end table
17305
17306 @c man end VIDEO FILTERS
17307
17308 @chapter Video Sources
17309 @c man begin VIDEO SOURCES
17310
17311 Below is a description of the currently available video sources.
17312
17313 @section buffer
17314
17315 Buffer video frames, and make them available to the filter chain.
17316
17317 This source is mainly intended for a programmatic use, in particular
17318 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
17319
17320 It accepts the following parameters:
17321
17322 @table @option
17323
17324 @item video_size
17325 Specify the size (width and height) of the buffered video frames. For the
17326 syntax of this option, check the
17327 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17328
17329 @item width
17330 The input video width.
17331
17332 @item height
17333 The input video height.
17334
17335 @item pix_fmt
17336 A string representing the pixel format of the buffered video frames.
17337 It may be a number corresponding to a pixel format, or a pixel format
17338 name.
17339
17340 @item time_base
17341 Specify the timebase assumed by the timestamps of the buffered frames.
17342
17343 @item frame_rate
17344 Specify the frame rate expected for the video stream.
17345
17346 @item pixel_aspect, sar
17347 The sample (pixel) aspect ratio of the input video.
17348
17349 @item sws_param
17350 Specify the optional parameters to be used for the scale filter which
17351 is automatically inserted when an input change is detected in the
17352 input size or format.
17353
17354 @item hw_frames_ctx
17355 When using a hardware pixel format, this should be a reference to an
17356 AVHWFramesContext describing input frames.
17357 @end table
17358
17359 For example:
17360 @example
17361 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
17362 @end example
17363
17364 will instruct the source to accept video frames with size 320x240 and
17365 with format "yuv410p", assuming 1/24 as the timestamps timebase and
17366 square pixels (1:1 sample aspect ratio).
17367 Since the pixel format with name "yuv410p" corresponds to the number 6
17368 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
17369 this example corresponds to:
17370 @example
17371 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
17372 @end example
17373
17374 Alternatively, the options can be specified as a flat string, but this
17375 syntax is deprecated:
17376
17377 @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}]
17378
17379 @section cellauto
17380
17381 Create a pattern generated by an elementary cellular automaton.
17382
17383 The initial state of the cellular automaton can be defined through the
17384 @option{filename} and @option{pattern} options. If such options are
17385 not specified an initial state is created randomly.
17386
17387 At each new frame a new row in the video is filled with the result of
17388 the cellular automaton next generation. The behavior when the whole
17389 frame is filled is defined by the @option{scroll} option.
17390
17391 This source accepts the following options:
17392
17393 @table @option
17394 @item filename, f
17395 Read the initial cellular automaton state, i.e. the starting row, from
17396 the specified file.
17397 In the file, each non-whitespace character is considered an alive
17398 cell, a newline will terminate the row, and further characters in the
17399 file will be ignored.
17400
17401 @item pattern, p
17402 Read the initial cellular automaton state, i.e. the starting row, from
17403 the specified string.
17404
17405 Each non-whitespace character in the string is considered an alive
17406 cell, a newline will terminate the row, and further characters in the
17407 string will be ignored.
17408
17409 @item rate, r
17410 Set the video rate, that is the number of frames generated per second.
17411 Default is 25.
17412
17413 @item random_fill_ratio, ratio
17414 Set the random fill ratio for the initial cellular automaton row. It
17415 is a floating point number value ranging from 0 to 1, defaults to
17416 1/PHI.
17417
17418 This option is ignored when a file or a pattern is specified.
17419
17420 @item random_seed, seed
17421 Set the seed for filling randomly the initial row, must be an integer
17422 included between 0 and UINT32_MAX. If not specified, or if explicitly
17423 set to -1, the filter will try to use a good random seed on a best
17424 effort basis.
17425
17426 @item rule
17427 Set the cellular automaton rule, it is a number ranging from 0 to 255.
17428 Default value is 110.
17429
17430 @item size, s
17431 Set the size of the output video. For the syntax of this option, check the
17432 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17433
17434 If @option{filename} or @option{pattern} is specified, the size is set
17435 by default to the width of the specified initial state row, and the
17436 height is set to @var{width} * PHI.
17437
17438 If @option{size} is set, it must contain the width of the specified
17439 pattern string, and the specified pattern will be centered in the
17440 larger row.
17441
17442 If a filename or a pattern string is not specified, the size value
17443 defaults to "320x518" (used for a randomly generated initial state).
17444
17445 @item scroll
17446 If set to 1, scroll the output upward when all the rows in the output
17447 have been already filled. If set to 0, the new generated row will be
17448 written over the top row just after the bottom row is filled.
17449 Defaults to 1.
17450
17451 @item start_full, full
17452 If set to 1, completely fill the output with generated rows before
17453 outputting the first frame.
17454 This is the default behavior, for disabling set the value to 0.
17455
17456 @item stitch
17457 If set to 1, stitch the left and right row edges together.
17458 This is the default behavior, for disabling set the value to 0.
17459 @end table
17460
17461 @subsection Examples
17462
17463 @itemize
17464 @item
17465 Read the initial state from @file{pattern}, and specify an output of
17466 size 200x400.
17467 @example
17468 cellauto=f=pattern:s=200x400
17469 @end example
17470
17471 @item
17472 Generate a random initial row with a width of 200 cells, with a fill
17473 ratio of 2/3:
17474 @example
17475 cellauto=ratio=2/3:s=200x200
17476 @end example
17477
17478 @item
17479 Create a pattern generated by rule 18 starting by a single alive cell
17480 centered on an initial row with width 100:
17481 @example
17482 cellauto=p=@@:s=100x400:full=0:rule=18
17483 @end example
17484
17485 @item
17486 Specify a more elaborated initial pattern:
17487 @example
17488 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
17489 @end example
17490
17491 @end itemize
17492
17493 @anchor{coreimagesrc}
17494 @section coreimagesrc
17495 Video source generated on GPU using Apple's CoreImage API on OSX.
17496
17497 This video source is a specialized version of the @ref{coreimage} video filter.
17498 Use a core image generator at the beginning of the applied filterchain to
17499 generate the content.
17500
17501 The coreimagesrc video source accepts the following options:
17502 @table @option
17503 @item list_generators
17504 List all available generators along with all their respective options as well as
17505 possible minimum and maximum values along with the default values.
17506 @example
17507 list_generators=true
17508 @end example
17509
17510 @item size, s
17511 Specify the size of the sourced video. For the syntax of this option, check the
17512 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17513 The default value is @code{320x240}.
17514
17515 @item rate, r
17516 Specify the frame rate of the sourced video, as the number of frames
17517 generated per second. It has to be a string in the format
17518 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
17519 number or a valid video frame rate abbreviation. The default value is
17520 "25".
17521
17522 @item sar
17523 Set the sample aspect ratio of the sourced video.
17524
17525 @item duration, d
17526 Set the duration of the sourced video. See
17527 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17528 for the accepted syntax.
17529
17530 If not specified, or the expressed duration is negative, the video is
17531 supposed to be generated forever.
17532 @end table
17533
17534 Additionally, all options of the @ref{coreimage} video filter are accepted.
17535 A complete filterchain can be used for further processing of the
17536 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
17537 and examples for details.
17538
17539 @subsection Examples
17540
17541 @itemize
17542
17543 @item
17544 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
17545 given as complete and escaped command-line for Apple's standard bash shell:
17546 @example
17547 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
17548 @end example
17549 This example is equivalent to the QRCode example of @ref{coreimage} without the
17550 need for a nullsrc video source.
17551 @end itemize
17552
17553
17554 @section mandelbrot
17555
17556 Generate a Mandelbrot set fractal, and progressively zoom towards the
17557 point specified with @var{start_x} and @var{start_y}.
17558
17559 This source accepts the following options:
17560
17561 @table @option
17562
17563 @item end_pts
17564 Set the terminal pts value. Default value is 400.
17565
17566 @item end_scale
17567 Set the terminal scale value.
17568 Must be a floating point value. Default value is 0.3.
17569
17570 @item inner
17571 Set the inner coloring mode, that is the algorithm used to draw the
17572 Mandelbrot fractal internal region.
17573
17574 It shall assume one of the following values:
17575 @table @option
17576 @item black
17577 Set black mode.
17578 @item convergence
17579 Show time until convergence.
17580 @item mincol
17581 Set color based on point closest to the origin of the iterations.
17582 @item period
17583 Set period mode.
17584 @end table
17585
17586 Default value is @var{mincol}.
17587
17588 @item bailout
17589 Set the bailout value. Default value is 10.0.
17590
17591 @item maxiter
17592 Set the maximum of iterations performed by the rendering
17593 algorithm. Default value is 7189.
17594
17595 @item outer
17596 Set outer coloring mode.
17597 It shall assume one of following values:
17598 @table @option
17599 @item iteration_count
17600 Set iteration cound mode.
17601 @item normalized_iteration_count
17602 set normalized iteration count mode.
17603 @end table
17604 Default value is @var{normalized_iteration_count}.
17605
17606 @item rate, r
17607 Set frame rate, expressed as number of frames per second. Default
17608 value is "25".
17609
17610 @item size, s
17611 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
17612 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
17613
17614 @item start_scale
17615 Set the initial scale value. Default value is 3.0.
17616
17617 @item start_x
17618 Set the initial x position. Must be a floating point value between
17619 -100 and 100. Default value is -0.743643887037158704752191506114774.
17620
17621 @item start_y
17622 Set the initial y position. Must be a floating point value between
17623 -100 and 100. Default value is -0.131825904205311970493132056385139.
17624 @end table
17625
17626 @section mptestsrc
17627
17628 Generate various test patterns, as generated by the MPlayer test filter.
17629
17630 The size of the generated video is fixed, and is 256x256.
17631 This source is useful in particular for testing encoding features.
17632
17633 This source accepts the following options:
17634
17635 @table @option
17636
17637 @item rate, r
17638 Specify the frame rate of the sourced video, as the number of frames
17639 generated per second. It has to be a string in the format
17640 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
17641 number or a valid video frame rate abbreviation. The default value is
17642 "25".
17643
17644 @item duration, d
17645 Set the duration of the sourced video. See
17646 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17647 for the accepted syntax.
17648
17649 If not specified, or the expressed duration is negative, the video is
17650 supposed to be generated forever.
17651
17652 @item test, t
17653
17654 Set the number or the name of the test to perform. Supported tests are:
17655 @table @option
17656 @item dc_luma
17657 @item dc_chroma
17658 @item freq_luma
17659 @item freq_chroma
17660 @item amp_luma
17661 @item amp_chroma
17662 @item cbp
17663 @item mv
17664 @item ring1
17665 @item ring2
17666 @item all
17667
17668 @end table
17669
17670 Default value is "all", which will cycle through the list of all tests.
17671 @end table
17672
17673 Some examples:
17674 @example
17675 mptestsrc=t=dc_luma
17676 @end example
17677
17678 will generate a "dc_luma" test pattern.
17679
17680 @section frei0r_src
17681
17682 Provide a frei0r source.
17683
17684 To enable compilation of this filter you need to install the frei0r
17685 header and configure FFmpeg with @code{--enable-frei0r}.
17686
17687 This source accepts the following parameters:
17688
17689 @table @option
17690
17691 @item size
17692 The size of the video to generate. For the syntax of this option, check the
17693 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17694
17695 @item framerate
17696 The framerate of the generated video. It may be a string of the form
17697 @var{num}/@var{den} or a frame rate abbreviation.
17698
17699 @item filter_name
17700 The name to the frei0r source to load. For more information regarding frei0r and
17701 how to set the parameters, read the @ref{frei0r} section in the video filters
17702 documentation.
17703
17704 @item filter_params
17705 A '|'-separated list of parameters to pass to the frei0r source.
17706
17707 @end table
17708
17709 For example, to generate a frei0r partik0l source with size 200x200
17710 and frame rate 10 which is overlaid on the overlay filter main input:
17711 @example
17712 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
17713 @end example
17714
17715 @section life
17716
17717 Generate a life pattern.
17718
17719 This source is based on a generalization of John Conway's life game.
17720
17721 The sourced input represents a life grid, each pixel represents a cell
17722 which can be in one of two possible states, alive or dead. Every cell
17723 interacts with its eight neighbours, which are the cells that are
17724 horizontally, vertically, or diagonally adjacent.
17725
17726 At each interaction the grid evolves according to the adopted rule,
17727 which specifies the number of neighbor alive cells which will make a
17728 cell stay alive or born. The @option{rule} option allows one to specify
17729 the rule to adopt.
17730
17731 This source accepts the following options:
17732
17733 @table @option
17734 @item filename, f
17735 Set the file from which to read the initial grid state. In the file,
17736 each non-whitespace character is considered an alive cell, and newline
17737 is used to delimit the end of each row.
17738
17739 If this option is not specified, the initial grid is generated
17740 randomly.
17741
17742 @item rate, r
17743 Set the video rate, that is the number of frames generated per second.
17744 Default is 25.
17745
17746 @item random_fill_ratio, ratio
17747 Set the random fill ratio for the initial random grid. It is a
17748 floating point number value ranging from 0 to 1, defaults to 1/PHI.
17749 It is ignored when a file is specified.
17750
17751 @item random_seed, seed
17752 Set the seed for filling the initial random grid, must be an integer
17753 included between 0 and UINT32_MAX. If not specified, or if explicitly
17754 set to -1, the filter will try to use a good random seed on a best
17755 effort basis.
17756
17757 @item rule
17758 Set the life rule.
17759
17760 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
17761 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
17762 @var{NS} specifies the number of alive neighbor cells which make a
17763 live cell stay alive, and @var{NB} the number of alive neighbor cells
17764 which make a dead cell to become alive (i.e. to "born").
17765 "s" and "b" can be used in place of "S" and "B", respectively.
17766
17767 Alternatively a rule can be specified by an 18-bits integer. The 9
17768 high order bits are used to encode the next cell state if it is alive
17769 for each number of neighbor alive cells, the low order bits specify
17770 the rule for "borning" new cells. Higher order bits encode for an
17771 higher number of neighbor cells.
17772 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
17773 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
17774
17775 Default value is "S23/B3", which is the original Conway's game of life
17776 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
17777 cells, and will born a new cell if there are three alive cells around
17778 a dead cell.
17779
17780 @item size, s
17781 Set the size of the output video. For the syntax of this option, check the
17782 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17783
17784 If @option{filename} is specified, the size is set by default to the
17785 same size of the input file. If @option{size} is set, it must contain
17786 the size specified in the input file, and the initial grid defined in
17787 that file is centered in the larger resulting area.
17788
17789 If a filename is not specified, the size value defaults to "320x240"
17790 (used for a randomly generated initial grid).
17791
17792 @item stitch
17793 If set to 1, stitch the left and right grid edges together, and the
17794 top and bottom edges also. Defaults to 1.
17795
17796 @item mold
17797 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
17798 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
17799 value from 0 to 255.
17800
17801 @item life_color
17802 Set the color of living (or new born) cells.
17803
17804 @item death_color
17805 Set the color of dead cells. If @option{mold} is set, this is the first color
17806 used to represent a dead cell.
17807
17808 @item mold_color
17809 Set mold color, for definitely dead and moldy cells.
17810
17811 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
17812 ffmpeg-utils manual,ffmpeg-utils}.
17813 @end table
17814
17815 @subsection Examples
17816
17817 @itemize
17818 @item
17819 Read a grid from @file{pattern}, and center it on a grid of size
17820 300x300 pixels:
17821 @example
17822 life=f=pattern:s=300x300
17823 @end example
17824
17825 @item
17826 Generate a random grid of size 200x200, with a fill ratio of 2/3:
17827 @example
17828 life=ratio=2/3:s=200x200
17829 @end example
17830
17831 @item
17832 Specify a custom rule for evolving a randomly generated grid:
17833 @example
17834 life=rule=S14/B34
17835 @end example
17836
17837 @item
17838 Full example with slow death effect (mold) using @command{ffplay}:
17839 @example
17840 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
17841 @end example
17842 @end itemize
17843
17844 @anchor{allrgb}
17845 @anchor{allyuv}
17846 @anchor{color}
17847 @anchor{haldclutsrc}
17848 @anchor{nullsrc}
17849 @anchor{pal75bars}
17850 @anchor{pal100bars}
17851 @anchor{rgbtestsrc}
17852 @anchor{smptebars}
17853 @anchor{smptehdbars}
17854 @anchor{testsrc}
17855 @anchor{testsrc2}
17856 @anchor{yuvtestsrc}
17857 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
17858
17859 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
17860
17861 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
17862
17863 The @code{color} source provides an uniformly colored input.
17864
17865 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
17866 @ref{haldclut} filter.
17867
17868 The @code{nullsrc} source returns unprocessed video frames. It is
17869 mainly useful to be employed in analysis / debugging tools, or as the
17870 source for filters which ignore the input data.
17871
17872 The @code{pal75bars} source generates a color bars pattern, based on
17873 EBU PAL recommendations with 75% color levels.
17874
17875 The @code{pal100bars} source generates a color bars pattern, based on
17876 EBU PAL recommendations with 100% color levels.
17877
17878 The @code{rgbtestsrc} source generates an RGB test pattern useful for
17879 detecting RGB vs BGR issues. You should see a red, green and blue
17880 stripe from top to bottom.
17881
17882 The @code{smptebars} source generates a color bars pattern, based on
17883 the SMPTE Engineering Guideline EG 1-1990.
17884
17885 The @code{smptehdbars} source generates a color bars pattern, based on
17886 the SMPTE RP 219-2002.
17887
17888 The @code{testsrc} source generates a test video pattern, showing a
17889 color pattern, a scrolling gradient and a timestamp. This is mainly
17890 intended for testing purposes.
17891
17892 The @code{testsrc2} source is similar to testsrc, but supports more
17893 pixel formats instead of just @code{rgb24}. This allows using it as an
17894 input for other tests without requiring a format conversion.
17895
17896 The @code{yuvtestsrc} source generates an YUV test pattern. You should
17897 see a y, cb and cr stripe from top to bottom.
17898
17899 The sources accept the following parameters:
17900
17901 @table @option
17902
17903 @item level
17904 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
17905 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
17906 pixels to be used as identity matrix for 3D lookup tables. Each component is
17907 coded on a @code{1/(N*N)} scale.
17908
17909 @item color, c
17910 Specify the color of the source, only available in the @code{color}
17911 source. For the syntax of this option, check the
17912 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17913
17914 @item size, s
17915 Specify the size of the sourced video. For the syntax of this option, check the
17916 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17917 The default value is @code{320x240}.
17918
17919 This option is not available with the @code{allrgb}, @code{allyuv}, and
17920 @code{haldclutsrc} filters.
17921
17922 @item rate, r
17923 Specify the frame rate of the sourced video, as the number of frames
17924 generated per second. It has to be a string in the format
17925 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
17926 number or a valid video frame rate abbreviation. The default value is
17927 "25".
17928
17929 @item duration, d
17930 Set the duration of the sourced video. See
17931 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17932 for the accepted syntax.
17933
17934 If not specified, or the expressed duration is negative, the video is
17935 supposed to be generated forever.
17936
17937 @item sar
17938 Set the sample aspect ratio of the sourced video.
17939
17940 @item alpha
17941 Specify the alpha (opacity) of the background, only available in the
17942 @code{testsrc2} source. The value must be between 0 (fully transparent) and
17943 255 (fully opaque, the default).
17944
17945 @item decimals, n
17946 Set the number of decimals to show in the timestamp, only available in the
17947 @code{testsrc} source.
17948
17949 The displayed timestamp value will correspond to the original
17950 timestamp value multiplied by the power of 10 of the specified
17951 value. Default value is 0.
17952 @end table
17953
17954 @subsection Examples
17955
17956 @itemize
17957 @item
17958 Generate a video with a duration of 5.3 seconds, with size
17959 176x144 and a frame rate of 10 frames per second:
17960 @example
17961 testsrc=duration=5.3:size=qcif:rate=10
17962 @end example
17963
17964 @item
17965 The following graph description will generate a red source
17966 with an opacity of 0.2, with size "qcif" and a frame rate of 10
17967 frames per second:
17968 @example
17969 color=c=red@@0.2:s=qcif:r=10
17970 @end example
17971
17972 @item
17973 If the input content is to be ignored, @code{nullsrc} can be used. The
17974 following command generates noise in the luminance plane by employing
17975 the @code{geq} filter:
17976 @example
17977 nullsrc=s=256x256, geq=random(1)*255:128:128
17978 @end example
17979 @end itemize
17980
17981 @subsection Commands
17982
17983 The @code{color} source supports the following commands:
17984
17985 @table @option
17986 @item c, color
17987 Set the color of the created image. Accepts the same syntax of the
17988 corresponding @option{color} option.
17989 @end table
17990
17991 @section openclsrc
17992
17993 Generate video using an OpenCL program.
17994
17995 @table @option
17996
17997 @item source
17998 OpenCL program source file.
17999
18000 @item kernel
18001 Kernel name in program.
18002
18003 @item size, s
18004 Size of frames to generate.  This must be set.
18005
18006 @item format
18007 Pixel format to use for the generated frames.  This must be set.
18008
18009 @item rate, r
18010 Number of frames generated every second.  Default value is '25'.
18011
18012 @end table
18013
18014 For details of how the program loading works, see the @ref{program_opencl}
18015 filter.
18016
18017 Example programs:
18018
18019 @itemize
18020 @item
18021 Generate a colour ramp by setting pixel values from the position of the pixel
18022 in the output image.  (Note that this will work with all pixel formats, but
18023 the generated output will not be the same.)
18024 @verbatim
18025 __kernel void ramp(__write_only image2d_t dst,
18026                    unsigned int index)
18027 {
18028     int2 loc = (int2)(get_global_id(0), get_global_id(1));
18029
18030     float4 val;
18031     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
18032
18033     write_imagef(dst, loc, val);
18034 }
18035 @end verbatim
18036
18037 @item
18038 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
18039 @verbatim
18040 __kernel void sierpinski_carpet(__write_only image2d_t dst,
18041                                 unsigned int index)
18042 {
18043     int2 loc = (int2)(get_global_id(0), get_global_id(1));
18044
18045     float4 value = 0.0f;
18046     int x = loc.x + index;
18047     int y = loc.y + index;
18048     while (x > 0 || y > 0) {
18049         if (x % 3 == 1 && y % 3 == 1) {
18050             value = 1.0f;
18051             break;
18052         }
18053         x /= 3;
18054         y /= 3;
18055     }
18056
18057     write_imagef(dst, loc, value);
18058 }
18059 @end verbatim
18060
18061 @end itemize
18062
18063 @c man end VIDEO SOURCES
18064
18065 @chapter Video Sinks
18066 @c man begin VIDEO SINKS
18067
18068 Below is a description of the currently available video sinks.
18069
18070 @section buffersink
18071
18072 Buffer video frames, and make them available to the end of the filter
18073 graph.
18074
18075 This sink is mainly intended for programmatic use, in particular
18076 through the interface defined in @file{libavfilter/buffersink.h}
18077 or the options system.
18078
18079 It accepts a pointer to an AVBufferSinkContext structure, which
18080 defines the incoming buffers' formats, to be passed as the opaque
18081 parameter to @code{avfilter_init_filter} for initialization.
18082
18083 @section nullsink
18084
18085 Null video sink: do absolutely nothing with the input video. It is
18086 mainly useful as a template and for use in analysis / debugging
18087 tools.
18088
18089 @c man end VIDEO SINKS
18090
18091 @chapter Multimedia Filters
18092 @c man begin MULTIMEDIA FILTERS
18093
18094 Below is a description of the currently available multimedia filters.
18095
18096 @section abitscope
18097
18098 Convert input audio to a video output, displaying the audio bit scope.
18099
18100 The filter accepts the following options:
18101
18102 @table @option
18103 @item rate, r
18104 Set frame rate, expressed as number of frames per second. Default
18105 value is "25".
18106
18107 @item size, s
18108 Specify the video size for the output. For the syntax of this option, check the
18109 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18110 Default value is @code{1024x256}.
18111
18112 @item colors
18113 Specify list of colors separated by space or by '|' which will be used to
18114 draw channels. Unrecognized or missing colors will be replaced
18115 by white color.
18116 @end table
18117
18118 @section ahistogram
18119
18120 Convert input audio to a video output, displaying the volume histogram.
18121
18122 The filter accepts the following options:
18123
18124 @table @option
18125 @item dmode
18126 Specify how histogram is calculated.
18127
18128 It accepts the following values:
18129 @table @samp
18130 @item single
18131 Use single histogram for all channels.
18132 @item separate
18133 Use separate histogram for each channel.
18134 @end table
18135 Default is @code{single}.
18136
18137 @item rate, r
18138 Set frame rate, expressed as number of frames per second. Default
18139 value is "25".
18140
18141 @item size, s
18142 Specify the video size for the output. For the syntax of this option, check the
18143 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18144 Default value is @code{hd720}.
18145
18146 @item scale
18147 Set display scale.
18148
18149 It accepts the following values:
18150 @table @samp
18151 @item log
18152 logarithmic
18153 @item sqrt
18154 square root
18155 @item cbrt
18156 cubic root
18157 @item lin
18158 linear
18159 @item rlog
18160 reverse logarithmic
18161 @end table
18162 Default is @code{log}.
18163
18164 @item ascale
18165 Set amplitude scale.
18166
18167 It accepts the following values:
18168 @table @samp
18169 @item log
18170 logarithmic
18171 @item lin
18172 linear
18173 @end table
18174 Default is @code{log}.
18175
18176 @item acount
18177 Set how much frames to accumulate in histogram.
18178 Defauls is 1. Setting this to -1 accumulates all frames.
18179
18180 @item rheight
18181 Set histogram ratio of window height.
18182
18183 @item slide
18184 Set sonogram sliding.
18185
18186 It accepts the following values:
18187 @table @samp
18188 @item replace
18189 replace old rows with new ones.
18190 @item scroll
18191 scroll from top to bottom.
18192 @end table
18193 Default is @code{replace}.
18194 @end table
18195
18196 @section aphasemeter
18197
18198 Convert input audio to a video output, displaying the audio phase.
18199
18200 The filter accepts the following options:
18201
18202 @table @option
18203 @item rate, r
18204 Set the output frame rate. Default value is @code{25}.
18205
18206 @item size, s
18207 Set the video size for the output. For the syntax of this option, check the
18208 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18209 Default value is @code{800x400}.
18210
18211 @item rc
18212 @item gc
18213 @item bc
18214 Specify the red, green, blue contrast. Default values are @code{2},
18215 @code{7} and @code{1}.
18216 Allowed range is @code{[0, 255]}.
18217
18218 @item mpc
18219 Set color which will be used for drawing median phase. If color is
18220 @code{none} which is default, no median phase value will be drawn.
18221
18222 @item video
18223 Enable video output. Default is enabled.
18224 @end table
18225
18226 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
18227 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
18228 The @code{-1} means left and right channels are completely out of phase and
18229 @code{1} means channels are in phase.
18230
18231 @section avectorscope
18232
18233 Convert input audio to a video output, representing the audio vector
18234 scope.
18235
18236 The filter is used to measure the difference between channels of stereo
18237 audio stream. A monoaural signal, consisting of identical left and right
18238 signal, results in straight vertical line. Any stereo separation is visible
18239 as a deviation from this line, creating a Lissajous figure.
18240 If the straight (or deviation from it) but horizontal line appears this
18241 indicates that the left and right channels are out of phase.
18242
18243 The filter accepts the following options:
18244
18245 @table @option
18246 @item mode, m
18247 Set the vectorscope mode.
18248
18249 Available values are:
18250 @table @samp
18251 @item lissajous
18252 Lissajous rotated by 45 degrees.
18253
18254 @item lissajous_xy
18255 Same as above but not rotated.
18256
18257 @item polar
18258 Shape resembling half of circle.
18259 @end table
18260
18261 Default value is @samp{lissajous}.
18262
18263 @item size, s
18264 Set the video size for the output. For the syntax of this option, check the
18265 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18266 Default value is @code{400x400}.
18267
18268 @item rate, r
18269 Set the output frame rate. Default value is @code{25}.
18270
18271 @item rc
18272 @item gc
18273 @item bc
18274 @item ac
18275 Specify the red, green, blue and alpha contrast. Default values are @code{40},
18276 @code{160}, @code{80} and @code{255}.
18277 Allowed range is @code{[0, 255]}.
18278
18279 @item rf
18280 @item gf
18281 @item bf
18282 @item af
18283 Specify the red, green, blue and alpha fade. Default values are @code{15},
18284 @code{10}, @code{5} and @code{5}.
18285 Allowed range is @code{[0, 255]}.
18286
18287 @item zoom
18288 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
18289 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
18290
18291 @item draw
18292 Set the vectorscope drawing mode.
18293
18294 Available values are:
18295 @table @samp
18296 @item dot
18297 Draw dot for each sample.
18298
18299 @item line
18300 Draw line between previous and current sample.
18301 @end table
18302
18303 Default value is @samp{dot}.
18304
18305 @item scale
18306 Specify amplitude scale of audio samples.
18307
18308 Available values are:
18309 @table @samp
18310 @item lin
18311 Linear.
18312
18313 @item sqrt
18314 Square root.
18315
18316 @item cbrt
18317 Cubic root.
18318
18319 @item log
18320 Logarithmic.
18321 @end table
18322
18323 @item swap
18324 Swap left channel axis with right channel axis.
18325
18326 @item mirror
18327 Mirror axis.
18328
18329 @table @samp
18330 @item none
18331 No mirror.
18332
18333 @item x
18334 Mirror only x axis.
18335
18336 @item y
18337 Mirror only y axis.
18338
18339 @item xy
18340 Mirror both axis.
18341 @end table
18342
18343 @end table
18344
18345 @subsection Examples
18346
18347 @itemize
18348 @item
18349 Complete example using @command{ffplay}:
18350 @example
18351 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
18352              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
18353 @end example
18354 @end itemize
18355
18356 @section bench, abench
18357
18358 Benchmark part of a filtergraph.
18359
18360 The filter accepts the following options:
18361
18362 @table @option
18363 @item action
18364 Start or stop a timer.
18365
18366 Available values are:
18367 @table @samp
18368 @item start
18369 Get the current time, set it as frame metadata (using the key
18370 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
18371
18372 @item stop
18373 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
18374 the input frame metadata to get the time difference. Time difference, average,
18375 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
18376 @code{min}) are then printed. The timestamps are expressed in seconds.
18377 @end table
18378 @end table
18379
18380 @subsection Examples
18381
18382 @itemize
18383 @item
18384 Benchmark @ref{selectivecolor} filter:
18385 @example
18386 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
18387 @end example
18388 @end itemize
18389
18390 @section concat
18391
18392 Concatenate audio and video streams, joining them together one after the
18393 other.
18394
18395 The filter works on segments of synchronized video and audio streams. All
18396 segments must have the same number of streams of each type, and that will
18397 also be the number of streams at output.
18398
18399 The filter accepts the following options:
18400
18401 @table @option
18402
18403 @item n
18404 Set the number of segments. Default is 2.
18405
18406 @item v
18407 Set the number of output video streams, that is also the number of video
18408 streams in each segment. Default is 1.
18409
18410 @item a
18411 Set the number of output audio streams, that is also the number of audio
18412 streams in each segment. Default is 0.
18413
18414 @item unsafe
18415 Activate unsafe mode: do not fail if segments have a different format.
18416
18417 @end table
18418
18419 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
18420 @var{a} audio outputs.
18421
18422 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
18423 segment, in the same order as the outputs, then the inputs for the second
18424 segment, etc.
18425
18426 Related streams do not always have exactly the same duration, for various
18427 reasons including codec frame size or sloppy authoring. For that reason,
18428 related synchronized streams (e.g. a video and its audio track) should be
18429 concatenated at once. The concat filter will use the duration of the longest
18430 stream in each segment (except the last one), and if necessary pad shorter
18431 audio streams with silence.
18432
18433 For this filter to work correctly, all segments must start at timestamp 0.
18434
18435 All corresponding streams must have the same parameters in all segments; the
18436 filtering system will automatically select a common pixel format for video
18437 streams, and a common sample format, sample rate and channel layout for
18438 audio streams, but other settings, such as resolution, must be converted
18439 explicitly by the user.
18440
18441 Different frame rates are acceptable but will result in variable frame rate
18442 at output; be sure to configure the output file to handle it.
18443
18444 @subsection Examples
18445
18446 @itemize
18447 @item
18448 Concatenate an opening, an episode and an ending, all in bilingual version
18449 (video in stream 0, audio in streams 1 and 2):
18450 @example
18451 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
18452   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
18453    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
18454   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
18455 @end example
18456
18457 @item
18458 Concatenate two parts, handling audio and video separately, using the
18459 (a)movie sources, and adjusting the resolution:
18460 @example
18461 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
18462 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
18463 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
18464 @end example
18465 Note that a desync will happen at the stitch if the audio and video streams
18466 do not have exactly the same duration in the first file.
18467
18468 @end itemize
18469
18470 @subsection Commands
18471
18472 This filter supports the following commands:
18473 @table @option
18474 @item next
18475 Close the current segment and step to the next one
18476 @end table
18477
18478 @section drawgraph, adrawgraph
18479
18480 Draw a graph using input video or audio metadata.
18481
18482 It accepts the following parameters:
18483
18484 @table @option
18485 @item m1
18486 Set 1st frame metadata key from which metadata values will be used to draw a graph.
18487
18488 @item fg1
18489 Set 1st foreground color expression.
18490
18491 @item m2
18492 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
18493
18494 @item fg2
18495 Set 2nd foreground color expression.
18496
18497 @item m3
18498 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
18499
18500 @item fg3
18501 Set 3rd foreground color expression.
18502
18503 @item m4
18504 Set 4th frame metadata key from which metadata values will be used to draw a graph.
18505
18506 @item fg4
18507 Set 4th foreground color expression.
18508
18509 @item min
18510 Set minimal value of metadata value.
18511
18512 @item max
18513 Set maximal value of metadata value.
18514
18515 @item bg
18516 Set graph background color. Default is white.
18517
18518 @item mode
18519 Set graph mode.
18520
18521 Available values for mode is:
18522 @table @samp
18523 @item bar
18524 @item dot
18525 @item line
18526 @end table
18527
18528 Default is @code{line}.
18529
18530 @item slide
18531 Set slide mode.
18532
18533 Available values for slide is:
18534 @table @samp
18535 @item frame
18536 Draw new frame when right border is reached.
18537
18538 @item replace
18539 Replace old columns with new ones.
18540
18541 @item scroll
18542 Scroll from right to left.
18543
18544 @item rscroll
18545 Scroll from left to right.
18546
18547 @item picture
18548 Draw single picture.
18549 @end table
18550
18551 Default is @code{frame}.
18552
18553 @item size
18554 Set size of graph video. For the syntax of this option, check the
18555 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18556 The default value is @code{900x256}.
18557
18558 The foreground color expressions can use the following variables:
18559 @table @option
18560 @item MIN
18561 Minimal value of metadata value.
18562
18563 @item MAX
18564 Maximal value of metadata value.
18565
18566 @item VAL
18567 Current metadata key value.
18568 @end table
18569
18570 The color is defined as 0xAABBGGRR.
18571 @end table
18572
18573 Example using metadata from @ref{signalstats} filter:
18574 @example
18575 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
18576 @end example
18577
18578 Example using metadata from @ref{ebur128} filter:
18579 @example
18580 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
18581 @end example
18582
18583 @anchor{ebur128}
18584 @section ebur128
18585
18586 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
18587 it unchanged. By default, it logs a message at a frequency of 10Hz with the
18588 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
18589 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
18590
18591 The filter also has a video output (see the @var{video} option) with a real
18592 time graph to observe the loudness evolution. The graphic contains the logged
18593 message mentioned above, so it is not printed anymore when this option is set,
18594 unless the verbose logging is set. The main graphing area contains the
18595 short-term loudness (3 seconds of analysis), and the gauge on the right is for
18596 the momentary loudness (400 milliseconds).
18597
18598 More information about the Loudness Recommendation EBU R128 on
18599 @url{http://tech.ebu.ch/loudness}.
18600
18601 The filter accepts the following options:
18602
18603 @table @option
18604
18605 @item video
18606 Activate the video output. The audio stream is passed unchanged whether this
18607 option is set or no. The video stream will be the first output stream if
18608 activated. Default is @code{0}.
18609
18610 @item size
18611 Set the video size. This option is for video only. For the syntax of this
18612 option, check the
18613 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18614 Default and minimum resolution is @code{640x480}.
18615
18616 @item meter
18617 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
18618 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
18619 other integer value between this range is allowed.
18620
18621 @item metadata
18622 Set metadata injection. If set to @code{1}, the audio input will be segmented
18623 into 100ms output frames, each of them containing various loudness information
18624 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
18625
18626 Default is @code{0}.
18627
18628 @item framelog
18629 Force the frame logging level.
18630
18631 Available values are:
18632 @table @samp
18633 @item info
18634 information logging level
18635 @item verbose
18636 verbose logging level
18637 @end table
18638
18639 By default, the logging level is set to @var{info}. If the @option{video} or
18640 the @option{metadata} options are set, it switches to @var{verbose}.
18641
18642 @item peak
18643 Set peak mode(s).
18644
18645 Available modes can be cumulated (the option is a @code{flag} type). Possible
18646 values are:
18647 @table @samp
18648 @item none
18649 Disable any peak mode (default).
18650 @item sample
18651 Enable sample-peak mode.
18652
18653 Simple peak mode looking for the higher sample value. It logs a message
18654 for sample-peak (identified by @code{SPK}).
18655 @item true
18656 Enable true-peak mode.
18657
18658 If enabled, the peak lookup is done on an over-sampled version of the input
18659 stream for better peak accuracy. It logs a message for true-peak.
18660 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
18661 This mode requires a build with @code{libswresample}.
18662 @end table
18663
18664 @item dualmono
18665 Treat mono input files as "dual mono". If a mono file is intended for playback
18666 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
18667 If set to @code{true}, this option will compensate for this effect.
18668 Multi-channel input files are not affected by this option.
18669
18670 @item panlaw
18671 Set a specific pan law to be used for the measurement of dual mono files.
18672 This parameter is optional, and has a default value of -3.01dB.
18673 @end table
18674
18675 @subsection Examples
18676
18677 @itemize
18678 @item
18679 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
18680 @example
18681 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
18682 @end example
18683
18684 @item
18685 Run an analysis with @command{ffmpeg}:
18686 @example
18687 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
18688 @end example
18689 @end itemize
18690
18691 @section interleave, ainterleave
18692
18693 Temporally interleave frames from several inputs.
18694
18695 @code{interleave} works with video inputs, @code{ainterleave} with audio.
18696
18697 These filters read frames from several inputs and send the oldest
18698 queued frame to the output.
18699
18700 Input streams must have well defined, monotonically increasing frame
18701 timestamp values.
18702
18703 In order to submit one frame to output, these filters need to enqueue
18704 at least one frame for each input, so they cannot work in case one
18705 input is not yet terminated and will not receive incoming frames.
18706
18707 For example consider the case when one input is a @code{select} filter
18708 which always drops input frames. The @code{interleave} filter will keep
18709 reading from that input, but it will never be able to send new frames
18710 to output until the input sends an end-of-stream signal.
18711
18712 Also, depending on inputs synchronization, the filters will drop
18713 frames in case one input receives more frames than the other ones, and
18714 the queue is already filled.
18715
18716 These filters accept the following options:
18717
18718 @table @option
18719 @item nb_inputs, n
18720 Set the number of different inputs, it is 2 by default.
18721 @end table
18722
18723 @subsection Examples
18724
18725 @itemize
18726 @item
18727 Interleave frames belonging to different streams using @command{ffmpeg}:
18728 @example
18729 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
18730 @end example
18731
18732 @item
18733 Add flickering blur effect:
18734 @example
18735 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
18736 @end example
18737 @end itemize
18738
18739 @section metadata, ametadata
18740
18741 Manipulate frame metadata.
18742
18743 This filter accepts the following options:
18744
18745 @table @option
18746 @item mode
18747 Set mode of operation of the filter.
18748
18749 Can be one of the following:
18750
18751 @table @samp
18752 @item select
18753 If both @code{value} and @code{key} is set, select frames
18754 which have such metadata. If only @code{key} is set, select
18755 every frame that has such key in metadata.
18756
18757 @item add
18758 Add new metadata @code{key} and @code{value}. If key is already available
18759 do nothing.
18760
18761 @item modify
18762 Modify value of already present key.
18763
18764 @item delete
18765 If @code{value} is set, delete only keys that have such value.
18766 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
18767 the frame.
18768
18769 @item print
18770 Print key and its value if metadata was found. If @code{key} is not set print all
18771 metadata values available in frame.
18772 @end table
18773
18774 @item key
18775 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
18776
18777 @item value
18778 Set metadata value which will be used. This option is mandatory for
18779 @code{modify} and @code{add} mode.
18780
18781 @item function
18782 Which function to use when comparing metadata value and @code{value}.
18783
18784 Can be one of following:
18785
18786 @table @samp
18787 @item same_str
18788 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
18789
18790 @item starts_with
18791 Values are interpreted as strings, returns true if metadata value starts with
18792 the @code{value} option string.
18793
18794 @item less
18795 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
18796
18797 @item equal
18798 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
18799
18800 @item greater
18801 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
18802
18803 @item expr
18804 Values are interpreted as floats, returns true if expression from option @code{expr}
18805 evaluates to true.
18806 @end table
18807
18808 @item expr
18809 Set expression which is used when @code{function} is set to @code{expr}.
18810 The expression is evaluated through the eval API and can contain the following
18811 constants:
18812
18813 @table @option
18814 @item VALUE1
18815 Float representation of @code{value} from metadata key.
18816
18817 @item VALUE2
18818 Float representation of @code{value} as supplied by user in @code{value} option.
18819 @end table
18820
18821 @item file
18822 If specified in @code{print} mode, output is written to the named file. Instead of
18823 plain filename any writable url can be specified. Filename ``-'' is a shorthand
18824 for standard output. If @code{file} option is not set, output is written to the log
18825 with AV_LOG_INFO loglevel.
18826
18827 @end table
18828
18829 @subsection Examples
18830
18831 @itemize
18832 @item
18833 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
18834 between 0 and 1.
18835 @example
18836 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
18837 @end example
18838 @item
18839 Print silencedetect output to file @file{metadata.txt}.
18840 @example
18841 silencedetect,ametadata=mode=print:file=metadata.txt
18842 @end example
18843 @item
18844 Direct all metadata to a pipe with file descriptor 4.
18845 @example
18846 metadata=mode=print:file='pipe\:4'
18847 @end example
18848 @end itemize
18849
18850 @section perms, aperms
18851
18852 Set read/write permissions for the output frames.
18853
18854 These filters are mainly aimed at developers to test direct path in the
18855 following filter in the filtergraph.
18856
18857 The filters accept the following options:
18858
18859 @table @option
18860 @item mode
18861 Select the permissions mode.
18862
18863 It accepts the following values:
18864 @table @samp
18865 @item none
18866 Do nothing. This is the default.
18867 @item ro
18868 Set all the output frames read-only.
18869 @item rw
18870 Set all the output frames directly writable.
18871 @item toggle
18872 Make the frame read-only if writable, and writable if read-only.
18873 @item random
18874 Set each output frame read-only or writable randomly.
18875 @end table
18876
18877 @item seed
18878 Set the seed for the @var{random} mode, must be an integer included between
18879 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
18880 @code{-1}, the filter will try to use a good random seed on a best effort
18881 basis.
18882 @end table
18883
18884 Note: in case of auto-inserted filter between the permission filter and the
18885 following one, the permission might not be received as expected in that
18886 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
18887 perms/aperms filter can avoid this problem.
18888
18889 @section realtime, arealtime
18890
18891 Slow down filtering to match real time approximately.
18892
18893 These filters will pause the filtering for a variable amount of time to
18894 match the output rate with the input timestamps.
18895 They are similar to the @option{re} option to @code{ffmpeg}.
18896
18897 They accept the following options:
18898
18899 @table @option
18900 @item limit
18901 Time limit for the pauses. Any pause longer than that will be considered
18902 a timestamp discontinuity and reset the timer. Default is 2 seconds.
18903 @end table
18904
18905 @anchor{select}
18906 @section select, aselect
18907
18908 Select frames to pass in output.
18909
18910 This filter accepts the following options:
18911
18912 @table @option
18913
18914 @item expr, e
18915 Set expression, which is evaluated for each input frame.
18916
18917 If the expression is evaluated to zero, the frame is discarded.
18918
18919 If the evaluation result is negative or NaN, the frame is sent to the
18920 first output; otherwise it is sent to the output with index
18921 @code{ceil(val)-1}, assuming that the input index starts from 0.
18922
18923 For example a value of @code{1.2} corresponds to the output with index
18924 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
18925
18926 @item outputs, n
18927 Set the number of outputs. The output to which to send the selected
18928 frame is based on the result of the evaluation. Default value is 1.
18929 @end table
18930
18931 The expression can contain the following constants:
18932
18933 @table @option
18934 @item n
18935 The (sequential) number of the filtered frame, starting from 0.
18936
18937 @item selected_n
18938 The (sequential) number of the selected frame, starting from 0.
18939
18940 @item prev_selected_n
18941 The sequential number of the last selected frame. It's NAN if undefined.
18942
18943 @item TB
18944 The timebase of the input timestamps.
18945
18946 @item pts
18947 The PTS (Presentation TimeStamp) of the filtered video frame,
18948 expressed in @var{TB} units. It's NAN if undefined.
18949
18950 @item t
18951 The PTS of the filtered video frame,
18952 expressed in seconds. It's NAN if undefined.
18953
18954 @item prev_pts
18955 The PTS of the previously filtered video frame. It's NAN if undefined.
18956
18957 @item prev_selected_pts
18958 The PTS of the last previously filtered video frame. It's NAN if undefined.
18959
18960 @item prev_selected_t
18961 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
18962
18963 @item start_pts
18964 The PTS of the first video frame in the video. It's NAN if undefined.
18965
18966 @item start_t
18967 The time of the first video frame in the video. It's NAN if undefined.
18968
18969 @item pict_type @emph{(video only)}
18970 The type of the filtered frame. It can assume one of the following
18971 values:
18972 @table @option
18973 @item I
18974 @item P
18975 @item B
18976 @item S
18977 @item SI
18978 @item SP
18979 @item BI
18980 @end table
18981
18982 @item interlace_type @emph{(video only)}
18983 The frame interlace type. It can assume one of the following values:
18984 @table @option
18985 @item PROGRESSIVE
18986 The frame is progressive (not interlaced).
18987 @item TOPFIRST
18988 The frame is top-field-first.
18989 @item BOTTOMFIRST
18990 The frame is bottom-field-first.
18991 @end table
18992
18993 @item consumed_sample_n @emph{(audio only)}
18994 the number of selected samples before the current frame
18995
18996 @item samples_n @emph{(audio only)}
18997 the number of samples in the current frame
18998
18999 @item sample_rate @emph{(audio only)}
19000 the input sample rate
19001
19002 @item key
19003 This is 1 if the filtered frame is a key-frame, 0 otherwise.
19004
19005 @item pos
19006 the position in the file of the filtered frame, -1 if the information
19007 is not available (e.g. for synthetic video)
19008
19009 @item scene @emph{(video only)}
19010 value between 0 and 1 to indicate a new scene; a low value reflects a low
19011 probability for the current frame to introduce a new scene, while a higher
19012 value means the current frame is more likely to be one (see the example below)
19013
19014 @item concatdec_select
19015 The concat demuxer can select only part of a concat input file by setting an
19016 inpoint and an outpoint, but the output packets may not be entirely contained
19017 in the selected interval. By using this variable, it is possible to skip frames
19018 generated by the concat demuxer which are not exactly contained in the selected
19019 interval.
19020
19021 This works by comparing the frame pts against the @var{lavf.concat.start_time}
19022 and the @var{lavf.concat.duration} packet metadata values which are also
19023 present in the decoded frames.
19024
19025 The @var{concatdec_select} variable is -1 if the frame pts is at least
19026 start_time and either the duration metadata is missing or the frame pts is less
19027 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
19028 missing.
19029
19030 That basically means that an input frame is selected if its pts is within the
19031 interval set by the concat demuxer.
19032
19033 @end table
19034
19035 The default value of the select expression is "1".
19036
19037 @subsection Examples
19038
19039 @itemize
19040 @item
19041 Select all frames in input:
19042 @example
19043 select
19044 @end example
19045
19046 The example above is the same as:
19047 @example
19048 select=1
19049 @end example
19050
19051 @item
19052 Skip all frames:
19053 @example
19054 select=0
19055 @end example
19056
19057 @item
19058 Select only I-frames:
19059 @example
19060 select='eq(pict_type\,I)'
19061 @end example
19062
19063 @item
19064 Select one frame every 100:
19065 @example
19066 select='not(mod(n\,100))'
19067 @end example
19068
19069 @item
19070 Select only frames contained in the 10-20 time interval:
19071 @example
19072 select=between(t\,10\,20)
19073 @end example
19074
19075 @item
19076 Select only I-frames contained in the 10-20 time interval:
19077 @example
19078 select=between(t\,10\,20)*eq(pict_type\,I)
19079 @end example
19080
19081 @item
19082 Select frames with a minimum distance of 10 seconds:
19083 @example
19084 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
19085 @end example
19086
19087 @item
19088 Use aselect to select only audio frames with samples number > 100:
19089 @example
19090 aselect='gt(samples_n\,100)'
19091 @end example
19092
19093 @item
19094 Create a mosaic of the first scenes:
19095 @example
19096 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
19097 @end example
19098
19099 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
19100 choice.
19101
19102 @item
19103 Send even and odd frames to separate outputs, and compose them:
19104 @example
19105 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
19106 @end example
19107
19108 @item
19109 Select useful frames from an ffconcat file which is using inpoints and
19110 outpoints but where the source files are not intra frame only.
19111 @example
19112 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
19113 @end example
19114 @end itemize
19115
19116 @section sendcmd, asendcmd
19117
19118 Send commands to filters in the filtergraph.
19119
19120 These filters read commands to be sent to other filters in the
19121 filtergraph.
19122
19123 @code{sendcmd} must be inserted between two video filters,
19124 @code{asendcmd} must be inserted between two audio filters, but apart
19125 from that they act the same way.
19126
19127 The specification of commands can be provided in the filter arguments
19128 with the @var{commands} option, or in a file specified by the
19129 @var{filename} option.
19130
19131 These filters accept the following options:
19132 @table @option
19133 @item commands, c
19134 Set the commands to be read and sent to the other filters.
19135 @item filename, f
19136 Set the filename of the commands to be read and sent to the other
19137 filters.
19138 @end table
19139
19140 @subsection Commands syntax
19141
19142 A commands description consists of a sequence of interval
19143 specifications, comprising a list of commands to be executed when a
19144 particular event related to that interval occurs. The occurring event
19145 is typically the current frame time entering or leaving a given time
19146 interval.
19147
19148 An interval is specified by the following syntax:
19149 @example
19150 @var{START}[-@var{END}] @var{COMMANDS};
19151 @end example
19152
19153 The time interval is specified by the @var{START} and @var{END} times.
19154 @var{END} is optional and defaults to the maximum time.
19155
19156 The current frame time is considered within the specified interval if
19157 it is included in the interval [@var{START}, @var{END}), that is when
19158 the time is greater or equal to @var{START} and is lesser than
19159 @var{END}.
19160
19161 @var{COMMANDS} consists of a sequence of one or more command
19162 specifications, separated by ",", relating to that interval.  The
19163 syntax of a command specification is given by:
19164 @example
19165 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
19166 @end example
19167
19168 @var{FLAGS} is optional and specifies the type of events relating to
19169 the time interval which enable sending the specified command, and must
19170 be a non-null sequence of identifier flags separated by "+" or "|" and
19171 enclosed between "[" and "]".
19172
19173 The following flags are recognized:
19174 @table @option
19175 @item enter
19176 The command is sent when the current frame timestamp enters the
19177 specified interval. In other words, the command is sent when the
19178 previous frame timestamp was not in the given interval, and the
19179 current is.
19180
19181 @item leave
19182 The command is sent when the current frame timestamp leaves the
19183 specified interval. In other words, the command is sent when the
19184 previous frame timestamp was in the given interval, and the
19185 current is not.
19186 @end table
19187
19188 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
19189 assumed.
19190
19191 @var{TARGET} specifies the target of the command, usually the name of
19192 the filter class or a specific filter instance name.
19193
19194 @var{COMMAND} specifies the name of the command for the target filter.
19195
19196 @var{ARG} is optional and specifies the optional list of argument for
19197 the given @var{COMMAND}.
19198
19199 Between one interval specification and another, whitespaces, or
19200 sequences of characters starting with @code{#} until the end of line,
19201 are ignored and can be used to annotate comments.
19202
19203 A simplified BNF description of the commands specification syntax
19204 follows:
19205 @example
19206 @var{COMMAND_FLAG}  ::= "enter" | "leave"
19207 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
19208 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
19209 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
19210 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
19211 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
19212 @end example
19213
19214 @subsection Examples
19215
19216 @itemize
19217 @item
19218 Specify audio tempo change at second 4:
19219 @example
19220 asendcmd=c='4.0 atempo tempo 1.5',atempo
19221 @end example
19222
19223 @item
19224 Target a specific filter instance:
19225 @example
19226 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
19227 @end example
19228
19229 @item
19230 Specify a list of drawtext and hue commands in a file.
19231 @example
19232 # show text in the interval 5-10
19233 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
19234          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
19235
19236 # desaturate the image in the interval 15-20
19237 15.0-20.0 [enter] hue s 0,
19238           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
19239           [leave] hue s 1,
19240           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
19241
19242 # apply an exponential saturation fade-out effect, starting from time 25
19243 25 [enter] hue s exp(25-t)
19244 @end example
19245
19246 A filtergraph allowing to read and process the above command list
19247 stored in a file @file{test.cmd}, can be specified with:
19248 @example
19249 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
19250 @end example
19251 @end itemize
19252
19253 @anchor{setpts}
19254 @section setpts, asetpts
19255
19256 Change the PTS (presentation timestamp) of the input frames.
19257
19258 @code{setpts} works on video frames, @code{asetpts} on audio frames.
19259
19260 This filter accepts the following options:
19261
19262 @table @option
19263
19264 @item expr
19265 The expression which is evaluated for each frame to construct its timestamp.
19266
19267 @end table
19268
19269 The expression is evaluated through the eval API and can contain the following
19270 constants:
19271
19272 @table @option
19273 @item FRAME_RATE
19274 frame rate, only defined for constant frame-rate video
19275
19276 @item PTS
19277 The presentation timestamp in input
19278
19279 @item N
19280 The count of the input frame for video or the number of consumed samples,
19281 not including the current frame for audio, starting from 0.
19282
19283 @item NB_CONSUMED_SAMPLES
19284 The number of consumed samples, not including the current frame (only
19285 audio)
19286
19287 @item NB_SAMPLES, S
19288 The number of samples in the current frame (only audio)
19289
19290 @item SAMPLE_RATE, SR
19291 The audio sample rate.
19292
19293 @item STARTPTS
19294 The PTS of the first frame.
19295
19296 @item STARTT
19297 the time in seconds of the first frame
19298
19299 @item INTERLACED
19300 State whether the current frame is interlaced.
19301
19302 @item T
19303 the time in seconds of the current frame
19304
19305 @item POS
19306 original position in the file of the frame, or undefined if undefined
19307 for the current frame
19308
19309 @item PREV_INPTS
19310 The previous input PTS.
19311
19312 @item PREV_INT
19313 previous input time in seconds
19314
19315 @item PREV_OUTPTS
19316 The previous output PTS.
19317
19318 @item PREV_OUTT
19319 previous output time in seconds
19320
19321 @item RTCTIME
19322 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
19323 instead.
19324
19325 @item RTCSTART
19326 The wallclock (RTC) time at the start of the movie in microseconds.
19327
19328 @item TB
19329 The timebase of the input timestamps.
19330
19331 @end table
19332
19333 @subsection Examples
19334
19335 @itemize
19336 @item
19337 Start counting PTS from zero
19338 @example
19339 setpts=PTS-STARTPTS
19340 @end example
19341
19342 @item
19343 Apply fast motion effect:
19344 @example
19345 setpts=0.5*PTS
19346 @end example
19347
19348 @item
19349 Apply slow motion effect:
19350 @example
19351 setpts=2.0*PTS
19352 @end example
19353
19354 @item
19355 Set fixed rate of 25 frames per second:
19356 @example
19357 setpts=N/(25*TB)
19358 @end example
19359
19360 @item
19361 Set fixed rate 25 fps with some jitter:
19362 @example
19363 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
19364 @end example
19365
19366 @item
19367 Apply an offset of 10 seconds to the input PTS:
19368 @example
19369 setpts=PTS+10/TB
19370 @end example
19371
19372 @item
19373 Generate timestamps from a "live source" and rebase onto the current timebase:
19374 @example
19375 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
19376 @end example
19377
19378 @item
19379 Generate timestamps by counting samples:
19380 @example
19381 asetpts=N/SR/TB
19382 @end example
19383
19384 @end itemize
19385
19386 @section setrange
19387
19388 Force color range for the output video frame.
19389
19390 The @code{setrange} filter marks the color range property for the
19391 output frames. It does not change the input frame, but only sets the
19392 corresponding property, which affects how the frame is treated by
19393 following filters.
19394
19395 The filter accepts the following options:
19396
19397 @table @option
19398
19399 @item range
19400 Available values are:
19401
19402 @table @samp
19403 @item auto
19404 Keep the same color range property.
19405
19406 @item unspecified, unknown
19407 Set the color range as unspecified.
19408
19409 @item limited, tv, mpeg
19410 Set the color range as limited.
19411
19412 @item full, pc, jpeg
19413 Set the color range as full.
19414 @end table
19415 @end table
19416
19417 @section settb, asettb
19418
19419 Set the timebase to use for the output frames timestamps.
19420 It is mainly useful for testing timebase configuration.
19421
19422 It accepts the following parameters:
19423
19424 @table @option
19425
19426 @item expr, tb
19427 The expression which is evaluated into the output timebase.
19428
19429 @end table
19430
19431 The value for @option{tb} is an arithmetic expression representing a
19432 rational. The expression can contain the constants "AVTB" (the default
19433 timebase), "intb" (the input timebase) and "sr" (the sample rate,
19434 audio only). Default value is "intb".
19435
19436 @subsection Examples
19437
19438 @itemize
19439 @item
19440 Set the timebase to 1/25:
19441 @example
19442 settb=expr=1/25
19443 @end example
19444
19445 @item
19446 Set the timebase to 1/10:
19447 @example
19448 settb=expr=0.1
19449 @end example
19450
19451 @item
19452 Set the timebase to 1001/1000:
19453 @example
19454 settb=1+0.001
19455 @end example
19456
19457 @item
19458 Set the timebase to 2*intb:
19459 @example
19460 settb=2*intb
19461 @end example
19462
19463 @item
19464 Set the default timebase value:
19465 @example
19466 settb=AVTB
19467 @end example
19468 @end itemize
19469
19470 @section showcqt
19471 Convert input audio to a video output representing frequency spectrum
19472 logarithmically using Brown-Puckette constant Q transform algorithm with
19473 direct frequency domain coefficient calculation (but the transform itself
19474 is not really constant Q, instead the Q factor is actually variable/clamped),
19475 with musical tone scale, from E0 to D#10.
19476
19477 The filter accepts the following options:
19478
19479 @table @option
19480 @item size, s
19481 Specify the video size for the output. It must be even. For the syntax of this option,
19482 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19483 Default value is @code{1920x1080}.
19484
19485 @item fps, rate, r
19486 Set the output frame rate. Default value is @code{25}.
19487
19488 @item bar_h
19489 Set the bargraph height. It must be even. Default value is @code{-1} which
19490 computes the bargraph height automatically.
19491
19492 @item axis_h
19493 Set the axis height. It must be even. Default value is @code{-1} which computes
19494 the axis height automatically.
19495
19496 @item sono_h
19497 Set the sonogram height. It must be even. Default value is @code{-1} which
19498 computes the sonogram height automatically.
19499
19500 @item fullhd
19501 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
19502 instead. Default value is @code{1}.
19503
19504 @item sono_v, volume
19505 Specify the sonogram volume expression. It can contain variables:
19506 @table @option
19507 @item bar_v
19508 the @var{bar_v} evaluated expression
19509 @item frequency, freq, f
19510 the frequency where it is evaluated
19511 @item timeclamp, tc
19512 the value of @var{timeclamp} option
19513 @end table
19514 and functions:
19515 @table @option
19516 @item a_weighting(f)
19517 A-weighting of equal loudness
19518 @item b_weighting(f)
19519 B-weighting of equal loudness
19520 @item c_weighting(f)
19521 C-weighting of equal loudness.
19522 @end table
19523 Default value is @code{16}.
19524
19525 @item bar_v, volume2
19526 Specify the bargraph volume expression. It can contain variables:
19527 @table @option
19528 @item sono_v
19529 the @var{sono_v} evaluated expression
19530 @item frequency, freq, f
19531 the frequency where it is evaluated
19532 @item timeclamp, tc
19533 the value of @var{timeclamp} option
19534 @end table
19535 and functions:
19536 @table @option
19537 @item a_weighting(f)
19538 A-weighting of equal loudness
19539 @item b_weighting(f)
19540 B-weighting of equal loudness
19541 @item c_weighting(f)
19542 C-weighting of equal loudness.
19543 @end table
19544 Default value is @code{sono_v}.
19545
19546 @item sono_g, gamma
19547 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
19548 higher gamma makes the spectrum having more range. Default value is @code{3}.
19549 Acceptable range is @code{[1, 7]}.
19550
19551 @item bar_g, gamma2
19552 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
19553 @code{[1, 7]}.
19554
19555 @item bar_t
19556 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
19557 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
19558
19559 @item timeclamp, tc
19560 Specify the transform timeclamp. At low frequency, there is trade-off between
19561 accuracy in time domain and frequency domain. If timeclamp is lower,
19562 event in time domain is represented more accurately (such as fast bass drum),
19563 otherwise event in frequency domain is represented more accurately
19564 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
19565
19566 @item attack
19567 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
19568 limits future samples by applying asymmetric windowing in time domain, useful
19569 when low latency is required. Accepted range is @code{[0, 1]}.
19570
19571 @item basefreq
19572 Specify the transform base frequency. Default value is @code{20.01523126408007475},
19573 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
19574
19575 @item endfreq
19576 Specify the transform end frequency. Default value is @code{20495.59681441799654},
19577 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
19578
19579 @item coeffclamp
19580 This option is deprecated and ignored.
19581
19582 @item tlength
19583 Specify the transform length in time domain. Use this option to control accuracy
19584 trade-off between time domain and frequency domain at every frequency sample.
19585 It can contain variables:
19586 @table @option
19587 @item frequency, freq, f
19588 the frequency where it is evaluated
19589 @item timeclamp, tc
19590 the value of @var{timeclamp} option.
19591 @end table
19592 Default value is @code{384*tc/(384+tc*f)}.
19593
19594 @item count
19595 Specify the transform count for every video frame. Default value is @code{6}.
19596 Acceptable range is @code{[1, 30]}.
19597
19598 @item fcount
19599 Specify the transform count for every single pixel. Default value is @code{0},
19600 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
19601
19602 @item fontfile
19603 Specify font file for use with freetype to draw the axis. If not specified,
19604 use embedded font. Note that drawing with font file or embedded font is not
19605 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
19606 option instead.
19607
19608 @item font
19609 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
19610 The : in the pattern may be replaced by | to avoid unnecessary escaping.
19611
19612 @item fontcolor
19613 Specify font color expression. This is arithmetic expression that should return
19614 integer value 0xRRGGBB. It can contain variables:
19615 @table @option
19616 @item frequency, freq, f
19617 the frequency where it is evaluated
19618 @item timeclamp, tc
19619 the value of @var{timeclamp} option
19620 @end table
19621 and functions:
19622 @table @option
19623 @item midi(f)
19624 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
19625 @item r(x), g(x), b(x)
19626 red, green, and blue value of intensity x.
19627 @end table
19628 Default value is @code{st(0, (midi(f)-59.5)/12);
19629 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
19630 r(1-ld(1)) + b(ld(1))}.
19631
19632 @item axisfile
19633 Specify image file to draw the axis. This option override @var{fontfile} and
19634 @var{fontcolor} option.
19635
19636 @item axis, text
19637 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
19638 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
19639 Default value is @code{1}.
19640
19641 @item csp
19642 Set colorspace. The accepted values are:
19643 @table @samp
19644 @item unspecified
19645 Unspecified (default)
19646
19647 @item bt709
19648 BT.709
19649
19650 @item fcc
19651 FCC
19652
19653 @item bt470bg
19654 BT.470BG or BT.601-6 625
19655
19656 @item smpte170m
19657 SMPTE-170M or BT.601-6 525
19658
19659 @item smpte240m
19660 SMPTE-240M
19661
19662 @item bt2020ncl
19663 BT.2020 with non-constant luminance
19664
19665 @end table
19666
19667 @item cscheme
19668 Set spectrogram color scheme. This is list of floating point values with format
19669 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
19670 The default is @code{1|0.5|0|0|0.5|1}.
19671
19672 @end table
19673
19674 @subsection Examples
19675
19676 @itemize
19677 @item
19678 Playing audio while showing the spectrum:
19679 @example
19680 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
19681 @end example
19682
19683 @item
19684 Same as above, but with frame rate 30 fps:
19685 @example
19686 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
19687 @end example
19688
19689 @item
19690 Playing at 1280x720:
19691 @example
19692 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
19693 @end example
19694
19695 @item
19696 Disable sonogram display:
19697 @example
19698 sono_h=0
19699 @end example
19700
19701 @item
19702 A1 and its harmonics: A1, A2, (near)E3, A3:
19703 @example
19704 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),
19705                  asplit[a][out1]; [a] showcqt [out0]'
19706 @end example
19707
19708 @item
19709 Same as above, but with more accuracy in frequency domain:
19710 @example
19711 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),
19712                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
19713 @end example
19714
19715 @item
19716 Custom volume:
19717 @example
19718 bar_v=10:sono_v=bar_v*a_weighting(f)
19719 @end example
19720
19721 @item
19722 Custom gamma, now spectrum is linear to the amplitude.
19723 @example
19724 bar_g=2:sono_g=2
19725 @end example
19726
19727 @item
19728 Custom tlength equation:
19729 @example
19730 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)))'
19731 @end example
19732
19733 @item
19734 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
19735 @example
19736 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
19737 @end example
19738
19739 @item
19740 Custom font using fontconfig:
19741 @example
19742 font='Courier New,Monospace,mono|bold'
19743 @end example
19744
19745 @item
19746 Custom frequency range with custom axis using image file:
19747 @example
19748 axisfile=myaxis.png:basefreq=40:endfreq=10000
19749 @end example
19750 @end itemize
19751
19752 @section showfreqs
19753
19754 Convert input audio to video output representing the audio power spectrum.
19755 Audio amplitude is on Y-axis while frequency is on X-axis.
19756
19757 The filter accepts the following options:
19758
19759 @table @option
19760 @item size, s
19761 Specify size of video. For the syntax of this option, check the
19762 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19763 Default is @code{1024x512}.
19764
19765 @item mode
19766 Set display mode.
19767 This set how each frequency bin will be represented.
19768
19769 It accepts the following values:
19770 @table @samp
19771 @item line
19772 @item bar
19773 @item dot
19774 @end table
19775 Default is @code{bar}.
19776
19777 @item ascale
19778 Set amplitude scale.
19779
19780 It accepts the following values:
19781 @table @samp
19782 @item lin
19783 Linear scale.
19784
19785 @item sqrt
19786 Square root scale.
19787
19788 @item cbrt
19789 Cubic root scale.
19790
19791 @item log
19792 Logarithmic scale.
19793 @end table
19794 Default is @code{log}.
19795
19796 @item fscale
19797 Set frequency scale.
19798
19799 It accepts the following values:
19800 @table @samp
19801 @item lin
19802 Linear scale.
19803
19804 @item log
19805 Logarithmic scale.
19806
19807 @item rlog
19808 Reverse logarithmic scale.
19809 @end table
19810 Default is @code{lin}.
19811
19812 @item win_size
19813 Set window size.
19814
19815 It accepts the following values:
19816 @table @samp
19817 @item w16
19818 @item w32
19819 @item w64
19820 @item w128
19821 @item w256
19822 @item w512
19823 @item w1024
19824 @item w2048
19825 @item w4096
19826 @item w8192
19827 @item w16384
19828 @item w32768
19829 @item w65536
19830 @end table
19831 Default is @code{w2048}
19832
19833 @item win_func
19834 Set windowing function.
19835
19836 It accepts the following values:
19837 @table @samp
19838 @item rect
19839 @item bartlett
19840 @item hanning
19841 @item hamming
19842 @item blackman
19843 @item welch
19844 @item flattop
19845 @item bharris
19846 @item bnuttall
19847 @item bhann
19848 @item sine
19849 @item nuttall
19850 @item lanczos
19851 @item gauss
19852 @item tukey
19853 @item dolph
19854 @item cauchy
19855 @item parzen
19856 @item poisson
19857 @end table
19858 Default is @code{hanning}.
19859
19860 @item overlap
19861 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
19862 which means optimal overlap for selected window function will be picked.
19863
19864 @item averaging
19865 Set time averaging. Setting this to 0 will display current maximal peaks.
19866 Default is @code{1}, which means time averaging is disabled.
19867
19868 @item colors
19869 Specify list of colors separated by space or by '|' which will be used to
19870 draw channel frequencies. Unrecognized or missing colors will be replaced
19871 by white color.
19872
19873 @item cmode
19874 Set channel display mode.
19875
19876 It accepts the following values:
19877 @table @samp
19878 @item combined
19879 @item separate
19880 @end table
19881 Default is @code{combined}.
19882
19883 @item minamp
19884 Set minimum amplitude used in @code{log} amplitude scaler.
19885
19886 @end table
19887
19888 @anchor{showspectrum}
19889 @section showspectrum
19890
19891 Convert input audio to a video output, representing the audio frequency
19892 spectrum.
19893
19894 The filter accepts the following options:
19895
19896 @table @option
19897 @item size, s
19898 Specify the video size for the output. For the syntax of this option, check the
19899 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19900 Default value is @code{640x512}.
19901
19902 @item slide
19903 Specify how the spectrum should slide along the window.
19904
19905 It accepts the following values:
19906 @table @samp
19907 @item replace
19908 the samples start again on the left when they reach the right
19909 @item scroll
19910 the samples scroll from right to left
19911 @item fullframe
19912 frames are only produced when the samples reach the right
19913 @item rscroll
19914 the samples scroll from left to right
19915 @end table
19916
19917 Default value is @code{replace}.
19918
19919 @item mode
19920 Specify display mode.
19921
19922 It accepts the following values:
19923 @table @samp
19924 @item combined
19925 all channels are displayed in the same row
19926 @item separate
19927 all channels are displayed in separate rows
19928 @end table
19929
19930 Default value is @samp{combined}.
19931
19932 @item color
19933 Specify display color mode.
19934
19935 It accepts the following values:
19936 @table @samp
19937 @item channel
19938 each channel is displayed in a separate color
19939 @item intensity
19940 each channel is displayed using the same color scheme
19941 @item rainbow
19942 each channel is displayed using the rainbow color scheme
19943 @item moreland
19944 each channel is displayed using the moreland color scheme
19945 @item nebulae
19946 each channel is displayed using the nebulae color scheme
19947 @item fire
19948 each channel is displayed using the fire color scheme
19949 @item fiery
19950 each channel is displayed using the fiery color scheme
19951 @item fruit
19952 each channel is displayed using the fruit color scheme
19953 @item cool
19954 each channel is displayed using the cool color scheme
19955 @end table
19956
19957 Default value is @samp{channel}.
19958
19959 @item scale
19960 Specify scale used for calculating intensity color values.
19961
19962 It accepts the following values:
19963 @table @samp
19964 @item lin
19965 linear
19966 @item sqrt
19967 square root, default
19968 @item cbrt
19969 cubic root
19970 @item log
19971 logarithmic
19972 @item 4thrt
19973 4th root
19974 @item 5thrt
19975 5th root
19976 @end table
19977
19978 Default value is @samp{sqrt}.
19979
19980 @item saturation
19981 Set saturation modifier for displayed colors. Negative values provide
19982 alternative color scheme. @code{0} is no saturation at all.
19983 Saturation must be in [-10.0, 10.0] range.
19984 Default value is @code{1}.
19985
19986 @item win_func
19987 Set window function.
19988
19989 It accepts the following values:
19990 @table @samp
19991 @item rect
19992 @item bartlett
19993 @item hann
19994 @item hanning
19995 @item hamming
19996 @item blackman
19997 @item welch
19998 @item flattop
19999 @item bharris
20000 @item bnuttall
20001 @item bhann
20002 @item sine
20003 @item nuttall
20004 @item lanczos
20005 @item gauss
20006 @item tukey
20007 @item dolph
20008 @item cauchy
20009 @item parzen
20010 @item poisson
20011 @end table
20012
20013 Default value is @code{hann}.
20014
20015 @item orientation
20016 Set orientation of time vs frequency axis. Can be @code{vertical} or
20017 @code{horizontal}. Default is @code{vertical}.
20018
20019 @item overlap
20020 Set ratio of overlap window. Default value is @code{0}.
20021 When value is @code{1} overlap is set to recommended size for specific
20022 window function currently used.
20023
20024 @item gain
20025 Set scale gain for calculating intensity color values.
20026 Default value is @code{1}.
20027
20028 @item data
20029 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
20030
20031 @item rotation
20032 Set color rotation, must be in [-1.0, 1.0] range.
20033 Default value is @code{0}.
20034 @end table
20035
20036 The usage is very similar to the showwaves filter; see the examples in that
20037 section.
20038
20039 @subsection Examples
20040
20041 @itemize
20042 @item
20043 Large window with logarithmic color scaling:
20044 @example
20045 showspectrum=s=1280x480:scale=log
20046 @end example
20047
20048 @item
20049 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
20050 @example
20051 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
20052              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
20053 @end example
20054 @end itemize
20055
20056 @section showspectrumpic
20057
20058 Convert input audio to a single video frame, representing the audio frequency
20059 spectrum.
20060
20061 The filter accepts the following options:
20062
20063 @table @option
20064 @item size, s
20065 Specify the video size for the output. For the syntax of this option, check the
20066 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20067 Default value is @code{4096x2048}.
20068
20069 @item mode
20070 Specify display mode.
20071
20072 It accepts the following values:
20073 @table @samp
20074 @item combined
20075 all channels are displayed in the same row
20076 @item separate
20077 all channels are displayed in separate rows
20078 @end table
20079 Default value is @samp{combined}.
20080
20081 @item color
20082 Specify display color mode.
20083
20084 It accepts the following values:
20085 @table @samp
20086 @item channel
20087 each channel is displayed in a separate color
20088 @item intensity
20089 each channel is displayed using the same color scheme
20090 @item rainbow
20091 each channel is displayed using the rainbow color scheme
20092 @item moreland
20093 each channel is displayed using the moreland color scheme
20094 @item nebulae
20095 each channel is displayed using the nebulae color scheme
20096 @item fire
20097 each channel is displayed using the fire color scheme
20098 @item fiery
20099 each channel is displayed using the fiery color scheme
20100 @item fruit
20101 each channel is displayed using the fruit color scheme
20102 @item cool
20103 each channel is displayed using the cool color scheme
20104 @end table
20105 Default value is @samp{intensity}.
20106
20107 @item scale
20108 Specify scale used for calculating intensity color values.
20109
20110 It accepts the following values:
20111 @table @samp
20112 @item lin
20113 linear
20114 @item sqrt
20115 square root, default
20116 @item cbrt
20117 cubic root
20118 @item log
20119 logarithmic
20120 @item 4thrt
20121 4th root
20122 @item 5thrt
20123 5th root
20124 @end table
20125 Default value is @samp{log}.
20126
20127 @item saturation
20128 Set saturation modifier for displayed colors. Negative values provide
20129 alternative color scheme. @code{0} is no saturation at all.
20130 Saturation must be in [-10.0, 10.0] range.
20131 Default value is @code{1}.
20132
20133 @item win_func
20134 Set window function.
20135
20136 It accepts the following values:
20137 @table @samp
20138 @item rect
20139 @item bartlett
20140 @item hann
20141 @item hanning
20142 @item hamming
20143 @item blackman
20144 @item welch
20145 @item flattop
20146 @item bharris
20147 @item bnuttall
20148 @item bhann
20149 @item sine
20150 @item nuttall
20151 @item lanczos
20152 @item gauss
20153 @item tukey
20154 @item dolph
20155 @item cauchy
20156 @item parzen
20157 @item poisson
20158 @end table
20159 Default value is @code{hann}.
20160
20161 @item orientation
20162 Set orientation of time vs frequency axis. Can be @code{vertical} or
20163 @code{horizontal}. Default is @code{vertical}.
20164
20165 @item gain
20166 Set scale gain for calculating intensity color values.
20167 Default value is @code{1}.
20168
20169 @item legend
20170 Draw time and frequency axes and legends. Default is enabled.
20171
20172 @item rotation
20173 Set color rotation, must be in [-1.0, 1.0] range.
20174 Default value is @code{0}.
20175 @end table
20176
20177 @subsection Examples
20178
20179 @itemize
20180 @item
20181 Extract an audio spectrogram of a whole audio track
20182 in a 1024x1024 picture using @command{ffmpeg}:
20183 @example
20184 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
20185 @end example
20186 @end itemize
20187
20188 @section showvolume
20189
20190 Convert input audio volume to a video output.
20191
20192 The filter accepts the following options:
20193
20194 @table @option
20195 @item rate, r
20196 Set video rate.
20197
20198 @item b
20199 Set border width, allowed range is [0, 5]. Default is 1.
20200
20201 @item w
20202 Set channel width, allowed range is [80, 8192]. Default is 400.
20203
20204 @item h
20205 Set channel height, allowed range is [1, 900]. Default is 20.
20206
20207 @item f
20208 Set fade, allowed range is [0, 1]. Default is 0.95.
20209
20210 @item c
20211 Set volume color expression.
20212
20213 The expression can use the following variables:
20214
20215 @table @option
20216 @item VOLUME
20217 Current max volume of channel in dB.
20218
20219 @item PEAK
20220 Current peak.
20221
20222 @item CHANNEL
20223 Current channel number, starting from 0.
20224 @end table
20225
20226 @item t
20227 If set, displays channel names. Default is enabled.
20228
20229 @item v
20230 If set, displays volume values. Default is enabled.
20231
20232 @item o
20233 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
20234 default is @code{h}.
20235
20236 @item s
20237 Set step size, allowed range is [0, 5]. Default is 0, which means
20238 step is disabled.
20239
20240 @item p
20241 Set background opacity, allowed range is [0, 1]. Default is 0.
20242
20243 @item m
20244 Set metering mode, can be peak: @code{p} or rms: @code{r},
20245 default is @code{p}.
20246
20247 @item ds
20248 Set display scale, can be linear: @code{lin} or log: @code{log},
20249 default is @code{lin}.
20250
20251 @item dm
20252 In second.
20253 If set to > 0., display a line for the max level
20254 in the previous seconds.
20255 default is disabled: @code{0.}
20256
20257 @item dmc
20258 The color of the max line. Use when @code{dm} option is set to > 0.
20259 default is: @code{orange}
20260 @end table
20261
20262 @section showwaves
20263
20264 Convert input audio to a video output, representing the samples waves.
20265
20266 The filter accepts the following options:
20267
20268 @table @option
20269 @item size, s
20270 Specify the video size for the output. For the syntax of this option, check the
20271 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20272 Default value is @code{600x240}.
20273
20274 @item mode
20275 Set display mode.
20276
20277 Available values are:
20278 @table @samp
20279 @item point
20280 Draw a point for each sample.
20281
20282 @item line
20283 Draw a vertical line for each sample.
20284
20285 @item p2p
20286 Draw a point for each sample and a line between them.
20287
20288 @item cline
20289 Draw a centered vertical line for each sample.
20290 @end table
20291
20292 Default value is @code{point}.
20293
20294 @item n
20295 Set the number of samples which are printed on the same column. A
20296 larger value will decrease the frame rate. Must be a positive
20297 integer. This option can be set only if the value for @var{rate}
20298 is not explicitly specified.
20299
20300 @item rate, r
20301 Set the (approximate) output frame rate. This is done by setting the
20302 option @var{n}. Default value is "25".
20303
20304 @item split_channels
20305 Set if channels should be drawn separately or overlap. Default value is 0.
20306
20307 @item colors
20308 Set colors separated by '|' which are going to be used for drawing of each channel.
20309
20310 @item scale
20311 Set amplitude scale.
20312
20313 Available values are:
20314 @table @samp
20315 @item lin
20316 Linear.
20317
20318 @item log
20319 Logarithmic.
20320
20321 @item sqrt
20322 Square root.
20323
20324 @item cbrt
20325 Cubic root.
20326 @end table
20327
20328 Default is linear.
20329
20330 @item draw
20331 Set the draw mode. This is mostly useful to set for high @var{n}.
20332
20333 Available values are:
20334 @table @samp
20335 @item scale
20336 Scale pixel values for each drawn sample.
20337
20338 @item full
20339 Draw every sample directly.
20340 @end table
20341
20342 Default value is @code{scale}.
20343 @end table
20344
20345 @subsection Examples
20346
20347 @itemize
20348 @item
20349 Output the input file audio and the corresponding video representation
20350 at the same time:
20351 @example
20352 amovie=a.mp3,asplit[out0],showwaves[out1]
20353 @end example
20354
20355 @item
20356 Create a synthetic signal and show it with showwaves, forcing a
20357 frame rate of 30 frames per second:
20358 @example
20359 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
20360 @end example
20361 @end itemize
20362
20363 @section showwavespic
20364
20365 Convert input audio to a single video frame, representing the samples waves.
20366
20367 The filter accepts the following options:
20368
20369 @table @option
20370 @item size, s
20371 Specify the video size for the output. For the syntax of this option, check the
20372 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20373 Default value is @code{600x240}.
20374
20375 @item split_channels
20376 Set if channels should be drawn separately or overlap. Default value is 0.
20377
20378 @item colors
20379 Set colors separated by '|' which are going to be used for drawing of each channel.
20380
20381 @item scale
20382 Set amplitude scale.
20383
20384 Available values are:
20385 @table @samp
20386 @item lin
20387 Linear.
20388
20389 @item log
20390 Logarithmic.
20391
20392 @item sqrt
20393 Square root.
20394
20395 @item cbrt
20396 Cubic root.
20397 @end table
20398
20399 Default is linear.
20400 @end table
20401
20402 @subsection Examples
20403
20404 @itemize
20405 @item
20406 Extract a channel split representation of the wave form of a whole audio track
20407 in a 1024x800 picture using @command{ffmpeg}:
20408 @example
20409 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
20410 @end example
20411 @end itemize
20412
20413 @section sidedata, asidedata
20414
20415 Delete frame side data, or select frames based on it.
20416
20417 This filter accepts the following options:
20418
20419 @table @option
20420 @item mode
20421 Set mode of operation of the filter.
20422
20423 Can be one of the following:
20424
20425 @table @samp
20426 @item select
20427 Select every frame with side data of @code{type}.
20428
20429 @item delete
20430 Delete side data of @code{type}. If @code{type} is not set, delete all side
20431 data in the frame.
20432
20433 @end table
20434
20435 @item type
20436 Set side data type used with all modes. Must be set for @code{select} mode. For
20437 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
20438 in @file{libavutil/frame.h}. For example, to choose
20439 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
20440
20441 @end table
20442
20443 @section spectrumsynth
20444
20445 Sythesize audio from 2 input video spectrums, first input stream represents
20446 magnitude across time and second represents phase across time.
20447 The filter will transform from frequency domain as displayed in videos back
20448 to time domain as presented in audio output.
20449
20450 This filter is primarily created for reversing processed @ref{showspectrum}
20451 filter outputs, but can synthesize sound from other spectrograms too.
20452 But in such case results are going to be poor if the phase data is not
20453 available, because in such cases phase data need to be recreated, usually
20454 its just recreated from random noise.
20455 For best results use gray only output (@code{channel} color mode in
20456 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
20457 @code{lin} scale for phase video. To produce phase, for 2nd video, use
20458 @code{data} option. Inputs videos should generally use @code{fullframe}
20459 slide mode as that saves resources needed for decoding video.
20460
20461 The filter accepts the following options:
20462
20463 @table @option
20464 @item sample_rate
20465 Specify sample rate of output audio, the sample rate of audio from which
20466 spectrum was generated may differ.
20467
20468 @item channels
20469 Set number of channels represented in input video spectrums.
20470
20471 @item scale
20472 Set scale which was used when generating magnitude input spectrum.
20473 Can be @code{lin} or @code{log}. Default is @code{log}.
20474
20475 @item slide
20476 Set slide which was used when generating inputs spectrums.
20477 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
20478 Default is @code{fullframe}.
20479
20480 @item win_func
20481 Set window function used for resynthesis.
20482
20483 @item overlap
20484 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
20485 which means optimal overlap for selected window function will be picked.
20486
20487 @item orientation
20488 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
20489 Default is @code{vertical}.
20490 @end table
20491
20492 @subsection Examples
20493
20494 @itemize
20495 @item
20496 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
20497 then resynthesize videos back to audio with spectrumsynth:
20498 @example
20499 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
20500 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
20501 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
20502 @end example
20503 @end itemize
20504
20505 @section split, asplit
20506
20507 Split input into several identical outputs.
20508
20509 @code{asplit} works with audio input, @code{split} with video.
20510
20511 The filter accepts a single parameter which specifies the number of outputs. If
20512 unspecified, it defaults to 2.
20513
20514 @subsection Examples
20515
20516 @itemize
20517 @item
20518 Create two separate outputs from the same input:
20519 @example
20520 [in] split [out0][out1]
20521 @end example
20522
20523 @item
20524 To create 3 or more outputs, you need to specify the number of
20525 outputs, like in:
20526 @example
20527 [in] asplit=3 [out0][out1][out2]
20528 @end example
20529
20530 @item
20531 Create two separate outputs from the same input, one cropped and
20532 one padded:
20533 @example
20534 [in] split [splitout1][splitout2];
20535 [splitout1] crop=100:100:0:0    [cropout];
20536 [splitout2] pad=200:200:100:100 [padout];
20537 @end example
20538
20539 @item
20540 Create 5 copies of the input audio with @command{ffmpeg}:
20541 @example
20542 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
20543 @end example
20544 @end itemize
20545
20546 @section zmq, azmq
20547
20548 Receive commands sent through a libzmq client, and forward them to
20549 filters in the filtergraph.
20550
20551 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
20552 must be inserted between two video filters, @code{azmq} between two
20553 audio filters. Both are capable to send messages to any filter type.
20554
20555 To enable these filters you need to install the libzmq library and
20556 headers and configure FFmpeg with @code{--enable-libzmq}.
20557
20558 For more information about libzmq see:
20559 @url{http://www.zeromq.org/}
20560
20561 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
20562 receives messages sent through a network interface defined by the
20563 @option{bind_address} (or the abbreviation "@option{b}") option.
20564 Default value of this option is @file{tcp://localhost:5555}. You may
20565 want to alter this value to your needs, but do not forget to escape any
20566 ':' signs (see @ref{filtergraph escaping}).
20567
20568 The received message must be in the form:
20569 @example
20570 @var{TARGET} @var{COMMAND} [@var{ARG}]
20571 @end example
20572
20573 @var{TARGET} specifies the target of the command, usually the name of
20574 the filter class or a specific filter instance name. The default
20575 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
20576 but you can override this by using the @samp{filter_name@@id} syntax
20577 (see @ref{Filtergraph syntax}).
20578
20579 @var{COMMAND} specifies the name of the command for the target filter.
20580
20581 @var{ARG} is optional and specifies the optional argument list for the
20582 given @var{COMMAND}.
20583
20584 Upon reception, the message is processed and the corresponding command
20585 is injected into the filtergraph. Depending on the result, the filter
20586 will send a reply to the client, adopting the format:
20587 @example
20588 @var{ERROR_CODE} @var{ERROR_REASON}
20589 @var{MESSAGE}
20590 @end example
20591
20592 @var{MESSAGE} is optional.
20593
20594 @subsection Examples
20595
20596 Look at @file{tools/zmqsend} for an example of a zmq client which can
20597 be used to send commands processed by these filters.
20598
20599 Consider the following filtergraph generated by @command{ffplay}.
20600 In this example the last overlay filter has an instance name. All other
20601 filters will have default instance names.
20602
20603 @example
20604 ffplay -dumpgraph 1 -f lavfi "
20605 color=s=100x100:c=red  [l];
20606 color=s=100x100:c=blue [r];
20607 nullsrc=s=200x100, zmq [bg];
20608 [bg][l]   overlay     [bg+l];
20609 [bg+l][r] overlay@@my=x=100 "
20610 @end example
20611
20612 To change the color of the left side of the video, the following
20613 command can be used:
20614 @example
20615 echo Parsed_color_0 c yellow | tools/zmqsend
20616 @end example
20617
20618 To change the right side:
20619 @example
20620 echo Parsed_color_1 c pink | tools/zmqsend
20621 @end example
20622
20623 To change the position of the right side:
20624 @example
20625 echo overlay@@my x 150 | tools/zmqsend
20626 @end example
20627
20628
20629 @c man end MULTIMEDIA FILTERS
20630
20631 @chapter Multimedia Sources
20632 @c man begin MULTIMEDIA SOURCES
20633
20634 Below is a description of the currently available multimedia sources.
20635
20636 @section amovie
20637
20638 This is the same as @ref{movie} source, except it selects an audio
20639 stream by default.
20640
20641 @anchor{movie}
20642 @section movie
20643
20644 Read audio and/or video stream(s) from a movie container.
20645
20646 It accepts the following parameters:
20647
20648 @table @option
20649 @item filename
20650 The name of the resource to read (not necessarily a file; it can also be a
20651 device or a stream accessed through some protocol).
20652
20653 @item format_name, f
20654 Specifies the format assumed for the movie to read, and can be either
20655 the name of a container or an input device. If not specified, the
20656 format is guessed from @var{movie_name} or by probing.
20657
20658 @item seek_point, sp
20659 Specifies the seek point in seconds. The frames will be output
20660 starting from this seek point. The parameter is evaluated with
20661 @code{av_strtod}, so the numerical value may be suffixed by an IS
20662 postfix. The default value is "0".
20663
20664 @item streams, s
20665 Specifies the streams to read. Several streams can be specified,
20666 separated by "+". The source will then have as many outputs, in the
20667 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
20668 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
20669 respectively the default (best suited) video and audio stream. Default
20670 is "dv", or "da" if the filter is called as "amovie".
20671
20672 @item stream_index, si
20673 Specifies the index of the video stream to read. If the value is -1,
20674 the most suitable video stream will be automatically selected. The default
20675 value is "-1". Deprecated. If the filter is called "amovie", it will select
20676 audio instead of video.
20677
20678 @item loop
20679 Specifies how many times to read the stream in sequence.
20680 If the value is 0, the stream will be looped infinitely.
20681 Default value is "1".
20682
20683 Note that when the movie is looped the source timestamps are not
20684 changed, so it will generate non monotonically increasing timestamps.
20685
20686 @item discontinuity
20687 Specifies the time difference between frames above which the point is
20688 considered a timestamp discontinuity which is removed by adjusting the later
20689 timestamps.
20690 @end table
20691
20692 It allows overlaying a second video on top of the main input of
20693 a filtergraph, as shown in this graph:
20694 @example
20695 input -----------> deltapts0 --> overlay --> output
20696                                     ^
20697                                     |
20698 movie --> scale--> deltapts1 -------+
20699 @end example
20700 @subsection Examples
20701
20702 @itemize
20703 @item
20704 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
20705 on top of the input labelled "in":
20706 @example
20707 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
20708 [in] setpts=PTS-STARTPTS [main];
20709 [main][over] overlay=16:16 [out]
20710 @end example
20711
20712 @item
20713 Read from a video4linux2 device, and overlay it on top of the input
20714 labelled "in":
20715 @example
20716 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
20717 [in] setpts=PTS-STARTPTS [main];
20718 [main][over] overlay=16:16 [out]
20719 @end example
20720
20721 @item
20722 Read the first video stream and the audio stream with id 0x81 from
20723 dvd.vob; the video is connected to the pad named "video" and the audio is
20724 connected to the pad named "audio":
20725 @example
20726 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
20727 @end example
20728 @end itemize
20729
20730 @subsection Commands
20731
20732 Both movie and amovie support the following commands:
20733 @table @option
20734 @item seek
20735 Perform seek using "av_seek_frame".
20736 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
20737 @itemize
20738 @item
20739 @var{stream_index}: If stream_index is -1, a default
20740 stream is selected, and @var{timestamp} is automatically converted
20741 from AV_TIME_BASE units to the stream specific time_base.
20742 @item
20743 @var{timestamp}: Timestamp in AVStream.time_base units
20744 or, if no stream is specified, in AV_TIME_BASE units.
20745 @item
20746 @var{flags}: Flags which select direction and seeking mode.
20747 @end itemize
20748
20749 @item get_duration
20750 Get movie duration in AV_TIME_BASE units.
20751
20752 @end table
20753
20754 @c man end MULTIMEDIA SOURCES