]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter: add normalize filter
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{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 @section Notes on filtergraph escaping
225
226 Filtergraph description composition entails several levels of
227 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
228 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
229 information about the employed escaping procedure.
230
231 A first level escaping affects the content of each filter option
232 value, which may contain the special character @code{:} used to
233 separate values, or one of the escaping characters @code{\'}.
234
235 A second level escaping affects the whole filter description, which
236 may contain the escaping characters @code{\'} or the special
237 characters @code{[],;} used by the filtergraph description.
238
239 Finally, when you specify a filtergraph on a shell commandline, you
240 need to perform a third level escaping for the shell special
241 characters contained within it.
242
243 For example, consider the following string to be embedded in
244 the @ref{drawtext} filter description @option{text} value:
245 @example
246 this is a 'string': may contain one, or more, special characters
247 @end example
248
249 This string contains the @code{'} special escaping character, and the
250 @code{:} special character, so it needs to be escaped in this way:
251 @example
252 text=this is a \'string\'\: may contain one, or more, special characters
253 @end example
254
255 A second level of escaping is required when embedding the filter
256 description in a filtergraph description, in order to escape all the
257 filtergraph special characters. Thus the example above becomes:
258 @example
259 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
260 @end example
261 (note that in addition to the @code{\'} escaping special characters,
262 also @code{,} needs to be escaped).
263
264 Finally an additional level of escaping is needed when writing the
265 filtergraph description in a shell command, which depends on the
266 escaping rules of the adopted shell. For example, assuming that
267 @code{\} is special and needs to be escaped with another @code{\}, the
268 previous string will finally result in:
269 @example
270 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
271 @end example
272
273 @chapter Timeline editing
274
275 Some filters support a generic @option{enable} option. For the filters
276 supporting timeline editing, this option can be set to an expression which is
277 evaluated before sending a frame to the filter. If the evaluation is non-zero,
278 the filter will be enabled, otherwise the frame will be sent unchanged to the
279 next filter in the filtergraph.
280
281 The expression accepts the following values:
282 @table @samp
283 @item t
284 timestamp expressed in seconds, NAN if the input timestamp is unknown
285
286 @item n
287 sequential number of the input frame, starting from 0
288
289 @item pos
290 the position in the file of the input frame, NAN if unknown
291
292 @item w
293 @item h
294 width and height of the input frame if video
295 @end table
296
297 Additionally, these filters support an @option{enable} command that can be used
298 to re-define the expression.
299
300 Like any other filtering option, the @option{enable} option follows the same
301 rules.
302
303 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
304 minutes, and a @ref{curves} filter starting at 3 seconds:
305 @example
306 smartblur = enable='between(t,10,3*60)',
307 curves    = enable='gte(t,3)' : preset=cross_process
308 @end example
309
310 See @code{ffmpeg -filters} to view which filters have timeline support.
311
312 @c man end FILTERGRAPH DESCRIPTION
313
314 @anchor{framesync}
315 @chapter Options for filters with several inputs (framesync)
316 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
317
318 Some filters with several inputs support a common set of options.
319 These options can only be set by name, not with the short notation.
320
321 @table @option
322 @item eof_action
323 The action to take when EOF is encountered on the secondary input; it accepts
324 one of the following values:
325
326 @table @option
327 @item repeat
328 Repeat the last frame (the default).
329 @item endall
330 End both streams.
331 @item pass
332 Pass the main input through.
333 @end table
334
335 @item shortest
336 If set to 1, force the output to terminate when the shortest input
337 terminates. Default value is 0.
338
339 @item repeatlast
340 If set to 1, force the filter to extend the last frame of secondary streams
341 until the end of the primary stream. A value of 0 disables this behavior.
342 Default value is 1.
343 @end table
344
345 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
346
347 @chapter Audio Filters
348 @c man begin AUDIO FILTERS
349
350 When you configure your FFmpeg build, you can disable any of the
351 existing filters using @code{--disable-filters}.
352 The configure output will show the audio filters included in your
353 build.
354
355 Below is a description of the currently available audio filters.
356
357 @section acompressor
358
359 A compressor is mainly used to reduce the dynamic range of a signal.
360 Especially modern music is mostly compressed at a high ratio to
361 improve the overall loudness. It's done to get the highest attention
362 of a listener, "fatten" the sound and bring more "power" to the track.
363 If a signal is compressed too much it may sound dull or "dead"
364 afterwards or it may start to "pump" (which could be a powerful effect
365 but can also destroy a track completely).
366 The right compression is the key to reach a professional sound and is
367 the high art of mixing and mastering. Because of its complex settings
368 it may take a long time to get the right feeling for this kind of effect.
369
370 Compression is done by detecting the volume above a chosen level
371 @code{threshold} and dividing it by the factor set with @code{ratio}.
372 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
373 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
374 the signal would cause distortion of the waveform the reduction can be
375 levelled over the time. This is done by setting "Attack" and "Release".
376 @code{attack} determines how long the signal has to rise above the threshold
377 before any reduction will occur and @code{release} sets the time the signal
378 has to fall below the threshold to reduce the reduction again. Shorter signals
379 than the chosen attack time will be left untouched.
380 The overall reduction of the signal can be made up afterwards with the
381 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
382 raising the makeup to this level results in a signal twice as loud than the
383 source. To gain a softer entry in the compression the @code{knee} flattens the
384 hard edge at the threshold in the range of the chosen decibels.
385
386 The filter accepts the following options:
387
388 @table @option
389 @item level_in
390 Set input gain. Default is 1. Range is between 0.015625 and 64.
391
392 @item threshold
393 If a signal of stream rises above this level it will affect the gain
394 reduction.
395 By default it is 0.125. Range is between 0.00097563 and 1.
396
397 @item ratio
398 Set a ratio by which the signal is reduced. 1:2 means that if the level
399 rose 4dB above the threshold, it will be only 2dB above after the reduction.
400 Default is 2. Range is between 1 and 20.
401
402 @item attack
403 Amount of milliseconds the signal has to rise above the threshold before gain
404 reduction starts. Default is 20. Range is between 0.01 and 2000.
405
406 @item release
407 Amount of milliseconds the signal has to fall below the threshold before
408 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
409
410 @item makeup
411 Set the amount by how much signal will be amplified after processing.
412 Default is 1. Range is from 1 to 64.
413
414 @item knee
415 Curve the sharp knee around the threshold to enter gain reduction more softly.
416 Default is 2.82843. Range is between 1 and 8.
417
418 @item link
419 Choose if the @code{average} level between all channels of input stream
420 or the louder(@code{maximum}) channel of input stream affects the
421 reduction. Default is @code{average}.
422
423 @item detection
424 Should the exact signal be taken in case of @code{peak} or an RMS one in case
425 of @code{rms}. Default is @code{rms} which is mostly smoother.
426
427 @item mix
428 How much to use compressed signal in output. Default is 1.
429 Range is between 0 and 1.
430 @end table
431
432 @section acontrast
433 Simple audio dynamic range commpression/expansion filter.
434
435 The filter accepts the following options:
436
437 @table @option
438 @item contrast
439 Set contrast. Default is 33. Allowed range is between 0 and 100.
440 @end table
441
442 @section acopy
443
444 Copy the input audio source unchanged to the output. This is mainly useful for
445 testing purposes.
446
447 @section acrossfade
448
449 Apply cross fade from one input audio stream to another input audio stream.
450 The cross fade is applied for specified duration near the end of first stream.
451
452 The filter accepts the following options:
453
454 @table @option
455 @item nb_samples, ns
456 Specify the number of samples for which the cross fade effect has to last.
457 At the end of the cross fade effect the first input audio will be completely
458 silent. Default is 44100.
459
460 @item duration, d
461 Specify the duration of the cross fade effect. See
462 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
463 for the accepted syntax.
464 By default the duration is determined by @var{nb_samples}.
465 If set this option is used instead of @var{nb_samples}.
466
467 @item overlap, o
468 Should first stream end overlap with second stream start. Default is enabled.
469
470 @item curve1
471 Set curve for cross fade transition for first stream.
472
473 @item curve2
474 Set curve for cross fade transition for second stream.
475
476 For description of available curve types see @ref{afade} filter description.
477 @end table
478
479 @subsection Examples
480
481 @itemize
482 @item
483 Cross fade from one input to another:
484 @example
485 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
486 @end example
487
488 @item
489 Cross fade from one input to another but without overlapping:
490 @example
491 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
492 @end example
493 @end itemize
494
495 @section acrusher
496
497 Reduce audio bit resolution.
498
499 This filter is bit crusher with enhanced functionality. A bit crusher
500 is used to audibly reduce number of bits an audio signal is sampled
501 with. This doesn't change the bit depth at all, it just produces the
502 effect. Material reduced in bit depth sounds more harsh and "digital".
503 This filter is able to even round to continuous values instead of discrete
504 bit depths.
505 Additionally it has a D/C offset which results in different crushing of
506 the lower and the upper half of the signal.
507 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
508
509 Another feature of this filter is the logarithmic mode.
510 This setting switches from linear distances between bits to logarithmic ones.
511 The result is a much more "natural" sounding crusher which doesn't gate low
512 signals for example. The human ear has a logarithmic perception, too
513 so this kind of crushing is much more pleasant.
514 Logarithmic crushing is also able to get anti-aliased.
515
516 The filter accepts the following options:
517
518 @table @option
519 @item level_in
520 Set level in.
521
522 @item level_out
523 Set level out.
524
525 @item bits
526 Set bit reduction.
527
528 @item mix
529 Set mixing amount.
530
531 @item mode
532 Can be linear: @code{lin} or logarithmic: @code{log}.
533
534 @item dc
535 Set DC.
536
537 @item aa
538 Set anti-aliasing.
539
540 @item samples
541 Set sample reduction.
542
543 @item lfo
544 Enable LFO. By default disabled.
545
546 @item lforange
547 Set LFO range.
548
549 @item lforate
550 Set LFO rate.
551 @end table
552
553 @section adelay
554
555 Delay one or more audio channels.
556
557 Samples in delayed channel are filled with silence.
558
559 The filter accepts the following option:
560
561 @table @option
562 @item delays
563 Set list of delays in milliseconds for each channel separated by '|'.
564 Unused delays will be silently ignored. If number of given delays is
565 smaller than number of channels all remaining channels will not be delayed.
566 If you want to delay exact number of samples, append 'S' to number.
567 @end table
568
569 @subsection Examples
570
571 @itemize
572 @item
573 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
574 the second channel (and any other channels that may be present) unchanged.
575 @example
576 adelay=1500|0|500
577 @end example
578
579 @item
580 Delay second channel by 500 samples, the third channel by 700 samples and leave
581 the first channel (and any other channels that may be present) unchanged.
582 @example
583 adelay=0|500S|700S
584 @end example
585 @end itemize
586
587 @section aecho
588
589 Apply echoing to the input audio.
590
591 Echoes are reflected sound and can occur naturally amongst mountains
592 (and sometimes large buildings) when talking or shouting; digital echo
593 effects emulate this behaviour and are often used to help fill out the
594 sound of a single instrument or vocal. The time difference between the
595 original signal and the reflection is the @code{delay}, and the
596 loudness of the reflected signal is the @code{decay}.
597 Multiple echoes can have different delays and decays.
598
599 A description of the accepted parameters follows.
600
601 @table @option
602 @item in_gain
603 Set input gain of reflected signal. Default is @code{0.6}.
604
605 @item out_gain
606 Set output gain of reflected signal. Default is @code{0.3}.
607
608 @item delays
609 Set list of time intervals in milliseconds between original signal and reflections
610 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
611 Default is @code{1000}.
612
613 @item decays
614 Set list of loudness of reflected signals separated by '|'.
615 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
616 Default is @code{0.5}.
617 @end table
618
619 @subsection Examples
620
621 @itemize
622 @item
623 Make it sound as if there are twice as many instruments as are actually playing:
624 @example
625 aecho=0.8:0.88:60:0.4
626 @end example
627
628 @item
629 If delay is very short, then it sound like a (metallic) robot playing music:
630 @example
631 aecho=0.8:0.88:6:0.4
632 @end example
633
634 @item
635 A longer delay will sound like an open air concert in the mountains:
636 @example
637 aecho=0.8:0.9:1000:0.3
638 @end example
639
640 @item
641 Same as above but with one more mountain:
642 @example
643 aecho=0.8:0.9:1000|1800:0.3|0.25
644 @end example
645 @end itemize
646
647 @section aemphasis
648 Audio emphasis filter creates or restores material directly taken from LPs or
649 emphased CDs with different filter curves. E.g. to store music on vinyl the
650 signal has to be altered by a filter first to even out the disadvantages of
651 this recording medium.
652 Once the material is played back the inverse filter has to be applied to
653 restore the distortion of the frequency response.
654
655 The filter accepts the following options:
656
657 @table @option
658 @item level_in
659 Set input gain.
660
661 @item level_out
662 Set output gain.
663
664 @item mode
665 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
666 use @code{production} mode. Default is @code{reproduction} mode.
667
668 @item type
669 Set filter type. Selects medium. Can be one of the following:
670
671 @table @option
672 @item col
673 select Columbia.
674 @item emi
675 select EMI.
676 @item bsi
677 select BSI (78RPM).
678 @item riaa
679 select RIAA.
680 @item cd
681 select Compact Disc (CD).
682 @item 50fm
683 select 50µs (FM).
684 @item 75fm
685 select 75µs (FM).
686 @item 50kf
687 select 50µs (FM-KF).
688 @item 75kf
689 select 75µs (FM-KF).
690 @end table
691 @end table
692
693 @section aeval
694
695 Modify an audio signal according to the specified expressions.
696
697 This filter accepts one or more expressions (one for each channel),
698 which are evaluated and used to modify a corresponding audio signal.
699
700 It accepts the following parameters:
701
702 @table @option
703 @item exprs
704 Set the '|'-separated expressions list for each separate channel. If
705 the number of input channels is greater than the number of
706 expressions, the last specified expression is used for the remaining
707 output channels.
708
709 @item channel_layout, c
710 Set output channel layout. If not specified, the channel layout is
711 specified by the number of expressions. If set to @samp{same}, it will
712 use by default the same input channel layout.
713 @end table
714
715 Each expression in @var{exprs} can contain the following constants and functions:
716
717 @table @option
718 @item ch
719 channel number of the current expression
720
721 @item n
722 number of the evaluated sample, starting from 0
723
724 @item s
725 sample rate
726
727 @item t
728 time of the evaluated sample expressed in seconds
729
730 @item nb_in_channels
731 @item nb_out_channels
732 input and output number of channels
733
734 @item val(CH)
735 the value of input channel with number @var{CH}
736 @end table
737
738 Note: this filter is slow. For faster processing you should use a
739 dedicated filter.
740
741 @subsection Examples
742
743 @itemize
744 @item
745 Half volume:
746 @example
747 aeval=val(ch)/2:c=same
748 @end example
749
750 @item
751 Invert phase of the second channel:
752 @example
753 aeval=val(0)|-val(1)
754 @end example
755 @end itemize
756
757 @anchor{afade}
758 @section afade
759
760 Apply fade-in/out effect to input audio.
761
762 A description of the accepted parameters follows.
763
764 @table @option
765 @item type, t
766 Specify the effect type, can be either @code{in} for fade-in, or
767 @code{out} for a fade-out effect. Default is @code{in}.
768
769 @item start_sample, ss
770 Specify the number of the start sample for starting to apply the fade
771 effect. Default is 0.
772
773 @item nb_samples, ns
774 Specify the number of samples for which the fade effect has to last. At
775 the end of the fade-in effect the output audio will have the same
776 volume as the input audio, at the end of the fade-out transition
777 the output audio will be silence. Default is 44100.
778
779 @item start_time, st
780 Specify the start time of the fade effect. Default is 0.
781 The value must be specified as a time duration; see
782 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
783 for the accepted syntax.
784 If set this option is used instead of @var{start_sample}.
785
786 @item duration, d
787 Specify the duration of the fade effect. See
788 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
789 for the accepted syntax.
790 At the end of the fade-in effect the output audio will have the same
791 volume as the input audio, at the end of the fade-out transition
792 the output audio will be silence.
793 By default the duration is determined by @var{nb_samples}.
794 If set this option is used instead of @var{nb_samples}.
795
796 @item curve
797 Set curve for fade transition.
798
799 It accepts the following values:
800 @table @option
801 @item tri
802 select triangular, linear slope (default)
803 @item qsin
804 select quarter of sine wave
805 @item hsin
806 select half of sine wave
807 @item esin
808 select exponential sine wave
809 @item log
810 select logarithmic
811 @item ipar
812 select inverted parabola
813 @item qua
814 select quadratic
815 @item cub
816 select cubic
817 @item squ
818 select square root
819 @item cbr
820 select cubic root
821 @item par
822 select parabola
823 @item exp
824 select exponential
825 @item iqsin
826 select inverted quarter of sine wave
827 @item ihsin
828 select inverted half of sine wave
829 @item dese
830 select double-exponential seat
831 @item desi
832 select double-exponential sigmoid
833 @end table
834 @end table
835
836 @subsection Examples
837
838 @itemize
839 @item
840 Fade in first 15 seconds of audio:
841 @example
842 afade=t=in:ss=0:d=15
843 @end example
844
845 @item
846 Fade out last 25 seconds of a 900 seconds audio:
847 @example
848 afade=t=out:st=875:d=25
849 @end example
850 @end itemize
851
852 @section afftfilt
853 Apply arbitrary expressions to samples in frequency domain.
854
855 @table @option
856 @item real
857 Set frequency domain real expression for each separate channel separated
858 by '|'. Default is "1".
859 If the number of input channels is greater than the number of
860 expressions, the last specified expression is used for the remaining
861 output channels.
862
863 @item imag
864 Set frequency domain imaginary expression for each separate channel
865 separated by '|'. If not set, @var{real} option is used.
866
867 Each expression in @var{real} and @var{imag} can contain the following
868 constants:
869
870 @table @option
871 @item sr
872 sample rate
873
874 @item b
875 current frequency bin number
876
877 @item nb
878 number of available bins
879
880 @item ch
881 channel number of the current expression
882
883 @item chs
884 number of channels
885
886 @item pts
887 current frame pts
888 @end table
889
890 @item win_size
891 Set window size.
892
893 It accepts the following values:
894 @table @samp
895 @item w16
896 @item w32
897 @item w64
898 @item w128
899 @item w256
900 @item w512
901 @item w1024
902 @item w2048
903 @item w4096
904 @item w8192
905 @item w16384
906 @item w32768
907 @item w65536
908 @end table
909 Default is @code{w4096}
910
911 @item win_func
912 Set window function. Default is @code{hann}.
913
914 @item overlap
915 Set window overlap. If set to 1, the recommended overlap for selected
916 window function will be picked. Default is @code{0.75}.
917 @end table
918
919 @subsection Examples
920
921 @itemize
922 @item
923 Leave almost only low frequencies in audio:
924 @example
925 afftfilt="1-clip((b/nb)*b,0,1)"
926 @end example
927 @end itemize
928
929 @section afir
930
931 Apply an arbitrary Frequency Impulse Response filter.
932
933 This filter is designed for applying long FIR filters,
934 up to 30 seconds long.
935
936 It can be used as component for digital crossover filters,
937 room equalization, cross talk cancellation, wavefield synthesis,
938 auralization, ambiophonics and ambisonics.
939
940 This filter uses second stream as FIR coefficients.
941 If second stream holds single channel, it will be used
942 for all input channels in first stream, otherwise
943 number of channels in second stream must be same as
944 number of channels in first stream.
945
946 It accepts the following parameters:
947
948 @table @option
949 @item dry
950 Set dry gain. This sets input gain.
951
952 @item wet
953 Set wet gain. This sets final output gain.
954
955 @item length
956 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
957
958 @item again
959 Enable applying gain measured from power of IR.
960 @end table
961
962 @subsection Examples
963
964 @itemize
965 @item
966 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
967 @example
968 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
969 @end example
970 @end itemize
971
972 @anchor{aformat}
973 @section aformat
974
975 Set output format constraints for the input audio. The framework will
976 negotiate the most appropriate format to minimize conversions.
977
978 It accepts the following parameters:
979 @table @option
980
981 @item sample_fmts
982 A '|'-separated list of requested sample formats.
983
984 @item sample_rates
985 A '|'-separated list of requested sample rates.
986
987 @item channel_layouts
988 A '|'-separated list of requested channel layouts.
989
990 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
991 for the required syntax.
992 @end table
993
994 If a parameter is omitted, all values are allowed.
995
996 Force the output to either unsigned 8-bit or signed 16-bit stereo
997 @example
998 aformat=sample_fmts=u8|s16:channel_layouts=stereo
999 @end example
1000
1001 @section agate
1002
1003 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1004 processing reduces disturbing noise between useful signals.
1005
1006 Gating is done by detecting the volume below a chosen level @var{threshold}
1007 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1008 floor is set via @var{range}. Because an exact manipulation of the signal
1009 would cause distortion of the waveform the reduction can be levelled over
1010 time. This is done by setting @var{attack} and @var{release}.
1011
1012 @var{attack} determines how long the signal has to fall below the threshold
1013 before any reduction will occur and @var{release} sets the time the signal
1014 has to rise above the threshold to reduce the reduction again.
1015 Shorter signals than the chosen attack time will be left untouched.
1016
1017 @table @option
1018 @item level_in
1019 Set input level before filtering.
1020 Default is 1. Allowed range is from 0.015625 to 64.
1021
1022 @item range
1023 Set the level of gain reduction when the signal is below the threshold.
1024 Default is 0.06125. Allowed range is from 0 to 1.
1025
1026 @item threshold
1027 If a signal rises above this level the gain reduction is released.
1028 Default is 0.125. Allowed range is from 0 to 1.
1029
1030 @item ratio
1031 Set a ratio by which the signal is reduced.
1032 Default is 2. Allowed range is from 1 to 9000.
1033
1034 @item attack
1035 Amount of milliseconds the signal has to rise above the threshold before gain
1036 reduction stops.
1037 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1038
1039 @item release
1040 Amount of milliseconds the signal has to fall below the threshold before the
1041 reduction is increased again. Default is 250 milliseconds.
1042 Allowed range is from 0.01 to 9000.
1043
1044 @item makeup
1045 Set amount of amplification of signal after processing.
1046 Default is 1. Allowed range is from 1 to 64.
1047
1048 @item knee
1049 Curve the sharp knee around the threshold to enter gain reduction more softly.
1050 Default is 2.828427125. Allowed range is from 1 to 8.
1051
1052 @item detection
1053 Choose if exact signal should be taken for detection or an RMS like one.
1054 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1055
1056 @item link
1057 Choose if the average level between all channels or the louder channel affects
1058 the reduction.
1059 Default is @code{average}. Can be @code{average} or @code{maximum}.
1060 @end table
1061
1062 @section alimiter
1063
1064 The limiter prevents an input signal from rising over a desired threshold.
1065 This limiter uses lookahead technology to prevent your signal from distorting.
1066 It means that there is a small delay after the signal is processed. Keep in mind
1067 that the delay it produces is the attack time you set.
1068
1069 The filter accepts the following options:
1070
1071 @table @option
1072 @item level_in
1073 Set input gain. Default is 1.
1074
1075 @item level_out
1076 Set output gain. Default is 1.
1077
1078 @item limit
1079 Don't let signals above this level pass the limiter. Default is 1.
1080
1081 @item attack
1082 The limiter will reach its attenuation level in this amount of time in
1083 milliseconds. Default is 5 milliseconds.
1084
1085 @item release
1086 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1087 Default is 50 milliseconds.
1088
1089 @item asc
1090 When gain reduction is always needed ASC takes care of releasing to an
1091 average reduction level rather than reaching a reduction of 0 in the release
1092 time.
1093
1094 @item asc_level
1095 Select how much the release time is affected by ASC, 0 means nearly no changes
1096 in release time while 1 produces higher release times.
1097
1098 @item level
1099 Auto level output signal. Default is enabled.
1100 This normalizes audio back to 0dB if enabled.
1101 @end table
1102
1103 Depending on picked setting it is recommended to upsample input 2x or 4x times
1104 with @ref{aresample} before applying this filter.
1105
1106 @section allpass
1107
1108 Apply a two-pole all-pass filter with central frequency (in Hz)
1109 @var{frequency}, and filter-width @var{width}.
1110 An all-pass filter changes the audio's frequency to phase relationship
1111 without changing its frequency to amplitude relationship.
1112
1113 The filter accepts the following options:
1114
1115 @table @option
1116 @item frequency, f
1117 Set frequency in Hz.
1118
1119 @item width_type, t
1120 Set method to specify band-width of filter.
1121 @table @option
1122 @item h
1123 Hz
1124 @item q
1125 Q-Factor
1126 @item o
1127 octave
1128 @item s
1129 slope
1130 @end table
1131
1132 @item width, w
1133 Specify the band-width of a filter in width_type units.
1134
1135 @item channels, c
1136 Specify which channels to filter, by default all available are filtered.
1137 @end table
1138
1139 @section aloop
1140
1141 Loop audio samples.
1142
1143 The filter accepts the following options:
1144
1145 @table @option
1146 @item loop
1147 Set the number of loops. Setting this value to -1 will result in infinite loops.
1148 Default is 0.
1149
1150 @item size
1151 Set maximal number of samples. Default is 0.
1152
1153 @item start
1154 Set first sample of loop. Default is 0.
1155 @end table
1156
1157 @anchor{amerge}
1158 @section amerge
1159
1160 Merge two or more audio streams into a single multi-channel stream.
1161
1162 The filter accepts the following options:
1163
1164 @table @option
1165
1166 @item inputs
1167 Set the number of inputs. Default is 2.
1168
1169 @end table
1170
1171 If the channel layouts of the inputs are disjoint, and therefore compatible,
1172 the channel layout of the output will be set accordingly and the channels
1173 will be reordered as necessary. If the channel layouts of the inputs are not
1174 disjoint, the output will have all the channels of the first input then all
1175 the channels of the second input, in that order, and the channel layout of
1176 the output will be the default value corresponding to the total number of
1177 channels.
1178
1179 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1180 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1181 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1182 first input, b1 is the first channel of the second input).
1183
1184 On the other hand, if both input are in stereo, the output channels will be
1185 in the default order: a1, a2, b1, b2, and the channel layout will be
1186 arbitrarily set to 4.0, which may or may not be the expected value.
1187
1188 All inputs must have the same sample rate, and format.
1189
1190 If inputs do not have the same duration, the output will stop with the
1191 shortest.
1192
1193 @subsection Examples
1194
1195 @itemize
1196 @item
1197 Merge two mono files into a stereo stream:
1198 @example
1199 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1200 @end example
1201
1202 @item
1203 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1204 @example
1205 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
1206 @end example
1207 @end itemize
1208
1209 @section amix
1210
1211 Mixes multiple audio inputs into a single output.
1212
1213 Note that this filter only supports float samples (the @var{amerge}
1214 and @var{pan} audio filters support many formats). If the @var{amix}
1215 input has integer samples then @ref{aresample} will be automatically
1216 inserted to perform the conversion to float samples.
1217
1218 For example
1219 @example
1220 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1221 @end example
1222 will mix 3 input audio streams to a single output with the same duration as the
1223 first input and a dropout transition time of 3 seconds.
1224
1225 It accepts the following parameters:
1226 @table @option
1227
1228 @item inputs
1229 The number of inputs. If unspecified, it defaults to 2.
1230
1231 @item duration
1232 How to determine the end-of-stream.
1233 @table @option
1234
1235 @item longest
1236 The duration of the longest input. (default)
1237
1238 @item shortest
1239 The duration of the shortest input.
1240
1241 @item first
1242 The duration of the first input.
1243
1244 @end table
1245
1246 @item dropout_transition
1247 The transition time, in seconds, for volume renormalization when an input
1248 stream ends. The default value is 2 seconds.
1249
1250 @end table
1251
1252 @section anequalizer
1253
1254 High-order parametric multiband equalizer for each channel.
1255
1256 It accepts the following parameters:
1257 @table @option
1258 @item params
1259
1260 This option string is in format:
1261 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1262 Each equalizer band is separated by '|'.
1263
1264 @table @option
1265 @item chn
1266 Set channel number to which equalization will be applied.
1267 If input doesn't have that channel the entry is ignored.
1268
1269 @item f
1270 Set central frequency for band.
1271 If input doesn't have that frequency the entry is ignored.
1272
1273 @item w
1274 Set band width in hertz.
1275
1276 @item g
1277 Set band gain in dB.
1278
1279 @item t
1280 Set filter type for band, optional, can be:
1281
1282 @table @samp
1283 @item 0
1284 Butterworth, this is default.
1285
1286 @item 1
1287 Chebyshev type 1.
1288
1289 @item 2
1290 Chebyshev type 2.
1291 @end table
1292 @end table
1293
1294 @item curves
1295 With this option activated frequency response of anequalizer is displayed
1296 in video stream.
1297
1298 @item size
1299 Set video stream size. Only useful if curves option is activated.
1300
1301 @item mgain
1302 Set max gain that will be displayed. Only useful if curves option is activated.
1303 Setting this to a reasonable value makes it possible to display gain which is derived from
1304 neighbour bands which are too close to each other and thus produce higher gain
1305 when both are activated.
1306
1307 @item fscale
1308 Set frequency scale used to draw frequency response in video output.
1309 Can be linear or logarithmic. Default is logarithmic.
1310
1311 @item colors
1312 Set color for each channel curve which is going to be displayed in video stream.
1313 This is list of color names separated by space or by '|'.
1314 Unrecognised or missing colors will be replaced by white color.
1315 @end table
1316
1317 @subsection Examples
1318
1319 @itemize
1320 @item
1321 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1322 for first 2 channels using Chebyshev type 1 filter:
1323 @example
1324 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1325 @end example
1326 @end itemize
1327
1328 @subsection Commands
1329
1330 This filter supports the following commands:
1331 @table @option
1332 @item change
1333 Alter existing filter parameters.
1334 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1335
1336 @var{fN} is existing filter number, starting from 0, if no such filter is available
1337 error is returned.
1338 @var{freq} set new frequency parameter.
1339 @var{width} set new width parameter in herz.
1340 @var{gain} set new gain parameter in dB.
1341
1342 Full filter invocation with asendcmd may look like this:
1343 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1344 @end table
1345
1346 @section anull
1347
1348 Pass the audio source unchanged to the output.
1349
1350 @section apad
1351
1352 Pad the end of an audio stream with silence.
1353
1354 This can be used together with @command{ffmpeg} @option{-shortest} to
1355 extend audio streams to the same length as the video stream.
1356
1357 A description of the accepted options follows.
1358
1359 @table @option
1360 @item packet_size
1361 Set silence packet size. Default value is 4096.
1362
1363 @item pad_len
1364 Set the number of samples of silence to add to the end. After the
1365 value is reached, the stream is terminated. This option is mutually
1366 exclusive with @option{whole_len}.
1367
1368 @item whole_len
1369 Set the minimum total number of samples in the output audio stream. If
1370 the value is longer than the input audio length, silence is added to
1371 the end, until the value is reached. This option is mutually exclusive
1372 with @option{pad_len}.
1373 @end table
1374
1375 If neither the @option{pad_len} nor the @option{whole_len} option is
1376 set, the filter will add silence to the end of the input stream
1377 indefinitely.
1378
1379 @subsection Examples
1380
1381 @itemize
1382 @item
1383 Add 1024 samples of silence to the end of the input:
1384 @example
1385 apad=pad_len=1024
1386 @end example
1387
1388 @item
1389 Make sure the audio output will contain at least 10000 samples, pad
1390 the input with silence if required:
1391 @example
1392 apad=whole_len=10000
1393 @end example
1394
1395 @item
1396 Use @command{ffmpeg} to pad the audio input with silence, so that the
1397 video stream will always result the shortest and will be converted
1398 until the end in the output file when using the @option{shortest}
1399 option:
1400 @example
1401 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1402 @end example
1403 @end itemize
1404
1405 @section aphaser
1406 Add a phasing effect to the input audio.
1407
1408 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1409 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1410
1411 A description of the accepted parameters follows.
1412
1413 @table @option
1414 @item in_gain
1415 Set input gain. Default is 0.4.
1416
1417 @item out_gain
1418 Set output gain. Default is 0.74
1419
1420 @item delay
1421 Set delay in milliseconds. Default is 3.0.
1422
1423 @item decay
1424 Set decay. Default is 0.4.
1425
1426 @item speed
1427 Set modulation speed in Hz. Default is 0.5.
1428
1429 @item type
1430 Set modulation type. Default is triangular.
1431
1432 It accepts the following values:
1433 @table @samp
1434 @item triangular, t
1435 @item sinusoidal, s
1436 @end table
1437 @end table
1438
1439 @section apulsator
1440
1441 Audio pulsator is something between an autopanner and a tremolo.
1442 But it can produce funny stereo effects as well. Pulsator changes the volume
1443 of the left and right channel based on a LFO (low frequency oscillator) with
1444 different waveforms and shifted phases.
1445 This filter have the ability to define an offset between left and right
1446 channel. An offset of 0 means that both LFO shapes match each other.
1447 The left and right channel are altered equally - a conventional tremolo.
1448 An offset of 50% means that the shape of the right channel is exactly shifted
1449 in phase (or moved backwards about half of the frequency) - pulsator acts as
1450 an autopanner. At 1 both curves match again. Every setting in between moves the
1451 phase shift gapless between all stages and produces some "bypassing" sounds with
1452 sine and triangle waveforms. The more you set the offset near 1 (starting from
1453 the 0.5) the faster the signal passes from the left to the right speaker.
1454
1455 The filter accepts the following options:
1456
1457 @table @option
1458 @item level_in
1459 Set input gain. By default it is 1. Range is [0.015625 - 64].
1460
1461 @item level_out
1462 Set output gain. By default it is 1. Range is [0.015625 - 64].
1463
1464 @item mode
1465 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1466 sawup or sawdown. Default is sine.
1467
1468 @item amount
1469 Set modulation. Define how much of original signal is affected by the LFO.
1470
1471 @item offset_l
1472 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1473
1474 @item offset_r
1475 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1476
1477 @item width
1478 Set pulse width. Default is 1. Allowed range is [0 - 2].
1479
1480 @item timing
1481 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1482
1483 @item bpm
1484 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1485 is set to bpm.
1486
1487 @item ms
1488 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1489 is set to ms.
1490
1491 @item hz
1492 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1493 if timing is set to hz.
1494 @end table
1495
1496 @anchor{aresample}
1497 @section aresample
1498
1499 Resample the input audio to the specified parameters, using the
1500 libswresample library. If none are specified then the filter will
1501 automatically convert between its input and output.
1502
1503 This filter is also able to stretch/squeeze the audio data to make it match
1504 the timestamps or to inject silence / cut out audio to make it match the
1505 timestamps, do a combination of both or do neither.
1506
1507 The filter accepts the syntax
1508 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1509 expresses a sample rate and @var{resampler_options} is a list of
1510 @var{key}=@var{value} pairs, separated by ":". See the
1511 @ref{Resampler Options,,the "Resampler Options" section in the
1512 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1513 for the complete list of supported options.
1514
1515 @subsection Examples
1516
1517 @itemize
1518 @item
1519 Resample the input audio to 44100Hz:
1520 @example
1521 aresample=44100
1522 @end example
1523
1524 @item
1525 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1526 samples per second compensation:
1527 @example
1528 aresample=async=1000
1529 @end example
1530 @end itemize
1531
1532 @section areverse
1533
1534 Reverse an audio clip.
1535
1536 Warning: This filter requires memory to buffer the entire clip, so trimming
1537 is suggested.
1538
1539 @subsection Examples
1540
1541 @itemize
1542 @item
1543 Take the first 5 seconds of a clip, and reverse it.
1544 @example
1545 atrim=end=5,areverse
1546 @end example
1547 @end itemize
1548
1549 @section asetnsamples
1550
1551 Set the number of samples per each output audio frame.
1552
1553 The last output packet may contain a different number of samples, as
1554 the filter will flush all the remaining samples when the input audio
1555 signals its end.
1556
1557 The filter accepts the following options:
1558
1559 @table @option
1560
1561 @item nb_out_samples, n
1562 Set the number of frames per each output audio frame. The number is
1563 intended as the number of samples @emph{per each channel}.
1564 Default value is 1024.
1565
1566 @item pad, p
1567 If set to 1, the filter will pad the last audio frame with zeroes, so
1568 that the last frame will contain the same number of samples as the
1569 previous ones. Default value is 1.
1570 @end table
1571
1572 For example, to set the number of per-frame samples to 1234 and
1573 disable padding for the last frame, use:
1574 @example
1575 asetnsamples=n=1234:p=0
1576 @end example
1577
1578 @section asetrate
1579
1580 Set the sample rate without altering the PCM data.
1581 This will result in a change of speed and pitch.
1582
1583 The filter accepts the following options:
1584
1585 @table @option
1586 @item sample_rate, r
1587 Set the output sample rate. Default is 44100 Hz.
1588 @end table
1589
1590 @section ashowinfo
1591
1592 Show a line containing various information for each input audio frame.
1593 The input audio is not modified.
1594
1595 The shown line contains a sequence of key/value pairs of the form
1596 @var{key}:@var{value}.
1597
1598 The following values are shown in the output:
1599
1600 @table @option
1601 @item n
1602 The (sequential) number of the input frame, starting from 0.
1603
1604 @item pts
1605 The presentation timestamp of the input frame, in time base units; the time base
1606 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1607
1608 @item pts_time
1609 The presentation timestamp of the input frame in seconds.
1610
1611 @item pos
1612 position of the frame in the input stream, -1 if this information in
1613 unavailable and/or meaningless (for example in case of synthetic audio)
1614
1615 @item fmt
1616 The sample format.
1617
1618 @item chlayout
1619 The channel layout.
1620
1621 @item rate
1622 The sample rate for the audio frame.
1623
1624 @item nb_samples
1625 The number of samples (per channel) in the frame.
1626
1627 @item checksum
1628 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1629 audio, the data is treated as if all the planes were concatenated.
1630
1631 @item plane_checksums
1632 A list of Adler-32 checksums for each data plane.
1633 @end table
1634
1635 @anchor{astats}
1636 @section astats
1637
1638 Display time domain statistical information about the audio channels.
1639 Statistics are calculated and displayed for each audio channel and,
1640 where applicable, an overall figure is also given.
1641
1642 It accepts the following option:
1643 @table @option
1644 @item length
1645 Short window length in seconds, used for peak and trough RMS measurement.
1646 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1647
1648 @item metadata
1649
1650 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1651 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1652 disabled.
1653
1654 Available keys for each channel are:
1655 DC_offset
1656 Min_level
1657 Max_level
1658 Min_difference
1659 Max_difference
1660 Mean_difference
1661 RMS_difference
1662 Peak_level
1663 RMS_peak
1664 RMS_trough
1665 Crest_factor
1666 Flat_factor
1667 Peak_count
1668 Bit_depth
1669 Dynamic_range
1670
1671 and for Overall:
1672 DC_offset
1673 Min_level
1674 Max_level
1675 Min_difference
1676 Max_difference
1677 Mean_difference
1678 RMS_difference
1679 Peak_level
1680 RMS_level
1681 RMS_peak
1682 RMS_trough
1683 Flat_factor
1684 Peak_count
1685 Bit_depth
1686 Number_of_samples
1687
1688 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1689 this @code{lavfi.astats.Overall.Peak_count}.
1690
1691 For description what each key means read below.
1692
1693 @item reset
1694 Set number of frame after which stats are going to be recalculated.
1695 Default is disabled.
1696 @end table
1697
1698 A description of each shown parameter follows:
1699
1700 @table @option
1701 @item DC offset
1702 Mean amplitude displacement from zero.
1703
1704 @item Min level
1705 Minimal sample level.
1706
1707 @item Max level
1708 Maximal sample level.
1709
1710 @item Min difference
1711 Minimal difference between two consecutive samples.
1712
1713 @item Max difference
1714 Maximal difference between two consecutive samples.
1715
1716 @item Mean difference
1717 Mean difference between two consecutive samples.
1718 The average of each difference between two consecutive samples.
1719
1720 @item RMS difference
1721 Root Mean Square difference between two consecutive samples.
1722
1723 @item Peak level dB
1724 @item RMS level dB
1725 Standard peak and RMS level measured in dBFS.
1726
1727 @item RMS peak dB
1728 @item RMS trough dB
1729 Peak and trough values for RMS level measured over a short window.
1730
1731 @item Crest factor
1732 Standard ratio of peak to RMS level (note: not in dB).
1733
1734 @item Flat factor
1735 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1736 (i.e. either @var{Min level} or @var{Max level}).
1737
1738 @item Peak count
1739 Number of occasions (not the number of samples) that the signal attained either
1740 @var{Min level} or @var{Max level}.
1741
1742 @item Bit depth
1743 Overall bit depth of audio. Number of bits used for each sample.
1744
1745 @item Dynamic range
1746 Measured dynamic range of audio in dB.
1747 @end table
1748
1749 @section atempo
1750
1751 Adjust audio tempo.
1752
1753 The filter accepts exactly one parameter, the audio tempo. If not
1754 specified then the filter will assume nominal 1.0 tempo. Tempo must
1755 be in the [0.5, 2.0] range.
1756
1757 @subsection Examples
1758
1759 @itemize
1760 @item
1761 Slow down audio to 80% tempo:
1762 @example
1763 atempo=0.8
1764 @end example
1765
1766 @item
1767 To speed up audio to 125% tempo:
1768 @example
1769 atempo=1.25
1770 @end example
1771 @end itemize
1772
1773 @section atrim
1774
1775 Trim the input so that the output contains one continuous subpart of the input.
1776
1777 It accepts the following parameters:
1778 @table @option
1779 @item start
1780 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1781 sample with the timestamp @var{start} will be the first sample in the output.
1782
1783 @item end
1784 Specify time of the first audio sample that will be dropped, i.e. the
1785 audio sample immediately preceding the one with the timestamp @var{end} will be
1786 the last sample in the output.
1787
1788 @item start_pts
1789 Same as @var{start}, except this option sets the start timestamp in samples
1790 instead of seconds.
1791
1792 @item end_pts
1793 Same as @var{end}, except this option sets the end timestamp in samples instead
1794 of seconds.
1795
1796 @item duration
1797 The maximum duration of the output in seconds.
1798
1799 @item start_sample
1800 The number of the first sample that should be output.
1801
1802 @item end_sample
1803 The number of the first sample that should be dropped.
1804 @end table
1805
1806 @option{start}, @option{end}, and @option{duration} are expressed as time
1807 duration specifications; see
1808 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1809
1810 Note that the first two sets of the start/end options and the @option{duration}
1811 option look at the frame timestamp, while the _sample options simply count the
1812 samples that pass through the filter. So start/end_pts and start/end_sample will
1813 give different results when the timestamps are wrong, inexact or do not start at
1814 zero. Also note that this filter does not modify the timestamps. If you wish
1815 to have the output timestamps start at zero, insert the asetpts filter after the
1816 atrim filter.
1817
1818 If multiple start or end options are set, this filter tries to be greedy and
1819 keep all samples that match at least one of the specified constraints. To keep
1820 only the part that matches all the constraints at once, chain multiple atrim
1821 filters.
1822
1823 The defaults are such that all the input is kept. So it is possible to set e.g.
1824 just the end values to keep everything before the specified time.
1825
1826 Examples:
1827 @itemize
1828 @item
1829 Drop everything except the second minute of input:
1830 @example
1831 ffmpeg -i INPUT -af atrim=60:120
1832 @end example
1833
1834 @item
1835 Keep only the first 1000 samples:
1836 @example
1837 ffmpeg -i INPUT -af atrim=end_sample=1000
1838 @end example
1839
1840 @end itemize
1841
1842 @section bandpass
1843
1844 Apply a two-pole Butterworth band-pass filter with central
1845 frequency @var{frequency}, and (3dB-point) band-width width.
1846 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1847 instead of the default: constant 0dB peak gain.
1848 The filter roll off at 6dB per octave (20dB per decade).
1849
1850 The filter accepts the following options:
1851
1852 @table @option
1853 @item frequency, f
1854 Set the filter's central frequency. Default is @code{3000}.
1855
1856 @item csg
1857 Constant skirt gain if set to 1. Defaults to 0.
1858
1859 @item width_type, t
1860 Set method to specify band-width of filter.
1861 @table @option
1862 @item h
1863 Hz
1864 @item q
1865 Q-Factor
1866 @item o
1867 octave
1868 @item s
1869 slope
1870 @end table
1871
1872 @item width, w
1873 Specify the band-width of a filter in width_type units.
1874
1875 @item channels, c
1876 Specify which channels to filter, by default all available are filtered.
1877 @end table
1878
1879 @section bandreject
1880
1881 Apply a two-pole Butterworth band-reject filter with central
1882 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1883 The filter roll off at 6dB per octave (20dB per decade).
1884
1885 The filter accepts the following options:
1886
1887 @table @option
1888 @item frequency, f
1889 Set the filter's central frequency. Default is @code{3000}.
1890
1891 @item width_type, t
1892 Set method to specify band-width of filter.
1893 @table @option
1894 @item h
1895 Hz
1896 @item q
1897 Q-Factor
1898 @item o
1899 octave
1900 @item s
1901 slope
1902 @end table
1903
1904 @item width, w
1905 Specify the band-width of a filter in width_type units.
1906
1907 @item channels, c
1908 Specify which channels to filter, by default all available are filtered.
1909 @end table
1910
1911 @section bass
1912
1913 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1914 shelving filter with a response similar to that of a standard
1915 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1916
1917 The filter accepts the following options:
1918
1919 @table @option
1920 @item gain, g
1921 Give the gain at 0 Hz. Its useful range is about -20
1922 (for a large cut) to +20 (for a large boost).
1923 Beware of clipping when using a positive gain.
1924
1925 @item frequency, f
1926 Set the filter's central frequency and so can be used
1927 to extend or reduce the frequency range to be boosted or cut.
1928 The default value is @code{100} Hz.
1929
1930 @item width_type, t
1931 Set method to specify band-width of filter.
1932 @table @option
1933 @item h
1934 Hz
1935 @item q
1936 Q-Factor
1937 @item o
1938 octave
1939 @item s
1940 slope
1941 @end table
1942
1943 @item width, w
1944 Determine how steep is the filter's shelf transition.
1945
1946 @item channels, c
1947 Specify which channels to filter, by default all available are filtered.
1948 @end table
1949
1950 @section biquad
1951
1952 Apply a biquad IIR filter with the given coefficients.
1953 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1954 are the numerator and denominator coefficients respectively.
1955 and @var{channels}, @var{c} specify which channels to filter, by default all
1956 available are filtered.
1957
1958 @section bs2b
1959 Bauer stereo to binaural transformation, which improves headphone listening of
1960 stereo audio records.
1961
1962 To enable compilation of this filter you need to configure FFmpeg with
1963 @code{--enable-libbs2b}.
1964
1965 It accepts the following parameters:
1966 @table @option
1967
1968 @item profile
1969 Pre-defined crossfeed level.
1970 @table @option
1971
1972 @item default
1973 Default level (fcut=700, feed=50).
1974
1975 @item cmoy
1976 Chu Moy circuit (fcut=700, feed=60).
1977
1978 @item jmeier
1979 Jan Meier circuit (fcut=650, feed=95).
1980
1981 @end table
1982
1983 @item fcut
1984 Cut frequency (in Hz).
1985
1986 @item feed
1987 Feed level (in Hz).
1988
1989 @end table
1990
1991 @section channelmap
1992
1993 Remap input channels to new locations.
1994
1995 It accepts the following parameters:
1996 @table @option
1997 @item map
1998 Map channels from input to output. The argument is a '|'-separated list of
1999 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2000 @var{in_channel} form. @var{in_channel} can be either the name of the input
2001 channel (e.g. FL for front left) or its index in the input channel layout.
2002 @var{out_channel} is the name of the output channel or its index in the output
2003 channel layout. If @var{out_channel} is not given then it is implicitly an
2004 index, starting with zero and increasing by one for each mapping.
2005
2006 @item channel_layout
2007 The channel layout of the output stream.
2008 @end table
2009
2010 If no mapping is present, the filter will implicitly map input channels to
2011 output channels, preserving indices.
2012
2013 For example, assuming a 5.1+downmix input MOV file,
2014 @example
2015 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2016 @end example
2017 will create an output WAV file tagged as stereo from the downmix channels of
2018 the input.
2019
2020 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2021 @example
2022 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2023 @end example
2024
2025 @section channelsplit
2026
2027 Split each channel from an input audio stream into a separate output stream.
2028
2029 It accepts the following parameters:
2030 @table @option
2031 @item channel_layout
2032 The channel layout of the input stream. The default is "stereo".
2033 @end table
2034
2035 For example, assuming a stereo input MP3 file,
2036 @example
2037 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2038 @end example
2039 will create an output Matroska file with two audio streams, one containing only
2040 the left channel and the other the right channel.
2041
2042 Split a 5.1 WAV file into per-channel files:
2043 @example
2044 ffmpeg -i in.wav -filter_complex
2045 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2046 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2047 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2048 side_right.wav
2049 @end example
2050
2051 @section chorus
2052 Add a chorus effect to the audio.
2053
2054 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2055
2056 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2057 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2058 The modulation depth defines the range the modulated delay is played before or after
2059 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2060 sound tuned around the original one, like in a chorus where some vocals are slightly
2061 off key.
2062
2063 It accepts the following parameters:
2064 @table @option
2065 @item in_gain
2066 Set input gain. Default is 0.4.
2067
2068 @item out_gain
2069 Set output gain. Default is 0.4.
2070
2071 @item delays
2072 Set delays. A typical delay is around 40ms to 60ms.
2073
2074 @item decays
2075 Set decays.
2076
2077 @item speeds
2078 Set speeds.
2079
2080 @item depths
2081 Set depths.
2082 @end table
2083
2084 @subsection Examples
2085
2086 @itemize
2087 @item
2088 A single delay:
2089 @example
2090 chorus=0.7:0.9:55:0.4:0.25:2
2091 @end example
2092
2093 @item
2094 Two delays:
2095 @example
2096 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2097 @end example
2098
2099 @item
2100 Fuller sounding chorus with three delays:
2101 @example
2102 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
2103 @end example
2104 @end itemize
2105
2106 @section compand
2107 Compress or expand the audio's dynamic range.
2108
2109 It accepts the following parameters:
2110
2111 @table @option
2112
2113 @item attacks
2114 @item decays
2115 A list of times in seconds for each channel over which the instantaneous level
2116 of the input signal is averaged to determine its volume. @var{attacks} refers to
2117 increase of volume and @var{decays} refers to decrease of volume. For most
2118 situations, the attack time (response to the audio getting louder) should be
2119 shorter than the decay time, because the human ear is more sensitive to sudden
2120 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2121 a typical value for decay is 0.8 seconds.
2122 If specified number of attacks & decays is lower than number of channels, the last
2123 set attack/decay will be used for all remaining channels.
2124
2125 @item points
2126 A list of points for the transfer function, specified in dB relative to the
2127 maximum possible signal amplitude. Each key points list must be defined using
2128 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2129 @code{x0/y0 x1/y1 x2/y2 ....}
2130
2131 The input values must be in strictly increasing order but the transfer function
2132 does not have to be monotonically rising. The point @code{0/0} is assumed but
2133 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2134 function are @code{-70/-70|-60/-20|1/0}.
2135
2136 @item soft-knee
2137 Set the curve radius in dB for all joints. It defaults to 0.01.
2138
2139 @item gain
2140 Set the additional gain in dB to be applied at all points on the transfer
2141 function. This allows for easy adjustment of the overall gain.
2142 It defaults to 0.
2143
2144 @item volume
2145 Set an initial volume, in dB, to be assumed for each channel when filtering
2146 starts. This permits the user to supply a nominal level initially, so that, for
2147 example, a very large gain is not applied to initial signal levels before the
2148 companding has begun to operate. A typical value for audio which is initially
2149 quiet is -90 dB. It defaults to 0.
2150
2151 @item delay
2152 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2153 delayed before being fed to the volume adjuster. Specifying a delay
2154 approximately equal to the attack/decay times allows the filter to effectively
2155 operate in predictive rather than reactive mode. It defaults to 0.
2156
2157 @end table
2158
2159 @subsection Examples
2160
2161 @itemize
2162 @item
2163 Make music with both quiet and loud passages suitable for listening to in a
2164 noisy environment:
2165 @example
2166 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2167 @end example
2168
2169 Another example for audio with whisper and explosion parts:
2170 @example
2171 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2172 @end example
2173
2174 @item
2175 A noise gate for when the noise is at a lower level than the signal:
2176 @example
2177 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2178 @end example
2179
2180 @item
2181 Here is another noise gate, this time for when the noise is at a higher level
2182 than the signal (making it, in some ways, similar to squelch):
2183 @example
2184 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2185 @end example
2186
2187 @item
2188 2:1 compression starting at -6dB:
2189 @example
2190 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2191 @end example
2192
2193 @item
2194 2:1 compression starting at -9dB:
2195 @example
2196 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2197 @end example
2198
2199 @item
2200 2:1 compression starting at -12dB:
2201 @example
2202 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2203 @end example
2204
2205 @item
2206 2:1 compression starting at -18dB:
2207 @example
2208 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2209 @end example
2210
2211 @item
2212 3:1 compression starting at -15dB:
2213 @example
2214 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2215 @end example
2216
2217 @item
2218 Compressor/Gate:
2219 @example
2220 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2221 @end example
2222
2223 @item
2224 Expander:
2225 @example
2226 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
2227 @end example
2228
2229 @item
2230 Hard limiter at -6dB:
2231 @example
2232 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2233 @end example
2234
2235 @item
2236 Hard limiter at -12dB:
2237 @example
2238 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2239 @end example
2240
2241 @item
2242 Hard noise gate at -35 dB:
2243 @example
2244 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2245 @end example
2246
2247 @item
2248 Soft limiter:
2249 @example
2250 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2251 @end example
2252 @end itemize
2253
2254 @section compensationdelay
2255
2256 Compensation Delay Line is a metric based delay to compensate differing
2257 positions of microphones or speakers.
2258
2259 For example, you have recorded guitar with two microphones placed in
2260 different location. Because the front of sound wave has fixed speed in
2261 normal conditions, the phasing of microphones can vary and depends on
2262 their location and interposition. The best sound mix can be achieved when
2263 these microphones are in phase (synchronized). Note that distance of
2264 ~30 cm between microphones makes one microphone to capture signal in
2265 antiphase to another microphone. That makes the final mix sounding moody.
2266 This filter helps to solve phasing problems by adding different delays
2267 to each microphone track and make them synchronized.
2268
2269 The best result can be reached when you take one track as base and
2270 synchronize other tracks one by one with it.
2271 Remember that synchronization/delay tolerance depends on sample rate, too.
2272 Higher sample rates will give more tolerance.
2273
2274 It accepts the following parameters:
2275
2276 @table @option
2277 @item mm
2278 Set millimeters distance. This is compensation distance for fine tuning.
2279 Default is 0.
2280
2281 @item cm
2282 Set cm distance. This is compensation distance for tightening distance setup.
2283 Default is 0.
2284
2285 @item m
2286 Set meters distance. This is compensation distance for hard distance setup.
2287 Default is 0.
2288
2289 @item dry
2290 Set dry amount. Amount of unprocessed (dry) signal.
2291 Default is 0.
2292
2293 @item wet
2294 Set wet amount. Amount of processed (wet) signal.
2295 Default is 1.
2296
2297 @item temp
2298 Set temperature degree in Celsius. This is the temperature of the environment.
2299 Default is 20.
2300 @end table
2301
2302 @section crossfeed
2303 Apply headphone crossfeed filter.
2304
2305 Crossfeed is the process of blending the left and right channels of stereo
2306 audio recording.
2307 It is mainly used to reduce extreme stereo separation of low frequencies.
2308
2309 The intent is to produce more speaker like sound to the listener.
2310
2311 The filter accepts the following options:
2312
2313 @table @option
2314 @item strength
2315 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
2316 This sets gain of low shelf filter for side part of stereo image.
2317 Default is -6dB. Max allowed is -30db when strength is set to 1.
2318
2319 @item range
2320 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
2321 This sets cut off frequency of low shelf filter. Default is cut off near
2322 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
2323
2324 @item level_in
2325 Set input gain. Default is 0.9.
2326
2327 @item level_out
2328 Set output gain. Default is 1.
2329 @end table
2330
2331 @section crystalizer
2332 Simple algorithm to expand audio dynamic range.
2333
2334 The filter accepts the following options:
2335
2336 @table @option
2337 @item i
2338 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2339 (unchanged sound) to 10.0 (maximum effect).
2340
2341 @item c
2342 Enable clipping. By default is enabled.
2343 @end table
2344
2345 @section dcshift
2346 Apply a DC shift to the audio.
2347
2348 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2349 in the recording chain) from the audio. The effect of a DC offset is reduced
2350 headroom and hence volume. The @ref{astats} filter can be used to determine if
2351 a signal has a DC offset.
2352
2353 @table @option
2354 @item shift
2355 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2356 the audio.
2357
2358 @item limitergain
2359 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2360 used to prevent clipping.
2361 @end table
2362
2363 @section dynaudnorm
2364 Dynamic Audio Normalizer.
2365
2366 This filter applies a certain amount of gain to the input audio in order
2367 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2368 contrast to more "simple" normalization algorithms, the Dynamic Audio
2369 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2370 This allows for applying extra gain to the "quiet" sections of the audio
2371 while avoiding distortions or clipping the "loud" sections. In other words:
2372 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2373 sections, in the sense that the volume of each section is brought to the
2374 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2375 this goal *without* applying "dynamic range compressing". It will retain 100%
2376 of the dynamic range *within* each section of the audio file.
2377
2378 @table @option
2379 @item f
2380 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2381 Default is 500 milliseconds.
2382 The Dynamic Audio Normalizer processes the input audio in small chunks,
2383 referred to as frames. This is required, because a peak magnitude has no
2384 meaning for just a single sample value. Instead, we need to determine the
2385 peak magnitude for a contiguous sequence of sample values. While a "standard"
2386 normalizer would simply use the peak magnitude of the complete file, the
2387 Dynamic Audio Normalizer determines the peak magnitude individually for each
2388 frame. The length of a frame is specified in milliseconds. By default, the
2389 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2390 been found to give good results with most files.
2391 Note that the exact frame length, in number of samples, will be determined
2392 automatically, based on the sampling rate of the individual input audio file.
2393
2394 @item g
2395 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2396 number. Default is 31.
2397 Probably the most important parameter of the Dynamic Audio Normalizer is the
2398 @code{window size} of the Gaussian smoothing filter. The filter's window size
2399 is specified in frames, centered around the current frame. For the sake of
2400 simplicity, this must be an odd number. Consequently, the default value of 31
2401 takes into account the current frame, as well as the 15 preceding frames and
2402 the 15 subsequent frames. Using a larger window results in a stronger
2403 smoothing effect and thus in less gain variation, i.e. slower gain
2404 adaptation. Conversely, using a smaller window results in a weaker smoothing
2405 effect and thus in more gain variation, i.e. faster gain adaptation.
2406 In other words, the more you increase this value, the more the Dynamic Audio
2407 Normalizer will behave like a "traditional" normalization filter. On the
2408 contrary, the more you decrease this value, the more the Dynamic Audio
2409 Normalizer will behave like a dynamic range compressor.
2410
2411 @item p
2412 Set the target peak value. This specifies the highest permissible magnitude
2413 level for the normalized audio input. This filter will try to approach the
2414 target peak magnitude as closely as possible, but at the same time it also
2415 makes sure that the normalized signal will never exceed the peak magnitude.
2416 A frame's maximum local gain factor is imposed directly by the target peak
2417 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2418 It is not recommended to go above this value.
2419
2420 @item m
2421 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2422 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2423 factor for each input frame, i.e. the maximum gain factor that does not
2424 result in clipping or distortion. The maximum gain factor is determined by
2425 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2426 additionally bounds the frame's maximum gain factor by a predetermined
2427 (global) maximum gain factor. This is done in order to avoid excessive gain
2428 factors in "silent" or almost silent frames. By default, the maximum gain
2429 factor is 10.0, For most inputs the default value should be sufficient and
2430 it usually is not recommended to increase this value. Though, for input
2431 with an extremely low overall volume level, it may be necessary to allow even
2432 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2433 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2434 Instead, a "sigmoid" threshold function will be applied. This way, the
2435 gain factors will smoothly approach the threshold value, but never exceed that
2436 value.
2437
2438 @item r
2439 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2440 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2441 This means that the maximum local gain factor for each frame is defined
2442 (only) by the frame's highest magnitude sample. This way, the samples can
2443 be amplified as much as possible without exceeding the maximum signal
2444 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2445 Normalizer can also take into account the frame's root mean square,
2446 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2447 determine the power of a time-varying signal. It is therefore considered
2448 that the RMS is a better approximation of the "perceived loudness" than
2449 just looking at the signal's peak magnitude. Consequently, by adjusting all
2450 frames to a constant RMS value, a uniform "perceived loudness" can be
2451 established. If a target RMS value has been specified, a frame's local gain
2452 factor is defined as the factor that would result in exactly that RMS value.
2453 Note, however, that the maximum local gain factor is still restricted by the
2454 frame's highest magnitude sample, in order to prevent clipping.
2455
2456 @item n
2457 Enable channels coupling. By default is enabled.
2458 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2459 amount. This means the same gain factor will be applied to all channels, i.e.
2460 the maximum possible gain factor is determined by the "loudest" channel.
2461 However, in some recordings, it may happen that the volume of the different
2462 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2463 In this case, this option can be used to disable the channel coupling. This way,
2464 the gain factor will be determined independently for each channel, depending
2465 only on the individual channel's highest magnitude sample. This allows for
2466 harmonizing the volume of the different channels.
2467
2468 @item c
2469 Enable DC bias correction. By default is disabled.
2470 An audio signal (in the time domain) is a sequence of sample values.
2471 In the Dynamic Audio Normalizer these sample values are represented in the
2472 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2473 audio signal, or "waveform", should be centered around the zero point.
2474 That means if we calculate the mean value of all samples in a file, or in a
2475 single frame, then the result should be 0.0 or at least very close to that
2476 value. If, however, there is a significant deviation of the mean value from
2477 0.0, in either positive or negative direction, this is referred to as a
2478 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2479 Audio Normalizer provides optional DC bias correction.
2480 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2481 the mean value, or "DC correction" offset, of each input frame and subtract
2482 that value from all of the frame's sample values which ensures those samples
2483 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2484 boundaries, the DC correction offset values will be interpolated smoothly
2485 between neighbouring frames.
2486
2487 @item b
2488 Enable alternative boundary mode. By default is disabled.
2489 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2490 around each frame. This includes the preceding frames as well as the
2491 subsequent frames. However, for the "boundary" frames, located at the very
2492 beginning and at the very end of the audio file, not all neighbouring
2493 frames are available. In particular, for the first few frames in the audio
2494 file, the preceding frames are not known. And, similarly, for the last few
2495 frames in the audio file, the subsequent frames are not known. Thus, the
2496 question arises which gain factors should be assumed for the missing frames
2497 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2498 to deal with this situation. The default boundary mode assumes a gain factor
2499 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2500 "fade out" at the beginning and at the end of the input, respectively.
2501
2502 @item s
2503 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2504 By default, the Dynamic Audio Normalizer does not apply "traditional"
2505 compression. This means that signal peaks will not be pruned and thus the
2506 full dynamic range will be retained within each local neighbourhood. However,
2507 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2508 normalization algorithm with a more "traditional" compression.
2509 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2510 (thresholding) function. If (and only if) the compression feature is enabled,
2511 all input frames will be processed by a soft knee thresholding function prior
2512 to the actual normalization process. Put simply, the thresholding function is
2513 going to prune all samples whose magnitude exceeds a certain threshold value.
2514 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2515 value. Instead, the threshold value will be adjusted for each individual
2516 frame.
2517 In general, smaller parameters result in stronger compression, and vice versa.
2518 Values below 3.0 are not recommended, because audible distortion may appear.
2519 @end table
2520
2521 @section earwax
2522
2523 Make audio easier to listen to on headphones.
2524
2525 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2526 so that when listened to on headphones the stereo image is moved from
2527 inside your head (standard for headphones) to outside and in front of
2528 the listener (standard for speakers).
2529
2530 Ported from SoX.
2531
2532 @section equalizer
2533
2534 Apply a two-pole peaking equalisation (EQ) filter. With this
2535 filter, the signal-level at and around a selected frequency can
2536 be increased or decreased, whilst (unlike bandpass and bandreject
2537 filters) that at all other frequencies is unchanged.
2538
2539 In order to produce complex equalisation curves, this filter can
2540 be given several times, each with a different central frequency.
2541
2542 The filter accepts the following options:
2543
2544 @table @option
2545 @item frequency, f
2546 Set the filter's central frequency in Hz.
2547
2548 @item width_type, t
2549 Set method to specify band-width of filter.
2550 @table @option
2551 @item h
2552 Hz
2553 @item q
2554 Q-Factor
2555 @item o
2556 octave
2557 @item s
2558 slope
2559 @end table
2560
2561 @item width, w
2562 Specify the band-width of a filter in width_type units.
2563
2564 @item gain, g
2565 Set the required gain or attenuation in dB.
2566 Beware of clipping when using a positive gain.
2567
2568 @item channels, c
2569 Specify which channels to filter, by default all available are filtered.
2570 @end table
2571
2572 @subsection Examples
2573 @itemize
2574 @item
2575 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2576 @example
2577 equalizer=f=1000:t=h:width=200:g=-10
2578 @end example
2579
2580 @item
2581 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2582 @example
2583 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
2584 @end example
2585 @end itemize
2586
2587 @section extrastereo
2588
2589 Linearly increases the difference between left and right channels which
2590 adds some sort of "live" effect to playback.
2591
2592 The filter accepts the following options:
2593
2594 @table @option
2595 @item m
2596 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2597 (average of both channels), with 1.0 sound will be unchanged, with
2598 -1.0 left and right channels will be swapped.
2599
2600 @item c
2601 Enable clipping. By default is enabled.
2602 @end table
2603
2604 @section firequalizer
2605 Apply FIR Equalization using arbitrary frequency response.
2606
2607 The filter accepts the following option:
2608
2609 @table @option
2610 @item gain
2611 Set gain curve equation (in dB). The expression can contain variables:
2612 @table @option
2613 @item f
2614 the evaluated frequency
2615 @item sr
2616 sample rate
2617 @item ch
2618 channel number, set to 0 when multichannels evaluation is disabled
2619 @item chid
2620 channel id, see libavutil/channel_layout.h, set to the first channel id when
2621 multichannels evaluation is disabled
2622 @item chs
2623 number of channels
2624 @item chlayout
2625 channel_layout, see libavutil/channel_layout.h
2626
2627 @end table
2628 and functions:
2629 @table @option
2630 @item gain_interpolate(f)
2631 interpolate gain on frequency f based on gain_entry
2632 @item cubic_interpolate(f)
2633 same as gain_interpolate, but smoother
2634 @end table
2635 This option is also available as command. Default is @code{gain_interpolate(f)}.
2636
2637 @item gain_entry
2638 Set gain entry for gain_interpolate function. The expression can
2639 contain functions:
2640 @table @option
2641 @item entry(f, g)
2642 store gain entry at frequency f with value g
2643 @end table
2644 This option is also available as command.
2645
2646 @item delay
2647 Set filter delay in seconds. Higher value means more accurate.
2648 Default is @code{0.01}.
2649
2650 @item accuracy
2651 Set filter accuracy in Hz. Lower value means more accurate.
2652 Default is @code{5}.
2653
2654 @item wfunc
2655 Set window function. Acceptable values are:
2656 @table @option
2657 @item rectangular
2658 rectangular window, useful when gain curve is already smooth
2659 @item hann
2660 hann window (default)
2661 @item hamming
2662 hamming window
2663 @item blackman
2664 blackman window
2665 @item nuttall3
2666 3-terms continuous 1st derivative nuttall window
2667 @item mnuttall3
2668 minimum 3-terms discontinuous nuttall window
2669 @item nuttall
2670 4-terms continuous 1st derivative nuttall window
2671 @item bnuttall
2672 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2673 @item bharris
2674 blackman-harris window
2675 @item tukey
2676 tukey window
2677 @end table
2678
2679 @item fixed
2680 If enabled, use fixed number of audio samples. This improves speed when
2681 filtering with large delay. Default is disabled.
2682
2683 @item multi
2684 Enable multichannels evaluation on gain. Default is disabled.
2685
2686 @item zero_phase
2687 Enable zero phase mode by subtracting timestamp to compensate delay.
2688 Default is disabled.
2689
2690 @item scale
2691 Set scale used by gain. Acceptable values are:
2692 @table @option
2693 @item linlin
2694 linear frequency, linear gain
2695 @item linlog
2696 linear frequency, logarithmic (in dB) gain (default)
2697 @item loglin
2698 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
2699 @item loglog
2700 logarithmic frequency, logarithmic gain
2701 @end table
2702
2703 @item dumpfile
2704 Set file for dumping, suitable for gnuplot.
2705
2706 @item dumpscale
2707 Set scale for dumpfile. Acceptable values are same with scale option.
2708 Default is linlog.
2709
2710 @item fft2
2711 Enable 2-channel convolution using complex FFT. This improves speed significantly.
2712 Default is disabled.
2713
2714 @item min_phase
2715 Enable minimum phase impulse response. Default is disabled.
2716 @end table
2717
2718 @subsection Examples
2719 @itemize
2720 @item
2721 lowpass at 1000 Hz:
2722 @example
2723 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2724 @end example
2725 @item
2726 lowpass at 1000 Hz with gain_entry:
2727 @example
2728 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2729 @end example
2730 @item
2731 custom equalization:
2732 @example
2733 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2734 @end example
2735 @item
2736 higher delay with zero phase to compensate delay:
2737 @example
2738 firequalizer=delay=0.1:fixed=on:zero_phase=on
2739 @end example
2740 @item
2741 lowpass on left channel, highpass on right channel:
2742 @example
2743 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2744 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2745 @end example
2746 @end itemize
2747
2748 @section flanger
2749 Apply a flanging effect to the audio.
2750
2751 The filter accepts the following options:
2752
2753 @table @option
2754 @item delay
2755 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2756
2757 @item depth
2758 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
2759
2760 @item regen
2761 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2762 Default value is 0.
2763
2764 @item width
2765 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2766 Default value is 71.
2767
2768 @item speed
2769 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2770
2771 @item shape
2772 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2773 Default value is @var{sinusoidal}.
2774
2775 @item phase
2776 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2777 Default value is 25.
2778
2779 @item interp
2780 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2781 Default is @var{linear}.
2782 @end table
2783
2784 @section haas
2785 Apply Haas effect to audio.
2786
2787 Note that this makes most sense to apply on mono signals.
2788 With this filter applied to mono signals it give some directionality and
2789 stretches its stereo image.
2790
2791 The filter accepts the following options:
2792
2793 @table @option
2794 @item level_in
2795 Set input level. By default is @var{1}, or 0dB
2796
2797 @item level_out
2798 Set output level. By default is @var{1}, or 0dB.
2799
2800 @item side_gain
2801 Set gain applied to side part of signal. By default is @var{1}.
2802
2803 @item middle_source
2804 Set kind of middle source. Can be one of the following:
2805
2806 @table @samp
2807 @item left
2808 Pick left channel.
2809
2810 @item right
2811 Pick right channel.
2812
2813 @item mid
2814 Pick middle part signal of stereo image.
2815
2816 @item side
2817 Pick side part signal of stereo image.
2818 @end table
2819
2820 @item middle_phase
2821 Change middle phase. By default is disabled.
2822
2823 @item left_delay
2824 Set left channel delay. By default is @var{2.05} milliseconds.
2825
2826 @item left_balance
2827 Set left channel balance. By default is @var{-1}.
2828
2829 @item left_gain
2830 Set left channel gain. By default is @var{1}.
2831
2832 @item left_phase
2833 Change left phase. By default is disabled.
2834
2835 @item right_delay
2836 Set right channel delay. By defaults is @var{2.12} milliseconds.
2837
2838 @item right_balance
2839 Set right channel balance. By default is @var{1}.
2840
2841 @item right_gain
2842 Set right channel gain. By default is @var{1}.
2843
2844 @item right_phase
2845 Change right phase. By default is enabled.
2846 @end table
2847
2848 @section hdcd
2849
2850 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
2851 embedded HDCD codes is expanded into a 20-bit PCM stream.
2852
2853 The filter supports the Peak Extend and Low-level Gain Adjustment features
2854 of HDCD, and detects the Transient Filter flag.
2855
2856 @example
2857 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
2858 @end example
2859
2860 When using the filter with wav, note the default encoding for wav is 16-bit,
2861 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
2862 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
2863 @example
2864 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
2865 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
2866 @end example
2867
2868 The filter accepts the following options:
2869
2870 @table @option
2871 @item disable_autoconvert
2872 Disable any automatic format conversion or resampling in the filter graph.
2873
2874 @item process_stereo
2875 Process the stereo channels together. If target_gain does not match between
2876 channels, consider it invalid and use the last valid target_gain.
2877
2878 @item cdt_ms
2879 Set the code detect timer period in ms.
2880
2881 @item force_pe
2882 Always extend peaks above -3dBFS even if PE isn't signaled.
2883
2884 @item analyze_mode
2885 Replace audio with a solid tone and adjust the amplitude to signal some
2886 specific aspect of the decoding process. The output file can be loaded in
2887 an audio editor alongside the original to aid analysis.
2888
2889 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
2890
2891 Modes are:
2892 @table @samp
2893 @item 0, off
2894 Disabled
2895 @item 1, lle
2896 Gain adjustment level at each sample
2897 @item 2, pe
2898 Samples where peak extend occurs
2899 @item 3, cdt
2900 Samples where the code detect timer is active
2901 @item 4, tgm
2902 Samples where the target gain does not match between channels
2903 @end table
2904 @end table
2905
2906 @section headphone
2907
2908 Apply head-related transfer functions (HRTFs) to create virtual
2909 loudspeakers around the user for binaural listening via headphones.
2910 The HRIRs are provided via additional streams, for each channel
2911 one stereo input stream is needed.
2912
2913 The filter accepts the following options:
2914
2915 @table @option
2916 @item map
2917 Set mapping of input streams for convolution.
2918 The argument is a '|'-separated list of channel names in order as they
2919 are given as additional stream inputs for filter.
2920 This also specify number of input streams. Number of input streams
2921 must be not less than number of channels in first stream plus one.
2922
2923 @item gain
2924 Set gain applied to audio. Value is in dB. Default is 0.
2925
2926 @item type
2927 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
2928 processing audio in time domain which is slow.
2929 @var{freq} is processing audio in frequency domain which is fast.
2930 Default is @var{freq}.
2931
2932 @item lfe
2933 Set custom gain for LFE channels. Value is in dB. Default is 0.
2934 @end table
2935
2936 @subsection Examples
2937
2938 @itemize
2939 @item
2940 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
2941 each amovie filter use stereo file with IR coefficients as input.
2942 The files give coefficients for each position of virtual loudspeaker:
2943 @example
2944 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"
2945 output.wav
2946 @end example
2947 @end itemize
2948
2949 @section highpass
2950
2951 Apply a high-pass filter with 3dB point frequency.
2952 The filter can be either single-pole, or double-pole (the default).
2953 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2954
2955 The filter accepts the following options:
2956
2957 @table @option
2958 @item frequency, f
2959 Set frequency in Hz. Default is 3000.
2960
2961 @item poles, p
2962 Set number of poles. Default is 2.
2963
2964 @item width_type, t
2965 Set method to specify band-width of filter.
2966 @table @option
2967 @item h
2968 Hz
2969 @item q
2970 Q-Factor
2971 @item o
2972 octave
2973 @item s
2974 slope
2975 @end table
2976
2977 @item width, w
2978 Specify the band-width of a filter in width_type units.
2979 Applies only to double-pole filter.
2980 The default is 0.707q and gives a Butterworth response.
2981
2982 @item channels, c
2983 Specify which channels to filter, by default all available are filtered.
2984 @end table
2985
2986 @section join
2987
2988 Join multiple input streams into one multi-channel stream.
2989
2990 It accepts the following parameters:
2991 @table @option
2992
2993 @item inputs
2994 The number of input streams. It defaults to 2.
2995
2996 @item channel_layout
2997 The desired output channel layout. It defaults to stereo.
2998
2999 @item map
3000 Map channels from inputs to output. The argument is a '|'-separated list of
3001 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
3002 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
3003 can be either the name of the input channel (e.g. FL for front left) or its
3004 index in the specified input stream. @var{out_channel} is the name of the output
3005 channel.
3006 @end table
3007
3008 The filter will attempt to guess the mappings when they are not specified
3009 explicitly. It does so by first trying to find an unused matching input channel
3010 and if that fails it picks the first unused input channel.
3011
3012 Join 3 inputs (with properly set channel layouts):
3013 @example
3014 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3015 @end example
3016
3017 Build a 5.1 output from 6 single-channel streams:
3018 @example
3019 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3020 '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'
3021 out
3022 @end example
3023
3024 @section ladspa
3025
3026 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3027
3028 To enable compilation of this filter you need to configure FFmpeg with
3029 @code{--enable-ladspa}.
3030
3031 @table @option
3032 @item file, f
3033 Specifies the name of LADSPA plugin library to load. If the environment
3034 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3035 each one of the directories specified by the colon separated list in
3036 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3037 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3038 @file{/usr/lib/ladspa/}.
3039
3040 @item plugin, p
3041 Specifies the plugin within the library. Some libraries contain only
3042 one plugin, but others contain many of them. If this is not set filter
3043 will list all available plugins within the specified library.
3044
3045 @item controls, c
3046 Set the '|' separated list of controls which are zero or more floating point
3047 values that determine the behavior of the loaded plugin (for example delay,
3048 threshold or gain).
3049 Controls need to be defined using the following syntax:
3050 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3051 @var{valuei} is the value set on the @var{i}-th control.
3052 Alternatively they can be also defined using the following syntax:
3053 @var{value0}|@var{value1}|@var{value2}|..., where
3054 @var{valuei} is the value set on the @var{i}-th control.
3055 If @option{controls} is set to @code{help}, all available controls and
3056 their valid ranges are printed.
3057
3058 @item sample_rate, s
3059 Specify the sample rate, default to 44100. Only used if plugin have
3060 zero inputs.
3061
3062 @item nb_samples, n
3063 Set the number of samples per channel per each output frame, default
3064 is 1024. Only used if plugin have zero inputs.
3065
3066 @item duration, d
3067 Set the minimum duration of the sourced audio. See
3068 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3069 for the accepted syntax.
3070 Note that the resulting duration may be greater than the specified duration,
3071 as the generated audio is always cut at the end of a complete frame.
3072 If not specified, or the expressed duration is negative, the audio is
3073 supposed to be generated forever.
3074 Only used if plugin have zero inputs.
3075
3076 @end table
3077
3078 @subsection Examples
3079
3080 @itemize
3081 @item
3082 List all available plugins within amp (LADSPA example plugin) library:
3083 @example
3084 ladspa=file=amp
3085 @end example
3086
3087 @item
3088 List all available controls and their valid ranges for @code{vcf_notch}
3089 plugin from @code{VCF} library:
3090 @example
3091 ladspa=f=vcf:p=vcf_notch:c=help
3092 @end example
3093
3094 @item
3095 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3096 plugin library:
3097 @example
3098 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3099 @end example
3100
3101 @item
3102 Add reverberation to the audio using TAP-plugins
3103 (Tom's Audio Processing plugins):
3104 @example
3105 ladspa=file=tap_reverb:tap_reverb
3106 @end example
3107
3108 @item
3109 Generate white noise, with 0.2 amplitude:
3110 @example
3111 ladspa=file=cmt:noise_source_white:c=c0=.2
3112 @end example
3113
3114 @item
3115 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3116 @code{C* Audio Plugin Suite} (CAPS) library:
3117 @example
3118 ladspa=file=caps:Click:c=c1=20'
3119 @end example
3120
3121 @item
3122 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3123 @example
3124 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3125 @end example
3126
3127 @item
3128 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3129 @code{SWH Plugins} collection:
3130 @example
3131 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3132 @end example
3133
3134 @item
3135 Attenuate low frequencies using Multiband EQ from Steve Harris
3136 @code{SWH Plugins} collection:
3137 @example
3138 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3139 @end example
3140
3141 @item
3142 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3143 (CAPS) library:
3144 @example
3145 ladspa=caps:Narrower
3146 @end example
3147
3148 @item
3149 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3150 @example
3151 ladspa=caps:White:.2
3152 @end example
3153
3154 @item
3155 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3156 @example
3157 ladspa=caps:Fractal:c=c1=1
3158 @end example
3159
3160 @item
3161 Dynamic volume normalization using @code{VLevel} plugin:
3162 @example
3163 ladspa=vlevel-ladspa:vlevel_mono
3164 @end example
3165 @end itemize
3166
3167 @subsection Commands
3168
3169 This filter supports the following commands:
3170 @table @option
3171 @item cN
3172 Modify the @var{N}-th control value.
3173
3174 If the specified value is not valid, it is ignored and prior one is kept.
3175 @end table
3176
3177 @section loudnorm
3178
3179 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
3180 Support for both single pass (livestreams, files) and double pass (files) modes.
3181 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
3182 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
3183 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
3184
3185 The filter accepts the following options:
3186
3187 @table @option
3188 @item I, i
3189 Set integrated loudness target.
3190 Range is -70.0 - -5.0. Default value is -24.0.
3191
3192 @item LRA, lra
3193 Set loudness range target.
3194 Range is 1.0 - 20.0. Default value is 7.0.
3195
3196 @item TP, tp
3197 Set maximum true peak.
3198 Range is -9.0 - +0.0. Default value is -2.0.
3199
3200 @item measured_I, measured_i
3201 Measured IL of input file.
3202 Range is -99.0 - +0.0.
3203
3204 @item measured_LRA, measured_lra
3205 Measured LRA of input file.
3206 Range is  0.0 - 99.0.
3207
3208 @item measured_TP, measured_tp
3209 Measured true peak of input file.
3210 Range is  -99.0 - +99.0.
3211
3212 @item measured_thresh
3213 Measured threshold of input file.
3214 Range is -99.0 - +0.0.
3215
3216 @item offset
3217 Set offset gain. Gain is applied before the true-peak limiter.
3218 Range is  -99.0 - +99.0. Default is +0.0.
3219
3220 @item linear
3221 Normalize linearly if possible.
3222 measured_I, measured_LRA, measured_TP, and measured_thresh must also
3223 to be specified in order to use this mode.
3224 Options are true or false. Default is true.
3225
3226 @item dual_mono
3227 Treat mono input files as "dual-mono". If a mono file is intended for playback
3228 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
3229 If set to @code{true}, this option will compensate for this effect.
3230 Multi-channel input files are not affected by this option.
3231 Options are true or false. Default is false.
3232
3233 @item print_format
3234 Set print format for stats. Options are summary, json, or none.
3235 Default value is none.
3236 @end table
3237
3238 @section lowpass
3239
3240 Apply a low-pass filter with 3dB point frequency.
3241 The filter can be either single-pole or double-pole (the default).
3242 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3243
3244 The filter accepts the following options:
3245
3246 @table @option
3247 @item frequency, f
3248 Set frequency in Hz. Default is 500.
3249
3250 @item poles, p
3251 Set number of poles. Default is 2.
3252
3253 @item width_type, t
3254 Set method to specify band-width of filter.
3255 @table @option
3256 @item h
3257 Hz
3258 @item q
3259 Q-Factor
3260 @item o
3261 octave
3262 @item s
3263 slope
3264 @end table
3265
3266 @item width, w
3267 Specify the band-width of a filter in width_type units.
3268 Applies only to double-pole filter.
3269 The default is 0.707q and gives a Butterworth response.
3270
3271 @item channels, c
3272 Specify which channels to filter, by default all available are filtered.
3273 @end table
3274
3275 @subsection Examples
3276 @itemize
3277 @item
3278 Lowpass only LFE channel, it LFE is not present it does nothing:
3279 @example
3280 lowpass=c=LFE
3281 @end example
3282 @end itemize
3283
3284 @section mcompand
3285 Multiband Compress or expand the audio's dynamic range.
3286
3287 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
3288 This is akin to the crossover of a loudspeaker, and results in flat frequency
3289 response when absent compander action.
3290
3291 It accepts the following parameters:
3292
3293 @table @option
3294 @item args
3295 This option syntax is:
3296 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
3297 For explanation of each item refer to compand filter documentation.
3298 @end table
3299
3300 @anchor{pan}
3301 @section pan
3302
3303 Mix channels with specific gain levels. The filter accepts the output
3304 channel layout followed by a set of channels definitions.
3305
3306 This filter is also designed to efficiently remap the channels of an audio
3307 stream.
3308
3309 The filter accepts parameters of the form:
3310 "@var{l}|@var{outdef}|@var{outdef}|..."
3311
3312 @table @option
3313 @item l
3314 output channel layout or number of channels
3315
3316 @item outdef
3317 output channel specification, of the form:
3318 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
3319
3320 @item out_name
3321 output channel to define, either a channel name (FL, FR, etc.) or a channel
3322 number (c0, c1, etc.)
3323
3324 @item gain
3325 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3326
3327 @item in_name
3328 input channel to use, see out_name for details; it is not possible to mix
3329 named and numbered input channels
3330 @end table
3331
3332 If the `=' in a channel specification is replaced by `<', then the gains for
3333 that specification will be renormalized so that the total is 1, thus
3334 avoiding clipping noise.
3335
3336 @subsection Mixing examples
3337
3338 For example, if you want to down-mix from stereo to mono, but with a bigger
3339 factor for the left channel:
3340 @example
3341 pan=1c|c0=0.9*c0+0.1*c1
3342 @end example
3343
3344 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3345 7-channels surround:
3346 @example
3347 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3348 @end example
3349
3350 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3351 that should be preferred (see "-ac" option) unless you have very specific
3352 needs.
3353
3354 @subsection Remapping examples
3355
3356 The channel remapping will be effective if, and only if:
3357
3358 @itemize
3359 @item gain coefficients are zeroes or ones,
3360 @item only one input per channel output,
3361 @end itemize
3362
3363 If all these conditions are satisfied, the filter will notify the user ("Pure
3364 channel mapping detected"), and use an optimized and lossless method to do the
3365 remapping.
3366
3367 For example, if you have a 5.1 source and want a stereo audio stream by
3368 dropping the extra channels:
3369 @example
3370 pan="stereo| c0=FL | c1=FR"
3371 @end example
3372
3373 Given the same source, you can also switch front left and front right channels
3374 and keep the input channel layout:
3375 @example
3376 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3377 @end example
3378
3379 If the input is a stereo audio stream, you can mute the front left channel (and
3380 still keep the stereo channel layout) with:
3381 @example
3382 pan="stereo|c1=c1"
3383 @end example
3384
3385 Still with a stereo audio stream input, you can copy the right channel in both
3386 front left and right:
3387 @example
3388 pan="stereo| c0=FR | c1=FR"
3389 @end example
3390
3391 @section replaygain
3392
3393 ReplayGain scanner filter. This filter takes an audio stream as an input and
3394 outputs it unchanged.
3395 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3396
3397 @section resample
3398
3399 Convert the audio sample format, sample rate and channel layout. It is
3400 not meant to be used directly.
3401
3402 @section rubberband
3403 Apply time-stretching and pitch-shifting with librubberband.
3404
3405 The filter accepts the following options:
3406
3407 @table @option
3408 @item tempo
3409 Set tempo scale factor.
3410
3411 @item pitch
3412 Set pitch scale factor.
3413
3414 @item transients
3415 Set transients detector.
3416 Possible values are:
3417 @table @var
3418 @item crisp
3419 @item mixed
3420 @item smooth
3421 @end table
3422
3423 @item detector
3424 Set detector.
3425 Possible values are:
3426 @table @var
3427 @item compound
3428 @item percussive
3429 @item soft
3430 @end table
3431
3432 @item phase
3433 Set phase.
3434 Possible values are:
3435 @table @var
3436 @item laminar
3437 @item independent
3438 @end table
3439
3440 @item window
3441 Set processing window size.
3442 Possible values are:
3443 @table @var
3444 @item standard
3445 @item short
3446 @item long
3447 @end table
3448
3449 @item smoothing
3450 Set smoothing.
3451 Possible values are:
3452 @table @var
3453 @item off
3454 @item on
3455 @end table
3456
3457 @item formant
3458 Enable formant preservation when shift pitching.
3459 Possible values are:
3460 @table @var
3461 @item shifted
3462 @item preserved
3463 @end table
3464
3465 @item pitchq
3466 Set pitch quality.
3467 Possible values are:
3468 @table @var
3469 @item quality
3470 @item speed
3471 @item consistency
3472 @end table
3473
3474 @item channels
3475 Set channels.
3476 Possible values are:
3477 @table @var
3478 @item apart
3479 @item together
3480 @end table
3481 @end table
3482
3483 @section sidechaincompress
3484
3485 This filter acts like normal compressor but has the ability to compress
3486 detected signal using second input signal.
3487 It needs two input streams and returns one output stream.
3488 First input stream will be processed depending on second stream signal.
3489 The filtered signal then can be filtered with other filters in later stages of
3490 processing. See @ref{pan} and @ref{amerge} filter.
3491
3492 The filter accepts the following options:
3493
3494 @table @option
3495 @item level_in
3496 Set input gain. Default is 1. Range is between 0.015625 and 64.
3497
3498 @item threshold
3499 If a signal of second stream raises above this level it will affect the gain
3500 reduction of first stream.
3501 By default is 0.125. Range is between 0.00097563 and 1.
3502
3503 @item ratio
3504 Set a ratio about which the signal is reduced. 1:2 means that if the level
3505 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3506 Default is 2. Range is between 1 and 20.
3507
3508 @item attack
3509 Amount of milliseconds the signal has to rise above the threshold before gain
3510 reduction starts. Default is 20. Range is between 0.01 and 2000.
3511
3512 @item release
3513 Amount of milliseconds the signal has to fall below the threshold before
3514 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3515
3516 @item makeup
3517 Set the amount by how much signal will be amplified after processing.
3518 Default is 1. Range is from 1 to 64.
3519
3520 @item knee
3521 Curve the sharp knee around the threshold to enter gain reduction more softly.
3522 Default is 2.82843. Range is between 1 and 8.
3523
3524 @item link
3525 Choose if the @code{average} level between all channels of side-chain stream
3526 or the louder(@code{maximum}) channel of side-chain stream affects the
3527 reduction. Default is @code{average}.
3528
3529 @item detection
3530 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3531 of @code{rms}. Default is @code{rms} which is mainly smoother.
3532
3533 @item level_sc
3534 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3535
3536 @item mix
3537 How much to use compressed signal in output. Default is 1.
3538 Range is between 0 and 1.
3539 @end table
3540
3541 @subsection Examples
3542
3543 @itemize
3544 @item
3545 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3546 depending on the signal of 2nd input and later compressed signal to be
3547 merged with 2nd input:
3548 @example
3549 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3550 @end example
3551 @end itemize
3552
3553 @section sidechaingate
3554
3555 A sidechain gate acts like a normal (wideband) gate but has the ability to
3556 filter the detected signal before sending it to the gain reduction stage.
3557 Normally a gate uses the full range signal to detect a level above the
3558 threshold.
3559 For example: If you cut all lower frequencies from your sidechain signal
3560 the gate will decrease the volume of your track only if not enough highs
3561 appear. With this technique you are able to reduce the resonation of a
3562 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3563 guitar.
3564 It needs two input streams and returns one output stream.
3565 First input stream will be processed depending on second stream signal.
3566
3567 The filter accepts the following options:
3568
3569 @table @option
3570 @item level_in
3571 Set input level before filtering.
3572 Default is 1. Allowed range is from 0.015625 to 64.
3573
3574 @item range
3575 Set the level of gain reduction when the signal is below the threshold.
3576 Default is 0.06125. Allowed range is from 0 to 1.
3577
3578 @item threshold
3579 If a signal rises above this level the gain reduction is released.
3580 Default is 0.125. Allowed range is from 0 to 1.
3581
3582 @item ratio
3583 Set a ratio about which the signal is reduced.
3584 Default is 2. Allowed range is from 1 to 9000.
3585
3586 @item attack
3587 Amount of milliseconds the signal has to rise above the threshold before gain
3588 reduction stops.
3589 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3590
3591 @item release
3592 Amount of milliseconds the signal has to fall below the threshold before the
3593 reduction is increased again. Default is 250 milliseconds.
3594 Allowed range is from 0.01 to 9000.
3595
3596 @item makeup
3597 Set amount of amplification of signal after processing.
3598 Default is 1. Allowed range is from 1 to 64.
3599
3600 @item knee
3601 Curve the sharp knee around the threshold to enter gain reduction more softly.
3602 Default is 2.828427125. Allowed range is from 1 to 8.
3603
3604 @item detection
3605 Choose if exact signal should be taken for detection or an RMS like one.
3606 Default is rms. Can be peak or rms.
3607
3608 @item link
3609 Choose if the average level between all channels or the louder channel affects
3610 the reduction.
3611 Default is average. Can be average or maximum.
3612
3613 @item level_sc
3614 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3615 @end table
3616
3617 @section silencedetect
3618
3619 Detect silence in an audio stream.
3620
3621 This filter logs a message when it detects that the input audio volume is less
3622 or equal to a noise tolerance value for a duration greater or equal to the
3623 minimum detected noise duration.
3624
3625 The printed times and duration are expressed in seconds.
3626
3627 The filter accepts the following options:
3628
3629 @table @option
3630 @item duration, d
3631 Set silence duration until notification (default is 2 seconds).
3632
3633 @item noise, n
3634 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3635 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3636 @end table
3637
3638 @subsection Examples
3639
3640 @itemize
3641 @item
3642 Detect 5 seconds of silence with -50dB noise tolerance:
3643 @example
3644 silencedetect=n=-50dB:d=5
3645 @end example
3646
3647 @item
3648 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3649 tolerance in @file{silence.mp3}:
3650 @example
3651 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3652 @end example
3653 @end itemize
3654
3655 @section silenceremove
3656
3657 Remove silence from the beginning, middle or end of the audio.
3658
3659 The filter accepts the following options:
3660
3661 @table @option
3662 @item start_periods
3663 This value is used to indicate if audio should be trimmed at beginning of
3664 the audio. A value of zero indicates no silence should be trimmed from the
3665 beginning. When specifying a non-zero value, it trims audio up until it
3666 finds non-silence. Normally, when trimming silence from beginning of audio
3667 the @var{start_periods} will be @code{1} but it can be increased to higher
3668 values to trim all audio up to specific count of non-silence periods.
3669 Default value is @code{0}.
3670
3671 @item start_duration
3672 Specify the amount of time that non-silence must be detected before it stops
3673 trimming audio. By increasing the duration, bursts of noises can be treated
3674 as silence and trimmed off. Default value is @code{0}.
3675
3676 @item start_threshold
3677 This indicates what sample value should be treated as silence. For digital
3678 audio, a value of @code{0} may be fine but for audio recorded from analog,
3679 you may wish to increase the value to account for background noise.
3680 Can be specified in dB (in case "dB" is appended to the specified value)
3681 or amplitude ratio. Default value is @code{0}.
3682
3683 @item stop_periods
3684 Set the count for trimming silence from the end of audio.
3685 To remove silence from the middle of a file, specify a @var{stop_periods}
3686 that is negative. This value is then treated as a positive value and is
3687 used to indicate the effect should restart processing as specified by
3688 @var{start_periods}, making it suitable for removing periods of silence
3689 in the middle of the audio.
3690 Default value is @code{0}.
3691
3692 @item stop_duration
3693 Specify a duration of silence that must exist before audio is not copied any
3694 more. By specifying a higher duration, silence that is wanted can be left in
3695 the audio.
3696 Default value is @code{0}.
3697
3698 @item stop_threshold
3699 This is the same as @option{start_threshold} but for trimming silence from
3700 the end of audio.
3701 Can be specified in dB (in case "dB" is appended to the specified value)
3702 or amplitude ratio. Default value is @code{0}.
3703
3704 @item leave_silence
3705 This indicates that @var{stop_duration} length of audio should be left intact
3706 at the beginning of each period of silence.
3707 For example, if you want to remove long pauses between words but do not want
3708 to remove the pauses completely. Default value is @code{0}.
3709
3710 @item detection
3711 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3712 and works better with digital silence which is exactly 0.
3713 Default value is @code{rms}.
3714
3715 @item window
3716 Set ratio used to calculate size of window for detecting silence.
3717 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3718 @end table
3719
3720 @subsection Examples
3721
3722 @itemize
3723 @item
3724 The following example shows how this filter can be used to start a recording
3725 that does not contain the delay at the start which usually occurs between
3726 pressing the record button and the start of the performance:
3727 @example
3728 silenceremove=1:5:0.02
3729 @end example
3730
3731 @item
3732 Trim all silence encountered from beginning to end where there is more than 1
3733 second of silence in audio:
3734 @example
3735 silenceremove=0:0:0:-1:1:-90dB
3736 @end example
3737 @end itemize
3738
3739 @section sofalizer
3740
3741 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3742 loudspeakers around the user for binaural listening via headphones (audio
3743 formats up to 9 channels supported).
3744 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3745 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3746 Austrian Academy of Sciences.
3747
3748 To enable compilation of this filter you need to configure FFmpeg with
3749 @code{--enable-libmysofa}.
3750
3751 The filter accepts the following options:
3752
3753 @table @option
3754 @item sofa
3755 Set the SOFA file used for rendering.
3756
3757 @item gain
3758 Set gain applied to audio. Value is in dB. Default is 0.
3759
3760 @item rotation
3761 Set rotation of virtual loudspeakers in deg. Default is 0.
3762
3763 @item elevation
3764 Set elevation of virtual speakers in deg. Default is 0.
3765
3766 @item radius
3767 Set distance in meters between loudspeakers and the listener with near-field
3768 HRTFs. Default is 1.
3769
3770 @item type
3771 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3772 processing audio in time domain which is slow.
3773 @var{freq} is processing audio in frequency domain which is fast.
3774 Default is @var{freq}.
3775
3776 @item speakers
3777 Set custom positions of virtual loudspeakers. Syntax for this option is:
3778 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3779 Each virtual loudspeaker is described with short channel name following with
3780 azimuth and elevation in degrees.
3781 Each virtual loudspeaker description is separated by '|'.
3782 For example to override front left and front right channel positions use:
3783 'speakers=FL 45 15|FR 345 15'.
3784 Descriptions with unrecognised channel names are ignored.
3785
3786 @item lfegain
3787 Set custom gain for LFE channels. Value is in dB. Default is 0.
3788 @end table
3789
3790 @subsection Examples
3791
3792 @itemize
3793 @item
3794 Using ClubFritz6 sofa file:
3795 @example
3796 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3797 @end example
3798
3799 @item
3800 Using ClubFritz12 sofa file and bigger radius with small rotation:
3801 @example
3802 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3803 @end example
3804
3805 @item
3806 Similar as above but with custom speaker positions for front left, front right, back left and back right
3807 and also with custom gain:
3808 @example
3809 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
3810 @end example
3811 @end itemize
3812
3813 @section stereotools
3814
3815 This filter has some handy utilities to manage stereo signals, for converting
3816 M/S stereo recordings to L/R signal while having control over the parameters
3817 or spreading the stereo image of master track.
3818
3819 The filter accepts the following options:
3820
3821 @table @option
3822 @item level_in
3823 Set input level before filtering for both channels. Defaults is 1.
3824 Allowed range is from 0.015625 to 64.
3825
3826 @item level_out
3827 Set output level after filtering for both channels. Defaults is 1.
3828 Allowed range is from 0.015625 to 64.
3829
3830 @item balance_in
3831 Set input balance between both channels. Default is 0.
3832 Allowed range is from -1 to 1.
3833
3834 @item balance_out
3835 Set output balance between both channels. Default is 0.
3836 Allowed range is from -1 to 1.
3837
3838 @item softclip
3839 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3840 clipping. Disabled by default.
3841
3842 @item mutel
3843 Mute the left channel. Disabled by default.
3844
3845 @item muter
3846 Mute the right channel. Disabled by default.
3847
3848 @item phasel
3849 Change the phase of the left channel. Disabled by default.
3850
3851 @item phaser
3852 Change the phase of the right channel. Disabled by default.
3853
3854 @item mode
3855 Set stereo mode. Available values are:
3856
3857 @table @samp
3858 @item lr>lr
3859 Left/Right to Left/Right, this is default.
3860
3861 @item lr>ms
3862 Left/Right to Mid/Side.
3863
3864 @item ms>lr
3865 Mid/Side to Left/Right.
3866
3867 @item lr>ll
3868 Left/Right to Left/Left.
3869
3870 @item lr>rr
3871 Left/Right to Right/Right.
3872
3873 @item lr>l+r
3874 Left/Right to Left + Right.
3875
3876 @item lr>rl
3877 Left/Right to Right/Left.
3878
3879 @item ms>ll
3880 Mid/Side to Left/Left.
3881
3882 @item ms>rr
3883 Mid/Side to Right/Right.
3884 @end table
3885
3886 @item slev
3887 Set level of side signal. Default is 1.
3888 Allowed range is from 0.015625 to 64.
3889
3890 @item sbal
3891 Set balance of side signal. Default is 0.
3892 Allowed range is from -1 to 1.
3893
3894 @item mlev
3895 Set level of the middle signal. Default is 1.
3896 Allowed range is from 0.015625 to 64.
3897
3898 @item mpan
3899 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3900
3901 @item base
3902 Set stereo base between mono and inversed channels. Default is 0.
3903 Allowed range is from -1 to 1.
3904
3905 @item delay
3906 Set delay in milliseconds how much to delay left from right channel and
3907 vice versa. Default is 0. Allowed range is from -20 to 20.
3908
3909 @item sclevel
3910 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3911
3912 @item phase
3913 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3914
3915 @item bmode_in, bmode_out
3916 Set balance mode for balance_in/balance_out option.
3917
3918 Can be one of the following:
3919
3920 @table @samp
3921 @item balance
3922 Classic balance mode. Attenuate one channel at time.
3923 Gain is raised up to 1.
3924
3925 @item amplitude
3926 Similar as classic mode above but gain is raised up to 2.
3927
3928 @item power
3929 Equal power distribution, from -6dB to +6dB range.
3930 @end table
3931 @end table
3932
3933 @subsection Examples
3934
3935 @itemize
3936 @item
3937 Apply karaoke like effect:
3938 @example
3939 stereotools=mlev=0.015625
3940 @end example
3941
3942 @item
3943 Convert M/S signal to L/R:
3944 @example
3945 "stereotools=mode=ms>lr"
3946 @end example
3947 @end itemize
3948
3949 @section stereowiden
3950
3951 This filter enhance the stereo effect by suppressing signal common to both
3952 channels and by delaying the signal of left into right and vice versa,
3953 thereby widening the stereo effect.
3954
3955 The filter accepts the following options:
3956
3957 @table @option
3958 @item delay
3959 Time in milliseconds of the delay of left signal into right and vice versa.
3960 Default is 20 milliseconds.
3961
3962 @item feedback
3963 Amount of gain in delayed signal into right and vice versa. Gives a delay
3964 effect of left signal in right output and vice versa which gives widening
3965 effect. Default is 0.3.
3966
3967 @item crossfeed
3968 Cross feed of left into right with inverted phase. This helps in suppressing
3969 the mono. If the value is 1 it will cancel all the signal common to both
3970 channels. Default is 0.3.
3971
3972 @item drymix
3973 Set level of input signal of original channel. Default is 0.8.
3974 @end table
3975
3976 @section superequalizer
3977 Apply 18 band equalizer.
3978
3979 The filter accepts the following options:
3980 @table @option
3981 @item 1b
3982 Set 65Hz band gain.
3983 @item 2b
3984 Set 92Hz band gain.
3985 @item 3b
3986 Set 131Hz band gain.
3987 @item 4b
3988 Set 185Hz band gain.
3989 @item 5b
3990 Set 262Hz band gain.
3991 @item 6b
3992 Set 370Hz band gain.
3993 @item 7b
3994 Set 523Hz band gain.
3995 @item 8b
3996 Set 740Hz band gain.
3997 @item 9b
3998 Set 1047Hz band gain.
3999 @item 10b
4000 Set 1480Hz band gain.
4001 @item 11b
4002 Set 2093Hz band gain.
4003 @item 12b
4004 Set 2960Hz band gain.
4005 @item 13b
4006 Set 4186Hz band gain.
4007 @item 14b
4008 Set 5920Hz band gain.
4009 @item 15b
4010 Set 8372Hz band gain.
4011 @item 16b
4012 Set 11840Hz band gain.
4013 @item 17b
4014 Set 16744Hz band gain.
4015 @item 18b
4016 Set 20000Hz band gain.
4017 @end table
4018
4019 @section surround
4020 Apply audio surround upmix filter.
4021
4022 This filter allows to produce multichannel output from audio stream.
4023
4024 The filter accepts the following options:
4025
4026 @table @option
4027 @item chl_out
4028 Set output channel layout. By default, this is @var{5.1}.
4029
4030 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4031 for the required syntax.
4032
4033 @item chl_in
4034 Set input channel layout. By default, this is @var{stereo}.
4035
4036 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4037 for the required syntax.
4038
4039 @item level_in
4040 Set input volume level. By default, this is @var{1}.
4041
4042 @item level_out
4043 Set output volume level. By default, this is @var{1}.
4044
4045 @item lfe
4046 Enable LFE channel output if output channel layout has it. By default, this is enabled.
4047
4048 @item lfe_low
4049 Set LFE low cut off frequency. By default, this is @var{128} Hz.
4050
4051 @item lfe_high
4052 Set LFE high cut off frequency. By default, this is @var{256} Hz.
4053
4054 @item fc_in
4055 Set front center input volume. By default, this is @var{1}.
4056
4057 @item fc_out
4058 Set front center output volume. By default, this is @var{1}.
4059
4060 @item lfe_in
4061 Set LFE input volume. By default, this is @var{1}.
4062
4063 @item lfe_out
4064 Set LFE output volume. By default, this is @var{1}.
4065 @end table
4066
4067 @section treble
4068
4069 Boost or cut treble (upper) frequencies of the audio using a two-pole
4070 shelving filter with a response similar to that of a standard
4071 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
4072
4073 The filter accepts the following options:
4074
4075 @table @option
4076 @item gain, g
4077 Give the gain at whichever is the lower of ~22 kHz and the
4078 Nyquist frequency. Its useful range is about -20 (for a large cut)
4079 to +20 (for a large boost). Beware of clipping when using a positive gain.
4080
4081 @item frequency, f
4082 Set the filter's central frequency and so can be used
4083 to extend or reduce the frequency range to be boosted or cut.
4084 The default value is @code{3000} Hz.
4085
4086 @item width_type, t
4087 Set method to specify band-width of filter.
4088 @table @option
4089 @item h
4090 Hz
4091 @item q
4092 Q-Factor
4093 @item o
4094 octave
4095 @item s
4096 slope
4097 @end table
4098
4099 @item width, w
4100 Determine how steep is the filter's shelf transition.
4101
4102 @item channels, c
4103 Specify which channels to filter, by default all available are filtered.
4104 @end table
4105
4106 @section tremolo
4107
4108 Sinusoidal amplitude modulation.
4109
4110 The filter accepts the following options:
4111
4112 @table @option
4113 @item f
4114 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
4115 (20 Hz or lower) will result in a tremolo effect.
4116 This filter may also be used as a ring modulator by specifying
4117 a modulation frequency higher than 20 Hz.
4118 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4119
4120 @item d
4121 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4122 Default value is 0.5.
4123 @end table
4124
4125 @section vibrato
4126
4127 Sinusoidal phase modulation.
4128
4129 The filter accepts the following options:
4130
4131 @table @option
4132 @item f
4133 Modulation frequency in Hertz.
4134 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4135
4136 @item d
4137 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4138 Default value is 0.5.
4139 @end table
4140
4141 @section volume
4142
4143 Adjust the input audio volume.
4144
4145 It accepts the following parameters:
4146 @table @option
4147
4148 @item volume
4149 Set audio volume expression.
4150
4151 Output values are clipped to the maximum value.
4152
4153 The output audio volume is given by the relation:
4154 @example
4155 @var{output_volume} = @var{volume} * @var{input_volume}
4156 @end example
4157
4158 The default value for @var{volume} is "1.0".
4159
4160 @item precision
4161 This parameter represents the mathematical precision.
4162
4163 It determines which input sample formats will be allowed, which affects the
4164 precision of the volume scaling.
4165
4166 @table @option
4167 @item fixed
4168 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
4169 @item float
4170 32-bit floating-point; this limits input sample format to FLT. (default)
4171 @item double
4172 64-bit floating-point; this limits input sample format to DBL.
4173 @end table
4174
4175 @item replaygain
4176 Choose the behaviour on encountering ReplayGain side data in input frames.
4177
4178 @table @option
4179 @item drop
4180 Remove ReplayGain side data, ignoring its contents (the default).
4181
4182 @item ignore
4183 Ignore ReplayGain side data, but leave it in the frame.
4184
4185 @item track
4186 Prefer the track gain, if present.
4187
4188 @item album
4189 Prefer the album gain, if present.
4190 @end table
4191
4192 @item replaygain_preamp
4193 Pre-amplification gain in dB to apply to the selected replaygain gain.
4194
4195 Default value for @var{replaygain_preamp} is 0.0.
4196
4197 @item eval
4198 Set when the volume expression is evaluated.
4199
4200 It accepts the following values:
4201 @table @samp
4202 @item once
4203 only evaluate expression once during the filter initialization, or
4204 when the @samp{volume} command is sent
4205
4206 @item frame
4207 evaluate expression for each incoming frame
4208 @end table
4209
4210 Default value is @samp{once}.
4211 @end table
4212
4213 The volume expression can contain the following parameters.
4214
4215 @table @option
4216 @item n
4217 frame number (starting at zero)
4218 @item nb_channels
4219 number of channels
4220 @item nb_consumed_samples
4221 number of samples consumed by the filter
4222 @item nb_samples
4223 number of samples in the current frame
4224 @item pos
4225 original frame position in the file
4226 @item pts
4227 frame PTS
4228 @item sample_rate
4229 sample rate
4230 @item startpts
4231 PTS at start of stream
4232 @item startt
4233 time at start of stream
4234 @item t
4235 frame time
4236 @item tb
4237 timestamp timebase
4238 @item volume
4239 last set volume value
4240 @end table
4241
4242 Note that when @option{eval} is set to @samp{once} only the
4243 @var{sample_rate} and @var{tb} variables are available, all other
4244 variables will evaluate to NAN.
4245
4246 @subsection Commands
4247
4248 This filter supports the following commands:
4249 @table @option
4250 @item volume
4251 Modify the volume expression.
4252 The command accepts the same syntax of the corresponding option.
4253
4254 If the specified expression is not valid, it is kept at its current
4255 value.
4256 @item replaygain_noclip
4257 Prevent clipping by limiting the gain applied.
4258
4259 Default value for @var{replaygain_noclip} is 1.
4260
4261 @end table
4262
4263 @subsection Examples
4264
4265 @itemize
4266 @item
4267 Halve the input audio volume:
4268 @example
4269 volume=volume=0.5
4270 volume=volume=1/2
4271 volume=volume=-6.0206dB
4272 @end example
4273
4274 In all the above example the named key for @option{volume} can be
4275 omitted, for example like in:
4276 @example
4277 volume=0.5
4278 @end example
4279
4280 @item
4281 Increase input audio power by 6 decibels using fixed-point precision:
4282 @example
4283 volume=volume=6dB:precision=fixed
4284 @end example
4285
4286 @item
4287 Fade volume after time 10 with an annihilation period of 5 seconds:
4288 @example
4289 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
4290 @end example
4291 @end itemize
4292
4293 @section volumedetect
4294
4295 Detect the volume of the input video.
4296
4297 The filter has no parameters. The input is not modified. Statistics about
4298 the volume will be printed in the log when the input stream end is reached.
4299
4300 In particular it will show the mean volume (root mean square), maximum
4301 volume (on a per-sample basis), and the beginning of a histogram of the
4302 registered volume values (from the maximum value to a cumulated 1/1000 of
4303 the samples).
4304
4305 All volumes are in decibels relative to the maximum PCM value.
4306
4307 @subsection Examples
4308
4309 Here is an excerpt of the output:
4310 @example
4311 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
4312 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
4313 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
4314 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
4315 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
4316 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
4317 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
4318 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
4319 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
4320 @end example
4321
4322 It means that:
4323 @itemize
4324 @item
4325 The mean square energy is approximately -27 dB, or 10^-2.7.
4326 @item
4327 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
4328 @item
4329 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
4330 @end itemize
4331
4332 In other words, raising the volume by +4 dB does not cause any clipping,
4333 raising it by +5 dB causes clipping for 6 samples, etc.
4334
4335 @c man end AUDIO FILTERS
4336
4337 @chapter Audio Sources
4338 @c man begin AUDIO SOURCES
4339
4340 Below is a description of the currently available audio sources.
4341
4342 @section abuffer
4343
4344 Buffer audio frames, and make them available to the filter chain.
4345
4346 This source is mainly intended for a programmatic use, in particular
4347 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
4348
4349 It accepts the following parameters:
4350 @table @option
4351
4352 @item time_base
4353 The timebase which will be used for timestamps of submitted frames. It must be
4354 either a floating-point number or in @var{numerator}/@var{denominator} form.
4355
4356 @item sample_rate
4357 The sample rate of the incoming audio buffers.
4358
4359 @item sample_fmt
4360 The sample format of the incoming audio buffers.
4361 Either a sample format name or its corresponding integer representation from
4362 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
4363
4364 @item channel_layout
4365 The channel layout of the incoming audio buffers.
4366 Either a channel layout name from channel_layout_map in
4367 @file{libavutil/channel_layout.c} or its corresponding integer representation
4368 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
4369
4370 @item channels
4371 The number of channels of the incoming audio buffers.
4372 If both @var{channels} and @var{channel_layout} are specified, then they
4373 must be consistent.
4374
4375 @end table
4376
4377 @subsection Examples
4378
4379 @example
4380 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
4381 @end example
4382
4383 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
4384 Since the sample format with name "s16p" corresponds to the number
4385 6 and the "stereo" channel layout corresponds to the value 0x3, this is
4386 equivalent to:
4387 @example
4388 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
4389 @end example
4390
4391 @section aevalsrc
4392
4393 Generate an audio signal specified by an expression.
4394
4395 This source accepts in input one or more expressions (one for each
4396 channel), which are evaluated and used to generate a corresponding
4397 audio signal.
4398
4399 This source accepts the following options:
4400
4401 @table @option
4402 @item exprs
4403 Set the '|'-separated expressions list for each separate channel. In case the
4404 @option{channel_layout} option is not specified, the selected channel layout
4405 depends on the number of provided expressions. Otherwise the last
4406 specified expression is applied to the remaining output channels.
4407
4408 @item channel_layout, c
4409 Set the channel layout. The number of channels in the specified layout
4410 must be equal to the number of specified expressions.
4411
4412 @item duration, d
4413 Set the minimum duration of the sourced audio. See
4414 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4415 for the accepted syntax.
4416 Note that the resulting duration may be greater than the specified
4417 duration, as the generated audio is always cut at the end of a
4418 complete frame.
4419
4420 If not specified, or the expressed duration is negative, the audio is
4421 supposed to be generated forever.
4422
4423 @item nb_samples, n
4424 Set the number of samples per channel per each output frame,
4425 default to 1024.
4426
4427 @item sample_rate, s
4428 Specify the sample rate, default to 44100.
4429 @end table
4430
4431 Each expression in @var{exprs} can contain the following constants:
4432
4433 @table @option
4434 @item n
4435 number of the evaluated sample, starting from 0
4436
4437 @item t
4438 time of the evaluated sample expressed in seconds, starting from 0
4439
4440 @item s
4441 sample rate
4442
4443 @end table
4444
4445 @subsection Examples
4446
4447 @itemize
4448 @item
4449 Generate silence:
4450 @example
4451 aevalsrc=0
4452 @end example
4453
4454 @item
4455 Generate a sin signal with frequency of 440 Hz, set sample rate to
4456 8000 Hz:
4457 @example
4458 aevalsrc="sin(440*2*PI*t):s=8000"
4459 @end example
4460
4461 @item
4462 Generate a two channels signal, specify the channel layout (Front
4463 Center + Back Center) explicitly:
4464 @example
4465 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4466 @end example
4467
4468 @item
4469 Generate white noise:
4470 @example
4471 aevalsrc="-2+random(0)"
4472 @end example
4473
4474 @item
4475 Generate an amplitude modulated signal:
4476 @example
4477 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4478 @end example
4479
4480 @item
4481 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4482 @example
4483 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4484 @end example
4485
4486 @end itemize
4487
4488 @section anullsrc
4489
4490 The null audio source, return unprocessed audio frames. It is mainly useful
4491 as a template and to be employed in analysis / debugging tools, or as
4492 the source for filters which ignore the input data (for example the sox
4493 synth filter).
4494
4495 This source accepts the following options:
4496
4497 @table @option
4498
4499 @item channel_layout, cl
4500
4501 Specifies the channel layout, and can be either an integer or a string
4502 representing a channel layout. The default value of @var{channel_layout}
4503 is "stereo".
4504
4505 Check the channel_layout_map definition in
4506 @file{libavutil/channel_layout.c} for the mapping between strings and
4507 channel layout values.
4508
4509 @item sample_rate, r
4510 Specifies the sample rate, and defaults to 44100.
4511
4512 @item nb_samples, n
4513 Set the number of samples per requested frames.
4514
4515 @end table
4516
4517 @subsection Examples
4518
4519 @itemize
4520 @item
4521 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4522 @example
4523 anullsrc=r=48000:cl=4
4524 @end example
4525
4526 @item
4527 Do the same operation with a more obvious syntax:
4528 @example
4529 anullsrc=r=48000:cl=mono
4530 @end example
4531 @end itemize
4532
4533 All the parameters need to be explicitly defined.
4534
4535 @section flite
4536
4537 Synthesize a voice utterance using the libflite library.
4538
4539 To enable compilation of this filter you need to configure FFmpeg with
4540 @code{--enable-libflite}.
4541
4542 Note that versions of the flite library prior to 2.0 are not thread-safe.
4543
4544 The filter accepts the following options:
4545
4546 @table @option
4547
4548 @item list_voices
4549 If set to 1, list the names of the available voices and exit
4550 immediately. Default value is 0.
4551
4552 @item nb_samples, n
4553 Set the maximum number of samples per frame. Default value is 512.
4554
4555 @item textfile
4556 Set the filename containing the text to speak.
4557
4558 @item text
4559 Set the text to speak.
4560
4561 @item voice, v
4562 Set the voice to use for the speech synthesis. Default value is
4563 @code{kal}. See also the @var{list_voices} option.
4564 @end table
4565
4566 @subsection Examples
4567
4568 @itemize
4569 @item
4570 Read from file @file{speech.txt}, and synthesize the text using the
4571 standard flite voice:
4572 @example
4573 flite=textfile=speech.txt
4574 @end example
4575
4576 @item
4577 Read the specified text selecting the @code{slt} voice:
4578 @example
4579 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4580 @end example
4581
4582 @item
4583 Input text to ffmpeg:
4584 @example
4585 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4586 @end example
4587
4588 @item
4589 Make @file{ffplay} speak the specified text, using @code{flite} and
4590 the @code{lavfi} device:
4591 @example
4592 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4593 @end example
4594 @end itemize
4595
4596 For more information about libflite, check:
4597 @url{http://www.festvox.org/flite/}
4598
4599 @section anoisesrc
4600
4601 Generate a noise audio signal.
4602
4603 The filter accepts the following options:
4604
4605 @table @option
4606 @item sample_rate, r
4607 Specify the sample rate. Default value is 48000 Hz.
4608
4609 @item amplitude, a
4610 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4611 is 1.0.
4612
4613 @item duration, d
4614 Specify the duration of the generated audio stream. Not specifying this option
4615 results in noise with an infinite length.
4616
4617 @item color, colour, c
4618 Specify the color of noise. Available noise colors are white, pink, brown,
4619 blue and violet. Default color is white.
4620
4621 @item seed, s
4622 Specify a value used to seed the PRNG.
4623
4624 @item nb_samples, n
4625 Set the number of samples per each output frame, default is 1024.
4626 @end table
4627
4628 @subsection Examples
4629
4630 @itemize
4631
4632 @item
4633 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4634 @example
4635 anoisesrc=d=60:c=pink:r=44100:a=0.5
4636 @end example
4637 @end itemize
4638
4639 @section sine
4640
4641 Generate an audio signal made of a sine wave with amplitude 1/8.
4642
4643 The audio signal is bit-exact.
4644
4645 The filter accepts the following options:
4646
4647 @table @option
4648
4649 @item frequency, f
4650 Set the carrier frequency. Default is 440 Hz.
4651
4652 @item beep_factor, b
4653 Enable a periodic beep every second with frequency @var{beep_factor} times
4654 the carrier frequency. Default is 0, meaning the beep is disabled.
4655
4656 @item sample_rate, r
4657 Specify the sample rate, default is 44100.
4658
4659 @item duration, d
4660 Specify the duration of the generated audio stream.
4661
4662 @item samples_per_frame
4663 Set the number of samples per output frame.
4664
4665 The expression can contain the following constants:
4666
4667 @table @option
4668 @item n
4669 The (sequential) number of the output audio frame, starting from 0.
4670
4671 @item pts
4672 The PTS (Presentation TimeStamp) of the output audio frame,
4673 expressed in @var{TB} units.
4674
4675 @item t
4676 The PTS of the output audio frame, expressed in seconds.
4677
4678 @item TB
4679 The timebase of the output audio frames.
4680 @end table
4681
4682 Default is @code{1024}.
4683 @end table
4684
4685 @subsection Examples
4686
4687 @itemize
4688
4689 @item
4690 Generate a simple 440 Hz sine wave:
4691 @example
4692 sine
4693 @end example
4694
4695 @item
4696 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4697 @example
4698 sine=220:4:d=5
4699 sine=f=220:b=4:d=5
4700 sine=frequency=220:beep_factor=4:duration=5
4701 @end example
4702
4703 @item
4704 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4705 pattern:
4706 @example
4707 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4708 @end example
4709 @end itemize
4710
4711 @c man end AUDIO SOURCES
4712
4713 @chapter Audio Sinks
4714 @c man begin AUDIO SINKS
4715
4716 Below is a description of the currently available audio sinks.
4717
4718 @section abuffersink
4719
4720 Buffer audio frames, and make them available to the end of filter chain.
4721
4722 This sink is mainly intended for programmatic use, in particular
4723 through the interface defined in @file{libavfilter/buffersink.h}
4724 or the options system.
4725
4726 It accepts a pointer to an AVABufferSinkContext structure, which
4727 defines the incoming buffers' formats, to be passed as the opaque
4728 parameter to @code{avfilter_init_filter} for initialization.
4729 @section anullsink
4730
4731 Null audio sink; do absolutely nothing with the input audio. It is
4732 mainly useful as a template and for use in analysis / debugging
4733 tools.
4734
4735 @c man end AUDIO SINKS
4736
4737 @chapter Video Filters
4738 @c man begin VIDEO FILTERS
4739
4740 When you configure your FFmpeg build, you can disable any of the
4741 existing filters using @code{--disable-filters}.
4742 The configure output will show the video filters included in your
4743 build.
4744
4745 Below is a description of the currently available video filters.
4746
4747 @section alphaextract
4748
4749 Extract the alpha component from the input as a grayscale video. This
4750 is especially useful with the @var{alphamerge} filter.
4751
4752 @section alphamerge
4753
4754 Add or replace the alpha component of the primary input with the
4755 grayscale value of a second input. This is intended for use with
4756 @var{alphaextract} to allow the transmission or storage of frame
4757 sequences that have alpha in a format that doesn't support an alpha
4758 channel.
4759
4760 For example, to reconstruct full frames from a normal YUV-encoded video
4761 and a separate video created with @var{alphaextract}, you might use:
4762 @example
4763 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4764 @end example
4765
4766 Since this filter is designed for reconstruction, it operates on frame
4767 sequences without considering timestamps, and terminates when either
4768 input reaches end of stream. This will cause problems if your encoding
4769 pipeline drops frames. If you're trying to apply an image as an
4770 overlay to a video stream, consider the @var{overlay} filter instead.
4771
4772 @section ass
4773
4774 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4775 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4776 Substation Alpha) subtitles files.
4777
4778 This filter accepts the following option in addition to the common options from
4779 the @ref{subtitles} filter:
4780
4781 @table @option
4782 @item shaping
4783 Set the shaping engine
4784
4785 Available values are:
4786 @table @samp
4787 @item auto
4788 The default libass shaping engine, which is the best available.
4789 @item simple
4790 Fast, font-agnostic shaper that can do only substitutions
4791 @item complex
4792 Slower shaper using OpenType for substitutions and positioning
4793 @end table
4794
4795 The default is @code{auto}.
4796 @end table
4797
4798 @section atadenoise
4799 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4800
4801 The filter accepts the following options:
4802
4803 @table @option
4804 @item 0a
4805 Set threshold A for 1st plane. Default is 0.02.
4806 Valid range is 0 to 0.3.
4807
4808 @item 0b
4809 Set threshold B for 1st plane. Default is 0.04.
4810 Valid range is 0 to 5.
4811
4812 @item 1a
4813 Set threshold A for 2nd plane. Default is 0.02.
4814 Valid range is 0 to 0.3.
4815
4816 @item 1b
4817 Set threshold B for 2nd plane. Default is 0.04.
4818 Valid range is 0 to 5.
4819
4820 @item 2a
4821 Set threshold A for 3rd plane. Default is 0.02.
4822 Valid range is 0 to 0.3.
4823
4824 @item 2b
4825 Set threshold B for 3rd plane. Default is 0.04.
4826 Valid range is 0 to 5.
4827
4828 Threshold A is designed to react on abrupt changes in the input signal and
4829 threshold B is designed to react on continuous changes in the input signal.
4830
4831 @item s
4832 Set number of frames filter will use for averaging. Default is 33. Must be odd
4833 number in range [5, 129].
4834
4835 @item p
4836 Set what planes of frame filter will use for averaging. Default is all.
4837 @end table
4838
4839 @section avgblur
4840
4841 Apply average blur filter.
4842
4843 The filter accepts the following options:
4844
4845 @table @option
4846 @item sizeX
4847 Set horizontal kernel size.
4848
4849 @item planes
4850 Set which planes to filter. By default all planes are filtered.
4851
4852 @item sizeY
4853 Set vertical kernel size, if zero it will be same as @code{sizeX}.
4854 Default is @code{0}.
4855 @end table
4856
4857 @section bbox
4858
4859 Compute the bounding box for the non-black pixels in the input frame
4860 luminance plane.
4861
4862 This filter computes the bounding box containing all the pixels with a
4863 luminance value greater than the minimum allowed value.
4864 The parameters describing the bounding box are printed on the filter
4865 log.
4866
4867 The filter accepts the following option:
4868
4869 @table @option
4870 @item min_val
4871 Set the minimal luminance value. Default is @code{16}.
4872 @end table
4873
4874 @section bitplanenoise
4875
4876 Show and measure bit plane noise.
4877
4878 The filter accepts the following options:
4879
4880 @table @option
4881 @item bitplane
4882 Set which plane to analyze. Default is @code{1}.
4883
4884 @item filter
4885 Filter out noisy pixels from @code{bitplane} set above.
4886 Default is disabled.
4887 @end table
4888
4889 @section blackdetect
4890
4891 Detect video intervals that are (almost) completely black. Can be
4892 useful to detect chapter transitions, commercials, or invalid
4893 recordings. Output lines contains the time for the start, end and
4894 duration of the detected black interval expressed in seconds.
4895
4896 In order to display the output lines, you need to set the loglevel at
4897 least to the AV_LOG_INFO value.
4898
4899 The filter accepts the following options:
4900
4901 @table @option
4902 @item black_min_duration, d
4903 Set the minimum detected black duration expressed in seconds. It must
4904 be a non-negative floating point number.
4905
4906 Default value is 2.0.
4907
4908 @item picture_black_ratio_th, pic_th
4909 Set the threshold for considering a picture "black".
4910 Express the minimum value for the ratio:
4911 @example
4912 @var{nb_black_pixels} / @var{nb_pixels}
4913 @end example
4914
4915 for which a picture is considered black.
4916 Default value is 0.98.
4917
4918 @item pixel_black_th, pix_th
4919 Set the threshold for considering a pixel "black".
4920
4921 The threshold expresses the maximum pixel luminance value for which a
4922 pixel is considered "black". The provided value is scaled according to
4923 the following equation:
4924 @example
4925 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4926 @end example
4927
4928 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4929 the input video format, the range is [0-255] for YUV full-range
4930 formats and [16-235] for YUV non full-range formats.
4931
4932 Default value is 0.10.
4933 @end table
4934
4935 The following example sets the maximum pixel threshold to the minimum
4936 value, and detects only black intervals of 2 or more seconds:
4937 @example
4938 blackdetect=d=2:pix_th=0.00
4939 @end example
4940
4941 @section blackframe
4942
4943 Detect frames that are (almost) completely black. Can be useful to
4944 detect chapter transitions or commercials. Output lines consist of
4945 the frame number of the detected frame, the percentage of blackness,
4946 the position in the file if known or -1 and the timestamp in seconds.
4947
4948 In order to display the output lines, you need to set the loglevel at
4949 least to the AV_LOG_INFO value.
4950
4951 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
4952 The value represents the percentage of pixels in the picture that
4953 are below the threshold value.
4954
4955 It accepts the following parameters:
4956
4957 @table @option
4958
4959 @item amount
4960 The percentage of the pixels that have to be below the threshold; it defaults to
4961 @code{98}.
4962
4963 @item threshold, thresh
4964 The threshold below which a pixel value is considered black; it defaults to
4965 @code{32}.
4966
4967 @end table
4968
4969 @section blend, tblend
4970
4971 Blend two video frames into each other.
4972
4973 The @code{blend} filter takes two input streams and outputs one
4974 stream, the first input is the "top" layer and second input is
4975 "bottom" layer.  By default, the output terminates when the longest input terminates.
4976
4977 The @code{tblend} (time blend) filter takes two consecutive frames
4978 from one single stream, and outputs the result obtained by blending
4979 the new frame on top of the old frame.
4980
4981 A description of the accepted options follows.
4982
4983 @table @option
4984 @item c0_mode
4985 @item c1_mode
4986 @item c2_mode
4987 @item c3_mode
4988 @item all_mode
4989 Set blend mode for specific pixel component or all pixel components in case
4990 of @var{all_mode}. Default value is @code{normal}.
4991
4992 Available values for component modes are:
4993 @table @samp
4994 @item addition
4995 @item grainmerge
4996 @item and
4997 @item average
4998 @item burn
4999 @item darken
5000 @item difference
5001 @item grainextract
5002 @item divide
5003 @item dodge
5004 @item freeze
5005 @item exclusion
5006 @item extremity
5007 @item glow
5008 @item hardlight
5009 @item hardmix
5010 @item heat
5011 @item lighten
5012 @item linearlight
5013 @item multiply
5014 @item multiply128
5015 @item negation
5016 @item normal
5017 @item or
5018 @item overlay
5019 @item phoenix
5020 @item pinlight
5021 @item reflect
5022 @item screen
5023 @item softlight
5024 @item subtract
5025 @item vividlight
5026 @item xor
5027 @end table
5028
5029 @item c0_opacity
5030 @item c1_opacity
5031 @item c2_opacity
5032 @item c3_opacity
5033 @item all_opacity
5034 Set blend opacity for specific pixel component or all pixel components in case
5035 of @var{all_opacity}. Only used in combination with pixel component blend modes.
5036
5037 @item c0_expr
5038 @item c1_expr
5039 @item c2_expr
5040 @item c3_expr
5041 @item all_expr
5042 Set blend expression for specific pixel component or all pixel components in case
5043 of @var{all_expr}. Note that related mode options will be ignored if those are set.
5044
5045 The expressions can use the following variables:
5046
5047 @table @option
5048 @item N
5049 The sequential number of the filtered frame, starting from @code{0}.
5050
5051 @item X
5052 @item Y
5053 the coordinates of the current sample
5054
5055 @item W
5056 @item H
5057 the width and height of currently filtered plane
5058
5059 @item SW
5060 @item SH
5061 Width and height scale depending on the currently filtered plane. It is the
5062 ratio between the corresponding luma plane number of pixels and the current
5063 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
5064 @code{0.5,0.5} for chroma planes.
5065
5066 @item T
5067 Time of the current frame, expressed in seconds.
5068
5069 @item TOP, A
5070 Value of pixel component at current location for first video frame (top layer).
5071
5072 @item BOTTOM, B
5073 Value of pixel component at current location for second video frame (bottom layer).
5074 @end table
5075 @end table
5076
5077 The @code{blend} filter also supports the @ref{framesync} options.
5078
5079 @subsection Examples
5080
5081 @itemize
5082 @item
5083 Apply transition from bottom layer to top layer in first 10 seconds:
5084 @example
5085 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
5086 @end example
5087
5088 @item
5089 Apply linear horizontal transition from top layer to bottom layer:
5090 @example
5091 blend=all_expr='A*(X/W)+B*(1-X/W)'
5092 @end example
5093
5094 @item
5095 Apply 1x1 checkerboard effect:
5096 @example
5097 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
5098 @end example
5099
5100 @item
5101 Apply uncover left effect:
5102 @example
5103 blend=all_expr='if(gte(N*SW+X,W),A,B)'
5104 @end example
5105
5106 @item
5107 Apply uncover down effect:
5108 @example
5109 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
5110 @end example
5111
5112 @item
5113 Apply uncover up-left effect:
5114 @example
5115 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
5116 @end example
5117
5118 @item
5119 Split diagonally video and shows top and bottom layer on each side:
5120 @example
5121 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
5122 @end example
5123
5124 @item
5125 Display differences between the current and the previous frame:
5126 @example
5127 tblend=all_mode=grainextract
5128 @end example
5129 @end itemize
5130
5131 @section boxblur
5132
5133 Apply a boxblur algorithm to the input video.
5134
5135 It accepts the following parameters:
5136
5137 @table @option
5138
5139 @item luma_radius, lr
5140 @item luma_power, lp
5141 @item chroma_radius, cr
5142 @item chroma_power, cp
5143 @item alpha_radius, ar
5144 @item alpha_power, ap
5145
5146 @end table
5147
5148 A description of the accepted options follows.
5149
5150 @table @option
5151 @item luma_radius, lr
5152 @item chroma_radius, cr
5153 @item alpha_radius, ar
5154 Set an expression for the box radius in pixels used for blurring the
5155 corresponding input plane.
5156
5157 The radius value must be a non-negative number, and must not be
5158 greater than the value of the expression @code{min(w,h)/2} for the
5159 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
5160 planes.
5161
5162 Default value for @option{luma_radius} is "2". If not specified,
5163 @option{chroma_radius} and @option{alpha_radius} default to the
5164 corresponding value set for @option{luma_radius}.
5165
5166 The expressions can contain the following constants:
5167 @table @option
5168 @item w
5169 @item h
5170 The input width and height in pixels.
5171
5172 @item cw
5173 @item ch
5174 The input chroma image width and height in pixels.
5175
5176 @item hsub
5177 @item vsub
5178 The horizontal and vertical chroma subsample values. For example, for the
5179 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
5180 @end table
5181
5182 @item luma_power, lp
5183 @item chroma_power, cp
5184 @item alpha_power, ap
5185 Specify how many times the boxblur filter is applied to the
5186 corresponding plane.
5187
5188 Default value for @option{luma_power} is 2. If not specified,
5189 @option{chroma_power} and @option{alpha_power} default to the
5190 corresponding value set for @option{luma_power}.
5191
5192 A value of 0 will disable the effect.
5193 @end table
5194
5195 @subsection Examples
5196
5197 @itemize
5198 @item
5199 Apply a boxblur filter with the luma, chroma, and alpha radii
5200 set to 2:
5201 @example
5202 boxblur=luma_radius=2:luma_power=1
5203 boxblur=2:1
5204 @end example
5205
5206 @item
5207 Set the luma radius to 2, and alpha and chroma radius to 0:
5208 @example
5209 boxblur=2:1:cr=0:ar=0
5210 @end example
5211
5212 @item
5213 Set the luma and chroma radii to a fraction of the video dimension:
5214 @example
5215 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
5216 @end example
5217 @end itemize
5218
5219 @section bwdif
5220
5221 Deinterlace the input video ("bwdif" stands for "Bob Weaver
5222 Deinterlacing Filter").
5223
5224 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
5225 interpolation algorithms.
5226 It accepts the following parameters:
5227
5228 @table @option
5229 @item mode
5230 The interlacing mode to adopt. It accepts one of the following values:
5231
5232 @table @option
5233 @item 0, send_frame
5234 Output one frame for each frame.
5235 @item 1, send_field
5236 Output one frame for each field.
5237 @end table
5238
5239 The default value is @code{send_field}.
5240
5241 @item parity
5242 The picture field parity assumed for the input interlaced video. It accepts one
5243 of the following values:
5244
5245 @table @option
5246 @item 0, tff
5247 Assume the top field is first.
5248 @item 1, bff
5249 Assume the bottom field is first.
5250 @item -1, auto
5251 Enable automatic detection of field parity.
5252 @end table
5253
5254 The default value is @code{auto}.
5255 If the interlacing is unknown or the decoder does not export this information,
5256 top field first will be assumed.
5257
5258 @item deint
5259 Specify which frames to deinterlace. Accept one of the following
5260 values:
5261
5262 @table @option
5263 @item 0, all
5264 Deinterlace all frames.
5265 @item 1, interlaced
5266 Only deinterlace frames marked as interlaced.
5267 @end table
5268
5269 The default value is @code{all}.
5270 @end table
5271
5272 @section chromakey
5273 YUV colorspace color/chroma keying.
5274
5275 The filter accepts the following options:
5276
5277 @table @option
5278 @item color
5279 The color which will be replaced with transparency.
5280
5281 @item similarity
5282 Similarity percentage with the key color.
5283
5284 0.01 matches only the exact key color, while 1.0 matches everything.
5285
5286 @item blend
5287 Blend percentage.
5288
5289 0.0 makes pixels either fully transparent, or not transparent at all.
5290
5291 Higher values result in semi-transparent pixels, with a higher transparency
5292 the more similar the pixels color is to the key color.
5293
5294 @item yuv
5295 Signals that the color passed is already in YUV instead of RGB.
5296
5297 Literal colors like "green" or "red" don't make sense with this enabled anymore.
5298 This can be used to pass exact YUV values as hexadecimal numbers.
5299 @end table
5300
5301 @subsection Examples
5302
5303 @itemize
5304 @item
5305 Make every green pixel in the input image transparent:
5306 @example
5307 ffmpeg -i input.png -vf chromakey=green out.png
5308 @end example
5309
5310 @item
5311 Overlay a greenscreen-video on top of a static black background.
5312 @example
5313 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
5314 @end example
5315 @end itemize
5316
5317 @section ciescope
5318
5319 Display CIE color diagram with pixels overlaid onto it.
5320
5321 The filter accepts the following options:
5322
5323 @table @option
5324 @item system
5325 Set color system.
5326
5327 @table @samp
5328 @item ntsc, 470m
5329 @item ebu, 470bg
5330 @item smpte
5331 @item 240m
5332 @item apple
5333 @item widergb
5334 @item cie1931
5335 @item rec709, hdtv
5336 @item uhdtv, rec2020
5337 @end table
5338
5339 @item cie
5340 Set CIE system.
5341
5342 @table @samp
5343 @item xyy
5344 @item ucs
5345 @item luv
5346 @end table
5347
5348 @item gamuts
5349 Set what gamuts to draw.
5350
5351 See @code{system} option for available values.
5352
5353 @item size, s
5354 Set ciescope size, by default set to 512.
5355
5356 @item intensity, i
5357 Set intensity used to map input pixel values to CIE diagram.
5358
5359 @item contrast
5360 Set contrast used to draw tongue colors that are out of active color system gamut.
5361
5362 @item corrgamma
5363 Correct gamma displayed on scope, by default enabled.
5364
5365 @item showwhite
5366 Show white point on CIE diagram, by default disabled.
5367
5368 @item gamma
5369 Set input gamma. Used only with XYZ input color space.
5370 @end table
5371
5372 @section codecview
5373
5374 Visualize information exported by some codecs.
5375
5376 Some codecs can export information through frames using side-data or other
5377 means. For example, some MPEG based codecs export motion vectors through the
5378 @var{export_mvs} flag in the codec @option{flags2} option.
5379
5380 The filter accepts the following option:
5381
5382 @table @option
5383 @item mv
5384 Set motion vectors to visualize.
5385
5386 Available flags for @var{mv} are:
5387
5388 @table @samp
5389 @item pf
5390 forward predicted MVs of P-frames
5391 @item bf
5392 forward predicted MVs of B-frames
5393 @item bb
5394 backward predicted MVs of B-frames
5395 @end table
5396
5397 @item qp
5398 Display quantization parameters using the chroma planes.
5399
5400 @item mv_type, mvt
5401 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
5402
5403 Available flags for @var{mv_type} are:
5404
5405 @table @samp
5406 @item fp
5407 forward predicted MVs
5408 @item bp
5409 backward predicted MVs
5410 @end table
5411
5412 @item frame_type, ft
5413 Set frame type to visualize motion vectors of.
5414
5415 Available flags for @var{frame_type} are:
5416
5417 @table @samp
5418 @item if
5419 intra-coded frames (I-frames)
5420 @item pf
5421 predicted frames (P-frames)
5422 @item bf
5423 bi-directionally predicted frames (B-frames)
5424 @end table
5425 @end table
5426
5427 @subsection Examples
5428
5429 @itemize
5430 @item
5431 Visualize forward predicted MVs of all frames using @command{ffplay}:
5432 @example
5433 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
5434 @end example
5435
5436 @item
5437 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5438 @example
5439 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5440 @end example
5441 @end itemize
5442
5443 @section colorbalance
5444 Modify intensity of primary colors (red, green and blue) of input frames.
5445
5446 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5447 regions for the red-cyan, green-magenta or blue-yellow balance.
5448
5449 A positive adjustment value shifts the balance towards the primary color, a negative
5450 value towards the complementary color.
5451
5452 The filter accepts the following options:
5453
5454 @table @option
5455 @item rs
5456 @item gs
5457 @item bs
5458 Adjust red, green and blue shadows (darkest pixels).
5459
5460 @item rm
5461 @item gm
5462 @item bm
5463 Adjust red, green and blue midtones (medium pixels).
5464
5465 @item rh
5466 @item gh
5467 @item bh
5468 Adjust red, green and blue highlights (brightest pixels).
5469
5470 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5471 @end table
5472
5473 @subsection Examples
5474
5475 @itemize
5476 @item
5477 Add red color cast to shadows:
5478 @example
5479 colorbalance=rs=.3
5480 @end example
5481 @end itemize
5482
5483 @section colorkey
5484 RGB colorspace color keying.
5485
5486 The filter accepts the following options:
5487
5488 @table @option
5489 @item color
5490 The color which will be replaced with transparency.
5491
5492 @item similarity
5493 Similarity percentage with the key color.
5494
5495 0.01 matches only the exact key color, while 1.0 matches everything.
5496
5497 @item blend
5498 Blend percentage.
5499
5500 0.0 makes pixels either fully transparent, or not transparent at all.
5501
5502 Higher values result in semi-transparent pixels, with a higher transparency
5503 the more similar the pixels color is to the key color.
5504 @end table
5505
5506 @subsection Examples
5507
5508 @itemize
5509 @item
5510 Make every green pixel in the input image transparent:
5511 @example
5512 ffmpeg -i input.png -vf colorkey=green out.png
5513 @end example
5514
5515 @item
5516 Overlay a greenscreen-video on top of a static background image.
5517 @example
5518 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
5519 @end example
5520 @end itemize
5521
5522 @section colorlevels
5523
5524 Adjust video input frames using levels.
5525
5526 The filter accepts the following options:
5527
5528 @table @option
5529 @item rimin
5530 @item gimin
5531 @item bimin
5532 @item aimin
5533 Adjust red, green, blue and alpha input black point.
5534 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5535
5536 @item rimax
5537 @item gimax
5538 @item bimax
5539 @item aimax
5540 Adjust red, green, blue and alpha input white point.
5541 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5542
5543 Input levels are used to lighten highlights (bright tones), darken shadows
5544 (dark tones), change the balance of bright and dark tones.
5545
5546 @item romin
5547 @item gomin
5548 @item bomin
5549 @item aomin
5550 Adjust red, green, blue and alpha output black point.
5551 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5552
5553 @item romax
5554 @item gomax
5555 @item bomax
5556 @item aomax
5557 Adjust red, green, blue and alpha output white point.
5558 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5559
5560 Output levels allows manual selection of a constrained output level range.
5561 @end table
5562
5563 @subsection Examples
5564
5565 @itemize
5566 @item
5567 Make video output darker:
5568 @example
5569 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5570 @end example
5571
5572 @item
5573 Increase contrast:
5574 @example
5575 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5576 @end example
5577
5578 @item
5579 Make video output lighter:
5580 @example
5581 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5582 @end example
5583
5584 @item
5585 Increase brightness:
5586 @example
5587 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5588 @end example
5589 @end itemize
5590
5591 @section colorchannelmixer
5592
5593 Adjust video input frames by re-mixing color channels.
5594
5595 This filter modifies a color channel by adding the values associated to
5596 the other channels of the same pixels. For example if the value to
5597 modify is red, the output value will be:
5598 @example
5599 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5600 @end example
5601
5602 The filter accepts the following options:
5603
5604 @table @option
5605 @item rr
5606 @item rg
5607 @item rb
5608 @item ra
5609 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5610 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5611
5612 @item gr
5613 @item gg
5614 @item gb
5615 @item ga
5616 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5617 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5618
5619 @item br
5620 @item bg
5621 @item bb
5622 @item ba
5623 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5624 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5625
5626 @item ar
5627 @item ag
5628 @item ab
5629 @item aa
5630 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5631 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5632
5633 Allowed ranges for options are @code{[-2.0, 2.0]}.
5634 @end table
5635
5636 @subsection Examples
5637
5638 @itemize
5639 @item
5640 Convert source to grayscale:
5641 @example
5642 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5643 @end example
5644 @item
5645 Simulate sepia tones:
5646 @example
5647 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5648 @end example
5649 @end itemize
5650
5651 @section colormatrix
5652
5653 Convert color matrix.
5654
5655 The filter accepts the following options:
5656
5657 @table @option
5658 @item src
5659 @item dst
5660 Specify the source and destination color matrix. Both values must be
5661 specified.
5662
5663 The accepted values are:
5664 @table @samp
5665 @item bt709
5666 BT.709
5667
5668 @item fcc
5669 FCC
5670
5671 @item bt601
5672 BT.601
5673
5674 @item bt470
5675 BT.470
5676
5677 @item bt470bg
5678 BT.470BG
5679
5680 @item smpte170m
5681 SMPTE-170M
5682
5683 @item smpte240m
5684 SMPTE-240M
5685
5686 @item bt2020
5687 BT.2020
5688 @end table
5689 @end table
5690
5691 For example to convert from BT.601 to SMPTE-240M, use the command:
5692 @example
5693 colormatrix=bt601:smpte240m
5694 @end example
5695
5696 @section colorspace
5697
5698 Convert colorspace, transfer characteristics or color primaries.
5699 Input video needs to have an even size.
5700
5701 The filter accepts the following options:
5702
5703 @table @option
5704 @anchor{all}
5705 @item all
5706 Specify all color properties at once.
5707
5708 The accepted values are:
5709 @table @samp
5710 @item bt470m
5711 BT.470M
5712
5713 @item bt470bg
5714 BT.470BG
5715
5716 @item bt601-6-525
5717 BT.601-6 525
5718
5719 @item bt601-6-625
5720 BT.601-6 625
5721
5722 @item bt709
5723 BT.709
5724
5725 @item smpte170m
5726 SMPTE-170M
5727
5728 @item smpte240m
5729 SMPTE-240M
5730
5731 @item bt2020
5732 BT.2020
5733
5734 @end table
5735
5736 @anchor{space}
5737 @item space
5738 Specify output colorspace.
5739
5740 The accepted values are:
5741 @table @samp
5742 @item bt709
5743 BT.709
5744
5745 @item fcc
5746 FCC
5747
5748 @item bt470bg
5749 BT.470BG or BT.601-6 625
5750
5751 @item smpte170m
5752 SMPTE-170M or BT.601-6 525
5753
5754 @item smpte240m
5755 SMPTE-240M
5756
5757 @item ycgco
5758 YCgCo
5759
5760 @item bt2020ncl
5761 BT.2020 with non-constant luminance
5762
5763 @end table
5764
5765 @anchor{trc}
5766 @item trc
5767 Specify output transfer characteristics.
5768
5769 The accepted values are:
5770 @table @samp
5771 @item bt709
5772 BT.709
5773
5774 @item bt470m
5775 BT.470M
5776
5777 @item bt470bg
5778 BT.470BG
5779
5780 @item gamma22
5781 Constant gamma of 2.2
5782
5783 @item gamma28
5784 Constant gamma of 2.8
5785
5786 @item smpte170m
5787 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5788
5789 @item smpte240m
5790 SMPTE-240M
5791
5792 @item srgb
5793 SRGB
5794
5795 @item iec61966-2-1
5796 iec61966-2-1
5797
5798 @item iec61966-2-4
5799 iec61966-2-4
5800
5801 @item xvycc
5802 xvycc
5803
5804 @item bt2020-10
5805 BT.2020 for 10-bits content
5806
5807 @item bt2020-12
5808 BT.2020 for 12-bits content
5809
5810 @end table
5811
5812 @anchor{primaries}
5813 @item primaries
5814 Specify output color primaries.
5815
5816 The accepted values are:
5817 @table @samp
5818 @item bt709
5819 BT.709
5820
5821 @item bt470m
5822 BT.470M
5823
5824 @item bt470bg
5825 BT.470BG or BT.601-6 625
5826
5827 @item smpte170m
5828 SMPTE-170M or BT.601-6 525
5829
5830 @item smpte240m
5831 SMPTE-240M
5832
5833 @item film
5834 film
5835
5836 @item smpte431
5837 SMPTE-431
5838
5839 @item smpte432
5840 SMPTE-432
5841
5842 @item bt2020
5843 BT.2020
5844
5845 @item jedec-p22
5846 JEDEC P22 phosphors
5847
5848 @end table
5849
5850 @anchor{range}
5851 @item range
5852 Specify output color range.
5853
5854 The accepted values are:
5855 @table @samp
5856 @item tv
5857 TV (restricted) range
5858
5859 @item mpeg
5860 MPEG (restricted) range
5861
5862 @item pc
5863 PC (full) range
5864
5865 @item jpeg
5866 JPEG (full) range
5867
5868 @end table
5869
5870 @item format
5871 Specify output color format.
5872
5873 The accepted values are:
5874 @table @samp
5875 @item yuv420p
5876 YUV 4:2:0 planar 8-bits
5877
5878 @item yuv420p10
5879 YUV 4:2:0 planar 10-bits
5880
5881 @item yuv420p12
5882 YUV 4:2:0 planar 12-bits
5883
5884 @item yuv422p
5885 YUV 4:2:2 planar 8-bits
5886
5887 @item yuv422p10
5888 YUV 4:2:2 planar 10-bits
5889
5890 @item yuv422p12
5891 YUV 4:2:2 planar 12-bits
5892
5893 @item yuv444p
5894 YUV 4:4:4 planar 8-bits
5895
5896 @item yuv444p10
5897 YUV 4:4:4 planar 10-bits
5898
5899 @item yuv444p12
5900 YUV 4:4:4 planar 12-bits
5901
5902 @end table
5903
5904 @item fast
5905 Do a fast conversion, which skips gamma/primary correction. This will take
5906 significantly less CPU, but will be mathematically incorrect. To get output
5907 compatible with that produced by the colormatrix filter, use fast=1.
5908
5909 @item dither
5910 Specify dithering mode.
5911
5912 The accepted values are:
5913 @table @samp
5914 @item none
5915 No dithering
5916
5917 @item fsb
5918 Floyd-Steinberg dithering
5919 @end table
5920
5921 @item wpadapt
5922 Whitepoint adaptation mode.
5923
5924 The accepted values are:
5925 @table @samp
5926 @item bradford
5927 Bradford whitepoint adaptation
5928
5929 @item vonkries
5930 von Kries whitepoint adaptation
5931
5932 @item identity
5933 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5934 @end table
5935
5936 @item iall
5937 Override all input properties at once. Same accepted values as @ref{all}.
5938
5939 @item ispace
5940 Override input colorspace. Same accepted values as @ref{space}.
5941
5942 @item iprimaries
5943 Override input color primaries. Same accepted values as @ref{primaries}.
5944
5945 @item itrc
5946 Override input transfer characteristics. Same accepted values as @ref{trc}.
5947
5948 @item irange
5949 Override input color range. Same accepted values as @ref{range}.
5950
5951 @end table
5952
5953 The filter converts the transfer characteristics, color space and color
5954 primaries to the specified user values. The output value, if not specified,
5955 is set to a default value based on the "all" property. If that property is
5956 also not specified, the filter will log an error. The output color range and
5957 format default to the same value as the input color range and format. The
5958 input transfer characteristics, color space, color primaries and color range
5959 should be set on the input data. If any of these are missing, the filter will
5960 log an error and no conversion will take place.
5961
5962 For example to convert the input to SMPTE-240M, use the command:
5963 @example
5964 colorspace=smpte240m
5965 @end example
5966
5967 @section convolution
5968
5969 Apply convolution 3x3 or 5x5 filter.
5970
5971 The filter accepts the following options:
5972
5973 @table @option
5974 @item 0m
5975 @item 1m
5976 @item 2m
5977 @item 3m
5978 Set matrix for each plane.
5979 Matrix is sequence of 9 or 25 signed integers.
5980
5981 @item 0rdiv
5982 @item 1rdiv
5983 @item 2rdiv
5984 @item 3rdiv
5985 Set multiplier for calculated value for each plane.
5986
5987 @item 0bias
5988 @item 1bias
5989 @item 2bias
5990 @item 3bias
5991 Set bias for each plane. This value is added to the result of the multiplication.
5992 Useful for making the overall image brighter or darker. Default is 0.0.
5993 @end table
5994
5995 @subsection Examples
5996
5997 @itemize
5998 @item
5999 Apply sharpen:
6000 @example
6001 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"
6002 @end example
6003
6004 @item
6005 Apply blur:
6006 @example
6007 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"
6008 @end example
6009
6010 @item
6011 Apply edge enhance:
6012 @example
6013 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"
6014 @end example
6015
6016 @item
6017 Apply edge detect:
6018 @example
6019 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"
6020 @end example
6021
6022 @item
6023 Apply laplacian edge detector which includes diagonals:
6024 @example
6025 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"
6026 @end example
6027
6028 @item
6029 Apply emboss:
6030 @example
6031 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"
6032 @end example
6033 @end itemize
6034
6035 @section convolve
6036
6037 Apply 2D convolution of video stream in frequency domain using second stream
6038 as impulse.
6039
6040 The filter accepts the following options:
6041
6042 @table @option
6043 @item planes
6044 Set which planes to process.
6045
6046 @item impulse
6047 Set which impulse video frames will be processed, can be @var{first}
6048 or @var{all}. Default is @var{all}.
6049 @end table
6050
6051 The @code{convolve} filter also supports the @ref{framesync} options.
6052
6053 @section copy
6054
6055 Copy the input video source unchanged to the output. This is mainly useful for
6056 testing purposes.
6057
6058 @anchor{coreimage}
6059 @section coreimage
6060 Video filtering on GPU using Apple's CoreImage API on OSX.
6061
6062 Hardware acceleration is based on an OpenGL context. Usually, this means it is
6063 processed by video hardware. However, software-based OpenGL implementations
6064 exist which means there is no guarantee for hardware processing. It depends on
6065 the respective OSX.
6066
6067 There are many filters and image generators provided by Apple that come with a
6068 large variety of options. The filter has to be referenced by its name along
6069 with its options.
6070
6071 The coreimage filter accepts the following options:
6072 @table @option
6073 @item list_filters
6074 List all available filters and generators along with all their respective
6075 options as well as possible minimum and maximum values along with the default
6076 values.
6077 @example
6078 list_filters=true
6079 @end example
6080
6081 @item filter
6082 Specify all filters by their respective name and options.
6083 Use @var{list_filters} to determine all valid filter names and options.
6084 Numerical options are specified by a float value and are automatically clamped
6085 to their respective value range.  Vector and color options have to be specified
6086 by a list of space separated float values. Character escaping has to be done.
6087 A special option name @code{default} is available to use default options for a
6088 filter.
6089
6090 It is required to specify either @code{default} or at least one of the filter options.
6091 All omitted options are used with their default values.
6092 The syntax of the filter string is as follows:
6093 @example
6094 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
6095 @end example
6096
6097 @item output_rect
6098 Specify a rectangle where the output of the filter chain is copied into the
6099 input image. It is given by a list of space separated float values:
6100 @example
6101 output_rect=x\ y\ width\ height
6102 @end example
6103 If not given, the output rectangle equals the dimensions of the input image.
6104 The output rectangle is automatically cropped at the borders of the input
6105 image. Negative values are valid for each component.
6106 @example
6107 output_rect=25\ 25\ 100\ 100
6108 @end example
6109 @end table
6110
6111 Several filters can be chained for successive processing without GPU-HOST
6112 transfers allowing for fast processing of complex filter chains.
6113 Currently, only filters with zero (generators) or exactly one (filters) input
6114 image and one output image are supported. Also, transition filters are not yet
6115 usable as intended.
6116
6117 Some filters generate output images with additional padding depending on the
6118 respective filter kernel. The padding is automatically removed to ensure the
6119 filter output has the same size as the input image.
6120
6121 For image generators, the size of the output image is determined by the
6122 previous output image of the filter chain or the input image of the whole
6123 filterchain, respectively. The generators do not use the pixel information of
6124 this image to generate their output. However, the generated output is
6125 blended onto this image, resulting in partial or complete coverage of the
6126 output image.
6127
6128 The @ref{coreimagesrc} video source can be used for generating input images
6129 which are directly fed into the filter chain. By using it, providing input
6130 images by another video source or an input video is not required.
6131
6132 @subsection Examples
6133
6134 @itemize
6135
6136 @item
6137 List all filters available:
6138 @example
6139 coreimage=list_filters=true
6140 @end example
6141
6142 @item
6143 Use the CIBoxBlur filter with default options to blur an image:
6144 @example
6145 coreimage=filter=CIBoxBlur@@default
6146 @end example
6147
6148 @item
6149 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
6150 its center at 100x100 and a radius of 50 pixels:
6151 @example
6152 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
6153 @end example
6154
6155 @item
6156 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
6157 given as complete and escaped command-line for Apple's standard bash shell:
6158 @example
6159 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
6160 @end example
6161 @end itemize
6162
6163 @section crop
6164
6165 Crop the input video to given dimensions.
6166
6167 It accepts the following parameters:
6168
6169 @table @option
6170 @item w, out_w
6171 The width of the output video. It defaults to @code{iw}.
6172 This expression is evaluated only once during the filter
6173 configuration, or when the @samp{w} or @samp{out_w} command is sent.
6174
6175 @item h, out_h
6176 The height of the output video. It defaults to @code{ih}.
6177 This expression is evaluated only once during the filter
6178 configuration, or when the @samp{h} or @samp{out_h} command is sent.
6179
6180 @item x
6181 The horizontal position, in the input video, of the left edge of the output
6182 video. It defaults to @code{(in_w-out_w)/2}.
6183 This expression is evaluated per-frame.
6184
6185 @item y
6186 The vertical position, in the input video, of the top edge of the output video.
6187 It defaults to @code{(in_h-out_h)/2}.
6188 This expression is evaluated per-frame.
6189
6190 @item keep_aspect
6191 If set to 1 will force the output display aspect ratio
6192 to be the same of the input, by changing the output sample aspect
6193 ratio. It defaults to 0.
6194
6195 @item exact
6196 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
6197 width/height/x/y as specified and will not be rounded to nearest smaller value.
6198 It defaults to 0.
6199 @end table
6200
6201 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
6202 expressions containing the following constants:
6203
6204 @table @option
6205 @item x
6206 @item y
6207 The computed values for @var{x} and @var{y}. They are evaluated for
6208 each new frame.
6209
6210 @item in_w
6211 @item in_h
6212 The input width and height.
6213
6214 @item iw
6215 @item ih
6216 These are the same as @var{in_w} and @var{in_h}.
6217
6218 @item out_w
6219 @item out_h
6220 The output (cropped) width and height.
6221
6222 @item ow
6223 @item oh
6224 These are the same as @var{out_w} and @var{out_h}.
6225
6226 @item a
6227 same as @var{iw} / @var{ih}
6228
6229 @item sar
6230 input sample aspect ratio
6231
6232 @item dar
6233 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
6234
6235 @item hsub
6236 @item vsub
6237 horizontal and vertical chroma subsample values. For example for the
6238 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6239
6240 @item n
6241 The number of the input frame, starting from 0.
6242
6243 @item pos
6244 the position in the file of the input frame, NAN if unknown
6245
6246 @item t
6247 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
6248
6249 @end table
6250
6251 The expression for @var{out_w} may depend on the value of @var{out_h},
6252 and the expression for @var{out_h} may depend on @var{out_w}, but they
6253 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
6254 evaluated after @var{out_w} and @var{out_h}.
6255
6256 The @var{x} and @var{y} parameters specify the expressions for the
6257 position of the top-left corner of the output (non-cropped) area. They
6258 are evaluated for each frame. If the evaluated value is not valid, it
6259 is approximated to the nearest valid value.
6260
6261 The expression for @var{x} may depend on @var{y}, and the expression
6262 for @var{y} may depend on @var{x}.
6263
6264 @subsection Examples
6265
6266 @itemize
6267 @item
6268 Crop area with size 100x100 at position (12,34).
6269 @example
6270 crop=100:100:12:34
6271 @end example
6272
6273 Using named options, the example above becomes:
6274 @example
6275 crop=w=100:h=100:x=12:y=34
6276 @end example
6277
6278 @item
6279 Crop the central input area with size 100x100:
6280 @example
6281 crop=100:100
6282 @end example
6283
6284 @item
6285 Crop the central input area with size 2/3 of the input video:
6286 @example
6287 crop=2/3*in_w:2/3*in_h
6288 @end example
6289
6290 @item
6291 Crop the input video central square:
6292 @example
6293 crop=out_w=in_h
6294 crop=in_h
6295 @end example
6296
6297 @item
6298 Delimit the rectangle with the top-left corner placed at position
6299 100:100 and the right-bottom corner corresponding to the right-bottom
6300 corner of the input image.
6301 @example
6302 crop=in_w-100:in_h-100:100:100
6303 @end example
6304
6305 @item
6306 Crop 10 pixels from the left and right borders, and 20 pixels from
6307 the top and bottom borders
6308 @example
6309 crop=in_w-2*10:in_h-2*20
6310 @end example
6311
6312 @item
6313 Keep only the bottom right quarter of the input image:
6314 @example
6315 crop=in_w/2:in_h/2:in_w/2:in_h/2
6316 @end example
6317
6318 @item
6319 Crop height for getting Greek harmony:
6320 @example
6321 crop=in_w:1/PHI*in_w
6322 @end example
6323
6324 @item
6325 Apply trembling effect:
6326 @example
6327 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)
6328 @end example
6329
6330 @item
6331 Apply erratic camera effect depending on timestamp:
6332 @example
6333 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)"
6334 @end example
6335
6336 @item
6337 Set x depending on the value of y:
6338 @example
6339 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
6340 @end example
6341 @end itemize
6342
6343 @subsection Commands
6344
6345 This filter supports the following commands:
6346 @table @option
6347 @item w, out_w
6348 @item h, out_h
6349 @item x
6350 @item y
6351 Set width/height of the output video and the horizontal/vertical position
6352 in the input video.
6353 The command accepts the same syntax of the corresponding option.
6354
6355 If the specified expression is not valid, it is kept at its current
6356 value.
6357 @end table
6358
6359 @section cropdetect
6360
6361 Auto-detect the crop size.
6362
6363 It calculates the necessary cropping parameters and prints the
6364 recommended parameters via the logging system. The detected dimensions
6365 correspond to the non-black area of the input video.
6366
6367 It accepts the following parameters:
6368
6369 @table @option
6370
6371 @item limit
6372 Set higher black value threshold, which can be optionally specified
6373 from nothing (0) to everything (255 for 8-bit based formats). An intensity
6374 value greater to the set value is considered non-black. It defaults to 24.
6375 You can also specify a value between 0.0 and 1.0 which will be scaled depending
6376 on the bitdepth of the pixel format.
6377
6378 @item round
6379 The value which the width/height should be divisible by. It defaults to
6380 16. The offset is automatically adjusted to center the video. Use 2 to
6381 get only even dimensions (needed for 4:2:2 video). 16 is best when
6382 encoding to most video codecs.
6383
6384 @item reset_count, reset
6385 Set the counter that determines after how many frames cropdetect will
6386 reset the previously detected largest video area and start over to
6387 detect the current optimal crop area. Default value is 0.
6388
6389 This can be useful when channel logos distort the video area. 0
6390 indicates 'never reset', and returns the largest area encountered during
6391 playback.
6392 @end table
6393
6394 @anchor{curves}
6395 @section curves
6396
6397 Apply color adjustments using curves.
6398
6399 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
6400 component (red, green and blue) has its values defined by @var{N} key points
6401 tied from each other using a smooth curve. The x-axis represents the pixel
6402 values from the input frame, and the y-axis the new pixel values to be set for
6403 the output frame.
6404
6405 By default, a component curve is defined by the two points @var{(0;0)} and
6406 @var{(1;1)}. This creates a straight line where each original pixel value is
6407 "adjusted" to its own value, which means no change to the image.
6408
6409 The filter allows you to redefine these two points and add some more. A new
6410 curve (using a natural cubic spline interpolation) will be define to pass
6411 smoothly through all these new coordinates. The new defined points needs to be
6412 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
6413 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
6414 the vector spaces, the values will be clipped accordingly.
6415
6416 The filter accepts the following options:
6417
6418 @table @option
6419 @item preset
6420 Select one of the available color presets. This option can be used in addition
6421 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
6422 options takes priority on the preset values.
6423 Available presets are:
6424 @table @samp
6425 @item none
6426 @item color_negative
6427 @item cross_process
6428 @item darker
6429 @item increase_contrast
6430 @item lighter
6431 @item linear_contrast
6432 @item medium_contrast
6433 @item negative
6434 @item strong_contrast
6435 @item vintage
6436 @end table
6437 Default is @code{none}.
6438 @item master, m
6439 Set the master key points. These points will define a second pass mapping. It
6440 is sometimes called a "luminance" or "value" mapping. It can be used with
6441 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
6442 post-processing LUT.
6443 @item red, r
6444 Set the key points for the red component.
6445 @item green, g
6446 Set the key points for the green component.
6447 @item blue, b
6448 Set the key points for the blue component.
6449 @item all
6450 Set the key points for all components (not including master).
6451 Can be used in addition to the other key points component
6452 options. In this case, the unset component(s) will fallback on this
6453 @option{all} setting.
6454 @item psfile
6455 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
6456 @item plot
6457 Save Gnuplot script of the curves in specified file.
6458 @end table
6459
6460 To avoid some filtergraph syntax conflicts, each key points list need to be
6461 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
6462
6463 @subsection Examples
6464
6465 @itemize
6466 @item
6467 Increase slightly the middle level of blue:
6468 @example
6469 curves=blue='0/0 0.5/0.58 1/1'
6470 @end example
6471
6472 @item
6473 Vintage effect:
6474 @example
6475 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'
6476 @end example
6477 Here we obtain the following coordinates for each components:
6478 @table @var
6479 @item red
6480 @code{(0;0.11) (0.42;0.51) (1;0.95)}
6481 @item green
6482 @code{(0;0) (0.50;0.48) (1;1)}
6483 @item blue
6484 @code{(0;0.22) (0.49;0.44) (1;0.80)}
6485 @end table
6486
6487 @item
6488 The previous example can also be achieved with the associated built-in preset:
6489 @example
6490 curves=preset=vintage
6491 @end example
6492
6493 @item
6494 Or simply:
6495 @example
6496 curves=vintage
6497 @end example
6498
6499 @item
6500 Use a Photoshop preset and redefine the points of the green component:
6501 @example
6502 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
6503 @end example
6504
6505 @item
6506 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
6507 and @command{gnuplot}:
6508 @example
6509 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
6510 gnuplot -p /tmp/curves.plt
6511 @end example
6512 @end itemize
6513
6514 @section datascope
6515
6516 Video data analysis filter.
6517
6518 This filter shows hexadecimal pixel values of part of video.
6519
6520 The filter accepts the following options:
6521
6522 @table @option
6523 @item size, s
6524 Set output video size.
6525
6526 @item x
6527 Set x offset from where to pick pixels.
6528
6529 @item y
6530 Set y offset from where to pick pixels.
6531
6532 @item mode
6533 Set scope mode, can be one of the following:
6534 @table @samp
6535 @item mono
6536 Draw hexadecimal pixel values with white color on black background.
6537
6538 @item color
6539 Draw hexadecimal pixel values with input video pixel color on black
6540 background.
6541
6542 @item color2
6543 Draw hexadecimal pixel values on color background picked from input video,
6544 the text color is picked in such way so its always visible.
6545 @end table
6546
6547 @item axis
6548 Draw rows and columns numbers on left and top of video.
6549
6550 @item opacity
6551 Set background opacity.
6552 @end table
6553
6554 @section dctdnoiz
6555
6556 Denoise frames using 2D DCT (frequency domain filtering).
6557
6558 This filter is not designed for real time.
6559
6560 The filter accepts the following options:
6561
6562 @table @option
6563 @item sigma, s
6564 Set the noise sigma constant.
6565
6566 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6567 coefficient (absolute value) below this threshold with be dropped.
6568
6569 If you need a more advanced filtering, see @option{expr}.
6570
6571 Default is @code{0}.
6572
6573 @item overlap
6574 Set number overlapping pixels for each block. Since the filter can be slow, you
6575 may want to reduce this value, at the cost of a less effective filter and the
6576 risk of various artefacts.
6577
6578 If the overlapping value doesn't permit processing the whole input width or
6579 height, a warning will be displayed and according borders won't be denoised.
6580
6581 Default value is @var{blocksize}-1, which is the best possible setting.
6582
6583 @item expr, e
6584 Set the coefficient factor expression.
6585
6586 For each coefficient of a DCT block, this expression will be evaluated as a
6587 multiplier value for the coefficient.
6588
6589 If this is option is set, the @option{sigma} option will be ignored.
6590
6591 The absolute value of the coefficient can be accessed through the @var{c}
6592 variable.
6593
6594 @item n
6595 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6596 @var{blocksize}, which is the width and height of the processed blocks.
6597
6598 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6599 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6600 on the speed processing. Also, a larger block size does not necessarily means a
6601 better de-noising.
6602 @end table
6603
6604 @subsection Examples
6605
6606 Apply a denoise with a @option{sigma} of @code{4.5}:
6607 @example
6608 dctdnoiz=4.5
6609 @end example
6610
6611 The same operation can be achieved using the expression system:
6612 @example
6613 dctdnoiz=e='gte(c, 4.5*3)'
6614 @end example
6615
6616 Violent denoise using a block size of @code{16x16}:
6617 @example
6618 dctdnoiz=15:n=4
6619 @end example
6620
6621 @section deband
6622
6623 Remove banding artifacts from input video.
6624 It works by replacing banded pixels with average value of referenced pixels.
6625
6626 The filter accepts the following options:
6627
6628 @table @option
6629 @item 1thr
6630 @item 2thr
6631 @item 3thr
6632 @item 4thr
6633 Set banding detection threshold for each plane. Default is 0.02.
6634 Valid range is 0.00003 to 0.5.
6635 If difference between current pixel and reference pixel is less than threshold,
6636 it will be considered as banded.
6637
6638 @item range, r
6639 Banding detection range in pixels. Default is 16. If positive, random number
6640 in range 0 to set value will be used. If negative, exact absolute value
6641 will be used.
6642 The range defines square of four pixels around current pixel.
6643
6644 @item direction, d
6645 Set direction in radians from which four pixel will be compared. If positive,
6646 random direction from 0 to set direction will be picked. If negative, exact of
6647 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6648 will pick only pixels on same row and -PI/2 will pick only pixels on same
6649 column.
6650
6651 @item blur, b
6652 If enabled, current pixel is compared with average value of all four
6653 surrounding pixels. The default is enabled. If disabled current pixel is
6654 compared with all four surrounding pixels. The pixel is considered banded
6655 if only all four differences with surrounding pixels are less than threshold.
6656
6657 @item coupling, c
6658 If enabled, current pixel is changed if and only if all pixel components are banded,
6659 e.g. banding detection threshold is triggered for all color components.
6660 The default is disabled.
6661 @end table
6662
6663 @anchor{decimate}
6664 @section decimate
6665
6666 Drop duplicated frames at regular intervals.
6667
6668 The filter accepts the following options:
6669
6670 @table @option
6671 @item cycle
6672 Set the number of frames from which one will be dropped. Setting this to
6673 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6674 Default is @code{5}.
6675
6676 @item dupthresh
6677 Set the threshold for duplicate detection. If the difference metric for a frame
6678 is less than or equal to this value, then it is declared as duplicate. Default
6679 is @code{1.1}
6680
6681 @item scthresh
6682 Set scene change threshold. Default is @code{15}.
6683
6684 @item blockx
6685 @item blocky
6686 Set the size of the x and y-axis blocks used during metric calculations.
6687 Larger blocks give better noise suppression, but also give worse detection of
6688 small movements. Must be a power of two. Default is @code{32}.
6689
6690 @item ppsrc
6691 Mark main input as a pre-processed input and activate clean source input
6692 stream. This allows the input to be pre-processed with various filters to help
6693 the metrics calculation while keeping the frame selection lossless. When set to
6694 @code{1}, the first stream is for the pre-processed input, and the second
6695 stream is the clean source from where the kept frames are chosen. Default is
6696 @code{0}.
6697
6698 @item chroma
6699 Set whether or not chroma is considered in the metric calculations. Default is
6700 @code{1}.
6701 @end table
6702
6703 @section deflate
6704
6705 Apply deflate effect to the video.
6706
6707 This filter replaces the pixel by the local(3x3) average by taking into account
6708 only values lower than the pixel.
6709
6710 It accepts the following options:
6711
6712 @table @option
6713 @item threshold0
6714 @item threshold1
6715 @item threshold2
6716 @item threshold3
6717 Limit the maximum change for each plane, default is 65535.
6718 If 0, plane will remain unchanged.
6719 @end table
6720
6721 @section deflicker
6722
6723 Remove temporal frame luminance variations.
6724
6725 It accepts the following options:
6726
6727 @table @option
6728 @item size, s
6729 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
6730
6731 @item mode, m
6732 Set averaging mode to smooth temporal luminance variations.
6733
6734 Available values are:
6735 @table @samp
6736 @item am
6737 Arithmetic mean
6738
6739 @item gm
6740 Geometric mean
6741
6742 @item hm
6743 Harmonic mean
6744
6745 @item qm
6746 Quadratic mean
6747
6748 @item cm
6749 Cubic mean
6750
6751 @item pm
6752 Power mean
6753
6754 @item median
6755 Median
6756 @end table
6757
6758 @item bypass
6759 Do not actually modify frame. Useful when one only wants metadata.
6760 @end table
6761
6762 @section dejudder
6763
6764 Remove judder produced by partially interlaced telecined content.
6765
6766 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6767 source was partially telecined content then the output of @code{pullup,dejudder}
6768 will have a variable frame rate. May change the recorded frame rate of the
6769 container. Aside from that change, this filter will not affect constant frame
6770 rate video.
6771
6772 The option available in this filter is:
6773 @table @option
6774
6775 @item cycle
6776 Specify the length of the window over which the judder repeats.
6777
6778 Accepts any integer greater than 1. Useful values are:
6779 @table @samp
6780
6781 @item 4
6782 If the original was telecined from 24 to 30 fps (Film to NTSC).
6783
6784 @item 5
6785 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6786
6787 @item 20
6788 If a mixture of the two.
6789 @end table
6790
6791 The default is @samp{4}.
6792 @end table
6793
6794 @section delogo
6795
6796 Suppress a TV station logo by a simple interpolation of the surrounding
6797 pixels. Just set a rectangle covering the logo and watch it disappear
6798 (and sometimes something even uglier appear - your mileage may vary).
6799
6800 It accepts the following parameters:
6801 @table @option
6802
6803 @item x
6804 @item y
6805 Specify the top left corner coordinates of the logo. They must be
6806 specified.
6807
6808 @item w
6809 @item h
6810 Specify the width and height of the logo to clear. They must be
6811 specified.
6812
6813 @item band, t
6814 Specify the thickness of the fuzzy edge of the rectangle (added to
6815 @var{w} and @var{h}). The default value is 1. This option is
6816 deprecated, setting higher values should no longer be necessary and
6817 is not recommended.
6818
6819 @item show
6820 When set to 1, a green rectangle is drawn on the screen to simplify
6821 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6822 The default value is 0.
6823
6824 The rectangle is drawn on the outermost pixels which will be (partly)
6825 replaced with interpolated values. The values of the next pixels
6826 immediately outside this rectangle in each direction will be used to
6827 compute the interpolated pixel values inside the rectangle.
6828
6829 @end table
6830
6831 @subsection Examples
6832
6833 @itemize
6834 @item
6835 Set a rectangle covering the area with top left corner coordinates 0,0
6836 and size 100x77, and a band of size 10:
6837 @example
6838 delogo=x=0:y=0:w=100:h=77:band=10
6839 @end example
6840
6841 @end itemize
6842
6843 @section deshake
6844
6845 Attempt to fix small changes in horizontal and/or vertical shift. This
6846 filter helps remove camera shake from hand-holding a camera, bumping a
6847 tripod, moving on a vehicle, etc.
6848
6849 The filter accepts the following options:
6850
6851 @table @option
6852
6853 @item x
6854 @item y
6855 @item w
6856 @item h
6857 Specify a rectangular area where to limit the search for motion
6858 vectors.
6859 If desired the search for motion vectors can be limited to a
6860 rectangular area of the frame defined by its top left corner, width
6861 and height. These parameters have the same meaning as the drawbox
6862 filter which can be used to visualise the position of the bounding
6863 box.
6864
6865 This is useful when simultaneous movement of subjects within the frame
6866 might be confused for camera motion by the motion vector search.
6867
6868 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6869 then the full frame is used. This allows later options to be set
6870 without specifying the bounding box for the motion vector search.
6871
6872 Default - search the whole frame.
6873
6874 @item rx
6875 @item ry
6876 Specify the maximum extent of movement in x and y directions in the
6877 range 0-64 pixels. Default 16.
6878
6879 @item edge
6880 Specify how to generate pixels to fill blanks at the edge of the
6881 frame. Available values are:
6882 @table @samp
6883 @item blank, 0
6884 Fill zeroes at blank locations
6885 @item original, 1
6886 Original image at blank locations
6887 @item clamp, 2
6888 Extruded edge value at blank locations
6889 @item mirror, 3
6890 Mirrored edge at blank locations
6891 @end table
6892 Default value is @samp{mirror}.
6893
6894 @item blocksize
6895 Specify the blocksize to use for motion search. Range 4-128 pixels,
6896 default 8.
6897
6898 @item contrast
6899 Specify the contrast threshold for blocks. Only blocks with more than
6900 the specified contrast (difference between darkest and lightest
6901 pixels) will be considered. Range 1-255, default 125.
6902
6903 @item search
6904 Specify the search strategy. Available values are:
6905 @table @samp
6906 @item exhaustive, 0
6907 Set exhaustive search
6908 @item less, 1
6909 Set less exhaustive search.
6910 @end table
6911 Default value is @samp{exhaustive}.
6912
6913 @item filename
6914 If set then a detailed log of the motion search is written to the
6915 specified file.
6916
6917 @end table
6918
6919 @section despill
6920
6921 Remove unwanted contamination of foreground colors, caused by reflected color of
6922 greenscreen or bluescreen.
6923
6924 This filter accepts the following options:
6925
6926 @table @option
6927 @item type
6928 Set what type of despill to use.
6929
6930 @item mix
6931 Set how spillmap will be generated.
6932
6933 @item expand
6934 Set how much to get rid of still remaining spill.
6935
6936 @item red
6937 Controls amount of red in spill area.
6938
6939 @item green
6940 Controls amount of green in spill area.
6941 Should be -1 for greenscreen.
6942
6943 @item blue
6944 Controls amount of blue in spill area.
6945 Should be -1 for bluescreen.
6946
6947 @item brightness
6948 Controls brightness of spill area, preserving colors.
6949
6950 @item alpha
6951 Modify alpha from generated spillmap.
6952 @end table
6953
6954 @section detelecine
6955
6956 Apply an exact inverse of the telecine operation. It requires a predefined
6957 pattern specified using the pattern option which must be the same as that passed
6958 to the telecine filter.
6959
6960 This filter accepts the following options:
6961
6962 @table @option
6963 @item first_field
6964 @table @samp
6965 @item top, t
6966 top field first
6967 @item bottom, b
6968 bottom field first
6969 The default value is @code{top}.
6970 @end table
6971
6972 @item pattern
6973 A string of numbers representing the pulldown pattern you wish to apply.
6974 The default value is @code{23}.
6975
6976 @item start_frame
6977 A number representing position of the first frame with respect to the telecine
6978 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6979 @end table
6980
6981 @section dilation
6982
6983 Apply dilation effect to the video.
6984
6985 This filter replaces the pixel by the local(3x3) maximum.
6986
6987 It accepts the following options:
6988
6989 @table @option
6990 @item threshold0
6991 @item threshold1
6992 @item threshold2
6993 @item threshold3
6994 Limit the maximum change for each plane, default is 65535.
6995 If 0, plane will remain unchanged.
6996
6997 @item coordinates
6998 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6999 pixels are used.
7000
7001 Flags to local 3x3 coordinates maps like this:
7002
7003     1 2 3
7004     4   5
7005     6 7 8
7006 @end table
7007
7008 @section displace
7009
7010 Displace pixels as indicated by second and third input stream.
7011
7012 It takes three input streams and outputs one stream, the first input is the
7013 source, and second and third input are displacement maps.
7014
7015 The second input specifies how much to displace pixels along the
7016 x-axis, while the third input specifies how much to displace pixels
7017 along the y-axis.
7018 If one of displacement map streams terminates, last frame from that
7019 displacement map will be used.
7020
7021 Note that once generated, displacements maps can be reused over and over again.
7022
7023 A description of the accepted options follows.
7024
7025 @table @option
7026 @item edge
7027 Set displace behavior for pixels that are out of range.
7028
7029 Available values are:
7030 @table @samp
7031 @item blank
7032 Missing pixels are replaced by black pixels.
7033
7034 @item smear
7035 Adjacent pixels will spread out to replace missing pixels.
7036
7037 @item wrap
7038 Out of range pixels are wrapped so they point to pixels of other side.
7039
7040 @item mirror
7041 Out of range pixels will be replaced with mirrored pixels.
7042 @end table
7043 Default is @samp{smear}.
7044
7045 @end table
7046
7047 @subsection Examples
7048
7049 @itemize
7050 @item
7051 Add ripple effect to rgb input of video size hd720:
7052 @example
7053 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
7054 @end example
7055
7056 @item
7057 Add wave effect to rgb input of video size hd720:
7058 @example
7059 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
7060 @end example
7061 @end itemize
7062
7063 @section drawbox
7064
7065 Draw a colored box on the input image.
7066
7067 It accepts the following parameters:
7068
7069 @table @option
7070 @item x
7071 @item y
7072 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
7073
7074 @item width, w
7075 @item height, h
7076 The expressions which specify the width and height of the box; if 0 they are interpreted as
7077 the input width and height. It defaults to 0.
7078
7079 @item color, c
7080 Specify the color of the box to write. For the general syntax of this option,
7081 check the "Color" section in the ffmpeg-utils manual. If the special
7082 value @code{invert} is used, the box edge color is the same as the
7083 video with inverted luma.
7084
7085 @item thickness, t
7086 The expression which sets the thickness of the box edge. Default value is @code{3}.
7087
7088 See below for the list of accepted constants.
7089 @end table
7090
7091 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
7092 following constants:
7093
7094 @table @option
7095 @item dar
7096 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
7097
7098 @item hsub
7099 @item vsub
7100 horizontal and vertical chroma subsample values. For example for the
7101 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7102
7103 @item in_h, ih
7104 @item in_w, iw
7105 The input width and height.
7106
7107 @item sar
7108 The input sample aspect ratio.
7109
7110 @item x
7111 @item y
7112 The x and y offset coordinates where the box is drawn.
7113
7114 @item w
7115 @item h
7116 The width and height of the drawn box.
7117
7118 @item t
7119 The thickness of the drawn box.
7120
7121 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
7122 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
7123
7124 @end table
7125
7126 @subsection Examples
7127
7128 @itemize
7129 @item
7130 Draw a black box around the edge of the input image:
7131 @example
7132 drawbox
7133 @end example
7134
7135 @item
7136 Draw a box with color red and an opacity of 50%:
7137 @example
7138 drawbox=10:20:200:60:red@@0.5
7139 @end example
7140
7141 The previous example can be specified as:
7142 @example
7143 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
7144 @end example
7145
7146 @item
7147 Fill the box with pink color:
7148 @example
7149 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
7150 @end example
7151
7152 @item
7153 Draw a 2-pixel red 2.40:1 mask:
7154 @example
7155 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
7156 @end example
7157 @end itemize
7158
7159 @section drawgrid
7160
7161 Draw a grid on the input image.
7162
7163 It accepts the following parameters:
7164
7165 @table @option
7166 @item x
7167 @item y
7168 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
7169
7170 @item width, w
7171 @item height, h
7172 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
7173 input width and height, respectively, minus @code{thickness}, so image gets
7174 framed. Default to 0.
7175
7176 @item color, c
7177 Specify the color of the grid. For the general syntax of this option,
7178 check the "Color" section in the ffmpeg-utils manual. If the special
7179 value @code{invert} is used, the grid color is the same as the
7180 video with inverted luma.
7181
7182 @item thickness, t
7183 The expression which sets the thickness of the grid line. Default value is @code{1}.
7184
7185 See below for the list of accepted constants.
7186 @end table
7187
7188 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
7189 following constants:
7190
7191 @table @option
7192 @item dar
7193 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
7194
7195 @item hsub
7196 @item vsub
7197 horizontal and vertical chroma subsample values. For example for the
7198 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7199
7200 @item in_h, ih
7201 @item in_w, iw
7202 The input grid cell width and height.
7203
7204 @item sar
7205 The input sample aspect ratio.
7206
7207 @item x
7208 @item y
7209 The x and y coordinates of some point of grid intersection (meant to configure offset).
7210
7211 @item w
7212 @item h
7213 The width and height of the drawn cell.
7214
7215 @item t
7216 The thickness of the drawn cell.
7217
7218 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
7219 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
7220
7221 @end table
7222
7223 @subsection Examples
7224
7225 @itemize
7226 @item
7227 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
7228 @example
7229 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
7230 @end example
7231
7232 @item
7233 Draw a white 3x3 grid with an opacity of 50%:
7234 @example
7235 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
7236 @end example
7237 @end itemize
7238
7239 @anchor{drawtext}
7240 @section drawtext
7241
7242 Draw a text string or text from a specified file on top of a video, using the
7243 libfreetype library.
7244
7245 To enable compilation of this filter, you need to configure FFmpeg with
7246 @code{--enable-libfreetype}.
7247 To enable default font fallback and the @var{font} option you need to
7248 configure FFmpeg with @code{--enable-libfontconfig}.
7249 To enable the @var{text_shaping} option, you need to configure FFmpeg with
7250 @code{--enable-libfribidi}.
7251
7252 @subsection Syntax
7253
7254 It accepts the following parameters:
7255
7256 @table @option
7257
7258 @item box
7259 Used to draw a box around text using the background color.
7260 The value must be either 1 (enable) or 0 (disable).
7261 The default value of @var{box} is 0.
7262
7263 @item boxborderw
7264 Set the width of the border to be drawn around the box using @var{boxcolor}.
7265 The default value of @var{boxborderw} is 0.
7266
7267 @item boxcolor
7268 The color to be used for drawing box around text. For the syntax of this
7269 option, check the "Color" section in the ffmpeg-utils manual.
7270
7271 The default value of @var{boxcolor} is "white".
7272
7273 @item line_spacing
7274 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
7275 The default value of @var{line_spacing} is 0.
7276
7277 @item borderw
7278 Set the width of the border to be drawn around the text using @var{bordercolor}.
7279 The default value of @var{borderw} is 0.
7280
7281 @item bordercolor
7282 Set the color to be used for drawing border around text. For the syntax of this
7283 option, check the "Color" section in the ffmpeg-utils manual.
7284
7285 The default value of @var{bordercolor} is "black".
7286
7287 @item expansion
7288 Select how the @var{text} is expanded. Can be either @code{none},
7289 @code{strftime} (deprecated) or
7290 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
7291 below for details.
7292
7293 @item basetime
7294 Set a start time for the count. Value is in microseconds. Only applied
7295 in the deprecated strftime expansion mode. To emulate in normal expansion
7296 mode use the @code{pts} function, supplying the start time (in seconds)
7297 as the second argument.
7298
7299 @item fix_bounds
7300 If true, check and fix text coords to avoid clipping.
7301
7302 @item fontcolor
7303 The color to be used for drawing fonts. For the syntax of this option, check
7304 the "Color" section in the ffmpeg-utils manual.
7305
7306 The default value of @var{fontcolor} is "black".
7307
7308 @item fontcolor_expr
7309 String which is expanded the same way as @var{text} to obtain dynamic
7310 @var{fontcolor} value. By default this option has empty value and is not
7311 processed. When this option is set, it overrides @var{fontcolor} option.
7312
7313 @item font
7314 The font family to be used for drawing text. By default Sans.
7315
7316 @item fontfile
7317 The font file to be used for drawing text. The path must be included.
7318 This parameter is mandatory if the fontconfig support is disabled.
7319
7320 @item alpha
7321 Draw the text applying alpha blending. The value can
7322 be a number between 0.0 and 1.0.
7323 The expression accepts the same variables @var{x, y} as well.
7324 The default value is 1.
7325 Please see @var{fontcolor_expr}.
7326
7327 @item fontsize
7328 The font size to be used for drawing text.
7329 The default value of @var{fontsize} is 16.
7330
7331 @item text_shaping
7332 If set to 1, attempt to shape the text (for example, reverse the order of
7333 right-to-left text and join Arabic characters) before drawing it.
7334 Otherwise, just draw the text exactly as given.
7335 By default 1 (if supported).
7336
7337 @item ft_load_flags
7338 The flags to be used for loading the fonts.
7339
7340 The flags map the corresponding flags supported by libfreetype, and are
7341 a combination of the following values:
7342 @table @var
7343 @item default
7344 @item no_scale
7345 @item no_hinting
7346 @item render
7347 @item no_bitmap
7348 @item vertical_layout
7349 @item force_autohint
7350 @item crop_bitmap
7351 @item pedantic
7352 @item ignore_global_advance_width
7353 @item no_recurse
7354 @item ignore_transform
7355 @item monochrome
7356 @item linear_design
7357 @item no_autohint
7358 @end table
7359
7360 Default value is "default".
7361
7362 For more information consult the documentation for the FT_LOAD_*
7363 libfreetype flags.
7364
7365 @item shadowcolor
7366 The color to be used for drawing a shadow behind the drawn text. For the
7367 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
7368
7369 The default value of @var{shadowcolor} is "black".
7370
7371 @item shadowx
7372 @item shadowy
7373 The x and y offsets for the text shadow position with respect to the
7374 position of the text. They can be either positive or negative
7375 values. The default value for both is "0".
7376
7377 @item start_number
7378 The starting frame number for the n/frame_num variable. The default value
7379 is "0".
7380
7381 @item tabsize
7382 The size in number of spaces to use for rendering the tab.
7383 Default value is 4.
7384
7385 @item timecode
7386 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
7387 format. It can be used with or without text parameter. @var{timecode_rate}
7388 option must be specified.
7389
7390 @item timecode_rate, rate, r
7391 Set the timecode frame rate (timecode only). Value will be rounded to nearest
7392 integer. Minimum value is "1".
7393 Drop-frame timecode is supported for frame rates 30 & 60.
7394
7395 @item tc24hmax
7396 If set to 1, the output of the timecode option will wrap around at 24 hours.
7397 Default is 0 (disabled).
7398
7399 @item text
7400 The text string to be drawn. The text must be a sequence of UTF-8
7401 encoded characters.
7402 This parameter is mandatory if no file is specified with the parameter
7403 @var{textfile}.
7404
7405 @item textfile
7406 A text file containing text to be drawn. The text must be a sequence
7407 of UTF-8 encoded characters.
7408
7409 This parameter is mandatory if no text string is specified with the
7410 parameter @var{text}.
7411
7412 If both @var{text} and @var{textfile} are specified, an error is thrown.
7413
7414 @item reload
7415 If set to 1, the @var{textfile} will be reloaded before each frame.
7416 Be sure to update it atomically, or it may be read partially, or even fail.
7417
7418 @item x
7419 @item y
7420 The expressions which specify the offsets where text will be drawn
7421 within the video frame. They are relative to the top/left border of the
7422 output image.
7423
7424 The default value of @var{x} and @var{y} is "0".
7425
7426 See below for the list of accepted constants and functions.
7427 @end table
7428
7429 The parameters for @var{x} and @var{y} are expressions containing the
7430 following constants and functions:
7431
7432 @table @option
7433 @item dar
7434 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
7435
7436 @item hsub
7437 @item vsub
7438 horizontal and vertical chroma subsample values. For example for the
7439 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7440
7441 @item line_h, lh
7442 the height of each text line
7443
7444 @item main_h, h, H
7445 the input height
7446
7447 @item main_w, w, W
7448 the input width
7449
7450 @item max_glyph_a, ascent
7451 the maximum distance from the baseline to the highest/upper grid
7452 coordinate used to place a glyph outline point, for all the rendered
7453 glyphs.
7454 It is a positive value, due to the grid's orientation with the Y axis
7455 upwards.
7456
7457 @item max_glyph_d, descent
7458 the maximum distance from the baseline to the lowest grid coordinate
7459 used to place a glyph outline point, for all the rendered glyphs.
7460 This is a negative value, due to the grid's orientation, with the Y axis
7461 upwards.
7462
7463 @item max_glyph_h
7464 maximum glyph height, that is the maximum height for all the glyphs
7465 contained in the rendered text, it is equivalent to @var{ascent} -
7466 @var{descent}.
7467
7468 @item max_glyph_w
7469 maximum glyph width, that is the maximum width for all the glyphs
7470 contained in the rendered text
7471
7472 @item n
7473 the number of input frame, starting from 0
7474
7475 @item rand(min, max)
7476 return a random number included between @var{min} and @var{max}
7477
7478 @item sar
7479 The input sample aspect ratio.
7480
7481 @item t
7482 timestamp expressed in seconds, NAN if the input timestamp is unknown
7483
7484 @item text_h, th
7485 the height of the rendered text
7486
7487 @item text_w, tw
7488 the width of the rendered text
7489
7490 @item x
7491 @item y
7492 the x and y offset coordinates where the text is drawn.
7493
7494 These parameters allow the @var{x} and @var{y} expressions to refer
7495 each other, so you can for example specify @code{y=x/dar}.
7496 @end table
7497
7498 @anchor{drawtext_expansion}
7499 @subsection Text expansion
7500
7501 If @option{expansion} is set to @code{strftime},
7502 the filter recognizes strftime() sequences in the provided text and
7503 expands them accordingly. Check the documentation of strftime(). This
7504 feature is deprecated.
7505
7506 If @option{expansion} is set to @code{none}, the text is printed verbatim.
7507
7508 If @option{expansion} is set to @code{normal} (which is the default),
7509 the following expansion mechanism is used.
7510
7511 The backslash character @samp{\}, followed by any character, always expands to
7512 the second character.
7513
7514 Sequences of the form @code{%@{...@}} are expanded. The text between the
7515 braces is a function name, possibly followed by arguments separated by ':'.
7516 If the arguments contain special characters or delimiters (':' or '@}'),
7517 they should be escaped.
7518
7519 Note that they probably must also be escaped as the value for the
7520 @option{text} option in the filter argument string and as the filter
7521 argument in the filtergraph description, and possibly also for the shell,
7522 that makes up to four levels of escaping; using a text file avoids these
7523 problems.
7524
7525 The following functions are available:
7526
7527 @table @command
7528
7529 @item expr, e
7530 The expression evaluation result.
7531
7532 It must take one argument specifying the expression to be evaluated,
7533 which accepts the same constants and functions as the @var{x} and
7534 @var{y} values. Note that not all constants should be used, for
7535 example the text size is not known when evaluating the expression, so
7536 the constants @var{text_w} and @var{text_h} will have an undefined
7537 value.
7538
7539 @item expr_int_format, eif
7540 Evaluate the expression's value and output as formatted integer.
7541
7542 The first argument is the expression to be evaluated, just as for the @var{expr} function.
7543 The second argument specifies the output format. Allowed values are @samp{x},
7544 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
7545 @code{printf} function.
7546 The third parameter is optional and sets the number of positions taken by the output.
7547 It can be used to add padding with zeros from the left.
7548
7549 @item gmtime
7550 The time at which the filter is running, expressed in UTC.
7551 It can accept an argument: a strftime() format string.
7552
7553 @item localtime
7554 The time at which the filter is running, expressed in the local time zone.
7555 It can accept an argument: a strftime() format string.
7556
7557 @item metadata
7558 Frame metadata. Takes one or two arguments.
7559
7560 The first argument is mandatory and specifies the metadata key.
7561
7562 The second argument is optional and specifies a default value, used when the
7563 metadata key is not found or empty.
7564
7565 @item n, frame_num
7566 The frame number, starting from 0.
7567
7568 @item pict_type
7569 A 1 character description of the current picture type.
7570
7571 @item pts
7572 The timestamp of the current frame.
7573 It can take up to three arguments.
7574
7575 The first argument is the format of the timestamp; it defaults to @code{flt}
7576 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
7577 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
7578 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
7579 @code{localtime} stands for the timestamp of the frame formatted as
7580 local time zone time.
7581
7582 The second argument is an offset added to the timestamp.
7583
7584 If the format is set to @code{localtime} or @code{gmtime},
7585 a third argument may be supplied: a strftime() format string.
7586 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
7587 @end table
7588
7589 @subsection Examples
7590
7591 @itemize
7592 @item
7593 Draw "Test Text" with font FreeSerif, using the default values for the
7594 optional parameters.
7595
7596 @example
7597 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
7598 @end example
7599
7600 @item
7601 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
7602 and y=50 (counting from the top-left corner of the screen), text is
7603 yellow with a red box around it. Both the text and the box have an
7604 opacity of 20%.
7605
7606 @example
7607 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
7608           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
7609 @end example
7610
7611 Note that the double quotes are not necessary if spaces are not used
7612 within the parameter list.
7613
7614 @item
7615 Show the text at the center of the video frame:
7616 @example
7617 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
7618 @end example
7619
7620 @item
7621 Show the text at a random position, switching to a new position every 30 seconds:
7622 @example
7623 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)"
7624 @end example
7625
7626 @item
7627 Show a text line sliding from right to left in the last row of the video
7628 frame. The file @file{LONG_LINE} is assumed to contain a single line
7629 with no newlines.
7630 @example
7631 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
7632 @end example
7633
7634 @item
7635 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
7636 @example
7637 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
7638 @end example
7639
7640 @item
7641 Draw a single green letter "g", at the center of the input video.
7642 The glyph baseline is placed at half screen height.
7643 @example
7644 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7645 @end example
7646
7647 @item
7648 Show text for 1 second every 3 seconds:
7649 @example
7650 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7651 @end example
7652
7653 @item
7654 Use fontconfig to set the font. Note that the colons need to be escaped.
7655 @example
7656 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7657 @end example
7658
7659 @item
7660 Print the date of a real-time encoding (see strftime(3)):
7661 @example
7662 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7663 @end example
7664
7665 @item
7666 Show text fading in and out (appearing/disappearing):
7667 @example
7668 #!/bin/sh
7669 DS=1.0 # display start
7670 DE=10.0 # display end
7671 FID=1.5 # fade in duration
7672 FOD=5 # fade out duration
7673 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 @}"
7674 @end example
7675
7676 @item
7677 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
7678 and the @option{fontsize} value are included in the @option{y} offset.
7679 @example
7680 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
7681 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
7682 @end example
7683
7684 @end itemize
7685
7686 For more information about libfreetype, check:
7687 @url{http://www.freetype.org/}.
7688
7689 For more information about fontconfig, check:
7690 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7691
7692 For more information about libfribidi, check:
7693 @url{http://fribidi.org/}.
7694
7695 @section edgedetect
7696
7697 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7698
7699 The filter accepts the following options:
7700
7701 @table @option
7702 @item low
7703 @item high
7704 Set low and high threshold values used by the Canny thresholding
7705 algorithm.
7706
7707 The high threshold selects the "strong" edge pixels, which are then
7708 connected through 8-connectivity with the "weak" edge pixels selected
7709 by the low threshold.
7710
7711 @var{low} and @var{high} threshold values must be chosen in the range
7712 [0,1], and @var{low} should be lesser or equal to @var{high}.
7713
7714 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7715 is @code{50/255}.
7716
7717 @item mode
7718 Define the drawing mode.
7719
7720 @table @samp
7721 @item wires
7722 Draw white/gray wires on black background.
7723
7724 @item colormix
7725 Mix the colors to create a paint/cartoon effect.
7726 @end table
7727
7728 Default value is @var{wires}.
7729 @end table
7730
7731 @subsection Examples
7732
7733 @itemize
7734 @item
7735 Standard edge detection with custom values for the hysteresis thresholding:
7736 @example
7737 edgedetect=low=0.1:high=0.4
7738 @end example
7739
7740 @item
7741 Painting effect without thresholding:
7742 @example
7743 edgedetect=mode=colormix:high=0
7744 @end example
7745 @end itemize
7746
7747 @section eq
7748 Set brightness, contrast, saturation and approximate gamma adjustment.
7749
7750 The filter accepts the following options:
7751
7752 @table @option
7753 @item contrast
7754 Set the contrast expression. The value must be a float value in range
7755 @code{-2.0} to @code{2.0}. The default value is "1".
7756
7757 @item brightness
7758 Set the brightness expression. The value must be a float value in
7759 range @code{-1.0} to @code{1.0}. The default value is "0".
7760
7761 @item saturation
7762 Set the saturation expression. The value must be a float in
7763 range @code{0.0} to @code{3.0}. The default value is "1".
7764
7765 @item gamma
7766 Set the gamma expression. The value must be a float in range
7767 @code{0.1} to @code{10.0}.  The default value is "1".
7768
7769 @item gamma_r
7770 Set the gamma expression for red. The value must be a float in
7771 range @code{0.1} to @code{10.0}. The default value is "1".
7772
7773 @item gamma_g
7774 Set the gamma expression for green. The value must be a float in range
7775 @code{0.1} to @code{10.0}. The default value is "1".
7776
7777 @item gamma_b
7778 Set the gamma expression for blue. The value must be a float in range
7779 @code{0.1} to @code{10.0}. The default value is "1".
7780
7781 @item gamma_weight
7782 Set the gamma weight expression. It can be used to reduce the effect
7783 of a high gamma value on bright image areas, e.g. keep them from
7784 getting overamplified and just plain white. The value must be a float
7785 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7786 gamma correction all the way down while @code{1.0} leaves it at its
7787 full strength. Default is "1".
7788
7789 @item eval
7790 Set when the expressions for brightness, contrast, saturation and
7791 gamma expressions are evaluated.
7792
7793 It accepts the following values:
7794 @table @samp
7795 @item init
7796 only evaluate expressions once during the filter initialization or
7797 when a command is processed
7798
7799 @item frame
7800 evaluate expressions for each incoming frame
7801 @end table
7802
7803 Default value is @samp{init}.
7804 @end table
7805
7806 The expressions accept the following parameters:
7807 @table @option
7808 @item n
7809 frame count of the input frame starting from 0
7810
7811 @item pos
7812 byte position of the corresponding packet in the input file, NAN if
7813 unspecified
7814
7815 @item r
7816 frame rate of the input video, NAN if the input frame rate is unknown
7817
7818 @item t
7819 timestamp expressed in seconds, NAN if the input timestamp is unknown
7820 @end table
7821
7822 @subsection Commands
7823 The filter supports the following commands:
7824
7825 @table @option
7826 @item contrast
7827 Set the contrast expression.
7828
7829 @item brightness
7830 Set the brightness expression.
7831
7832 @item saturation
7833 Set the saturation expression.
7834
7835 @item gamma
7836 Set the gamma expression.
7837
7838 @item gamma_r
7839 Set the gamma_r expression.
7840
7841 @item gamma_g
7842 Set gamma_g expression.
7843
7844 @item gamma_b
7845 Set gamma_b expression.
7846
7847 @item gamma_weight
7848 Set gamma_weight expression.
7849
7850 The command accepts the same syntax of the corresponding option.
7851
7852 If the specified expression is not valid, it is kept at its current
7853 value.
7854
7855 @end table
7856
7857 @section erosion
7858
7859 Apply erosion effect to the video.
7860
7861 This filter replaces the pixel by the local(3x3) minimum.
7862
7863 It accepts the following options:
7864
7865 @table @option
7866 @item threshold0
7867 @item threshold1
7868 @item threshold2
7869 @item threshold3
7870 Limit the maximum change for each plane, default is 65535.
7871 If 0, plane will remain unchanged.
7872
7873 @item coordinates
7874 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7875 pixels are used.
7876
7877 Flags to local 3x3 coordinates maps like this:
7878
7879     1 2 3
7880     4   5
7881     6 7 8
7882 @end table
7883
7884 @section extractplanes
7885
7886 Extract color channel components from input video stream into
7887 separate grayscale video streams.
7888
7889 The filter accepts the following option:
7890
7891 @table @option
7892 @item planes
7893 Set plane(s) to extract.
7894
7895 Available values for planes are:
7896 @table @samp
7897 @item y
7898 @item u
7899 @item v
7900 @item a
7901 @item r
7902 @item g
7903 @item b
7904 @end table
7905
7906 Choosing planes not available in the input will result in an error.
7907 That means you cannot select @code{r}, @code{g}, @code{b} planes
7908 with @code{y}, @code{u}, @code{v} planes at same time.
7909 @end table
7910
7911 @subsection Examples
7912
7913 @itemize
7914 @item
7915 Extract luma, u and v color channel component from input video frame
7916 into 3 grayscale outputs:
7917 @example
7918 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
7919 @end example
7920 @end itemize
7921
7922 @section elbg
7923
7924 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7925
7926 For each input image, the filter will compute the optimal mapping from
7927 the input to the output given the codebook length, that is the number
7928 of distinct output colors.
7929
7930 This filter accepts the following options.
7931
7932 @table @option
7933 @item codebook_length, l
7934 Set codebook length. The value must be a positive integer, and
7935 represents the number of distinct output colors. Default value is 256.
7936
7937 @item nb_steps, n
7938 Set the maximum number of iterations to apply for computing the optimal
7939 mapping. The higher the value the better the result and the higher the
7940 computation time. Default value is 1.
7941
7942 @item seed, s
7943 Set a random seed, must be an integer included between 0 and
7944 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7945 will try to use a good random seed on a best effort basis.
7946
7947 @item pal8
7948 Set pal8 output pixel format. This option does not work with codebook
7949 length greater than 256.
7950 @end table
7951
7952 @section fade
7953
7954 Apply a fade-in/out effect to the input video.
7955
7956 It accepts the following parameters:
7957
7958 @table @option
7959 @item type, t
7960 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7961 effect.
7962 Default is @code{in}.
7963
7964 @item start_frame, s
7965 Specify the number of the frame to start applying the fade
7966 effect at. Default is 0.
7967
7968 @item nb_frames, n
7969 The number of frames that the fade effect lasts. At the end of the
7970 fade-in effect, the output video will have the same intensity as the input video.
7971 At the end of the fade-out transition, the output video will be filled with the
7972 selected @option{color}.
7973 Default is 25.
7974
7975 @item alpha
7976 If set to 1, fade only alpha channel, if one exists on the input.
7977 Default value is 0.
7978
7979 @item start_time, st
7980 Specify the timestamp (in seconds) of the frame to start to apply the fade
7981 effect. If both start_frame and start_time are specified, the fade will start at
7982 whichever comes last.  Default is 0.
7983
7984 @item duration, d
7985 The number of seconds for which the fade effect has to last. At the end of the
7986 fade-in effect the output video will have the same intensity as the input video,
7987 at the end of the fade-out transition the output video will be filled with the
7988 selected @option{color}.
7989 If both duration and nb_frames are specified, duration is used. Default is 0
7990 (nb_frames is used by default).
7991
7992 @item color, c
7993 Specify the color of the fade. Default is "black".
7994 @end table
7995
7996 @subsection Examples
7997
7998 @itemize
7999 @item
8000 Fade in the first 30 frames of video:
8001 @example
8002 fade=in:0:30
8003 @end example
8004
8005 The command above is equivalent to:
8006 @example
8007 fade=t=in:s=0:n=30
8008 @end example
8009
8010 @item
8011 Fade out the last 45 frames of a 200-frame video:
8012 @example
8013 fade=out:155:45
8014 fade=type=out:start_frame=155:nb_frames=45
8015 @end example
8016
8017 @item
8018 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
8019 @example
8020 fade=in:0:25, fade=out:975:25
8021 @end example
8022
8023 @item
8024 Make the first 5 frames yellow, then fade in from frame 5-24:
8025 @example
8026 fade=in:5:20:color=yellow
8027 @end example
8028
8029 @item
8030 Fade in alpha over first 25 frames of video:
8031 @example
8032 fade=in:0:25:alpha=1
8033 @end example
8034
8035 @item
8036 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
8037 @example
8038 fade=t=in:st=5.5:d=0.5
8039 @end example
8040
8041 @end itemize
8042
8043 @section fftfilt
8044 Apply arbitrary expressions to samples in frequency domain
8045
8046 @table @option
8047 @item dc_Y
8048 Adjust the dc value (gain) of the luma plane of the image. The filter
8049 accepts an integer value in range @code{0} to @code{1000}. The default
8050 value is set to @code{0}.
8051
8052 @item dc_U
8053 Adjust the dc value (gain) of the 1st chroma plane of the image. The
8054 filter accepts an integer value in range @code{0} to @code{1000}. The
8055 default value is set to @code{0}.
8056
8057 @item dc_V
8058 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
8059 filter accepts an integer value in range @code{0} to @code{1000}. The
8060 default value is set to @code{0}.
8061
8062 @item weight_Y
8063 Set the frequency domain weight expression for the luma plane.
8064
8065 @item weight_U
8066 Set the frequency domain weight expression for the 1st chroma plane.
8067
8068 @item weight_V
8069 Set the frequency domain weight expression for the 2nd chroma plane.
8070
8071 @item eval
8072 Set when the expressions are evaluated.
8073
8074 It accepts the following values:
8075 @table @samp
8076 @item init
8077 Only evaluate expressions once during the filter initialization.
8078
8079 @item frame
8080 Evaluate expressions for each incoming frame.
8081 @end table
8082
8083 Default value is @samp{init}.
8084
8085 The filter accepts the following variables:
8086 @item X
8087 @item Y
8088 The coordinates of the current sample.
8089
8090 @item W
8091 @item H
8092 The width and height of the image.
8093
8094 @item N
8095 The number of input frame, starting from 0.
8096 @end table
8097
8098 @subsection Examples
8099
8100 @itemize
8101 @item
8102 High-pass:
8103 @example
8104 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
8105 @end example
8106
8107 @item
8108 Low-pass:
8109 @example
8110 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
8111 @end example
8112
8113 @item
8114 Sharpen:
8115 @example
8116 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
8117 @end example
8118
8119 @item
8120 Blur:
8121 @example
8122 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
8123 @end example
8124
8125 @end itemize
8126
8127 @section field
8128
8129 Extract a single field from an interlaced image using stride
8130 arithmetic to avoid wasting CPU time. The output frames are marked as
8131 non-interlaced.
8132
8133 The filter accepts the following options:
8134
8135 @table @option
8136 @item type
8137 Specify whether to extract the top (if the value is @code{0} or
8138 @code{top}) or the bottom field (if the value is @code{1} or
8139 @code{bottom}).
8140 @end table
8141
8142 @section fieldhint
8143
8144 Create new frames by copying the top and bottom fields from surrounding frames
8145 supplied as numbers by the hint file.
8146
8147 @table @option
8148 @item hint
8149 Set file containing hints: absolute/relative frame numbers.
8150
8151 There must be one line for each frame in a clip. Each line must contain two
8152 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
8153 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
8154 is current frame number for @code{absolute} mode or out of [-1, 1] range
8155 for @code{relative} mode. First number tells from which frame to pick up top
8156 field and second number tells from which frame to pick up bottom field.
8157
8158 If optionally followed by @code{+} output frame will be marked as interlaced,
8159 else if followed by @code{-} output frame will be marked as progressive, else
8160 it will be marked same as input frame.
8161 If line starts with @code{#} or @code{;} that line is skipped.
8162
8163 @item mode
8164 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
8165 @end table
8166
8167 Example of first several lines of @code{hint} file for @code{relative} mode:
8168 @example
8169 0,0 - # first frame
8170 1,0 - # second frame, use third's frame top field and second's frame bottom field
8171 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
8172 1,0 -
8173 0,0 -
8174 0,0 -
8175 1,0 -
8176 1,0 -
8177 1,0 -
8178 0,0 -
8179 0,0 -
8180 1,0 -
8181 1,0 -
8182 1,0 -
8183 0,0 -
8184 @end example
8185
8186 @section fieldmatch
8187
8188 Field matching filter for inverse telecine. It is meant to reconstruct the
8189 progressive frames from a telecined stream. The filter does not drop duplicated
8190 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
8191 followed by a decimation filter such as @ref{decimate} in the filtergraph.
8192
8193 The separation of the field matching and the decimation is notably motivated by
8194 the possibility of inserting a de-interlacing filter fallback between the two.
8195 If the source has mixed telecined and real interlaced content,
8196 @code{fieldmatch} will not be able to match fields for the interlaced parts.
8197 But these remaining combed frames will be marked as interlaced, and thus can be
8198 de-interlaced by a later filter such as @ref{yadif} before decimation.
8199
8200 In addition to the various configuration options, @code{fieldmatch} can take an
8201 optional second stream, activated through the @option{ppsrc} option. If
8202 enabled, the frames reconstruction will be based on the fields and frames from
8203 this second stream. This allows the first input to be pre-processed in order to
8204 help the various algorithms of the filter, while keeping the output lossless
8205 (assuming the fields are matched properly). Typically, a field-aware denoiser,
8206 or brightness/contrast adjustments can help.
8207
8208 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
8209 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
8210 which @code{fieldmatch} is based on. While the semantic and usage are very
8211 close, some behaviour and options names can differ.
8212
8213 The @ref{decimate} filter currently only works for constant frame rate input.
8214 If your input has mixed telecined (30fps) and progressive content with a lower
8215 framerate like 24fps use the following filterchain to produce the necessary cfr
8216 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
8217
8218 The filter accepts the following options:
8219
8220 @table @option
8221 @item order
8222 Specify the assumed field order of the input stream. Available values are:
8223
8224 @table @samp
8225 @item auto
8226 Auto detect parity (use FFmpeg's internal parity value).
8227 @item bff
8228 Assume bottom field first.
8229 @item tff
8230 Assume top field first.
8231 @end table
8232
8233 Note that it is sometimes recommended not to trust the parity announced by the
8234 stream.
8235
8236 Default value is @var{auto}.
8237
8238 @item mode
8239 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
8240 sense that it won't risk creating jerkiness due to duplicate frames when
8241 possible, but if there are bad edits or blended fields it will end up
8242 outputting combed frames when a good match might actually exist. On the other
8243 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
8244 but will almost always find a good frame if there is one. The other values are
8245 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
8246 jerkiness and creating duplicate frames versus finding good matches in sections
8247 with bad edits, orphaned fields, blended fields, etc.
8248
8249 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
8250
8251 Available values are:
8252
8253 @table @samp
8254 @item pc
8255 2-way matching (p/c)
8256 @item pc_n
8257 2-way matching, and trying 3rd match if still combed (p/c + n)
8258 @item pc_u
8259 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
8260 @item pc_n_ub
8261 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
8262 still combed (p/c + n + u/b)
8263 @item pcn
8264 3-way matching (p/c/n)
8265 @item pcn_ub
8266 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
8267 detected as combed (p/c/n + u/b)
8268 @end table
8269
8270 The parenthesis at the end indicate the matches that would be used for that
8271 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
8272 @var{top}).
8273
8274 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
8275 the slowest.
8276
8277 Default value is @var{pc_n}.
8278
8279 @item ppsrc
8280 Mark the main input stream as a pre-processed input, and enable the secondary
8281 input stream as the clean source to pick the fields from. See the filter
8282 introduction for more details. It is similar to the @option{clip2} feature from
8283 VFM/TFM.
8284
8285 Default value is @code{0} (disabled).
8286
8287 @item field
8288 Set the field to match from. It is recommended to set this to the same value as
8289 @option{order} unless you experience matching failures with that setting. In
8290 certain circumstances changing the field that is used to match from can have a
8291 large impact on matching performance. Available values are:
8292
8293 @table @samp
8294 @item auto
8295 Automatic (same value as @option{order}).
8296 @item bottom
8297 Match from the bottom field.
8298 @item top
8299 Match from the top field.
8300 @end table
8301
8302 Default value is @var{auto}.
8303
8304 @item mchroma
8305 Set whether or not chroma is included during the match comparisons. In most
8306 cases it is recommended to leave this enabled. You should set this to @code{0}
8307 only if your clip has bad chroma problems such as heavy rainbowing or other
8308 artifacts. Setting this to @code{0} could also be used to speed things up at
8309 the cost of some accuracy.
8310
8311 Default value is @code{1}.
8312
8313 @item y0
8314 @item y1
8315 These define an exclusion band which excludes the lines between @option{y0} and
8316 @option{y1} from being included in the field matching decision. An exclusion
8317 band can be used to ignore subtitles, a logo, or other things that may
8318 interfere with the matching. @option{y0} sets the starting scan line and
8319 @option{y1} sets the ending line; all lines in between @option{y0} and
8320 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
8321 @option{y0} and @option{y1} to the same value will disable the feature.
8322 @option{y0} and @option{y1} defaults to @code{0}.
8323
8324 @item scthresh
8325 Set the scene change detection threshold as a percentage of maximum change on
8326 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
8327 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
8328 @option{scthresh} is @code{[0.0, 100.0]}.
8329
8330 Default value is @code{12.0}.
8331
8332 @item combmatch
8333 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
8334 account the combed scores of matches when deciding what match to use as the
8335 final match. Available values are:
8336
8337 @table @samp
8338 @item none
8339 No final matching based on combed scores.
8340 @item sc
8341 Combed scores are only used when a scene change is detected.
8342 @item full
8343 Use combed scores all the time.
8344 @end table
8345
8346 Default is @var{sc}.
8347
8348 @item combdbg
8349 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
8350 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
8351 Available values are:
8352
8353 @table @samp
8354 @item none
8355 No forced calculation.
8356 @item pcn
8357 Force p/c/n calculations.
8358 @item pcnub
8359 Force p/c/n/u/b calculations.
8360 @end table
8361
8362 Default value is @var{none}.
8363
8364 @item cthresh
8365 This is the area combing threshold used for combed frame detection. This
8366 essentially controls how "strong" or "visible" combing must be to be detected.
8367 Larger values mean combing must be more visible and smaller values mean combing
8368 can be less visible or strong and still be detected. Valid settings are from
8369 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
8370 be detected as combed). This is basically a pixel difference value. A good
8371 range is @code{[8, 12]}.
8372
8373 Default value is @code{9}.
8374
8375 @item chroma
8376 Sets whether or not chroma is considered in the combed frame decision.  Only
8377 disable this if your source has chroma problems (rainbowing, etc.) that are
8378 causing problems for the combed frame detection with chroma enabled. Actually,
8379 using @option{chroma}=@var{0} is usually more reliable, except for the case
8380 where there is chroma only combing in the source.
8381
8382 Default value is @code{0}.
8383
8384 @item blockx
8385 @item blocky
8386 Respectively set the x-axis and y-axis size of the window used during combed
8387 frame detection. This has to do with the size of the area in which
8388 @option{combpel} pixels are required to be detected as combed for a frame to be
8389 declared combed. See the @option{combpel} parameter description for more info.
8390 Possible values are any number that is a power of 2 starting at 4 and going up
8391 to 512.
8392
8393 Default value is @code{16}.
8394
8395 @item combpel
8396 The number of combed pixels inside any of the @option{blocky} by
8397 @option{blockx} size blocks on the frame for the frame to be detected as
8398 combed. While @option{cthresh} controls how "visible" the combing must be, this
8399 setting controls "how much" combing there must be in any localized area (a
8400 window defined by the @option{blockx} and @option{blocky} settings) on the
8401 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
8402 which point no frames will ever be detected as combed). This setting is known
8403 as @option{MI} in TFM/VFM vocabulary.
8404
8405 Default value is @code{80}.
8406 @end table
8407
8408 @anchor{p/c/n/u/b meaning}
8409 @subsection p/c/n/u/b meaning
8410
8411 @subsubsection p/c/n
8412
8413 We assume the following telecined stream:
8414
8415 @example
8416 Top fields:     1 2 2 3 4
8417 Bottom fields:  1 2 3 4 4
8418 @end example
8419
8420 The numbers correspond to the progressive frame the fields relate to. Here, the
8421 first two frames are progressive, the 3rd and 4th are combed, and so on.
8422
8423 When @code{fieldmatch} is configured to run a matching from bottom
8424 (@option{field}=@var{bottom}) this is how this input stream get transformed:
8425
8426 @example
8427 Input stream:
8428                 T     1 2 2 3 4
8429                 B     1 2 3 4 4   <-- matching reference
8430
8431 Matches:              c c n n c
8432
8433 Output stream:
8434                 T     1 2 3 4 4
8435                 B     1 2 3 4 4
8436 @end example
8437
8438 As a result of the field matching, we can see that some frames get duplicated.
8439 To perform a complete inverse telecine, you need to rely on a decimation filter
8440 after this operation. See for instance the @ref{decimate} filter.
8441
8442 The same operation now matching from top fields (@option{field}=@var{top})
8443 looks like this:
8444
8445 @example
8446 Input stream:
8447                 T     1 2 2 3 4   <-- matching reference
8448                 B     1 2 3 4 4
8449
8450 Matches:              c c p p c
8451
8452 Output stream:
8453                 T     1 2 2 3 4
8454                 B     1 2 2 3 4
8455 @end example
8456
8457 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
8458 basically, they refer to the frame and field of the opposite parity:
8459
8460 @itemize
8461 @item @var{p} matches the field of the opposite parity in the previous frame
8462 @item @var{c} matches the field of the opposite parity in the current frame
8463 @item @var{n} matches the field of the opposite parity in the next frame
8464 @end itemize
8465
8466 @subsubsection u/b
8467
8468 The @var{u} and @var{b} matching are a bit special in the sense that they match
8469 from the opposite parity flag. In the following examples, we assume that we are
8470 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
8471 'x' is placed above and below each matched fields.
8472
8473 With bottom matching (@option{field}=@var{bottom}):
8474 @example
8475 Match:           c         p           n          b          u
8476
8477                  x       x               x        x          x
8478   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8479   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8480                  x         x           x        x              x
8481
8482 Output frames:
8483                  2          1          2          2          2
8484                  2          2          2          1          3
8485 @end example
8486
8487 With top matching (@option{field}=@var{top}):
8488 @example
8489 Match:           c         p           n          b          u
8490
8491                  x         x           x        x              x
8492   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8493   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8494                  x       x               x        x          x
8495
8496 Output frames:
8497                  2          2          2          1          2
8498                  2          1          3          2          2
8499 @end example
8500
8501 @subsection Examples
8502
8503 Simple IVTC of a top field first telecined stream:
8504 @example
8505 fieldmatch=order=tff:combmatch=none, decimate
8506 @end example
8507
8508 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
8509 @example
8510 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
8511 @end example
8512
8513 @section fieldorder
8514
8515 Transform the field order of the input video.
8516
8517 It accepts the following parameters:
8518
8519 @table @option
8520
8521 @item order
8522 The output field order. Valid values are @var{tff} for top field first or @var{bff}
8523 for bottom field first.
8524 @end table
8525
8526 The default value is @samp{tff}.
8527
8528 The transformation is done by shifting the picture content up or down
8529 by one line, and filling the remaining line with appropriate picture content.
8530 This method is consistent with most broadcast field order converters.
8531
8532 If the input video is not flagged as being interlaced, or it is already
8533 flagged as being of the required output field order, then this filter does
8534 not alter the incoming video.
8535
8536 It is very useful when converting to or from PAL DV material,
8537 which is bottom field first.
8538
8539 For example:
8540 @example
8541 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
8542 @end example
8543
8544 @section fifo, afifo
8545
8546 Buffer input images and send them when they are requested.
8547
8548 It is mainly useful when auto-inserted by the libavfilter
8549 framework.
8550
8551 It does not take parameters.
8552
8553 @section find_rect
8554
8555 Find a rectangular object
8556
8557 It accepts the following options:
8558
8559 @table @option
8560 @item object
8561 Filepath of the object image, needs to be in gray8.
8562
8563 @item threshold
8564 Detection threshold, default is 0.5.
8565
8566 @item mipmaps
8567 Number of mipmaps, default is 3.
8568
8569 @item xmin, ymin, xmax, ymax
8570 Specifies the rectangle in which to search.
8571 @end table
8572
8573 @subsection Examples
8574
8575 @itemize
8576 @item
8577 Generate a representative palette of a given video using @command{ffmpeg}:
8578 @example
8579 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8580 @end example
8581 @end itemize
8582
8583 @section cover_rect
8584
8585 Cover a rectangular object
8586
8587 It accepts the following options:
8588
8589 @table @option
8590 @item cover
8591 Filepath of the optional cover image, needs to be in yuv420.
8592
8593 @item mode
8594 Set covering mode.
8595
8596 It accepts the following values:
8597 @table @samp
8598 @item cover
8599 cover it by the supplied image
8600 @item blur
8601 cover it by interpolating the surrounding pixels
8602 @end table
8603
8604 Default value is @var{blur}.
8605 @end table
8606
8607 @subsection Examples
8608
8609 @itemize
8610 @item
8611 Generate a representative palette of a given video using @command{ffmpeg}:
8612 @example
8613 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8614 @end example
8615 @end itemize
8616
8617 @section floodfill
8618
8619 Flood area with values of same pixel components with another values.
8620
8621 It accepts the following options:
8622 @table @option
8623 @item x
8624 Set pixel x coordinate.
8625
8626 @item y
8627 Set pixel y coordinate.
8628
8629 @item s0
8630 Set source #0 component value.
8631
8632 @item s1
8633 Set source #1 component value.
8634
8635 @item s2
8636 Set source #2 component value.
8637
8638 @item s3
8639 Set source #3 component value.
8640
8641 @item d0
8642 Set destination #0 component value.
8643
8644 @item d1
8645 Set destination #1 component value.
8646
8647 @item d2
8648 Set destination #2 component value.
8649
8650 @item d3
8651 Set destination #3 component value.
8652 @end table
8653
8654 @anchor{format}
8655 @section format
8656
8657 Convert the input video to one of the specified pixel formats.
8658 Libavfilter will try to pick one that is suitable as input to
8659 the next filter.
8660
8661 It accepts the following parameters:
8662 @table @option
8663
8664 @item pix_fmts
8665 A '|'-separated list of pixel format names, such as
8666 "pix_fmts=yuv420p|monow|rgb24".
8667
8668 @end table
8669
8670 @subsection Examples
8671
8672 @itemize
8673 @item
8674 Convert the input video to the @var{yuv420p} format
8675 @example
8676 format=pix_fmts=yuv420p
8677 @end example
8678
8679 Convert the input video to any of the formats in the list
8680 @example
8681 format=pix_fmts=yuv420p|yuv444p|yuv410p
8682 @end example
8683 @end itemize
8684
8685 @anchor{fps}
8686 @section fps
8687
8688 Convert the video to specified constant frame rate by duplicating or dropping
8689 frames as necessary.
8690
8691 It accepts the following parameters:
8692 @table @option
8693
8694 @item fps
8695 The desired output frame rate. The default is @code{25}.
8696
8697 @item start_time
8698 Assume the first PTS should be the given value, in seconds. This allows for
8699 padding/trimming at the start of stream. By default, no assumption is made
8700 about the first frame's expected PTS, so no padding or trimming is done.
8701 For example, this could be set to 0 to pad the beginning with duplicates of
8702 the first frame if a video stream starts after the audio stream or to trim any
8703 frames with a negative PTS.
8704
8705 @item round
8706 Timestamp (PTS) rounding method.
8707
8708 Possible values are:
8709 @table @option
8710 @item zero
8711 round towards 0
8712 @item inf
8713 round away from 0
8714 @item down
8715 round towards -infinity
8716 @item up
8717 round towards +infinity
8718 @item near
8719 round to nearest
8720 @end table
8721 The default is @code{near}.
8722
8723 @item eof_action
8724 Action performed when reading the last frame.
8725
8726 Possible values are:
8727 @table @option
8728 @item round
8729 Use same timestamp rounding method as used for other frames.
8730 @item pass
8731 Pass through last frame if input duration has not been reached yet.
8732 @end table
8733 The default is @code{round}.
8734
8735 @end table
8736
8737 Alternatively, the options can be specified as a flat string:
8738 @var{fps}[:@var{start_time}[:@var{round}]].
8739
8740 See also the @ref{setpts} filter.
8741
8742 @subsection Examples
8743
8744 @itemize
8745 @item
8746 A typical usage in order to set the fps to 25:
8747 @example
8748 fps=fps=25
8749 @end example
8750
8751 @item
8752 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8753 @example
8754 fps=fps=film:round=near
8755 @end example
8756 @end itemize
8757
8758 @section framepack
8759
8760 Pack two different video streams into a stereoscopic video, setting proper
8761 metadata on supported codecs. The two views should have the same size and
8762 framerate and processing will stop when the shorter video ends. Please note
8763 that you may conveniently adjust view properties with the @ref{scale} and
8764 @ref{fps} filters.
8765
8766 It accepts the following parameters:
8767 @table @option
8768
8769 @item format
8770 The desired packing format. Supported values are:
8771
8772 @table @option
8773
8774 @item sbs
8775 The views are next to each other (default).
8776
8777 @item tab
8778 The views are on top of each other.
8779
8780 @item lines
8781 The views are packed by line.
8782
8783 @item columns
8784 The views are packed by column.
8785
8786 @item frameseq
8787 The views are temporally interleaved.
8788
8789 @end table
8790
8791 @end table
8792
8793 Some examples:
8794
8795 @example
8796 # Convert left and right views into a frame-sequential video
8797 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8798
8799 # Convert views into a side-by-side video with the same output resolution as the input
8800 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
8801 @end example
8802
8803 @section framerate
8804
8805 Change the frame rate by interpolating new video output frames from the source
8806 frames.
8807
8808 This filter is not designed to function correctly with interlaced media. If
8809 you wish to change the frame rate of interlaced media then you are required
8810 to deinterlace before this filter and re-interlace after this filter.
8811
8812 A description of the accepted options follows.
8813
8814 @table @option
8815 @item fps
8816 Specify the output frames per second. This option can also be specified
8817 as a value alone. The default is @code{50}.
8818
8819 @item interp_start
8820 Specify the start of a range where the output frame will be created as a
8821 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8822 the default is @code{15}.
8823
8824 @item interp_end
8825 Specify the end of a range where the output frame will be created as a
8826 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8827 the default is @code{240}.
8828
8829 @item scene
8830 Specify the level at which a scene change is detected as a value between
8831 0 and 100 to indicate a new scene; a low value reflects a low
8832 probability for the current frame to introduce a new scene, while a higher
8833 value means the current frame is more likely to be one.
8834 The default is @code{7}.
8835
8836 @item flags
8837 Specify flags influencing the filter process.
8838
8839 Available value for @var{flags} is:
8840
8841 @table @option
8842 @item scene_change_detect, scd
8843 Enable scene change detection using the value of the option @var{scene}.
8844 This flag is enabled by default.
8845 @end table
8846 @end table
8847
8848 @section framestep
8849
8850 Select one frame every N-th frame.
8851
8852 This filter accepts the following option:
8853 @table @option
8854 @item step
8855 Select frame after every @code{step} frames.
8856 Allowed values are positive integers higher than 0. Default value is @code{1}.
8857 @end table
8858
8859 @anchor{frei0r}
8860 @section frei0r
8861
8862 Apply a frei0r effect to the input video.
8863
8864 To enable the compilation of this filter, you need to install the frei0r
8865 header and configure FFmpeg with @code{--enable-frei0r}.
8866
8867 It accepts the following parameters:
8868
8869 @table @option
8870
8871 @item filter_name
8872 The name of the frei0r effect to load. If the environment variable
8873 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8874 directories specified by the colon-separated list in @env{FREI0R_PATH}.
8875 Otherwise, the standard frei0r paths are searched, in this order:
8876 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8877 @file{/usr/lib/frei0r-1/}.
8878
8879 @item filter_params
8880 A '|'-separated list of parameters to pass to the frei0r effect.
8881
8882 @end table
8883
8884 A frei0r effect parameter can be a boolean (its value is either
8885 "y" or "n"), a double, a color (specified as
8886 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8887 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8888 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8889 @var{X} and @var{Y} are floating point numbers) and/or a string.
8890
8891 The number and types of parameters depend on the loaded effect. If an
8892 effect parameter is not specified, the default value is set.
8893
8894 @subsection Examples
8895
8896 @itemize
8897 @item
8898 Apply the distort0r effect, setting the first two double parameters:
8899 @example
8900 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8901 @end example
8902
8903 @item
8904 Apply the colordistance effect, taking a color as the first parameter:
8905 @example
8906 frei0r=colordistance:0.2/0.3/0.4
8907 frei0r=colordistance:violet
8908 frei0r=colordistance:0x112233
8909 @end example
8910
8911 @item
8912 Apply the perspective effect, specifying the top left and top right image
8913 positions:
8914 @example
8915 frei0r=perspective:0.2/0.2|0.8/0.2
8916 @end example
8917 @end itemize
8918
8919 For more information, see
8920 @url{http://frei0r.dyne.org}
8921
8922 @section fspp
8923
8924 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8925
8926 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8927 processing filter, one of them is performed once per block, not per pixel.
8928 This allows for much higher speed.
8929
8930 The filter accepts the following options:
8931
8932 @table @option
8933 @item quality
8934 Set quality. This option defines the number of levels for averaging. It accepts
8935 an integer in the range 4-5. Default value is @code{4}.
8936
8937 @item qp
8938 Force a constant quantization parameter. It accepts an integer in range 0-63.
8939 If not set, the filter will use the QP from the video stream (if available).
8940
8941 @item strength
8942 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8943 more details but also more artifacts, while higher values make the image smoother
8944 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8945
8946 @item use_bframe_qp
8947 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8948 option may cause flicker since the B-Frames have often larger QP. Default is
8949 @code{0} (not enabled).
8950
8951 @end table
8952
8953 @section gblur
8954
8955 Apply Gaussian blur filter.
8956
8957 The filter accepts the following options:
8958
8959 @table @option
8960 @item sigma
8961 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
8962
8963 @item steps
8964 Set number of steps for Gaussian approximation. Defauls is @code{1}.
8965
8966 @item planes
8967 Set which planes to filter. By default all planes are filtered.
8968
8969 @item sigmaV
8970 Set vertical sigma, if negative it will be same as @code{sigma}.
8971 Default is @code{-1}.
8972 @end table
8973
8974 @section geq
8975
8976 The filter accepts the following options:
8977
8978 @table @option
8979 @item lum_expr, lum
8980 Set the luminance expression.
8981 @item cb_expr, cb
8982 Set the chrominance blue expression.
8983 @item cr_expr, cr
8984 Set the chrominance red expression.
8985 @item alpha_expr, a
8986 Set the alpha expression.
8987 @item red_expr, r
8988 Set the red expression.
8989 @item green_expr, g
8990 Set the green expression.
8991 @item blue_expr, b
8992 Set the blue expression.
8993 @end table
8994
8995 The colorspace is selected according to the specified options. If one
8996 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8997 options is specified, the filter will automatically select a YCbCr
8998 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8999 @option{blue_expr} options is specified, it will select an RGB
9000 colorspace.
9001
9002 If one of the chrominance expression is not defined, it falls back on the other
9003 one. If no alpha expression is specified it will evaluate to opaque value.
9004 If none of chrominance expressions are specified, they will evaluate
9005 to the luminance expression.
9006
9007 The expressions can use the following variables and functions:
9008
9009 @table @option
9010 @item N
9011 The sequential number of the filtered frame, starting from @code{0}.
9012
9013 @item X
9014 @item Y
9015 The coordinates of the current sample.
9016
9017 @item W
9018 @item H
9019 The width and height of the image.
9020
9021 @item SW
9022 @item SH
9023 Width and height scale depending on the currently filtered plane. It is the
9024 ratio between the corresponding luma plane number of pixels and the current
9025 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
9026 @code{0.5,0.5} for chroma planes.
9027
9028 @item T
9029 Time of the current frame, expressed in seconds.
9030
9031 @item p(x, y)
9032 Return the value of the pixel at location (@var{x},@var{y}) of the current
9033 plane.
9034
9035 @item lum(x, y)
9036 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
9037 plane.
9038
9039 @item cb(x, y)
9040 Return the value of the pixel at location (@var{x},@var{y}) of the
9041 blue-difference chroma plane. Return 0 if there is no such plane.
9042
9043 @item cr(x, y)
9044 Return the value of the pixel at location (@var{x},@var{y}) of the
9045 red-difference chroma plane. Return 0 if there is no such plane.
9046
9047 @item r(x, y)
9048 @item g(x, y)
9049 @item b(x, y)
9050 Return the value of the pixel at location (@var{x},@var{y}) of the
9051 red/green/blue component. Return 0 if there is no such component.
9052
9053 @item alpha(x, y)
9054 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
9055 plane. Return 0 if there is no such plane.
9056 @end table
9057
9058 For functions, if @var{x} and @var{y} are outside the area, the value will be
9059 automatically clipped to the closer edge.
9060
9061 @subsection Examples
9062
9063 @itemize
9064 @item
9065 Flip the image horizontally:
9066 @example
9067 geq=p(W-X\,Y)
9068 @end example
9069
9070 @item
9071 Generate a bidimensional sine wave, with angle @code{PI/3} and a
9072 wavelength of 100 pixels:
9073 @example
9074 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
9075 @end example
9076
9077 @item
9078 Generate a fancy enigmatic moving light:
9079 @example
9080 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
9081 @end example
9082
9083 @item
9084 Generate a quick emboss effect:
9085 @example
9086 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
9087 @end example
9088
9089 @item
9090 Modify RGB components depending on pixel position:
9091 @example
9092 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
9093 @end example
9094
9095 @item
9096 Create a radial gradient that is the same size as the input (also see
9097 the @ref{vignette} filter):
9098 @example
9099 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
9100 @end example
9101 @end itemize
9102
9103 @section gradfun
9104
9105 Fix the banding artifacts that are sometimes introduced into nearly flat
9106 regions by truncation to 8-bit color depth.
9107 Interpolate the gradients that should go where the bands are, and
9108 dither them.
9109
9110 It is designed for playback only.  Do not use it prior to
9111 lossy compression, because compression tends to lose the dither and
9112 bring back the bands.
9113
9114 It accepts the following parameters:
9115
9116 @table @option
9117
9118 @item strength
9119 The maximum amount by which the filter will change any one pixel. This is also
9120 the threshold for detecting nearly flat regions. Acceptable values range from
9121 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
9122 valid range.
9123
9124 @item radius
9125 The neighborhood to fit the gradient to. A larger radius makes for smoother
9126 gradients, but also prevents the filter from modifying the pixels near detailed
9127 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
9128 values will be clipped to the valid range.
9129
9130 @end table
9131
9132 Alternatively, the options can be specified as a flat string:
9133 @var{strength}[:@var{radius}]
9134
9135 @subsection Examples
9136
9137 @itemize
9138 @item
9139 Apply the filter with a @code{3.5} strength and radius of @code{8}:
9140 @example
9141 gradfun=3.5:8
9142 @end example
9143
9144 @item
9145 Specify radius, omitting the strength (which will fall-back to the default
9146 value):
9147 @example
9148 gradfun=radius=8
9149 @end example
9150
9151 @end itemize
9152
9153 @anchor{haldclut}
9154 @section haldclut
9155
9156 Apply a Hald CLUT to a video stream.
9157
9158 First input is the video stream to process, and second one is the Hald CLUT.
9159 The Hald CLUT input can be a simple picture or a complete video stream.
9160
9161 The filter accepts the following options:
9162
9163 @table @option
9164 @item shortest
9165 Force termination when the shortest input terminates. Default is @code{0}.
9166 @item repeatlast
9167 Continue applying the last CLUT after the end of the stream. A value of
9168 @code{0} disable the filter after the last frame of the CLUT is reached.
9169 Default is @code{1}.
9170 @end table
9171
9172 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
9173 filters share the same internals).
9174
9175 More information about the Hald CLUT can be found on Eskil Steenberg's website
9176 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
9177
9178 @subsection Workflow examples
9179
9180 @subsubsection Hald CLUT video stream
9181
9182 Generate an identity Hald CLUT stream altered with various effects:
9183 @example
9184 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
9185 @end example
9186
9187 Note: make sure you use a lossless codec.
9188
9189 Then use it with @code{haldclut} to apply it on some random stream:
9190 @example
9191 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
9192 @end example
9193
9194 The Hald CLUT will be applied to the 10 first seconds (duration of
9195 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
9196 to the remaining frames of the @code{mandelbrot} stream.
9197
9198 @subsubsection Hald CLUT with preview
9199
9200 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
9201 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
9202 biggest possible square starting at the top left of the picture. The remaining
9203 padding pixels (bottom or right) will be ignored. This area can be used to add
9204 a preview of the Hald CLUT.
9205
9206 Typically, the following generated Hald CLUT will be supported by the
9207 @code{haldclut} filter:
9208
9209 @example
9210 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
9211    pad=iw+320 [padded_clut];
9212    smptebars=s=320x256, split [a][b];
9213    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
9214    [main][b] overlay=W-320" -frames:v 1 clut.png
9215 @end example
9216
9217 It contains the original and a preview of the effect of the CLUT: SMPTE color
9218 bars are displayed on the right-top, and below the same color bars processed by
9219 the color changes.
9220
9221 Then, the effect of this Hald CLUT can be visualized with:
9222 @example
9223 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
9224 @end example
9225
9226 @section hflip
9227
9228 Flip the input video horizontally.
9229
9230 For example, to horizontally flip the input video with @command{ffmpeg}:
9231 @example
9232 ffmpeg -i in.avi -vf "hflip" out.avi
9233 @end example
9234
9235 @section histeq
9236 This filter applies a global color histogram equalization on a
9237 per-frame basis.
9238
9239 It can be used to correct video that has a compressed range of pixel
9240 intensities.  The filter redistributes the pixel intensities to
9241 equalize their distribution across the intensity range. It may be
9242 viewed as an "automatically adjusting contrast filter". This filter is
9243 useful only for correcting degraded or poorly captured source
9244 video.
9245
9246 The filter accepts the following options:
9247
9248 @table @option
9249 @item strength
9250 Determine the amount of equalization to be applied.  As the strength
9251 is reduced, the distribution of pixel intensities more-and-more
9252 approaches that of the input frame. The value must be a float number
9253 in the range [0,1] and defaults to 0.200.
9254
9255 @item intensity
9256 Set the maximum intensity that can generated and scale the output
9257 values appropriately.  The strength should be set as desired and then
9258 the intensity can be limited if needed to avoid washing-out. The value
9259 must be a float number in the range [0,1] and defaults to 0.210.
9260
9261 @item antibanding
9262 Set the antibanding level. If enabled the filter will randomly vary
9263 the luminance of output pixels by a small amount to avoid banding of
9264 the histogram. Possible values are @code{none}, @code{weak} or
9265 @code{strong}. It defaults to @code{none}.
9266 @end table
9267
9268 @section histogram
9269
9270 Compute and draw a color distribution histogram for the input video.
9271
9272 The computed histogram is a representation of the color component
9273 distribution in an image.
9274
9275 Standard histogram displays the color components distribution in an image.
9276 Displays color graph for each color component. Shows distribution of
9277 the Y, U, V, A or R, G, B components, depending on input format, in the
9278 current frame. Below each graph a color component scale meter is shown.
9279
9280 The filter accepts the following options:
9281
9282 @table @option
9283 @item level_height
9284 Set height of level. Default value is @code{200}.
9285 Allowed range is [50, 2048].
9286
9287 @item scale_height
9288 Set height of color scale. Default value is @code{12}.
9289 Allowed range is [0, 40].
9290
9291 @item display_mode
9292 Set display mode.
9293 It accepts the following values:
9294 @table @samp
9295 @item stack
9296 Per color component graphs are placed below each other.
9297
9298 @item parade
9299 Per color component graphs are placed side by side.
9300
9301 @item overlay
9302 Presents information identical to that in the @code{parade}, except
9303 that the graphs representing color components are superimposed directly
9304 over one another.
9305 @end table
9306 Default is @code{stack}.
9307
9308 @item levels_mode
9309 Set mode. Can be either @code{linear}, or @code{logarithmic}.
9310 Default is @code{linear}.
9311
9312 @item components
9313 Set what color components to display.
9314 Default is @code{7}.
9315
9316 @item fgopacity
9317 Set foreground opacity. Default is @code{0.7}.
9318
9319 @item bgopacity
9320 Set background opacity. Default is @code{0.5}.
9321 @end table
9322
9323 @subsection Examples
9324
9325 @itemize
9326
9327 @item
9328 Calculate and draw histogram:
9329 @example
9330 ffplay -i input -vf histogram
9331 @end example
9332
9333 @end itemize
9334
9335 @anchor{hqdn3d}
9336 @section hqdn3d
9337
9338 This is a high precision/quality 3d denoise filter. It aims to reduce
9339 image noise, producing smooth images and making still images really
9340 still. It should enhance compressibility.
9341
9342 It accepts the following optional parameters:
9343
9344 @table @option
9345 @item luma_spatial
9346 A non-negative floating point number which specifies spatial luma strength.
9347 It defaults to 4.0.
9348
9349 @item chroma_spatial
9350 A non-negative floating point number which specifies spatial chroma strength.
9351 It defaults to 3.0*@var{luma_spatial}/4.0.
9352
9353 @item luma_tmp
9354 A floating point number which specifies luma temporal strength. It defaults to
9355 6.0*@var{luma_spatial}/4.0.
9356
9357 @item chroma_tmp
9358 A floating point number which specifies chroma temporal strength. It defaults to
9359 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
9360 @end table
9361
9362 @section hwdownload
9363
9364 Download hardware frames to system memory.
9365
9366 The input must be in hardware frames, and the output a non-hardware format.
9367 Not all formats will be supported on the output - it may be necessary to insert
9368 an additional @option{format} filter immediately following in the graph to get
9369 the output in a supported format.
9370
9371 @section hwmap
9372
9373 Map hardware frames to system memory or to another device.
9374
9375 This filter has several different modes of operation; which one is used depends
9376 on the input and output formats:
9377 @itemize
9378 @item
9379 Hardware frame input, normal frame output
9380
9381 Map the input frames to system memory and pass them to the output.  If the
9382 original hardware frame is later required (for example, after overlaying
9383 something else on part of it), the @option{hwmap} filter can be used again
9384 in the next mode to retrieve it.
9385 @item
9386 Normal frame input, hardware frame output
9387
9388 If the input is actually a software-mapped hardware frame, then unmap it -
9389 that is, return the original hardware frame.
9390
9391 Otherwise, a device must be provided.  Create new hardware surfaces on that
9392 device for the output, then map them back to the software format at the input
9393 and give those frames to the preceding filter.  This will then act like the
9394 @option{hwupload} filter, but may be able to avoid an additional copy when
9395 the input is already in a compatible format.
9396 @item
9397 Hardware frame input and output
9398
9399 A device must be supplied for the output, either directly or with the
9400 @option{derive_device} option.  The input and output devices must be of
9401 different types and compatible - the exact meaning of this is
9402 system-dependent, but typically it means that they must refer to the same
9403 underlying hardware context (for example, refer to the same graphics card).
9404
9405 If the input frames were originally created on the output device, then unmap
9406 to retrieve the original frames.
9407
9408 Otherwise, map the frames to the output device - create new hardware frames
9409 on the output corresponding to the frames on the input.
9410 @end itemize
9411
9412 The following additional parameters are accepted:
9413
9414 @table @option
9415 @item mode
9416 Set the frame mapping mode.  Some combination of:
9417 @table @var
9418 @item read
9419 The mapped frame should be readable.
9420 @item write
9421 The mapped frame should be writeable.
9422 @item overwrite
9423 The mapping will always overwrite the entire frame.
9424
9425 This may improve performance in some cases, as the original contents of the
9426 frame need not be loaded.
9427 @item direct
9428 The mapping must not involve any copying.
9429
9430 Indirect mappings to copies of frames are created in some cases where either
9431 direct mapping is not possible or it would have unexpected properties.
9432 Setting this flag ensures that the mapping is direct and will fail if that is
9433 not possible.
9434 @end table
9435 Defaults to @var{read+write} if not specified.
9436
9437 @item derive_device @var{type}
9438 Rather than using the device supplied at initialisation, instead derive a new
9439 device of type @var{type} from the device the input frames exist on.
9440
9441 @item reverse
9442 In a hardware to hardware mapping, map in reverse - create frames in the sink
9443 and map them back to the source.  This may be necessary in some cases where
9444 a mapping in one direction is required but only the opposite direction is
9445 supported by the devices being used.
9446
9447 This option is dangerous - it may break the preceding filter in undefined
9448 ways if there are any additional constraints on that filter's output.
9449 Do not use it without fully understanding the implications of its use.
9450 @end table
9451
9452 @section hwupload
9453
9454 Upload system memory frames to hardware surfaces.
9455
9456 The device to upload to must be supplied when the filter is initialised.  If
9457 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
9458 option.
9459
9460 @anchor{hwupload_cuda}
9461 @section hwupload_cuda
9462
9463 Upload system memory frames to a CUDA device.
9464
9465 It accepts the following optional parameters:
9466
9467 @table @option
9468 @item device
9469 The number of the CUDA device to use
9470 @end table
9471
9472 @section hqx
9473
9474 Apply a high-quality magnification filter designed for pixel art. This filter
9475 was originally created by Maxim Stepin.
9476
9477 It accepts the following option:
9478
9479 @table @option
9480 @item n
9481 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
9482 @code{hq3x} and @code{4} for @code{hq4x}.
9483 Default is @code{3}.
9484 @end table
9485
9486 @section hstack
9487 Stack input videos horizontally.
9488
9489 All streams must be of same pixel format and of same height.
9490
9491 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
9492 to create same output.
9493
9494 The filter accept the following option:
9495
9496 @table @option
9497 @item inputs
9498 Set number of input streams. Default is 2.
9499
9500 @item shortest
9501 If set to 1, force the output to terminate when the shortest input
9502 terminates. Default value is 0.
9503 @end table
9504
9505 @section hue
9506
9507 Modify the hue and/or the saturation of the input.
9508
9509 It accepts the following parameters:
9510
9511 @table @option
9512 @item h
9513 Specify the hue angle as a number of degrees. It accepts an expression,
9514 and defaults to "0".
9515
9516 @item s
9517 Specify the saturation in the [-10,10] range. It accepts an expression and
9518 defaults to "1".
9519
9520 @item H
9521 Specify the hue angle as a number of radians. It accepts an
9522 expression, and defaults to "0".
9523
9524 @item b
9525 Specify the brightness in the [-10,10] range. It accepts an expression and
9526 defaults to "0".
9527 @end table
9528
9529 @option{h} and @option{H} are mutually exclusive, and can't be
9530 specified at the same time.
9531
9532 The @option{b}, @option{h}, @option{H} and @option{s} option values are
9533 expressions containing the following constants:
9534
9535 @table @option
9536 @item n
9537 frame count of the input frame starting from 0
9538
9539 @item pts
9540 presentation timestamp of the input frame expressed in time base units
9541
9542 @item r
9543 frame rate of the input video, NAN if the input frame rate is unknown
9544
9545 @item t
9546 timestamp expressed in seconds, NAN if the input timestamp is unknown
9547
9548 @item tb
9549 time base of the input video
9550 @end table
9551
9552 @subsection Examples
9553
9554 @itemize
9555 @item
9556 Set the hue to 90 degrees and the saturation to 1.0:
9557 @example
9558 hue=h=90:s=1
9559 @end example
9560
9561 @item
9562 Same command but expressing the hue in radians:
9563 @example
9564 hue=H=PI/2:s=1
9565 @end example
9566
9567 @item
9568 Rotate hue and make the saturation swing between 0
9569 and 2 over a period of 1 second:
9570 @example
9571 hue="H=2*PI*t: s=sin(2*PI*t)+1"
9572 @end example
9573
9574 @item
9575 Apply a 3 seconds saturation fade-in effect starting at 0:
9576 @example
9577 hue="s=min(t/3\,1)"
9578 @end example
9579
9580 The general fade-in expression can be written as:
9581 @example
9582 hue="s=min(0\, max((t-START)/DURATION\, 1))"
9583 @end example
9584
9585 @item
9586 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
9587 @example
9588 hue="s=max(0\, min(1\, (8-t)/3))"
9589 @end example
9590
9591 The general fade-out expression can be written as:
9592 @example
9593 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
9594 @end example
9595
9596 @end itemize
9597
9598 @subsection Commands
9599
9600 This filter supports the following commands:
9601 @table @option
9602 @item b
9603 @item s
9604 @item h
9605 @item H
9606 Modify the hue and/or the saturation and/or brightness of the input video.
9607 The command accepts the same syntax of the corresponding option.
9608
9609 If the specified expression is not valid, it is kept at its current
9610 value.
9611 @end table
9612
9613 @section hysteresis
9614
9615 Grow first stream into second stream by connecting components.
9616 This makes it possible to build more robust edge masks.
9617
9618 This filter accepts the following options:
9619
9620 @table @option
9621 @item planes
9622 Set which planes will be processed as bitmap, unprocessed planes will be
9623 copied from first stream.
9624 By default value 0xf, all planes will be processed.
9625
9626 @item threshold
9627 Set threshold which is used in filtering. If pixel component value is higher than
9628 this value filter algorithm for connecting components is activated.
9629 By default value is 0.
9630 @end table
9631
9632 @section idet
9633
9634 Detect video interlacing type.
9635
9636 This filter tries to detect if the input frames are interlaced, progressive,
9637 top or bottom field first. It will also try to detect fields that are
9638 repeated between adjacent frames (a sign of telecine).
9639
9640 Single frame detection considers only immediately adjacent frames when classifying each frame.
9641 Multiple frame detection incorporates the classification history of previous frames.
9642
9643 The filter will log these metadata values:
9644
9645 @table @option
9646 @item single.current_frame
9647 Detected type of current frame using single-frame detection. One of:
9648 ``tff'' (top field first), ``bff'' (bottom field first),
9649 ``progressive'', or ``undetermined''
9650
9651 @item single.tff
9652 Cumulative number of frames detected as top field first using single-frame detection.
9653
9654 @item multiple.tff
9655 Cumulative number of frames detected as top field first using multiple-frame detection.
9656
9657 @item single.bff
9658 Cumulative number of frames detected as bottom field first using single-frame detection.
9659
9660 @item multiple.current_frame
9661 Detected type of current frame using multiple-frame detection. One of:
9662 ``tff'' (top field first), ``bff'' (bottom field first),
9663 ``progressive'', or ``undetermined''
9664
9665 @item multiple.bff
9666 Cumulative number of frames detected as bottom field first using multiple-frame detection.
9667
9668 @item single.progressive
9669 Cumulative number of frames detected as progressive using single-frame detection.
9670
9671 @item multiple.progressive
9672 Cumulative number of frames detected as progressive using multiple-frame detection.
9673
9674 @item single.undetermined
9675 Cumulative number of frames that could not be classified using single-frame detection.
9676
9677 @item multiple.undetermined
9678 Cumulative number of frames that could not be classified using multiple-frame detection.
9679
9680 @item repeated.current_frame
9681 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
9682
9683 @item repeated.neither
9684 Cumulative number of frames with no repeated field.
9685
9686 @item repeated.top
9687 Cumulative number of frames with the top field repeated from the previous frame's top field.
9688
9689 @item repeated.bottom
9690 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
9691 @end table
9692
9693 The filter accepts the following options:
9694
9695 @table @option
9696 @item intl_thres
9697 Set interlacing threshold.
9698 @item prog_thres
9699 Set progressive threshold.
9700 @item rep_thres
9701 Threshold for repeated field detection.
9702 @item half_life
9703 Number of frames after which a given frame's contribution to the
9704 statistics is halved (i.e., it contributes only 0.5 to its
9705 classification). The default of 0 means that all frames seen are given
9706 full weight of 1.0 forever.
9707 @item analyze_interlaced_flag
9708 When this is not 0 then idet will use the specified number of frames to determine
9709 if the interlaced flag is accurate, it will not count undetermined frames.
9710 If the flag is found to be accurate it will be used without any further
9711 computations, if it is found to be inaccurate it will be cleared without any
9712 further computations. This allows inserting the idet filter as a low computational
9713 method to clean up the interlaced flag
9714 @end table
9715
9716 @section il
9717
9718 Deinterleave or interleave fields.
9719
9720 This filter allows one to process interlaced images fields without
9721 deinterlacing them. Deinterleaving splits the input frame into 2
9722 fields (so called half pictures). Odd lines are moved to the top
9723 half of the output image, even lines to the bottom half.
9724 You can process (filter) them independently and then re-interleave them.
9725
9726 The filter accepts the following options:
9727
9728 @table @option
9729 @item luma_mode, l
9730 @item chroma_mode, c
9731 @item alpha_mode, a
9732 Available values for @var{luma_mode}, @var{chroma_mode} and
9733 @var{alpha_mode} are:
9734
9735 @table @samp
9736 @item none
9737 Do nothing.
9738
9739 @item deinterleave, d
9740 Deinterleave fields, placing one above the other.
9741
9742 @item interleave, i
9743 Interleave fields. Reverse the effect of deinterleaving.
9744 @end table
9745 Default value is @code{none}.
9746
9747 @item luma_swap, ls
9748 @item chroma_swap, cs
9749 @item alpha_swap, as
9750 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
9751 @end table
9752
9753 @section inflate
9754
9755 Apply inflate effect to the video.
9756
9757 This filter replaces the pixel by the local(3x3) average by taking into account
9758 only values higher than the pixel.
9759
9760 It accepts the following options:
9761
9762 @table @option
9763 @item threshold0
9764 @item threshold1
9765 @item threshold2
9766 @item threshold3
9767 Limit the maximum change for each plane, default is 65535.
9768 If 0, plane will remain unchanged.
9769 @end table
9770
9771 @section interlace
9772
9773 Simple interlacing filter from progressive contents. This interleaves upper (or
9774 lower) lines from odd frames with lower (or upper) lines from even frames,
9775 halving the frame rate and preserving image height.
9776
9777 @example
9778    Original        Original             New Frame
9779    Frame 'j'      Frame 'j+1'             (tff)
9780   ==========      ===========       ==================
9781     Line 0  -------------------->    Frame 'j' Line 0
9782     Line 1          Line 1  ---->   Frame 'j+1' Line 1
9783     Line 2 --------------------->    Frame 'j' Line 2
9784     Line 3          Line 3  ---->   Frame 'j+1' Line 3
9785      ...             ...                   ...
9786 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
9787 @end example
9788
9789 It accepts the following optional parameters:
9790
9791 @table @option
9792 @item scan
9793 This determines whether the interlaced frame is taken from the even
9794 (tff - default) or odd (bff) lines of the progressive frame.
9795
9796 @item lowpass
9797 Vertical lowpass filter to avoid twitter interlacing and
9798 reduce moire patterns.
9799
9800 @table @samp
9801 @item 0, off
9802 Disable vertical lowpass filter
9803
9804 @item 1, linear
9805 Enable linear filter (default)
9806
9807 @item 2, complex
9808 Enable complex filter. This will slightly less reduce twitter and moire
9809 but better retain detail and subjective sharpness impression.
9810
9811 @end table
9812 @end table
9813
9814 @section kerndeint
9815
9816 Deinterlace input video by applying Donald Graft's adaptive kernel
9817 deinterling. Work on interlaced parts of a video to produce
9818 progressive frames.
9819
9820 The description of the accepted parameters follows.
9821
9822 @table @option
9823 @item thresh
9824 Set the threshold which affects the filter's tolerance when
9825 determining if a pixel line must be processed. It must be an integer
9826 in the range [0,255] and defaults to 10. A value of 0 will result in
9827 applying the process on every pixels.
9828
9829 @item map
9830 Paint pixels exceeding the threshold value to white if set to 1.
9831 Default is 0.
9832
9833 @item order
9834 Set the fields order. Swap fields if set to 1, leave fields alone if
9835 0. Default is 0.
9836
9837 @item sharp
9838 Enable additional sharpening if set to 1. Default is 0.
9839
9840 @item twoway
9841 Enable twoway sharpening if set to 1. Default is 0.
9842 @end table
9843
9844 @subsection Examples
9845
9846 @itemize
9847 @item
9848 Apply default values:
9849 @example
9850 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9851 @end example
9852
9853 @item
9854 Enable additional sharpening:
9855 @example
9856 kerndeint=sharp=1
9857 @end example
9858
9859 @item
9860 Paint processed pixels in white:
9861 @example
9862 kerndeint=map=1
9863 @end example
9864 @end itemize
9865
9866 @section lenscorrection
9867
9868 Correct radial lens distortion
9869
9870 This filter can be used to correct for radial distortion as can result from the use
9871 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9872 one can use tools available for example as part of opencv or simply trial-and-error.
9873 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9874 and extract the k1 and k2 coefficients from the resulting matrix.
9875
9876 Note that effectively the same filter is available in the open-source tools Krita and
9877 Digikam from the KDE project.
9878
9879 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9880 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9881 brightness distribution, so you may want to use both filters together in certain
9882 cases, though you will have to take care of ordering, i.e. whether vignetting should
9883 be applied before or after lens correction.
9884
9885 @subsection Options
9886
9887 The filter accepts the following options:
9888
9889 @table @option
9890 @item cx
9891 Relative x-coordinate of the focal point of the image, and thereby the center of the
9892 distortion. This value has a range [0,1] and is expressed as fractions of the image
9893 width.
9894 @item cy
9895 Relative y-coordinate of the focal point of the image, and thereby the center of the
9896 distortion. This value has a range [0,1] and is expressed as fractions of the image
9897 height.
9898 @item k1
9899 Coefficient of the quadratic correction term. 0.5 means no correction.
9900 @item k2
9901 Coefficient of the double quadratic correction term. 0.5 means no correction.
9902 @end table
9903
9904 The formula that generates the correction is:
9905
9906 @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)
9907
9908 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9909 distances from the focal point in the source and target images, respectively.
9910
9911 @section libvmaf
9912
9913 Obtain the VMAF (Video Multi-Method Assessment Fusion)
9914 score between two input videos.
9915
9916 The obtained VMAF score is printed through the logging system.
9917
9918 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
9919 After installing the library it can be enabled using:
9920 @code{./configure --enable-libvmaf}.
9921 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
9922
9923 The filter has following options:
9924
9925 @table @option
9926 @item model_path
9927 Set the model path which is to be used for SVM.
9928 Default value: @code{"vmaf_v0.6.1.pkl"}
9929
9930 @item log_path
9931 Set the file path to be used to store logs.
9932
9933 @item log_fmt
9934 Set the format of the log file (xml or json).
9935
9936 @item enable_transform
9937 Enables transform for computing vmaf.
9938
9939 @item phone_model
9940 Invokes the phone model which will generate VMAF scores higher than in the
9941 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
9942
9943 @item psnr
9944 Enables computing psnr along with vmaf.
9945
9946 @item ssim
9947 Enables computing ssim along with vmaf.
9948
9949 @item ms_ssim
9950 Enables computing ms_ssim along with vmaf.
9951
9952 @item pool
9953 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
9954 @end table
9955
9956 This filter also supports the @ref{framesync} options.
9957
9958 On the below examples the input file @file{main.mpg} being processed is
9959 compared with the reference file @file{ref.mpg}.
9960
9961 @example
9962 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
9963 @end example
9964
9965 Example with options:
9966 @example
9967 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:enable-transform=1" -f null -
9968 @end example
9969
9970 @section limiter
9971
9972 Limits the pixel components values to the specified range [min, max].
9973
9974 The filter accepts the following options:
9975
9976 @table @option
9977 @item min
9978 Lower bound. Defaults to the lowest allowed value for the input.
9979
9980 @item max
9981 Upper bound. Defaults to the highest allowed value for the input.
9982
9983 @item planes
9984 Specify which planes will be processed. Defaults to all available.
9985 @end table
9986
9987 @section loop
9988
9989 Loop video frames.
9990
9991 The filter accepts the following options:
9992
9993 @table @option
9994 @item loop
9995 Set the number of loops. Setting this value to -1 will result in infinite loops.
9996 Default is 0.
9997
9998 @item size
9999 Set maximal size in number of frames. Default is 0.
10000
10001 @item start
10002 Set first frame of loop. Default is 0.
10003 @end table
10004
10005 @anchor{lut3d}
10006 @section lut3d
10007
10008 Apply a 3D LUT to an input video.
10009
10010 The filter accepts the following options:
10011
10012 @table @option
10013 @item file
10014 Set the 3D LUT file name.
10015
10016 Currently supported formats:
10017 @table @samp
10018 @item 3dl
10019 AfterEffects
10020 @item cube
10021 Iridas
10022 @item dat
10023 DaVinci
10024 @item m3d
10025 Pandora
10026 @end table
10027 @item interp
10028 Select interpolation mode.
10029
10030 Available values are:
10031
10032 @table @samp
10033 @item nearest
10034 Use values from the nearest defined point.
10035 @item trilinear
10036 Interpolate values using the 8 points defining a cube.
10037 @item tetrahedral
10038 Interpolate values using a tetrahedron.
10039 @end table
10040 @end table
10041
10042 This filter also supports the @ref{framesync} options.
10043
10044 @section lumakey
10045
10046 Turn certain luma values into transparency.
10047
10048 The filter accepts the following options:
10049
10050 @table @option
10051 @item threshold
10052 Set the luma which will be used as base for transparency.
10053 Default value is @code{0}.
10054
10055 @item tolerance
10056 Set the range of luma values to be keyed out.
10057 Default value is @code{0}.
10058
10059 @item softness
10060 Set the range of softness. Default value is @code{0}.
10061 Use this to control gradual transition from zero to full transparency.
10062 @end table
10063
10064 @section lut, lutrgb, lutyuv
10065
10066 Compute a look-up table for binding each pixel component input value
10067 to an output value, and apply it to the input video.
10068
10069 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
10070 to an RGB input video.
10071
10072 These filters accept the following parameters:
10073 @table @option
10074 @item c0
10075 set first pixel component expression
10076 @item c1
10077 set second pixel component expression
10078 @item c2
10079 set third pixel component expression
10080 @item c3
10081 set fourth pixel component expression, corresponds to the alpha component
10082
10083 @item r
10084 set red component expression
10085 @item g
10086 set green component expression
10087 @item b
10088 set blue component expression
10089 @item a
10090 alpha component expression
10091
10092 @item y
10093 set Y/luminance component expression
10094 @item u
10095 set U/Cb component expression
10096 @item v
10097 set V/Cr component expression
10098 @end table
10099
10100 Each of them specifies the expression to use for computing the lookup table for
10101 the corresponding pixel component values.
10102
10103 The exact component associated to each of the @var{c*} options depends on the
10104 format in input.
10105
10106 The @var{lut} filter requires either YUV or RGB pixel formats in input,
10107 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
10108
10109 The expressions can contain the following constants and functions:
10110
10111 @table @option
10112 @item w
10113 @item h
10114 The input width and height.
10115
10116 @item val
10117 The input value for the pixel component.
10118
10119 @item clipval
10120 The input value, clipped to the @var{minval}-@var{maxval} range.
10121
10122 @item maxval
10123 The maximum value for the pixel component.
10124
10125 @item minval
10126 The minimum value for the pixel component.
10127
10128 @item negval
10129 The negated value for the pixel component value, clipped to the
10130 @var{minval}-@var{maxval} range; it corresponds to the expression
10131 "maxval-clipval+minval".
10132
10133 @item clip(val)
10134 The computed value in @var{val}, clipped to the
10135 @var{minval}-@var{maxval} range.
10136
10137 @item gammaval(gamma)
10138 The computed gamma correction value of the pixel component value,
10139 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
10140 expression
10141 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
10142
10143 @end table
10144
10145 All expressions default to "val".
10146
10147 @subsection Examples
10148
10149 @itemize
10150 @item
10151 Negate input video:
10152 @example
10153 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
10154 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
10155 @end example
10156
10157 The above is the same as:
10158 @example
10159 lutrgb="r=negval:g=negval:b=negval"
10160 lutyuv="y=negval:u=negval:v=negval"
10161 @end example
10162
10163 @item
10164 Negate luminance:
10165 @example
10166 lutyuv=y=negval
10167 @end example
10168
10169 @item
10170 Remove chroma components, turning the video into a graytone image:
10171 @example
10172 lutyuv="u=128:v=128"
10173 @end example
10174
10175 @item
10176 Apply a luma burning effect:
10177 @example
10178 lutyuv="y=2*val"
10179 @end example
10180
10181 @item
10182 Remove green and blue components:
10183 @example
10184 lutrgb="g=0:b=0"
10185 @end example
10186
10187 @item
10188 Set a constant alpha channel value on input:
10189 @example
10190 format=rgba,lutrgb=a="maxval-minval/2"
10191 @end example
10192
10193 @item
10194 Correct luminance gamma by a factor of 0.5:
10195 @example
10196 lutyuv=y=gammaval(0.5)
10197 @end example
10198
10199 @item
10200 Discard least significant bits of luma:
10201 @example
10202 lutyuv=y='bitand(val, 128+64+32)'
10203 @end example
10204
10205 @item
10206 Technicolor like effect:
10207 @example
10208 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
10209 @end example
10210 @end itemize
10211
10212 @section lut2, tlut2
10213
10214 The @code{lut2} filter takes two input streams and outputs one
10215 stream.
10216
10217 The @code{tlut2} (time lut2) filter takes two consecutive frames
10218 from one single stream.
10219
10220 This filter accepts the following parameters:
10221 @table @option
10222 @item c0
10223 set first pixel component expression
10224 @item c1
10225 set second pixel component expression
10226 @item c2
10227 set third pixel component expression
10228 @item c3
10229 set fourth pixel component expression, corresponds to the alpha component
10230 @end table
10231
10232 Each of them specifies the expression to use for computing the lookup table for
10233 the corresponding pixel component values.
10234
10235 The exact component associated to each of the @var{c*} options depends on the
10236 format in inputs.
10237
10238 The expressions can contain the following constants:
10239
10240 @table @option
10241 @item w
10242 @item h
10243 The input width and height.
10244
10245 @item x
10246 The first input value for the pixel component.
10247
10248 @item y
10249 The second input value for the pixel component.
10250
10251 @item bdx
10252 The first input video bit depth.
10253
10254 @item bdy
10255 The second input video bit depth.
10256 @end table
10257
10258 All expressions default to "x".
10259
10260 @subsection Examples
10261
10262 @itemize
10263 @item
10264 Highlight differences between two RGB video streams:
10265 @example
10266 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)'
10267 @end example
10268
10269 @item
10270 Highlight differences between two YUV video streams:
10271 @example
10272 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)'
10273 @end example
10274
10275 @item
10276 Show max difference between two video streams:
10277 @example
10278 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)))'
10279 @end example
10280 @end itemize
10281
10282 @section maskedclamp
10283
10284 Clamp the first input stream with the second input and third input stream.
10285
10286 Returns the value of first stream to be between second input
10287 stream - @code{undershoot} and third input stream + @code{overshoot}.
10288
10289 This filter accepts the following options:
10290 @table @option
10291 @item undershoot
10292 Default value is @code{0}.
10293
10294 @item overshoot
10295 Default value is @code{0}.
10296
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 @end table
10302
10303 @section maskedmerge
10304
10305 Merge the first input stream with the second input stream using per pixel
10306 weights in the third input stream.
10307
10308 A value of 0 in the third stream pixel component means that pixel component
10309 from first stream is returned unchanged, while maximum value (eg. 255 for
10310 8-bit videos) means that pixel component from second stream is returned
10311 unchanged. Intermediate values define the amount of merging between both
10312 input stream's pixel components.
10313
10314 This filter accepts the following options:
10315 @table @option
10316 @item planes
10317 Set which planes will be processed as bitmap, unprocessed planes will be
10318 copied from first stream.
10319 By default value 0xf, all planes will be processed.
10320 @end table
10321
10322 @section mcdeint
10323
10324 Apply motion-compensation deinterlacing.
10325
10326 It needs one field per frame as input and must thus be used together
10327 with yadif=1/3 or equivalent.
10328
10329 This filter accepts the following options:
10330 @table @option
10331 @item mode
10332 Set the deinterlacing mode.
10333
10334 It accepts one of the following values:
10335 @table @samp
10336 @item fast
10337 @item medium
10338 @item slow
10339 use iterative motion estimation
10340 @item extra_slow
10341 like @samp{slow}, but use multiple reference frames.
10342 @end table
10343 Default value is @samp{fast}.
10344
10345 @item parity
10346 Set the picture field parity assumed for the input video. It must be
10347 one of the following values:
10348
10349 @table @samp
10350 @item 0, tff
10351 assume top field first
10352 @item 1, bff
10353 assume bottom field first
10354 @end table
10355
10356 Default value is @samp{bff}.
10357
10358 @item qp
10359 Set per-block quantization parameter (QP) used by the internal
10360 encoder.
10361
10362 Higher values should result in a smoother motion vector field but less
10363 optimal individual vectors. Default value is 1.
10364 @end table
10365
10366 @section mergeplanes
10367
10368 Merge color channel components from several video streams.
10369
10370 The filter accepts up to 4 input streams, and merge selected input
10371 planes to the output video.
10372
10373 This filter accepts the following options:
10374 @table @option
10375 @item mapping
10376 Set input to output plane mapping. Default is @code{0}.
10377
10378 The mappings is specified as a bitmap. It should be specified as a
10379 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
10380 mapping for the first plane of the output stream. 'A' sets the number of
10381 the input stream to use (from 0 to 3), and 'a' the plane number of the
10382 corresponding input to use (from 0 to 3). The rest of the mappings is
10383 similar, 'Bb' describes the mapping for the output stream second
10384 plane, 'Cc' describes the mapping for the output stream third plane and
10385 'Dd' describes the mapping for the output stream fourth plane.
10386
10387 @item format
10388 Set output pixel format. Default is @code{yuva444p}.
10389 @end table
10390
10391 @subsection Examples
10392
10393 @itemize
10394 @item
10395 Merge three gray video streams of same width and height into single video stream:
10396 @example
10397 [a0][a1][a2]mergeplanes=0x001020:yuv444p
10398 @end example
10399
10400 @item
10401 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
10402 @example
10403 [a0][a1]mergeplanes=0x00010210:yuva444p
10404 @end example
10405
10406 @item
10407 Swap Y and A plane in yuva444p stream:
10408 @example
10409 format=yuva444p,mergeplanes=0x03010200:yuva444p
10410 @end example
10411
10412 @item
10413 Swap U and V plane in yuv420p stream:
10414 @example
10415 format=yuv420p,mergeplanes=0x000201:yuv420p
10416 @end example
10417
10418 @item
10419 Cast a rgb24 clip to yuv444p:
10420 @example
10421 format=rgb24,mergeplanes=0x000102:yuv444p
10422 @end example
10423 @end itemize
10424
10425 @section mestimate
10426
10427 Estimate and export motion vectors using block matching algorithms.
10428 Motion vectors are stored in frame side data to be used by other filters.
10429
10430 This filter accepts the following options:
10431 @table @option
10432 @item method
10433 Specify the motion estimation method. Accepts one of the following values:
10434
10435 @table @samp
10436 @item esa
10437 Exhaustive search algorithm.
10438 @item tss
10439 Three step search algorithm.
10440 @item tdls
10441 Two dimensional logarithmic search algorithm.
10442 @item ntss
10443 New three step search algorithm.
10444 @item fss
10445 Four step search algorithm.
10446 @item ds
10447 Diamond search algorithm.
10448 @item hexbs
10449 Hexagon-based search algorithm.
10450 @item epzs
10451 Enhanced predictive zonal search algorithm.
10452 @item umh
10453 Uneven multi-hexagon search algorithm.
10454 @end table
10455 Default value is @samp{esa}.
10456
10457 @item mb_size
10458 Macroblock size. Default @code{16}.
10459
10460 @item search_param
10461 Search parameter. Default @code{7}.
10462 @end table
10463
10464 @section midequalizer
10465
10466 Apply Midway Image Equalization effect using two video streams.
10467
10468 Midway Image Equalization adjusts a pair of images to have the same
10469 histogram, while maintaining their dynamics as much as possible. It's
10470 useful for e.g. matching exposures from a pair of stereo cameras.
10471
10472 This filter has two inputs and one output, which must be of same pixel format, but
10473 may be of different sizes. The output of filter is first input adjusted with
10474 midway histogram of both inputs.
10475
10476 This filter accepts the following option:
10477
10478 @table @option
10479 @item planes
10480 Set which planes to process. Default is @code{15}, which is all available planes.
10481 @end table
10482
10483 @section minterpolate
10484
10485 Convert the video to specified frame rate using motion interpolation.
10486
10487 This filter accepts the following options:
10488 @table @option
10489 @item fps
10490 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}.
10491
10492 @item mi_mode
10493 Motion interpolation mode. Following values are accepted:
10494 @table @samp
10495 @item dup
10496 Duplicate previous or next frame for interpolating new ones.
10497 @item blend
10498 Blend source frames. Interpolated frame is mean of previous and next frames.
10499 @item mci
10500 Motion compensated interpolation. Following options are effective when this mode is selected:
10501
10502 @table @samp
10503 @item mc_mode
10504 Motion compensation mode. Following values are accepted:
10505 @table @samp
10506 @item obmc
10507 Overlapped block motion compensation.
10508 @item aobmc
10509 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
10510 @end table
10511 Default mode is @samp{obmc}.
10512
10513 @item me_mode
10514 Motion estimation mode. Following values are accepted:
10515 @table @samp
10516 @item bidir
10517 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
10518 @item bilat
10519 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
10520 @end table
10521 Default mode is @samp{bilat}.
10522
10523 @item me
10524 The algorithm to be used for motion estimation. Following values are accepted:
10525 @table @samp
10526 @item esa
10527 Exhaustive search algorithm.
10528 @item tss
10529 Three step search algorithm.
10530 @item tdls
10531 Two dimensional logarithmic search algorithm.
10532 @item ntss
10533 New three step search algorithm.
10534 @item fss
10535 Four step search algorithm.
10536 @item ds
10537 Diamond search algorithm.
10538 @item hexbs
10539 Hexagon-based search algorithm.
10540 @item epzs
10541 Enhanced predictive zonal search algorithm.
10542 @item umh
10543 Uneven multi-hexagon search algorithm.
10544 @end table
10545 Default algorithm is @samp{epzs}.
10546
10547 @item mb_size
10548 Macroblock size. Default @code{16}.
10549
10550 @item search_param
10551 Motion estimation search parameter. Default @code{32}.
10552
10553 @item vsbmc
10554 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).
10555 @end table
10556 @end table
10557
10558 @item scd
10559 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:
10560 @table @samp
10561 @item none
10562 Disable scene change detection.
10563 @item fdiff
10564 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
10565 @end table
10566 Default method is @samp{fdiff}.
10567
10568 @item scd_threshold
10569 Scene change detection threshold. Default is @code{5.0}.
10570 @end table
10571
10572 @section mix
10573
10574 Mix several video input streams into one video stream.
10575
10576 A description of the accepted options follows.
10577
10578 @table @option
10579 @item nb_inputs
10580 The number of inputs. If unspecified, it defaults to 2.
10581
10582 @item weights
10583 Specify weight of each input video stream as sequence.
10584 Each weight is separated by space.
10585
10586 @item duration
10587 Specify how end of stream is determined.
10588 @table @samp
10589 @item longest
10590 The duration of the longest input. (default)
10591
10592 @item shortest
10593 The duration of the shortest input.
10594
10595 @item first
10596 The duration of the first input.
10597 @end table
10598 @end table
10599
10600 @section mpdecimate
10601
10602 Drop frames that do not differ greatly from the previous frame in
10603 order to reduce frame rate.
10604
10605 The main use of this filter is for very-low-bitrate encoding
10606 (e.g. streaming over dialup modem), but it could in theory be used for
10607 fixing movies that were inverse-telecined incorrectly.
10608
10609 A description of the accepted options follows.
10610
10611 @table @option
10612 @item max
10613 Set the maximum number of consecutive frames which can be dropped (if
10614 positive), or the minimum interval between dropped frames (if
10615 negative). If the value is 0, the frame is dropped disregarding the
10616 number of previous sequentially dropped frames.
10617
10618 Default value is 0.
10619
10620 @item hi
10621 @item lo
10622 @item frac
10623 Set the dropping threshold values.
10624
10625 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
10626 represent actual pixel value differences, so a threshold of 64
10627 corresponds to 1 unit of difference for each pixel, or the same spread
10628 out differently over the block.
10629
10630 A frame is a candidate for dropping if no 8x8 blocks differ by more
10631 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
10632 meaning the whole image) differ by more than a threshold of @option{lo}.
10633
10634 Default value for @option{hi} is 64*12, default value for @option{lo} is
10635 64*5, and default value for @option{frac} is 0.33.
10636 @end table
10637
10638
10639 @section negate
10640
10641 Negate input video.
10642
10643 It accepts an integer in input; if non-zero it negates the
10644 alpha component (if available). The default value in input is 0.
10645
10646 @section nlmeans
10647
10648 Denoise frames using Non-Local Means algorithm.
10649
10650 Each pixel is adjusted by looking for other pixels with similar contexts. This
10651 context similarity is defined by comparing their surrounding patches of size
10652 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
10653 around the pixel.
10654
10655 Note that the research area defines centers for patches, which means some
10656 patches will be made of pixels outside that research area.
10657
10658 The filter accepts the following options.
10659
10660 @table @option
10661 @item s
10662 Set denoising strength.
10663
10664 @item p
10665 Set patch size.
10666
10667 @item pc
10668 Same as @option{p} but for chroma planes.
10669
10670 The default value is @var{0} and means automatic.
10671
10672 @item r
10673 Set research size.
10674
10675 @item rc
10676 Same as @option{r} but for chroma planes.
10677
10678 The default value is @var{0} and means automatic.
10679 @end table
10680
10681 @section nnedi
10682
10683 Deinterlace video using neural network edge directed interpolation.
10684
10685 This filter accepts the following options:
10686
10687 @table @option
10688 @item weights
10689 Mandatory option, without binary file filter can not work.
10690 Currently file can be found here:
10691 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
10692
10693 @item deint
10694 Set which frames to deinterlace, by default it is @code{all}.
10695 Can be @code{all} or @code{interlaced}.
10696
10697 @item field
10698 Set mode of operation.
10699
10700 Can be one of the following:
10701
10702 @table @samp
10703 @item af
10704 Use frame flags, both fields.
10705 @item a
10706 Use frame flags, single field.
10707 @item t
10708 Use top field only.
10709 @item b
10710 Use bottom field only.
10711 @item tf
10712 Use both fields, top first.
10713 @item bf
10714 Use both fields, bottom first.
10715 @end table
10716
10717 @item planes
10718 Set which planes to process, by default filter process all frames.
10719
10720 @item nsize
10721 Set size of local neighborhood around each pixel, used by the predictor neural
10722 network.
10723
10724 Can be one of the following:
10725
10726 @table @samp
10727 @item s8x6
10728 @item s16x6
10729 @item s32x6
10730 @item s48x6
10731 @item s8x4
10732 @item s16x4
10733 @item s32x4
10734 @end table
10735
10736 @item nns
10737 Set the number of neurons in predictor neural network.
10738 Can be one of the following:
10739
10740 @table @samp
10741 @item n16
10742 @item n32
10743 @item n64
10744 @item n128
10745 @item n256
10746 @end table
10747
10748 @item qual
10749 Controls the number of different neural network predictions that are blended
10750 together to compute the final output value. Can be @code{fast}, default or
10751 @code{slow}.
10752
10753 @item etype
10754 Set which set of weights to use in the predictor.
10755 Can be one of the following:
10756
10757 @table @samp
10758 @item a
10759 weights trained to minimize absolute error
10760 @item s
10761 weights trained to minimize squared error
10762 @end table
10763
10764 @item pscrn
10765 Controls whether or not the prescreener neural network is used to decide
10766 which pixels should be processed by the predictor neural network and which
10767 can be handled by simple cubic interpolation.
10768 The prescreener is trained to know whether cubic interpolation will be
10769 sufficient for a pixel or whether it should be predicted by the predictor nn.
10770 The computational complexity of the prescreener nn is much less than that of
10771 the predictor nn. Since most pixels can be handled by cubic interpolation,
10772 using the prescreener generally results in much faster processing.
10773 The prescreener is pretty accurate, so the difference between using it and not
10774 using it is almost always unnoticeable.
10775
10776 Can be one of the following:
10777
10778 @table @samp
10779 @item none
10780 @item original
10781 @item new
10782 @end table
10783
10784 Default is @code{new}.
10785
10786 @item fapprox
10787 Set various debugging flags.
10788 @end table
10789
10790 @section noformat
10791
10792 Force libavfilter not to use any of the specified pixel formats for the
10793 input to the next filter.
10794
10795 It accepts the following parameters:
10796 @table @option
10797
10798 @item pix_fmts
10799 A '|'-separated list of pixel format names, such as
10800 pix_fmts=yuv420p|monow|rgb24".
10801
10802 @end table
10803
10804 @subsection Examples
10805
10806 @itemize
10807 @item
10808 Force libavfilter to use a format different from @var{yuv420p} for the
10809 input to the vflip filter:
10810 @example
10811 noformat=pix_fmts=yuv420p,vflip
10812 @end example
10813
10814 @item
10815 Convert the input video to any of the formats not contained in the list:
10816 @example
10817 noformat=yuv420p|yuv444p|yuv410p
10818 @end example
10819 @end itemize
10820
10821 @section noise
10822
10823 Add noise on video input frame.
10824
10825 The filter accepts the following options:
10826
10827 @table @option
10828 @item all_seed
10829 @item c0_seed
10830 @item c1_seed
10831 @item c2_seed
10832 @item c3_seed
10833 Set noise seed for specific pixel component or all pixel components in case
10834 of @var{all_seed}. Default value is @code{123457}.
10835
10836 @item all_strength, alls
10837 @item c0_strength, c0s
10838 @item c1_strength, c1s
10839 @item c2_strength, c2s
10840 @item c3_strength, c3s
10841 Set noise strength for specific pixel component or all pixel components in case
10842 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
10843
10844 @item all_flags, allf
10845 @item c0_flags, c0f
10846 @item c1_flags, c1f
10847 @item c2_flags, c2f
10848 @item c3_flags, c3f
10849 Set pixel component flags or set flags for all components if @var{all_flags}.
10850 Available values for component flags are:
10851 @table @samp
10852 @item a
10853 averaged temporal noise (smoother)
10854 @item p
10855 mix random noise with a (semi)regular pattern
10856 @item t
10857 temporal noise (noise pattern changes between frames)
10858 @item u
10859 uniform noise (gaussian otherwise)
10860 @end table
10861 @end table
10862
10863 @subsection Examples
10864
10865 Add temporal and uniform noise to input video:
10866 @example
10867 noise=alls=20:allf=t+u
10868 @end example
10869
10870 @section normalize
10871
10872 Normalize RGB video (aka histogram stretching, contrast stretching).
10873 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
10874
10875 For each channel of each frame, the filter computes the input range and maps
10876 it linearly to the user-specified output range. The output range defaults
10877 to the full dynamic range from pure black to pure white.
10878
10879 Temporal smoothing can be used on the input range to reduce flickering (rapid
10880 changes in brightness) caused when small dark or bright objects enter or leave
10881 the scene. This is similar to the auto-exposure (automatic gain control) on a
10882 video camera, and, like a video camera, it may cause a period of over- or
10883 under-exposure of the video.
10884
10885 The R,G,B channels can be normalized independently, which may cause some
10886 color shifting, or linked together as a single channel, which prevents
10887 color shifting. Linked normalization preserves hue. Independent normalization
10888 does not, so it can be used to remove some color casts. Independent and linked
10889 normalization can be combined in any ratio.
10890
10891 The normalize filter accepts the following options:
10892
10893 @table @option
10894 @item blackpt
10895 @item whitept
10896 Colors which define the output range. The minimum input value is mapped to
10897 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
10898 The defaults are black and white respectively. Specifying white for
10899 @var{blackpt} and black for @var{whitept} will give color-inverted,
10900 normalized video. Shades of grey can be used to reduce the dynamic range
10901 (contrast). Specifying saturated colors here can create some interesting
10902 effects.
10903
10904 @item smoothing
10905 The number of previous frames to use for temporal smoothing. The input range
10906 of each channel is smoothed using a rolling average over the current frame
10907 and the @var{smoothing} previous frames. The default is 0 (no temporal
10908 smoothing).
10909
10910 @item independence
10911 Controls the ratio of independent (color shifting) channel normalization to
10912 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
10913 independent. Defaults to 1.0 (fully independent).
10914
10915 @item strength
10916 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
10917 expensive no-op. Defaults to 1.0 (full strength).
10918
10919 @end table
10920
10921 @subsection Examples
10922
10923 Stretch video contrast to use the full dynamic range, with no temporal
10924 smoothing; may flicker depending on the source content:
10925 @example
10926 normalize=blackpt=black:whitept=white:smoothing=0
10927 @end example
10928
10929 As above, but with 50 frames of temporal smoothing; flicker should be
10930 reduced, depending on the source content:
10931 @example
10932 normalize=blackpt=black:whitept=white:smoothing=50
10933 @end example
10934
10935 As above, but with hue-preserving linked channel normalization:
10936 @example
10937 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
10938 @end example
10939
10940 As above, but with half strength:
10941 @example
10942 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
10943 @end example
10944
10945 Map the darkest input color to red, the brightest input color to cyan:
10946 @example
10947 normalize=blackpt=red:whitept=cyan
10948 @end example
10949
10950 @section null
10951
10952 Pass the video source unchanged to the output.
10953
10954 @section ocr
10955 Optical Character Recognition
10956
10957 This filter uses Tesseract for optical character recognition.
10958
10959 It accepts the following options:
10960
10961 @table @option
10962 @item datapath
10963 Set datapath to tesseract data. Default is to use whatever was
10964 set at installation.
10965
10966 @item language
10967 Set language, default is "eng".
10968
10969 @item whitelist
10970 Set character whitelist.
10971
10972 @item blacklist
10973 Set character blacklist.
10974 @end table
10975
10976 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
10977
10978 @section ocv
10979
10980 Apply a video transform using libopencv.
10981
10982 To enable this filter, install the libopencv library and headers and
10983 configure FFmpeg with @code{--enable-libopencv}.
10984
10985 It accepts the following parameters:
10986
10987 @table @option
10988
10989 @item filter_name
10990 The name of the libopencv filter to apply.
10991
10992 @item filter_params
10993 The parameters to pass to the libopencv filter. If not specified, the default
10994 values are assumed.
10995
10996 @end table
10997
10998 Refer to the official libopencv documentation for more precise
10999 information:
11000 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
11001
11002 Several libopencv filters are supported; see the following subsections.
11003
11004 @anchor{dilate}
11005 @subsection dilate
11006
11007 Dilate an image by using a specific structuring element.
11008 It corresponds to the libopencv function @code{cvDilate}.
11009
11010 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
11011
11012 @var{struct_el} represents a structuring element, and has the syntax:
11013 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
11014
11015 @var{cols} and @var{rows} represent the number of columns and rows of
11016 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
11017 point, and @var{shape} the shape for the structuring element. @var{shape}
11018 must be "rect", "cross", "ellipse", or "custom".
11019
11020 If the value for @var{shape} is "custom", it must be followed by a
11021 string of the form "=@var{filename}". The file with name
11022 @var{filename} is assumed to represent a binary image, with each
11023 printable character corresponding to a bright pixel. When a custom
11024 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
11025 or columns and rows of the read file are assumed instead.
11026
11027 The default value for @var{struct_el} is "3x3+0x0/rect".
11028
11029 @var{nb_iterations} specifies the number of times the transform is
11030 applied to the image, and defaults to 1.
11031
11032 Some examples:
11033 @example
11034 # Use the default values
11035 ocv=dilate
11036
11037 # Dilate using a structuring element with a 5x5 cross, iterating two times
11038 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
11039
11040 # Read the shape from the file diamond.shape, iterating two times.
11041 # The file diamond.shape may contain a pattern of characters like this
11042 #   *
11043 #  ***
11044 # *****
11045 #  ***
11046 #   *
11047 # The specified columns and rows are ignored
11048 # but the anchor point coordinates are not
11049 ocv=dilate:0x0+2x2/custom=diamond.shape|2
11050 @end example
11051
11052 @subsection erode
11053
11054 Erode an image by using a specific structuring element.
11055 It corresponds to the libopencv function @code{cvErode}.
11056
11057 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
11058 with the same syntax and semantics as the @ref{dilate} filter.
11059
11060 @subsection smooth
11061
11062 Smooth the input video.
11063
11064 The filter takes the following parameters:
11065 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
11066
11067 @var{type} is the type of smooth filter to apply, and must be one of
11068 the following values: "blur", "blur_no_scale", "median", "gaussian",
11069 or "bilateral". The default value is "gaussian".
11070
11071 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
11072 depend on the smooth type. @var{param1} and
11073 @var{param2} accept integer positive values or 0. @var{param3} and
11074 @var{param4} accept floating point values.
11075
11076 The default value for @var{param1} is 3. The default value for the
11077 other parameters is 0.
11078
11079 These parameters correspond to the parameters assigned to the
11080 libopencv function @code{cvSmooth}.
11081
11082 @section oscilloscope
11083
11084 2D Video Oscilloscope.
11085
11086 Useful to measure spatial impulse, step responses, chroma delays, etc.
11087
11088 It accepts the following parameters:
11089
11090 @table @option
11091 @item x
11092 Set scope center x position.
11093
11094 @item y
11095 Set scope center y position.
11096
11097 @item s
11098 Set scope size, relative to frame diagonal.
11099
11100 @item t
11101 Set scope tilt/rotation.
11102
11103 @item o
11104 Set trace opacity.
11105
11106 @item tx
11107 Set trace center x position.
11108
11109 @item ty
11110 Set trace center y position.
11111
11112 @item tw
11113 Set trace width, relative to width of frame.
11114
11115 @item th
11116 Set trace height, relative to height of frame.
11117
11118 @item c
11119 Set which components to trace. By default it traces first three components.
11120
11121 @item g
11122 Draw trace grid. By default is enabled.
11123
11124 @item st
11125 Draw some statistics. By default is enabled.
11126
11127 @item sc
11128 Draw scope. By default is enabled.
11129 @end table
11130
11131 @subsection Examples
11132
11133 @itemize
11134 @item
11135 Inspect full first row of video frame.
11136 @example
11137 oscilloscope=x=0.5:y=0:s=1
11138 @end example
11139
11140 @item
11141 Inspect full last row of video frame.
11142 @example
11143 oscilloscope=x=0.5:y=1:s=1
11144 @end example
11145
11146 @item
11147 Inspect full 5th line of video frame of height 1080.
11148 @example
11149 oscilloscope=x=0.5:y=5/1080:s=1
11150 @end example
11151
11152 @item
11153 Inspect full last column of video frame.
11154 @example
11155 oscilloscope=x=1:y=0.5:s=1:t=1
11156 @end example
11157
11158 @end itemize
11159
11160 @anchor{overlay}
11161 @section overlay
11162
11163 Overlay one video on top of another.
11164
11165 It takes two inputs and has one output. The first input is the "main"
11166 video on which the second input is overlaid.
11167
11168 It accepts the following parameters:
11169
11170 A description of the accepted options follows.
11171
11172 @table @option
11173 @item x
11174 @item y
11175 Set the expression for the x and y coordinates of the overlaid video
11176 on the main video. Default value is "0" for both expressions. In case
11177 the expression is invalid, it is set to a huge value (meaning that the
11178 overlay will not be displayed within the output visible area).
11179
11180 @item eof_action
11181 See @ref{framesync}.
11182
11183 @item eval
11184 Set when the expressions for @option{x}, and @option{y} are evaluated.
11185
11186 It accepts the following values:
11187 @table @samp
11188 @item init
11189 only evaluate expressions once during the filter initialization or
11190 when a command is processed
11191
11192 @item frame
11193 evaluate expressions for each incoming frame
11194 @end table
11195
11196 Default value is @samp{frame}.
11197
11198 @item shortest
11199 See @ref{framesync}.
11200
11201 @item format
11202 Set the format for the output video.
11203
11204 It accepts the following values:
11205 @table @samp
11206 @item yuv420
11207 force YUV420 output
11208
11209 @item yuv422
11210 force YUV422 output
11211
11212 @item yuv444
11213 force YUV444 output
11214
11215 @item rgb
11216 force packed RGB output
11217
11218 @item gbrp
11219 force planar RGB output
11220
11221 @item auto
11222 automatically pick format
11223 @end table
11224
11225 Default value is @samp{yuv420}.
11226
11227 @item repeatlast
11228 See @ref{framesync}.
11229 @end table
11230
11231 The @option{x}, and @option{y} expressions can contain the following
11232 parameters.
11233
11234 @table @option
11235 @item main_w, W
11236 @item main_h, H
11237 The main input width and height.
11238
11239 @item overlay_w, w
11240 @item overlay_h, h
11241 The overlay input width and height.
11242
11243 @item x
11244 @item y
11245 The computed values for @var{x} and @var{y}. They are evaluated for
11246 each new frame.
11247
11248 @item hsub
11249 @item vsub
11250 horizontal and vertical chroma subsample values of the output
11251 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
11252 @var{vsub} is 1.
11253
11254 @item n
11255 the number of input frame, starting from 0
11256
11257 @item pos
11258 the position in the file of the input frame, NAN if unknown
11259
11260 @item t
11261 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
11262
11263 @end table
11264
11265 This filter also supports the @ref{framesync} options.
11266
11267 Note that the @var{n}, @var{pos}, @var{t} variables are available only
11268 when evaluation is done @emph{per frame}, and will evaluate to NAN
11269 when @option{eval} is set to @samp{init}.
11270
11271 Be aware that frames are taken from each input video in timestamp
11272 order, hence, if their initial timestamps differ, it is a good idea
11273 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
11274 have them begin in the same zero timestamp, as the example for
11275 the @var{movie} filter does.
11276
11277 You can chain together more overlays but you should test the
11278 efficiency of such approach.
11279
11280 @subsection Commands
11281
11282 This filter supports the following commands:
11283 @table @option
11284 @item x
11285 @item y
11286 Modify the x and y of the overlay input.
11287 The command accepts the same syntax of the corresponding option.
11288
11289 If the specified expression is not valid, it is kept at its current
11290 value.
11291 @end table
11292
11293 @subsection Examples
11294
11295 @itemize
11296 @item
11297 Draw the overlay at 10 pixels from the bottom right corner of the main
11298 video:
11299 @example
11300 overlay=main_w-overlay_w-10:main_h-overlay_h-10
11301 @end example
11302
11303 Using named options the example above becomes:
11304 @example
11305 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
11306 @end example
11307
11308 @item
11309 Insert a transparent PNG logo in the bottom left corner of the input,
11310 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
11311 @example
11312 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
11313 @end example
11314
11315 @item
11316 Insert 2 different transparent PNG logos (second logo on bottom
11317 right corner) using the @command{ffmpeg} tool:
11318 @example
11319 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
11320 @end example
11321
11322 @item
11323 Add a transparent color layer on top of the main video; @code{WxH}
11324 must specify the size of the main input to the overlay filter:
11325 @example
11326 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
11327 @end example
11328
11329 @item
11330 Play an original video and a filtered version (here with the deshake
11331 filter) side by side using the @command{ffplay} tool:
11332 @example
11333 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
11334 @end example
11335
11336 The above command is the same as:
11337 @example
11338 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
11339 @end example
11340
11341 @item
11342 Make a sliding overlay appearing from the left to the right top part of the
11343 screen starting since time 2:
11344 @example
11345 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
11346 @end example
11347
11348 @item
11349 Compose output by putting two input videos side to side:
11350 @example
11351 ffmpeg -i left.avi -i right.avi -filter_complex "
11352 nullsrc=size=200x100 [background];
11353 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
11354 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
11355 [background][left]       overlay=shortest=1       [background+left];
11356 [background+left][right] overlay=shortest=1:x=100 [left+right]
11357 "
11358 @end example
11359
11360 @item
11361 Mask 10-20 seconds of a video by applying the delogo filter to a section
11362 @example
11363 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
11364 -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]'
11365 masked.avi
11366 @end example
11367
11368 @item
11369 Chain several overlays in cascade:
11370 @example
11371 nullsrc=s=200x200 [bg];
11372 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
11373 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
11374 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
11375 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
11376 [in3] null,       [mid2] overlay=100:100 [out0]
11377 @end example
11378
11379 @end itemize
11380
11381 @section owdenoise
11382
11383 Apply Overcomplete Wavelet denoiser.
11384
11385 The filter accepts the following options:
11386
11387 @table @option
11388 @item depth
11389 Set depth.
11390
11391 Larger depth values will denoise lower frequency components more, but
11392 slow down filtering.
11393
11394 Must be an int in the range 8-16, default is @code{8}.
11395
11396 @item luma_strength, ls
11397 Set luma strength.
11398
11399 Must be a double value in the range 0-1000, default is @code{1.0}.
11400
11401 @item chroma_strength, cs
11402 Set chroma strength.
11403
11404 Must be a double value in the range 0-1000, default is @code{1.0}.
11405 @end table
11406
11407 @anchor{pad}
11408 @section pad
11409
11410 Add paddings to the input image, and place the original input at the
11411 provided @var{x}, @var{y} coordinates.
11412
11413 It accepts the following parameters:
11414
11415 @table @option
11416 @item width, w
11417 @item height, h
11418 Specify an expression for the size of the output image with the
11419 paddings added. If the value for @var{width} or @var{height} is 0, the
11420 corresponding input size is used for the output.
11421
11422 The @var{width} expression can reference the value set by the
11423 @var{height} expression, and vice versa.
11424
11425 The default value of @var{width} and @var{height} is 0.
11426
11427 @item x
11428 @item y
11429 Specify the offsets to place the input image at within the padded area,
11430 with respect to the top/left border of the output image.
11431
11432 The @var{x} expression can reference the value set by the @var{y}
11433 expression, and vice versa.
11434
11435 The default value of @var{x} and @var{y} is 0.
11436
11437 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
11438 so the input image is centered on the padded area.
11439
11440 @item color
11441 Specify the color of the padded area. For the syntax of this option,
11442 check the "Color" section in the ffmpeg-utils manual.
11443
11444 The default value of @var{color} is "black".
11445
11446 @item eval
11447 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
11448
11449 It accepts the following values:
11450
11451 @table @samp
11452 @item init
11453 Only evaluate expressions once during the filter initialization or when
11454 a command is processed.
11455
11456 @item frame
11457 Evaluate expressions for each incoming frame.
11458
11459 @end table
11460
11461 Default value is @samp{init}.
11462
11463 @item aspect
11464 Pad to aspect instead to a resolution.
11465
11466 @end table
11467
11468 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
11469 options are expressions containing the following constants:
11470
11471 @table @option
11472 @item in_w
11473 @item in_h
11474 The input video width and height.
11475
11476 @item iw
11477 @item ih
11478 These are the same as @var{in_w} and @var{in_h}.
11479
11480 @item out_w
11481 @item out_h
11482 The output width and height (the size of the padded area), as
11483 specified by the @var{width} and @var{height} expressions.
11484
11485 @item ow
11486 @item oh
11487 These are the same as @var{out_w} and @var{out_h}.
11488
11489 @item x
11490 @item y
11491 The x and y offsets as specified by the @var{x} and @var{y}
11492 expressions, or NAN if not yet specified.
11493
11494 @item a
11495 same as @var{iw} / @var{ih}
11496
11497 @item sar
11498 input sample aspect ratio
11499
11500 @item dar
11501 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
11502
11503 @item hsub
11504 @item vsub
11505 The horizontal and vertical chroma subsample values. For example for the
11506 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11507 @end table
11508
11509 @subsection Examples
11510
11511 @itemize
11512 @item
11513 Add paddings with the color "violet" to the input video. The output video
11514 size is 640x480, and the top-left corner of the input video is placed at
11515 column 0, row 40
11516 @example
11517 pad=640:480:0:40:violet
11518 @end example
11519
11520 The example above is equivalent to the following command:
11521 @example
11522 pad=width=640:height=480:x=0:y=40:color=violet
11523 @end example
11524
11525 @item
11526 Pad the input to get an output with dimensions increased by 3/2,
11527 and put the input video at the center of the padded area:
11528 @example
11529 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
11530 @end example
11531
11532 @item
11533 Pad the input to get a squared output with size equal to the maximum
11534 value between the input width and height, and put the input video at
11535 the center of the padded area:
11536 @example
11537 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
11538 @end example
11539
11540 @item
11541 Pad the input to get a final w/h ratio of 16:9:
11542 @example
11543 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
11544 @end example
11545
11546 @item
11547 In case of anamorphic video, in order to set the output display aspect
11548 correctly, it is necessary to use @var{sar} in the expression,
11549 according to the relation:
11550 @example
11551 (ih * X / ih) * sar = output_dar
11552 X = output_dar / sar
11553 @end example
11554
11555 Thus the previous example needs to be modified to:
11556 @example
11557 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
11558 @end example
11559
11560 @item
11561 Double the output size and put the input video in the bottom-right
11562 corner of the output padded area:
11563 @example
11564 pad="2*iw:2*ih:ow-iw:oh-ih"
11565 @end example
11566 @end itemize
11567
11568 @anchor{palettegen}
11569 @section palettegen
11570
11571 Generate one palette for a whole video stream.
11572
11573 It accepts the following options:
11574
11575 @table @option
11576 @item max_colors
11577 Set the maximum number of colors to quantize in the palette.
11578 Note: the palette will still contain 256 colors; the unused palette entries
11579 will be black.
11580
11581 @item reserve_transparent
11582 Create a palette of 255 colors maximum and reserve the last one for
11583 transparency. Reserving the transparency color is useful for GIF optimization.
11584 If not set, the maximum of colors in the palette will be 256. You probably want
11585 to disable this option for a standalone image.
11586 Set by default.
11587
11588 @item transparency_color
11589 Set the color that will be used as background for transparency.
11590
11591 @item stats_mode
11592 Set statistics mode.
11593
11594 It accepts the following values:
11595 @table @samp
11596 @item full
11597 Compute full frame histograms.
11598 @item diff
11599 Compute histograms only for the part that differs from previous frame. This
11600 might be relevant to give more importance to the moving part of your input if
11601 the background is static.
11602 @item single
11603 Compute new histogram for each frame.
11604 @end table
11605
11606 Default value is @var{full}.
11607 @end table
11608
11609 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
11610 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
11611 color quantization of the palette. This information is also visible at
11612 @var{info} logging level.
11613
11614 @subsection Examples
11615
11616 @itemize
11617 @item
11618 Generate a representative palette of a given video using @command{ffmpeg}:
11619 @example
11620 ffmpeg -i input.mkv -vf palettegen palette.png
11621 @end example
11622 @end itemize
11623
11624 @section paletteuse
11625
11626 Use a palette to downsample an input video stream.
11627
11628 The filter takes two inputs: one video stream and a palette. The palette must
11629 be a 256 pixels image.
11630
11631 It accepts the following options:
11632
11633 @table @option
11634 @item dither
11635 Select dithering mode. Available algorithms are:
11636 @table @samp
11637 @item bayer
11638 Ordered 8x8 bayer dithering (deterministic)
11639 @item heckbert
11640 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
11641 Note: this dithering is sometimes considered "wrong" and is included as a
11642 reference.
11643 @item floyd_steinberg
11644 Floyd and Steingberg dithering (error diffusion)
11645 @item sierra2
11646 Frankie Sierra dithering v2 (error diffusion)
11647 @item sierra2_4a
11648 Frankie Sierra dithering v2 "Lite" (error diffusion)
11649 @end table
11650
11651 Default is @var{sierra2_4a}.
11652
11653 @item bayer_scale
11654 When @var{bayer} dithering is selected, this option defines the scale of the
11655 pattern (how much the crosshatch pattern is visible). A low value means more
11656 visible pattern for less banding, and higher value means less visible pattern
11657 at the cost of more banding.
11658
11659 The option must be an integer value in the range [0,5]. Default is @var{2}.
11660
11661 @item diff_mode
11662 If set, define the zone to process
11663
11664 @table @samp
11665 @item rectangle
11666 Only the changing rectangle will be reprocessed. This is similar to GIF
11667 cropping/offsetting compression mechanism. This option can be useful for speed
11668 if only a part of the image is changing, and has use cases such as limiting the
11669 scope of the error diffusal @option{dither} to the rectangle that bounds the
11670 moving scene (it leads to more deterministic output if the scene doesn't change
11671 much, and as a result less moving noise and better GIF compression).
11672 @end table
11673
11674 Default is @var{none}.
11675
11676 @item new
11677 Take new palette for each output frame.
11678
11679 @item alpha_threshold
11680 Sets the alpha threshold for transparency. Alpha values above this threshold
11681 will be treated as completely opaque, and values below this threshold will be
11682 treated as completely transparent.
11683
11684 The option must be an integer value in the range [0,255]. Default is @var{128}.
11685 @end table
11686
11687 @subsection Examples
11688
11689 @itemize
11690 @item
11691 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
11692 using @command{ffmpeg}:
11693 @example
11694 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
11695 @end example
11696 @end itemize
11697
11698 @section perspective
11699
11700 Correct perspective of video not recorded perpendicular to the screen.
11701
11702 A description of the accepted parameters follows.
11703
11704 @table @option
11705 @item x0
11706 @item y0
11707 @item x1
11708 @item y1
11709 @item x2
11710 @item y2
11711 @item x3
11712 @item y3
11713 Set coordinates expression for top left, top right, bottom left and bottom right corners.
11714 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
11715 If the @code{sense} option is set to @code{source}, then the specified points will be sent
11716 to the corners of the destination. If the @code{sense} option is set to @code{destination},
11717 then the corners of the source will be sent to the specified coordinates.
11718
11719 The expressions can use the following variables:
11720
11721 @table @option
11722 @item W
11723 @item H
11724 the width and height of video frame.
11725 @item in
11726 Input frame count.
11727 @item on
11728 Output frame count.
11729 @end table
11730
11731 @item interpolation
11732 Set interpolation for perspective correction.
11733
11734 It accepts the following values:
11735 @table @samp
11736 @item linear
11737 @item cubic
11738 @end table
11739
11740 Default value is @samp{linear}.
11741
11742 @item sense
11743 Set interpretation of coordinate options.
11744
11745 It accepts the following values:
11746 @table @samp
11747 @item 0, source
11748
11749 Send point in the source specified by the given coordinates to
11750 the corners of the destination.
11751
11752 @item 1, destination
11753
11754 Send the corners of the source to the point in the destination specified
11755 by the given coordinates.
11756
11757 Default value is @samp{source}.
11758 @end table
11759
11760 @item eval
11761 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
11762
11763 It accepts the following values:
11764 @table @samp
11765 @item init
11766 only evaluate expressions once during the filter initialization or
11767 when a command is processed
11768
11769 @item frame
11770 evaluate expressions for each incoming frame
11771 @end table
11772
11773 Default value is @samp{init}.
11774 @end table
11775
11776 @section phase
11777
11778 Delay interlaced video by one field time so that the field order changes.
11779
11780 The intended use is to fix PAL movies that have been captured with the
11781 opposite field order to the film-to-video transfer.
11782
11783 A description of the accepted parameters follows.
11784
11785 @table @option
11786 @item mode
11787 Set phase mode.
11788
11789 It accepts the following values:
11790 @table @samp
11791 @item t
11792 Capture field order top-first, transfer bottom-first.
11793 Filter will delay the bottom field.
11794
11795 @item b
11796 Capture field order bottom-first, transfer top-first.
11797 Filter will delay the top field.
11798
11799 @item p
11800 Capture and transfer with the same field order. This mode only exists
11801 for the documentation of the other options to refer to, but if you
11802 actually select it, the filter will faithfully do nothing.
11803
11804 @item a
11805 Capture field order determined automatically by field flags, transfer
11806 opposite.
11807 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
11808 basis using field flags. If no field information is available,
11809 then this works just like @samp{u}.
11810
11811 @item u
11812 Capture unknown or varying, transfer opposite.
11813 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
11814 analyzing the images and selecting the alternative that produces best
11815 match between the fields.
11816
11817 @item T
11818 Capture top-first, transfer unknown or varying.
11819 Filter selects among @samp{t} and @samp{p} using image analysis.
11820
11821 @item B
11822 Capture bottom-first, transfer unknown or varying.
11823 Filter selects among @samp{b} and @samp{p} using image analysis.
11824
11825 @item A
11826 Capture determined by field flags, transfer unknown or varying.
11827 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
11828 image analysis. If no field information is available, then this works just
11829 like @samp{U}. This is the default mode.
11830
11831 @item U
11832 Both capture and transfer unknown or varying.
11833 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
11834 @end table
11835 @end table
11836
11837 @section pixdesctest
11838
11839 Pixel format descriptor test filter, mainly useful for internal
11840 testing. The output video should be equal to the input video.
11841
11842 For example:
11843 @example
11844 format=monow, pixdesctest
11845 @end example
11846
11847 can be used to test the monowhite pixel format descriptor definition.
11848
11849 @section pixscope
11850
11851 Display sample values of color channels. Mainly useful for checking color
11852 and levels. Minimum supported resolution is 640x480.
11853
11854 The filters accept the following options:
11855
11856 @table @option
11857 @item x
11858 Set scope X position, relative offset on X axis.
11859
11860 @item y
11861 Set scope Y position, relative offset on Y axis.
11862
11863 @item w
11864 Set scope width.
11865
11866 @item h
11867 Set scope height.
11868
11869 @item o
11870 Set window opacity. This window also holds statistics about pixel area.
11871
11872 @item wx
11873 Set window X position, relative offset on X axis.
11874
11875 @item wy
11876 Set window Y position, relative offset on Y axis.
11877 @end table
11878
11879 @section pp
11880
11881 Enable the specified chain of postprocessing subfilters using libpostproc. This
11882 library should be automatically selected with a GPL build (@code{--enable-gpl}).
11883 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
11884 Each subfilter and some options have a short and a long name that can be used
11885 interchangeably, i.e. dr/dering are the same.
11886
11887 The filters accept the following options:
11888
11889 @table @option
11890 @item subfilters
11891 Set postprocessing subfilters string.
11892 @end table
11893
11894 All subfilters share common options to determine their scope:
11895
11896 @table @option
11897 @item a/autoq
11898 Honor the quality commands for this subfilter.
11899
11900 @item c/chrom
11901 Do chrominance filtering, too (default).
11902
11903 @item y/nochrom
11904 Do luminance filtering only (no chrominance).
11905
11906 @item n/noluma
11907 Do chrominance filtering only (no luminance).
11908 @end table
11909
11910 These options can be appended after the subfilter name, separated by a '|'.
11911
11912 Available subfilters are:
11913
11914 @table @option
11915 @item hb/hdeblock[|difference[|flatness]]
11916 Horizontal deblocking filter
11917 @table @option
11918 @item difference
11919 Difference factor where higher values mean more deblocking (default: @code{32}).
11920 @item flatness
11921 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11922 @end table
11923
11924 @item vb/vdeblock[|difference[|flatness]]
11925 Vertical deblocking filter
11926 @table @option
11927 @item difference
11928 Difference factor where higher values mean more deblocking (default: @code{32}).
11929 @item flatness
11930 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11931 @end table
11932
11933 @item ha/hadeblock[|difference[|flatness]]
11934 Accurate horizontal deblocking filter
11935 @table @option
11936 @item difference
11937 Difference factor where higher values mean more deblocking (default: @code{32}).
11938 @item flatness
11939 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11940 @end table
11941
11942 @item va/vadeblock[|difference[|flatness]]
11943 Accurate vertical deblocking filter
11944 @table @option
11945 @item difference
11946 Difference factor where higher values mean more deblocking (default: @code{32}).
11947 @item flatness
11948 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11949 @end table
11950 @end table
11951
11952 The horizontal and vertical deblocking filters share the difference and
11953 flatness values so you cannot set different horizontal and vertical
11954 thresholds.
11955
11956 @table @option
11957 @item h1/x1hdeblock
11958 Experimental horizontal deblocking filter
11959
11960 @item v1/x1vdeblock
11961 Experimental vertical deblocking filter
11962
11963 @item dr/dering
11964 Deringing filter
11965
11966 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
11967 @table @option
11968 @item threshold1
11969 larger -> stronger filtering
11970 @item threshold2
11971 larger -> stronger filtering
11972 @item threshold3
11973 larger -> stronger filtering
11974 @end table
11975
11976 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
11977 @table @option
11978 @item f/fullyrange
11979 Stretch luminance to @code{0-255}.
11980 @end table
11981
11982 @item lb/linblenddeint
11983 Linear blend deinterlacing filter that deinterlaces the given block by
11984 filtering all lines with a @code{(1 2 1)} filter.
11985
11986 @item li/linipoldeint
11987 Linear interpolating deinterlacing filter that deinterlaces the given block by
11988 linearly interpolating every second line.
11989
11990 @item ci/cubicipoldeint
11991 Cubic interpolating deinterlacing filter deinterlaces the given block by
11992 cubically interpolating every second line.
11993
11994 @item md/mediandeint
11995 Median deinterlacing filter that deinterlaces the given block by applying a
11996 median filter to every second line.
11997
11998 @item fd/ffmpegdeint
11999 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
12000 second line with a @code{(-1 4 2 4 -1)} filter.
12001
12002 @item l5/lowpass5
12003 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
12004 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
12005
12006 @item fq/forceQuant[|quantizer]
12007 Overrides the quantizer table from the input with the constant quantizer you
12008 specify.
12009 @table @option
12010 @item quantizer
12011 Quantizer to use
12012 @end table
12013
12014 @item de/default
12015 Default pp filter combination (@code{hb|a,vb|a,dr|a})
12016
12017 @item fa/fast
12018 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
12019
12020 @item ac
12021 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
12022 @end table
12023
12024 @subsection Examples
12025
12026 @itemize
12027 @item
12028 Apply horizontal and vertical deblocking, deringing and automatic
12029 brightness/contrast:
12030 @example
12031 pp=hb/vb/dr/al
12032 @end example
12033
12034 @item
12035 Apply default filters without brightness/contrast correction:
12036 @example
12037 pp=de/-al
12038 @end example
12039
12040 @item
12041 Apply default filters and temporal denoiser:
12042 @example
12043 pp=default/tmpnoise|1|2|3
12044 @end example
12045
12046 @item
12047 Apply deblocking on luminance only, and switch vertical deblocking on or off
12048 automatically depending on available CPU time:
12049 @example
12050 pp=hb|y/vb|a
12051 @end example
12052 @end itemize
12053
12054 @section pp7
12055 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
12056 similar to spp = 6 with 7 point DCT, where only the center sample is
12057 used after IDCT.
12058
12059 The filter accepts the following options:
12060
12061 @table @option
12062 @item qp
12063 Force a constant quantization parameter. It accepts an integer in range
12064 0 to 63. If not set, the filter will use the QP from the video stream
12065 (if available).
12066
12067 @item mode
12068 Set thresholding mode. Available modes are:
12069
12070 @table @samp
12071 @item hard
12072 Set hard thresholding.
12073 @item soft
12074 Set soft thresholding (better de-ringing effect, but likely blurrier).
12075 @item medium
12076 Set medium thresholding (good results, default).
12077 @end table
12078 @end table
12079
12080 @section premultiply
12081 Apply alpha premultiply effect to input video stream using first plane
12082 of second stream as alpha.
12083
12084 Both streams must have same dimensions and same pixel format.
12085
12086 The filter accepts the following option:
12087
12088 @table @option
12089 @item planes
12090 Set which planes will be processed, unprocessed planes will be copied.
12091 By default value 0xf, all planes will be processed.
12092
12093 @item inplace
12094 Do not require 2nd input for processing, instead use alpha plane from input stream.
12095 @end table
12096
12097 @section prewitt
12098 Apply prewitt operator to input video stream.
12099
12100 The filter accepts the following option:
12101
12102 @table @option
12103 @item planes
12104 Set which planes will be processed, unprocessed planes will be copied.
12105 By default value 0xf, all planes will be processed.
12106
12107 @item scale
12108 Set value which will be multiplied with filtered result.
12109
12110 @item delta
12111 Set value which will be added to filtered result.
12112 @end table
12113
12114 @section pseudocolor
12115
12116 Alter frame colors in video with pseudocolors.
12117
12118 This filter accept the following options:
12119
12120 @table @option
12121 @item c0
12122 set pixel first component expression
12123
12124 @item c1
12125 set pixel second component expression
12126
12127 @item c2
12128 set pixel third component expression
12129
12130 @item c3
12131 set pixel fourth component expression, corresponds to the alpha component
12132
12133 @item i
12134 set component to use as base for altering colors
12135 @end table
12136
12137 Each of them specifies the expression to use for computing the lookup table for
12138 the corresponding pixel component values.
12139
12140 The expressions can contain the following constants and functions:
12141
12142 @table @option
12143 @item w
12144 @item h
12145 The input width and height.
12146
12147 @item val
12148 The input value for the pixel component.
12149
12150 @item ymin, umin, vmin, amin
12151 The minimum allowed component value.
12152
12153 @item ymax, umax, vmax, amax
12154 The maximum allowed component value.
12155 @end table
12156
12157 All expressions default to "val".
12158
12159 @subsection Examples
12160
12161 @itemize
12162 @item
12163 Change too high luma values to gradient:
12164 @example
12165 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'"
12166 @end example
12167 @end itemize
12168
12169 @section psnr
12170
12171 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
12172 Ratio) between two input videos.
12173
12174 This filter takes in input two input videos, the first input is
12175 considered the "main" source and is passed unchanged to the
12176 output. The second input is used as a "reference" video for computing
12177 the PSNR.
12178
12179 Both video inputs must have the same resolution and pixel format for
12180 this filter to work correctly. Also it assumes that both inputs
12181 have the same number of frames, which are compared one by one.
12182
12183 The obtained average PSNR is printed through the logging system.
12184
12185 The filter stores the accumulated MSE (mean squared error) of each
12186 frame, and at the end of the processing it is averaged across all frames
12187 equally, and the following formula is applied to obtain the PSNR:
12188
12189 @example
12190 PSNR = 10*log10(MAX^2/MSE)
12191 @end example
12192
12193 Where MAX is the average of the maximum values of each component of the
12194 image.
12195
12196 The description of the accepted parameters follows.
12197
12198 @table @option
12199 @item stats_file, f
12200 If specified the filter will use the named file to save the PSNR of
12201 each individual frame. When filename equals "-" the data is sent to
12202 standard output.
12203
12204 @item stats_version
12205 Specifies which version of the stats file format to use. Details of
12206 each format are written below.
12207 Default value is 1.
12208
12209 @item stats_add_max
12210 Determines whether the max value is output to the stats log.
12211 Default value is 0.
12212 Requires stats_version >= 2. If this is set and stats_version < 2,
12213 the filter will return an error.
12214 @end table
12215
12216 This filter also supports the @ref{framesync} options.
12217
12218 The file printed if @var{stats_file} is selected, contains a sequence of
12219 key/value pairs of the form @var{key}:@var{value} for each compared
12220 couple of frames.
12221
12222 If a @var{stats_version} greater than 1 is specified, a header line precedes
12223 the list of per-frame-pair stats, with key value pairs following the frame
12224 format with the following parameters:
12225
12226 @table @option
12227 @item psnr_log_version
12228 The version of the log file format. Will match @var{stats_version}.
12229
12230 @item fields
12231 A comma separated list of the per-frame-pair parameters included in
12232 the log.
12233 @end table
12234
12235 A description of each shown per-frame-pair parameter follows:
12236
12237 @table @option
12238 @item n
12239 sequential number of the input frame, starting from 1
12240
12241 @item mse_avg
12242 Mean Square Error pixel-by-pixel average difference of the compared
12243 frames, averaged over all the image components.
12244
12245 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
12246 Mean Square Error pixel-by-pixel average difference of the compared
12247 frames for the component specified by the suffix.
12248
12249 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
12250 Peak Signal to Noise ratio of the compared frames for the component
12251 specified by the suffix.
12252
12253 @item max_avg, max_y, max_u, max_v
12254 Maximum allowed value for each channel, and average over all
12255 channels.
12256 @end table
12257
12258 For example:
12259 @example
12260 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12261 [main][ref] psnr="stats_file=stats.log" [out]
12262 @end example
12263
12264 On this example the input file being processed is compared with the
12265 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
12266 is stored in @file{stats.log}.
12267
12268 @anchor{pullup}
12269 @section pullup
12270
12271 Pulldown reversal (inverse telecine) filter, capable of handling mixed
12272 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
12273 content.
12274
12275 The pullup filter is designed to take advantage of future context in making
12276 its decisions. This filter is stateless in the sense that it does not lock
12277 onto a pattern to follow, but it instead looks forward to the following
12278 fields in order to identify matches and rebuild progressive frames.
12279
12280 To produce content with an even framerate, insert the fps filter after
12281 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
12282 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
12283
12284 The filter accepts the following options:
12285
12286 @table @option
12287 @item jl
12288 @item jr
12289 @item jt
12290 @item jb
12291 These options set the amount of "junk" to ignore at the left, right, top, and
12292 bottom of the image, respectively. Left and right are in units of 8 pixels,
12293 while top and bottom are in units of 2 lines.
12294 The default is 8 pixels on each side.
12295
12296 @item sb
12297 Set the strict breaks. Setting this option to 1 will reduce the chances of
12298 filter generating an occasional mismatched frame, but it may also cause an
12299 excessive number of frames to be dropped during high motion sequences.
12300 Conversely, setting it to -1 will make filter match fields more easily.
12301 This may help processing of video where there is slight blurring between
12302 the fields, but may also cause there to be interlaced frames in the output.
12303 Default value is @code{0}.
12304
12305 @item mp
12306 Set the metric plane to use. It accepts the following values:
12307 @table @samp
12308 @item l
12309 Use luma plane.
12310
12311 @item u
12312 Use chroma blue plane.
12313
12314 @item v
12315 Use chroma red plane.
12316 @end table
12317
12318 This option may be set to use chroma plane instead of the default luma plane
12319 for doing filter's computations. This may improve accuracy on very clean
12320 source material, but more likely will decrease accuracy, especially if there
12321 is chroma noise (rainbow effect) or any grayscale video.
12322 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
12323 load and make pullup usable in realtime on slow machines.
12324 @end table
12325
12326 For best results (without duplicated frames in the output file) it is
12327 necessary to change the output frame rate. For example, to inverse
12328 telecine NTSC input:
12329 @example
12330 ffmpeg -i input -vf pullup -r 24000/1001 ...
12331 @end example
12332
12333 @section qp
12334
12335 Change video quantization parameters (QP).
12336
12337 The filter accepts the following option:
12338
12339 @table @option
12340 @item qp
12341 Set expression for quantization parameter.
12342 @end table
12343
12344 The expression is evaluated through the eval API and can contain, among others,
12345 the following constants:
12346
12347 @table @var
12348 @item known
12349 1 if index is not 129, 0 otherwise.
12350
12351 @item qp
12352 Sequential index starting from -129 to 128.
12353 @end table
12354
12355 @subsection Examples
12356
12357 @itemize
12358 @item
12359 Some equation like:
12360 @example
12361 qp=2+2*sin(PI*qp)
12362 @end example
12363 @end itemize
12364
12365 @section random
12366
12367 Flush video frames from internal cache of frames into a random order.
12368 No frame is discarded.
12369 Inspired by @ref{frei0r} nervous filter.
12370
12371 @table @option
12372 @item frames
12373 Set size in number of frames of internal cache, in range from @code{2} to
12374 @code{512}. Default is @code{30}.
12375
12376 @item seed
12377 Set seed for random number generator, must be an integer included between
12378 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
12379 less than @code{0}, the filter will try to use a good random seed on a
12380 best effort basis.
12381 @end table
12382
12383 @section readeia608
12384
12385 Read closed captioning (EIA-608) information from the top lines of a video frame.
12386
12387 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
12388 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
12389 with EIA-608 data (starting from 0). A description of each metadata value follows:
12390
12391 @table @option
12392 @item lavfi.readeia608.X.cc
12393 The two bytes stored as EIA-608 data (printed in hexadecimal).
12394
12395 @item lavfi.readeia608.X.line
12396 The number of the line on which the EIA-608 data was identified and read.
12397 @end table
12398
12399 This filter accepts the following options:
12400
12401 @table @option
12402 @item scan_min
12403 Set the line to start scanning for EIA-608 data. Default is @code{0}.
12404
12405 @item scan_max
12406 Set the line to end scanning for EIA-608 data. Default is @code{29}.
12407
12408 @item mac
12409 Set minimal acceptable amplitude change for sync codes detection.
12410 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
12411
12412 @item spw
12413 Set the ratio of width reserved for sync code detection.
12414 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
12415
12416 @item mhd
12417 Set the max peaks height difference for sync code detection.
12418 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
12419
12420 @item mpd
12421 Set max peaks period difference for sync code detection.
12422 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
12423
12424 @item msd
12425 Set the first two max start code bits differences.
12426 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
12427
12428 @item bhd
12429 Set the minimum ratio of bits height compared to 3rd start code bit.
12430 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
12431
12432 @item th_w
12433 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
12434
12435 @item th_b
12436 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
12437
12438 @item chp
12439 Enable checking the parity bit. In the event of a parity error, the filter will output
12440 @code{0x00} for that character. Default is false.
12441 @end table
12442
12443 @subsection Examples
12444
12445 @itemize
12446 @item
12447 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
12448 @example
12449 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
12450 @end example
12451 @end itemize
12452
12453 @section readvitc
12454
12455 Read vertical interval timecode (VITC) information from the top lines of a
12456 video frame.
12457
12458 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
12459 timecode value, if a valid timecode has been detected. Further metadata key
12460 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
12461 timecode data has been found or not.
12462
12463 This filter accepts the following options:
12464
12465 @table @option
12466 @item scan_max
12467 Set the maximum number of lines to scan for VITC data. If the value is set to
12468 @code{-1} the full video frame is scanned. Default is @code{45}.
12469
12470 @item thr_b
12471 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
12472 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
12473
12474 @item thr_w
12475 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
12476 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
12477 @end table
12478
12479 @subsection Examples
12480
12481 @itemize
12482 @item
12483 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
12484 draw @code{--:--:--:--} as a placeholder:
12485 @example
12486 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
12487 @end example
12488 @end itemize
12489
12490 @section remap
12491
12492 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
12493
12494 Destination pixel at position (X, Y) will be picked from source (x, y) position
12495 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
12496 value for pixel will be used for destination pixel.
12497
12498 Xmap and Ymap input video streams must be of same dimensions. Output video stream
12499 will have Xmap/Ymap video stream dimensions.
12500 Xmap and Ymap input video streams are 16bit depth, single channel.
12501
12502 @section removegrain
12503
12504 The removegrain filter is a spatial denoiser for progressive video.
12505
12506 @table @option
12507 @item m0
12508 Set mode for the first plane.
12509
12510 @item m1
12511 Set mode for the second plane.
12512
12513 @item m2
12514 Set mode for the third plane.
12515
12516 @item m3
12517 Set mode for the fourth plane.
12518 @end table
12519
12520 Range of mode is from 0 to 24. Description of each mode follows:
12521
12522 @table @var
12523 @item 0
12524 Leave input plane unchanged. Default.
12525
12526 @item 1
12527 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
12528
12529 @item 2
12530 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
12531
12532 @item 3
12533 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
12534
12535 @item 4
12536 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
12537 This is equivalent to a median filter.
12538
12539 @item 5
12540 Line-sensitive clipping giving the minimal change.
12541
12542 @item 6
12543 Line-sensitive clipping, intermediate.
12544
12545 @item 7
12546 Line-sensitive clipping, intermediate.
12547
12548 @item 8
12549 Line-sensitive clipping, intermediate.
12550
12551 @item 9
12552 Line-sensitive clipping on a line where the neighbours pixels are the closest.
12553
12554 @item 10
12555 Replaces the target pixel with the closest neighbour.
12556
12557 @item 11
12558 [1 2 1] horizontal and vertical kernel blur.
12559
12560 @item 12
12561 Same as mode 11.
12562
12563 @item 13
12564 Bob mode, interpolates top field from the line where the neighbours
12565 pixels are the closest.
12566
12567 @item 14
12568 Bob mode, interpolates bottom field from the line where the neighbours
12569 pixels are the closest.
12570
12571 @item 15
12572 Bob mode, interpolates top field. Same as 13 but with a more complicated
12573 interpolation formula.
12574
12575 @item 16
12576 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
12577 interpolation formula.
12578
12579 @item 17
12580 Clips the pixel with the minimum and maximum of respectively the maximum and
12581 minimum of each pair of opposite neighbour pixels.
12582
12583 @item 18
12584 Line-sensitive clipping using opposite neighbours whose greatest distance from
12585 the current pixel is minimal.
12586
12587 @item 19
12588 Replaces the pixel with the average of its 8 neighbours.
12589
12590 @item 20
12591 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
12592
12593 @item 21
12594 Clips pixels using the averages of opposite neighbour.
12595
12596 @item 22
12597 Same as mode 21 but simpler and faster.
12598
12599 @item 23
12600 Small edge and halo removal, but reputed useless.
12601
12602 @item 24
12603 Similar as 23.
12604 @end table
12605
12606 @section removelogo
12607
12608 Suppress a TV station logo, using an image file to determine which
12609 pixels comprise the logo. It works by filling in the pixels that
12610 comprise the logo with neighboring pixels.
12611
12612 The filter accepts the following options:
12613
12614 @table @option
12615 @item filename, f
12616 Set the filter bitmap file, which can be any image format supported by
12617 libavformat. The width and height of the image file must match those of the
12618 video stream being processed.
12619 @end table
12620
12621 Pixels in the provided bitmap image with a value of zero are not
12622 considered part of the logo, non-zero pixels are considered part of
12623 the logo. If you use white (255) for the logo and black (0) for the
12624 rest, you will be safe. For making the filter bitmap, it is
12625 recommended to take a screen capture of a black frame with the logo
12626 visible, and then using a threshold filter followed by the erode
12627 filter once or twice.
12628
12629 If needed, little splotches can be fixed manually. Remember that if
12630 logo pixels are not covered, the filter quality will be much
12631 reduced. Marking too many pixels as part of the logo does not hurt as
12632 much, but it will increase the amount of blurring needed to cover over
12633 the image and will destroy more information than necessary, and extra
12634 pixels will slow things down on a large logo.
12635
12636 @section repeatfields
12637
12638 This filter uses the repeat_field flag from the Video ES headers and hard repeats
12639 fields based on its value.
12640
12641 @section reverse
12642
12643 Reverse a video clip.
12644
12645 Warning: This filter requires memory to buffer the entire clip, so trimming
12646 is suggested.
12647
12648 @subsection Examples
12649
12650 @itemize
12651 @item
12652 Take the first 5 seconds of a clip, and reverse it.
12653 @example
12654 trim=end=5,reverse
12655 @end example
12656 @end itemize
12657
12658 @section roberts
12659 Apply roberts cross operator to input video stream.
12660
12661 The filter accepts the following option:
12662
12663 @table @option
12664 @item planes
12665 Set which planes will be processed, unprocessed planes will be copied.
12666 By default value 0xf, all planes will be processed.
12667
12668 @item scale
12669 Set value which will be multiplied with filtered result.
12670
12671 @item delta
12672 Set value which will be added to filtered result.
12673 @end table
12674
12675 @section rotate
12676
12677 Rotate video by an arbitrary angle expressed in radians.
12678
12679 The filter accepts the following options:
12680
12681 A description of the optional parameters follows.
12682 @table @option
12683 @item angle, a
12684 Set an expression for the angle by which to rotate the input video
12685 clockwise, expressed as a number of radians. A negative value will
12686 result in a counter-clockwise rotation. By default it is set to "0".
12687
12688 This expression is evaluated for each frame.
12689
12690 @item out_w, ow
12691 Set the output width expression, default value is "iw".
12692 This expression is evaluated just once during configuration.
12693
12694 @item out_h, oh
12695 Set the output height expression, default value is "ih".
12696 This expression is evaluated just once during configuration.
12697
12698 @item bilinear
12699 Enable bilinear interpolation if set to 1, a value of 0 disables
12700 it. Default value is 1.
12701
12702 @item fillcolor, c
12703 Set the color used to fill the output area not covered by the rotated
12704 image. For the general syntax of this option, check the "Color" section in the
12705 ffmpeg-utils manual. If the special value "none" is selected then no
12706 background is printed (useful for example if the background is never shown).
12707
12708 Default value is "black".
12709 @end table
12710
12711 The expressions for the angle and the output size can contain the
12712 following constants and functions:
12713
12714 @table @option
12715 @item n
12716 sequential number of the input frame, starting from 0. It is always NAN
12717 before the first frame is filtered.
12718
12719 @item t
12720 time in seconds of the input frame, it is set to 0 when the filter is
12721 configured. It is always NAN before the first frame is filtered.
12722
12723 @item hsub
12724 @item vsub
12725 horizontal and vertical chroma subsample values. For example for the
12726 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12727
12728 @item in_w, iw
12729 @item in_h, ih
12730 the input video width and height
12731
12732 @item out_w, ow
12733 @item out_h, oh
12734 the output width and height, that is the size of the padded area as
12735 specified by the @var{width} and @var{height} expressions
12736
12737 @item rotw(a)
12738 @item roth(a)
12739 the minimal width/height required for completely containing the input
12740 video rotated by @var{a} radians.
12741
12742 These are only available when computing the @option{out_w} and
12743 @option{out_h} expressions.
12744 @end table
12745
12746 @subsection Examples
12747
12748 @itemize
12749 @item
12750 Rotate the input by PI/6 radians clockwise:
12751 @example
12752 rotate=PI/6
12753 @end example
12754
12755 @item
12756 Rotate the input by PI/6 radians counter-clockwise:
12757 @example
12758 rotate=-PI/6
12759 @end example
12760
12761 @item
12762 Rotate the input by 45 degrees clockwise:
12763 @example
12764 rotate=45*PI/180
12765 @end example
12766
12767 @item
12768 Apply a constant rotation with period T, starting from an angle of PI/3:
12769 @example
12770 rotate=PI/3+2*PI*t/T
12771 @end example
12772
12773 @item
12774 Make the input video rotation oscillating with a period of T
12775 seconds and an amplitude of A radians:
12776 @example
12777 rotate=A*sin(2*PI/T*t)
12778 @end example
12779
12780 @item
12781 Rotate the video, output size is chosen so that the whole rotating
12782 input video is always completely contained in the output:
12783 @example
12784 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
12785 @end example
12786
12787 @item
12788 Rotate the video, reduce the output size so that no background is ever
12789 shown:
12790 @example
12791 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
12792 @end example
12793 @end itemize
12794
12795 @subsection Commands
12796
12797 The filter supports the following commands:
12798
12799 @table @option
12800 @item a, angle
12801 Set the angle expression.
12802 The command accepts the same syntax of the corresponding option.
12803
12804 If the specified expression is not valid, it is kept at its current
12805 value.
12806 @end table
12807
12808 @section sab
12809
12810 Apply Shape Adaptive Blur.
12811
12812 The filter accepts the following options:
12813
12814 @table @option
12815 @item luma_radius, lr
12816 Set luma blur filter strength, must be a value in range 0.1-4.0, default
12817 value is 1.0. A greater value will result in a more blurred image, and
12818 in slower processing.
12819
12820 @item luma_pre_filter_radius, lpfr
12821 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
12822 value is 1.0.
12823
12824 @item luma_strength, ls
12825 Set luma maximum difference between pixels to still be considered, must
12826 be a value in the 0.1-100.0 range, default value is 1.0.
12827
12828 @item chroma_radius, cr
12829 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
12830 greater value will result in a more blurred image, and in slower
12831 processing.
12832
12833 @item chroma_pre_filter_radius, cpfr
12834 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
12835
12836 @item chroma_strength, cs
12837 Set chroma maximum difference between pixels to still be considered,
12838 must be a value in the -0.9-100.0 range.
12839 @end table
12840
12841 Each chroma option value, if not explicitly specified, is set to the
12842 corresponding luma option value.
12843
12844 @anchor{scale}
12845 @section scale
12846
12847 Scale (resize) the input video, using the libswscale library.
12848
12849 The scale filter forces the output display aspect ratio to be the same
12850 of the input, by changing the output sample aspect ratio.
12851
12852 If the input image format is different from the format requested by
12853 the next filter, the scale filter will convert the input to the
12854 requested format.
12855
12856 @subsection Options
12857 The filter accepts the following options, or any of the options
12858 supported by the libswscale scaler.
12859
12860 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
12861 the complete list of scaler options.
12862
12863 @table @option
12864 @item width, w
12865 @item height, h
12866 Set the output video dimension expression. Default value is the input
12867 dimension.
12868
12869 If the @var{width} or @var{w} value is 0, the input width is used for
12870 the output. If the @var{height} or @var{h} value is 0, the input height
12871 is used for the output.
12872
12873 If one and only one of the values is -n with n >= 1, the scale filter
12874 will use a value that maintains the aspect ratio of the input image,
12875 calculated from the other specified dimension. After that it will,
12876 however, make sure that the calculated dimension is divisible by n and
12877 adjust the value if necessary.
12878
12879 If both values are -n with n >= 1, the behavior will be identical to
12880 both values being set to 0 as previously detailed.
12881
12882 See below for the list of accepted constants for use in the dimension
12883 expression.
12884
12885 @item eval
12886 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
12887
12888 @table @samp
12889 @item init
12890 Only evaluate expressions once during the filter initialization or when a command is processed.
12891
12892 @item frame
12893 Evaluate expressions for each incoming frame.
12894
12895 @end table
12896
12897 Default value is @samp{init}.
12898
12899
12900 @item interl
12901 Set the interlacing mode. It accepts the following values:
12902
12903 @table @samp
12904 @item 1
12905 Force interlaced aware scaling.
12906
12907 @item 0
12908 Do not apply interlaced scaling.
12909
12910 @item -1
12911 Select interlaced aware scaling depending on whether the source frames
12912 are flagged as interlaced or not.
12913 @end table
12914
12915 Default value is @samp{0}.
12916
12917 @item flags
12918 Set libswscale scaling flags. See
12919 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12920 complete list of values. If not explicitly specified the filter applies
12921 the default flags.
12922
12923
12924 @item param0, param1
12925 Set libswscale input parameters for scaling algorithms that need them. See
12926 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12927 complete documentation. If not explicitly specified the filter applies
12928 empty parameters.
12929
12930
12931
12932 @item size, s
12933 Set the video size. For the syntax of this option, check the
12934 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12935
12936 @item in_color_matrix
12937 @item out_color_matrix
12938 Set in/output YCbCr color space type.
12939
12940 This allows the autodetected value to be overridden as well as allows forcing
12941 a specific value used for the output and encoder.
12942
12943 If not specified, the color space type depends on the pixel format.
12944
12945 Possible values:
12946
12947 @table @samp
12948 @item auto
12949 Choose automatically.
12950
12951 @item bt709
12952 Format conforming to International Telecommunication Union (ITU)
12953 Recommendation BT.709.
12954
12955 @item fcc
12956 Set color space conforming to the United States Federal Communications
12957 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
12958
12959 @item bt601
12960 Set color space conforming to:
12961
12962 @itemize
12963 @item
12964 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
12965
12966 @item
12967 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
12968
12969 @item
12970 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
12971
12972 @end itemize
12973
12974 @item smpte240m
12975 Set color space conforming to SMPTE ST 240:1999.
12976 @end table
12977
12978 @item in_range
12979 @item out_range
12980 Set in/output YCbCr sample range.
12981
12982 This allows the autodetected value to be overridden as well as allows forcing
12983 a specific value used for the output and encoder. If not specified, the
12984 range depends on the pixel format. Possible values:
12985
12986 @table @samp
12987 @item auto
12988 Choose automatically.
12989
12990 @item jpeg/full/pc
12991 Set full range (0-255 in case of 8-bit luma).
12992
12993 @item mpeg/tv
12994 Set "MPEG" range (16-235 in case of 8-bit luma).
12995 @end table
12996
12997 @item force_original_aspect_ratio
12998 Enable decreasing or increasing output video width or height if necessary to
12999 keep the original aspect ratio. Possible values:
13000
13001 @table @samp
13002 @item disable
13003 Scale the video as specified and disable this feature.
13004
13005 @item decrease
13006 The output video dimensions will automatically be decreased if needed.
13007
13008 @item increase
13009 The output video dimensions will automatically be increased if needed.
13010
13011 @end table
13012
13013 One useful instance of this option is that when you know a specific device's
13014 maximum allowed resolution, you can use this to limit the output video to
13015 that, while retaining the aspect ratio. For example, device A allows
13016 1280x720 playback, and your video is 1920x800. Using this option (set it to
13017 decrease) and specifying 1280x720 to the command line makes the output
13018 1280x533.
13019
13020 Please note that this is a different thing than specifying -1 for @option{w}
13021 or @option{h}, you still need to specify the output resolution for this option
13022 to work.
13023
13024 @end table
13025
13026 The values of the @option{w} and @option{h} options are expressions
13027 containing the following constants:
13028
13029 @table @var
13030 @item in_w
13031 @item in_h
13032 The input width and height
13033
13034 @item iw
13035 @item ih
13036 These are the same as @var{in_w} and @var{in_h}.
13037
13038 @item out_w
13039 @item out_h
13040 The output (scaled) width and height
13041
13042 @item ow
13043 @item oh
13044 These are the same as @var{out_w} and @var{out_h}
13045
13046 @item a
13047 The same as @var{iw} / @var{ih}
13048
13049 @item sar
13050 input sample aspect ratio
13051
13052 @item dar
13053 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
13054
13055 @item hsub
13056 @item vsub
13057 horizontal and vertical input chroma subsample values. For example for the
13058 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13059
13060 @item ohsub
13061 @item ovsub
13062 horizontal and vertical output chroma subsample values. For example for the
13063 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13064 @end table
13065
13066 @subsection Examples
13067
13068 @itemize
13069 @item
13070 Scale the input video to a size of 200x100
13071 @example
13072 scale=w=200:h=100
13073 @end example
13074
13075 This is equivalent to:
13076 @example
13077 scale=200:100
13078 @end example
13079
13080 or:
13081 @example
13082 scale=200x100
13083 @end example
13084
13085 @item
13086 Specify a size abbreviation for the output size:
13087 @example
13088 scale=qcif
13089 @end example
13090
13091 which can also be written as:
13092 @example
13093 scale=size=qcif
13094 @end example
13095
13096 @item
13097 Scale the input to 2x:
13098 @example
13099 scale=w=2*iw:h=2*ih
13100 @end example
13101
13102 @item
13103 The above is the same as:
13104 @example
13105 scale=2*in_w:2*in_h
13106 @end example
13107
13108 @item
13109 Scale the input to 2x with forced interlaced scaling:
13110 @example
13111 scale=2*iw:2*ih:interl=1
13112 @end example
13113
13114 @item
13115 Scale the input to half size:
13116 @example
13117 scale=w=iw/2:h=ih/2
13118 @end example
13119
13120 @item
13121 Increase the width, and set the height to the same size:
13122 @example
13123 scale=3/2*iw:ow
13124 @end example
13125
13126 @item
13127 Seek Greek harmony:
13128 @example
13129 scale=iw:1/PHI*iw
13130 scale=ih*PHI:ih
13131 @end example
13132
13133 @item
13134 Increase the height, and set the width to 3/2 of the height:
13135 @example
13136 scale=w=3/2*oh:h=3/5*ih
13137 @end example
13138
13139 @item
13140 Increase the size, making the size a multiple of the chroma
13141 subsample values:
13142 @example
13143 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
13144 @end example
13145
13146 @item
13147 Increase the width to a maximum of 500 pixels,
13148 keeping the same aspect ratio as the input:
13149 @example
13150 scale=w='min(500\, iw*3/2):h=-1'
13151 @end example
13152 @end itemize
13153
13154 @subsection Commands
13155
13156 This filter supports the following commands:
13157 @table @option
13158 @item width, w
13159 @item height, h
13160 Set the output video dimension expression.
13161 The command accepts the same syntax of the corresponding option.
13162
13163 If the specified expression is not valid, it is kept at its current
13164 value.
13165 @end table
13166
13167 @section scale_npp
13168
13169 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
13170 format conversion on CUDA video frames. Setting the output width and height
13171 works in the same way as for the @var{scale} filter.
13172
13173 The following additional options are accepted:
13174 @table @option
13175 @item format
13176 The pixel format of the output CUDA frames. If set to the string "same" (the
13177 default), the input format will be kept. Note that automatic format negotiation
13178 and conversion is not yet supported for hardware frames
13179
13180 @item interp_algo
13181 The interpolation algorithm used for resizing. One of the following:
13182 @table @option
13183 @item nn
13184 Nearest neighbour.
13185
13186 @item linear
13187 @item cubic
13188 @item cubic2p_bspline
13189 2-parameter cubic (B=1, C=0)
13190
13191 @item cubic2p_catmullrom
13192 2-parameter cubic (B=0, C=1/2)
13193
13194 @item cubic2p_b05c03
13195 2-parameter cubic (B=1/2, C=3/10)
13196
13197 @item super
13198 Supersampling
13199
13200 @item lanczos
13201 @end table
13202
13203 @end table
13204
13205 @section scale2ref
13206
13207 Scale (resize) the input video, based on a reference video.
13208
13209 See the scale filter for available options, scale2ref supports the same but
13210 uses the reference video instead of the main input as basis. scale2ref also
13211 supports the following additional constants for the @option{w} and
13212 @option{h} options:
13213
13214 @table @var
13215 @item main_w
13216 @item main_h
13217 The main input video's width and height
13218
13219 @item main_a
13220 The same as @var{main_w} / @var{main_h}
13221
13222 @item main_sar
13223 The main input video's sample aspect ratio
13224
13225 @item main_dar, mdar
13226 The main input video's display aspect ratio. Calculated from
13227 @code{(main_w / main_h) * main_sar}.
13228
13229 @item main_hsub
13230 @item main_vsub
13231 The main input video's horizontal and vertical chroma subsample values.
13232 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
13233 is 1.
13234 @end table
13235
13236 @subsection Examples
13237
13238 @itemize
13239 @item
13240 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
13241 @example
13242 'scale2ref[b][a];[a][b]overlay'
13243 @end example
13244 @end itemize
13245
13246 @anchor{selectivecolor}
13247 @section selectivecolor
13248
13249 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
13250 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
13251 by the "purity" of the color (that is, how saturated it already is).
13252
13253 This filter is similar to the Adobe Photoshop Selective Color tool.
13254
13255 The filter accepts the following options:
13256
13257 @table @option
13258 @item correction_method
13259 Select color correction method.
13260
13261 Available values are:
13262 @table @samp
13263 @item absolute
13264 Specified adjustments are applied "as-is" (added/subtracted to original pixel
13265 component value).
13266 @item relative
13267 Specified adjustments are relative to the original component value.
13268 @end table
13269 Default is @code{absolute}.
13270 @item reds
13271 Adjustments for red pixels (pixels where the red component is the maximum)
13272 @item yellows
13273 Adjustments for yellow pixels (pixels where the blue component is the minimum)
13274 @item greens
13275 Adjustments for green pixels (pixels where the green component is the maximum)
13276 @item cyans
13277 Adjustments for cyan pixels (pixels where the red component is the minimum)
13278 @item blues
13279 Adjustments for blue pixels (pixels where the blue component is the maximum)
13280 @item magentas
13281 Adjustments for magenta pixels (pixels where the green component is the minimum)
13282 @item whites
13283 Adjustments for white pixels (pixels where all components are greater than 128)
13284 @item neutrals
13285 Adjustments for all pixels except pure black and pure white
13286 @item blacks
13287 Adjustments for black pixels (pixels where all components are lesser than 128)
13288 @item psfile
13289 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
13290 @end table
13291
13292 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
13293 4 space separated floating point adjustment values in the [-1,1] range,
13294 respectively to adjust the amount of cyan, magenta, yellow and black for the
13295 pixels of its range.
13296
13297 @subsection Examples
13298
13299 @itemize
13300 @item
13301 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
13302 increase magenta by 27% in blue areas:
13303 @example
13304 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
13305 @end example
13306
13307 @item
13308 Use a Photoshop selective color preset:
13309 @example
13310 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
13311 @end example
13312 @end itemize
13313
13314 @anchor{separatefields}
13315 @section separatefields
13316
13317 The @code{separatefields} takes a frame-based video input and splits
13318 each frame into its components fields, producing a new half height clip
13319 with twice the frame rate and twice the frame count.
13320
13321 This filter use field-dominance information in frame to decide which
13322 of each pair of fields to place first in the output.
13323 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
13324
13325 @section setdar, setsar
13326
13327 The @code{setdar} filter sets the Display Aspect Ratio for the filter
13328 output video.
13329
13330 This is done by changing the specified Sample (aka Pixel) Aspect
13331 Ratio, according to the following equation:
13332 @example
13333 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
13334 @end example
13335
13336 Keep in mind that the @code{setdar} filter does not modify the pixel
13337 dimensions of the video frame. Also, the display aspect ratio set by
13338 this filter may be changed by later filters in the filterchain,
13339 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
13340 applied.
13341
13342 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
13343 the filter output video.
13344
13345 Note that as a consequence of the application of this filter, the
13346 output display aspect ratio will change according to the equation
13347 above.
13348
13349 Keep in mind that the sample aspect ratio set by the @code{setsar}
13350 filter may be changed by later filters in the filterchain, e.g. if
13351 another "setsar" or a "setdar" filter is applied.
13352
13353 It accepts the following parameters:
13354
13355 @table @option
13356 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
13357 Set the aspect ratio used by the filter.
13358
13359 The parameter can be a floating point number string, an expression, or
13360 a string of the form @var{num}:@var{den}, where @var{num} and
13361 @var{den} are the numerator and denominator of the aspect ratio. If
13362 the parameter is not specified, it is assumed the value "0".
13363 In case the form "@var{num}:@var{den}" is used, the @code{:} character
13364 should be escaped.
13365
13366 @item max
13367 Set the maximum integer value to use for expressing numerator and
13368 denominator when reducing the expressed aspect ratio to a rational.
13369 Default value is @code{100}.
13370
13371 @end table
13372
13373 The parameter @var{sar} is an expression containing
13374 the following constants:
13375
13376 @table @option
13377 @item E, PI, PHI
13378 These are approximated values for the mathematical constants e
13379 (Euler's number), pi (Greek pi), and phi (the golden ratio).
13380
13381 @item w, h
13382 The input width and height.
13383
13384 @item a
13385 These are the same as @var{w} / @var{h}.
13386
13387 @item sar
13388 The input sample aspect ratio.
13389
13390 @item dar
13391 The input display aspect ratio. It is the same as
13392 (@var{w} / @var{h}) * @var{sar}.
13393
13394 @item hsub, vsub
13395 Horizontal and vertical chroma subsample values. For example, for the
13396 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13397 @end table
13398
13399 @subsection Examples
13400
13401 @itemize
13402
13403 @item
13404 To change the display aspect ratio to 16:9, specify one of the following:
13405 @example
13406 setdar=dar=1.77777
13407 setdar=dar=16/9
13408 @end example
13409
13410 @item
13411 To change the sample aspect ratio to 10:11, specify:
13412 @example
13413 setsar=sar=10/11
13414 @end example
13415
13416 @item
13417 To set a display aspect ratio of 16:9, and specify a maximum integer value of
13418 1000 in the aspect ratio reduction, use the command:
13419 @example
13420 setdar=ratio=16/9:max=1000
13421 @end example
13422
13423 @end itemize
13424
13425 @anchor{setfield}
13426 @section setfield
13427
13428 Force field for the output video frame.
13429
13430 The @code{setfield} filter marks the interlace type field for the
13431 output frames. It does not change the input frame, but only sets the
13432 corresponding property, which affects how the frame is treated by
13433 following filters (e.g. @code{fieldorder} or @code{yadif}).
13434
13435 The filter accepts the following options:
13436
13437 @table @option
13438
13439 @item mode
13440 Available values are:
13441
13442 @table @samp
13443 @item auto
13444 Keep the same field property.
13445
13446 @item bff
13447 Mark the frame as bottom-field-first.
13448
13449 @item tff
13450 Mark the frame as top-field-first.
13451
13452 @item prog
13453 Mark the frame as progressive.
13454 @end table
13455 @end table
13456
13457 @section showinfo
13458
13459 Show a line containing various information for each input video frame.
13460 The input video is not modified.
13461
13462 The shown line contains a sequence of key/value pairs of the form
13463 @var{key}:@var{value}.
13464
13465 The following values are shown in the output:
13466
13467 @table @option
13468 @item n
13469 The (sequential) number of the input frame, starting from 0.
13470
13471 @item pts
13472 The Presentation TimeStamp of the input frame, expressed as a number of
13473 time base units. The time base unit depends on the filter input pad.
13474
13475 @item pts_time
13476 The Presentation TimeStamp of the input frame, expressed as a number of
13477 seconds.
13478
13479 @item pos
13480 The position of the frame in the input stream, or -1 if this information is
13481 unavailable and/or meaningless (for example in case of synthetic video).
13482
13483 @item fmt
13484 The pixel format name.
13485
13486 @item sar
13487 The sample aspect ratio of the input frame, expressed in the form
13488 @var{num}/@var{den}.
13489
13490 @item s
13491 The size of the input frame. For the syntax of this option, check the
13492 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13493
13494 @item i
13495 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
13496 for bottom field first).
13497
13498 @item iskey
13499 This is 1 if the frame is a key frame, 0 otherwise.
13500
13501 @item type
13502 The picture type of the input frame ("I" for an I-frame, "P" for a
13503 P-frame, "B" for a B-frame, or "?" for an unknown type).
13504 Also refer to the documentation of the @code{AVPictureType} enum and of
13505 the @code{av_get_picture_type_char} function defined in
13506 @file{libavutil/avutil.h}.
13507
13508 @item checksum
13509 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
13510
13511 @item plane_checksum
13512 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
13513 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
13514 @end table
13515
13516 @section showpalette
13517
13518 Displays the 256 colors palette of each frame. This filter is only relevant for
13519 @var{pal8} pixel format frames.
13520
13521 It accepts the following option:
13522
13523 @table @option
13524 @item s
13525 Set the size of the box used to represent one palette color entry. Default is
13526 @code{30} (for a @code{30x30} pixel box).
13527 @end table
13528
13529 @section shuffleframes
13530
13531 Reorder and/or duplicate and/or drop video frames.
13532
13533 It accepts the following parameters:
13534
13535 @table @option
13536 @item mapping
13537 Set the destination indexes of input frames.
13538 This is space or '|' separated list of indexes that maps input frames to output
13539 frames. Number of indexes also sets maximal value that each index may have.
13540 '-1' index have special meaning and that is to drop frame.
13541 @end table
13542
13543 The first frame has the index 0. The default is to keep the input unchanged.
13544
13545 @subsection Examples
13546
13547 @itemize
13548 @item
13549 Swap second and third frame of every three frames of the input:
13550 @example
13551 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
13552 @end example
13553
13554 @item
13555 Swap 10th and 1st frame of every ten frames of the input:
13556 @example
13557 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
13558 @end example
13559 @end itemize
13560
13561 @section shuffleplanes
13562
13563 Reorder and/or duplicate video planes.
13564
13565 It accepts the following parameters:
13566
13567 @table @option
13568
13569 @item map0
13570 The index of the input plane to be used as the first output plane.
13571
13572 @item map1
13573 The index of the input plane to be used as the second output plane.
13574
13575 @item map2
13576 The index of the input plane to be used as the third output plane.
13577
13578 @item map3
13579 The index of the input plane to be used as the fourth output plane.
13580
13581 @end table
13582
13583 The first plane has the index 0. The default is to keep the input unchanged.
13584
13585 @subsection Examples
13586
13587 @itemize
13588 @item
13589 Swap the second and third planes of the input:
13590 @example
13591 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
13592 @end example
13593 @end itemize
13594
13595 @anchor{signalstats}
13596 @section signalstats
13597 Evaluate various visual metrics that assist in determining issues associated
13598 with the digitization of analog video media.
13599
13600 By default the filter will log these metadata values:
13601
13602 @table @option
13603 @item YMIN
13604 Display the minimal Y value contained within the input frame. Expressed in
13605 range of [0-255].
13606
13607 @item YLOW
13608 Display the Y value at the 10% percentile within the input frame. Expressed in
13609 range of [0-255].
13610
13611 @item YAVG
13612 Display the average Y value within the input frame. Expressed in range of
13613 [0-255].
13614
13615 @item YHIGH
13616 Display the Y value at the 90% percentile within the input frame. Expressed in
13617 range of [0-255].
13618
13619 @item YMAX
13620 Display the maximum Y value contained within the input frame. Expressed in
13621 range of [0-255].
13622
13623 @item UMIN
13624 Display the minimal U value contained within the input frame. Expressed in
13625 range of [0-255].
13626
13627 @item ULOW
13628 Display the U value at the 10% percentile within the input frame. Expressed in
13629 range of [0-255].
13630
13631 @item UAVG
13632 Display the average U value within the input frame. Expressed in range of
13633 [0-255].
13634
13635 @item UHIGH
13636 Display the U value at the 90% percentile within the input frame. Expressed in
13637 range of [0-255].
13638
13639 @item UMAX
13640 Display the maximum U value contained within the input frame. Expressed in
13641 range of [0-255].
13642
13643 @item VMIN
13644 Display the minimal V value contained within the input frame. Expressed in
13645 range of [0-255].
13646
13647 @item VLOW
13648 Display the V value at the 10% percentile within the input frame. Expressed in
13649 range of [0-255].
13650
13651 @item VAVG
13652 Display the average V value within the input frame. Expressed in range of
13653 [0-255].
13654
13655 @item VHIGH
13656 Display the V value at the 90% percentile within the input frame. Expressed in
13657 range of [0-255].
13658
13659 @item VMAX
13660 Display the maximum V value contained within the input frame. Expressed in
13661 range of [0-255].
13662
13663 @item SATMIN
13664 Display the minimal saturation value contained within the input frame.
13665 Expressed in range of [0-~181.02].
13666
13667 @item SATLOW
13668 Display the saturation value at the 10% percentile within the input frame.
13669 Expressed in range of [0-~181.02].
13670
13671 @item SATAVG
13672 Display the average saturation value within the input frame. Expressed in range
13673 of [0-~181.02].
13674
13675 @item SATHIGH
13676 Display the saturation value at the 90% percentile within the input frame.
13677 Expressed in range of [0-~181.02].
13678
13679 @item SATMAX
13680 Display the maximum saturation value contained within the input frame.
13681 Expressed in range of [0-~181.02].
13682
13683 @item HUEMED
13684 Display the median value for hue within the input frame. Expressed in range of
13685 [0-360].
13686
13687 @item HUEAVG
13688 Display the average value for hue within the input frame. Expressed in range of
13689 [0-360].
13690
13691 @item YDIF
13692 Display the average of sample value difference between all values of the Y
13693 plane in the current frame and corresponding values of the previous input frame.
13694 Expressed in range of [0-255].
13695
13696 @item UDIF
13697 Display the average of sample value difference between all values of the U
13698 plane in the current frame and corresponding values of the previous input frame.
13699 Expressed in range of [0-255].
13700
13701 @item VDIF
13702 Display the average of sample value difference between all values of the V
13703 plane in the current frame and corresponding values of the previous input frame.
13704 Expressed in range of [0-255].
13705
13706 @item YBITDEPTH
13707 Display bit depth of Y plane in current frame.
13708 Expressed in range of [0-16].
13709
13710 @item UBITDEPTH
13711 Display bit depth of U plane in current frame.
13712 Expressed in range of [0-16].
13713
13714 @item VBITDEPTH
13715 Display bit depth of V plane in current frame.
13716 Expressed in range of [0-16].
13717 @end table
13718
13719 The filter accepts the following options:
13720
13721 @table @option
13722 @item stat
13723 @item out
13724
13725 @option{stat} specify an additional form of image analysis.
13726 @option{out} output video with the specified type of pixel highlighted.
13727
13728 Both options accept the following values:
13729
13730 @table @samp
13731 @item tout
13732 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
13733 unlike the neighboring pixels of the same field. Examples of temporal outliers
13734 include the results of video dropouts, head clogs, or tape tracking issues.
13735
13736 @item vrep
13737 Identify @var{vertical line repetition}. Vertical line repetition includes
13738 similar rows of pixels within a frame. In born-digital video vertical line
13739 repetition is common, but this pattern is uncommon in video digitized from an
13740 analog source. When it occurs in video that results from the digitization of an
13741 analog source it can indicate concealment from a dropout compensator.
13742
13743 @item brng
13744 Identify pixels that fall outside of legal broadcast range.
13745 @end table
13746
13747 @item color, c
13748 Set the highlight color for the @option{out} option. The default color is
13749 yellow.
13750 @end table
13751
13752 @subsection Examples
13753
13754 @itemize
13755 @item
13756 Output data of various video metrics:
13757 @example
13758 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
13759 @end example
13760
13761 @item
13762 Output specific data about the minimum and maximum values of the Y plane per frame:
13763 @example
13764 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
13765 @end example
13766
13767 @item
13768 Playback video while highlighting pixels that are outside of broadcast range in red.
13769 @example
13770 ffplay example.mov -vf signalstats="out=brng:color=red"
13771 @end example
13772
13773 @item
13774 Playback video with signalstats metadata drawn over the frame.
13775 @example
13776 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
13777 @end example
13778
13779 The contents of signalstat_drawtext.txt used in the command are:
13780 @example
13781 time %@{pts:hms@}
13782 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
13783 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
13784 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
13785 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
13786
13787 @end example
13788 @end itemize
13789
13790 @anchor{signature}
13791 @section signature
13792
13793 Calculates the MPEG-7 Video Signature. The filter can handle more than one
13794 input. In this case the matching between the inputs can be calculated additionally.
13795 The filter always passes through the first input. The signature of each stream can
13796 be written into a file.
13797
13798 It accepts the following options:
13799
13800 @table @option
13801 @item detectmode
13802 Enable or disable the matching process.
13803
13804 Available values are:
13805
13806 @table @samp
13807 @item off
13808 Disable the calculation of a matching (default).
13809 @item full
13810 Calculate the matching for the whole video and output whether the whole video
13811 matches or only parts.
13812 @item fast
13813 Calculate only until a matching is found or the video ends. Should be faster in
13814 some cases.
13815 @end table
13816
13817 @item nb_inputs
13818 Set the number of inputs. The option value must be a non negative integer.
13819 Default value is 1.
13820
13821 @item filename
13822 Set the path to which the output is written. If there is more than one input,
13823 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
13824 integer), that will be replaced with the input number. If no filename is
13825 specified, no output will be written. This is the default.
13826
13827 @item format
13828 Choose the output format.
13829
13830 Available values are:
13831
13832 @table @samp
13833 @item binary
13834 Use the specified binary representation (default).
13835 @item xml
13836 Use the specified xml representation.
13837 @end table
13838
13839 @item th_d
13840 Set threshold to detect one word as similar. The option value must be an integer
13841 greater than zero. The default value is 9000.
13842
13843 @item th_dc
13844 Set threshold to detect all words as similar. The option value must be an integer
13845 greater than zero. The default value is 60000.
13846
13847 @item th_xh
13848 Set threshold to detect frames as similar. The option value must be an integer
13849 greater than zero. The default value is 116.
13850
13851 @item th_di
13852 Set the minimum length of a sequence in frames to recognize it as matching
13853 sequence. The option value must be a non negative integer value.
13854 The default value is 0.
13855
13856 @item th_it
13857 Set the minimum relation, that matching frames to all frames must have.
13858 The option value must be a double value between 0 and 1. The default value is 0.5.
13859 @end table
13860
13861 @subsection Examples
13862
13863 @itemize
13864 @item
13865 To calculate the signature of an input video and store it in signature.bin:
13866 @example
13867 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
13868 @end example
13869
13870 @item
13871 To detect whether two videos match and store the signatures in XML format in
13872 signature0.xml and signature1.xml:
13873 @example
13874 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 -
13875 @end example
13876
13877 @end itemize
13878
13879 @anchor{smartblur}
13880 @section smartblur
13881
13882 Blur the input video without impacting the outlines.
13883
13884 It accepts the following options:
13885
13886 @table @option
13887 @item luma_radius, lr
13888 Set the luma radius. The option value must be a float number in
13889 the range [0.1,5.0] that specifies the variance of the gaussian filter
13890 used to blur the image (slower if larger). Default value is 1.0.
13891
13892 @item luma_strength, ls
13893 Set the luma strength. The option value must be a float number
13894 in the range [-1.0,1.0] that configures the blurring. A value included
13895 in [0.0,1.0] will blur the image whereas a value included in
13896 [-1.0,0.0] will sharpen the image. Default value is 1.0.
13897
13898 @item luma_threshold, lt
13899 Set the luma threshold used as a coefficient to determine
13900 whether a pixel should be blurred or not. The option value must be an
13901 integer in the range [-30,30]. A value of 0 will filter all the image,
13902 a value included in [0,30] will filter flat areas and a value included
13903 in [-30,0] will filter edges. Default value is 0.
13904
13905 @item chroma_radius, cr
13906 Set the chroma radius. The option value must be a float number in
13907 the range [0.1,5.0] that specifies the variance of the gaussian filter
13908 used to blur the image (slower if larger). Default value is @option{luma_radius}.
13909
13910 @item chroma_strength, cs
13911 Set the chroma strength. The option value must be a float number
13912 in the range [-1.0,1.0] that configures the blurring. A value included
13913 in [0.0,1.0] will blur the image whereas a value included in
13914 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
13915
13916 @item chroma_threshold, ct
13917 Set the chroma threshold used as a coefficient to determine
13918 whether a pixel should be blurred or not. The option value must be an
13919 integer in the range [-30,30]. A value of 0 will filter all the image,
13920 a value included in [0,30] will filter flat areas and a value included
13921 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
13922 @end table
13923
13924 If a chroma option is not explicitly set, the corresponding luma value
13925 is set.
13926
13927 @section ssim
13928
13929 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
13930
13931 This filter takes in input two input videos, the first input is
13932 considered the "main" source and is passed unchanged to the
13933 output. The second input is used as a "reference" video for computing
13934 the SSIM.
13935
13936 Both video inputs must have the same resolution and pixel format for
13937 this filter to work correctly. Also it assumes that both inputs
13938 have the same number of frames, which are compared one by one.
13939
13940 The filter stores the calculated SSIM of each frame.
13941
13942 The description of the accepted parameters follows.
13943
13944 @table @option
13945 @item stats_file, f
13946 If specified the filter will use the named file to save the SSIM of
13947 each individual frame. When filename equals "-" the data is sent to
13948 standard output.
13949 @end table
13950
13951 The file printed if @var{stats_file} is selected, contains a sequence of
13952 key/value pairs of the form @var{key}:@var{value} for each compared
13953 couple of frames.
13954
13955 A description of each shown parameter follows:
13956
13957 @table @option
13958 @item n
13959 sequential number of the input frame, starting from 1
13960
13961 @item Y, U, V, R, G, B
13962 SSIM of the compared frames for the component specified by the suffix.
13963
13964 @item All
13965 SSIM of the compared frames for the whole frame.
13966
13967 @item dB
13968 Same as above but in dB representation.
13969 @end table
13970
13971 This filter also supports the @ref{framesync} options.
13972
13973 For example:
13974 @example
13975 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
13976 [main][ref] ssim="stats_file=stats.log" [out]
13977 @end example
13978
13979 On this example the input file being processed is compared with the
13980 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
13981 is stored in @file{stats.log}.
13982
13983 Another example with both psnr and ssim at same time:
13984 @example
13985 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
13986 @end example
13987
13988 @section stereo3d
13989
13990 Convert between different stereoscopic image formats.
13991
13992 The filters accept the following options:
13993
13994 @table @option
13995 @item in
13996 Set stereoscopic image format of input.
13997
13998 Available values for input image formats are:
13999 @table @samp
14000 @item sbsl
14001 side by side parallel (left eye left, right eye right)
14002
14003 @item sbsr
14004 side by side crosseye (right eye left, left eye right)
14005
14006 @item sbs2l
14007 side by side parallel with half width resolution
14008 (left eye left, right eye right)
14009
14010 @item sbs2r
14011 side by side crosseye with half width resolution
14012 (right eye left, left eye right)
14013
14014 @item abl
14015 above-below (left eye above, right eye below)
14016
14017 @item abr
14018 above-below (right eye above, left eye below)
14019
14020 @item ab2l
14021 above-below with half height resolution
14022 (left eye above, right eye below)
14023
14024 @item ab2r
14025 above-below with half height resolution
14026 (right eye above, left eye below)
14027
14028 @item al
14029 alternating frames (left eye first, right eye second)
14030
14031 @item ar
14032 alternating frames (right eye first, left eye second)
14033
14034 @item irl
14035 interleaved rows (left eye has top row, right eye starts on next row)
14036
14037 @item irr
14038 interleaved rows (right eye has top row, left eye starts on next row)
14039
14040 @item icl
14041 interleaved columns, left eye first
14042
14043 @item icr
14044 interleaved columns, right eye first
14045
14046 Default value is @samp{sbsl}.
14047 @end table
14048
14049 @item out
14050 Set stereoscopic image format of output.
14051
14052 @table @samp
14053 @item sbsl
14054 side by side parallel (left eye left, right eye right)
14055
14056 @item sbsr
14057 side by side crosseye (right eye left, left eye right)
14058
14059 @item sbs2l
14060 side by side parallel with half width resolution
14061 (left eye left, right eye right)
14062
14063 @item sbs2r
14064 side by side crosseye with half width resolution
14065 (right eye left, left eye right)
14066
14067 @item abl
14068 above-below (left eye above, right eye below)
14069
14070 @item abr
14071 above-below (right eye above, left eye below)
14072
14073 @item ab2l
14074 above-below with half height resolution
14075 (left eye above, right eye below)
14076
14077 @item ab2r
14078 above-below with half height resolution
14079 (right eye above, left eye below)
14080
14081 @item al
14082 alternating frames (left eye first, right eye second)
14083
14084 @item ar
14085 alternating frames (right eye first, left eye second)
14086
14087 @item irl
14088 interleaved rows (left eye has top row, right eye starts on next row)
14089
14090 @item irr
14091 interleaved rows (right eye has top row, left eye starts on next row)
14092
14093 @item arbg
14094 anaglyph red/blue gray
14095 (red filter on left eye, blue filter on right eye)
14096
14097 @item argg
14098 anaglyph red/green gray
14099 (red filter on left eye, green filter on right eye)
14100
14101 @item arcg
14102 anaglyph red/cyan gray
14103 (red filter on left eye, cyan filter on right eye)
14104
14105 @item arch
14106 anaglyph red/cyan half colored
14107 (red filter on left eye, cyan filter on right eye)
14108
14109 @item arcc
14110 anaglyph red/cyan color
14111 (red filter on left eye, cyan filter on right eye)
14112
14113 @item arcd
14114 anaglyph red/cyan color optimized with the least squares projection of dubois
14115 (red filter on left eye, cyan filter on right eye)
14116
14117 @item agmg
14118 anaglyph green/magenta gray
14119 (green filter on left eye, magenta filter on right eye)
14120
14121 @item agmh
14122 anaglyph green/magenta half colored
14123 (green filter on left eye, magenta filter on right eye)
14124
14125 @item agmc
14126 anaglyph green/magenta colored
14127 (green filter on left eye, magenta filter on right eye)
14128
14129 @item agmd
14130 anaglyph green/magenta color optimized with the least squares projection of dubois
14131 (green filter on left eye, magenta filter on right eye)
14132
14133 @item aybg
14134 anaglyph yellow/blue gray
14135 (yellow filter on left eye, blue filter on right eye)
14136
14137 @item aybh
14138 anaglyph yellow/blue half colored
14139 (yellow filter on left eye, blue filter on right eye)
14140
14141 @item aybc
14142 anaglyph yellow/blue colored
14143 (yellow filter on left eye, blue filter on right eye)
14144
14145 @item aybd
14146 anaglyph yellow/blue color optimized with the least squares projection of dubois
14147 (yellow filter on left eye, blue filter on right eye)
14148
14149 @item ml
14150 mono output (left eye only)
14151
14152 @item mr
14153 mono output (right eye only)
14154
14155 @item chl
14156 checkerboard, left eye first
14157
14158 @item chr
14159 checkerboard, right eye first
14160
14161 @item icl
14162 interleaved columns, left eye first
14163
14164 @item icr
14165 interleaved columns, right eye first
14166
14167 @item hdmi
14168 HDMI frame pack
14169 @end table
14170
14171 Default value is @samp{arcd}.
14172 @end table
14173
14174 @subsection Examples
14175
14176 @itemize
14177 @item
14178 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
14179 @example
14180 stereo3d=sbsl:aybd
14181 @end example
14182
14183 @item
14184 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
14185 @example
14186 stereo3d=abl:sbsr
14187 @end example
14188 @end itemize
14189
14190 @section streamselect, astreamselect
14191 Select video or audio streams.
14192
14193 The filter accepts the following options:
14194
14195 @table @option
14196 @item inputs
14197 Set number of inputs. Default is 2.
14198
14199 @item map
14200 Set input indexes to remap to outputs.
14201 @end table
14202
14203 @subsection Commands
14204
14205 The @code{streamselect} and @code{astreamselect} filter supports the following
14206 commands:
14207
14208 @table @option
14209 @item map
14210 Set input indexes to remap to outputs.
14211 @end table
14212
14213 @subsection Examples
14214
14215 @itemize
14216 @item
14217 Select first 5 seconds 1st stream and rest of time 2nd stream:
14218 @example
14219 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
14220 @end example
14221
14222 @item
14223 Same as above, but for audio:
14224 @example
14225 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
14226 @end example
14227 @end itemize
14228
14229 @section sobel
14230 Apply sobel operator to input video stream.
14231
14232 The filter accepts the following option:
14233
14234 @table @option
14235 @item planes
14236 Set which planes will be processed, unprocessed planes will be copied.
14237 By default value 0xf, all planes will be processed.
14238
14239 @item scale
14240 Set value which will be multiplied with filtered result.
14241
14242 @item delta
14243 Set value which will be added to filtered result.
14244 @end table
14245
14246 @anchor{spp}
14247 @section spp
14248
14249 Apply a simple postprocessing filter that compresses and decompresses the image
14250 at several (or - in the case of @option{quality} level @code{6} - all) shifts
14251 and average the results.
14252
14253 The filter accepts the following options:
14254
14255 @table @option
14256 @item quality
14257 Set quality. This option defines the number of levels for averaging. It accepts
14258 an integer in the range 0-6. If set to @code{0}, the filter will have no
14259 effect. A value of @code{6} means the higher quality. For each increment of
14260 that value the speed drops by a factor of approximately 2.  Default value is
14261 @code{3}.
14262
14263 @item qp
14264 Force a constant quantization parameter. If not set, the filter will use the QP
14265 from the video stream (if available).
14266
14267 @item mode
14268 Set thresholding mode. Available modes are:
14269
14270 @table @samp
14271 @item hard
14272 Set hard thresholding (default).
14273 @item soft
14274 Set soft thresholding (better de-ringing effect, but likely blurrier).
14275 @end table
14276
14277 @item use_bframe_qp
14278 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
14279 option may cause flicker since the B-Frames have often larger QP. Default is
14280 @code{0} (not enabled).
14281 @end table
14282
14283 @anchor{subtitles}
14284 @section subtitles
14285
14286 Draw subtitles on top of input video using the libass library.
14287
14288 To enable compilation of this filter you need to configure FFmpeg with
14289 @code{--enable-libass}. This filter also requires a build with libavcodec and
14290 libavformat to convert the passed subtitles file to ASS (Advanced Substation
14291 Alpha) subtitles format.
14292
14293 The filter accepts the following options:
14294
14295 @table @option
14296 @item filename, f
14297 Set the filename of the subtitle file to read. It must be specified.
14298
14299 @item original_size
14300 Specify the size of the original video, the video for which the ASS file
14301 was composed. For the syntax of this option, check the
14302 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14303 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
14304 correctly scale the fonts if the aspect ratio has been changed.
14305
14306 @item fontsdir
14307 Set a directory path containing fonts that can be used by the filter.
14308 These fonts will be used in addition to whatever the font provider uses.
14309
14310 @item alpha
14311 Process alpha channel, by default alpha channel is untouched.
14312
14313 @item charenc
14314 Set subtitles input character encoding. @code{subtitles} filter only. Only
14315 useful if not UTF-8.
14316
14317 @item stream_index, si
14318 Set subtitles stream index. @code{subtitles} filter only.
14319
14320 @item force_style
14321 Override default style or script info parameters of the subtitles. It accepts a
14322 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
14323 @end table
14324
14325 If the first key is not specified, it is assumed that the first value
14326 specifies the @option{filename}.
14327
14328 For example, to render the file @file{sub.srt} on top of the input
14329 video, use the command:
14330 @example
14331 subtitles=sub.srt
14332 @end example
14333
14334 which is equivalent to:
14335 @example
14336 subtitles=filename=sub.srt
14337 @end example
14338
14339 To render the default subtitles stream from file @file{video.mkv}, use:
14340 @example
14341 subtitles=video.mkv
14342 @end example
14343
14344 To render the second subtitles stream from that file, use:
14345 @example
14346 subtitles=video.mkv:si=1
14347 @end example
14348
14349 To make the subtitles stream from @file{sub.srt} appear in transparent green
14350 @code{DejaVu Serif}, use:
14351 @example
14352 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
14353 @end example
14354
14355 @section super2xsai
14356
14357 Scale the input by 2x and smooth using the Super2xSaI (Scale and
14358 Interpolate) pixel art scaling algorithm.
14359
14360 Useful for enlarging pixel art images without reducing sharpness.
14361
14362 @section swaprect
14363
14364 Swap two rectangular objects in video.
14365
14366 This filter accepts the following options:
14367
14368 @table @option
14369 @item w
14370 Set object width.
14371
14372 @item h
14373 Set object height.
14374
14375 @item x1
14376 Set 1st rect x coordinate.
14377
14378 @item y1
14379 Set 1st rect y coordinate.
14380
14381 @item x2
14382 Set 2nd rect x coordinate.
14383
14384 @item y2
14385 Set 2nd rect y coordinate.
14386
14387 All expressions are evaluated once for each frame.
14388 @end table
14389
14390 The all options are expressions containing the following constants:
14391
14392 @table @option
14393 @item w
14394 @item h
14395 The input width and height.
14396
14397 @item a
14398 same as @var{w} / @var{h}
14399
14400 @item sar
14401 input sample aspect ratio
14402
14403 @item dar
14404 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
14405
14406 @item n
14407 The number of the input frame, starting from 0.
14408
14409 @item t
14410 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
14411
14412 @item pos
14413 the position in the file of the input frame, NAN if unknown
14414 @end table
14415
14416 @section swapuv
14417 Swap U & V plane.
14418
14419 @section telecine
14420
14421 Apply telecine process to the video.
14422
14423 This filter accepts the following options:
14424
14425 @table @option
14426 @item first_field
14427 @table @samp
14428 @item top, t
14429 top field first
14430 @item bottom, b
14431 bottom field first
14432 The default value is @code{top}.
14433 @end table
14434
14435 @item pattern
14436 A string of numbers representing the pulldown pattern you wish to apply.
14437 The default value is @code{23}.
14438 @end table
14439
14440 @example
14441 Some typical patterns:
14442
14443 NTSC output (30i):
14444 27.5p: 32222
14445 24p: 23 (classic)
14446 24p: 2332 (preferred)
14447 20p: 33
14448 18p: 334
14449 16p: 3444
14450
14451 PAL output (25i):
14452 27.5p: 12222
14453 24p: 222222222223 ("Euro pulldown")
14454 16.67p: 33
14455 16p: 33333334
14456 @end example
14457
14458 @section threshold
14459
14460 Apply threshold effect to video stream.
14461
14462 This filter needs four video streams to perform thresholding.
14463 First stream is stream we are filtering.
14464 Second stream is holding threshold values, third stream is holding min values,
14465 and last, fourth stream is holding max values.
14466
14467 The filter accepts the following option:
14468
14469 @table @option
14470 @item planes
14471 Set which planes will be processed, unprocessed planes will be copied.
14472 By default value 0xf, all planes will be processed.
14473 @end table
14474
14475 For example if first stream pixel's component value is less then threshold value
14476 of pixel component from 2nd threshold stream, third stream value will picked,
14477 otherwise fourth stream pixel component value will be picked.
14478
14479 Using color source filter one can perform various types of thresholding:
14480
14481 @subsection Examples
14482
14483 @itemize
14484 @item
14485 Binary threshold, using gray color as threshold:
14486 @example
14487 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
14488 @end example
14489
14490 @item
14491 Inverted binary threshold, using gray color as threshold:
14492 @example
14493 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
14494 @end example
14495
14496 @item
14497 Truncate binary threshold, using gray color as threshold:
14498 @example
14499 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
14500 @end example
14501
14502 @item
14503 Threshold to zero, using gray color as threshold:
14504 @example
14505 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
14506 @end example
14507
14508 @item
14509 Inverted threshold to zero, using gray color as threshold:
14510 @example
14511 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
14512 @end example
14513 @end itemize
14514
14515 @section thumbnail
14516 Select the most representative frame in a given sequence of consecutive frames.
14517
14518 The filter accepts the following options:
14519
14520 @table @option
14521 @item n
14522 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
14523 will pick one of them, and then handle the next batch of @var{n} frames until
14524 the end. Default is @code{100}.
14525 @end table
14526
14527 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
14528 value will result in a higher memory usage, so a high value is not recommended.
14529
14530 @subsection Examples
14531
14532 @itemize
14533 @item
14534 Extract one picture each 50 frames:
14535 @example
14536 thumbnail=50
14537 @end example
14538
14539 @item
14540 Complete example of a thumbnail creation with @command{ffmpeg}:
14541 @example
14542 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
14543 @end example
14544 @end itemize
14545
14546 @section tile
14547
14548 Tile several successive frames together.
14549
14550 The filter accepts the following options:
14551
14552 @table @option
14553
14554 @item layout
14555 Set the grid size (i.e. the number of lines and columns). For the syntax of
14556 this option, check the
14557 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14558
14559 @item nb_frames
14560 Set the maximum number of frames to render in the given area. It must be less
14561 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
14562 the area will be used.
14563
14564 @item margin
14565 Set the outer border margin in pixels.
14566
14567 @item padding
14568 Set the inner border thickness (i.e. the number of pixels between frames). For
14569 more advanced padding options (such as having different values for the edges),
14570 refer to the pad video filter.
14571
14572 @item color
14573 Specify the color of the unused area. For the syntax of this option, check the
14574 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
14575 is "black".
14576
14577 @item overlap
14578 Set the number of frames to overlap when tiling several successive frames together.
14579 The value must be between @code{0} and @var{nb_frames - 1}.
14580 @end table
14581
14582 @subsection Examples
14583
14584 @itemize
14585 @item
14586 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
14587 @example
14588 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
14589 @end example
14590 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
14591 duplicating each output frame to accommodate the originally detected frame
14592 rate.
14593
14594 @item
14595 Display @code{5} pictures in an area of @code{3x2} frames,
14596 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
14597 mixed flat and named options:
14598 @example
14599 tile=3x2:nb_frames=5:padding=7:margin=2
14600 @end example
14601 @end itemize
14602
14603 @section tinterlace
14604
14605 Perform various types of temporal field interlacing.
14606
14607 Frames are counted starting from 1, so the first input frame is
14608 considered odd.
14609
14610 The filter accepts the following options:
14611
14612 @table @option
14613
14614 @item mode
14615 Specify the mode of the interlacing. This option can also be specified
14616 as a value alone. See below for a list of values for this option.
14617
14618 Available values are:
14619
14620 @table @samp
14621 @item merge, 0
14622 Move odd frames into the upper field, even into the lower field,
14623 generating a double height frame at half frame rate.
14624 @example
14625  ------> time
14626 Input:
14627 Frame 1         Frame 2         Frame 3         Frame 4
14628
14629 11111           22222           33333           44444
14630 11111           22222           33333           44444
14631 11111           22222           33333           44444
14632 11111           22222           33333           44444
14633
14634 Output:
14635 11111                           33333
14636 22222                           44444
14637 11111                           33333
14638 22222                           44444
14639 11111                           33333
14640 22222                           44444
14641 11111                           33333
14642 22222                           44444
14643 @end example
14644
14645 @item drop_even, 1
14646 Only output odd frames, even frames are dropped, generating a frame with
14647 unchanged height at half frame rate.
14648
14649 @example
14650  ------> time
14651 Input:
14652 Frame 1         Frame 2         Frame 3         Frame 4
14653
14654 11111           22222           33333           44444
14655 11111           22222           33333           44444
14656 11111           22222           33333           44444
14657 11111           22222           33333           44444
14658
14659 Output:
14660 11111                           33333
14661 11111                           33333
14662 11111                           33333
14663 11111                           33333
14664 @end example
14665
14666 @item drop_odd, 2
14667 Only output even frames, odd frames are dropped, generating a frame with
14668 unchanged height at half frame rate.
14669
14670 @example
14671  ------> time
14672 Input:
14673 Frame 1         Frame 2         Frame 3         Frame 4
14674
14675 11111           22222           33333           44444
14676 11111           22222           33333           44444
14677 11111           22222           33333           44444
14678 11111           22222           33333           44444
14679
14680 Output:
14681                 22222                           44444
14682                 22222                           44444
14683                 22222                           44444
14684                 22222                           44444
14685 @end example
14686
14687 @item pad, 3
14688 Expand each frame to full height, but pad alternate lines with black,
14689 generating a frame with double height at the same input frame rate.
14690
14691 @example
14692  ------> time
14693 Input:
14694 Frame 1         Frame 2         Frame 3         Frame 4
14695
14696 11111           22222           33333           44444
14697 11111           22222           33333           44444
14698 11111           22222           33333           44444
14699 11111           22222           33333           44444
14700
14701 Output:
14702 11111           .....           33333           .....
14703 .....           22222           .....           44444
14704 11111           .....           33333           .....
14705 .....           22222           .....           44444
14706 11111           .....           33333           .....
14707 .....           22222           .....           44444
14708 11111           .....           33333           .....
14709 .....           22222           .....           44444
14710 @end example
14711
14712
14713 @item interleave_top, 4
14714 Interleave the upper field from odd frames with the lower field from
14715 even frames, generating a frame with unchanged height at half frame rate.
14716
14717 @example
14718  ------> time
14719 Input:
14720 Frame 1         Frame 2         Frame 3         Frame 4
14721
14722 11111<-         22222           33333<-         44444
14723 11111           22222<-         33333           44444<-
14724 11111<-         22222           33333<-         44444
14725 11111           22222<-         33333           44444<-
14726
14727 Output:
14728 11111                           33333
14729 22222                           44444
14730 11111                           33333
14731 22222                           44444
14732 @end example
14733
14734
14735 @item interleave_bottom, 5
14736 Interleave the lower field from odd frames with the upper field from
14737 even frames, generating a frame with unchanged height at half frame rate.
14738
14739 @example
14740  ------> time
14741 Input:
14742 Frame 1         Frame 2         Frame 3         Frame 4
14743
14744 11111           22222<-         33333           44444<-
14745 11111<-         22222           33333<-         44444
14746 11111           22222<-         33333           44444<-
14747 11111<-         22222           33333<-         44444
14748
14749 Output:
14750 22222                           44444
14751 11111                           33333
14752 22222                           44444
14753 11111                           33333
14754 @end example
14755
14756
14757 @item interlacex2, 6
14758 Double frame rate with unchanged height. Frames are inserted each
14759 containing the second temporal field from the previous input frame and
14760 the first temporal field from the next input frame. This mode relies on
14761 the top_field_first flag. Useful for interlaced video displays with no
14762 field synchronisation.
14763
14764 @example
14765  ------> time
14766 Input:
14767 Frame 1         Frame 2         Frame 3         Frame 4
14768
14769 11111           22222           33333           44444
14770  11111           22222           33333           44444
14771 11111           22222           33333           44444
14772  11111           22222           33333           44444
14773
14774 Output:
14775 11111   22222   22222   33333   33333   44444   44444
14776  11111   11111   22222   22222   33333   33333   44444
14777 11111   22222   22222   33333   33333   44444   44444
14778  11111   11111   22222   22222   33333   33333   44444
14779 @end example
14780
14781
14782 @item mergex2, 7
14783 Move odd frames into the upper field, even into the lower field,
14784 generating a double height frame at same frame rate.
14785
14786 @example
14787  ------> time
14788 Input:
14789 Frame 1         Frame 2         Frame 3         Frame 4
14790
14791 11111           22222           33333           44444
14792 11111           22222           33333           44444
14793 11111           22222           33333           44444
14794 11111           22222           33333           44444
14795
14796 Output:
14797 11111           33333           33333           55555
14798 22222           22222           44444           44444
14799 11111           33333           33333           55555
14800 22222           22222           44444           44444
14801 11111           33333           33333           55555
14802 22222           22222           44444           44444
14803 11111           33333           33333           55555
14804 22222           22222           44444           44444
14805 @end example
14806
14807 @end table
14808
14809 Numeric values are deprecated but are accepted for backward
14810 compatibility reasons.
14811
14812 Default mode is @code{merge}.
14813
14814 @item flags
14815 Specify flags influencing the filter process.
14816
14817 Available value for @var{flags} is:
14818
14819 @table @option
14820 @item low_pass_filter, vlfp
14821 Enable linear vertical low-pass filtering in the filter.
14822 Vertical low-pass filtering is required when creating an interlaced
14823 destination from a progressive source which contains high-frequency
14824 vertical detail. Filtering will reduce interlace 'twitter' and Moire
14825 patterning.
14826
14827 @item complex_filter, cvlfp
14828 Enable complex vertical low-pass filtering.
14829 This will slightly less reduce interlace 'twitter' and Moire
14830 patterning but better retain detail and subjective sharpness impression.
14831
14832 @end table
14833
14834 Vertical low-pass filtering can only be enabled for @option{mode}
14835 @var{interleave_top} and @var{interleave_bottom}.
14836
14837 @end table
14838
14839 @section tonemap
14840 Tone map colors from different dynamic ranges.
14841
14842 This filter expects data in single precision floating point, as it needs to
14843 operate on (and can output) out-of-range values. Another filter, such as
14844 @ref{zscale}, is needed to convert the resulting frame to a usable format.
14845
14846 The tonemapping algorithms implemented only work on linear light, so input
14847 data should be linearized beforehand (and possibly correctly tagged).
14848
14849 @example
14850 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
14851 @end example
14852
14853 @subsection Options
14854 The filter accepts the following options.
14855
14856 @table @option
14857 @item tonemap
14858 Set the tone map algorithm to use.
14859
14860 Possible values are:
14861 @table @var
14862 @item none
14863 Do not apply any tone map, only desaturate overbright pixels.
14864
14865 @item clip
14866 Hard-clip any out-of-range values. Use it for perfect color accuracy for
14867 in-range values, while distorting out-of-range values.
14868
14869 @item linear
14870 Stretch the entire reference gamut to a linear multiple of the display.
14871
14872 @item gamma
14873 Fit a logarithmic transfer between the tone curves.
14874
14875 @item reinhard
14876 Preserve overall image brightness with a simple curve, using nonlinear
14877 contrast, which results in flattening details and degrading color accuracy.
14878
14879 @item hable
14880 Preserve both dark and bright details better than @var{reinhard}, at the cost
14881 of slightly darkening everything. Use it when detail preservation is more
14882 important than color and brightness accuracy.
14883
14884 @item mobius
14885 Smoothly map out-of-range values, while retaining contrast and colors for
14886 in-range material as much as possible. Use it when color accuracy is more
14887 important than detail preservation.
14888 @end table
14889
14890 Default is none.
14891
14892 @item param
14893 Tune the tone mapping algorithm.
14894
14895 This affects the following algorithms:
14896 @table @var
14897 @item none
14898 Ignored.
14899
14900 @item linear
14901 Specifies the scale factor to use while stretching.
14902 Default to 1.0.
14903
14904 @item gamma
14905 Specifies the exponent of the function.
14906 Default to 1.8.
14907
14908 @item clip
14909 Specify an extra linear coefficient to multiply into the signal before clipping.
14910 Default to 1.0.
14911
14912 @item reinhard
14913 Specify the local contrast coefficient at the display peak.
14914 Default to 0.5, which means that in-gamut values will be about half as bright
14915 as when clipping.
14916
14917 @item hable
14918 Ignored.
14919
14920 @item mobius
14921 Specify the transition point from linear to mobius transform. Every value
14922 below this point is guaranteed to be mapped 1:1. The higher the value, the
14923 more accurate the result will be, at the cost of losing bright details.
14924 Default to 0.3, which due to the steep initial slope still preserves in-range
14925 colors fairly accurately.
14926 @end table
14927
14928 @item desat
14929 Apply desaturation for highlights that exceed this level of brightness. The
14930 higher the parameter, the more color information will be preserved. This
14931 setting helps prevent unnaturally blown-out colors for super-highlights, by
14932 (smoothly) turning into white instead. This makes images feel more natural,
14933 at the cost of reducing information about out-of-range colors.
14934
14935 The default of 2.0 is somewhat conservative and will mostly just apply to
14936 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
14937
14938 This option works only if the input frame has a supported color tag.
14939
14940 @item peak
14941 Override signal/nominal/reference peak with this value. Useful when the
14942 embedded peak information in display metadata is not reliable or when tone
14943 mapping from a lower range to a higher range.
14944 @end table
14945
14946 @section transpose
14947
14948 Transpose rows with columns in the input video and optionally flip it.
14949
14950 It accepts the following parameters:
14951
14952 @table @option
14953
14954 @item dir
14955 Specify the transposition direction.
14956
14957 Can assume the following values:
14958 @table @samp
14959 @item 0, 4, cclock_flip
14960 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
14961 @example
14962 L.R     L.l
14963 . . ->  . .
14964 l.r     R.r
14965 @end example
14966
14967 @item 1, 5, clock
14968 Rotate by 90 degrees clockwise, that is:
14969 @example
14970 L.R     l.L
14971 . . ->  . .
14972 l.r     r.R
14973 @end example
14974
14975 @item 2, 6, cclock
14976 Rotate by 90 degrees counterclockwise, that is:
14977 @example
14978 L.R     R.r
14979 . . ->  . .
14980 l.r     L.l
14981 @end example
14982
14983 @item 3, 7, clock_flip
14984 Rotate by 90 degrees clockwise and vertically flip, that is:
14985 @example
14986 L.R     r.R
14987 . . ->  . .
14988 l.r     l.L
14989 @end example
14990 @end table
14991
14992 For values between 4-7, the transposition is only done if the input
14993 video geometry is portrait and not landscape. These values are
14994 deprecated, the @code{passthrough} option should be used instead.
14995
14996 Numerical values are deprecated, and should be dropped in favor of
14997 symbolic constants.
14998
14999 @item passthrough
15000 Do not apply the transposition if the input geometry matches the one
15001 specified by the specified value. It accepts the following values:
15002 @table @samp
15003 @item none
15004 Always apply transposition.
15005 @item portrait
15006 Preserve portrait geometry (when @var{height} >= @var{width}).
15007 @item landscape
15008 Preserve landscape geometry (when @var{width} >= @var{height}).
15009 @end table
15010
15011 Default value is @code{none}.
15012 @end table
15013
15014 For example to rotate by 90 degrees clockwise and preserve portrait
15015 layout:
15016 @example
15017 transpose=dir=1:passthrough=portrait
15018 @end example
15019
15020 The command above can also be specified as:
15021 @example
15022 transpose=1:portrait
15023 @end example
15024
15025 @section trim
15026 Trim the input so that the output contains one continuous subpart of the input.
15027
15028 It accepts the following parameters:
15029 @table @option
15030 @item start
15031 Specify the time of the start of the kept section, i.e. the frame with the
15032 timestamp @var{start} will be the first frame in the output.
15033
15034 @item end
15035 Specify the time of the first frame that will be dropped, i.e. the frame
15036 immediately preceding the one with the timestamp @var{end} will be the last
15037 frame in the output.
15038
15039 @item start_pts
15040 This is the same as @var{start}, except this option sets the start timestamp
15041 in timebase units instead of seconds.
15042
15043 @item end_pts
15044 This is the same as @var{end}, except this option sets the end timestamp
15045 in timebase units instead of seconds.
15046
15047 @item duration
15048 The maximum duration of the output in seconds.
15049
15050 @item start_frame
15051 The number of the first frame that should be passed to the output.
15052
15053 @item end_frame
15054 The number of the first frame that should be dropped.
15055 @end table
15056
15057 @option{start}, @option{end}, and @option{duration} are expressed as time
15058 duration specifications; see
15059 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15060 for the accepted syntax.
15061
15062 Note that the first two sets of the start/end options and the @option{duration}
15063 option look at the frame timestamp, while the _frame variants simply count the
15064 frames that pass through the filter. Also note that this filter does not modify
15065 the timestamps. If you wish for the output timestamps to start at zero, insert a
15066 setpts filter after the trim filter.
15067
15068 If multiple start or end options are set, this filter tries to be greedy and
15069 keep all the frames that match at least one of the specified constraints. To keep
15070 only the part that matches all the constraints at once, chain multiple trim
15071 filters.
15072
15073 The defaults are such that all the input is kept. So it is possible to set e.g.
15074 just the end values to keep everything before the specified time.
15075
15076 Examples:
15077 @itemize
15078 @item
15079 Drop everything except the second minute of input:
15080 @example
15081 ffmpeg -i INPUT -vf trim=60:120
15082 @end example
15083
15084 @item
15085 Keep only the first second:
15086 @example
15087 ffmpeg -i INPUT -vf trim=duration=1
15088 @end example
15089
15090 @end itemize
15091
15092 @section unpremultiply
15093 Apply alpha unpremultiply effect to input video stream using first plane
15094 of second stream as alpha.
15095
15096 Both streams must have same dimensions and same pixel format.
15097
15098 The filter accepts the following option:
15099
15100 @table @option
15101 @item planes
15102 Set which planes will be processed, unprocessed planes will be copied.
15103 By default value 0xf, all planes will be processed.
15104
15105 If the format has 1 or 2 components, then luma is bit 0.
15106 If the format has 3 or 4 components:
15107 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
15108 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
15109 If present, the alpha channel is always the last bit.
15110
15111 @item inplace
15112 Do not require 2nd input for processing, instead use alpha plane from input stream.
15113 @end table
15114
15115 @anchor{unsharp}
15116 @section unsharp
15117
15118 Sharpen or blur the input video.
15119
15120 It accepts the following parameters:
15121
15122 @table @option
15123 @item luma_msize_x, lx
15124 Set the luma matrix horizontal size. It must be an odd integer between
15125 3 and 23. The default value is 5.
15126
15127 @item luma_msize_y, ly
15128 Set the luma matrix vertical size. It must be an odd integer between 3
15129 and 23. The default value is 5.
15130
15131 @item luma_amount, la
15132 Set the luma effect strength. It must be a floating point number, reasonable
15133 values lay between -1.5 and 1.5.
15134
15135 Negative values will blur the input video, while positive values will
15136 sharpen it, a value of zero will disable the effect.
15137
15138 Default value is 1.0.
15139
15140 @item chroma_msize_x, cx
15141 Set the chroma matrix horizontal size. It must be an odd integer
15142 between 3 and 23. The default value is 5.
15143
15144 @item chroma_msize_y, cy
15145 Set the chroma matrix vertical size. It must be an odd integer
15146 between 3 and 23. The default value is 5.
15147
15148 @item chroma_amount, ca
15149 Set the chroma effect strength. It must be a floating point number, reasonable
15150 values lay between -1.5 and 1.5.
15151
15152 Negative values will blur the input video, while positive values will
15153 sharpen it, a value of zero will disable the effect.
15154
15155 Default value is 0.0.
15156
15157 @end table
15158
15159 All parameters are optional and default to the equivalent of the
15160 string '5:5:1.0:5:5:0.0'.
15161
15162 @subsection Examples
15163
15164 @itemize
15165 @item
15166 Apply strong luma sharpen effect:
15167 @example
15168 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
15169 @end example
15170
15171 @item
15172 Apply a strong blur of both luma and chroma parameters:
15173 @example
15174 unsharp=7:7:-2:7:7:-2
15175 @end example
15176 @end itemize
15177
15178 @section uspp
15179
15180 Apply ultra slow/simple postprocessing filter that compresses and decompresses
15181 the image at several (or - in the case of @option{quality} level @code{8} - all)
15182 shifts and average the results.
15183
15184 The way this differs from the behavior of spp is that uspp actually encodes &
15185 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
15186 DCT similar to MJPEG.
15187
15188 The filter accepts the following options:
15189
15190 @table @option
15191 @item quality
15192 Set quality. This option defines the number of levels for averaging. It accepts
15193 an integer in the range 0-8. If set to @code{0}, the filter will have no
15194 effect. A value of @code{8} means the higher quality. For each increment of
15195 that value the speed drops by a factor of approximately 2.  Default value is
15196 @code{3}.
15197
15198 @item qp
15199 Force a constant quantization parameter. If not set, the filter will use the QP
15200 from the video stream (if available).
15201 @end table
15202
15203 @section vaguedenoiser
15204
15205 Apply a wavelet based denoiser.
15206
15207 It transforms each frame from the video input into the wavelet domain,
15208 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
15209 the obtained coefficients. It does an inverse wavelet transform after.
15210 Due to wavelet properties, it should give a nice smoothed result, and
15211 reduced noise, without blurring picture features.
15212
15213 This filter accepts the following options:
15214
15215 @table @option
15216 @item threshold
15217 The filtering strength. The higher, the more filtered the video will be.
15218 Hard thresholding can use a higher threshold than soft thresholding
15219 before the video looks overfiltered. Default value is 2.
15220
15221 @item method
15222 The filtering method the filter will use.
15223
15224 It accepts the following values:
15225 @table @samp
15226 @item hard
15227 All values under the threshold will be zeroed.
15228
15229 @item soft
15230 All values under the threshold will be zeroed. All values above will be
15231 reduced by the threshold.
15232
15233 @item garrote
15234 Scales or nullifies coefficients - intermediary between (more) soft and
15235 (less) hard thresholding.
15236 @end table
15237
15238 Default is garrote.
15239
15240 @item nsteps
15241 Number of times, the wavelet will decompose the picture. Picture can't
15242 be decomposed beyond a particular point (typically, 8 for a 640x480
15243 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
15244
15245 @item percent
15246 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
15247
15248 @item planes
15249 A list of the planes to process. By default all planes are processed.
15250 @end table
15251
15252 @section vectorscope
15253
15254 Display 2 color component values in the two dimensional graph (which is called
15255 a vectorscope).
15256
15257 This filter accepts the following options:
15258
15259 @table @option
15260 @item mode, m
15261 Set vectorscope mode.
15262
15263 It accepts the following values:
15264 @table @samp
15265 @item gray
15266 Gray values are displayed on graph, higher brightness means more pixels have
15267 same component color value on location in graph. This is the default mode.
15268
15269 @item color
15270 Gray values are displayed on graph. Surrounding pixels values which are not
15271 present in video frame are drawn in gradient of 2 color components which are
15272 set by option @code{x} and @code{y}. The 3rd color component is static.
15273
15274 @item color2
15275 Actual color components values present in video frame are displayed on graph.
15276
15277 @item color3
15278 Similar as color2 but higher frequency of same values @code{x} and @code{y}
15279 on graph increases value of another color component, which is luminance by
15280 default values of @code{x} and @code{y}.
15281
15282 @item color4
15283 Actual colors present in video frame are displayed on graph. If two different
15284 colors map to same position on graph then color with higher value of component
15285 not present in graph is picked.
15286
15287 @item color5
15288 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
15289 component picked from radial gradient.
15290 @end table
15291
15292 @item x
15293 Set which color component will be represented on X-axis. Default is @code{1}.
15294
15295 @item y
15296 Set which color component will be represented on Y-axis. Default is @code{2}.
15297
15298 @item intensity, i
15299 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
15300 of color component which represents frequency of (X, Y) location in graph.
15301
15302 @item envelope, e
15303 @table @samp
15304 @item none
15305 No envelope, this is default.
15306
15307 @item instant
15308 Instant envelope, even darkest single pixel will be clearly highlighted.
15309
15310 @item peak
15311 Hold maximum and minimum values presented in graph over time. This way you
15312 can still spot out of range values without constantly looking at vectorscope.
15313
15314 @item peak+instant
15315 Peak and instant envelope combined together.
15316 @end table
15317
15318 @item graticule, g
15319 Set what kind of graticule to draw.
15320 @table @samp
15321 @item none
15322 @item green
15323 @item color
15324 @end table
15325
15326 @item opacity, o
15327 Set graticule opacity.
15328
15329 @item flags, f
15330 Set graticule flags.
15331
15332 @table @samp
15333 @item white
15334 Draw graticule for white point.
15335
15336 @item black
15337 Draw graticule for black point.
15338
15339 @item name
15340 Draw color points short names.
15341 @end table
15342
15343 @item bgopacity, b
15344 Set background opacity.
15345
15346 @item lthreshold, l
15347 Set low threshold for color component not represented on X or Y axis.
15348 Values lower than this value will be ignored. Default is 0.
15349 Note this value is multiplied with actual max possible value one pixel component
15350 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
15351 is 0.1 * 255 = 25.
15352
15353 @item hthreshold, h
15354 Set high threshold for color component not represented on X or Y axis.
15355 Values higher than this value will be ignored. Default is 1.
15356 Note this value is multiplied with actual max possible value one pixel component
15357 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
15358 is 0.9 * 255 = 230.
15359
15360 @item colorspace, c
15361 Set what kind of colorspace to use when drawing graticule.
15362 @table @samp
15363 @item auto
15364 @item 601
15365 @item 709
15366 @end table
15367 Default is auto.
15368 @end table
15369
15370 @anchor{vidstabdetect}
15371 @section vidstabdetect
15372
15373 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
15374 @ref{vidstabtransform} for pass 2.
15375
15376 This filter generates a file with relative translation and rotation
15377 transform information about subsequent frames, which is then used by
15378 the @ref{vidstabtransform} filter.
15379
15380 To enable compilation of this filter you need to configure FFmpeg with
15381 @code{--enable-libvidstab}.
15382
15383 This filter accepts the following options:
15384
15385 @table @option
15386 @item result
15387 Set the path to the file used to write the transforms information.
15388 Default value is @file{transforms.trf}.
15389
15390 @item shakiness
15391 Set how shaky the video is and how quick the camera is. It accepts an
15392 integer in the range 1-10, a value of 1 means little shakiness, a
15393 value of 10 means strong shakiness. Default value is 5.
15394
15395 @item accuracy
15396 Set the accuracy of the detection process. It must be a value in the
15397 range 1-15. A value of 1 means low accuracy, a value of 15 means high
15398 accuracy. Default value is 15.
15399
15400 @item stepsize
15401 Set stepsize of the search process. The region around minimum is
15402 scanned with 1 pixel resolution. Default value is 6.
15403
15404 @item mincontrast
15405 Set minimum contrast. Below this value a local measurement field is
15406 discarded. Must be a floating point value in the range 0-1. Default
15407 value is 0.3.
15408
15409 @item tripod
15410 Set reference frame number for tripod mode.
15411
15412 If enabled, the motion of the frames is compared to a reference frame
15413 in the filtered stream, identified by the specified number. The idea
15414 is to compensate all movements in a more-or-less static scene and keep
15415 the camera view absolutely still.
15416
15417 If set to 0, it is disabled. The frames are counted starting from 1.
15418
15419 @item show
15420 Show fields and transforms in the resulting frames. It accepts an
15421 integer in the range 0-2. Default value is 0, which disables any
15422 visualization.
15423 @end table
15424
15425 @subsection Examples
15426
15427 @itemize
15428 @item
15429 Use default values:
15430 @example
15431 vidstabdetect
15432 @end example
15433
15434 @item
15435 Analyze strongly shaky movie and put the results in file
15436 @file{mytransforms.trf}:
15437 @example
15438 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
15439 @end example
15440
15441 @item
15442 Visualize the result of internal transformations in the resulting
15443 video:
15444 @example
15445 vidstabdetect=show=1
15446 @end example
15447
15448 @item
15449 Analyze a video with medium shakiness using @command{ffmpeg}:
15450 @example
15451 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
15452 @end example
15453 @end itemize
15454
15455 @anchor{vidstabtransform}
15456 @section vidstabtransform
15457
15458 Video stabilization/deshaking: pass 2 of 2,
15459 see @ref{vidstabdetect} for pass 1.
15460
15461 Read a file with transform information for each frame and
15462 apply/compensate them. Together with the @ref{vidstabdetect}
15463 filter this can be used to deshake videos. See also
15464 @url{http://public.hronopik.de/vid.stab}. It is important to also use
15465 the @ref{unsharp} filter, see below.
15466
15467 To enable compilation of this filter you need to configure FFmpeg with
15468 @code{--enable-libvidstab}.
15469
15470 @subsection Options
15471
15472 @table @option
15473 @item input
15474 Set path to the file used to read the transforms. Default value is
15475 @file{transforms.trf}.
15476
15477 @item smoothing
15478 Set the number of frames (value*2 + 1) used for lowpass filtering the
15479 camera movements. Default value is 10.
15480
15481 For example a number of 10 means that 21 frames are used (10 in the
15482 past and 10 in the future) to smoothen the motion in the video. A
15483 larger value leads to a smoother video, but limits the acceleration of
15484 the camera (pan/tilt movements). 0 is a special case where a static
15485 camera is simulated.
15486
15487 @item optalgo
15488 Set the camera path optimization algorithm.
15489
15490 Accepted values are:
15491 @table @samp
15492 @item gauss
15493 gaussian kernel low-pass filter on camera motion (default)
15494 @item avg
15495 averaging on transformations
15496 @end table
15497
15498 @item maxshift
15499 Set maximal number of pixels to translate frames. Default value is -1,
15500 meaning no limit.
15501
15502 @item maxangle
15503 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
15504 value is -1, meaning no limit.
15505
15506 @item crop
15507 Specify how to deal with borders that may be visible due to movement
15508 compensation.
15509
15510 Available values are:
15511 @table @samp
15512 @item keep
15513 keep image information from previous frame (default)
15514 @item black
15515 fill the border black
15516 @end table
15517
15518 @item invert
15519 Invert transforms if set to 1. Default value is 0.
15520
15521 @item relative
15522 Consider transforms as relative to previous frame if set to 1,
15523 absolute if set to 0. Default value is 0.
15524
15525 @item zoom
15526 Set percentage to zoom. A positive value will result in a zoom-in
15527 effect, a negative value in a zoom-out effect. Default value is 0 (no
15528 zoom).
15529
15530 @item optzoom
15531 Set optimal zooming to avoid borders.
15532
15533 Accepted values are:
15534 @table @samp
15535 @item 0
15536 disabled
15537 @item 1
15538 optimal static zoom value is determined (only very strong movements
15539 will lead to visible borders) (default)
15540 @item 2
15541 optimal adaptive zoom value is determined (no borders will be
15542 visible), see @option{zoomspeed}
15543 @end table
15544
15545 Note that the value given at zoom is added to the one calculated here.
15546
15547 @item zoomspeed
15548 Set percent to zoom maximally each frame (enabled when
15549 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
15550 0.25.
15551
15552 @item interpol
15553 Specify type of interpolation.
15554
15555 Available values are:
15556 @table @samp
15557 @item no
15558 no interpolation
15559 @item linear
15560 linear only horizontal
15561 @item bilinear
15562 linear in both directions (default)
15563 @item bicubic
15564 cubic in both directions (slow)
15565 @end table
15566
15567 @item tripod
15568 Enable virtual tripod mode if set to 1, which is equivalent to
15569 @code{relative=0:smoothing=0}. Default value is 0.
15570
15571 Use also @code{tripod} option of @ref{vidstabdetect}.
15572
15573 @item debug
15574 Increase log verbosity if set to 1. Also the detected global motions
15575 are written to the temporary file @file{global_motions.trf}. Default
15576 value is 0.
15577 @end table
15578
15579 @subsection Examples
15580
15581 @itemize
15582 @item
15583 Use @command{ffmpeg} for a typical stabilization with default values:
15584 @example
15585 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
15586 @end example
15587
15588 Note the use of the @ref{unsharp} filter which is always recommended.
15589
15590 @item
15591 Zoom in a bit more and load transform data from a given file:
15592 @example
15593 vidstabtransform=zoom=5:input="mytransforms.trf"
15594 @end example
15595
15596 @item
15597 Smoothen the video even more:
15598 @example
15599 vidstabtransform=smoothing=30
15600 @end example
15601 @end itemize
15602
15603 @section vflip
15604
15605 Flip the input video vertically.
15606
15607 For example, to vertically flip a video with @command{ffmpeg}:
15608 @example
15609 ffmpeg -i in.avi -vf "vflip" out.avi
15610 @end example
15611
15612 @anchor{vignette}
15613 @section vignette
15614
15615 Make or reverse a natural vignetting effect.
15616
15617 The filter accepts the following options:
15618
15619 @table @option
15620 @item angle, a
15621 Set lens angle expression as a number of radians.
15622
15623 The value is clipped in the @code{[0,PI/2]} range.
15624
15625 Default value: @code{"PI/5"}
15626
15627 @item x0
15628 @item y0
15629 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
15630 by default.
15631
15632 @item mode
15633 Set forward/backward mode.
15634
15635 Available modes are:
15636 @table @samp
15637 @item forward
15638 The larger the distance from the central point, the darker the image becomes.
15639
15640 @item backward
15641 The larger the distance from the central point, the brighter the image becomes.
15642 This can be used to reverse a vignette effect, though there is no automatic
15643 detection to extract the lens @option{angle} and other settings (yet). It can
15644 also be used to create a burning effect.
15645 @end table
15646
15647 Default value is @samp{forward}.
15648
15649 @item eval
15650 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
15651
15652 It accepts the following values:
15653 @table @samp
15654 @item init
15655 Evaluate expressions only once during the filter initialization.
15656
15657 @item frame
15658 Evaluate expressions for each incoming frame. This is way slower than the
15659 @samp{init} mode since it requires all the scalers to be re-computed, but it
15660 allows advanced dynamic expressions.
15661 @end table
15662
15663 Default value is @samp{init}.
15664
15665 @item dither
15666 Set dithering to reduce the circular banding effects. Default is @code{1}
15667 (enabled).
15668
15669 @item aspect
15670 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
15671 Setting this value to the SAR of the input will make a rectangular vignetting
15672 following the dimensions of the video.
15673
15674 Default is @code{1/1}.
15675 @end table
15676
15677 @subsection Expressions
15678
15679 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
15680 following parameters.
15681
15682 @table @option
15683 @item w
15684 @item h
15685 input width and height
15686
15687 @item n
15688 the number of input frame, starting from 0
15689
15690 @item pts
15691 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
15692 @var{TB} units, NAN if undefined
15693
15694 @item r
15695 frame rate of the input video, NAN if the input frame rate is unknown
15696
15697 @item t
15698 the PTS (Presentation TimeStamp) of the filtered video frame,
15699 expressed in seconds, NAN if undefined
15700
15701 @item tb
15702 time base of the input video
15703 @end table
15704
15705
15706 @subsection Examples
15707
15708 @itemize
15709 @item
15710 Apply simple strong vignetting effect:
15711 @example
15712 vignette=PI/4
15713 @end example
15714
15715 @item
15716 Make a flickering vignetting:
15717 @example
15718 vignette='PI/4+random(1)*PI/50':eval=frame
15719 @end example
15720
15721 @end itemize
15722
15723 @section vmafmotion
15724
15725 Obtain the average vmaf motion score of a video.
15726 It is one of the component filters of VMAF.
15727
15728 The obtained average motion score is printed through the logging system.
15729
15730 In the below example the input file @file{ref.mpg} is being processed and score
15731 is computed.
15732
15733 @example
15734 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
15735 @end example
15736
15737 @section vstack
15738 Stack input videos vertically.
15739
15740 All streams must be of same pixel format and of same width.
15741
15742 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
15743 to create same output.
15744
15745 The filter accept the following option:
15746
15747 @table @option
15748 @item inputs
15749 Set number of input streams. Default is 2.
15750
15751 @item shortest
15752 If set to 1, force the output to terminate when the shortest input
15753 terminates. Default value is 0.
15754 @end table
15755
15756 @section w3fdif
15757
15758 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
15759 Deinterlacing Filter").
15760
15761 Based on the process described by Martin Weston for BBC R&D, and
15762 implemented based on the de-interlace algorithm written by Jim
15763 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
15764 uses filter coefficients calculated by BBC R&D.
15765
15766 There are two sets of filter coefficients, so called "simple":
15767 and "complex". Which set of filter coefficients is used can
15768 be set by passing an optional parameter:
15769
15770 @table @option
15771 @item filter
15772 Set the interlacing filter coefficients. Accepts one of the following values:
15773
15774 @table @samp
15775 @item simple
15776 Simple filter coefficient set.
15777 @item complex
15778 More-complex filter coefficient set.
15779 @end table
15780 Default value is @samp{complex}.
15781
15782 @item deint
15783 Specify which frames to deinterlace. Accept one of the following values:
15784
15785 @table @samp
15786 @item all
15787 Deinterlace all frames,
15788 @item interlaced
15789 Only deinterlace frames marked as interlaced.
15790 @end table
15791
15792 Default value is @samp{all}.
15793 @end table
15794
15795 @section waveform
15796 Video waveform monitor.
15797
15798 The waveform monitor plots color component intensity. By default luminance
15799 only. Each column of the waveform corresponds to a column of pixels in the
15800 source video.
15801
15802 It accepts the following options:
15803
15804 @table @option
15805 @item mode, m
15806 Can be either @code{row}, or @code{column}. Default is @code{column}.
15807 In row mode, the graph on the left side represents color component value 0 and
15808 the right side represents value = 255. In column mode, the top side represents
15809 color component value = 0 and bottom side represents value = 255.
15810
15811 @item intensity, i
15812 Set intensity. Smaller values are useful to find out how many values of the same
15813 luminance are distributed across input rows/columns.
15814 Default value is @code{0.04}. Allowed range is [0, 1].
15815
15816 @item mirror, r
15817 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
15818 In mirrored mode, higher values will be represented on the left
15819 side for @code{row} mode and at the top for @code{column} mode. Default is
15820 @code{1} (mirrored).
15821
15822 @item display, d
15823 Set display mode.
15824 It accepts the following values:
15825 @table @samp
15826 @item overlay
15827 Presents information identical to that in the @code{parade}, except
15828 that the graphs representing color components are superimposed directly
15829 over one another.
15830
15831 This display mode makes it easier to spot relative differences or similarities
15832 in overlapping areas of the color components that are supposed to be identical,
15833 such as neutral whites, grays, or blacks.
15834
15835 @item stack
15836 Display separate graph for the color components side by side in
15837 @code{row} mode or one below the other in @code{column} mode.
15838
15839 @item parade
15840 Display separate graph for the color components side by side in
15841 @code{column} mode or one below the other in @code{row} mode.
15842
15843 Using this display mode makes it easy to spot color casts in the highlights
15844 and shadows of an image, by comparing the contours of the top and the bottom
15845 graphs of each waveform. Since whites, grays, and blacks are characterized
15846 by exactly equal amounts of red, green, and blue, neutral areas of the picture
15847 should display three waveforms of roughly equal width/height. If not, the
15848 correction is easy to perform by making level adjustments the three waveforms.
15849 @end table
15850 Default is @code{stack}.
15851
15852 @item components, c
15853 Set which color components to display. Default is 1, which means only luminance
15854 or red color component if input is in RGB colorspace. If is set for example to
15855 7 it will display all 3 (if) available color components.
15856
15857 @item envelope, e
15858 @table @samp
15859 @item none
15860 No envelope, this is default.
15861
15862 @item instant
15863 Instant envelope, minimum and maximum values presented in graph will be easily
15864 visible even with small @code{step} value.
15865
15866 @item peak
15867 Hold minimum and maximum values presented in graph across time. This way you
15868 can still spot out of range values without constantly looking at waveforms.
15869
15870 @item peak+instant
15871 Peak and instant envelope combined together.
15872 @end table
15873
15874 @item filter, f
15875 @table @samp
15876 @item lowpass
15877 No filtering, this is default.
15878
15879 @item flat
15880 Luma and chroma combined together.
15881
15882 @item aflat
15883 Similar as above, but shows difference between blue and red chroma.
15884
15885 @item chroma
15886 Displays only chroma.
15887
15888 @item color
15889 Displays actual color value on waveform.
15890
15891 @item acolor
15892 Similar as above, but with luma showing frequency of chroma values.
15893 @end table
15894
15895 @item graticule, g
15896 Set which graticule to display.
15897
15898 @table @samp
15899 @item none
15900 Do not display graticule.
15901
15902 @item green
15903 Display green graticule showing legal broadcast ranges.
15904 @end table
15905
15906 @item opacity, o
15907 Set graticule opacity.
15908
15909 @item flags, fl
15910 Set graticule flags.
15911
15912 @table @samp
15913 @item numbers
15914 Draw numbers above lines. By default enabled.
15915
15916 @item dots
15917 Draw dots instead of lines.
15918 @end table
15919
15920 @item scale, s
15921 Set scale used for displaying graticule.
15922
15923 @table @samp
15924 @item digital
15925 @item millivolts
15926 @item ire
15927 @end table
15928 Default is digital.
15929
15930 @item bgopacity, b
15931 Set background opacity.
15932 @end table
15933
15934 @section weave, doubleweave
15935
15936 The @code{weave} takes a field-based video input and join
15937 each two sequential fields into single frame, producing a new double
15938 height clip with half the frame rate and half the frame count.
15939
15940 The @code{doubleweave} works same as @code{weave} but without
15941 halving frame rate and frame count.
15942
15943 It accepts the following option:
15944
15945 @table @option
15946 @item first_field
15947 Set first field. Available values are:
15948
15949 @table @samp
15950 @item top, t
15951 Set the frame as top-field-first.
15952
15953 @item bottom, b
15954 Set the frame as bottom-field-first.
15955 @end table
15956 @end table
15957
15958 @subsection Examples
15959
15960 @itemize
15961 @item
15962 Interlace video using @ref{select} and @ref{separatefields} filter:
15963 @example
15964 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
15965 @end example
15966 @end itemize
15967
15968 @section xbr
15969 Apply the xBR high-quality magnification filter which is designed for pixel
15970 art. It follows a set of edge-detection rules, see
15971 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
15972
15973 It accepts the following option:
15974
15975 @table @option
15976 @item n
15977 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
15978 @code{3xBR} and @code{4} for @code{4xBR}.
15979 Default is @code{3}.
15980 @end table
15981
15982 @anchor{yadif}
15983 @section yadif
15984
15985 Deinterlace the input video ("yadif" means "yet another deinterlacing
15986 filter").
15987
15988 It accepts the following parameters:
15989
15990
15991 @table @option
15992
15993 @item mode
15994 The interlacing mode to adopt. It accepts one of the following values:
15995
15996 @table @option
15997 @item 0, send_frame
15998 Output one frame for each frame.
15999 @item 1, send_field
16000 Output one frame for each field.
16001 @item 2, send_frame_nospatial
16002 Like @code{send_frame}, but it skips the spatial interlacing check.
16003 @item 3, send_field_nospatial
16004 Like @code{send_field}, but it skips the spatial interlacing check.
16005 @end table
16006
16007 The default value is @code{send_frame}.
16008
16009 @item parity
16010 The picture field parity assumed for the input interlaced video. It accepts one
16011 of the following values:
16012
16013 @table @option
16014 @item 0, tff
16015 Assume the top field is first.
16016 @item 1, bff
16017 Assume the bottom field is first.
16018 @item -1, auto
16019 Enable automatic detection of field parity.
16020 @end table
16021
16022 The default value is @code{auto}.
16023 If the interlacing is unknown or the decoder does not export this information,
16024 top field first will be assumed.
16025
16026 @item deint
16027 Specify which frames to deinterlace. Accept one of the following
16028 values:
16029
16030 @table @option
16031 @item 0, all
16032 Deinterlace all frames.
16033 @item 1, interlaced
16034 Only deinterlace frames marked as interlaced.
16035 @end table
16036
16037 The default value is @code{all}.
16038 @end table
16039
16040 @section zoompan
16041
16042 Apply Zoom & Pan effect.
16043
16044 This filter accepts the following options:
16045
16046 @table @option
16047 @item zoom, z
16048 Set the zoom expression. Default is 1.
16049
16050 @item x
16051 @item y
16052 Set the x and y expression. Default is 0.
16053
16054 @item d
16055 Set the duration expression in number of frames.
16056 This sets for how many number of frames effect will last for
16057 single input image.
16058
16059 @item s
16060 Set the output image size, default is 'hd720'.
16061
16062 @item fps
16063 Set the output frame rate, default is '25'.
16064 @end table
16065
16066 Each expression can contain the following constants:
16067
16068 @table @option
16069 @item in_w, iw
16070 Input width.
16071
16072 @item in_h, ih
16073 Input height.
16074
16075 @item out_w, ow
16076 Output width.
16077
16078 @item out_h, oh
16079 Output height.
16080
16081 @item in
16082 Input frame count.
16083
16084 @item on
16085 Output frame count.
16086
16087 @item x
16088 @item y
16089 Last calculated 'x' and 'y' position from 'x' and 'y' expression
16090 for current input frame.
16091
16092 @item px
16093 @item py
16094 'x' and 'y' of last output frame of previous input frame or 0 when there was
16095 not yet such frame (first input frame).
16096
16097 @item zoom
16098 Last calculated zoom from 'z' expression for current input frame.
16099
16100 @item pzoom
16101 Last calculated zoom of last output frame of previous input frame.
16102
16103 @item duration
16104 Number of output frames for current input frame. Calculated from 'd' expression
16105 for each input frame.
16106
16107 @item pduration
16108 number of output frames created for previous input frame
16109
16110 @item a
16111 Rational number: input width / input height
16112
16113 @item sar
16114 sample aspect ratio
16115
16116 @item dar
16117 display aspect ratio
16118
16119 @end table
16120
16121 @subsection Examples
16122
16123 @itemize
16124 @item
16125 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
16126 @example
16127 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
16128 @end example
16129
16130 @item
16131 Zoom-in up to 1.5 and pan always at center of picture:
16132 @example
16133 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
16134 @end example
16135
16136 @item
16137 Same as above but without pausing:
16138 @example
16139 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
16140 @end example
16141 @end itemize
16142
16143 @anchor{zscale}
16144 @section zscale
16145 Scale (resize) the input video, using the z.lib library:
16146 https://github.com/sekrit-twc/zimg.
16147
16148 The zscale filter forces the output display aspect ratio to be the same
16149 as the input, by changing the output sample aspect ratio.
16150
16151 If the input image format is different from the format requested by
16152 the next filter, the zscale filter will convert the input to the
16153 requested format.
16154
16155 @subsection Options
16156 The filter accepts the following options.
16157
16158 @table @option
16159 @item width, w
16160 @item height, h
16161 Set the output video dimension expression. Default value is the input
16162 dimension.
16163
16164 If the @var{width} or @var{w} value is 0, the input width is used for
16165 the output. If the @var{height} or @var{h} value is 0, the input height
16166 is used for the output.
16167
16168 If one and only one of the values is -n with n >= 1, the zscale filter
16169 will use a value that maintains the aspect ratio of the input image,
16170 calculated from the other specified dimension. After that it will,
16171 however, make sure that the calculated dimension is divisible by n and
16172 adjust the value if necessary.
16173
16174 If both values are -n with n >= 1, the behavior will be identical to
16175 both values being set to 0 as previously detailed.
16176
16177 See below for the list of accepted constants for use in the dimension
16178 expression.
16179
16180 @item size, s
16181 Set the video size. For the syntax of this option, check the
16182 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16183
16184 @item dither, d
16185 Set the dither type.
16186
16187 Possible values are:
16188 @table @var
16189 @item none
16190 @item ordered
16191 @item random
16192 @item error_diffusion
16193 @end table
16194
16195 Default is none.
16196
16197 @item filter, f
16198 Set the resize filter type.
16199
16200 Possible values are:
16201 @table @var
16202 @item point
16203 @item bilinear
16204 @item bicubic
16205 @item spline16
16206 @item spline36
16207 @item lanczos
16208 @end table
16209
16210 Default is bilinear.
16211
16212 @item range, r
16213 Set the color range.
16214
16215 Possible values are:
16216 @table @var
16217 @item input
16218 @item limited
16219 @item full
16220 @end table
16221
16222 Default is same as input.
16223
16224 @item primaries, p
16225 Set the color primaries.
16226
16227 Possible values are:
16228 @table @var
16229 @item input
16230 @item 709
16231 @item unspecified
16232 @item 170m
16233 @item 240m
16234 @item 2020
16235 @end table
16236
16237 Default is same as input.
16238
16239 @item transfer, t
16240 Set the transfer characteristics.
16241
16242 Possible values are:
16243 @table @var
16244 @item input
16245 @item 709
16246 @item unspecified
16247 @item 601
16248 @item linear
16249 @item 2020_10
16250 @item 2020_12
16251 @item smpte2084
16252 @item iec61966-2-1
16253 @item arib-std-b67
16254 @end table
16255
16256 Default is same as input.
16257
16258 @item matrix, m
16259 Set the colorspace matrix.
16260
16261 Possible value are:
16262 @table @var
16263 @item input
16264 @item 709
16265 @item unspecified
16266 @item 470bg
16267 @item 170m
16268 @item 2020_ncl
16269 @item 2020_cl
16270 @end table
16271
16272 Default is same as input.
16273
16274 @item rangein, rin
16275 Set the input color range.
16276
16277 Possible values are:
16278 @table @var
16279 @item input
16280 @item limited
16281 @item full
16282 @end table
16283
16284 Default is same as input.
16285
16286 @item primariesin, pin
16287 Set the input color primaries.
16288
16289 Possible values are:
16290 @table @var
16291 @item input
16292 @item 709
16293 @item unspecified
16294 @item 170m
16295 @item 240m
16296 @item 2020
16297 @end table
16298
16299 Default is same as input.
16300
16301 @item transferin, tin
16302 Set the input transfer characteristics.
16303
16304 Possible values are:
16305 @table @var
16306 @item input
16307 @item 709
16308 @item unspecified
16309 @item 601
16310 @item linear
16311 @item 2020_10
16312 @item 2020_12
16313 @end table
16314
16315 Default is same as input.
16316
16317 @item matrixin, min
16318 Set the input colorspace matrix.
16319
16320 Possible value are:
16321 @table @var
16322 @item input
16323 @item 709
16324 @item unspecified
16325 @item 470bg
16326 @item 170m
16327 @item 2020_ncl
16328 @item 2020_cl
16329 @end table
16330
16331 @item chromal, c
16332 Set the output chroma location.
16333
16334 Possible values are:
16335 @table @var
16336 @item input
16337 @item left
16338 @item center
16339 @item topleft
16340 @item top
16341 @item bottomleft
16342 @item bottom
16343 @end table
16344
16345 @item chromalin, cin
16346 Set the input chroma location.
16347
16348 Possible values are:
16349 @table @var
16350 @item input
16351 @item left
16352 @item center
16353 @item topleft
16354 @item top
16355 @item bottomleft
16356 @item bottom
16357 @end table
16358
16359 @item npl
16360 Set the nominal peak luminance.
16361 @end table
16362
16363 The values of the @option{w} and @option{h} options are expressions
16364 containing the following constants:
16365
16366 @table @var
16367 @item in_w
16368 @item in_h
16369 The input width and height
16370
16371 @item iw
16372 @item ih
16373 These are the same as @var{in_w} and @var{in_h}.
16374
16375 @item out_w
16376 @item out_h
16377 The output (scaled) width and height
16378
16379 @item ow
16380 @item oh
16381 These are the same as @var{out_w} and @var{out_h}
16382
16383 @item a
16384 The same as @var{iw} / @var{ih}
16385
16386 @item sar
16387 input sample aspect ratio
16388
16389 @item dar
16390 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16391
16392 @item hsub
16393 @item vsub
16394 horizontal and vertical input chroma subsample values. For example for the
16395 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16396
16397 @item ohsub
16398 @item ovsub
16399 horizontal and vertical output chroma subsample values. For example for the
16400 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16401 @end table
16402
16403 @table @option
16404 @end table
16405
16406 @c man end VIDEO FILTERS
16407
16408 @chapter Video Sources
16409 @c man begin VIDEO SOURCES
16410
16411 Below is a description of the currently available video sources.
16412
16413 @section buffer
16414
16415 Buffer video frames, and make them available to the filter chain.
16416
16417 This source is mainly intended for a programmatic use, in particular
16418 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
16419
16420 It accepts the following parameters:
16421
16422 @table @option
16423
16424 @item video_size
16425 Specify the size (width and height) of the buffered video frames. For the
16426 syntax of this option, check the
16427 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16428
16429 @item width
16430 The input video width.
16431
16432 @item height
16433 The input video height.
16434
16435 @item pix_fmt
16436 A string representing the pixel format of the buffered video frames.
16437 It may be a number corresponding to a pixel format, or a pixel format
16438 name.
16439
16440 @item time_base
16441 Specify the timebase assumed by the timestamps of the buffered frames.
16442
16443 @item frame_rate
16444 Specify the frame rate expected for the video stream.
16445
16446 @item pixel_aspect, sar
16447 The sample (pixel) aspect ratio of the input video.
16448
16449 @item sws_param
16450 Specify the optional parameters to be used for the scale filter which
16451 is automatically inserted when an input change is detected in the
16452 input size or format.
16453
16454 @item hw_frames_ctx
16455 When using a hardware pixel format, this should be a reference to an
16456 AVHWFramesContext describing input frames.
16457 @end table
16458
16459 For example:
16460 @example
16461 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
16462 @end example
16463
16464 will instruct the source to accept video frames with size 320x240 and
16465 with format "yuv410p", assuming 1/24 as the timestamps timebase and
16466 square pixels (1:1 sample aspect ratio).
16467 Since the pixel format with name "yuv410p" corresponds to the number 6
16468 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
16469 this example corresponds to:
16470 @example
16471 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
16472 @end example
16473
16474 Alternatively, the options can be specified as a flat string, but this
16475 syntax is deprecated:
16476
16477 @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}]
16478
16479 @section cellauto
16480
16481 Create a pattern generated by an elementary cellular automaton.
16482
16483 The initial state of the cellular automaton can be defined through the
16484 @option{filename} and @option{pattern} options. If such options are
16485 not specified an initial state is created randomly.
16486
16487 At each new frame a new row in the video is filled with the result of
16488 the cellular automaton next generation. The behavior when the whole
16489 frame is filled is defined by the @option{scroll} option.
16490
16491 This source accepts the following options:
16492
16493 @table @option
16494 @item filename, f
16495 Read the initial cellular automaton state, i.e. the starting row, from
16496 the specified file.
16497 In the file, each non-whitespace character is considered an alive
16498 cell, a newline will terminate the row, and further characters in the
16499 file will be ignored.
16500
16501 @item pattern, p
16502 Read the initial cellular automaton state, i.e. the starting row, from
16503 the specified string.
16504
16505 Each non-whitespace character in the string is considered an alive
16506 cell, a newline will terminate the row, and further characters in the
16507 string will be ignored.
16508
16509 @item rate, r
16510 Set the video rate, that is the number of frames generated per second.
16511 Default is 25.
16512
16513 @item random_fill_ratio, ratio
16514 Set the random fill ratio for the initial cellular automaton row. It
16515 is a floating point number value ranging from 0 to 1, defaults to
16516 1/PHI.
16517
16518 This option is ignored when a file or a pattern is specified.
16519
16520 @item random_seed, seed
16521 Set the seed for filling randomly the initial row, must be an integer
16522 included between 0 and UINT32_MAX. If not specified, or if explicitly
16523 set to -1, the filter will try to use a good random seed on a best
16524 effort basis.
16525
16526 @item rule
16527 Set the cellular automaton rule, it is a number ranging from 0 to 255.
16528 Default value is 110.
16529
16530 @item size, s
16531 Set the size of the output video. For the syntax of this option, check the
16532 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16533
16534 If @option{filename} or @option{pattern} is specified, the size is set
16535 by default to the width of the specified initial state row, and the
16536 height is set to @var{width} * PHI.
16537
16538 If @option{size} is set, it must contain the width of the specified
16539 pattern string, and the specified pattern will be centered in the
16540 larger row.
16541
16542 If a filename or a pattern string is not specified, the size value
16543 defaults to "320x518" (used for a randomly generated initial state).
16544
16545 @item scroll
16546 If set to 1, scroll the output upward when all the rows in the output
16547 have been already filled. If set to 0, the new generated row will be
16548 written over the top row just after the bottom row is filled.
16549 Defaults to 1.
16550
16551 @item start_full, full
16552 If set to 1, completely fill the output with generated rows before
16553 outputting the first frame.
16554 This is the default behavior, for disabling set the value to 0.
16555
16556 @item stitch
16557 If set to 1, stitch the left and right row edges together.
16558 This is the default behavior, for disabling set the value to 0.
16559 @end table
16560
16561 @subsection Examples
16562
16563 @itemize
16564 @item
16565 Read the initial state from @file{pattern}, and specify an output of
16566 size 200x400.
16567 @example
16568 cellauto=f=pattern:s=200x400
16569 @end example
16570
16571 @item
16572 Generate a random initial row with a width of 200 cells, with a fill
16573 ratio of 2/3:
16574 @example
16575 cellauto=ratio=2/3:s=200x200
16576 @end example
16577
16578 @item
16579 Create a pattern generated by rule 18 starting by a single alive cell
16580 centered on an initial row with width 100:
16581 @example
16582 cellauto=p=@@:s=100x400:full=0:rule=18
16583 @end example
16584
16585 @item
16586 Specify a more elaborated initial pattern:
16587 @example
16588 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
16589 @end example
16590
16591 @end itemize
16592
16593 @anchor{coreimagesrc}
16594 @section coreimagesrc
16595 Video source generated on GPU using Apple's CoreImage API on OSX.
16596
16597 This video source is a specialized version of the @ref{coreimage} video filter.
16598 Use a core image generator at the beginning of the applied filterchain to
16599 generate the content.
16600
16601 The coreimagesrc video source accepts the following options:
16602 @table @option
16603 @item list_generators
16604 List all available generators along with all their respective options as well as
16605 possible minimum and maximum values along with the default values.
16606 @example
16607 list_generators=true
16608 @end example
16609
16610 @item size, s
16611 Specify the size of the sourced video. For the syntax of this option, check the
16612 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16613 The default value is @code{320x240}.
16614
16615 @item rate, r
16616 Specify the frame rate of the sourced video, as the number of frames
16617 generated per second. It has to be a string in the format
16618 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
16619 number or a valid video frame rate abbreviation. The default value is
16620 "25".
16621
16622 @item sar
16623 Set the sample aspect ratio of the sourced video.
16624
16625 @item duration, d
16626 Set the duration of the sourced video. See
16627 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
16628 for the accepted syntax.
16629
16630 If not specified, or the expressed duration is negative, the video is
16631 supposed to be generated forever.
16632 @end table
16633
16634 Additionally, all options of the @ref{coreimage} video filter are accepted.
16635 A complete filterchain can be used for further processing of the
16636 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
16637 and examples for details.
16638
16639 @subsection Examples
16640
16641 @itemize
16642
16643 @item
16644 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
16645 given as complete and escaped command-line for Apple's standard bash shell:
16646 @example
16647 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
16648 @end example
16649 This example is equivalent to the QRCode example of @ref{coreimage} without the
16650 need for a nullsrc video source.
16651 @end itemize
16652
16653
16654 @section mandelbrot
16655
16656 Generate a Mandelbrot set fractal, and progressively zoom towards the
16657 point specified with @var{start_x} and @var{start_y}.
16658
16659 This source accepts the following options:
16660
16661 @table @option
16662
16663 @item end_pts
16664 Set the terminal pts value. Default value is 400.
16665
16666 @item end_scale
16667 Set the terminal scale value.
16668 Must be a floating point value. Default value is 0.3.
16669
16670 @item inner
16671 Set the inner coloring mode, that is the algorithm used to draw the
16672 Mandelbrot fractal internal region.
16673
16674 It shall assume one of the following values:
16675 @table @option
16676 @item black
16677 Set black mode.
16678 @item convergence
16679 Show time until convergence.
16680 @item mincol
16681 Set color based on point closest to the origin of the iterations.
16682 @item period
16683 Set period mode.
16684 @end table
16685
16686 Default value is @var{mincol}.
16687
16688 @item bailout
16689 Set the bailout value. Default value is 10.0.
16690
16691 @item maxiter
16692 Set the maximum of iterations performed by the rendering
16693 algorithm. Default value is 7189.
16694
16695 @item outer
16696 Set outer coloring mode.
16697 It shall assume one of following values:
16698 @table @option
16699 @item iteration_count
16700 Set iteration cound mode.
16701 @item normalized_iteration_count
16702 set normalized iteration count mode.
16703 @end table
16704 Default value is @var{normalized_iteration_count}.
16705
16706 @item rate, r
16707 Set frame rate, expressed as number of frames per second. Default
16708 value is "25".
16709
16710 @item size, s
16711 Set frame size. For the syntax of this option, check the "Video
16712 size" section in the ffmpeg-utils manual. Default value is "640x480".
16713
16714 @item start_scale
16715 Set the initial scale value. Default value is 3.0.
16716
16717 @item start_x
16718 Set the initial x position. Must be a floating point value between
16719 -100 and 100. Default value is -0.743643887037158704752191506114774.
16720
16721 @item start_y
16722 Set the initial y position. Must be a floating point value between
16723 -100 and 100. Default value is -0.131825904205311970493132056385139.
16724 @end table
16725
16726 @section mptestsrc
16727
16728 Generate various test patterns, as generated by the MPlayer test filter.
16729
16730 The size of the generated video is fixed, and is 256x256.
16731 This source is useful in particular for testing encoding features.
16732
16733 This source accepts the following options:
16734
16735 @table @option
16736
16737 @item rate, r
16738 Specify the frame rate of the sourced video, as the number of frames
16739 generated per second. It has to be a string in the format
16740 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
16741 number or a valid video frame rate abbreviation. The default value is
16742 "25".
16743
16744 @item duration, d
16745 Set the duration of the sourced video. See
16746 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
16747 for the accepted syntax.
16748
16749 If not specified, or the expressed duration is negative, the video is
16750 supposed to be generated forever.
16751
16752 @item test, t
16753
16754 Set the number or the name of the test to perform. Supported tests are:
16755 @table @option
16756 @item dc_luma
16757 @item dc_chroma
16758 @item freq_luma
16759 @item freq_chroma
16760 @item amp_luma
16761 @item amp_chroma
16762 @item cbp
16763 @item mv
16764 @item ring1
16765 @item ring2
16766 @item all
16767
16768 @end table
16769
16770 Default value is "all", which will cycle through the list of all tests.
16771 @end table
16772
16773 Some examples:
16774 @example
16775 mptestsrc=t=dc_luma
16776 @end example
16777
16778 will generate a "dc_luma" test pattern.
16779
16780 @section frei0r_src
16781
16782 Provide a frei0r source.
16783
16784 To enable compilation of this filter you need to install the frei0r
16785 header and configure FFmpeg with @code{--enable-frei0r}.
16786
16787 This source accepts the following parameters:
16788
16789 @table @option
16790
16791 @item size
16792 The size of the video to generate. For the syntax of this option, check the
16793 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16794
16795 @item framerate
16796 The framerate of the generated video. It may be a string of the form
16797 @var{num}/@var{den} or a frame rate abbreviation.
16798
16799 @item filter_name
16800 The name to the frei0r source to load. For more information regarding frei0r and
16801 how to set the parameters, read the @ref{frei0r} section in the video filters
16802 documentation.
16803
16804 @item filter_params
16805 A '|'-separated list of parameters to pass to the frei0r source.
16806
16807 @end table
16808
16809 For example, to generate a frei0r partik0l source with size 200x200
16810 and frame rate 10 which is overlaid on the overlay filter main input:
16811 @example
16812 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
16813 @end example
16814
16815 @section life
16816
16817 Generate a life pattern.
16818
16819 This source is based on a generalization of John Conway's life game.
16820
16821 The sourced input represents a life grid, each pixel represents a cell
16822 which can be in one of two possible states, alive or dead. Every cell
16823 interacts with its eight neighbours, which are the cells that are
16824 horizontally, vertically, or diagonally adjacent.
16825
16826 At each interaction the grid evolves according to the adopted rule,
16827 which specifies the number of neighbor alive cells which will make a
16828 cell stay alive or born. The @option{rule} option allows one to specify
16829 the rule to adopt.
16830
16831 This source accepts the following options:
16832
16833 @table @option
16834 @item filename, f
16835 Set the file from which to read the initial grid state. In the file,
16836 each non-whitespace character is considered an alive cell, and newline
16837 is used to delimit the end of each row.
16838
16839 If this option is not specified, the initial grid is generated
16840 randomly.
16841
16842 @item rate, r
16843 Set the video rate, that is the number of frames generated per second.
16844 Default is 25.
16845
16846 @item random_fill_ratio, ratio
16847 Set the random fill ratio for the initial random grid. It is a
16848 floating point number value ranging from 0 to 1, defaults to 1/PHI.
16849 It is ignored when a file is specified.
16850
16851 @item random_seed, seed
16852 Set the seed for filling the initial random grid, must be an integer
16853 included between 0 and UINT32_MAX. If not specified, or if explicitly
16854 set to -1, the filter will try to use a good random seed on a best
16855 effort basis.
16856
16857 @item rule
16858 Set the life rule.
16859
16860 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
16861 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
16862 @var{NS} specifies the number of alive neighbor cells which make a
16863 live cell stay alive, and @var{NB} the number of alive neighbor cells
16864 which make a dead cell to become alive (i.e. to "born").
16865 "s" and "b" can be used in place of "S" and "B", respectively.
16866
16867 Alternatively a rule can be specified by an 18-bits integer. The 9
16868 high order bits are used to encode the next cell state if it is alive
16869 for each number of neighbor alive cells, the low order bits specify
16870 the rule for "borning" new cells. Higher order bits encode for an
16871 higher number of neighbor cells.
16872 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
16873 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
16874
16875 Default value is "S23/B3", which is the original Conway's game of life
16876 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
16877 cells, and will born a new cell if there are three alive cells around
16878 a dead cell.
16879
16880 @item size, s
16881 Set the size of the output video. For the syntax of this option, check the
16882 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16883
16884 If @option{filename} is specified, the size is set by default to the
16885 same size of the input file. If @option{size} is set, it must contain
16886 the size specified in the input file, and the initial grid defined in
16887 that file is centered in the larger resulting area.
16888
16889 If a filename is not specified, the size value defaults to "320x240"
16890 (used for a randomly generated initial grid).
16891
16892 @item stitch
16893 If set to 1, stitch the left and right grid edges together, and the
16894 top and bottom edges also. Defaults to 1.
16895
16896 @item mold
16897 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
16898 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
16899 value from 0 to 255.
16900
16901 @item life_color
16902 Set the color of living (or new born) cells.
16903
16904 @item death_color
16905 Set the color of dead cells. If @option{mold} is set, this is the first color
16906 used to represent a dead cell.
16907
16908 @item mold_color
16909 Set mold color, for definitely dead and moldy cells.
16910
16911 For the syntax of these 3 color options, check the "Color" section in the
16912 ffmpeg-utils manual.
16913 @end table
16914
16915 @subsection Examples
16916
16917 @itemize
16918 @item
16919 Read a grid from @file{pattern}, and center it on a grid of size
16920 300x300 pixels:
16921 @example
16922 life=f=pattern:s=300x300
16923 @end example
16924
16925 @item
16926 Generate a random grid of size 200x200, with a fill ratio of 2/3:
16927 @example
16928 life=ratio=2/3:s=200x200
16929 @end example
16930
16931 @item
16932 Specify a custom rule for evolving a randomly generated grid:
16933 @example
16934 life=rule=S14/B34
16935 @end example
16936
16937 @item
16938 Full example with slow death effect (mold) using @command{ffplay}:
16939 @example
16940 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
16941 @end example
16942 @end itemize
16943
16944 @anchor{allrgb}
16945 @anchor{allyuv}
16946 @anchor{color}
16947 @anchor{haldclutsrc}
16948 @anchor{nullsrc}
16949 @anchor{rgbtestsrc}
16950 @anchor{smptebars}
16951 @anchor{smptehdbars}
16952 @anchor{testsrc}
16953 @anchor{testsrc2}
16954 @anchor{yuvtestsrc}
16955 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
16956
16957 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
16958
16959 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
16960
16961 The @code{color} source provides an uniformly colored input.
16962
16963 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
16964 @ref{haldclut} filter.
16965
16966 The @code{nullsrc} source returns unprocessed video frames. It is
16967 mainly useful to be employed in analysis / debugging tools, or as the
16968 source for filters which ignore the input data.
16969
16970 The @code{rgbtestsrc} source generates an RGB test pattern useful for
16971 detecting RGB vs BGR issues. You should see a red, green and blue
16972 stripe from top to bottom.
16973
16974 The @code{smptebars} source generates a color bars pattern, based on
16975 the SMPTE Engineering Guideline EG 1-1990.
16976
16977 The @code{smptehdbars} source generates a color bars pattern, based on
16978 the SMPTE RP 219-2002.
16979
16980 The @code{testsrc} source generates a test video pattern, showing a
16981 color pattern, a scrolling gradient and a timestamp. This is mainly
16982 intended for testing purposes.
16983
16984 The @code{testsrc2} source is similar to testsrc, but supports more
16985 pixel formats instead of just @code{rgb24}. This allows using it as an
16986 input for other tests without requiring a format conversion.
16987
16988 The @code{yuvtestsrc} source generates an YUV test pattern. You should
16989 see a y, cb and cr stripe from top to bottom.
16990
16991 The sources accept the following parameters:
16992
16993 @table @option
16994
16995 @item alpha
16996 Specify the alpha (opacity) of the background, only available in the
16997 @code{testsrc2} source. The value must be between 0 (fully transparent) and
16998 255 (fully opaque, the default).
16999
17000 @item color, c
17001 Specify the color of the source, only available in the @code{color}
17002 source. For the syntax of this option, check the "Color" section in the
17003 ffmpeg-utils manual.
17004
17005 @item level
17006 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
17007 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
17008 pixels to be used as identity matrix for 3D lookup tables. Each component is
17009 coded on a @code{1/(N*N)} scale.
17010
17011 @item size, s
17012 Specify the size of the sourced video. For the syntax of this option, check the
17013 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17014 The default value is @code{320x240}.
17015
17016 This option is not available with the @code{haldclutsrc} filter.
17017
17018 @item rate, r
17019 Specify the frame rate of the sourced video, as the number of frames
17020 generated per second. It has to be a string in the format
17021 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
17022 number or a valid video frame rate abbreviation. The default value is
17023 "25".
17024
17025 @item sar
17026 Set the sample aspect ratio of the sourced video.
17027
17028 @item duration, d
17029 Set the duration of the sourced video. See
17030 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17031 for the accepted syntax.
17032
17033 If not specified, or the expressed duration is negative, the video is
17034 supposed to be generated forever.
17035
17036 @item decimals, n
17037 Set the number of decimals to show in the timestamp, only available in the
17038 @code{testsrc} source.
17039
17040 The displayed timestamp value will correspond to the original
17041 timestamp value multiplied by the power of 10 of the specified
17042 value. Default value is 0.
17043 @end table
17044
17045 For example the following:
17046 @example
17047 testsrc=duration=5.3:size=qcif:rate=10
17048 @end example
17049
17050 will generate a video with a duration of 5.3 seconds, with size
17051 176x144 and a frame rate of 10 frames per second.
17052
17053 The following graph description will generate a red source
17054 with an opacity of 0.2, with size "qcif" and a frame rate of 10
17055 frames per second.
17056 @example
17057 color=c=red@@0.2:s=qcif:r=10
17058 @end example
17059
17060 If the input content is to be ignored, @code{nullsrc} can be used. The
17061 following command generates noise in the luminance plane by employing
17062 the @code{geq} filter:
17063 @example
17064 nullsrc=s=256x256, geq=random(1)*255:128:128
17065 @end example
17066
17067 @subsection Commands
17068
17069 The @code{color} source supports the following commands:
17070
17071 @table @option
17072 @item c, color
17073 Set the color of the created image. Accepts the same syntax of the
17074 corresponding @option{color} option.
17075 @end table
17076
17077 @c man end VIDEO SOURCES
17078
17079 @chapter Video Sinks
17080 @c man begin VIDEO SINKS
17081
17082 Below is a description of the currently available video sinks.
17083
17084 @section buffersink
17085
17086 Buffer video frames, and make them available to the end of the filter
17087 graph.
17088
17089 This sink is mainly intended for programmatic use, in particular
17090 through the interface defined in @file{libavfilter/buffersink.h}
17091 or the options system.
17092
17093 It accepts a pointer to an AVBufferSinkContext structure, which
17094 defines the incoming buffers' formats, to be passed as the opaque
17095 parameter to @code{avfilter_init_filter} for initialization.
17096
17097 @section nullsink
17098
17099 Null video sink: do absolutely nothing with the input video. It is
17100 mainly useful as a template and for use in analysis / debugging
17101 tools.
17102
17103 @c man end VIDEO SINKS
17104
17105 @chapter Multimedia Filters
17106 @c man begin MULTIMEDIA FILTERS
17107
17108 Below is a description of the currently available multimedia filters.
17109
17110 @section abitscope
17111
17112 Convert input audio to a video output, displaying the audio bit scope.
17113
17114 The filter accepts the following options:
17115
17116 @table @option
17117 @item rate, r
17118 Set frame rate, expressed as number of frames per second. Default
17119 value is "25".
17120
17121 @item size, s
17122 Specify the video size for the output. For the syntax of this option, check the
17123 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17124 Default value is @code{1024x256}.
17125
17126 @item colors
17127 Specify list of colors separated by space or by '|' which will be used to
17128 draw channels. Unrecognized or missing colors will be replaced
17129 by white color.
17130 @end table
17131
17132 @section ahistogram
17133
17134 Convert input audio to a video output, displaying the volume histogram.
17135
17136 The filter accepts the following options:
17137
17138 @table @option
17139 @item dmode
17140 Specify how histogram is calculated.
17141
17142 It accepts the following values:
17143 @table @samp
17144 @item single
17145 Use single histogram for all channels.
17146 @item separate
17147 Use separate histogram for each channel.
17148 @end table
17149 Default is @code{single}.
17150
17151 @item rate, r
17152 Set frame rate, expressed as number of frames per second. Default
17153 value is "25".
17154
17155 @item size, s
17156 Specify the video size for the output. For the syntax of this option, check the
17157 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17158 Default value is @code{hd720}.
17159
17160 @item scale
17161 Set display scale.
17162
17163 It accepts the following values:
17164 @table @samp
17165 @item log
17166 logarithmic
17167 @item sqrt
17168 square root
17169 @item cbrt
17170 cubic root
17171 @item lin
17172 linear
17173 @item rlog
17174 reverse logarithmic
17175 @end table
17176 Default is @code{log}.
17177
17178 @item ascale
17179 Set amplitude scale.
17180
17181 It accepts the following values:
17182 @table @samp
17183 @item log
17184 logarithmic
17185 @item lin
17186 linear
17187 @end table
17188 Default is @code{log}.
17189
17190 @item acount
17191 Set how much frames to accumulate in histogram.
17192 Defauls is 1. Setting this to -1 accumulates all frames.
17193
17194 @item rheight
17195 Set histogram ratio of window height.
17196
17197 @item slide
17198 Set sonogram sliding.
17199
17200 It accepts the following values:
17201 @table @samp
17202 @item replace
17203 replace old rows with new ones.
17204 @item scroll
17205 scroll from top to bottom.
17206 @end table
17207 Default is @code{replace}.
17208 @end table
17209
17210 @section aphasemeter
17211
17212 Convert input audio to a video output, displaying the audio phase.
17213
17214 The filter accepts the following options:
17215
17216 @table @option
17217 @item rate, r
17218 Set the output frame rate. Default value is @code{25}.
17219
17220 @item size, s
17221 Set the video size for the output. For the syntax of this option, check the
17222 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17223 Default value is @code{800x400}.
17224
17225 @item rc
17226 @item gc
17227 @item bc
17228 Specify the red, green, blue contrast. Default values are @code{2},
17229 @code{7} and @code{1}.
17230 Allowed range is @code{[0, 255]}.
17231
17232 @item mpc
17233 Set color which will be used for drawing median phase. If color is
17234 @code{none} which is default, no median phase value will be drawn.
17235
17236 @item video
17237 Enable video output. Default is enabled.
17238 @end table
17239
17240 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
17241 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
17242 The @code{-1} means left and right channels are completely out of phase and
17243 @code{1} means channels are in phase.
17244
17245 @section avectorscope
17246
17247 Convert input audio to a video output, representing the audio vector
17248 scope.
17249
17250 The filter is used to measure the difference between channels of stereo
17251 audio stream. A monoaural signal, consisting of identical left and right
17252 signal, results in straight vertical line. Any stereo separation is visible
17253 as a deviation from this line, creating a Lissajous figure.
17254 If the straight (or deviation from it) but horizontal line appears this
17255 indicates that the left and right channels are out of phase.
17256
17257 The filter accepts the following options:
17258
17259 @table @option
17260 @item mode, m
17261 Set the vectorscope mode.
17262
17263 Available values are:
17264 @table @samp
17265 @item lissajous
17266 Lissajous rotated by 45 degrees.
17267
17268 @item lissajous_xy
17269 Same as above but not rotated.
17270
17271 @item polar
17272 Shape resembling half of circle.
17273 @end table
17274
17275 Default value is @samp{lissajous}.
17276
17277 @item size, s
17278 Set the video size for the output. For the syntax of this option, check the
17279 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17280 Default value is @code{400x400}.
17281
17282 @item rate, r
17283 Set the output frame rate. Default value is @code{25}.
17284
17285 @item rc
17286 @item gc
17287 @item bc
17288 @item ac
17289 Specify the red, green, blue and alpha contrast. Default values are @code{40},
17290 @code{160}, @code{80} and @code{255}.
17291 Allowed range is @code{[0, 255]}.
17292
17293 @item rf
17294 @item gf
17295 @item bf
17296 @item af
17297 Specify the red, green, blue and alpha fade. Default values are @code{15},
17298 @code{10}, @code{5} and @code{5}.
17299 Allowed range is @code{[0, 255]}.
17300
17301 @item zoom
17302 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
17303 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
17304
17305 @item draw
17306 Set the vectorscope drawing mode.
17307
17308 Available values are:
17309 @table @samp
17310 @item dot
17311 Draw dot for each sample.
17312
17313 @item line
17314 Draw line between previous and current sample.
17315 @end table
17316
17317 Default value is @samp{dot}.
17318
17319 @item scale
17320 Specify amplitude scale of audio samples.
17321
17322 Available values are:
17323 @table @samp
17324 @item lin
17325 Linear.
17326
17327 @item sqrt
17328 Square root.
17329
17330 @item cbrt
17331 Cubic root.
17332
17333 @item log
17334 Logarithmic.
17335 @end table
17336
17337 @item swap
17338 Swap left channel axis with right channel axis.
17339
17340 @item mirror
17341 Mirror axis.
17342
17343 @table @samp
17344 @item none
17345 No mirror.
17346
17347 @item x
17348 Mirror only x axis.
17349
17350 @item y
17351 Mirror only y axis.
17352
17353 @item xy
17354 Mirror both axis.
17355 @end table
17356
17357 @end table
17358
17359 @subsection Examples
17360
17361 @itemize
17362 @item
17363 Complete example using @command{ffplay}:
17364 @example
17365 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17366              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
17367 @end example
17368 @end itemize
17369
17370 @section bench, abench
17371
17372 Benchmark part of a filtergraph.
17373
17374 The filter accepts the following options:
17375
17376 @table @option
17377 @item action
17378 Start or stop a timer.
17379
17380 Available values are:
17381 @table @samp
17382 @item start
17383 Get the current time, set it as frame metadata (using the key
17384 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
17385
17386 @item stop
17387 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
17388 the input frame metadata to get the time difference. Time difference, average,
17389 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
17390 @code{min}) are then printed. The timestamps are expressed in seconds.
17391 @end table
17392 @end table
17393
17394 @subsection Examples
17395
17396 @itemize
17397 @item
17398 Benchmark @ref{selectivecolor} filter:
17399 @example
17400 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
17401 @end example
17402 @end itemize
17403
17404 @section concat
17405
17406 Concatenate audio and video streams, joining them together one after the
17407 other.
17408
17409 The filter works on segments of synchronized video and audio streams. All
17410 segments must have the same number of streams of each type, and that will
17411 also be the number of streams at output.
17412
17413 The filter accepts the following options:
17414
17415 @table @option
17416
17417 @item n
17418 Set the number of segments. Default is 2.
17419
17420 @item v
17421 Set the number of output video streams, that is also the number of video
17422 streams in each segment. Default is 1.
17423
17424 @item a
17425 Set the number of output audio streams, that is also the number of audio
17426 streams in each segment. Default is 0.
17427
17428 @item unsafe
17429 Activate unsafe mode: do not fail if segments have a different format.
17430
17431 @end table
17432
17433 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
17434 @var{a} audio outputs.
17435
17436 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
17437 segment, in the same order as the outputs, then the inputs for the second
17438 segment, etc.
17439
17440 Related streams do not always have exactly the same duration, for various
17441 reasons including codec frame size or sloppy authoring. For that reason,
17442 related synchronized streams (e.g. a video and its audio track) should be
17443 concatenated at once. The concat filter will use the duration of the longest
17444 stream in each segment (except the last one), and if necessary pad shorter
17445 audio streams with silence.
17446
17447 For this filter to work correctly, all segments must start at timestamp 0.
17448
17449 All corresponding streams must have the same parameters in all segments; the
17450 filtering system will automatically select a common pixel format for video
17451 streams, and a common sample format, sample rate and channel layout for
17452 audio streams, but other settings, such as resolution, must be converted
17453 explicitly by the user.
17454
17455 Different frame rates are acceptable but will result in variable frame rate
17456 at output; be sure to configure the output file to handle it.
17457
17458 @subsection Examples
17459
17460 @itemize
17461 @item
17462 Concatenate an opening, an episode and an ending, all in bilingual version
17463 (video in stream 0, audio in streams 1 and 2):
17464 @example
17465 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
17466   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
17467    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
17468   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
17469 @end example
17470
17471 @item
17472 Concatenate two parts, handling audio and video separately, using the
17473 (a)movie sources, and adjusting the resolution:
17474 @example
17475 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
17476 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
17477 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
17478 @end example
17479 Note that a desync will happen at the stitch if the audio and video streams
17480 do not have exactly the same duration in the first file.
17481
17482 @end itemize
17483
17484 @section drawgraph, adrawgraph
17485
17486 Draw a graph using input video or audio metadata.
17487
17488 It accepts the following parameters:
17489
17490 @table @option
17491 @item m1
17492 Set 1st frame metadata key from which metadata values will be used to draw a graph.
17493
17494 @item fg1
17495 Set 1st foreground color expression.
17496
17497 @item m2
17498 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
17499
17500 @item fg2
17501 Set 2nd foreground color expression.
17502
17503 @item m3
17504 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
17505
17506 @item fg3
17507 Set 3rd foreground color expression.
17508
17509 @item m4
17510 Set 4th frame metadata key from which metadata values will be used to draw a graph.
17511
17512 @item fg4
17513 Set 4th foreground color expression.
17514
17515 @item min
17516 Set minimal value of metadata value.
17517
17518 @item max
17519 Set maximal value of metadata value.
17520
17521 @item bg
17522 Set graph background color. Default is white.
17523
17524 @item mode
17525 Set graph mode.
17526
17527 Available values for mode is:
17528 @table @samp
17529 @item bar
17530 @item dot
17531 @item line
17532 @end table
17533
17534 Default is @code{line}.
17535
17536 @item slide
17537 Set slide mode.
17538
17539 Available values for slide is:
17540 @table @samp
17541 @item frame
17542 Draw new frame when right border is reached.
17543
17544 @item replace
17545 Replace old columns with new ones.
17546
17547 @item scroll
17548 Scroll from right to left.
17549
17550 @item rscroll
17551 Scroll from left to right.
17552
17553 @item picture
17554 Draw single picture.
17555 @end table
17556
17557 Default is @code{frame}.
17558
17559 @item size
17560 Set size of graph video. For the syntax of this option, check the
17561 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17562 The default value is @code{900x256}.
17563
17564 The foreground color expressions can use the following variables:
17565 @table @option
17566 @item MIN
17567 Minimal value of metadata value.
17568
17569 @item MAX
17570 Maximal value of metadata value.
17571
17572 @item VAL
17573 Current metadata key value.
17574 @end table
17575
17576 The color is defined as 0xAABBGGRR.
17577 @end table
17578
17579 Example using metadata from @ref{signalstats} filter:
17580 @example
17581 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
17582 @end example
17583
17584 Example using metadata from @ref{ebur128} filter:
17585 @example
17586 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
17587 @end example
17588
17589 @anchor{ebur128}
17590 @section ebur128
17591
17592 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
17593 it unchanged. By default, it logs a message at a frequency of 10Hz with the
17594 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
17595 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
17596
17597 The filter also has a video output (see the @var{video} option) with a real
17598 time graph to observe the loudness evolution. The graphic contains the logged
17599 message mentioned above, so it is not printed anymore when this option is set,
17600 unless the verbose logging is set. The main graphing area contains the
17601 short-term loudness (3 seconds of analysis), and the gauge on the right is for
17602 the momentary loudness (400 milliseconds).
17603
17604 More information about the Loudness Recommendation EBU R128 on
17605 @url{http://tech.ebu.ch/loudness}.
17606
17607 The filter accepts the following options:
17608
17609 @table @option
17610
17611 @item video
17612 Activate the video output. The audio stream is passed unchanged whether this
17613 option is set or no. The video stream will be the first output stream if
17614 activated. Default is @code{0}.
17615
17616 @item size
17617 Set the video size. This option is for video only. For the syntax of this
17618 option, check the
17619 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17620 Default and minimum resolution is @code{640x480}.
17621
17622 @item meter
17623 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
17624 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
17625 other integer value between this range is allowed.
17626
17627 @item metadata
17628 Set metadata injection. If set to @code{1}, the audio input will be segmented
17629 into 100ms output frames, each of them containing various loudness information
17630 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
17631
17632 Default is @code{0}.
17633
17634 @item framelog
17635 Force the frame logging level.
17636
17637 Available values are:
17638 @table @samp
17639 @item info
17640 information logging level
17641 @item verbose
17642 verbose logging level
17643 @end table
17644
17645 By default, the logging level is set to @var{info}. If the @option{video} or
17646 the @option{metadata} options are set, it switches to @var{verbose}.
17647
17648 @item peak
17649 Set peak mode(s).
17650
17651 Available modes can be cumulated (the option is a @code{flag} type). Possible
17652 values are:
17653 @table @samp
17654 @item none
17655 Disable any peak mode (default).
17656 @item sample
17657 Enable sample-peak mode.
17658
17659 Simple peak mode looking for the higher sample value. It logs a message
17660 for sample-peak (identified by @code{SPK}).
17661 @item true
17662 Enable true-peak mode.
17663
17664 If enabled, the peak lookup is done on an over-sampled version of the input
17665 stream for better peak accuracy. It logs a message for true-peak.
17666 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
17667 This mode requires a build with @code{libswresample}.
17668 @end table
17669
17670 @item dualmono
17671 Treat mono input files as "dual mono". If a mono file is intended for playback
17672 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
17673 If set to @code{true}, this option will compensate for this effect.
17674 Multi-channel input files are not affected by this option.
17675
17676 @item panlaw
17677 Set a specific pan law to be used for the measurement of dual mono files.
17678 This parameter is optional, and has a default value of -3.01dB.
17679 @end table
17680
17681 @subsection Examples
17682
17683 @itemize
17684 @item
17685 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
17686 @example
17687 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
17688 @end example
17689
17690 @item
17691 Run an analysis with @command{ffmpeg}:
17692 @example
17693 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
17694 @end example
17695 @end itemize
17696
17697 @section interleave, ainterleave
17698
17699 Temporally interleave frames from several inputs.
17700
17701 @code{interleave} works with video inputs, @code{ainterleave} with audio.
17702
17703 These filters read frames from several inputs and send the oldest
17704 queued frame to the output.
17705
17706 Input streams must have well defined, monotonically increasing frame
17707 timestamp values.
17708
17709 In order to submit one frame to output, these filters need to enqueue
17710 at least one frame for each input, so they cannot work in case one
17711 input is not yet terminated and will not receive incoming frames.
17712
17713 For example consider the case when one input is a @code{select} filter
17714 which always drops input frames. The @code{interleave} filter will keep
17715 reading from that input, but it will never be able to send new frames
17716 to output until the input sends an end-of-stream signal.
17717
17718 Also, depending on inputs synchronization, the filters will drop
17719 frames in case one input receives more frames than the other ones, and
17720 the queue is already filled.
17721
17722 These filters accept the following options:
17723
17724 @table @option
17725 @item nb_inputs, n
17726 Set the number of different inputs, it is 2 by default.
17727 @end table
17728
17729 @subsection Examples
17730
17731 @itemize
17732 @item
17733 Interleave frames belonging to different streams using @command{ffmpeg}:
17734 @example
17735 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
17736 @end example
17737
17738 @item
17739 Add flickering blur effect:
17740 @example
17741 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
17742 @end example
17743 @end itemize
17744
17745 @section metadata, ametadata
17746
17747 Manipulate frame metadata.
17748
17749 This filter accepts the following options:
17750
17751 @table @option
17752 @item mode
17753 Set mode of operation of the filter.
17754
17755 Can be one of the following:
17756
17757 @table @samp
17758 @item select
17759 If both @code{value} and @code{key} is set, select frames
17760 which have such metadata. If only @code{key} is set, select
17761 every frame that has such key in metadata.
17762
17763 @item add
17764 Add new metadata @code{key} and @code{value}. If key is already available
17765 do nothing.
17766
17767 @item modify
17768 Modify value of already present key.
17769
17770 @item delete
17771 If @code{value} is set, delete only keys that have such value.
17772 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
17773 the frame.
17774
17775 @item print
17776 Print key and its value if metadata was found. If @code{key} is not set print all
17777 metadata values available in frame.
17778 @end table
17779
17780 @item key
17781 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
17782
17783 @item value
17784 Set metadata value which will be used. This option is mandatory for
17785 @code{modify} and @code{add} mode.
17786
17787 @item function
17788 Which function to use when comparing metadata value and @code{value}.
17789
17790 Can be one of following:
17791
17792 @table @samp
17793 @item same_str
17794 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
17795
17796 @item starts_with
17797 Values are interpreted as strings, returns true if metadata value starts with
17798 the @code{value} option string.
17799
17800 @item less
17801 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
17802
17803 @item equal
17804 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
17805
17806 @item greater
17807 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
17808
17809 @item expr
17810 Values are interpreted as floats, returns true if expression from option @code{expr}
17811 evaluates to true.
17812 @end table
17813
17814 @item expr
17815 Set expression which is used when @code{function} is set to @code{expr}.
17816 The expression is evaluated through the eval API and can contain the following
17817 constants:
17818
17819 @table @option
17820 @item VALUE1
17821 Float representation of @code{value} from metadata key.
17822
17823 @item VALUE2
17824 Float representation of @code{value} as supplied by user in @code{value} option.
17825 @end table
17826
17827 @item file
17828 If specified in @code{print} mode, output is written to the named file. Instead of
17829 plain filename any writable url can be specified. Filename ``-'' is a shorthand
17830 for standard output. If @code{file} option is not set, output is written to the log
17831 with AV_LOG_INFO loglevel.
17832
17833 @end table
17834
17835 @subsection Examples
17836
17837 @itemize
17838 @item
17839 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
17840 between 0 and 1.
17841 @example
17842 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
17843 @end example
17844 @item
17845 Print silencedetect output to file @file{metadata.txt}.
17846 @example
17847 silencedetect,ametadata=mode=print:file=metadata.txt
17848 @end example
17849 @item
17850 Direct all metadata to a pipe with file descriptor 4.
17851 @example
17852 metadata=mode=print:file='pipe\:4'
17853 @end example
17854 @end itemize
17855
17856 @section perms, aperms
17857
17858 Set read/write permissions for the output frames.
17859
17860 These filters are mainly aimed at developers to test direct path in the
17861 following filter in the filtergraph.
17862
17863 The filters accept the following options:
17864
17865 @table @option
17866 @item mode
17867 Select the permissions mode.
17868
17869 It accepts the following values:
17870 @table @samp
17871 @item none
17872 Do nothing. This is the default.
17873 @item ro
17874 Set all the output frames read-only.
17875 @item rw
17876 Set all the output frames directly writable.
17877 @item toggle
17878 Make the frame read-only if writable, and writable if read-only.
17879 @item random
17880 Set each output frame read-only or writable randomly.
17881 @end table
17882
17883 @item seed
17884 Set the seed for the @var{random} mode, must be an integer included between
17885 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
17886 @code{-1}, the filter will try to use a good random seed on a best effort
17887 basis.
17888 @end table
17889
17890 Note: in case of auto-inserted filter between the permission filter and the
17891 following one, the permission might not be received as expected in that
17892 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
17893 perms/aperms filter can avoid this problem.
17894
17895 @section realtime, arealtime
17896
17897 Slow down filtering to match real time approximately.
17898
17899 These filters will pause the filtering for a variable amount of time to
17900 match the output rate with the input timestamps.
17901 They are similar to the @option{re} option to @code{ffmpeg}.
17902
17903 They accept the following options:
17904
17905 @table @option
17906 @item limit
17907 Time limit for the pauses. Any pause longer than that will be considered
17908 a timestamp discontinuity and reset the timer. Default is 2 seconds.
17909 @end table
17910
17911 @anchor{select}
17912 @section select, aselect
17913
17914 Select frames to pass in output.
17915
17916 This filter accepts the following options:
17917
17918 @table @option
17919
17920 @item expr, e
17921 Set expression, which is evaluated for each input frame.
17922
17923 If the expression is evaluated to zero, the frame is discarded.
17924
17925 If the evaluation result is negative or NaN, the frame is sent to the
17926 first output; otherwise it is sent to the output with index
17927 @code{ceil(val)-1}, assuming that the input index starts from 0.
17928
17929 For example a value of @code{1.2} corresponds to the output with index
17930 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
17931
17932 @item outputs, n
17933 Set the number of outputs. The output to which to send the selected
17934 frame is based on the result of the evaluation. Default value is 1.
17935 @end table
17936
17937 The expression can contain the following constants:
17938
17939 @table @option
17940 @item n
17941 The (sequential) number of the filtered frame, starting from 0.
17942
17943 @item selected_n
17944 The (sequential) number of the selected frame, starting from 0.
17945
17946 @item prev_selected_n
17947 The sequential number of the last selected frame. It's NAN if undefined.
17948
17949 @item TB
17950 The timebase of the input timestamps.
17951
17952 @item pts
17953 The PTS (Presentation TimeStamp) of the filtered video frame,
17954 expressed in @var{TB} units. It's NAN if undefined.
17955
17956 @item t
17957 The PTS of the filtered video frame,
17958 expressed in seconds. It's NAN if undefined.
17959
17960 @item prev_pts
17961 The PTS of the previously filtered video frame. It's NAN if undefined.
17962
17963 @item prev_selected_pts
17964 The PTS of the last previously filtered video frame. It's NAN if undefined.
17965
17966 @item prev_selected_t
17967 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
17968
17969 @item start_pts
17970 The PTS of the first video frame in the video. It's NAN if undefined.
17971
17972 @item start_t
17973 The time of the first video frame in the video. It's NAN if undefined.
17974
17975 @item pict_type @emph{(video only)}
17976 The type of the filtered frame. It can assume one of the following
17977 values:
17978 @table @option
17979 @item I
17980 @item P
17981 @item B
17982 @item S
17983 @item SI
17984 @item SP
17985 @item BI
17986 @end table
17987
17988 @item interlace_type @emph{(video only)}
17989 The frame interlace type. It can assume one of the following values:
17990 @table @option
17991 @item PROGRESSIVE
17992 The frame is progressive (not interlaced).
17993 @item TOPFIRST
17994 The frame is top-field-first.
17995 @item BOTTOMFIRST
17996 The frame is bottom-field-first.
17997 @end table
17998
17999 @item consumed_sample_n @emph{(audio only)}
18000 the number of selected samples before the current frame
18001
18002 @item samples_n @emph{(audio only)}
18003 the number of samples in the current frame
18004
18005 @item sample_rate @emph{(audio only)}
18006 the input sample rate
18007
18008 @item key
18009 This is 1 if the filtered frame is a key-frame, 0 otherwise.
18010
18011 @item pos
18012 the position in the file of the filtered frame, -1 if the information
18013 is not available (e.g. for synthetic video)
18014
18015 @item scene @emph{(video only)}
18016 value between 0 and 1 to indicate a new scene; a low value reflects a low
18017 probability for the current frame to introduce a new scene, while a higher
18018 value means the current frame is more likely to be one (see the example below)
18019
18020 @item concatdec_select
18021 The concat demuxer can select only part of a concat input file by setting an
18022 inpoint and an outpoint, but the output packets may not be entirely contained
18023 in the selected interval. By using this variable, it is possible to skip frames
18024 generated by the concat demuxer which are not exactly contained in the selected
18025 interval.
18026
18027 This works by comparing the frame pts against the @var{lavf.concat.start_time}
18028 and the @var{lavf.concat.duration} packet metadata values which are also
18029 present in the decoded frames.
18030
18031 The @var{concatdec_select} variable is -1 if the frame pts is at least
18032 start_time and either the duration metadata is missing or the frame pts is less
18033 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
18034 missing.
18035
18036 That basically means that an input frame is selected if its pts is within the
18037 interval set by the concat demuxer.
18038
18039 @end table
18040
18041 The default value of the select expression is "1".
18042
18043 @subsection Examples
18044
18045 @itemize
18046 @item
18047 Select all frames in input:
18048 @example
18049 select
18050 @end example
18051
18052 The example above is the same as:
18053 @example
18054 select=1
18055 @end example
18056
18057 @item
18058 Skip all frames:
18059 @example
18060 select=0
18061 @end example
18062
18063 @item
18064 Select only I-frames:
18065 @example
18066 select='eq(pict_type\,I)'
18067 @end example
18068
18069 @item
18070 Select one frame every 100:
18071 @example
18072 select='not(mod(n\,100))'
18073 @end example
18074
18075 @item
18076 Select only frames contained in the 10-20 time interval:
18077 @example
18078 select=between(t\,10\,20)
18079 @end example
18080
18081 @item
18082 Select only I-frames contained in the 10-20 time interval:
18083 @example
18084 select=between(t\,10\,20)*eq(pict_type\,I)
18085 @end example
18086
18087 @item
18088 Select frames with a minimum distance of 10 seconds:
18089 @example
18090 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
18091 @end example
18092
18093 @item
18094 Use aselect to select only audio frames with samples number > 100:
18095 @example
18096 aselect='gt(samples_n\,100)'
18097 @end example
18098
18099 @item
18100 Create a mosaic of the first scenes:
18101 @example
18102 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
18103 @end example
18104
18105 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
18106 choice.
18107
18108 @item
18109 Send even and odd frames to separate outputs, and compose them:
18110 @example
18111 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
18112 @end example
18113
18114 @item
18115 Select useful frames from an ffconcat file which is using inpoints and
18116 outpoints but where the source files are not intra frame only.
18117 @example
18118 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
18119 @end example
18120 @end itemize
18121
18122 @section sendcmd, asendcmd
18123
18124 Send commands to filters in the filtergraph.
18125
18126 These filters read commands to be sent to other filters in the
18127 filtergraph.
18128
18129 @code{sendcmd} must be inserted between two video filters,
18130 @code{asendcmd} must be inserted between two audio filters, but apart
18131 from that they act the same way.
18132
18133 The specification of commands can be provided in the filter arguments
18134 with the @var{commands} option, or in a file specified by the
18135 @var{filename} option.
18136
18137 These filters accept the following options:
18138 @table @option
18139 @item commands, c
18140 Set the commands to be read and sent to the other filters.
18141 @item filename, f
18142 Set the filename of the commands to be read and sent to the other
18143 filters.
18144 @end table
18145
18146 @subsection Commands syntax
18147
18148 A commands description consists of a sequence of interval
18149 specifications, comprising a list of commands to be executed when a
18150 particular event related to that interval occurs. The occurring event
18151 is typically the current frame time entering or leaving a given time
18152 interval.
18153
18154 An interval is specified by the following syntax:
18155 @example
18156 @var{START}[-@var{END}] @var{COMMANDS};
18157 @end example
18158
18159 The time interval is specified by the @var{START} and @var{END} times.
18160 @var{END} is optional and defaults to the maximum time.
18161
18162 The current frame time is considered within the specified interval if
18163 it is included in the interval [@var{START}, @var{END}), that is when
18164 the time is greater or equal to @var{START} and is lesser than
18165 @var{END}.
18166
18167 @var{COMMANDS} consists of a sequence of one or more command
18168 specifications, separated by ",", relating to that interval.  The
18169 syntax of a command specification is given by:
18170 @example
18171 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
18172 @end example
18173
18174 @var{FLAGS} is optional and specifies the type of events relating to
18175 the time interval which enable sending the specified command, and must
18176 be a non-null sequence of identifier flags separated by "+" or "|" and
18177 enclosed between "[" and "]".
18178
18179 The following flags are recognized:
18180 @table @option
18181 @item enter
18182 The command is sent when the current frame timestamp enters the
18183 specified interval. In other words, the command is sent when the
18184 previous frame timestamp was not in the given interval, and the
18185 current is.
18186
18187 @item leave
18188 The command is sent when the current frame timestamp leaves the
18189 specified interval. In other words, the command is sent when the
18190 previous frame timestamp was in the given interval, and the
18191 current is not.
18192 @end table
18193
18194 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
18195 assumed.
18196
18197 @var{TARGET} specifies the target of the command, usually the name of
18198 the filter class or a specific filter instance name.
18199
18200 @var{COMMAND} specifies the name of the command for the target filter.
18201
18202 @var{ARG} is optional and specifies the optional list of argument for
18203 the given @var{COMMAND}.
18204
18205 Between one interval specification and another, whitespaces, or
18206 sequences of characters starting with @code{#} until the end of line,
18207 are ignored and can be used to annotate comments.
18208
18209 A simplified BNF description of the commands specification syntax
18210 follows:
18211 @example
18212 @var{COMMAND_FLAG}  ::= "enter" | "leave"
18213 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
18214 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
18215 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
18216 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
18217 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
18218 @end example
18219
18220 @subsection Examples
18221
18222 @itemize
18223 @item
18224 Specify audio tempo change at second 4:
18225 @example
18226 asendcmd=c='4.0 atempo tempo 1.5',atempo
18227 @end example
18228
18229 @item
18230 Target a specific filter instance:
18231 @example
18232 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
18233 @end example
18234
18235 @item
18236 Specify a list of drawtext and hue commands in a file.
18237 @example
18238 # show text in the interval 5-10
18239 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
18240          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
18241
18242 # desaturate the image in the interval 15-20
18243 15.0-20.0 [enter] hue s 0,
18244           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
18245           [leave] hue s 1,
18246           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
18247
18248 # apply an exponential saturation fade-out effect, starting from time 25
18249 25 [enter] hue s exp(25-t)
18250 @end example
18251
18252 A filtergraph allowing to read and process the above command list
18253 stored in a file @file{test.cmd}, can be specified with:
18254 @example
18255 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
18256 @end example
18257 @end itemize
18258
18259 @anchor{setpts}
18260 @section setpts, asetpts
18261
18262 Change the PTS (presentation timestamp) of the input frames.
18263
18264 @code{setpts} works on video frames, @code{asetpts} on audio frames.
18265
18266 This filter accepts the following options:
18267
18268 @table @option
18269
18270 @item expr
18271 The expression which is evaluated for each frame to construct its timestamp.
18272
18273 @end table
18274
18275 The expression is evaluated through the eval API and can contain the following
18276 constants:
18277
18278 @table @option
18279 @item FRAME_RATE
18280 frame rate, only defined for constant frame-rate video
18281
18282 @item PTS
18283 The presentation timestamp in input
18284
18285 @item N
18286 The count of the input frame for video or the number of consumed samples,
18287 not including the current frame for audio, starting from 0.
18288
18289 @item NB_CONSUMED_SAMPLES
18290 The number of consumed samples, not including the current frame (only
18291 audio)
18292
18293 @item NB_SAMPLES, S
18294 The number of samples in the current frame (only audio)
18295
18296 @item SAMPLE_RATE, SR
18297 The audio sample rate.
18298
18299 @item STARTPTS
18300 The PTS of the first frame.
18301
18302 @item STARTT
18303 the time in seconds of the first frame
18304
18305 @item INTERLACED
18306 State whether the current frame is interlaced.
18307
18308 @item T
18309 the time in seconds of the current frame
18310
18311 @item POS
18312 original position in the file of the frame, or undefined if undefined
18313 for the current frame
18314
18315 @item PREV_INPTS
18316 The previous input PTS.
18317
18318 @item PREV_INT
18319 previous input time in seconds
18320
18321 @item PREV_OUTPTS
18322 The previous output PTS.
18323
18324 @item PREV_OUTT
18325 previous output time in seconds
18326
18327 @item RTCTIME
18328 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
18329 instead.
18330
18331 @item RTCSTART
18332 The wallclock (RTC) time at the start of the movie in microseconds.
18333
18334 @item TB
18335 The timebase of the input timestamps.
18336
18337 @end table
18338
18339 @subsection Examples
18340
18341 @itemize
18342 @item
18343 Start counting PTS from zero
18344 @example
18345 setpts=PTS-STARTPTS
18346 @end example
18347
18348 @item
18349 Apply fast motion effect:
18350 @example
18351 setpts=0.5*PTS
18352 @end example
18353
18354 @item
18355 Apply slow motion effect:
18356 @example
18357 setpts=2.0*PTS
18358 @end example
18359
18360 @item
18361 Set fixed rate of 25 frames per second:
18362 @example
18363 setpts=N/(25*TB)
18364 @end example
18365
18366 @item
18367 Set fixed rate 25 fps with some jitter:
18368 @example
18369 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
18370 @end example
18371
18372 @item
18373 Apply an offset of 10 seconds to the input PTS:
18374 @example
18375 setpts=PTS+10/TB
18376 @end example
18377
18378 @item
18379 Generate timestamps from a "live source" and rebase onto the current timebase:
18380 @example
18381 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
18382 @end example
18383
18384 @item
18385 Generate timestamps by counting samples:
18386 @example
18387 asetpts=N/SR/TB
18388 @end example
18389
18390 @end itemize
18391
18392 @section settb, asettb
18393
18394 Set the timebase to use for the output frames timestamps.
18395 It is mainly useful for testing timebase configuration.
18396
18397 It accepts the following parameters:
18398
18399 @table @option
18400
18401 @item expr, tb
18402 The expression which is evaluated into the output timebase.
18403
18404 @end table
18405
18406 The value for @option{tb} is an arithmetic expression representing a
18407 rational. The expression can contain the constants "AVTB" (the default
18408 timebase), "intb" (the input timebase) and "sr" (the sample rate,
18409 audio only). Default value is "intb".
18410
18411 @subsection Examples
18412
18413 @itemize
18414 @item
18415 Set the timebase to 1/25:
18416 @example
18417 settb=expr=1/25
18418 @end example
18419
18420 @item
18421 Set the timebase to 1/10:
18422 @example
18423 settb=expr=0.1
18424 @end example
18425
18426 @item
18427 Set the timebase to 1001/1000:
18428 @example
18429 settb=1+0.001
18430 @end example
18431
18432 @item
18433 Set the timebase to 2*intb:
18434 @example
18435 settb=2*intb
18436 @end example
18437
18438 @item
18439 Set the default timebase value:
18440 @example
18441 settb=AVTB
18442 @end example
18443 @end itemize
18444
18445 @section showcqt
18446 Convert input audio to a video output representing frequency spectrum
18447 logarithmically using Brown-Puckette constant Q transform algorithm with
18448 direct frequency domain coefficient calculation (but the transform itself
18449 is not really constant Q, instead the Q factor is actually variable/clamped),
18450 with musical tone scale, from E0 to D#10.
18451
18452 The filter accepts the following options:
18453
18454 @table @option
18455 @item size, s
18456 Specify the video size for the output. It must be even. For the syntax of this option,
18457 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18458 Default value is @code{1920x1080}.
18459
18460 @item fps, rate, r
18461 Set the output frame rate. Default value is @code{25}.
18462
18463 @item bar_h
18464 Set the bargraph height. It must be even. Default value is @code{-1} which
18465 computes the bargraph height automatically.
18466
18467 @item axis_h
18468 Set the axis height. It must be even. Default value is @code{-1} which computes
18469 the axis height automatically.
18470
18471 @item sono_h
18472 Set the sonogram height. It must be even. Default value is @code{-1} which
18473 computes the sonogram height automatically.
18474
18475 @item fullhd
18476 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
18477 instead. Default value is @code{1}.
18478
18479 @item sono_v, volume
18480 Specify the sonogram volume expression. It can contain variables:
18481 @table @option
18482 @item bar_v
18483 the @var{bar_v} evaluated expression
18484 @item frequency, freq, f
18485 the frequency where it is evaluated
18486 @item timeclamp, tc
18487 the value of @var{timeclamp} option
18488 @end table
18489 and functions:
18490 @table @option
18491 @item a_weighting(f)
18492 A-weighting of equal loudness
18493 @item b_weighting(f)
18494 B-weighting of equal loudness
18495 @item c_weighting(f)
18496 C-weighting of equal loudness.
18497 @end table
18498 Default value is @code{16}.
18499
18500 @item bar_v, volume2
18501 Specify the bargraph volume expression. It can contain variables:
18502 @table @option
18503 @item sono_v
18504 the @var{sono_v} evaluated expression
18505 @item frequency, freq, f
18506 the frequency where it is evaluated
18507 @item timeclamp, tc
18508 the value of @var{timeclamp} option
18509 @end table
18510 and functions:
18511 @table @option
18512 @item a_weighting(f)
18513 A-weighting of equal loudness
18514 @item b_weighting(f)
18515 B-weighting of equal loudness
18516 @item c_weighting(f)
18517 C-weighting of equal loudness.
18518 @end table
18519 Default value is @code{sono_v}.
18520
18521 @item sono_g, gamma
18522 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
18523 higher gamma makes the spectrum having more range. Default value is @code{3}.
18524 Acceptable range is @code{[1, 7]}.
18525
18526 @item bar_g, gamma2
18527 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
18528 @code{[1, 7]}.
18529
18530 @item bar_t
18531 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
18532 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
18533
18534 @item timeclamp, tc
18535 Specify the transform timeclamp. At low frequency, there is trade-off between
18536 accuracy in time domain and frequency domain. If timeclamp is lower,
18537 event in time domain is represented more accurately (such as fast bass drum),
18538 otherwise event in frequency domain is represented more accurately
18539 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
18540
18541 @item attack
18542 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
18543 limits future samples by applying asymmetric windowing in time domain, useful
18544 when low latency is required. Accepted range is @code{[0, 1]}.
18545
18546 @item basefreq
18547 Specify the transform base frequency. Default value is @code{20.01523126408007475},
18548 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
18549
18550 @item endfreq
18551 Specify the transform end frequency. Default value is @code{20495.59681441799654},
18552 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
18553
18554 @item coeffclamp
18555 This option is deprecated and ignored.
18556
18557 @item tlength
18558 Specify the transform length in time domain. Use this option to control accuracy
18559 trade-off between time domain and frequency domain at every frequency sample.
18560 It can contain variables:
18561 @table @option
18562 @item frequency, freq, f
18563 the frequency where it is evaluated
18564 @item timeclamp, tc
18565 the value of @var{timeclamp} option.
18566 @end table
18567 Default value is @code{384*tc/(384+tc*f)}.
18568
18569 @item count
18570 Specify the transform count for every video frame. Default value is @code{6}.
18571 Acceptable range is @code{[1, 30]}.
18572
18573 @item fcount
18574 Specify the transform count for every single pixel. Default value is @code{0},
18575 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
18576
18577 @item fontfile
18578 Specify font file for use with freetype to draw the axis. If not specified,
18579 use embedded font. Note that drawing with font file or embedded font is not
18580 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
18581 option instead.
18582
18583 @item font
18584 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
18585 The : in the pattern may be replaced by | to avoid unnecessary escaping.
18586
18587 @item fontcolor
18588 Specify font color expression. This is arithmetic expression that should return
18589 integer value 0xRRGGBB. It can contain variables:
18590 @table @option
18591 @item frequency, freq, f
18592 the frequency where it is evaluated
18593 @item timeclamp, tc
18594 the value of @var{timeclamp} option
18595 @end table
18596 and functions:
18597 @table @option
18598 @item midi(f)
18599 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
18600 @item r(x), g(x), b(x)
18601 red, green, and blue value of intensity x.
18602 @end table
18603 Default value is @code{st(0, (midi(f)-59.5)/12);
18604 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
18605 r(1-ld(1)) + b(ld(1))}.
18606
18607 @item axisfile
18608 Specify image file to draw the axis. This option override @var{fontfile} and
18609 @var{fontcolor} option.
18610
18611 @item axis, text
18612 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
18613 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
18614 Default value is @code{1}.
18615
18616 @item csp
18617 Set colorspace. The accepted values are:
18618 @table @samp
18619 @item unspecified
18620 Unspecified (default)
18621
18622 @item bt709
18623 BT.709
18624
18625 @item fcc
18626 FCC
18627
18628 @item bt470bg
18629 BT.470BG or BT.601-6 625
18630
18631 @item smpte170m
18632 SMPTE-170M or BT.601-6 525
18633
18634 @item smpte240m
18635 SMPTE-240M
18636
18637 @item bt2020ncl
18638 BT.2020 with non-constant luminance
18639
18640 @end table
18641
18642 @item cscheme
18643 Set spectrogram color scheme. This is list of floating point values with format
18644 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
18645 The default is @code{1|0.5|0|0|0.5|1}.
18646
18647 @end table
18648
18649 @subsection Examples
18650
18651 @itemize
18652 @item
18653 Playing audio while showing the spectrum:
18654 @example
18655 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
18656 @end example
18657
18658 @item
18659 Same as above, but with frame rate 30 fps:
18660 @example
18661 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
18662 @end example
18663
18664 @item
18665 Playing at 1280x720:
18666 @example
18667 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
18668 @end example
18669
18670 @item
18671 Disable sonogram display:
18672 @example
18673 sono_h=0
18674 @end example
18675
18676 @item
18677 A1 and its harmonics: A1, A2, (near)E3, A3:
18678 @example
18679 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),
18680                  asplit[a][out1]; [a] showcqt [out0]'
18681 @end example
18682
18683 @item
18684 Same as above, but with more accuracy in frequency domain:
18685 @example
18686 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),
18687                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
18688 @end example
18689
18690 @item
18691 Custom volume:
18692 @example
18693 bar_v=10:sono_v=bar_v*a_weighting(f)
18694 @end example
18695
18696 @item
18697 Custom gamma, now spectrum is linear to the amplitude.
18698 @example
18699 bar_g=2:sono_g=2
18700 @end example
18701
18702 @item
18703 Custom tlength equation:
18704 @example
18705 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)))'
18706 @end example
18707
18708 @item
18709 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
18710 @example
18711 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
18712 @end example
18713
18714 @item
18715 Custom font using fontconfig:
18716 @example
18717 font='Courier New,Monospace,mono|bold'
18718 @end example
18719
18720 @item
18721 Custom frequency range with custom axis using image file:
18722 @example
18723 axisfile=myaxis.png:basefreq=40:endfreq=10000
18724 @end example
18725 @end itemize
18726
18727 @section showfreqs
18728
18729 Convert input audio to video output representing the audio power spectrum.
18730 Audio amplitude is on Y-axis while frequency is on X-axis.
18731
18732 The filter accepts the following options:
18733
18734 @table @option
18735 @item size, s
18736 Specify size of video. For the syntax of this option, check the
18737 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18738 Default is @code{1024x512}.
18739
18740 @item mode
18741 Set display mode.
18742 This set how each frequency bin will be represented.
18743
18744 It accepts the following values:
18745 @table @samp
18746 @item line
18747 @item bar
18748 @item dot
18749 @end table
18750 Default is @code{bar}.
18751
18752 @item ascale
18753 Set amplitude scale.
18754
18755 It accepts the following values:
18756 @table @samp
18757 @item lin
18758 Linear scale.
18759
18760 @item sqrt
18761 Square root scale.
18762
18763 @item cbrt
18764 Cubic root scale.
18765
18766 @item log
18767 Logarithmic scale.
18768 @end table
18769 Default is @code{log}.
18770
18771 @item fscale
18772 Set frequency scale.
18773
18774 It accepts the following values:
18775 @table @samp
18776 @item lin
18777 Linear scale.
18778
18779 @item log
18780 Logarithmic scale.
18781
18782 @item rlog
18783 Reverse logarithmic scale.
18784 @end table
18785 Default is @code{lin}.
18786
18787 @item win_size
18788 Set window size.
18789
18790 It accepts the following values:
18791 @table @samp
18792 @item w16
18793 @item w32
18794 @item w64
18795 @item w128
18796 @item w256
18797 @item w512
18798 @item w1024
18799 @item w2048
18800 @item w4096
18801 @item w8192
18802 @item w16384
18803 @item w32768
18804 @item w65536
18805 @end table
18806 Default is @code{w2048}
18807
18808 @item win_func
18809 Set windowing function.
18810
18811 It accepts the following values:
18812 @table @samp
18813 @item rect
18814 @item bartlett
18815 @item hanning
18816 @item hamming
18817 @item blackman
18818 @item welch
18819 @item flattop
18820 @item bharris
18821 @item bnuttall
18822 @item bhann
18823 @item sine
18824 @item nuttall
18825 @item lanczos
18826 @item gauss
18827 @item tukey
18828 @item dolph
18829 @item cauchy
18830 @item parzen
18831 @item poisson
18832 @end table
18833 Default is @code{hanning}.
18834
18835 @item overlap
18836 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
18837 which means optimal overlap for selected window function will be picked.
18838
18839 @item averaging
18840 Set time averaging. Setting this to 0 will display current maximal peaks.
18841 Default is @code{1}, which means time averaging is disabled.
18842
18843 @item colors
18844 Specify list of colors separated by space or by '|' which will be used to
18845 draw channel frequencies. Unrecognized or missing colors will be replaced
18846 by white color.
18847
18848 @item cmode
18849 Set channel display mode.
18850
18851 It accepts the following values:
18852 @table @samp
18853 @item combined
18854 @item separate
18855 @end table
18856 Default is @code{combined}.
18857
18858 @item minamp
18859 Set minimum amplitude used in @code{log} amplitude scaler.
18860
18861 @end table
18862
18863 @anchor{showspectrum}
18864 @section showspectrum
18865
18866 Convert input audio to a video output, representing the audio frequency
18867 spectrum.
18868
18869 The filter accepts the following options:
18870
18871 @table @option
18872 @item size, s
18873 Specify the video size for the output. For the syntax of this option, check the
18874 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18875 Default value is @code{640x512}.
18876
18877 @item slide
18878 Specify how the spectrum should slide along the window.
18879
18880 It accepts the following values:
18881 @table @samp
18882 @item replace
18883 the samples start again on the left when they reach the right
18884 @item scroll
18885 the samples scroll from right to left
18886 @item fullframe
18887 frames are only produced when the samples reach the right
18888 @item rscroll
18889 the samples scroll from left to right
18890 @end table
18891
18892 Default value is @code{replace}.
18893
18894 @item mode
18895 Specify display mode.
18896
18897 It accepts the following values:
18898 @table @samp
18899 @item combined
18900 all channels are displayed in the same row
18901 @item separate
18902 all channels are displayed in separate rows
18903 @end table
18904
18905 Default value is @samp{combined}.
18906
18907 @item color
18908 Specify display color mode.
18909
18910 It accepts the following values:
18911 @table @samp
18912 @item channel
18913 each channel is displayed in a separate color
18914 @item intensity
18915 each channel is displayed using the same color scheme
18916 @item rainbow
18917 each channel is displayed using the rainbow color scheme
18918 @item moreland
18919 each channel is displayed using the moreland color scheme
18920 @item nebulae
18921 each channel is displayed using the nebulae color scheme
18922 @item fire
18923 each channel is displayed using the fire color scheme
18924 @item fiery
18925 each channel is displayed using the fiery color scheme
18926 @item fruit
18927 each channel is displayed using the fruit color scheme
18928 @item cool
18929 each channel is displayed using the cool color scheme
18930 @end table
18931
18932 Default value is @samp{channel}.
18933
18934 @item scale
18935 Specify scale used for calculating intensity color values.
18936
18937 It accepts the following values:
18938 @table @samp
18939 @item lin
18940 linear
18941 @item sqrt
18942 square root, default
18943 @item cbrt
18944 cubic root
18945 @item log
18946 logarithmic
18947 @item 4thrt
18948 4th root
18949 @item 5thrt
18950 5th root
18951 @end table
18952
18953 Default value is @samp{sqrt}.
18954
18955 @item saturation
18956 Set saturation modifier for displayed colors. Negative values provide
18957 alternative color scheme. @code{0} is no saturation at all.
18958 Saturation must be in [-10.0, 10.0] range.
18959 Default value is @code{1}.
18960
18961 @item win_func
18962 Set window function.
18963
18964 It accepts the following values:
18965 @table @samp
18966 @item rect
18967 @item bartlett
18968 @item hann
18969 @item hanning
18970 @item hamming
18971 @item blackman
18972 @item welch
18973 @item flattop
18974 @item bharris
18975 @item bnuttall
18976 @item bhann
18977 @item sine
18978 @item nuttall
18979 @item lanczos
18980 @item gauss
18981 @item tukey
18982 @item dolph
18983 @item cauchy
18984 @item parzen
18985 @item poisson
18986 @end table
18987
18988 Default value is @code{hann}.
18989
18990 @item orientation
18991 Set orientation of time vs frequency axis. Can be @code{vertical} or
18992 @code{horizontal}. Default is @code{vertical}.
18993
18994 @item overlap
18995 Set ratio of overlap window. Default value is @code{0}.
18996 When value is @code{1} overlap is set to recommended size for specific
18997 window function currently used.
18998
18999 @item gain
19000 Set scale gain for calculating intensity color values.
19001 Default value is @code{1}.
19002
19003 @item data
19004 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
19005
19006 @item rotation
19007 Set color rotation, must be in [-1.0, 1.0] range.
19008 Default value is @code{0}.
19009 @end table
19010
19011 The usage is very similar to the showwaves filter; see the examples in that
19012 section.
19013
19014 @subsection Examples
19015
19016 @itemize
19017 @item
19018 Large window with logarithmic color scaling:
19019 @example
19020 showspectrum=s=1280x480:scale=log
19021 @end example
19022
19023 @item
19024 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
19025 @example
19026 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
19027              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
19028 @end example
19029 @end itemize
19030
19031 @section showspectrumpic
19032
19033 Convert input audio to a single video frame, representing the audio frequency
19034 spectrum.
19035
19036 The filter accepts the following options:
19037
19038 @table @option
19039 @item size, s
19040 Specify the video size for the output. For the syntax of this option, check the
19041 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19042 Default value is @code{4096x2048}.
19043
19044 @item mode
19045 Specify display mode.
19046
19047 It accepts the following values:
19048 @table @samp
19049 @item combined
19050 all channels are displayed in the same row
19051 @item separate
19052 all channels are displayed in separate rows
19053 @end table
19054 Default value is @samp{combined}.
19055
19056 @item color
19057 Specify display color mode.
19058
19059 It accepts the following values:
19060 @table @samp
19061 @item channel
19062 each channel is displayed in a separate color
19063 @item intensity
19064 each channel is displayed using the same color scheme
19065 @item rainbow
19066 each channel is displayed using the rainbow color scheme
19067 @item moreland
19068 each channel is displayed using the moreland color scheme
19069 @item nebulae
19070 each channel is displayed using the nebulae color scheme
19071 @item fire
19072 each channel is displayed using the fire color scheme
19073 @item fiery
19074 each channel is displayed using the fiery color scheme
19075 @item fruit
19076 each channel is displayed using the fruit color scheme
19077 @item cool
19078 each channel is displayed using the cool color scheme
19079 @end table
19080 Default value is @samp{intensity}.
19081
19082 @item scale
19083 Specify scale used for calculating intensity color values.
19084
19085 It accepts the following values:
19086 @table @samp
19087 @item lin
19088 linear
19089 @item sqrt
19090 square root, default
19091 @item cbrt
19092 cubic root
19093 @item log
19094 logarithmic
19095 @item 4thrt
19096 4th root
19097 @item 5thrt
19098 5th root
19099 @end table
19100 Default value is @samp{log}.
19101
19102 @item saturation
19103 Set saturation modifier for displayed colors. Negative values provide
19104 alternative color scheme. @code{0} is no saturation at all.
19105 Saturation must be in [-10.0, 10.0] range.
19106 Default value is @code{1}.
19107
19108 @item win_func
19109 Set window function.
19110
19111 It accepts the following values:
19112 @table @samp
19113 @item rect
19114 @item bartlett
19115 @item hann
19116 @item hanning
19117 @item hamming
19118 @item blackman
19119 @item welch
19120 @item flattop
19121 @item bharris
19122 @item bnuttall
19123 @item bhann
19124 @item sine
19125 @item nuttall
19126 @item lanczos
19127 @item gauss
19128 @item tukey
19129 @item dolph
19130 @item cauchy
19131 @item parzen
19132 @item poisson
19133 @end table
19134 Default value is @code{hann}.
19135
19136 @item orientation
19137 Set orientation of time vs frequency axis. Can be @code{vertical} or
19138 @code{horizontal}. Default is @code{vertical}.
19139
19140 @item gain
19141 Set scale gain for calculating intensity color values.
19142 Default value is @code{1}.
19143
19144 @item legend
19145 Draw time and frequency axes and legends. Default is enabled.
19146
19147 @item rotation
19148 Set color rotation, must be in [-1.0, 1.0] range.
19149 Default value is @code{0}.
19150 @end table
19151
19152 @subsection Examples
19153
19154 @itemize
19155 @item
19156 Extract an audio spectrogram of a whole audio track
19157 in a 1024x1024 picture using @command{ffmpeg}:
19158 @example
19159 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
19160 @end example
19161 @end itemize
19162
19163 @section showvolume
19164
19165 Convert input audio volume to a video output.
19166
19167 The filter accepts the following options:
19168
19169 @table @option
19170 @item rate, r
19171 Set video rate.
19172
19173 @item b
19174 Set border width, allowed range is [0, 5]. Default is 1.
19175
19176 @item w
19177 Set channel width, allowed range is [80, 8192]. Default is 400.
19178
19179 @item h
19180 Set channel height, allowed range is [1, 900]. Default is 20.
19181
19182 @item f
19183 Set fade, allowed range is [0.001, 1]. Default is 0.95.
19184
19185 @item c
19186 Set volume color expression.
19187
19188 The expression can use the following variables:
19189
19190 @table @option
19191 @item VOLUME
19192 Current max volume of channel in dB.
19193
19194 @item PEAK
19195 Current peak.
19196
19197 @item CHANNEL
19198 Current channel number, starting from 0.
19199 @end table
19200
19201 @item t
19202 If set, displays channel names. Default is enabled.
19203
19204 @item v
19205 If set, displays volume values. Default is enabled.
19206
19207 @item o
19208 Set orientation, can be @code{horizontal} or @code{vertical},
19209 default is @code{horizontal}.
19210
19211 @item s
19212 Set step size, allowed range s [0, 5]. Default is 0, which means
19213 step is disabled.
19214 @end table
19215
19216 @section showwaves
19217
19218 Convert input audio to a video output, representing the samples waves.
19219
19220 The filter accepts the following options:
19221
19222 @table @option
19223 @item size, s
19224 Specify the video size for the output. For the syntax of this option, check the
19225 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19226 Default value is @code{600x240}.
19227
19228 @item mode
19229 Set display mode.
19230
19231 Available values are:
19232 @table @samp
19233 @item point
19234 Draw a point for each sample.
19235
19236 @item line
19237 Draw a vertical line for each sample.
19238
19239 @item p2p
19240 Draw a point for each sample and a line between them.
19241
19242 @item cline
19243 Draw a centered vertical line for each sample.
19244 @end table
19245
19246 Default value is @code{point}.
19247
19248 @item n
19249 Set the number of samples which are printed on the same column. A
19250 larger value will decrease the frame rate. Must be a positive
19251 integer. This option can be set only if the value for @var{rate}
19252 is not explicitly specified.
19253
19254 @item rate, r
19255 Set the (approximate) output frame rate. This is done by setting the
19256 option @var{n}. Default value is "25".
19257
19258 @item split_channels
19259 Set if channels should be drawn separately or overlap. Default value is 0.
19260
19261 @item colors
19262 Set colors separated by '|' which are going to be used for drawing of each channel.
19263
19264 @item scale
19265 Set amplitude scale.
19266
19267 Available values are:
19268 @table @samp
19269 @item lin
19270 Linear.
19271
19272 @item log
19273 Logarithmic.
19274
19275 @item sqrt
19276 Square root.
19277
19278 @item cbrt
19279 Cubic root.
19280 @end table
19281
19282 Default is linear.
19283 @end table
19284
19285 @subsection Examples
19286
19287 @itemize
19288 @item
19289 Output the input file audio and the corresponding video representation
19290 at the same time:
19291 @example
19292 amovie=a.mp3,asplit[out0],showwaves[out1]
19293 @end example
19294
19295 @item
19296 Create a synthetic signal and show it with showwaves, forcing a
19297 frame rate of 30 frames per second:
19298 @example
19299 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
19300 @end example
19301 @end itemize
19302
19303 @section showwavespic
19304
19305 Convert input audio to a single video frame, representing the samples waves.
19306
19307 The filter accepts the following options:
19308
19309 @table @option
19310 @item size, s
19311 Specify the video size for the output. For the syntax of this option, check the
19312 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19313 Default value is @code{600x240}.
19314
19315 @item split_channels
19316 Set if channels should be drawn separately or overlap. Default value is 0.
19317
19318 @item colors
19319 Set colors separated by '|' which are going to be used for drawing of each channel.
19320
19321 @item scale
19322 Set amplitude scale.
19323
19324 Available values are:
19325 @table @samp
19326 @item lin
19327 Linear.
19328
19329 @item log
19330 Logarithmic.
19331
19332 @item sqrt
19333 Square root.
19334
19335 @item cbrt
19336 Cubic root.
19337 @end table
19338
19339 Default is linear.
19340 @end table
19341
19342 @subsection Examples
19343
19344 @itemize
19345 @item
19346 Extract a channel split representation of the wave form of a whole audio track
19347 in a 1024x800 picture using @command{ffmpeg}:
19348 @example
19349 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
19350 @end example
19351 @end itemize
19352
19353 @section sidedata, asidedata
19354
19355 Delete frame side data, or select frames based on it.
19356
19357 This filter accepts the following options:
19358
19359 @table @option
19360 @item mode
19361 Set mode of operation of the filter.
19362
19363 Can be one of the following:
19364
19365 @table @samp
19366 @item select
19367 Select every frame with side data of @code{type}.
19368
19369 @item delete
19370 Delete side data of @code{type}. If @code{type} is not set, delete all side
19371 data in the frame.
19372
19373 @end table
19374
19375 @item type
19376 Set side data type used with all modes. Must be set for @code{select} mode. For
19377 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
19378 in @file{libavutil/frame.h}. For example, to choose
19379 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
19380
19381 @end table
19382
19383 @section spectrumsynth
19384
19385 Sythesize audio from 2 input video spectrums, first input stream represents
19386 magnitude across time and second represents phase across time.
19387 The filter will transform from frequency domain as displayed in videos back
19388 to time domain as presented in audio output.
19389
19390 This filter is primarily created for reversing processed @ref{showspectrum}
19391 filter outputs, but can synthesize sound from other spectrograms too.
19392 But in such case results are going to be poor if the phase data is not
19393 available, because in such cases phase data need to be recreated, usually
19394 its just recreated from random noise.
19395 For best results use gray only output (@code{channel} color mode in
19396 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
19397 @code{lin} scale for phase video. To produce phase, for 2nd video, use
19398 @code{data} option. Inputs videos should generally use @code{fullframe}
19399 slide mode as that saves resources needed for decoding video.
19400
19401 The filter accepts the following options:
19402
19403 @table @option
19404 @item sample_rate
19405 Specify sample rate of output audio, the sample rate of audio from which
19406 spectrum was generated may differ.
19407
19408 @item channels
19409 Set number of channels represented in input video spectrums.
19410
19411 @item scale
19412 Set scale which was used when generating magnitude input spectrum.
19413 Can be @code{lin} or @code{log}. Default is @code{log}.
19414
19415 @item slide
19416 Set slide which was used when generating inputs spectrums.
19417 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
19418 Default is @code{fullframe}.
19419
19420 @item win_func
19421 Set window function used for resynthesis.
19422
19423 @item overlap
19424 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
19425 which means optimal overlap for selected window function will be picked.
19426
19427 @item orientation
19428 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
19429 Default is @code{vertical}.
19430 @end table
19431
19432 @subsection Examples
19433
19434 @itemize
19435 @item
19436 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
19437 then resynthesize videos back to audio with spectrumsynth:
19438 @example
19439 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
19440 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
19441 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
19442 @end example
19443 @end itemize
19444
19445 @section split, asplit
19446
19447 Split input into several identical outputs.
19448
19449 @code{asplit} works with audio input, @code{split} with video.
19450
19451 The filter accepts a single parameter which specifies the number of outputs. If
19452 unspecified, it defaults to 2.
19453
19454 @subsection Examples
19455
19456 @itemize
19457 @item
19458 Create two separate outputs from the same input:
19459 @example
19460 [in] split [out0][out1]
19461 @end example
19462
19463 @item
19464 To create 3 or more outputs, you need to specify the number of
19465 outputs, like in:
19466 @example
19467 [in] asplit=3 [out0][out1][out2]
19468 @end example
19469
19470 @item
19471 Create two separate outputs from the same input, one cropped and
19472 one padded:
19473 @example
19474 [in] split [splitout1][splitout2];
19475 [splitout1] crop=100:100:0:0    [cropout];
19476 [splitout2] pad=200:200:100:100 [padout];
19477 @end example
19478
19479 @item
19480 Create 5 copies of the input audio with @command{ffmpeg}:
19481 @example
19482 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
19483 @end example
19484 @end itemize
19485
19486 @section zmq, azmq
19487
19488 Receive commands sent through a libzmq client, and forward them to
19489 filters in the filtergraph.
19490
19491 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
19492 must be inserted between two video filters, @code{azmq} between two
19493 audio filters.
19494
19495 To enable these filters you need to install the libzmq library and
19496 headers and configure FFmpeg with @code{--enable-libzmq}.
19497
19498 For more information about libzmq see:
19499 @url{http://www.zeromq.org/}
19500
19501 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
19502 receives messages sent through a network interface defined by the
19503 @option{bind_address} option.
19504
19505 The received message must be in the form:
19506 @example
19507 @var{TARGET} @var{COMMAND} [@var{ARG}]
19508 @end example
19509
19510 @var{TARGET} specifies the target of the command, usually the name of
19511 the filter class or a specific filter instance name.
19512
19513 @var{COMMAND} specifies the name of the command for the target filter.
19514
19515 @var{ARG} is optional and specifies the optional argument list for the
19516 given @var{COMMAND}.
19517
19518 Upon reception, the message is processed and the corresponding command
19519 is injected into the filtergraph. Depending on the result, the filter
19520 will send a reply to the client, adopting the format:
19521 @example
19522 @var{ERROR_CODE} @var{ERROR_REASON}
19523 @var{MESSAGE}
19524 @end example
19525
19526 @var{MESSAGE} is optional.
19527
19528 @subsection Examples
19529
19530 Look at @file{tools/zmqsend} for an example of a zmq client which can
19531 be used to send commands processed by these filters.
19532
19533 Consider the following filtergraph generated by @command{ffplay}
19534 @example
19535 ffplay -dumpgraph 1 -f lavfi "
19536 color=s=100x100:c=red  [l];
19537 color=s=100x100:c=blue [r];
19538 nullsrc=s=200x100, zmq [bg];
19539 [bg][l]   overlay      [bg+l];
19540 [bg+l][r] overlay=x=100 "
19541 @end example
19542
19543 To change the color of the left side of the video, the following
19544 command can be used:
19545 @example
19546 echo Parsed_color_0 c yellow | tools/zmqsend
19547 @end example
19548
19549 To change the right side:
19550 @example
19551 echo Parsed_color_1 c pink | tools/zmqsend
19552 @end example
19553
19554 @c man end MULTIMEDIA FILTERS
19555
19556 @chapter Multimedia Sources
19557 @c man begin MULTIMEDIA SOURCES
19558
19559 Below is a description of the currently available multimedia sources.
19560
19561 @section amovie
19562
19563 This is the same as @ref{movie} source, except it selects an audio
19564 stream by default.
19565
19566 @anchor{movie}
19567 @section movie
19568
19569 Read audio and/or video stream(s) from a movie container.
19570
19571 It accepts the following parameters:
19572
19573 @table @option
19574 @item filename
19575 The name of the resource to read (not necessarily a file; it can also be a
19576 device or a stream accessed through some protocol).
19577
19578 @item format_name, f
19579 Specifies the format assumed for the movie to read, and can be either
19580 the name of a container or an input device. If not specified, the
19581 format is guessed from @var{movie_name} or by probing.
19582
19583 @item seek_point, sp
19584 Specifies the seek point in seconds. The frames will be output
19585 starting from this seek point. The parameter is evaluated with
19586 @code{av_strtod}, so the numerical value may be suffixed by an IS
19587 postfix. The default value is "0".
19588
19589 @item streams, s
19590 Specifies the streams to read. Several streams can be specified,
19591 separated by "+". The source will then have as many outputs, in the
19592 same order. The syntax is explained in the ``Stream specifiers''
19593 section in the ffmpeg manual. Two special names, "dv" and "da" specify
19594 respectively the default (best suited) video and audio stream. Default
19595 is "dv", or "da" if the filter is called as "amovie".
19596
19597 @item stream_index, si
19598 Specifies the index of the video stream to read. If the value is -1,
19599 the most suitable video stream will be automatically selected. The default
19600 value is "-1". Deprecated. If the filter is called "amovie", it will select
19601 audio instead of video.
19602
19603 @item loop
19604 Specifies how many times to read the stream in sequence.
19605 If the value is 0, the stream will be looped infinitely.
19606 Default value is "1".
19607
19608 Note that when the movie is looped the source timestamps are not
19609 changed, so it will generate non monotonically increasing timestamps.
19610
19611 @item discontinuity
19612 Specifies the time difference between frames above which the point is
19613 considered a timestamp discontinuity which is removed by adjusting the later
19614 timestamps.
19615 @end table
19616
19617 It allows overlaying a second video on top of the main input of
19618 a filtergraph, as shown in this graph:
19619 @example
19620 input -----------> deltapts0 --> overlay --> output
19621                                     ^
19622                                     |
19623 movie --> scale--> deltapts1 -------+
19624 @end example
19625 @subsection Examples
19626
19627 @itemize
19628 @item
19629 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
19630 on top of the input labelled "in":
19631 @example
19632 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
19633 [in] setpts=PTS-STARTPTS [main];
19634 [main][over] overlay=16:16 [out]
19635 @end example
19636
19637 @item
19638 Read from a video4linux2 device, and overlay it on top of the input
19639 labelled "in":
19640 @example
19641 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
19642 [in] setpts=PTS-STARTPTS [main];
19643 [main][over] overlay=16:16 [out]
19644 @end example
19645
19646 @item
19647 Read the first video stream and the audio stream with id 0x81 from
19648 dvd.vob; the video is connected to the pad named "video" and the audio is
19649 connected to the pad named "audio":
19650 @example
19651 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
19652 @end example
19653 @end itemize
19654
19655 @subsection Commands
19656
19657 Both movie and amovie support the following commands:
19658 @table @option
19659 @item seek
19660 Perform seek using "av_seek_frame".
19661 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
19662 @itemize
19663 @item
19664 @var{stream_index}: If stream_index is -1, a default
19665 stream is selected, and @var{timestamp} is automatically converted
19666 from AV_TIME_BASE units to the stream specific time_base.
19667 @item
19668 @var{timestamp}: Timestamp in AVStream.time_base units
19669 or, if no stream is specified, in AV_TIME_BASE units.
19670 @item
19671 @var{flags}: Flags which select direction and seeking mode.
19672 @end itemize
19673
19674 @item get_duration
19675 Get movie duration in AV_TIME_BASE units.
19676
19677 @end table
19678
19679 @c man end MULTIMEDIA SOURCES