]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
doc/filters: fix typo in acrusher filter docs
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program.
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
216 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
217 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
218 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
219 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
220 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
221 @end example
222
223 @section Notes on filtergraph escaping
224
225 Filtergraph description composition entails several levels of
226 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
227 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
228 information about the employed escaping procedure.
229
230 A first level escaping affects the content of each filter option
231 value, which may contain the special character @code{:} used to
232 separate values, or one of the escaping characters @code{\'}.
233
234 A second level escaping affects the whole filter description, which
235 may contain the escaping characters @code{\'} or the special
236 characters @code{[],;} used by the filtergraph description.
237
238 Finally, when you specify a filtergraph on a shell commandline, you
239 need to perform a third level escaping for the shell special
240 characters contained within it.
241
242 For example, consider the following string to be embedded in
243 the @ref{drawtext} filter description @option{text} value:
244 @example
245 this is a 'string': may contain one, or more, special characters
246 @end example
247
248 This string contains the @code{'} special escaping character, and the
249 @code{:} special character, so it needs to be escaped in this way:
250 @example
251 text=this is a \'string\'\: may contain one, or more, special characters
252 @end example
253
254 A second level of escaping is required when embedding the filter
255 description in a filtergraph description, in order to escape all the
256 filtergraph special characters. Thus the example above becomes:
257 @example
258 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
259 @end example
260 (note that in addition to the @code{\'} escaping special characters,
261 also @code{,} needs to be escaped).
262
263 Finally an additional level of escaping is needed when writing the
264 filtergraph description in a shell command, which depends on the
265 escaping rules of the adopted shell. For example, assuming that
266 @code{\} is special and needs to be escaped with another @code{\}, the
267 previous string will finally result in:
268 @example
269 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
270 @end example
271
272 @chapter Timeline editing
273
274 Some filters support a generic @option{enable} option. For the filters
275 supporting timeline editing, this option can be set to an expression which is
276 evaluated before sending a frame to the filter. If the evaluation is non-zero,
277 the filter will be enabled, otherwise the frame will be sent unchanged to the
278 next filter in the filtergraph.
279
280 The expression accepts the following values:
281 @table @samp
282 @item t
283 timestamp expressed in seconds, NAN if the input timestamp is unknown
284
285 @item n
286 sequential number of the input frame, starting from 0
287
288 @item pos
289 the position in the file of the input frame, NAN if unknown
290
291 @item w
292 @item h
293 width and height of the input frame if video
294 @end table
295
296 Additionally, these filters support an @option{enable} command that can be used
297 to re-define the expression.
298
299 Like any other filtering option, the @option{enable} option follows the same
300 rules.
301
302 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
303 minutes, and a @ref{curves} filter starting at 3 seconds:
304 @example
305 smartblur = enable='between(t,10,3*60)',
306 curves    = enable='gte(t,3)' : preset=cross_process
307 @end example
308
309 @c man end FILTERGRAPH DESCRIPTION
310
311 @chapter Audio Filters
312 @c man begin AUDIO FILTERS
313
314 When you configure your FFmpeg build, you can disable any of the
315 existing filters using @code{--disable-filters}.
316 The configure output will show the audio filters included in your
317 build.
318
319 Below is a description of the currently available audio filters.
320
321 @section acompressor
322
323 A compressor is mainly used to reduce the dynamic range of a signal.
324 Especially modern music is mostly compressed at a high ratio to
325 improve the overall loudness. It's done to get the highest attention
326 of a listener, "fatten" the sound and bring more "power" to the track.
327 If a signal is compressed too much it may sound dull or "dead"
328 afterwards or it may start to "pump" (which could be a powerful effect
329 but can also destroy a track completely).
330 The right compression is the key to reach a professional sound and is
331 the high art of mixing and mastering. Because of its complex settings
332 it may take a long time to get the right feeling for this kind of effect.
333
334 Compression is done by detecting the volume above a chosen level
335 @code{threshold} and dividing it by the factor set with @code{ratio}.
336 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
337 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
338 the signal would cause distortion of the waveform the reduction can be
339 levelled over the time. This is done by setting "Attack" and "Release".
340 @code{attack} determines how long the signal has to rise above the threshold
341 before any reduction will occur and @code{release} sets the time the signal
342 has to fall below the threshold to reduce the reduction again. Shorter signals
343 than the chosen attack time will be left untouched.
344 The overall reduction of the signal can be made up afterwards with the
345 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
346 raising the makeup to this level results in a signal twice as loud than the
347 source. To gain a softer entry in the compression the @code{knee} flattens the
348 hard edge at the threshold in the range of the chosen decibels.
349
350 The filter accepts the following options:
351
352 @table @option
353 @item level_in
354 Set input gain. Default is 1. Range is between 0.015625 and 64.
355
356 @item threshold
357 If a signal of second stream rises above this level it will affect the gain
358 reduction of the first stream.
359 By default it is 0.125. Range is between 0.00097563 and 1.
360
361 @item ratio
362 Set a ratio by which the signal is reduced. 1:2 means that if the level
363 rose 4dB above the threshold, it will be only 2dB above after the reduction.
364 Default is 2. Range is between 1 and 20.
365
366 @item attack
367 Amount of milliseconds the signal has to rise above the threshold before gain
368 reduction starts. Default is 20. Range is between 0.01 and 2000.
369
370 @item release
371 Amount of milliseconds the signal has to fall below the threshold before
372 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
373
374 @item makeup
375 Set the amount by how much signal will be amplified after processing.
376 Default is 2. Range is from 1 and 64.
377
378 @item knee
379 Curve the sharp knee around the threshold to enter gain reduction more softly.
380 Default is 2.82843. Range is between 1 and 8.
381
382 @item link
383 Choose if the @code{average} level between all channels of input stream
384 or the louder(@code{maximum}) channel of input stream affects the
385 reduction. Default is @code{average}.
386
387 @item detection
388 Should the exact signal be taken in case of @code{peak} or an RMS one in case
389 of @code{rms}. Default is @code{rms} which is mostly smoother.
390
391 @item mix
392 How much to use compressed signal in output. Default is 1.
393 Range is between 0 and 1.
394 @end table
395
396 @section acrossfade
397
398 Apply cross fade from one input audio stream to another input audio stream.
399 The cross fade is applied for specified duration near the end of first stream.
400
401 The filter accepts the following options:
402
403 @table @option
404 @item nb_samples, ns
405 Specify the number of samples for which the cross fade effect has to last.
406 At the end of the cross fade effect the first input audio will be completely
407 silent. Default is 44100.
408
409 @item duration, d
410 Specify the duration of the cross fade effect. See
411 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
412 for the accepted syntax.
413 By default the duration is determined by @var{nb_samples}.
414 If set this option is used instead of @var{nb_samples}.
415
416 @item overlap, o
417 Should first stream end overlap with second stream start. Default is enabled.
418
419 @item curve1
420 Set curve for cross fade transition for first stream.
421
422 @item curve2
423 Set curve for cross fade transition for second stream.
424
425 For description of available curve types see @ref{afade} filter description.
426 @end table
427
428 @subsection Examples
429
430 @itemize
431 @item
432 Cross fade from one input to another:
433 @example
434 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
435 @end example
436
437 @item
438 Cross fade from one input to another but without overlapping:
439 @example
440 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
441 @end example
442 @end itemize
443
444 @section acrusher
445
446 Reduce audio bit resolution.
447
448 This filter is bit crusher with enhanced functionality. A bit crusher
449 is used to audibly reduce number of bits an audio signal is sampled
450 with. This doesn't change the bit depth at all, it just produces the
451 effect. Material reduced in bit depth sounds more harsh and "digital".
452 This filter is able to even round to continous values instead of discrete
453 bit depths.
454 Additionally it has a D/C offset which results in different crushing of
455 the lower and the upper half of the signal.
456 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
457
458 Another feature of this filter is the logarithmic mode.
459 This setting switches from linear distances between bits to logarithmic ones.
460 The result is a much more "natural" sounding crusher which doesn't gate low
461 signals for example. The human ear has a logarithmic perception, too
462 so this kind of crushing is much more pleasant.
463 Logarithmic crushing is also able to get anti-aliased.
464
465 The filter accepts the following options:
466
467 @table @option
468 @item level_in
469 Set level in.
470
471 @item level_out
472 Set level out.
473
474 @item bits
475 Set bit reduction.
476
477 @item mix
478 Set mixing ammount.
479
480 @item mode
481 Can be linear: @code{lin} or logarithmic: @code{log}.
482
483 @item dc
484 Set DC.
485
486 @item aa
487 Set anti-aliasing.
488
489 @item samples
490 Set sample reduction.
491
492 @item lfo
493 Enable LFO. By default disabled.
494
495 @item lforange
496 Set LFO range.
497
498 @item lforate
499 Set LFO rate.
500 @end table
501
502 @section adelay
503
504 Delay one or more audio channels.
505
506 Samples in delayed channel are filled with silence.
507
508 The filter accepts the following option:
509
510 @table @option
511 @item delays
512 Set list of delays in milliseconds for each channel separated by '|'.
513 At least one delay greater than 0 should be provided.
514 Unused delays will be silently ignored. If number of given delays is
515 smaller than number of channels all remaining channels will not be delayed.
516 @end table
517
518 @subsection Examples
519
520 @itemize
521 @item
522 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
523 the second channel (and any other channels that may be present) unchanged.
524 @example
525 adelay=1500|0|500
526 @end example
527 @end itemize
528
529 @section aecho
530
531 Apply echoing to the input audio.
532
533 Echoes are reflected sound and can occur naturally amongst mountains
534 (and sometimes large buildings) when talking or shouting; digital echo
535 effects emulate this behaviour and are often used to help fill out the
536 sound of a single instrument or vocal. The time difference between the
537 original signal and the reflection is the @code{delay}, and the
538 loudness of the reflected signal is the @code{decay}.
539 Multiple echoes can have different delays and decays.
540
541 A description of the accepted parameters follows.
542
543 @table @option
544 @item in_gain
545 Set input gain of reflected signal. Default is @code{0.6}.
546
547 @item out_gain
548 Set output gain of reflected signal. Default is @code{0.3}.
549
550 @item delays
551 Set list of time intervals in milliseconds between original signal and reflections
552 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
553 Default is @code{1000}.
554
555 @item decays
556 Set list of loudnesses of reflected signals separated by '|'.
557 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
558 Default is @code{0.5}.
559 @end table
560
561 @subsection Examples
562
563 @itemize
564 @item
565 Make it sound as if there are twice as many instruments as are actually playing:
566 @example
567 aecho=0.8:0.88:60:0.4
568 @end example
569
570 @item
571 If delay is very short, then it sound like a (metallic) robot playing music:
572 @example
573 aecho=0.8:0.88:6:0.4
574 @end example
575
576 @item
577 A longer delay will sound like an open air concert in the mountains:
578 @example
579 aecho=0.8:0.9:1000:0.3
580 @end example
581
582 @item
583 Same as above but with one more mountain:
584 @example
585 aecho=0.8:0.9:1000|1800:0.3|0.25
586 @end example
587 @end itemize
588
589 @section aemphasis
590 Audio emphasis filter creates or restores material directly taken from LPs or
591 emphased CDs with different filter curves. E.g. to store music on vinyl the
592 signal has to be altered by a filter first to even out the disadvantages of
593 this recording medium.
594 Once the material is played back the inverse filter has to be applied to
595 restore the distortion of the frequency response.
596
597 The filter accepts the following options:
598
599 @table @option
600 @item level_in
601 Set input gain.
602
603 @item level_out
604 Set output gain.
605
606 @item mode
607 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
608 use @code{production} mode. Default is @code{reproduction} mode.
609
610 @item type
611 Set filter type. Selects medium. Can be one of the following:
612
613 @table @option
614 @item col
615 select Columbia.
616 @item emi
617 select EMI.
618 @item bsi
619 select BSI (78RPM).
620 @item riaa
621 select RIAA.
622 @item cd
623 select Compact Disc (CD).
624 @item 50fm
625 select 50µs (FM).
626 @item 75fm
627 select 75µs (FM).
628 @item 50kf
629 select 50µs (FM-KF).
630 @item 75kf
631 select 75µs (FM-KF).
632 @end table
633 @end table
634
635 @section aeval
636
637 Modify an audio signal according to the specified expressions.
638
639 This filter accepts one or more expressions (one for each channel),
640 which are evaluated and used to modify a corresponding audio signal.
641
642 It accepts the following parameters:
643
644 @table @option
645 @item exprs
646 Set the '|'-separated expressions list for each separate channel. If
647 the number of input channels is greater than the number of
648 expressions, the last specified expression is used for the remaining
649 output channels.
650
651 @item channel_layout, c
652 Set output channel layout. If not specified, the channel layout is
653 specified by the number of expressions. If set to @samp{same}, it will
654 use by default the same input channel layout.
655 @end table
656
657 Each expression in @var{exprs} can contain the following constants and functions:
658
659 @table @option
660 @item ch
661 channel number of the current expression
662
663 @item n
664 number of the evaluated sample, starting from 0
665
666 @item s
667 sample rate
668
669 @item t
670 time of the evaluated sample expressed in seconds
671
672 @item nb_in_channels
673 @item nb_out_channels
674 input and output number of channels
675
676 @item val(CH)
677 the value of input channel with number @var{CH}
678 @end table
679
680 Note: this filter is slow. For faster processing you should use a
681 dedicated filter.
682
683 @subsection Examples
684
685 @itemize
686 @item
687 Half volume:
688 @example
689 aeval=val(ch)/2:c=same
690 @end example
691
692 @item
693 Invert phase of the second channel:
694 @example
695 aeval=val(0)|-val(1)
696 @end example
697 @end itemize
698
699 @anchor{afade}
700 @section afade
701
702 Apply fade-in/out effect to input audio.
703
704 A description of the accepted parameters follows.
705
706 @table @option
707 @item type, t
708 Specify the effect type, can be either @code{in} for fade-in, or
709 @code{out} for a fade-out effect. Default is @code{in}.
710
711 @item start_sample, ss
712 Specify the number of the start sample for starting to apply the fade
713 effect. Default is 0.
714
715 @item nb_samples, ns
716 Specify the number of samples for which the fade effect has to last. At
717 the end of the fade-in effect the output audio will have the same
718 volume as the input audio, at the end of the fade-out transition
719 the output audio will be silence. Default is 44100.
720
721 @item start_time, st
722 Specify the start time of the fade effect. Default is 0.
723 The value must be specified as a time duration; see
724 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
725 for the accepted syntax.
726 If set this option is used instead of @var{start_sample}.
727
728 @item duration, d
729 Specify the duration of the fade effect. See
730 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
731 for the accepted syntax.
732 At the end of the fade-in effect the output audio will have the same
733 volume as the input audio, at the end of the fade-out transition
734 the output audio will be silence.
735 By default the duration is determined by @var{nb_samples}.
736 If set this option is used instead of @var{nb_samples}.
737
738 @item curve
739 Set curve for fade transition.
740
741 It accepts the following values:
742 @table @option
743 @item tri
744 select triangular, linear slope (default)
745 @item qsin
746 select quarter of sine wave
747 @item hsin
748 select half of sine wave
749 @item esin
750 select exponential sine wave
751 @item log
752 select logarithmic
753 @item ipar
754 select inverted parabola
755 @item qua
756 select quadratic
757 @item cub
758 select cubic
759 @item squ
760 select square root
761 @item cbr
762 select cubic root
763 @item par
764 select parabola
765 @item exp
766 select exponential
767 @item iqsin
768 select inverted quarter of sine wave
769 @item ihsin
770 select inverted half of sine wave
771 @item dese
772 select double-exponential seat
773 @item desi
774 select double-exponential sigmoid
775 @end table
776 @end table
777
778 @subsection Examples
779
780 @itemize
781 @item
782 Fade in first 15 seconds of audio:
783 @example
784 afade=t=in:ss=0:d=15
785 @end example
786
787 @item
788 Fade out last 25 seconds of a 900 seconds audio:
789 @example
790 afade=t=out:st=875:d=25
791 @end example
792 @end itemize
793
794 @section afftfilt
795 Apply arbitrary expressions to samples in frequency domain.
796
797 @table @option
798 @item real
799 Set frequency domain real expression for each separate channel separated
800 by '|'. Default is "1".
801 If the number of input channels is greater than the number of
802 expressions, the last specified expression is used for the remaining
803 output channels.
804
805 @item imag
806 Set frequency domain imaginary expression for each separate channel
807 separated by '|'. If not set, @var{real} option is used.
808
809 Each expression in @var{real} and @var{imag} can contain the following
810 constants:
811
812 @table @option
813 @item sr
814 sample rate
815
816 @item b
817 current frequency bin number
818
819 @item nb
820 number of available bins
821
822 @item ch
823 channel number of the current expression
824
825 @item chs
826 number of channels
827
828 @item pts
829 current frame pts
830 @end table
831
832 @item win_size
833 Set window size.
834
835 It accepts the following values:
836 @table @samp
837 @item w16
838 @item w32
839 @item w64
840 @item w128
841 @item w256
842 @item w512
843 @item w1024
844 @item w2048
845 @item w4096
846 @item w8192
847 @item w16384
848 @item w32768
849 @item w65536
850 @end table
851 Default is @code{w4096}
852
853 @item win_func
854 Set window function. Default is @code{hann}.
855
856 @item overlap
857 Set window overlap. If set to 1, the recommended overlap for selected
858 window function will be picked. Default is @code{0.75}.
859 @end table
860
861 @subsection Examples
862
863 @itemize
864 @item
865 Leave almost only low frequencies in audio:
866 @example
867 afftfilt="1-clip((b/nb)*b,0,1)"
868 @end example
869 @end itemize
870
871 @anchor{aformat}
872 @section aformat
873
874 Set output format constraints for the input audio. The framework will
875 negotiate the most appropriate format to minimize conversions.
876
877 It accepts the following parameters:
878 @table @option
879
880 @item sample_fmts
881 A '|'-separated list of requested sample formats.
882
883 @item sample_rates
884 A '|'-separated list of requested sample rates.
885
886 @item channel_layouts
887 A '|'-separated list of requested channel layouts.
888
889 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
890 for the required syntax.
891 @end table
892
893 If a parameter is omitted, all values are allowed.
894
895 Force the output to either unsigned 8-bit or signed 16-bit stereo
896 @example
897 aformat=sample_fmts=u8|s16:channel_layouts=stereo
898 @end example
899
900 @section agate
901
902 A gate is mainly used to reduce lower parts of a signal. This kind of signal
903 processing reduces disturbing noise between useful signals.
904
905 Gating is done by detecting the volume below a chosen level @var{threshold}
906 and divide it by the factor set with @var{ratio}. The bottom of the noise
907 floor is set via @var{range}. Because an exact manipulation of the signal
908 would cause distortion of the waveform the reduction can be levelled over
909 time. This is done by setting @var{attack} and @var{release}.
910
911 @var{attack} determines how long the signal has to fall below the threshold
912 before any reduction will occur and @var{release} sets the time the signal
913 has to raise above the threshold to reduce the reduction again.
914 Shorter signals than the chosen attack time will be left untouched.
915
916 @table @option
917 @item level_in
918 Set input level before filtering.
919 Default is 1. Allowed range is from 0.015625 to 64.
920
921 @item range
922 Set the level of gain reduction when the signal is below the threshold.
923 Default is 0.06125. Allowed range is from 0 to 1.
924
925 @item threshold
926 If a signal rises above this level the gain reduction is released.
927 Default is 0.125. Allowed range is from 0 to 1.
928
929 @item ratio
930 Set a ratio about which the signal is reduced.
931 Default is 2. Allowed range is from 1 to 9000.
932
933 @item attack
934 Amount of milliseconds the signal has to rise above the threshold before gain
935 reduction stops.
936 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
937
938 @item release
939 Amount of milliseconds the signal has to fall below the threshold before the
940 reduction is increased again. Default is 250 milliseconds.
941 Allowed range is from 0.01 to 9000.
942
943 @item makeup
944 Set amount of amplification of signal after processing.
945 Default is 1. Allowed range is from 1 to 64.
946
947 @item knee
948 Curve the sharp knee around the threshold to enter gain reduction more softly.
949 Default is 2.828427125. Allowed range is from 1 to 8.
950
951 @item detection
952 Choose if exact signal should be taken for detection or an RMS like one.
953 Default is rms. Can be peak or rms.
954
955 @item link
956 Choose if the average level between all channels or the louder channel affects
957 the reduction.
958 Default is average. Can be average or maximum.
959 @end table
960
961 @section alimiter
962
963 The limiter prevents input signal from raising over a desired threshold.
964 This limiter uses lookahead technology to prevent your signal from distorting.
965 It means that there is a small delay after signal is processed. Keep in mind
966 that the delay it produces is the attack time you set.
967
968 The filter accepts the following options:
969
970 @table @option
971 @item level_in
972 Set input gain. Default is 1.
973
974 @item level_out
975 Set output gain. Default is 1.
976
977 @item limit
978 Don't let signals above this level pass the limiter. Default is 1.
979
980 @item attack
981 The limiter will reach its attenuation level in this amount of time in
982 milliseconds. Default is 5 milliseconds.
983
984 @item release
985 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
986 Default is 50 milliseconds.
987
988 @item asc
989 When gain reduction is always needed ASC takes care of releasing to an
990 average reduction level rather than reaching a reduction of 0 in the release
991 time.
992
993 @item asc_level
994 Select how much the release time is affected by ASC, 0 means nearly no changes
995 in release time while 1 produces higher release times.
996
997 @item level
998 Auto level output signal. Default is enabled.
999 This normalizes audio back to 0dB if enabled.
1000 @end table
1001
1002 Depending on picked setting it is recommended to upsample input 2x or 4x times
1003 with @ref{aresample} before applying this filter.
1004
1005 @section allpass
1006
1007 Apply a two-pole all-pass filter with central frequency (in Hz)
1008 @var{frequency}, and filter-width @var{width}.
1009 An all-pass filter changes the audio's frequency to phase relationship
1010 without changing its frequency to amplitude relationship.
1011
1012 The filter accepts the following options:
1013
1014 @table @option
1015 @item frequency, f
1016 Set frequency in Hz.
1017
1018 @item width_type
1019 Set method to specify band-width of filter.
1020 @table @option
1021 @item h
1022 Hz
1023 @item q
1024 Q-Factor
1025 @item o
1026 octave
1027 @item s
1028 slope
1029 @end table
1030
1031 @item width, w
1032 Specify the band-width of a filter in width_type units.
1033 @end table
1034
1035 @section aloop
1036
1037 Loop audio samples.
1038
1039 The filter accepts the following options:
1040
1041 @table @option
1042 @item loop
1043 Set the number of loops.
1044
1045 @item size
1046 Set maximal number of samples.
1047
1048 @item start
1049 Set first sample of loop.
1050 @end table
1051
1052 @anchor{amerge}
1053 @section amerge
1054
1055 Merge two or more audio streams into a single multi-channel stream.
1056
1057 The filter accepts the following options:
1058
1059 @table @option
1060
1061 @item inputs
1062 Set the number of inputs. Default is 2.
1063
1064 @end table
1065
1066 If the channel layouts of the inputs are disjoint, and therefore compatible,
1067 the channel layout of the output will be set accordingly and the channels
1068 will be reordered as necessary. If the channel layouts of the inputs are not
1069 disjoint, the output will have all the channels of the first input then all
1070 the channels of the second input, in that order, and the channel layout of
1071 the output will be the default value corresponding to the total number of
1072 channels.
1073
1074 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1075 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1076 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1077 first input, b1 is the first channel of the second input).
1078
1079 On the other hand, if both input are in stereo, the output channels will be
1080 in the default order: a1, a2, b1, b2, and the channel layout will be
1081 arbitrarily set to 4.0, which may or may not be the expected value.
1082
1083 All inputs must have the same sample rate, and format.
1084
1085 If inputs do not have the same duration, the output will stop with the
1086 shortest.
1087
1088 @subsection Examples
1089
1090 @itemize
1091 @item
1092 Merge two mono files into a stereo stream:
1093 @example
1094 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1095 @end example
1096
1097 @item
1098 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1099 @example
1100 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
1101 @end example
1102 @end itemize
1103
1104 @section amix
1105
1106 Mixes multiple audio inputs into a single output.
1107
1108 Note that this filter only supports float samples (the @var{amerge}
1109 and @var{pan} audio filters support many formats). If the @var{amix}
1110 input has integer samples then @ref{aresample} will be automatically
1111 inserted to perform the conversion to float samples.
1112
1113 For example
1114 @example
1115 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1116 @end example
1117 will mix 3 input audio streams to a single output with the same duration as the
1118 first input and a dropout transition time of 3 seconds.
1119
1120 It accepts the following parameters:
1121 @table @option
1122
1123 @item inputs
1124 The number of inputs. If unspecified, it defaults to 2.
1125
1126 @item duration
1127 How to determine the end-of-stream.
1128 @table @option
1129
1130 @item longest
1131 The duration of the longest input. (default)
1132
1133 @item shortest
1134 The duration of the shortest input.
1135
1136 @item first
1137 The duration of the first input.
1138
1139 @end table
1140
1141 @item dropout_transition
1142 The transition time, in seconds, for volume renormalization when an input
1143 stream ends. The default value is 2 seconds.
1144
1145 @end table
1146
1147 @section anequalizer
1148
1149 High-order parametric multiband equalizer for each channel.
1150
1151 It accepts the following parameters:
1152 @table @option
1153 @item params
1154
1155 This option string is in format:
1156 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1157 Each equalizer band is separated by '|'.
1158
1159 @table @option
1160 @item chn
1161 Set channel number to which equalization will be applied.
1162 If input doesn't have that channel the entry is ignored.
1163
1164 @item cf
1165 Set central frequency for band.
1166 If input doesn't have that frequency the entry is ignored.
1167
1168 @item w
1169 Set band width in hertz.
1170
1171 @item g
1172 Set band gain in dB.
1173
1174 @item f
1175 Set filter type for band, optional, can be:
1176
1177 @table @samp
1178 @item 0
1179 Butterworth, this is default.
1180
1181 @item 1
1182 Chebyshev type 1.
1183
1184 @item 2
1185 Chebyshev type 2.
1186 @end table
1187 @end table
1188
1189 @item curves
1190 With this option activated frequency response of anequalizer is displayed
1191 in video stream.
1192
1193 @item size
1194 Set video stream size. Only useful if curves option is activated.
1195
1196 @item mgain
1197 Set max gain that will be displayed. Only useful if curves option is activated.
1198 Setting this to reasonable value allows to display gain which is derived from
1199 neighbour bands which are too close to each other and thus produce higher gain
1200 when both are activated.
1201
1202 @item fscale
1203 Set frequency scale used to draw frequency response in video output.
1204 Can be linear or logarithmic. Default is logarithmic.
1205
1206 @item colors
1207 Set color for each channel curve which is going to be displayed in video stream.
1208 This is list of color names separated by space or by '|'.
1209 Unrecognised or missing colors will be replaced by white color.
1210 @end table
1211
1212 @subsection Examples
1213
1214 @itemize
1215 @item
1216 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1217 for first 2 channels using Chebyshev type 1 filter:
1218 @example
1219 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1220 @end example
1221 @end itemize
1222
1223 @subsection Commands
1224
1225 This filter supports the following commands:
1226 @table @option
1227 @item change
1228 Alter existing filter parameters.
1229 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1230
1231 @var{fN} is existing filter number, starting from 0, if no such filter is available
1232 error is returned.
1233 @var{freq} set new frequency parameter.
1234 @var{width} set new width parameter in herz.
1235 @var{gain} set new gain parameter in dB.
1236
1237 Full filter invocation with asendcmd may look like this:
1238 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1239 @end table
1240
1241 @section anull
1242
1243 Pass the audio source unchanged to the output.
1244
1245 @section apad
1246
1247 Pad the end of an audio stream with silence.
1248
1249 This can be used together with @command{ffmpeg} @option{-shortest} to
1250 extend audio streams to the same length as the video stream.
1251
1252 A description of the accepted options follows.
1253
1254 @table @option
1255 @item packet_size
1256 Set silence packet size. Default value is 4096.
1257
1258 @item pad_len
1259 Set the number of samples of silence to add to the end. After the
1260 value is reached, the stream is terminated. This option is mutually
1261 exclusive with @option{whole_len}.
1262
1263 @item whole_len
1264 Set the minimum total number of samples in the output audio stream. If
1265 the value is longer than the input audio length, silence is added to
1266 the end, until the value is reached. This option is mutually exclusive
1267 with @option{pad_len}.
1268 @end table
1269
1270 If neither the @option{pad_len} nor the @option{whole_len} option is
1271 set, the filter will add silence to the end of the input stream
1272 indefinitely.
1273
1274 @subsection Examples
1275
1276 @itemize
1277 @item
1278 Add 1024 samples of silence to the end of the input:
1279 @example
1280 apad=pad_len=1024
1281 @end example
1282
1283 @item
1284 Make sure the audio output will contain at least 10000 samples, pad
1285 the input with silence if required:
1286 @example
1287 apad=whole_len=10000
1288 @end example
1289
1290 @item
1291 Use @command{ffmpeg} to pad the audio input with silence, so that the
1292 video stream will always result the shortest and will be converted
1293 until the end in the output file when using the @option{shortest}
1294 option:
1295 @example
1296 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1297 @end example
1298 @end itemize
1299
1300 @section aphaser
1301 Add a phasing effect to the input audio.
1302
1303 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1304 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1305
1306 A description of the accepted parameters follows.
1307
1308 @table @option
1309 @item in_gain
1310 Set input gain. Default is 0.4.
1311
1312 @item out_gain
1313 Set output gain. Default is 0.74
1314
1315 @item delay
1316 Set delay in milliseconds. Default is 3.0.
1317
1318 @item decay
1319 Set decay. Default is 0.4.
1320
1321 @item speed
1322 Set modulation speed in Hz. Default is 0.5.
1323
1324 @item type
1325 Set modulation type. Default is triangular.
1326
1327 It accepts the following values:
1328 @table @samp
1329 @item triangular, t
1330 @item sinusoidal, s
1331 @end table
1332 @end table
1333
1334 @section apulsator
1335
1336 Audio pulsator is something between an autopanner and a tremolo.
1337 But it can produce funny stereo effects as well. Pulsator changes the volume
1338 of the left and right channel based on a LFO (low frequency oscillator) with
1339 different waveforms and shifted phases.
1340 This filter have the ability to define an offset between left and right
1341 channel. An offset of 0 means that both LFO shapes match each other.
1342 The left and right channel are altered equally - a conventional tremolo.
1343 An offset of 50% means that the shape of the right channel is exactly shifted
1344 in phase (or moved backwards about half of the frequency) - pulsator acts as
1345 an autopanner. At 1 both curves match again. Every setting in between moves the
1346 phase shift gapless between all stages and produces some "bypassing" sounds with
1347 sine and triangle waveforms. The more you set the offset near 1 (starting from
1348 the 0.5) the faster the signal passes from the left to the right speaker.
1349
1350 The filter accepts the following options:
1351
1352 @table @option
1353 @item level_in
1354 Set input gain. By default it is 1. Range is [0.015625 - 64].
1355
1356 @item level_out
1357 Set output gain. By default it is 1. Range is [0.015625 - 64].
1358
1359 @item mode
1360 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1361 sawup or sawdown. Default is sine.
1362
1363 @item amount
1364 Set modulation. Define how much of original signal is affected by the LFO.
1365
1366 @item offset_l
1367 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1368
1369 @item offset_r
1370 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1371
1372 @item width
1373 Set pulse width. Default is 1. Allowed range is [0 - 2].
1374
1375 @item timing
1376 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1377
1378 @item bpm
1379 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1380 is set to bpm.
1381
1382 @item ms
1383 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1384 is set to ms.
1385
1386 @item hz
1387 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1388 if timing is set to hz.
1389 @end table
1390
1391 @anchor{aresample}
1392 @section aresample
1393
1394 Resample the input audio to the specified parameters, using the
1395 libswresample library. If none are specified then the filter will
1396 automatically convert between its input and output.
1397
1398 This filter is also able to stretch/squeeze the audio data to make it match
1399 the timestamps or to inject silence / cut out audio to make it match the
1400 timestamps, do a combination of both or do neither.
1401
1402 The filter accepts the syntax
1403 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1404 expresses a sample rate and @var{resampler_options} is a list of
1405 @var{key}=@var{value} pairs, separated by ":". See the
1406 ffmpeg-resampler manual for the complete list of supported options.
1407
1408 @subsection Examples
1409
1410 @itemize
1411 @item
1412 Resample the input audio to 44100Hz:
1413 @example
1414 aresample=44100
1415 @end example
1416
1417 @item
1418 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1419 samples per second compensation:
1420 @example
1421 aresample=async=1000
1422 @end example
1423 @end itemize
1424
1425 @section areverse
1426
1427 Reverse an audio clip.
1428
1429 Warning: This filter requires memory to buffer the entire clip, so trimming
1430 is suggested.
1431
1432 @subsection Examples
1433
1434 @itemize
1435 @item
1436 Take the first 5 seconds of a clip, and reverse it.
1437 @example
1438 atrim=end=5,areverse
1439 @end example
1440 @end itemize
1441
1442 @section asetnsamples
1443
1444 Set the number of samples per each output audio frame.
1445
1446 The last output packet may contain a different number of samples, as
1447 the filter will flush all the remaining samples when the input audio
1448 signal its end.
1449
1450 The filter accepts the following options:
1451
1452 @table @option
1453
1454 @item nb_out_samples, n
1455 Set the number of frames per each output audio frame. The number is
1456 intended as the number of samples @emph{per each channel}.
1457 Default value is 1024.
1458
1459 @item pad, p
1460 If set to 1, the filter will pad the last audio frame with zeroes, so
1461 that the last frame will contain the same number of samples as the
1462 previous ones. Default value is 1.
1463 @end table
1464
1465 For example, to set the number of per-frame samples to 1234 and
1466 disable padding for the last frame, use:
1467 @example
1468 asetnsamples=n=1234:p=0
1469 @end example
1470
1471 @section asetrate
1472
1473 Set the sample rate without altering the PCM data.
1474 This will result in a change of speed and pitch.
1475
1476 The filter accepts the following options:
1477
1478 @table @option
1479 @item sample_rate, r
1480 Set the output sample rate. Default is 44100 Hz.
1481 @end table
1482
1483 @section ashowinfo
1484
1485 Show a line containing various information for each input audio frame.
1486 The input audio is not modified.
1487
1488 The shown line contains a sequence of key/value pairs of the form
1489 @var{key}:@var{value}.
1490
1491 The following values are shown in the output:
1492
1493 @table @option
1494 @item n
1495 The (sequential) number of the input frame, starting from 0.
1496
1497 @item pts
1498 The presentation timestamp of the input frame, in time base units; the time base
1499 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1500
1501 @item pts_time
1502 The presentation timestamp of the input frame in seconds.
1503
1504 @item pos
1505 position of the frame in the input stream, -1 if this information in
1506 unavailable and/or meaningless (for example in case of synthetic audio)
1507
1508 @item fmt
1509 The sample format.
1510
1511 @item chlayout
1512 The channel layout.
1513
1514 @item rate
1515 The sample rate for the audio frame.
1516
1517 @item nb_samples
1518 The number of samples (per channel) in the frame.
1519
1520 @item checksum
1521 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1522 audio, the data is treated as if all the planes were concatenated.
1523
1524 @item plane_checksums
1525 A list of Adler-32 checksums for each data plane.
1526 @end table
1527
1528 @anchor{astats}
1529 @section astats
1530
1531 Display time domain statistical information about the audio channels.
1532 Statistics are calculated and displayed for each audio channel and,
1533 where applicable, an overall figure is also given.
1534
1535 It accepts the following option:
1536 @table @option
1537 @item length
1538 Short window length in seconds, used for peak and trough RMS measurement.
1539 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1540
1541 @item metadata
1542
1543 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1544 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1545 disabled.
1546
1547 Available keys for each channel are:
1548 DC_offset
1549 Min_level
1550 Max_level
1551 Min_difference
1552 Max_difference
1553 Mean_difference
1554 Peak_level
1555 RMS_peak
1556 RMS_trough
1557 Crest_factor
1558 Flat_factor
1559 Peak_count
1560 Bit_depth
1561
1562 and for Overall:
1563 DC_offset
1564 Min_level
1565 Max_level
1566 Min_difference
1567 Max_difference
1568 Mean_difference
1569 Peak_level
1570 RMS_level
1571 RMS_peak
1572 RMS_trough
1573 Flat_factor
1574 Peak_count
1575 Bit_depth
1576 Number_of_samples
1577
1578 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1579 this @code{lavfi.astats.Overall.Peak_count}.
1580
1581 For description what each key means read below.
1582
1583 @item reset
1584 Set number of frame after which stats are going to be recalculated.
1585 Default is disabled.
1586 @end table
1587
1588 A description of each shown parameter follows:
1589
1590 @table @option
1591 @item DC offset
1592 Mean amplitude displacement from zero.
1593
1594 @item Min level
1595 Minimal sample level.
1596
1597 @item Max level
1598 Maximal sample level.
1599
1600 @item Min difference
1601 Minimal difference between two consecutive samples.
1602
1603 @item Max difference
1604 Maximal difference between two consecutive samples.
1605
1606 @item Mean difference
1607 Mean difference between two consecutive samples.
1608 The average of each difference between two consecutive samples.
1609
1610 @item Peak level dB
1611 @item RMS level dB
1612 Standard peak and RMS level measured in dBFS.
1613
1614 @item RMS peak dB
1615 @item RMS trough dB
1616 Peak and trough values for RMS level measured over a short window.
1617
1618 @item Crest factor
1619 Standard ratio of peak to RMS level (note: not in dB).
1620
1621 @item Flat factor
1622 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1623 (i.e. either @var{Min level} or @var{Max level}).
1624
1625 @item Peak count
1626 Number of occasions (not the number of samples) that the signal attained either
1627 @var{Min level} or @var{Max level}.
1628
1629 @item Bit depth
1630 Overall bit depth of audio. Number of bits used for each sample.
1631 @end table
1632
1633 @section asyncts
1634
1635 Synchronize audio data with timestamps by squeezing/stretching it and/or
1636 dropping samples/adding silence when needed.
1637
1638 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1639
1640 It accepts the following parameters:
1641 @table @option
1642
1643 @item compensate
1644 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1645 by default. When disabled, time gaps are covered with silence.
1646
1647 @item min_delta
1648 The minimum difference between timestamps and audio data (in seconds) to trigger
1649 adding/dropping samples. The default value is 0.1. If you get an imperfect
1650 sync with this filter, try setting this parameter to 0.
1651
1652 @item max_comp
1653 The maximum compensation in samples per second. Only relevant with compensate=1.
1654 The default value is 500.
1655
1656 @item first_pts
1657 Assume that the first PTS should be this value. The time base is 1 / sample
1658 rate. This allows for padding/trimming at the start of the stream. By default,
1659 no assumption is made about the first frame's expected PTS, so no padding or
1660 trimming is done. For example, this could be set to 0 to pad the beginning with
1661 silence if an audio stream starts after the video stream or to trim any samples
1662 with a negative PTS due to encoder delay.
1663
1664 @end table
1665
1666 @section atempo
1667
1668 Adjust audio tempo.
1669
1670 The filter accepts exactly one parameter, the audio tempo. If not
1671 specified then the filter will assume nominal 1.0 tempo. Tempo must
1672 be in the [0.5, 2.0] range.
1673
1674 @subsection Examples
1675
1676 @itemize
1677 @item
1678 Slow down audio to 80% tempo:
1679 @example
1680 atempo=0.8
1681 @end example
1682
1683 @item
1684 To speed up audio to 125% tempo:
1685 @example
1686 atempo=1.25
1687 @end example
1688 @end itemize
1689
1690 @section atrim
1691
1692 Trim the input so that the output contains one continuous subpart of the input.
1693
1694 It accepts the following parameters:
1695 @table @option
1696 @item start
1697 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1698 sample with the timestamp @var{start} will be the first sample in the output.
1699
1700 @item end
1701 Specify time of the first audio sample that will be dropped, i.e. the
1702 audio sample immediately preceding the one with the timestamp @var{end} will be
1703 the last sample in the output.
1704
1705 @item start_pts
1706 Same as @var{start}, except this option sets the start timestamp in samples
1707 instead of seconds.
1708
1709 @item end_pts
1710 Same as @var{end}, except this option sets the end timestamp in samples instead
1711 of seconds.
1712
1713 @item duration
1714 The maximum duration of the output in seconds.
1715
1716 @item start_sample
1717 The number of the first sample that should be output.
1718
1719 @item end_sample
1720 The number of the first sample that should be dropped.
1721 @end table
1722
1723 @option{start}, @option{end}, and @option{duration} are expressed as time
1724 duration specifications; see
1725 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1726
1727 Note that the first two sets of the start/end options and the @option{duration}
1728 option look at the frame timestamp, while the _sample options simply count the
1729 samples that pass through the filter. So start/end_pts and start/end_sample will
1730 give different results when the timestamps are wrong, inexact or do not start at
1731 zero. Also note that this filter does not modify the timestamps. If you wish
1732 to have the output timestamps start at zero, insert the asetpts filter after the
1733 atrim filter.
1734
1735 If multiple start or end options are set, this filter tries to be greedy and
1736 keep all samples that match at least one of the specified constraints. To keep
1737 only the part that matches all the constraints at once, chain multiple atrim
1738 filters.
1739
1740 The defaults are such that all the input is kept. So it is possible to set e.g.
1741 just the end values to keep everything before the specified time.
1742
1743 Examples:
1744 @itemize
1745 @item
1746 Drop everything except the second minute of input:
1747 @example
1748 ffmpeg -i INPUT -af atrim=60:120
1749 @end example
1750
1751 @item
1752 Keep only the first 1000 samples:
1753 @example
1754 ffmpeg -i INPUT -af atrim=end_sample=1000
1755 @end example
1756
1757 @end itemize
1758
1759 @section bandpass
1760
1761 Apply a two-pole Butterworth band-pass filter with central
1762 frequency @var{frequency}, and (3dB-point) band-width width.
1763 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1764 instead of the default: constant 0dB peak gain.
1765 The filter roll off at 6dB per octave (20dB per decade).
1766
1767 The filter accepts the following options:
1768
1769 @table @option
1770 @item frequency, f
1771 Set the filter's central frequency. Default is @code{3000}.
1772
1773 @item csg
1774 Constant skirt gain if set to 1. Defaults to 0.
1775
1776 @item width_type
1777 Set method to specify band-width of filter.
1778 @table @option
1779 @item h
1780 Hz
1781 @item q
1782 Q-Factor
1783 @item o
1784 octave
1785 @item s
1786 slope
1787 @end table
1788
1789 @item width, w
1790 Specify the band-width of a filter in width_type units.
1791 @end table
1792
1793 @section bandreject
1794
1795 Apply a two-pole Butterworth band-reject filter with central
1796 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1797 The filter roll off at 6dB per octave (20dB per decade).
1798
1799 The filter accepts the following options:
1800
1801 @table @option
1802 @item frequency, f
1803 Set the filter's central frequency. Default is @code{3000}.
1804
1805 @item width_type
1806 Set method to specify band-width of filter.
1807 @table @option
1808 @item h
1809 Hz
1810 @item q
1811 Q-Factor
1812 @item o
1813 octave
1814 @item s
1815 slope
1816 @end table
1817
1818 @item width, w
1819 Specify the band-width of a filter in width_type units.
1820 @end table
1821
1822 @section bass
1823
1824 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1825 shelving filter with a response similar to that of a standard
1826 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1827
1828 The filter accepts the following options:
1829
1830 @table @option
1831 @item gain, g
1832 Give the gain at 0 Hz. Its useful range is about -20
1833 (for a large cut) to +20 (for a large boost).
1834 Beware of clipping when using a positive gain.
1835
1836 @item frequency, f
1837 Set the filter's central frequency and so can be used
1838 to extend or reduce the frequency range to be boosted or cut.
1839 The default value is @code{100} Hz.
1840
1841 @item width_type
1842 Set method to specify band-width of filter.
1843 @table @option
1844 @item h
1845 Hz
1846 @item q
1847 Q-Factor
1848 @item o
1849 octave
1850 @item s
1851 slope
1852 @end table
1853
1854 @item width, w
1855 Determine how steep is the filter's shelf transition.
1856 @end table
1857
1858 @section biquad
1859
1860 Apply a biquad IIR filter with the given coefficients.
1861 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1862 are the numerator and denominator coefficients respectively.
1863
1864 @section bs2b
1865 Bauer stereo to binaural transformation, which improves headphone listening of
1866 stereo audio records.
1867
1868 It accepts the following parameters:
1869 @table @option
1870
1871 @item profile
1872 Pre-defined crossfeed level.
1873 @table @option
1874
1875 @item default
1876 Default level (fcut=700, feed=50).
1877
1878 @item cmoy
1879 Chu Moy circuit (fcut=700, feed=60).
1880
1881 @item jmeier
1882 Jan Meier circuit (fcut=650, feed=95).
1883
1884 @end table
1885
1886 @item fcut
1887 Cut frequency (in Hz).
1888
1889 @item feed
1890 Feed level (in Hz).
1891
1892 @end table
1893
1894 @section channelmap
1895
1896 Remap input channels to new locations.
1897
1898 It accepts the following parameters:
1899 @table @option
1900 @item channel_layout
1901 The channel layout of the output stream.
1902
1903 @item map
1904 Map channels from input to output. The argument is a '|'-separated list of
1905 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1906 @var{in_channel} form. @var{in_channel} can be either the name of the input
1907 channel (e.g. FL for front left) or its index in the input channel layout.
1908 @var{out_channel} is the name of the output channel or its index in the output
1909 channel layout. If @var{out_channel} is not given then it is implicitly an
1910 index, starting with zero and increasing by one for each mapping.
1911 @end table
1912
1913 If no mapping is present, the filter will implicitly map input channels to
1914 output channels, preserving indices.
1915
1916 For example, assuming a 5.1+downmix input MOV file,
1917 @example
1918 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1919 @end example
1920 will create an output WAV file tagged as stereo from the downmix channels of
1921 the input.
1922
1923 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1924 @example
1925 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1926 @end example
1927
1928 @section channelsplit
1929
1930 Split each channel from an input audio stream into a separate output stream.
1931
1932 It accepts the following parameters:
1933 @table @option
1934 @item channel_layout
1935 The channel layout of the input stream. The default is "stereo".
1936 @end table
1937
1938 For example, assuming a stereo input MP3 file,
1939 @example
1940 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1941 @end example
1942 will create an output Matroska file with two audio streams, one containing only
1943 the left channel and the other the right channel.
1944
1945 Split a 5.1 WAV file into per-channel files:
1946 @example
1947 ffmpeg -i in.wav -filter_complex
1948 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1949 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1950 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1951 side_right.wav
1952 @end example
1953
1954 @section chorus
1955 Add a chorus effect to the audio.
1956
1957 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1958
1959 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1960 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1961 The modulation depth defines the range the modulated delay is played before or after
1962 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1963 sound tuned around the original one, like in a chorus where some vocals are slightly
1964 off key.
1965
1966 It accepts the following parameters:
1967 @table @option
1968 @item in_gain
1969 Set input gain. Default is 0.4.
1970
1971 @item out_gain
1972 Set output gain. Default is 0.4.
1973
1974 @item delays
1975 Set delays. A typical delay is around 40ms to 60ms.
1976
1977 @item decays
1978 Set decays.
1979
1980 @item speeds
1981 Set speeds.
1982
1983 @item depths
1984 Set depths.
1985 @end table
1986
1987 @subsection Examples
1988
1989 @itemize
1990 @item
1991 A single delay:
1992 @example
1993 chorus=0.7:0.9:55:0.4:0.25:2
1994 @end example
1995
1996 @item
1997 Two delays:
1998 @example
1999 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2000 @end example
2001
2002 @item
2003 Fuller sounding chorus with three delays:
2004 @example
2005 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
2006 @end example
2007 @end itemize
2008
2009 @section compand
2010 Compress or expand the audio's dynamic range.
2011
2012 It accepts the following parameters:
2013
2014 @table @option
2015
2016 @item attacks
2017 @item decays
2018 A list of times in seconds for each channel over which the instantaneous level
2019 of the input signal is averaged to determine its volume. @var{attacks} refers to
2020 increase of volume and @var{decays} refers to decrease of volume. For most
2021 situations, the attack time (response to the audio getting louder) should be
2022 shorter than the decay time, because the human ear is more sensitive to sudden
2023 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2024 a typical value for decay is 0.8 seconds.
2025 If specified number of attacks & decays is lower than number of channels, the last
2026 set attack/decay will be used for all remaining channels.
2027
2028 @item points
2029 A list of points for the transfer function, specified in dB relative to the
2030 maximum possible signal amplitude. Each key points list must be defined using
2031 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2032 @code{x0/y0 x1/y1 x2/y2 ....}
2033
2034 The input values must be in strictly increasing order but the transfer function
2035 does not have to be monotonically rising. The point @code{0/0} is assumed but
2036 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2037 function are @code{-70/-70|-60/-20}.
2038
2039 @item soft-knee
2040 Set the curve radius in dB for all joints. It defaults to 0.01.
2041
2042 @item gain
2043 Set the additional gain in dB to be applied at all points on the transfer
2044 function. This allows for easy adjustment of the overall gain.
2045 It defaults to 0.
2046
2047 @item volume
2048 Set an initial volume, in dB, to be assumed for each channel when filtering
2049 starts. This permits the user to supply a nominal level initially, so that, for
2050 example, a very large gain is not applied to initial signal levels before the
2051 companding has begun to operate. A typical value for audio which is initially
2052 quiet is -90 dB. It defaults to 0.
2053
2054 @item delay
2055 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2056 delayed before being fed to the volume adjuster. Specifying a delay
2057 approximately equal to the attack/decay times allows the filter to effectively
2058 operate in predictive rather than reactive mode. It defaults to 0.
2059
2060 @end table
2061
2062 @subsection Examples
2063
2064 @itemize
2065 @item
2066 Make music with both quiet and loud passages suitable for listening to in a
2067 noisy environment:
2068 @example
2069 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2070 @end example
2071
2072 Another example for audio with whisper and explosion parts:
2073 @example
2074 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2075 @end example
2076
2077 @item
2078 A noise gate for when the noise is at a lower level than the signal:
2079 @example
2080 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2081 @end example
2082
2083 @item
2084 Here is another noise gate, this time for when the noise is at a higher level
2085 than the signal (making it, in some ways, similar to squelch):
2086 @example
2087 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2088 @end example
2089
2090 @item
2091 2:1 compression starting at -6dB:
2092 @example
2093 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2094 @end example
2095
2096 @item
2097 2:1 compression starting at -9dB:
2098 @example
2099 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2100 @end example
2101
2102 @item
2103 2:1 compression starting at -12dB:
2104 @example
2105 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2106 @end example
2107
2108 @item
2109 2:1 compression starting at -18dB:
2110 @example
2111 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2112 @end example
2113
2114 @item
2115 3:1 compression starting at -15dB:
2116 @example
2117 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2118 @end example
2119
2120 @item
2121 Compressor/Gate:
2122 @example
2123 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2124 @end example
2125
2126 @item
2127 Expander:
2128 @example
2129 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
2130 @end example
2131
2132 @item
2133 Hard limiter at -6dB:
2134 @example
2135 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2136 @end example
2137
2138 @item
2139 Hard limiter at -12dB:
2140 @example
2141 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2142 @end example
2143
2144 @item
2145 Hard noise gate at -35 dB:
2146 @example
2147 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2148 @end example
2149
2150 @item
2151 Soft limiter:
2152 @example
2153 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2154 @end example
2155 @end itemize
2156
2157 @section compensationdelay
2158
2159 Compensation Delay Line is a metric based delay to compensate differing
2160 positions of microphones or speakers.
2161
2162 For example, you have recorded guitar with two microphones placed in
2163 different location. Because the front of sound wave has fixed speed in
2164 normal conditions, the phasing of microphones can vary and depends on
2165 their location and interposition. The best sound mix can be achieved when
2166 these microphones are in phase (synchronized). Note that distance of
2167 ~30 cm between microphones makes one microphone to capture signal in
2168 antiphase to another microphone. That makes the final mix sounding moody.
2169 This filter helps to solve phasing problems by adding different delays
2170 to each microphone track and make them synchronized.
2171
2172 The best result can be reached when you take one track as base and
2173 synchronize other tracks one by one with it.
2174 Remember that synchronization/delay tolerance depends on sample rate, too.
2175 Higher sample rates will give more tolerance.
2176
2177 It accepts the following parameters:
2178
2179 @table @option
2180 @item mm
2181 Set millimeters distance. This is compensation distance for fine tuning.
2182 Default is 0.
2183
2184 @item cm
2185 Set cm distance. This is compensation distance for tightening distance setup.
2186 Default is 0.
2187
2188 @item m
2189 Set meters distance. This is compensation distance for hard distance setup.
2190 Default is 0.
2191
2192 @item dry
2193 Set dry amount. Amount of unprocessed (dry) signal.
2194 Default is 0.
2195
2196 @item wet
2197 Set wet amount. Amount of processed (wet) signal.
2198 Default is 1.
2199
2200 @item temp
2201 Set temperature degree in Celsius. This is the temperature of the environment.
2202 Default is 20.
2203 @end table
2204
2205 @section crystalizer
2206 Simple algorithm to expand audio dynamic range.
2207
2208 The filter accepts the following options:
2209
2210 @table @option
2211 @item i
2212 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2213 (unchanged sound) to 10.0 (maximum effect).
2214
2215 @item c
2216 Enable clipping. By default is enabled.
2217 @end table
2218
2219 @section dcshift
2220 Apply a DC shift to the audio.
2221
2222 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2223 in the recording chain) from the audio. The effect of a DC offset is reduced
2224 headroom and hence volume. The @ref{astats} filter can be used to determine if
2225 a signal has a DC offset.
2226
2227 @table @option
2228 @item shift
2229 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2230 the audio.
2231
2232 @item limitergain
2233 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2234 used to prevent clipping.
2235 @end table
2236
2237 @section dynaudnorm
2238 Dynamic Audio Normalizer.
2239
2240 This filter applies a certain amount of gain to the input audio in order
2241 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2242 contrast to more "simple" normalization algorithms, the Dynamic Audio
2243 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2244 This allows for applying extra gain to the "quiet" sections of the audio
2245 while avoiding distortions or clipping the "loud" sections. In other words:
2246 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2247 sections, in the sense that the volume of each section is brought to the
2248 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2249 this goal *without* applying "dynamic range compressing". It will retain 100%
2250 of the dynamic range *within* each section of the audio file.
2251
2252 @table @option
2253 @item f
2254 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2255 Default is 500 milliseconds.
2256 The Dynamic Audio Normalizer processes the input audio in small chunks,
2257 referred to as frames. This is required, because a peak magnitude has no
2258 meaning for just a single sample value. Instead, we need to determine the
2259 peak magnitude for a contiguous sequence of sample values. While a "standard"
2260 normalizer would simply use the peak magnitude of the complete file, the
2261 Dynamic Audio Normalizer determines the peak magnitude individually for each
2262 frame. The length of a frame is specified in milliseconds. By default, the
2263 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2264 been found to give good results with most files.
2265 Note that the exact frame length, in number of samples, will be determined
2266 automatically, based on the sampling rate of the individual input audio file.
2267
2268 @item g
2269 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2270 number. Default is 31.
2271 Probably the most important parameter of the Dynamic Audio Normalizer is the
2272 @code{window size} of the Gaussian smoothing filter. The filter's window size
2273 is specified in frames, centered around the current frame. For the sake of
2274 simplicity, this must be an odd number. Consequently, the default value of 31
2275 takes into account the current frame, as well as the 15 preceding frames and
2276 the 15 subsequent frames. Using a larger window results in a stronger
2277 smoothing effect and thus in less gain variation, i.e. slower gain
2278 adaptation. Conversely, using a smaller window results in a weaker smoothing
2279 effect and thus in more gain variation, i.e. faster gain adaptation.
2280 In other words, the more you increase this value, the more the Dynamic Audio
2281 Normalizer will behave like a "traditional" normalization filter. On the
2282 contrary, the more you decrease this value, the more the Dynamic Audio
2283 Normalizer will behave like a dynamic range compressor.
2284
2285 @item p
2286 Set the target peak value. This specifies the highest permissible magnitude
2287 level for the normalized audio input. This filter will try to approach the
2288 target peak magnitude as closely as possible, but at the same time it also
2289 makes sure that the normalized signal will never exceed the peak magnitude.
2290 A frame's maximum local gain factor is imposed directly by the target peak
2291 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2292 It is not recommended to go above this value.
2293
2294 @item m
2295 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2296 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2297 factor for each input frame, i.e. the maximum gain factor that does not
2298 result in clipping or distortion. The maximum gain factor is determined by
2299 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2300 additionally bounds the frame's maximum gain factor by a predetermined
2301 (global) maximum gain factor. This is done in order to avoid excessive gain
2302 factors in "silent" or almost silent frames. By default, the maximum gain
2303 factor is 10.0, For most inputs the default value should be sufficient and
2304 it usually is not recommended to increase this value. Though, for input
2305 with an extremely low overall volume level, it may be necessary to allow even
2306 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2307 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2308 Instead, a "sigmoid" threshold function will be applied. This way, the
2309 gain factors will smoothly approach the threshold value, but never exceed that
2310 value.
2311
2312 @item r
2313 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2314 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2315 This means that the maximum local gain factor for each frame is defined
2316 (only) by the frame's highest magnitude sample. This way, the samples can
2317 be amplified as much as possible without exceeding the maximum signal
2318 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2319 Normalizer can also take into account the frame's root mean square,
2320 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2321 determine the power of a time-varying signal. It is therefore considered
2322 that the RMS is a better approximation of the "perceived loudness" than
2323 just looking at the signal's peak magnitude. Consequently, by adjusting all
2324 frames to a constant RMS value, a uniform "perceived loudness" can be
2325 established. If a target RMS value has been specified, a frame's local gain
2326 factor is defined as the factor that would result in exactly that RMS value.
2327 Note, however, that the maximum local gain factor is still restricted by the
2328 frame's highest magnitude sample, in order to prevent clipping.
2329
2330 @item n
2331 Enable channels coupling. By default is enabled.
2332 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2333 amount. This means the same gain factor will be applied to all channels, i.e.
2334 the maximum possible gain factor is determined by the "loudest" channel.
2335 However, in some recordings, it may happen that the volume of the different
2336 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2337 In this case, this option can be used to disable the channel coupling. This way,
2338 the gain factor will be determined independently for each channel, depending
2339 only on the individual channel's highest magnitude sample. This allows for
2340 harmonizing the volume of the different channels.
2341
2342 @item c
2343 Enable DC bias correction. By default is disabled.
2344 An audio signal (in the time domain) is a sequence of sample values.
2345 In the Dynamic Audio Normalizer these sample values are represented in the
2346 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2347 audio signal, or "waveform", should be centered around the zero point.
2348 That means if we calculate the mean value of all samples in a file, or in a
2349 single frame, then the result should be 0.0 or at least very close to that
2350 value. If, however, there is a significant deviation of the mean value from
2351 0.0, in either positive or negative direction, this is referred to as a
2352 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2353 Audio Normalizer provides optional DC bias correction.
2354 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2355 the mean value, or "DC correction" offset, of each input frame and subtract
2356 that value from all of the frame's sample values which ensures those samples
2357 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2358 boundaries, the DC correction offset values will be interpolated smoothly
2359 between neighbouring frames.
2360
2361 @item b
2362 Enable alternative boundary mode. By default is disabled.
2363 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2364 around each frame. This includes the preceding frames as well as the
2365 subsequent frames. However, for the "boundary" frames, located at the very
2366 beginning and at the very end of the audio file, not all neighbouring
2367 frames are available. In particular, for the first few frames in the audio
2368 file, the preceding frames are not known. And, similarly, for the last few
2369 frames in the audio file, the subsequent frames are not known. Thus, the
2370 question arises which gain factors should be assumed for the missing frames
2371 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2372 to deal with this situation. The default boundary mode assumes a gain factor
2373 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2374 "fade out" at the beginning and at the end of the input, respectively.
2375
2376 @item s
2377 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2378 By default, the Dynamic Audio Normalizer does not apply "traditional"
2379 compression. This means that signal peaks will not be pruned and thus the
2380 full dynamic range will be retained within each local neighbourhood. However,
2381 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2382 normalization algorithm with a more "traditional" compression.
2383 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2384 (thresholding) function. If (and only if) the compression feature is enabled,
2385 all input frames will be processed by a soft knee thresholding function prior
2386 to the actual normalization process. Put simply, the thresholding function is
2387 going to prune all samples whose magnitude exceeds a certain threshold value.
2388 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2389 value. Instead, the threshold value will be adjusted for each individual
2390 frame.
2391 In general, smaller parameters result in stronger compression, and vice versa.
2392 Values below 3.0 are not recommended, because audible distortion may appear.
2393 @end table
2394
2395 @section earwax
2396
2397 Make audio easier to listen to on headphones.
2398
2399 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2400 so that when listened to on headphones the stereo image is moved from
2401 inside your head (standard for headphones) to outside and in front of
2402 the listener (standard for speakers).
2403
2404 Ported from SoX.
2405
2406 @section equalizer
2407
2408 Apply a two-pole peaking equalisation (EQ) filter. With this
2409 filter, the signal-level at and around a selected frequency can
2410 be increased or decreased, whilst (unlike bandpass and bandreject
2411 filters) that at all other frequencies is unchanged.
2412
2413 In order to produce complex equalisation curves, this filter can
2414 be given several times, each with a different central frequency.
2415
2416 The filter accepts the following options:
2417
2418 @table @option
2419 @item frequency, f
2420 Set the filter's central frequency in Hz.
2421
2422 @item width_type
2423 Set method to specify band-width of filter.
2424 @table @option
2425 @item h
2426 Hz
2427 @item q
2428 Q-Factor
2429 @item o
2430 octave
2431 @item s
2432 slope
2433 @end table
2434
2435 @item width, w
2436 Specify the band-width of a filter in width_type units.
2437
2438 @item gain, g
2439 Set the required gain or attenuation in dB.
2440 Beware of clipping when using a positive gain.
2441 @end table
2442
2443 @subsection Examples
2444 @itemize
2445 @item
2446 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2447 @example
2448 equalizer=f=1000:width_type=h:width=200:g=-10
2449 @end example
2450
2451 @item
2452 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2453 @example
2454 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2455 @end example
2456 @end itemize
2457
2458 @section extrastereo
2459
2460 Linearly increases the difference between left and right channels which
2461 adds some sort of "live" effect to playback.
2462
2463 The filter accepts the following options:
2464
2465 @table @option
2466 @item m
2467 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2468 (average of both channels), with 1.0 sound will be unchanged, with
2469 -1.0 left and right channels will be swapped.
2470
2471 @item c
2472 Enable clipping. By default is enabled.
2473 @end table
2474
2475 @section firequalizer
2476 Apply FIR Equalization using arbitrary frequency response.
2477
2478 The filter accepts the following option:
2479
2480 @table @option
2481 @item gain
2482 Set gain curve equation (in dB). The expression can contain variables:
2483 @table @option
2484 @item f
2485 the evaluated frequency
2486 @item sr
2487 sample rate
2488 @item ch
2489 channel number, set to 0 when multichannels evaluation is disabled
2490 @item chid
2491 channel id, see libavutil/channel_layout.h, set to the first channel id when
2492 multichannels evaluation is disabled
2493 @item chs
2494 number of channels
2495 @item chlayout
2496 channel_layout, see libavutil/channel_layout.h
2497
2498 @end table
2499 and functions:
2500 @table @option
2501 @item gain_interpolate(f)
2502 interpolate gain on frequency f based on gain_entry
2503 @end table
2504 This option is also available as command. Default is @code{gain_interpolate(f)}.
2505
2506 @item gain_entry
2507 Set gain entry for gain_interpolate function. The expression can
2508 contain functions:
2509 @table @option
2510 @item entry(f, g)
2511 store gain entry at frequency f with value g
2512 @end table
2513 This option is also available as command.
2514
2515 @item delay
2516 Set filter delay in seconds. Higher value means more accurate.
2517 Default is @code{0.01}.
2518
2519 @item accuracy
2520 Set filter accuracy in Hz. Lower value means more accurate.
2521 Default is @code{5}.
2522
2523 @item wfunc
2524 Set window function. Acceptable values are:
2525 @table @option
2526 @item rectangular
2527 rectangular window, useful when gain curve is already smooth
2528 @item hann
2529 hann window (default)
2530 @item hamming
2531 hamming window
2532 @item blackman
2533 blackman window
2534 @item nuttall3
2535 3-terms continuous 1st derivative nuttall window
2536 @item mnuttall3
2537 minimum 3-terms discontinuous nuttall window
2538 @item nuttall
2539 4-terms continuous 1st derivative nuttall window
2540 @item bnuttall
2541 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2542 @item bharris
2543 blackman-harris window
2544 @end table
2545
2546 @item fixed
2547 If enabled, use fixed number of audio samples. This improves speed when
2548 filtering with large delay. Default is disabled.
2549
2550 @item multi
2551 Enable multichannels evaluation on gain. Default is disabled.
2552
2553 @item zero_phase
2554 Enable zero phase mode by substracting timestamp to compensate delay.
2555 Default is disabled.
2556 @end table
2557
2558 @subsection Examples
2559 @itemize
2560 @item
2561 lowpass at 1000 Hz:
2562 @example
2563 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2564 @end example
2565 @item
2566 lowpass at 1000 Hz with gain_entry:
2567 @example
2568 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2569 @end example
2570 @item
2571 custom equalization:
2572 @example
2573 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2574 @end example
2575 @item
2576 higher delay with zero phase to compensate delay:
2577 @example
2578 firequalizer=delay=0.1:fixed=on:zero_phase=on
2579 @end example
2580 @item
2581 lowpass on left channel, highpass on right channel:
2582 @example
2583 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2584 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2585 @end example
2586 @end itemize
2587
2588 @section flanger
2589 Apply a flanging effect to the audio.
2590
2591 The filter accepts the following options:
2592
2593 @table @option
2594 @item delay
2595 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2596
2597 @item depth
2598 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2599
2600 @item regen
2601 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2602 Default value is 0.
2603
2604 @item width
2605 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2606 Default value is 71.
2607
2608 @item speed
2609 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2610
2611 @item shape
2612 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2613 Default value is @var{sinusoidal}.
2614
2615 @item phase
2616 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2617 Default value is 25.
2618
2619 @item interp
2620 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2621 Default is @var{linear}.
2622 @end table
2623
2624 @section highpass
2625
2626 Apply a high-pass filter with 3dB point frequency.
2627 The filter can be either single-pole, or double-pole (the default).
2628 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2629
2630 The filter accepts the following options:
2631
2632 @table @option
2633 @item frequency, f
2634 Set frequency in Hz. Default is 3000.
2635
2636 @item poles, p
2637 Set number of poles. Default is 2.
2638
2639 @item width_type
2640 Set method to specify band-width of filter.
2641 @table @option
2642 @item h
2643 Hz
2644 @item q
2645 Q-Factor
2646 @item o
2647 octave
2648 @item s
2649 slope
2650 @end table
2651
2652 @item width, w
2653 Specify the band-width of a filter in width_type units.
2654 Applies only to double-pole filter.
2655 The default is 0.707q and gives a Butterworth response.
2656 @end table
2657
2658 @section join
2659
2660 Join multiple input streams into one multi-channel stream.
2661
2662 It accepts the following parameters:
2663 @table @option
2664
2665 @item inputs
2666 The number of input streams. It defaults to 2.
2667
2668 @item channel_layout
2669 The desired output channel layout. It defaults to stereo.
2670
2671 @item map
2672 Map channels from inputs to output. The argument is a '|'-separated list of
2673 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2674 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2675 can be either the name of the input channel (e.g. FL for front left) or its
2676 index in the specified input stream. @var{out_channel} is the name of the output
2677 channel.
2678 @end table
2679
2680 The filter will attempt to guess the mappings when they are not specified
2681 explicitly. It does so by first trying to find an unused matching input channel
2682 and if that fails it picks the first unused input channel.
2683
2684 Join 3 inputs (with properly set channel layouts):
2685 @example
2686 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2687 @end example
2688
2689 Build a 5.1 output from 6 single-channel streams:
2690 @example
2691 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2692 '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'
2693 out
2694 @end example
2695
2696 @section ladspa
2697
2698 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2699
2700 To enable compilation of this filter you need to configure FFmpeg with
2701 @code{--enable-ladspa}.
2702
2703 @table @option
2704 @item file, f
2705 Specifies the name of LADSPA plugin library to load. If the environment
2706 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2707 each one of the directories specified by the colon separated list in
2708 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2709 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2710 @file{/usr/lib/ladspa/}.
2711
2712 @item plugin, p
2713 Specifies the plugin within the library. Some libraries contain only
2714 one plugin, but others contain many of them. If this is not set filter
2715 will list all available plugins within the specified library.
2716
2717 @item controls, c
2718 Set the '|' separated list of controls which are zero or more floating point
2719 values that determine the behavior of the loaded plugin (for example delay,
2720 threshold or gain).
2721 Controls need to be defined using the following syntax:
2722 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2723 @var{valuei} is the value set on the @var{i}-th control.
2724 Alternatively they can be also defined using the following syntax:
2725 @var{value0}|@var{value1}|@var{value2}|..., where
2726 @var{valuei} is the value set on the @var{i}-th control.
2727 If @option{controls} is set to @code{help}, all available controls and
2728 their valid ranges are printed.
2729
2730 @item sample_rate, s
2731 Specify the sample rate, default to 44100. Only used if plugin have
2732 zero inputs.
2733
2734 @item nb_samples, n
2735 Set the number of samples per channel per each output frame, default
2736 is 1024. Only used if plugin have zero inputs.
2737
2738 @item duration, d
2739 Set the minimum duration of the sourced audio. See
2740 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2741 for the accepted syntax.
2742 Note that the resulting duration may be greater than the specified duration,
2743 as the generated audio is always cut at the end of a complete frame.
2744 If not specified, or the expressed duration is negative, the audio is
2745 supposed to be generated forever.
2746 Only used if plugin have zero inputs.
2747
2748 @end table
2749
2750 @subsection Examples
2751
2752 @itemize
2753 @item
2754 List all available plugins within amp (LADSPA example plugin) library:
2755 @example
2756 ladspa=file=amp
2757 @end example
2758
2759 @item
2760 List all available controls and their valid ranges for @code{vcf_notch}
2761 plugin from @code{VCF} library:
2762 @example
2763 ladspa=f=vcf:p=vcf_notch:c=help
2764 @end example
2765
2766 @item
2767 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2768 plugin library:
2769 @example
2770 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2771 @end example
2772
2773 @item
2774 Add reverberation to the audio using TAP-plugins
2775 (Tom's Audio Processing plugins):
2776 @example
2777 ladspa=file=tap_reverb:tap_reverb
2778 @end example
2779
2780 @item
2781 Generate white noise, with 0.2 amplitude:
2782 @example
2783 ladspa=file=cmt:noise_source_white:c=c0=.2
2784 @end example
2785
2786 @item
2787 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2788 @code{C* Audio Plugin Suite} (CAPS) library:
2789 @example
2790 ladspa=file=caps:Click:c=c1=20'
2791 @end example
2792
2793 @item
2794 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2795 @example
2796 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2797 @end example
2798
2799 @item
2800 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2801 @code{SWH Plugins} collection:
2802 @example
2803 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2804 @end example
2805
2806 @item
2807 Attenuate low frequencies using Multiband EQ from Steve Harris
2808 @code{SWH Plugins} collection:
2809 @example
2810 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2811 @end example
2812 @end itemize
2813
2814 @subsection Commands
2815
2816 This filter supports the following commands:
2817 @table @option
2818 @item cN
2819 Modify the @var{N}-th control value.
2820
2821 If the specified value is not valid, it is ignored and prior one is kept.
2822 @end table
2823
2824 @section loudnorm
2825
2826 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
2827 Support for both single pass (livestreams, files) and double pass (files) modes.
2828 This algorithm can target IL, LRA, and maximum true peak.
2829
2830 To enable compilation of this filter you need to configure FFmpeg with
2831 @code{--enable-libebur128}.
2832
2833 The filter accepts the following options:
2834
2835 @table @option
2836 @item I, i
2837 Set integrated loudness target.
2838 Range is -70.0 - -5.0. Default value is -24.0.
2839
2840 @item LRA, lra
2841 Set loudness range target.
2842 Range is 1.0 - 20.0. Default value is 7.0.
2843
2844 @item TP, tp
2845 Set maximum true peak.
2846 Range is -9.0 - +0.0. Default value is -2.0.
2847
2848 @item measured_I, measured_i
2849 Measured IL of input file.
2850 Range is -99.0 - +0.0.
2851
2852 @item measured_LRA, measured_lra
2853 Measured LRA of input file.
2854 Range is  0.0 - 99.0.
2855
2856 @item measured_TP, measured_tp
2857 Measured true peak of input file.
2858 Range is  -99.0 - +99.0.
2859
2860 @item measured_thresh
2861 Measured threshold of input file.
2862 Range is -99.0 - +0.0.
2863
2864 @item offset
2865 Set offset gain. Gain is applied before the true-peak limiter.
2866 Range is  -99.0 - +99.0. Default is +0.0.
2867
2868 @item linear
2869 Normalize linearly if possible.
2870 measured_I, measured_LRA, measured_TP, and measured_thresh must also
2871 to be specified in order to use this mode.
2872 Options are true or false. Default is true.
2873
2874 @item dual_mono
2875 Treat mono input files as "dual-mono". If a mono file is intended for playback
2876 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
2877 If set to @code{true}, this option will compensate for this effect.
2878 Multi-channel input files are not affected by this option.
2879 Options are true or false. Default is false.
2880
2881 @item print_format
2882 Set print format for stats. Options are summary, json, or none.
2883 Default value is none.
2884 @end table
2885
2886 @section lowpass
2887
2888 Apply a low-pass filter with 3dB point frequency.
2889 The filter can be either single-pole or double-pole (the default).
2890 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2891
2892 The filter accepts the following options:
2893
2894 @table @option
2895 @item frequency, f
2896 Set frequency in Hz. Default is 500.
2897
2898 @item poles, p
2899 Set number of poles. Default is 2.
2900
2901 @item width_type
2902 Set method to specify band-width of filter.
2903 @table @option
2904 @item h
2905 Hz
2906 @item q
2907 Q-Factor
2908 @item o
2909 octave
2910 @item s
2911 slope
2912 @end table
2913
2914 @item width, w
2915 Specify the band-width of a filter in width_type units.
2916 Applies only to double-pole filter.
2917 The default is 0.707q and gives a Butterworth response.
2918 @end table
2919
2920 @anchor{pan}
2921 @section pan
2922
2923 Mix channels with specific gain levels. The filter accepts the output
2924 channel layout followed by a set of channels definitions.
2925
2926 This filter is also designed to efficiently remap the channels of an audio
2927 stream.
2928
2929 The filter accepts parameters of the form:
2930 "@var{l}|@var{outdef}|@var{outdef}|..."
2931
2932 @table @option
2933 @item l
2934 output channel layout or number of channels
2935
2936 @item outdef
2937 output channel specification, of the form:
2938 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2939
2940 @item out_name
2941 output channel to define, either a channel name (FL, FR, etc.) or a channel
2942 number (c0, c1, etc.)
2943
2944 @item gain
2945 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2946
2947 @item in_name
2948 input channel to use, see out_name for details; it is not possible to mix
2949 named and numbered input channels
2950 @end table
2951
2952 If the `=' in a channel specification is replaced by `<', then the gains for
2953 that specification will be renormalized so that the total is 1, thus
2954 avoiding clipping noise.
2955
2956 @subsection Mixing examples
2957
2958 For example, if you want to down-mix from stereo to mono, but with a bigger
2959 factor for the left channel:
2960 @example
2961 pan=1c|c0=0.9*c0+0.1*c1
2962 @end example
2963
2964 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2965 7-channels surround:
2966 @example
2967 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2968 @end example
2969
2970 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2971 that should be preferred (see "-ac" option) unless you have very specific
2972 needs.
2973
2974 @subsection Remapping examples
2975
2976 The channel remapping will be effective if, and only if:
2977
2978 @itemize
2979 @item gain coefficients are zeroes or ones,
2980 @item only one input per channel output,
2981 @end itemize
2982
2983 If all these conditions are satisfied, the filter will notify the user ("Pure
2984 channel mapping detected"), and use an optimized and lossless method to do the
2985 remapping.
2986
2987 For example, if you have a 5.1 source and want a stereo audio stream by
2988 dropping the extra channels:
2989 @example
2990 pan="stereo| c0=FL | c1=FR"
2991 @end example
2992
2993 Given the same source, you can also switch front left and front right channels
2994 and keep the input channel layout:
2995 @example
2996 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2997 @end example
2998
2999 If the input is a stereo audio stream, you can mute the front left channel (and
3000 still keep the stereo channel layout) with:
3001 @example
3002 pan="stereo|c1=c1"
3003 @end example
3004
3005 Still with a stereo audio stream input, you can copy the right channel in both
3006 front left and right:
3007 @example
3008 pan="stereo| c0=FR | c1=FR"
3009 @end example
3010
3011 @section replaygain
3012
3013 ReplayGain scanner filter. This filter takes an audio stream as an input and
3014 outputs it unchanged.
3015 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3016
3017 @section resample
3018
3019 Convert the audio sample format, sample rate and channel layout. It is
3020 not meant to be used directly.
3021
3022 @section rubberband
3023 Apply time-stretching and pitch-shifting with librubberband.
3024
3025 The filter accepts the following options:
3026
3027 @table @option
3028 @item tempo
3029 Set tempo scale factor.
3030
3031 @item pitch
3032 Set pitch scale factor.
3033
3034 @item transients
3035 Set transients detector.
3036 Possible values are:
3037 @table @var
3038 @item crisp
3039 @item mixed
3040 @item smooth
3041 @end table
3042
3043 @item detector
3044 Set detector.
3045 Possible values are:
3046 @table @var
3047 @item compound
3048 @item percussive
3049 @item soft
3050 @end table
3051
3052 @item phase
3053 Set phase.
3054 Possible values are:
3055 @table @var
3056 @item laminar
3057 @item independent
3058 @end table
3059
3060 @item window
3061 Set processing window size.
3062 Possible values are:
3063 @table @var
3064 @item standard
3065 @item short
3066 @item long
3067 @end table
3068
3069 @item smoothing
3070 Set smoothing.
3071 Possible values are:
3072 @table @var
3073 @item off
3074 @item on
3075 @end table
3076
3077 @item formant
3078 Enable formant preservation when shift pitching.
3079 Possible values are:
3080 @table @var
3081 @item shifted
3082 @item preserved
3083 @end table
3084
3085 @item pitchq
3086 Set pitch quality.
3087 Possible values are:
3088 @table @var
3089 @item quality
3090 @item speed
3091 @item consistency
3092 @end table
3093
3094 @item channels
3095 Set channels.
3096 Possible values are:
3097 @table @var
3098 @item apart
3099 @item together
3100 @end table
3101 @end table
3102
3103 @section sidechaincompress
3104
3105 This filter acts like normal compressor but has the ability to compress
3106 detected signal using second input signal.
3107 It needs two input streams and returns one output stream.
3108 First input stream will be processed depending on second stream signal.
3109 The filtered signal then can be filtered with other filters in later stages of
3110 processing. See @ref{pan} and @ref{amerge} filter.
3111
3112 The filter accepts the following options:
3113
3114 @table @option
3115 @item level_in
3116 Set input gain. Default is 1. Range is between 0.015625 and 64.
3117
3118 @item threshold
3119 If a signal of second stream raises above this level it will affect the gain
3120 reduction of first stream.
3121 By default is 0.125. Range is between 0.00097563 and 1.
3122
3123 @item ratio
3124 Set a ratio about which the signal is reduced. 1:2 means that if the level
3125 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3126 Default is 2. Range is between 1 and 20.
3127
3128 @item attack
3129 Amount of milliseconds the signal has to rise above the threshold before gain
3130 reduction starts. Default is 20. Range is between 0.01 and 2000.
3131
3132 @item release
3133 Amount of milliseconds the signal has to fall below the threshold before
3134 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3135
3136 @item makeup
3137 Set the amount by how much signal will be amplified after processing.
3138 Default is 2. Range is from 1 and 64.
3139
3140 @item knee
3141 Curve the sharp knee around the threshold to enter gain reduction more softly.
3142 Default is 2.82843. Range is between 1 and 8.
3143
3144 @item link
3145 Choose if the @code{average} level between all channels of side-chain stream
3146 or the louder(@code{maximum}) channel of side-chain stream affects the
3147 reduction. Default is @code{average}.
3148
3149 @item detection
3150 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3151 of @code{rms}. Default is @code{rms} which is mainly smoother.
3152
3153 @item level_sc
3154 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3155
3156 @item mix
3157 How much to use compressed signal in output. Default is 1.
3158 Range is between 0 and 1.
3159 @end table
3160
3161 @subsection Examples
3162
3163 @itemize
3164 @item
3165 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3166 depending on the signal of 2nd input and later compressed signal to be
3167 merged with 2nd input:
3168 @example
3169 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3170 @end example
3171 @end itemize
3172
3173 @section sidechaingate
3174
3175 A sidechain gate acts like a normal (wideband) gate but has the ability to
3176 filter the detected signal before sending it to the gain reduction stage.
3177 Normally a gate uses the full range signal to detect a level above the
3178 threshold.
3179 For example: If you cut all lower frequencies from your sidechain signal
3180 the gate will decrease the volume of your track only if not enough highs
3181 appear. With this technique you are able to reduce the resonation of a
3182 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3183 guitar.
3184 It needs two input streams and returns one output stream.
3185 First input stream will be processed depending on second stream signal.
3186
3187 The filter accepts the following options:
3188
3189 @table @option
3190 @item level_in
3191 Set input level before filtering.
3192 Default is 1. Allowed range is from 0.015625 to 64.
3193
3194 @item range
3195 Set the level of gain reduction when the signal is below the threshold.
3196 Default is 0.06125. Allowed range is from 0 to 1.
3197
3198 @item threshold
3199 If a signal rises above this level the gain reduction is released.
3200 Default is 0.125. Allowed range is from 0 to 1.
3201
3202 @item ratio
3203 Set a ratio about which the signal is reduced.
3204 Default is 2. Allowed range is from 1 to 9000.
3205
3206 @item attack
3207 Amount of milliseconds the signal has to rise above the threshold before gain
3208 reduction stops.
3209 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3210
3211 @item release
3212 Amount of milliseconds the signal has to fall below the threshold before the
3213 reduction is increased again. Default is 250 milliseconds.
3214 Allowed range is from 0.01 to 9000.
3215
3216 @item makeup
3217 Set amount of amplification of signal after processing.
3218 Default is 1. Allowed range is from 1 to 64.
3219
3220 @item knee
3221 Curve the sharp knee around the threshold to enter gain reduction more softly.
3222 Default is 2.828427125. Allowed range is from 1 to 8.
3223
3224 @item detection
3225 Choose if exact signal should be taken for detection or an RMS like one.
3226 Default is rms. Can be peak or rms.
3227
3228 @item link
3229 Choose if the average level between all channels or the louder channel affects
3230 the reduction.
3231 Default is average. Can be average or maximum.
3232
3233 @item level_sc
3234 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3235 @end table
3236
3237 @section silencedetect
3238
3239 Detect silence in an audio stream.
3240
3241 This filter logs a message when it detects that the input audio volume is less
3242 or equal to a noise tolerance value for a duration greater or equal to the
3243 minimum detected noise duration.
3244
3245 The printed times and duration are expressed in seconds.
3246
3247 The filter accepts the following options:
3248
3249 @table @option
3250 @item duration, d
3251 Set silence duration until notification (default is 2 seconds).
3252
3253 @item noise, n
3254 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3255 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3256 @end table
3257
3258 @subsection Examples
3259
3260 @itemize
3261 @item
3262 Detect 5 seconds of silence with -50dB noise tolerance:
3263 @example
3264 silencedetect=n=-50dB:d=5
3265 @end example
3266
3267 @item
3268 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3269 tolerance in @file{silence.mp3}:
3270 @example
3271 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3272 @end example
3273 @end itemize
3274
3275 @section silenceremove
3276
3277 Remove silence from the beginning, middle or end of the audio.
3278
3279 The filter accepts the following options:
3280
3281 @table @option
3282 @item start_periods
3283 This value is used to indicate if audio should be trimmed at beginning of
3284 the audio. A value of zero indicates no silence should be trimmed from the
3285 beginning. When specifying a non-zero value, it trims audio up until it
3286 finds non-silence. Normally, when trimming silence from beginning of audio
3287 the @var{start_periods} will be @code{1} but it can be increased to higher
3288 values to trim all audio up to specific count of non-silence periods.
3289 Default value is @code{0}.
3290
3291 @item start_duration
3292 Specify the amount of time that non-silence must be detected before it stops
3293 trimming audio. By increasing the duration, bursts of noises can be treated
3294 as silence and trimmed off. Default value is @code{0}.
3295
3296 @item start_threshold
3297 This indicates what sample value should be treated as silence. For digital
3298 audio, a value of @code{0} may be fine but for audio recorded from analog,
3299 you may wish to increase the value to account for background noise.
3300 Can be specified in dB (in case "dB" is appended to the specified value)
3301 or amplitude ratio. Default value is @code{0}.
3302
3303 @item stop_periods
3304 Set the count for trimming silence from the end of audio.
3305 To remove silence from the middle of a file, specify a @var{stop_periods}
3306 that is negative. This value is then treated as a positive value and is
3307 used to indicate the effect should restart processing as specified by
3308 @var{start_periods}, making it suitable for removing periods of silence
3309 in the middle of the audio.
3310 Default value is @code{0}.
3311
3312 @item stop_duration
3313 Specify a duration of silence that must exist before audio is not copied any
3314 more. By specifying a higher duration, silence that is wanted can be left in
3315 the audio.
3316 Default value is @code{0}.
3317
3318 @item stop_threshold
3319 This is the same as @option{start_threshold} but for trimming silence from
3320 the end of audio.
3321 Can be specified in dB (in case "dB" is appended to the specified value)
3322 or amplitude ratio. Default value is @code{0}.
3323
3324 @item leave_silence
3325 This indicate that @var{stop_duration} length of audio should be left intact
3326 at the beginning of each period of silence.
3327 For example, if you want to remove long pauses between words but do not want
3328 to remove the pauses completely. Default value is @code{0}.
3329
3330 @item detection
3331 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3332 and works better with digital silence which is exactly 0.
3333 Default value is @code{rms}.
3334
3335 @item window
3336 Set ratio used to calculate size of window for detecting silence.
3337 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3338 @end table
3339
3340 @subsection Examples
3341
3342 @itemize
3343 @item
3344 The following example shows how this filter can be used to start a recording
3345 that does not contain the delay at the start which usually occurs between
3346 pressing the record button and the start of the performance:
3347 @example
3348 silenceremove=1:5:0.02
3349 @end example
3350
3351 @item
3352 Trim all silence encountered from beginning to end where there is more than 1
3353 second of silence in audio:
3354 @example
3355 silenceremove=0:0:0:-1:1:-90dB
3356 @end example
3357 @end itemize
3358
3359 @section sofalizer
3360
3361 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3362 loudspeakers around the user for binaural listening via headphones (audio
3363 formats up to 9 channels supported).
3364 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3365 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3366 Austrian Academy of Sciences.
3367
3368 To enable compilation of this filter you need to configure FFmpeg with
3369 @code{--enable-netcdf}.
3370
3371 The filter accepts the following options:
3372
3373 @table @option
3374 @item sofa
3375 Set the SOFA file used for rendering.
3376
3377 @item gain
3378 Set gain applied to audio. Value is in dB. Default is 0.
3379
3380 @item rotation
3381 Set rotation of virtual loudspeakers in deg. Default is 0.
3382
3383 @item elevation
3384 Set elevation of virtual speakers in deg. Default is 0.
3385
3386 @item radius
3387 Set distance in meters between loudspeakers and the listener with near-field
3388 HRTFs. Default is 1.
3389
3390 @item type
3391 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3392 processing audio in time domain which is slow.
3393 @var{freq} is processing audio in frequency domain which is fast.
3394 Default is @var{freq}.
3395
3396 @item speakers
3397 Set custom positions of virtual loudspeakers. Syntax for this option is:
3398 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3399 Each virtual loudspeaker is described with short channel name following with
3400 azimuth and elevation in degreees.
3401 Each virtual loudspeaker description is separated by '|'.
3402 For example to override front left and front right channel positions use:
3403 'speakers=FL 45 15|FR 345 15'.
3404 Descriptions with unrecognised channel names are ignored.
3405 @end table
3406
3407 @subsection Examples
3408
3409 @itemize
3410 @item
3411 Using ClubFritz6 sofa file:
3412 @example
3413 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3414 @end example
3415
3416 @item
3417 Using ClubFritz12 sofa file and bigger radius with small rotation:
3418 @example
3419 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3420 @end example
3421
3422 @item
3423 Similar as above but with custom speaker positions for front left, front right, rear left and rear right
3424 and also with custom gain:
3425 @example
3426 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|RL 135|RR 225:gain=28"
3427 @end example
3428 @end itemize
3429
3430 @section stereotools
3431
3432 This filter has some handy utilities to manage stereo signals, for converting
3433 M/S stereo recordings to L/R signal while having control over the parameters
3434 or spreading the stereo image of master track.
3435
3436 The filter accepts the following options:
3437
3438 @table @option
3439 @item level_in
3440 Set input level before filtering for both channels. Defaults is 1.
3441 Allowed range is from 0.015625 to 64.
3442
3443 @item level_out
3444 Set output level after filtering for both channels. Defaults is 1.
3445 Allowed range is from 0.015625 to 64.
3446
3447 @item balance_in
3448 Set input balance between both channels. Default is 0.
3449 Allowed range is from -1 to 1.
3450
3451 @item balance_out
3452 Set output balance between both channels. Default is 0.
3453 Allowed range is from -1 to 1.
3454
3455 @item softclip
3456 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3457 clipping. Disabled by default.
3458
3459 @item mutel
3460 Mute the left channel. Disabled by default.
3461
3462 @item muter
3463 Mute the right channel. Disabled by default.
3464
3465 @item phasel
3466 Change the phase of the left channel. Disabled by default.
3467
3468 @item phaser
3469 Change the phase of the right channel. Disabled by default.
3470
3471 @item mode
3472 Set stereo mode. Available values are:
3473
3474 @table @samp
3475 @item lr>lr
3476 Left/Right to Left/Right, this is default.
3477
3478 @item lr>ms
3479 Left/Right to Mid/Side.
3480
3481 @item ms>lr
3482 Mid/Side to Left/Right.
3483
3484 @item lr>ll
3485 Left/Right to Left/Left.
3486
3487 @item lr>rr
3488 Left/Right to Right/Right.
3489
3490 @item lr>l+r
3491 Left/Right to Left + Right.
3492
3493 @item lr>rl
3494 Left/Right to Right/Left.
3495 @end table
3496
3497 @item slev
3498 Set level of side signal. Default is 1.
3499 Allowed range is from 0.015625 to 64.
3500
3501 @item sbal
3502 Set balance of side signal. Default is 0.
3503 Allowed range is from -1 to 1.
3504
3505 @item mlev
3506 Set level of the middle signal. Default is 1.
3507 Allowed range is from 0.015625 to 64.
3508
3509 @item mpan
3510 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3511
3512 @item base
3513 Set stereo base between mono and inversed channels. Default is 0.
3514 Allowed range is from -1 to 1.
3515
3516 @item delay
3517 Set delay in milliseconds how much to delay left from right channel and
3518 vice versa. Default is 0. Allowed range is from -20 to 20.
3519
3520 @item sclevel
3521 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3522
3523 @item phase
3524 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3525 @end table
3526
3527 @subsection Examples
3528
3529 @itemize
3530 @item
3531 Apply karaoke like effect:
3532 @example
3533 stereotools=mlev=0.015625
3534 @end example
3535
3536 @item
3537 Convert M/S signal to L/R:
3538 @example
3539 "stereotools=mode=ms>lr"
3540 @end example
3541 @end itemize
3542
3543 @section stereowiden
3544
3545 This filter enhance the stereo effect by suppressing signal common to both
3546 channels and by delaying the signal of left into right and vice versa,
3547 thereby widening the stereo effect.
3548
3549 The filter accepts the following options:
3550
3551 @table @option
3552 @item delay
3553 Time in milliseconds of the delay of left signal into right and vice versa.
3554 Default is 20 milliseconds.
3555
3556 @item feedback
3557 Amount of gain in delayed signal into right and vice versa. Gives a delay
3558 effect of left signal in right output and vice versa which gives widening
3559 effect. Default is 0.3.
3560
3561 @item crossfeed
3562 Cross feed of left into right with inverted phase. This helps in suppressing
3563 the mono. If the value is 1 it will cancel all the signal common to both
3564 channels. Default is 0.3.
3565
3566 @item drymix
3567 Set level of input signal of original channel. Default is 0.8.
3568 @end table
3569
3570 @section treble
3571
3572 Boost or cut treble (upper) frequencies of the audio using a two-pole
3573 shelving filter with a response similar to that of a standard
3574 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3575
3576 The filter accepts the following options:
3577
3578 @table @option
3579 @item gain, g
3580 Give the gain at whichever is the lower of ~22 kHz and the
3581 Nyquist frequency. Its useful range is about -20 (for a large cut)
3582 to +20 (for a large boost). Beware of clipping when using a positive gain.
3583
3584 @item frequency, f
3585 Set the filter's central frequency and so can be used
3586 to extend or reduce the frequency range to be boosted or cut.
3587 The default value is @code{3000} Hz.
3588
3589 @item width_type
3590 Set method to specify band-width of filter.
3591 @table @option
3592 @item h
3593 Hz
3594 @item q
3595 Q-Factor
3596 @item o
3597 octave
3598 @item s
3599 slope
3600 @end table
3601
3602 @item width, w
3603 Determine how steep is the filter's shelf transition.
3604 @end table
3605
3606 @section tremolo
3607
3608 Sinusoidal amplitude modulation.
3609
3610 The filter accepts the following options:
3611
3612 @table @option
3613 @item f
3614 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3615 (20 Hz or lower) will result in a tremolo effect.
3616 This filter may also be used as a ring modulator by specifying
3617 a modulation frequency higher than 20 Hz.
3618 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3619
3620 @item d
3621 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3622 Default value is 0.5.
3623 @end table
3624
3625 @section vibrato
3626
3627 Sinusoidal phase modulation.
3628
3629 The filter accepts the following options:
3630
3631 @table @option
3632 @item f
3633 Modulation frequency in Hertz.
3634 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3635
3636 @item d
3637 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3638 Default value is 0.5.
3639 @end table
3640
3641 @section volume
3642
3643 Adjust the input audio volume.
3644
3645 It accepts the following parameters:
3646 @table @option
3647
3648 @item volume
3649 Set audio volume expression.
3650
3651 Output values are clipped to the maximum value.
3652
3653 The output audio volume is given by the relation:
3654 @example
3655 @var{output_volume} = @var{volume} * @var{input_volume}
3656 @end example
3657
3658 The default value for @var{volume} is "1.0".
3659
3660 @item precision
3661 This parameter represents the mathematical precision.
3662
3663 It determines which input sample formats will be allowed, which affects the
3664 precision of the volume scaling.
3665
3666 @table @option
3667 @item fixed
3668 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3669 @item float
3670 32-bit floating-point; this limits input sample format to FLT. (default)
3671 @item double
3672 64-bit floating-point; this limits input sample format to DBL.
3673 @end table
3674
3675 @item replaygain
3676 Choose the behaviour on encountering ReplayGain side data in input frames.
3677
3678 @table @option
3679 @item drop
3680 Remove ReplayGain side data, ignoring its contents (the default).
3681
3682 @item ignore
3683 Ignore ReplayGain side data, but leave it in the frame.
3684
3685 @item track
3686 Prefer the track gain, if present.
3687
3688 @item album
3689 Prefer the album gain, if present.
3690 @end table
3691
3692 @item replaygain_preamp
3693 Pre-amplification gain in dB to apply to the selected replaygain gain.
3694
3695 Default value for @var{replaygain_preamp} is 0.0.
3696
3697 @item eval
3698 Set when the volume expression is evaluated.
3699
3700 It accepts the following values:
3701 @table @samp
3702 @item once
3703 only evaluate expression once during the filter initialization, or
3704 when the @samp{volume} command is sent
3705
3706 @item frame
3707 evaluate expression for each incoming frame
3708 @end table
3709
3710 Default value is @samp{once}.
3711 @end table
3712
3713 The volume expression can contain the following parameters.
3714
3715 @table @option
3716 @item n
3717 frame number (starting at zero)
3718 @item nb_channels
3719 number of channels
3720 @item nb_consumed_samples
3721 number of samples consumed by the filter
3722 @item nb_samples
3723 number of samples in the current frame
3724 @item pos
3725 original frame position in the file
3726 @item pts
3727 frame PTS
3728 @item sample_rate
3729 sample rate
3730 @item startpts
3731 PTS at start of stream
3732 @item startt
3733 time at start of stream
3734 @item t
3735 frame time
3736 @item tb
3737 timestamp timebase
3738 @item volume
3739 last set volume value
3740 @end table
3741
3742 Note that when @option{eval} is set to @samp{once} only the
3743 @var{sample_rate} and @var{tb} variables are available, all other
3744 variables will evaluate to NAN.
3745
3746 @subsection Commands
3747
3748 This filter supports the following commands:
3749 @table @option
3750 @item volume
3751 Modify the volume expression.
3752 The command accepts the same syntax of the corresponding option.
3753
3754 If the specified expression is not valid, it is kept at its current
3755 value.
3756 @item replaygain_noclip
3757 Prevent clipping by limiting the gain applied.
3758
3759 Default value for @var{replaygain_noclip} is 1.
3760
3761 @end table
3762
3763 @subsection Examples
3764
3765 @itemize
3766 @item
3767 Halve the input audio volume:
3768 @example
3769 volume=volume=0.5
3770 volume=volume=1/2
3771 volume=volume=-6.0206dB
3772 @end example
3773
3774 In all the above example the named key for @option{volume} can be
3775 omitted, for example like in:
3776 @example
3777 volume=0.5
3778 @end example
3779
3780 @item
3781 Increase input audio power by 6 decibels using fixed-point precision:
3782 @example
3783 volume=volume=6dB:precision=fixed
3784 @end example
3785
3786 @item
3787 Fade volume after time 10 with an annihilation period of 5 seconds:
3788 @example
3789 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3790 @end example
3791 @end itemize
3792
3793 @section volumedetect
3794
3795 Detect the volume of the input video.
3796
3797 The filter has no parameters. The input is not modified. Statistics about
3798 the volume will be printed in the log when the input stream end is reached.
3799
3800 In particular it will show the mean volume (root mean square), maximum
3801 volume (on a per-sample basis), and the beginning of a histogram of the
3802 registered volume values (from the maximum value to a cumulated 1/1000 of
3803 the samples).
3804
3805 All volumes are in decibels relative to the maximum PCM value.
3806
3807 @subsection Examples
3808
3809 Here is an excerpt of the output:
3810 @example
3811 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3812 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3813 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3814 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3815 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3816 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3817 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3818 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3819 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3820 @end example
3821
3822 It means that:
3823 @itemize
3824 @item
3825 The mean square energy is approximately -27 dB, or 10^-2.7.
3826 @item
3827 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3828 @item
3829 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3830 @end itemize
3831
3832 In other words, raising the volume by +4 dB does not cause any clipping,
3833 raising it by +5 dB causes clipping for 6 samples, etc.
3834
3835 @c man end AUDIO FILTERS
3836
3837 @chapter Audio Sources
3838 @c man begin AUDIO SOURCES
3839
3840 Below is a description of the currently available audio sources.
3841
3842 @section abuffer
3843
3844 Buffer audio frames, and make them available to the filter chain.
3845
3846 This source is mainly intended for a programmatic use, in particular
3847 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3848
3849 It accepts the following parameters:
3850 @table @option
3851
3852 @item time_base
3853 The timebase which will be used for timestamps of submitted frames. It must be
3854 either a floating-point number or in @var{numerator}/@var{denominator} form.
3855
3856 @item sample_rate
3857 The sample rate of the incoming audio buffers.
3858
3859 @item sample_fmt
3860 The sample format of the incoming audio buffers.
3861 Either a sample format name or its corresponding integer representation from
3862 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3863
3864 @item channel_layout
3865 The channel layout of the incoming audio buffers.
3866 Either a channel layout name from channel_layout_map in
3867 @file{libavutil/channel_layout.c} or its corresponding integer representation
3868 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3869
3870 @item channels
3871 The number of channels of the incoming audio buffers.
3872 If both @var{channels} and @var{channel_layout} are specified, then they
3873 must be consistent.
3874
3875 @end table
3876
3877 @subsection Examples
3878
3879 @example
3880 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3881 @end example
3882
3883 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3884 Since the sample format with name "s16p" corresponds to the number
3885 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3886 equivalent to:
3887 @example
3888 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3889 @end example
3890
3891 @section aevalsrc
3892
3893 Generate an audio signal specified by an expression.
3894
3895 This source accepts in input one or more expressions (one for each
3896 channel), which are evaluated and used to generate a corresponding
3897 audio signal.
3898
3899 This source accepts the following options:
3900
3901 @table @option
3902 @item exprs
3903 Set the '|'-separated expressions list for each separate channel. In case the
3904 @option{channel_layout} option is not specified, the selected channel layout
3905 depends on the number of provided expressions. Otherwise the last
3906 specified expression is applied to the remaining output channels.
3907
3908 @item channel_layout, c
3909 Set the channel layout. The number of channels in the specified layout
3910 must be equal to the number of specified expressions.
3911
3912 @item duration, d
3913 Set the minimum duration of the sourced audio. See
3914 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3915 for the accepted syntax.
3916 Note that the resulting duration may be greater than the specified
3917 duration, as the generated audio is always cut at the end of a
3918 complete frame.
3919
3920 If not specified, or the expressed duration is negative, the audio is
3921 supposed to be generated forever.
3922
3923 @item nb_samples, n
3924 Set the number of samples per channel per each output frame,
3925 default to 1024.
3926
3927 @item sample_rate, s
3928 Specify the sample rate, default to 44100.
3929 @end table
3930
3931 Each expression in @var{exprs} can contain the following constants:
3932
3933 @table @option
3934 @item n
3935 number of the evaluated sample, starting from 0
3936
3937 @item t
3938 time of the evaluated sample expressed in seconds, starting from 0
3939
3940 @item s
3941 sample rate
3942
3943 @end table
3944
3945 @subsection Examples
3946
3947 @itemize
3948 @item
3949 Generate silence:
3950 @example
3951 aevalsrc=0
3952 @end example
3953
3954 @item
3955 Generate a sin signal with frequency of 440 Hz, set sample rate to
3956 8000 Hz:
3957 @example
3958 aevalsrc="sin(440*2*PI*t):s=8000"
3959 @end example
3960
3961 @item
3962 Generate a two channels signal, specify the channel layout (Front
3963 Center + Back Center) explicitly:
3964 @example
3965 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
3966 @end example
3967
3968 @item
3969 Generate white noise:
3970 @example
3971 aevalsrc="-2+random(0)"
3972 @end example
3973
3974 @item
3975 Generate an amplitude modulated signal:
3976 @example
3977 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
3978 @end example
3979
3980 @item
3981 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
3982 @example
3983 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
3984 @end example
3985
3986 @end itemize
3987
3988 @section anullsrc
3989
3990 The null audio source, return unprocessed audio frames. It is mainly useful
3991 as a template and to be employed in analysis / debugging tools, or as
3992 the source for filters which ignore the input data (for example the sox
3993 synth filter).
3994
3995 This source accepts the following options:
3996
3997 @table @option
3998
3999 @item channel_layout, cl
4000
4001 Specifies the channel layout, and can be either an integer or a string
4002 representing a channel layout. The default value of @var{channel_layout}
4003 is "stereo".
4004
4005 Check the channel_layout_map definition in
4006 @file{libavutil/channel_layout.c} for the mapping between strings and
4007 channel layout values.
4008
4009 @item sample_rate, r
4010 Specifies the sample rate, and defaults to 44100.
4011
4012 @item nb_samples, n
4013 Set the number of samples per requested frames.
4014
4015 @end table
4016
4017 @subsection Examples
4018
4019 @itemize
4020 @item
4021 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4022 @example
4023 anullsrc=r=48000:cl=4
4024 @end example
4025
4026 @item
4027 Do the same operation with a more obvious syntax:
4028 @example
4029 anullsrc=r=48000:cl=mono
4030 @end example
4031 @end itemize
4032
4033 All the parameters need to be explicitly defined.
4034
4035 @section flite
4036
4037 Synthesize a voice utterance using the libflite library.
4038
4039 To enable compilation of this filter you need to configure FFmpeg with
4040 @code{--enable-libflite}.
4041
4042 Note that the flite library is not thread-safe.
4043
4044 The filter accepts the following options:
4045
4046 @table @option
4047
4048 @item list_voices
4049 If set to 1, list the names of the available voices and exit
4050 immediately. Default value is 0.
4051
4052 @item nb_samples, n
4053 Set the maximum number of samples per frame. Default value is 512.
4054
4055 @item textfile
4056 Set the filename containing the text to speak.
4057
4058 @item text
4059 Set the text to speak.
4060
4061 @item voice, v
4062 Set the voice to use for the speech synthesis. Default value is
4063 @code{kal}. See also the @var{list_voices} option.
4064 @end table
4065
4066 @subsection Examples
4067
4068 @itemize
4069 @item
4070 Read from file @file{speech.txt}, and synthesize the text using the
4071 standard flite voice:
4072 @example
4073 flite=textfile=speech.txt
4074 @end example
4075
4076 @item
4077 Read the specified text selecting the @code{slt} voice:
4078 @example
4079 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4080 @end example
4081
4082 @item
4083 Input text to ffmpeg:
4084 @example
4085 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4086 @end example
4087
4088 @item
4089 Make @file{ffplay} speak the specified text, using @code{flite} and
4090 the @code{lavfi} device:
4091 @example
4092 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4093 @end example
4094 @end itemize
4095
4096 For more information about libflite, check:
4097 @url{http://www.speech.cs.cmu.edu/flite/}
4098
4099 @section anoisesrc
4100
4101 Generate a noise audio signal.
4102
4103 The filter accepts the following options:
4104
4105 @table @option
4106 @item sample_rate, r
4107 Specify the sample rate. Default value is 48000 Hz.
4108
4109 @item amplitude, a
4110 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4111 is 1.0.
4112
4113 @item duration, d
4114 Specify the duration of the generated audio stream. Not specifying this option
4115 results in noise with an infinite length.
4116
4117 @item color, colour, c
4118 Specify the color of noise. Available noise colors are white, pink, and brown.
4119 Default color is white.
4120
4121 @item seed, s
4122 Specify a value used to seed the PRNG.
4123
4124 @item nb_samples, n
4125 Set the number of samples per each output frame, default is 1024.
4126 @end table
4127
4128 @subsection Examples
4129
4130 @itemize
4131
4132 @item
4133 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4134 @example
4135 anoisesrc=d=60:c=pink:r=44100:a=0.5
4136 @end example
4137 @end itemize
4138
4139 @section sine
4140
4141 Generate an audio signal made of a sine wave with amplitude 1/8.
4142
4143 The audio signal is bit-exact.
4144
4145 The filter accepts the following options:
4146
4147 @table @option
4148
4149 @item frequency, f
4150 Set the carrier frequency. Default is 440 Hz.
4151
4152 @item beep_factor, b
4153 Enable a periodic beep every second with frequency @var{beep_factor} times
4154 the carrier frequency. Default is 0, meaning the beep is disabled.
4155
4156 @item sample_rate, r
4157 Specify the sample rate, default is 44100.
4158
4159 @item duration, d
4160 Specify the duration of the generated audio stream.
4161
4162 @item samples_per_frame
4163 Set the number of samples per output frame.
4164
4165 The expression can contain the following constants:
4166
4167 @table @option
4168 @item n
4169 The (sequential) number of the output audio frame, starting from 0.
4170
4171 @item pts
4172 The PTS (Presentation TimeStamp) of the output audio frame,
4173 expressed in @var{TB} units.
4174
4175 @item t
4176 The PTS of the output audio frame, expressed in seconds.
4177
4178 @item TB
4179 The timebase of the output audio frames.
4180 @end table
4181
4182 Default is @code{1024}.
4183 @end table
4184
4185 @subsection Examples
4186
4187 @itemize
4188
4189 @item
4190 Generate a simple 440 Hz sine wave:
4191 @example
4192 sine
4193 @end example
4194
4195 @item
4196 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4197 @example
4198 sine=220:4:d=5
4199 sine=f=220:b=4:d=5
4200 sine=frequency=220:beep_factor=4:duration=5
4201 @end example
4202
4203 @item
4204 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4205 pattern:
4206 @example
4207 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4208 @end example
4209 @end itemize
4210
4211 @c man end AUDIO SOURCES
4212
4213 @chapter Audio Sinks
4214 @c man begin AUDIO SINKS
4215
4216 Below is a description of the currently available audio sinks.
4217
4218 @section abuffersink
4219
4220 Buffer audio frames, and make them available to the end of filter chain.
4221
4222 This sink is mainly intended for programmatic use, in particular
4223 through the interface defined in @file{libavfilter/buffersink.h}
4224 or the options system.
4225
4226 It accepts a pointer to an AVABufferSinkContext structure, which
4227 defines the incoming buffers' formats, to be passed as the opaque
4228 parameter to @code{avfilter_init_filter} for initialization.
4229 @section anullsink
4230
4231 Null audio sink; do absolutely nothing with the input audio. It is
4232 mainly useful as a template and for use in analysis / debugging
4233 tools.
4234
4235 @c man end AUDIO SINKS
4236
4237 @chapter Video Filters
4238 @c man begin VIDEO FILTERS
4239
4240 When you configure your FFmpeg build, you can disable any of the
4241 existing filters using @code{--disable-filters}.
4242 The configure output will show the video filters included in your
4243 build.
4244
4245 Below is a description of the currently available video filters.
4246
4247 @section alphaextract
4248
4249 Extract the alpha component from the input as a grayscale video. This
4250 is especially useful with the @var{alphamerge} filter.
4251
4252 @section alphamerge
4253
4254 Add or replace the alpha component of the primary input with the
4255 grayscale value of a second input. This is intended for use with
4256 @var{alphaextract} to allow the transmission or storage of frame
4257 sequences that have alpha in a format that doesn't support an alpha
4258 channel.
4259
4260 For example, to reconstruct full frames from a normal YUV-encoded video
4261 and a separate video created with @var{alphaextract}, you might use:
4262 @example
4263 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4264 @end example
4265
4266 Since this filter is designed for reconstruction, it operates on frame
4267 sequences without considering timestamps, and terminates when either
4268 input reaches end of stream. This will cause problems if your encoding
4269 pipeline drops frames. If you're trying to apply an image as an
4270 overlay to a video stream, consider the @var{overlay} filter instead.
4271
4272 @section ass
4273
4274 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4275 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4276 Substation Alpha) subtitles files.
4277
4278 This filter accepts the following option in addition to the common options from
4279 the @ref{subtitles} filter:
4280
4281 @table @option
4282 @item shaping
4283 Set the shaping engine
4284
4285 Available values are:
4286 @table @samp
4287 @item auto
4288 The default libass shaping engine, which is the best available.
4289 @item simple
4290 Fast, font-agnostic shaper that can do only substitutions
4291 @item complex
4292 Slower shaper using OpenType for substitutions and positioning
4293 @end table
4294
4295 The default is @code{auto}.
4296 @end table
4297
4298 @section atadenoise
4299 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4300
4301 The filter accepts the following options:
4302
4303 @table @option
4304 @item 0a
4305 Set threshold A for 1st plane. Default is 0.02.
4306 Valid range is 0 to 0.3.
4307
4308 @item 0b
4309 Set threshold B for 1st plane. Default is 0.04.
4310 Valid range is 0 to 5.
4311
4312 @item 1a
4313 Set threshold A for 2nd plane. Default is 0.02.
4314 Valid range is 0 to 0.3.
4315
4316 @item 1b
4317 Set threshold B for 2nd plane. Default is 0.04.
4318 Valid range is 0 to 5.
4319
4320 @item 2a
4321 Set threshold A for 3rd plane. Default is 0.02.
4322 Valid range is 0 to 0.3.
4323
4324 @item 2b
4325 Set threshold B for 3rd plane. Default is 0.04.
4326 Valid range is 0 to 5.
4327
4328 Threshold A is designed to react on abrupt changes in the input signal and
4329 threshold B is designed to react on continuous changes in the input signal.
4330
4331 @item s
4332 Set number of frames filter will use for averaging. Default is 33. Must be odd
4333 number in range [5, 129].
4334 @end table
4335
4336 @section bbox
4337
4338 Compute the bounding box for the non-black pixels in the input frame
4339 luminance plane.
4340
4341 This filter computes the bounding box containing all the pixels with a
4342 luminance value greater than the minimum allowed value.
4343 The parameters describing the bounding box are printed on the filter
4344 log.
4345
4346 The filter accepts the following option:
4347
4348 @table @option
4349 @item min_val
4350 Set the minimal luminance value. Default is @code{16}.
4351 @end table
4352
4353 @section blackdetect
4354
4355 Detect video intervals that are (almost) completely black. Can be
4356 useful to detect chapter transitions, commercials, or invalid
4357 recordings. Output lines contains the time for the start, end and
4358 duration of the detected black interval expressed in seconds.
4359
4360 In order to display the output lines, you need to set the loglevel at
4361 least to the AV_LOG_INFO value.
4362
4363 The filter accepts the following options:
4364
4365 @table @option
4366 @item black_min_duration, d
4367 Set the minimum detected black duration expressed in seconds. It must
4368 be a non-negative floating point number.
4369
4370 Default value is 2.0.
4371
4372 @item picture_black_ratio_th, pic_th
4373 Set the threshold for considering a picture "black".
4374 Express the minimum value for the ratio:
4375 @example
4376 @var{nb_black_pixels} / @var{nb_pixels}
4377 @end example
4378
4379 for which a picture is considered black.
4380 Default value is 0.98.
4381
4382 @item pixel_black_th, pix_th
4383 Set the threshold for considering a pixel "black".
4384
4385 The threshold expresses the maximum pixel luminance value for which a
4386 pixel is considered "black". The provided value is scaled according to
4387 the following equation:
4388 @example
4389 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4390 @end example
4391
4392 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4393 the input video format, the range is [0-255] for YUV full-range
4394 formats and [16-235] for YUV non full-range formats.
4395
4396 Default value is 0.10.
4397 @end table
4398
4399 The following example sets the maximum pixel threshold to the minimum
4400 value, and detects only black intervals of 2 or more seconds:
4401 @example
4402 blackdetect=d=2:pix_th=0.00
4403 @end example
4404
4405 @section blackframe
4406
4407 Detect frames that are (almost) completely black. Can be useful to
4408 detect chapter transitions or commercials. Output lines consist of
4409 the frame number of the detected frame, the percentage of blackness,
4410 the position in the file if known or -1 and the timestamp in seconds.
4411
4412 In order to display the output lines, you need to set the loglevel at
4413 least to the AV_LOG_INFO value.
4414
4415 It accepts the following parameters:
4416
4417 @table @option
4418
4419 @item amount
4420 The percentage of the pixels that have to be below the threshold; it defaults to
4421 @code{98}.
4422
4423 @item threshold, thresh
4424 The threshold below which a pixel value is considered black; it defaults to
4425 @code{32}.
4426
4427 @end table
4428
4429 @section blend, tblend
4430
4431 Blend two video frames into each other.
4432
4433 The @code{blend} filter takes two input streams and outputs one
4434 stream, the first input is the "top" layer and second input is
4435 "bottom" layer.  Output terminates when shortest input terminates.
4436
4437 The @code{tblend} (time blend) filter takes two consecutive frames
4438 from one single stream, and outputs the result obtained by blending
4439 the new frame on top of the old frame.
4440
4441 A description of the accepted options follows.
4442
4443 @table @option
4444 @item c0_mode
4445 @item c1_mode
4446 @item c2_mode
4447 @item c3_mode
4448 @item all_mode
4449 Set blend mode for specific pixel component or all pixel components in case
4450 of @var{all_mode}. Default value is @code{normal}.
4451
4452 Available values for component modes are:
4453 @table @samp
4454 @item addition
4455 @item addition128
4456 @item and
4457 @item average
4458 @item burn
4459 @item darken
4460 @item difference
4461 @item difference128
4462 @item divide
4463 @item dodge
4464 @item freeze
4465 @item exclusion
4466 @item glow
4467 @item hardlight
4468 @item hardmix
4469 @item heat
4470 @item lighten
4471 @item linearlight
4472 @item multiply
4473 @item multiply128
4474 @item negation
4475 @item normal
4476 @item or
4477 @item overlay
4478 @item phoenix
4479 @item pinlight
4480 @item reflect
4481 @item screen
4482 @item softlight
4483 @item subtract
4484 @item vividlight
4485 @item xor
4486 @end table
4487
4488 @item c0_opacity
4489 @item c1_opacity
4490 @item c2_opacity
4491 @item c3_opacity
4492 @item all_opacity
4493 Set blend opacity for specific pixel component or all pixel components in case
4494 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4495
4496 @item c0_expr
4497 @item c1_expr
4498 @item c2_expr
4499 @item c3_expr
4500 @item all_expr
4501 Set blend expression for specific pixel component or all pixel components in case
4502 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4503
4504 The expressions can use the following variables:
4505
4506 @table @option
4507 @item N
4508 The sequential number of the filtered frame, starting from @code{0}.
4509
4510 @item X
4511 @item Y
4512 the coordinates of the current sample
4513
4514 @item W
4515 @item H
4516 the width and height of currently filtered plane
4517
4518 @item SW
4519 @item SH
4520 Width and height scale depending on the currently filtered plane. It is the
4521 ratio between the corresponding luma plane number of pixels and the current
4522 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4523 @code{0.5,0.5} for chroma planes.
4524
4525 @item T
4526 Time of the current frame, expressed in seconds.
4527
4528 @item TOP, A
4529 Value of pixel component at current location for first video frame (top layer).
4530
4531 @item BOTTOM, B
4532 Value of pixel component at current location for second video frame (bottom layer).
4533 @end table
4534
4535 @item shortest
4536 Force termination when the shortest input terminates. Default is
4537 @code{0}. This option is only defined for the @code{blend} filter.
4538
4539 @item repeatlast
4540 Continue applying the last bottom frame after the end of the stream. A value of
4541 @code{0} disable the filter after the last frame of the bottom layer is reached.
4542 Default is @code{1}. This option is only defined for the @code{blend} filter.
4543 @end table
4544
4545 @subsection Examples
4546
4547 @itemize
4548 @item
4549 Apply transition from bottom layer to top layer in first 10 seconds:
4550 @example
4551 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4552 @end example
4553
4554 @item
4555 Apply 1x1 checkerboard effect:
4556 @example
4557 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4558 @end example
4559
4560 @item
4561 Apply uncover left effect:
4562 @example
4563 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4564 @end example
4565
4566 @item
4567 Apply uncover down effect:
4568 @example
4569 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4570 @end example
4571
4572 @item
4573 Apply uncover up-left effect:
4574 @example
4575 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4576 @end example
4577
4578 @item
4579 Split diagonally video and shows top and bottom layer on each side:
4580 @example
4581 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4582 @end example
4583
4584 @item
4585 Display differences between the current and the previous frame:
4586 @example
4587 tblend=all_mode=difference128
4588 @end example
4589 @end itemize
4590
4591 @section boxblur
4592
4593 Apply a boxblur algorithm to the input video.
4594
4595 It accepts the following parameters:
4596
4597 @table @option
4598
4599 @item luma_radius, lr
4600 @item luma_power, lp
4601 @item chroma_radius, cr
4602 @item chroma_power, cp
4603 @item alpha_radius, ar
4604 @item alpha_power, ap
4605
4606 @end table
4607
4608 A description of the accepted options follows.
4609
4610 @table @option
4611 @item luma_radius, lr
4612 @item chroma_radius, cr
4613 @item alpha_radius, ar
4614 Set an expression for the box radius in pixels used for blurring the
4615 corresponding input plane.
4616
4617 The radius value must be a non-negative number, and must not be
4618 greater than the value of the expression @code{min(w,h)/2} for the
4619 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4620 planes.
4621
4622 Default value for @option{luma_radius} is "2". If not specified,
4623 @option{chroma_radius} and @option{alpha_radius} default to the
4624 corresponding value set for @option{luma_radius}.
4625
4626 The expressions can contain the following constants:
4627 @table @option
4628 @item w
4629 @item h
4630 The input width and height in pixels.
4631
4632 @item cw
4633 @item ch
4634 The input chroma image width and height in pixels.
4635
4636 @item hsub
4637 @item vsub
4638 The horizontal and vertical chroma subsample values. For example, for the
4639 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4640 @end table
4641
4642 @item luma_power, lp
4643 @item chroma_power, cp
4644 @item alpha_power, ap
4645 Specify how many times the boxblur filter is applied to the
4646 corresponding plane.
4647
4648 Default value for @option{luma_power} is 2. If not specified,
4649 @option{chroma_power} and @option{alpha_power} default to the
4650 corresponding value set for @option{luma_power}.
4651
4652 A value of 0 will disable the effect.
4653 @end table
4654
4655 @subsection Examples
4656
4657 @itemize
4658 @item
4659 Apply a boxblur filter with the luma, chroma, and alpha radii
4660 set to 2:
4661 @example
4662 boxblur=luma_radius=2:luma_power=1
4663 boxblur=2:1
4664 @end example
4665
4666 @item
4667 Set the luma radius to 2, and alpha and chroma radius to 0:
4668 @example
4669 boxblur=2:1:cr=0:ar=0
4670 @end example
4671
4672 @item
4673 Set the luma and chroma radii to a fraction of the video dimension:
4674 @example
4675 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4676 @end example
4677 @end itemize
4678
4679 @section bwdif
4680
4681 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4682 Deinterlacing Filter").
4683
4684 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4685 interpolation algorithms.
4686 It accepts the following parameters:
4687
4688 @table @option
4689 @item mode
4690 The interlacing mode to adopt. It accepts one of the following values:
4691
4692 @table @option
4693 @item 0, send_frame
4694 Output one frame for each frame.
4695 @item 1, send_field
4696 Output one frame for each field.
4697 @end table
4698
4699 The default value is @code{send_field}.
4700
4701 @item parity
4702 The picture field parity assumed for the input interlaced video. It accepts one
4703 of the following values:
4704
4705 @table @option
4706 @item 0, tff
4707 Assume the top field is first.
4708 @item 1, bff
4709 Assume the bottom field is first.
4710 @item -1, auto
4711 Enable automatic detection of field parity.
4712 @end table
4713
4714 The default value is @code{auto}.
4715 If the interlacing is unknown or the decoder does not export this information,
4716 top field first will be assumed.
4717
4718 @item deint
4719 Specify which frames to deinterlace. Accept one of the following
4720 values:
4721
4722 @table @option
4723 @item 0, all
4724 Deinterlace all frames.
4725 @item 1, interlaced
4726 Only deinterlace frames marked as interlaced.
4727 @end table
4728
4729 The default value is @code{all}.
4730 @end table
4731
4732 @section chromakey
4733 YUV colorspace color/chroma keying.
4734
4735 The filter accepts the following options:
4736
4737 @table @option
4738 @item color
4739 The color which will be replaced with transparency.
4740
4741 @item similarity
4742 Similarity percentage with the key color.
4743
4744 0.01 matches only the exact key color, while 1.0 matches everything.
4745
4746 @item blend
4747 Blend percentage.
4748
4749 0.0 makes pixels either fully transparent, or not transparent at all.
4750
4751 Higher values result in semi-transparent pixels, with a higher transparency
4752 the more similar the pixels color is to the key color.
4753
4754 @item yuv
4755 Signals that the color passed is already in YUV instead of RGB.
4756
4757 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4758 This can be used to pass exact YUV values as hexadecimal numbers.
4759 @end table
4760
4761 @subsection Examples
4762
4763 @itemize
4764 @item
4765 Make every green pixel in the input image transparent:
4766 @example
4767 ffmpeg -i input.png -vf chromakey=green out.png
4768 @end example
4769
4770 @item
4771 Overlay a greenscreen-video on top of a static black background.
4772 @example
4773 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
4774 @end example
4775 @end itemize
4776
4777 @section ciescope
4778
4779 Display CIE color diagram with pixels overlaid onto it.
4780
4781 The filter accepts the following options:
4782
4783 @table @option
4784 @item system
4785 Set color system.
4786
4787 @table @samp
4788 @item ntsc, 470m
4789 @item ebu, 470bg
4790 @item smpte
4791 @item 240m
4792 @item apple
4793 @item widergb
4794 @item cie1931
4795 @item rec709, hdtv
4796 @item uhdtv, rec2020
4797 @end table
4798
4799 @item cie
4800 Set CIE system.
4801
4802 @table @samp
4803 @item xyy
4804 @item ucs
4805 @item luv
4806 @end table
4807
4808 @item gamuts
4809 Set what gamuts to draw.
4810
4811 See @code{system} option for available values.
4812
4813 @item size, s
4814 Set ciescope size, by default set to 512.
4815
4816 @item intensity, i
4817 Set intensity used to map input pixel values to CIE diagram.
4818
4819 @item contrast
4820 Set contrast used to draw tongue colors that are out of active color system gamut.
4821
4822 @item corrgamma
4823 Correct gamma displayed on scope, by default enabled.
4824
4825 @item showwhite
4826 Show white point on CIE diagram, by default disabled.
4827
4828 @item gamma
4829 Set input gamma. Used only with XYZ input color space.
4830 @end table
4831
4832 @section codecview
4833
4834 Visualize information exported by some codecs.
4835
4836 Some codecs can export information through frames using side-data or other
4837 means. For example, some MPEG based codecs export motion vectors through the
4838 @var{export_mvs} flag in the codec @option{flags2} option.
4839
4840 The filter accepts the following option:
4841
4842 @table @option
4843 @item mv
4844 Set motion vectors to visualize.
4845
4846 Available flags for @var{mv} are:
4847
4848 @table @samp
4849 @item pf
4850 forward predicted MVs of P-frames
4851 @item bf
4852 forward predicted MVs of B-frames
4853 @item bb
4854 backward predicted MVs of B-frames
4855 @end table
4856
4857 @item qp
4858 Display quantization parameters using the chroma planes.
4859
4860 @item mv_type, mvt
4861 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
4862
4863 Available flags for @var{mv_type} are:
4864
4865 @table @samp
4866 @item fp
4867 forward predicted MVs
4868 @item bp
4869 backward predicted MVs
4870 @end table
4871
4872 @item frame_type, ft
4873 Set frame type to visualize motion vectors of.
4874
4875 Available flags for @var{frame_type} are:
4876
4877 @table @samp
4878 @item if
4879 intra-coded frames (I-frames)
4880 @item pf
4881 predicted frames (P-frames)
4882 @item bf
4883 bi-directionally predicted frames (B-frames)
4884 @end table
4885 @end table
4886
4887 @subsection Examples
4888
4889 @itemize
4890 @item
4891 Visualize forward predicted MVs of all frames using @command{ffplay}:
4892 @example
4893 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
4894 @end example
4895
4896 @item
4897 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
4898 @example
4899 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
4900 @end example
4901 @end itemize
4902
4903 @section colorbalance
4904 Modify intensity of primary colors (red, green and blue) of input frames.
4905
4906 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
4907 regions for the red-cyan, green-magenta or blue-yellow balance.
4908
4909 A positive adjustment value shifts the balance towards the primary color, a negative
4910 value towards the complementary color.
4911
4912 The filter accepts the following options:
4913
4914 @table @option
4915 @item rs
4916 @item gs
4917 @item bs
4918 Adjust red, green and blue shadows (darkest pixels).
4919
4920 @item rm
4921 @item gm
4922 @item bm
4923 Adjust red, green and blue midtones (medium pixels).
4924
4925 @item rh
4926 @item gh
4927 @item bh
4928 Adjust red, green and blue highlights (brightest pixels).
4929
4930 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4931 @end table
4932
4933 @subsection Examples
4934
4935 @itemize
4936 @item
4937 Add red color cast to shadows:
4938 @example
4939 colorbalance=rs=.3
4940 @end example
4941 @end itemize
4942
4943 @section colorkey
4944 RGB colorspace color keying.
4945
4946 The filter accepts the following options:
4947
4948 @table @option
4949 @item color
4950 The color which will be replaced with transparency.
4951
4952 @item similarity
4953 Similarity percentage with the key color.
4954
4955 0.01 matches only the exact key color, while 1.0 matches everything.
4956
4957 @item blend
4958 Blend percentage.
4959
4960 0.0 makes pixels either fully transparent, or not transparent at all.
4961
4962 Higher values result in semi-transparent pixels, with a higher transparency
4963 the more similar the pixels color is to the key color.
4964 @end table
4965
4966 @subsection Examples
4967
4968 @itemize
4969 @item
4970 Make every green pixel in the input image transparent:
4971 @example
4972 ffmpeg -i input.png -vf colorkey=green out.png
4973 @end example
4974
4975 @item
4976 Overlay a greenscreen-video on top of a static background image.
4977 @example
4978 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
4979 @end example
4980 @end itemize
4981
4982 @section colorlevels
4983
4984 Adjust video input frames using levels.
4985
4986 The filter accepts the following options:
4987
4988 @table @option
4989 @item rimin
4990 @item gimin
4991 @item bimin
4992 @item aimin
4993 Adjust red, green, blue and alpha input black point.
4994 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
4995
4996 @item rimax
4997 @item gimax
4998 @item bimax
4999 @item aimax
5000 Adjust red, green, blue and alpha input white point.
5001 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5002
5003 Input levels are used to lighten highlights (bright tones), darken shadows
5004 (dark tones), change the balance of bright and dark tones.
5005
5006 @item romin
5007 @item gomin
5008 @item bomin
5009 @item aomin
5010 Adjust red, green, blue and alpha output black point.
5011 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5012
5013 @item romax
5014 @item gomax
5015 @item bomax
5016 @item aomax
5017 Adjust red, green, blue and alpha output white point.
5018 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5019
5020 Output levels allows manual selection of a constrained output level range.
5021 @end table
5022
5023 @subsection Examples
5024
5025 @itemize
5026 @item
5027 Make video output darker:
5028 @example
5029 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5030 @end example
5031
5032 @item
5033 Increase contrast:
5034 @example
5035 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5036 @end example
5037
5038 @item
5039 Make video output lighter:
5040 @example
5041 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5042 @end example
5043
5044 @item
5045 Increase brightness:
5046 @example
5047 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5048 @end example
5049 @end itemize
5050
5051 @section colorchannelmixer
5052
5053 Adjust video input frames by re-mixing color channels.
5054
5055 This filter modifies a color channel by adding the values associated to
5056 the other channels of the same pixels. For example if the value to
5057 modify is red, the output value will be:
5058 @example
5059 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5060 @end example
5061
5062 The filter accepts the following options:
5063
5064 @table @option
5065 @item rr
5066 @item rg
5067 @item rb
5068 @item ra
5069 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5070 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5071
5072 @item gr
5073 @item gg
5074 @item gb
5075 @item ga
5076 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5077 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5078
5079 @item br
5080 @item bg
5081 @item bb
5082 @item ba
5083 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5084 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5085
5086 @item ar
5087 @item ag
5088 @item ab
5089 @item aa
5090 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5091 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5092
5093 Allowed ranges for options are @code{[-2.0, 2.0]}.
5094 @end table
5095
5096 @subsection Examples
5097
5098 @itemize
5099 @item
5100 Convert source to grayscale:
5101 @example
5102 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5103 @end example
5104 @item
5105 Simulate sepia tones:
5106 @example
5107 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5108 @end example
5109 @end itemize
5110
5111 @section colormatrix
5112
5113 Convert color matrix.
5114
5115 The filter accepts the following options:
5116
5117 @table @option
5118 @item src
5119 @item dst
5120 Specify the source and destination color matrix. Both values must be
5121 specified.
5122
5123 The accepted values are:
5124 @table @samp
5125 @item bt709
5126 BT.709
5127
5128 @item bt601
5129 BT.601
5130
5131 @item smpte240m
5132 SMPTE-240M
5133
5134 @item fcc
5135 FCC
5136
5137 @item bt2020
5138 BT.2020
5139 @end table
5140 @end table
5141
5142 For example to convert from BT.601 to SMPTE-240M, use the command:
5143 @example
5144 colormatrix=bt601:smpte240m
5145 @end example
5146
5147 @section colorspace
5148
5149 Convert colorspace, transfer characteristics or color primaries.
5150
5151 The filter accepts the following options:
5152
5153 @table @option
5154 @item all
5155 Specify all color properties at once.
5156
5157 The accepted values are:
5158 @table @samp
5159 @item bt470m
5160 BT.470M
5161
5162 @item bt470bg
5163 BT.470BG
5164
5165 @item bt601-6-525
5166 BT.601-6 525
5167
5168 @item bt601-6-625
5169 BT.601-6 625
5170
5171 @item bt709
5172 BT.709
5173
5174 @item smpte170m
5175 SMPTE-170M
5176
5177 @item smpte240m
5178 SMPTE-240M
5179
5180 @item bt2020
5181 BT.2020
5182
5183 @end table
5184
5185 @item space
5186 Specify output colorspace.
5187
5188 The accepted values are:
5189 @table @samp
5190 @item bt709
5191 BT.709
5192
5193 @item fcc
5194 FCC
5195
5196 @item bt470bg
5197 BT.470BG or BT.601-6 625
5198
5199 @item smpte170m
5200 SMPTE-170M or BT.601-6 525
5201
5202 @item smpte240m
5203 SMPTE-240M
5204
5205 @item bt2020ncl
5206 BT.2020 with non-constant luminance
5207
5208 @end table
5209
5210 @item trc
5211 Specify output transfer characteristics.
5212
5213 The accepted values are:
5214 @table @samp
5215 @item bt709
5216 BT.709
5217
5218 @item gamma22
5219 Constant gamma of 2.2
5220
5221 @item gamma28
5222 Constant gamma of 2.8
5223
5224 @item smpte170m
5225 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5226
5227 @item smpte240m
5228 SMPTE-240M
5229
5230 @item bt2020-10
5231 BT.2020 for 10-bits content
5232
5233 @item bt2020-12
5234 BT.2020 for 12-bits content
5235
5236 @end table
5237
5238 @item primaries
5239 Specify output color primaries.
5240
5241 The accepted values are:
5242 @table @samp
5243 @item bt709
5244 BT.709
5245
5246 @item bt470m
5247 BT.470M
5248
5249 @item bt470bg
5250 BT.470BG or BT.601-6 625
5251
5252 @item smpte170m
5253 SMPTE-170M or BT.601-6 525
5254
5255 @item smpte240m
5256 SMPTE-240M
5257
5258 @item bt2020
5259 BT.2020
5260
5261 @end table
5262
5263 @item range
5264 Specify output color range.
5265
5266 The accepted values are:
5267 @table @samp
5268 @item mpeg
5269 MPEG (restricted) range
5270
5271 @item jpeg
5272 JPEG (full) range
5273
5274 @end table
5275
5276 @item format
5277 Specify output color format.
5278
5279 The accepted values are:
5280 @table @samp
5281 @item yuv420p
5282 YUV 4:2:0 planar 8-bits
5283
5284 @item yuv420p10
5285 YUV 4:2:0 planar 10-bits
5286
5287 @item yuv420p12
5288 YUV 4:2:0 planar 12-bits
5289
5290 @item yuv422p
5291 YUV 4:2:2 planar 8-bits
5292
5293 @item yuv422p10
5294 YUV 4:2:2 planar 10-bits
5295
5296 @item yuv422p12
5297 YUV 4:2:2 planar 12-bits
5298
5299 @item yuv444p
5300 YUV 4:4:4 planar 8-bits
5301
5302 @item yuv444p10
5303 YUV 4:4:4 planar 10-bits
5304
5305 @item yuv444p12
5306 YUV 4:4:4 planar 12-bits
5307
5308 @end table
5309
5310 @item fast
5311 Do a fast conversion, which skips gamma/primary correction. This will take
5312 significantly less CPU, but will be mathematically incorrect. To get output
5313 compatible with that produced by the colormatrix filter, use fast=1.
5314
5315 @item dither
5316 Specify dithering mode.
5317
5318 The accepted values are:
5319 @table @samp
5320 @item none
5321 No dithering
5322
5323 @item fsb
5324 Floyd-Steinberg dithering
5325 @end table
5326
5327 @item wpadapt
5328 Whitepoint adaptation mode.
5329
5330 The accepted values are:
5331 @table @samp
5332 @item bradford
5333 Bradford whitepoint adaptation
5334
5335 @item vonkries
5336 von Kries whitepoint adaptation
5337
5338 @item identity
5339 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5340 @end table
5341
5342 @end table
5343
5344 The filter converts the transfer characteristics, color space and color
5345 primaries to the specified user values. The output value, if not specified,
5346 is set to a default value based on the "all" property. If that property is
5347 also not specified, the filter will log an error. The output color range and
5348 format default to the same value as the input color range and format. The
5349 input transfer characteristics, color space, color primaries and color range
5350 should be set on the input data. If any of these are missing, the filter will
5351 log an error and no conversion will take place.
5352
5353 For example to convert the input to SMPTE-240M, use the command:
5354 @example
5355 colorspace=smpte240m
5356 @end example
5357
5358 @section convolution
5359
5360 Apply convolution 3x3 or 5x5 filter.
5361
5362 The filter accepts the following options:
5363
5364 @table @option
5365 @item 0m
5366 @item 1m
5367 @item 2m
5368 @item 3m
5369 Set matrix for each plane.
5370 Matrix is sequence of 9 or 25 signed integers.
5371
5372 @item 0rdiv
5373 @item 1rdiv
5374 @item 2rdiv
5375 @item 3rdiv
5376 Set multiplier for calculated value for each plane.
5377
5378 @item 0bias
5379 @item 1bias
5380 @item 2bias
5381 @item 3bias
5382 Set bias for each plane. This value is added to the result of the multiplication.
5383 Useful for making the overall image brighter or darker. Default is 0.0.
5384 @end table
5385
5386 @subsection Examples
5387
5388 @itemize
5389 @item
5390 Apply sharpen:
5391 @example
5392 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"
5393 @end example
5394
5395 @item
5396 Apply blur:
5397 @example
5398 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"
5399 @end example
5400
5401 @item
5402 Apply edge enhance:
5403 @example
5404 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"
5405 @end example
5406
5407 @item
5408 Apply edge detect:
5409 @example
5410 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"
5411 @end example
5412
5413 @item
5414 Apply emboss:
5415 @example
5416 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"
5417 @end example
5418 @end itemize
5419
5420 @section copy
5421
5422 Copy the input source unchanged to the output. This is mainly useful for
5423 testing purposes.
5424
5425 @anchor{coreimage}
5426 @section coreimage
5427 Video filtering on GPU using Apple's CoreImage API on OSX.
5428
5429 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5430 processed by video hardware. However, software-based OpenGL implementations
5431 exist which means there is no guarantee for hardware processing. It depends on
5432 the respective OSX.
5433
5434 There are many filters and image generators provided by Apple that come with a
5435 large variety of options. The filter has to be referenced by its name along
5436 with its options.
5437
5438 The coreimage filter accepts the following options:
5439 @table @option
5440 @item list_filters
5441 List all available filters and generators along with all their respective
5442 options as well as possible minimum and maximum values along with the default
5443 values.
5444 @example
5445 list_filters=true
5446 @end example
5447
5448 @item filter
5449 Specify all filters by their respective name and options.
5450 Use @var{list_filters} to determine all valid filter names and options.
5451 Numerical options are specified by a float value and are automatically clamped
5452 to their respective value range.  Vector and color options have to be specified
5453 by a list of space separated float values. Character escaping has to be done.
5454 A special option name @code{default} is available to use default options for a
5455 filter.
5456
5457 It is required to specify either @code{default} or at least one of the filter options.
5458 All omitted options are used with their default values.
5459 The syntax of the filter string is as follows:
5460 @example
5461 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5462 @end example
5463
5464 @item output_rect
5465 Specify a rectangle where the output of the filter chain is copied into the
5466 input image. It is given by a list of space separated float values:
5467 @example
5468 output_rect=x\ y\ width\ height
5469 @end example
5470 If not given, the output rectangle equals the dimensions of the input image.
5471 The output rectangle is automatically cropped at the borders of the input
5472 image. Negative values are valid for each component.
5473 @example
5474 output_rect=25\ 25\ 100\ 100
5475 @end example
5476 @end table
5477
5478 Several filters can be chained for successive processing without GPU-HOST
5479 transfers allowing for fast processing of complex filter chains.
5480 Currently, only filters with zero (generators) or exactly one (filters) input
5481 image and one output image are supported. Also, transition filters are not yet
5482 usable as intended.
5483
5484 Some filters generate output images with additional padding depending on the
5485 respective filter kernel. The padding is automatically removed to ensure the
5486 filter output has the same size as the input image.
5487
5488 For image generators, the size of the output image is determined by the
5489 previous output image of the filter chain or the input image of the whole
5490 filterchain, respectively. The generators do not use the pixel information of
5491 this image to generate their output. However, the generated output is
5492 blended onto this image, resulting in partial or complete coverage of the
5493 output image.
5494
5495 The @ref{coreimagesrc} video source can be used for generating input images
5496 which are directly fed into the filter chain. By using it, providing input
5497 images by another video source or an input video is not required.
5498
5499 @subsection Examples
5500
5501 @itemize
5502
5503 @item
5504 List all filters available:
5505 @example
5506 coreimage=list_filters=true
5507 @end example
5508
5509 @item
5510 Use the CIBoxBlur filter with default options to blur an image:
5511 @example
5512 coreimage=filter=CIBoxBlur@@default
5513 @end example
5514
5515 @item
5516 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5517 its center at 100x100 and a radius of 50 pixels:
5518 @example
5519 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5520 @end example
5521
5522 @item
5523 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5524 given as complete and escaped command-line for Apple's standard bash shell:
5525 @example
5526 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5527 @end example
5528 @end itemize
5529
5530 @section crop
5531
5532 Crop the input video to given dimensions.
5533
5534 It accepts the following parameters:
5535
5536 @table @option
5537 @item w, out_w
5538 The width of the output video. It defaults to @code{iw}.
5539 This expression is evaluated only once during the filter
5540 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5541
5542 @item h, out_h
5543 The height of the output video. It defaults to @code{ih}.
5544 This expression is evaluated only once during the filter
5545 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5546
5547 @item x
5548 The horizontal position, in the input video, of the left edge of the output
5549 video. It defaults to @code{(in_w-out_w)/2}.
5550 This expression is evaluated per-frame.
5551
5552 @item y
5553 The vertical position, in the input video, of the top edge of the output video.
5554 It defaults to @code{(in_h-out_h)/2}.
5555 This expression is evaluated per-frame.
5556
5557 @item keep_aspect
5558 If set to 1 will force the output display aspect ratio
5559 to be the same of the input, by changing the output sample aspect
5560 ratio. It defaults to 0.
5561 @end table
5562
5563 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5564 expressions containing the following constants:
5565
5566 @table @option
5567 @item x
5568 @item y
5569 The computed values for @var{x} and @var{y}. They are evaluated for
5570 each new frame.
5571
5572 @item in_w
5573 @item in_h
5574 The input width and height.
5575
5576 @item iw
5577 @item ih
5578 These are the same as @var{in_w} and @var{in_h}.
5579
5580 @item out_w
5581 @item out_h
5582 The output (cropped) width and height.
5583
5584 @item ow
5585 @item oh
5586 These are the same as @var{out_w} and @var{out_h}.
5587
5588 @item a
5589 same as @var{iw} / @var{ih}
5590
5591 @item sar
5592 input sample aspect ratio
5593
5594 @item dar
5595 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5596
5597 @item hsub
5598 @item vsub
5599 horizontal and vertical chroma subsample values. For example for the
5600 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5601
5602 @item n
5603 The number of the input frame, starting from 0.
5604
5605 @item pos
5606 the position in the file of the input frame, NAN if unknown
5607
5608 @item t
5609 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5610
5611 @end table
5612
5613 The expression for @var{out_w} may depend on the value of @var{out_h},
5614 and the expression for @var{out_h} may depend on @var{out_w}, but they
5615 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5616 evaluated after @var{out_w} and @var{out_h}.
5617
5618 The @var{x} and @var{y} parameters specify the expressions for the
5619 position of the top-left corner of the output (non-cropped) area. They
5620 are evaluated for each frame. If the evaluated value is not valid, it
5621 is approximated to the nearest valid value.
5622
5623 The expression for @var{x} may depend on @var{y}, and the expression
5624 for @var{y} may depend on @var{x}.
5625
5626 @subsection Examples
5627
5628 @itemize
5629 @item
5630 Crop area with size 100x100 at position (12,34).
5631 @example
5632 crop=100:100:12:34
5633 @end example
5634
5635 Using named options, the example above becomes:
5636 @example
5637 crop=w=100:h=100:x=12:y=34
5638 @end example
5639
5640 @item
5641 Crop the central input area with size 100x100:
5642 @example
5643 crop=100:100
5644 @end example
5645
5646 @item
5647 Crop the central input area with size 2/3 of the input video:
5648 @example
5649 crop=2/3*in_w:2/3*in_h
5650 @end example
5651
5652 @item
5653 Crop the input video central square:
5654 @example
5655 crop=out_w=in_h
5656 crop=in_h
5657 @end example
5658
5659 @item
5660 Delimit the rectangle with the top-left corner placed at position
5661 100:100 and the right-bottom corner corresponding to the right-bottom
5662 corner of the input image.
5663 @example
5664 crop=in_w-100:in_h-100:100:100
5665 @end example
5666
5667 @item
5668 Crop 10 pixels from the left and right borders, and 20 pixels from
5669 the top and bottom borders
5670 @example
5671 crop=in_w-2*10:in_h-2*20
5672 @end example
5673
5674 @item
5675 Keep only the bottom right quarter of the input image:
5676 @example
5677 crop=in_w/2:in_h/2:in_w/2:in_h/2
5678 @end example
5679
5680 @item
5681 Crop height for getting Greek harmony:
5682 @example
5683 crop=in_w:1/PHI*in_w
5684 @end example
5685
5686 @item
5687 Apply trembling effect:
5688 @example
5689 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)
5690 @end example
5691
5692 @item
5693 Apply erratic camera effect depending on timestamp:
5694 @example
5695 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)"
5696 @end example
5697
5698 @item
5699 Set x depending on the value of y:
5700 @example
5701 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5702 @end example
5703 @end itemize
5704
5705 @subsection Commands
5706
5707 This filter supports the following commands:
5708 @table @option
5709 @item w, out_w
5710 @item h, out_h
5711 @item x
5712 @item y
5713 Set width/height of the output video and the horizontal/vertical position
5714 in the input video.
5715 The command accepts the same syntax of the corresponding option.
5716
5717 If the specified expression is not valid, it is kept at its current
5718 value.
5719 @end table
5720
5721 @section cropdetect
5722
5723 Auto-detect the crop size.
5724
5725 It calculates the necessary cropping parameters and prints the
5726 recommended parameters via the logging system. The detected dimensions
5727 correspond to the non-black area of the input video.
5728
5729 It accepts the following parameters:
5730
5731 @table @option
5732
5733 @item limit
5734 Set higher black value threshold, which can be optionally specified
5735 from nothing (0) to everything (255 for 8-bit based formats). An intensity
5736 value greater to the set value is considered non-black. It defaults to 24.
5737 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5738 on the bitdepth of the pixel format.
5739
5740 @item round
5741 The value which the width/height should be divisible by. It defaults to
5742 16. The offset is automatically adjusted to center the video. Use 2 to
5743 get only even dimensions (needed for 4:2:2 video). 16 is best when
5744 encoding to most video codecs.
5745
5746 @item reset_count, reset
5747 Set the counter that determines after how many frames cropdetect will
5748 reset the previously detected largest video area and start over to
5749 detect the current optimal crop area. Default value is 0.
5750
5751 This can be useful when channel logos distort the video area. 0
5752 indicates 'never reset', and returns the largest area encountered during
5753 playback.
5754 @end table
5755
5756 @anchor{curves}
5757 @section curves
5758
5759 Apply color adjustments using curves.
5760
5761 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5762 component (red, green and blue) has its values defined by @var{N} key points
5763 tied from each other using a smooth curve. The x-axis represents the pixel
5764 values from the input frame, and the y-axis the new pixel values to be set for
5765 the output frame.
5766
5767 By default, a component curve is defined by the two points @var{(0;0)} and
5768 @var{(1;1)}. This creates a straight line where each original pixel value is
5769 "adjusted" to its own value, which means no change to the image.
5770
5771 The filter allows you to redefine these two points and add some more. A new
5772 curve (using a natural cubic spline interpolation) will be define to pass
5773 smoothly through all these new coordinates. The new defined points needs to be
5774 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5775 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5776 the vector spaces, the values will be clipped accordingly.
5777
5778 The filter accepts the following options:
5779
5780 @table @option
5781 @item preset
5782 Select one of the available color presets. This option can be used in addition
5783 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5784 options takes priority on the preset values.
5785 Available presets are:
5786 @table @samp
5787 @item none
5788 @item color_negative
5789 @item cross_process
5790 @item darker
5791 @item increase_contrast
5792 @item lighter
5793 @item linear_contrast
5794 @item medium_contrast
5795 @item negative
5796 @item strong_contrast
5797 @item vintage
5798 @end table
5799 Default is @code{none}.
5800 @item master, m
5801 Set the master key points. These points will define a second pass mapping. It
5802 is sometimes called a "luminance" or "value" mapping. It can be used with
5803 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5804 post-processing LUT.
5805 @item red, r
5806 Set the key points for the red component.
5807 @item green, g
5808 Set the key points for the green component.
5809 @item blue, b
5810 Set the key points for the blue component.
5811 @item all
5812 Set the key points for all components (not including master).
5813 Can be used in addition to the other key points component
5814 options. In this case, the unset component(s) will fallback on this
5815 @option{all} setting.
5816 @item psfile
5817 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5818 @item plot
5819 Save Gnuplot script of the curves in specified file.
5820 @end table
5821
5822 To avoid some filtergraph syntax conflicts, each key points list need to be
5823 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5824
5825 @subsection Examples
5826
5827 @itemize
5828 @item
5829 Increase slightly the middle level of blue:
5830 @example
5831 curves=blue='0/0 0.5/0.58 1/1'
5832 @end example
5833
5834 @item
5835 Vintage effect:
5836 @example
5837 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'
5838 @end example
5839 Here we obtain the following coordinates for each components:
5840 @table @var
5841 @item red
5842 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5843 @item green
5844 @code{(0;0) (0.50;0.48) (1;1)}
5845 @item blue
5846 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5847 @end table
5848
5849 @item
5850 The previous example can also be achieved with the associated built-in preset:
5851 @example
5852 curves=preset=vintage
5853 @end example
5854
5855 @item
5856 Or simply:
5857 @example
5858 curves=vintage
5859 @end example
5860
5861 @item
5862 Use a Photoshop preset and redefine the points of the green component:
5863 @example
5864 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
5865 @end example
5866
5867 @item
5868 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
5869 and @command{gnuplot}:
5870 @example
5871 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
5872 gnuplot -p /tmp/curves.plt
5873 @end example
5874 @end itemize
5875
5876 @section datascope
5877
5878 Video data analysis filter.
5879
5880 This filter shows hexadecimal pixel values of part of video.
5881
5882 The filter accepts the following options:
5883
5884 @table @option
5885 @item size, s
5886 Set output video size.
5887
5888 @item x
5889 Set x offset from where to pick pixels.
5890
5891 @item y
5892 Set y offset from where to pick pixels.
5893
5894 @item mode
5895 Set scope mode, can be one of the following:
5896 @table @samp
5897 @item mono
5898 Draw hexadecimal pixel values with white color on black background.
5899
5900 @item color
5901 Draw hexadecimal pixel values with input video pixel color on black
5902 background.
5903
5904 @item color2
5905 Draw hexadecimal pixel values on color background picked from input video,
5906 the text color is picked in such way so its always visible.
5907 @end table
5908
5909 @item axis
5910 Draw rows and columns numbers on left and top of video.
5911 @end table
5912
5913 @section dctdnoiz
5914
5915 Denoise frames using 2D DCT (frequency domain filtering).
5916
5917 This filter is not designed for real time.
5918
5919 The filter accepts the following options:
5920
5921 @table @option
5922 @item sigma, s
5923 Set the noise sigma constant.
5924
5925 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
5926 coefficient (absolute value) below this threshold with be dropped.
5927
5928 If you need a more advanced filtering, see @option{expr}.
5929
5930 Default is @code{0}.
5931
5932 @item overlap
5933 Set number overlapping pixels for each block. Since the filter can be slow, you
5934 may want to reduce this value, at the cost of a less effective filter and the
5935 risk of various artefacts.
5936
5937 If the overlapping value doesn't permit processing the whole input width or
5938 height, a warning will be displayed and according borders won't be denoised.
5939
5940 Default value is @var{blocksize}-1, which is the best possible setting.
5941
5942 @item expr, e
5943 Set the coefficient factor expression.
5944
5945 For each coefficient of a DCT block, this expression will be evaluated as a
5946 multiplier value for the coefficient.
5947
5948 If this is option is set, the @option{sigma} option will be ignored.
5949
5950 The absolute value of the coefficient can be accessed through the @var{c}
5951 variable.
5952
5953 @item n
5954 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
5955 @var{blocksize}, which is the width and height of the processed blocks.
5956
5957 The default value is @var{3} (8x8) and can be raised to @var{4} for a
5958 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
5959 on the speed processing. Also, a larger block size does not necessarily means a
5960 better de-noising.
5961 @end table
5962
5963 @subsection Examples
5964
5965 Apply a denoise with a @option{sigma} of @code{4.5}:
5966 @example
5967 dctdnoiz=4.5
5968 @end example
5969
5970 The same operation can be achieved using the expression system:
5971 @example
5972 dctdnoiz=e='gte(c, 4.5*3)'
5973 @end example
5974
5975 Violent denoise using a block size of @code{16x16}:
5976 @example
5977 dctdnoiz=15:n=4
5978 @end example
5979
5980 @section deband
5981
5982 Remove banding artifacts from input video.
5983 It works by replacing banded pixels with average value of referenced pixels.
5984
5985 The filter accepts the following options:
5986
5987 @table @option
5988 @item 1thr
5989 @item 2thr
5990 @item 3thr
5991 @item 4thr
5992 Set banding detection threshold for each plane. Default is 0.02.
5993 Valid range is 0.00003 to 0.5.
5994 If difference between current pixel and reference pixel is less than threshold,
5995 it will be considered as banded.
5996
5997 @item range, r
5998 Banding detection range in pixels. Default is 16. If positive, random number
5999 in range 0 to set value will be used. If negative, exact absolute value
6000 will be used.
6001 The range defines square of four pixels around current pixel.
6002
6003 @item direction, d
6004 Set direction in radians from which four pixel will be compared. If positive,
6005 random direction from 0 to set direction will be picked. If negative, exact of
6006 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6007 will pick only pixels on same row and -PI/2 will pick only pixels on same
6008 column.
6009
6010 @item blur
6011 If enabled, current pixel is compared with average value of all four
6012 surrounding pixels. The default is enabled. If disabled current pixel is
6013 compared with all four surrounding pixels. The pixel is considered banded
6014 if only all four differences with surrounding pixels are less than threshold.
6015 @end table
6016
6017 @anchor{decimate}
6018 @section decimate
6019
6020 Drop duplicated frames at regular intervals.
6021
6022 The filter accepts the following options:
6023
6024 @table @option
6025 @item cycle
6026 Set the number of frames from which one will be dropped. Setting this to
6027 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6028 Default is @code{5}.
6029
6030 @item dupthresh
6031 Set the threshold for duplicate detection. If the difference metric for a frame
6032 is less than or equal to this value, then it is declared as duplicate. Default
6033 is @code{1.1}
6034
6035 @item scthresh
6036 Set scene change threshold. Default is @code{15}.
6037
6038 @item blockx
6039 @item blocky
6040 Set the size of the x and y-axis blocks used during metric calculations.
6041 Larger blocks give better noise suppression, but also give worse detection of
6042 small movements. Must be a power of two. Default is @code{32}.
6043
6044 @item ppsrc
6045 Mark main input as a pre-processed input and activate clean source input
6046 stream. This allows the input to be pre-processed with various filters to help
6047 the metrics calculation while keeping the frame selection lossless. When set to
6048 @code{1}, the first stream is for the pre-processed input, and the second
6049 stream is the clean source from where the kept frames are chosen. Default is
6050 @code{0}.
6051
6052 @item chroma
6053 Set whether or not chroma is considered in the metric calculations. Default is
6054 @code{1}.
6055 @end table
6056
6057 @section deflate
6058
6059 Apply deflate effect to the video.
6060
6061 This filter replaces the pixel by the local(3x3) average by taking into account
6062 only values lower than the pixel.
6063
6064 It accepts the following options:
6065
6066 @table @option
6067 @item threshold0
6068 @item threshold1
6069 @item threshold2
6070 @item threshold3
6071 Limit the maximum change for each plane, default is 65535.
6072 If 0, plane will remain unchanged.
6073 @end table
6074
6075 @section dejudder
6076
6077 Remove judder produced by partially interlaced telecined content.
6078
6079 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6080 source was partially telecined content then the output of @code{pullup,dejudder}
6081 will have a variable frame rate. May change the recorded frame rate of the
6082 container. Aside from that change, this filter will not affect constant frame
6083 rate video.
6084
6085 The option available in this filter is:
6086 @table @option
6087
6088 @item cycle
6089 Specify the length of the window over which the judder repeats.
6090
6091 Accepts any integer greater than 1. Useful values are:
6092 @table @samp
6093
6094 @item 4
6095 If the original was telecined from 24 to 30 fps (Film to NTSC).
6096
6097 @item 5
6098 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6099
6100 @item 20
6101 If a mixture of the two.
6102 @end table
6103
6104 The default is @samp{4}.
6105 @end table
6106
6107 @section delogo
6108
6109 Suppress a TV station logo by a simple interpolation of the surrounding
6110 pixels. Just set a rectangle covering the logo and watch it disappear
6111 (and sometimes something even uglier appear - your mileage may vary).
6112
6113 It accepts the following parameters:
6114 @table @option
6115
6116 @item x
6117 @item y
6118 Specify the top left corner coordinates of the logo. They must be
6119 specified.
6120
6121 @item w
6122 @item h
6123 Specify the width and height of the logo to clear. They must be
6124 specified.
6125
6126 @item band, t
6127 Specify the thickness of the fuzzy edge of the rectangle (added to
6128 @var{w} and @var{h}). The default value is 1. This option is
6129 deprecated, setting higher values should no longer be necessary and
6130 is not recommended.
6131
6132 @item show
6133 When set to 1, a green rectangle is drawn on the screen to simplify
6134 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6135 The default value is 0.
6136
6137 The rectangle is drawn on the outermost pixels which will be (partly)
6138 replaced with interpolated values. The values of the next pixels
6139 immediately outside this rectangle in each direction will be used to
6140 compute the interpolated pixel values inside the rectangle.
6141
6142 @end table
6143
6144 @subsection Examples
6145
6146 @itemize
6147 @item
6148 Set a rectangle covering the area with top left corner coordinates 0,0
6149 and size 100x77, and a band of size 10:
6150 @example
6151 delogo=x=0:y=0:w=100:h=77:band=10
6152 @end example
6153
6154 @end itemize
6155
6156 @section deshake
6157
6158 Attempt to fix small changes in horizontal and/or vertical shift. This
6159 filter helps remove camera shake from hand-holding a camera, bumping a
6160 tripod, moving on a vehicle, etc.
6161
6162 The filter accepts the following options:
6163
6164 @table @option
6165
6166 @item x
6167 @item y
6168 @item w
6169 @item h
6170 Specify a rectangular area where to limit the search for motion
6171 vectors.
6172 If desired the search for motion vectors can be limited to a
6173 rectangular area of the frame defined by its top left corner, width
6174 and height. These parameters have the same meaning as the drawbox
6175 filter which can be used to visualise the position of the bounding
6176 box.
6177
6178 This is useful when simultaneous movement of subjects within the frame
6179 might be confused for camera motion by the motion vector search.
6180
6181 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6182 then the full frame is used. This allows later options to be set
6183 without specifying the bounding box for the motion vector search.
6184
6185 Default - search the whole frame.
6186
6187 @item rx
6188 @item ry
6189 Specify the maximum extent of movement in x and y directions in the
6190 range 0-64 pixels. Default 16.
6191
6192 @item edge
6193 Specify how to generate pixels to fill blanks at the edge of the
6194 frame. Available values are:
6195 @table @samp
6196 @item blank, 0
6197 Fill zeroes at blank locations
6198 @item original, 1
6199 Original image at blank locations
6200 @item clamp, 2
6201 Extruded edge value at blank locations
6202 @item mirror, 3
6203 Mirrored edge at blank locations
6204 @end table
6205 Default value is @samp{mirror}.
6206
6207 @item blocksize
6208 Specify the blocksize to use for motion search. Range 4-128 pixels,
6209 default 8.
6210
6211 @item contrast
6212 Specify the contrast threshold for blocks. Only blocks with more than
6213 the specified contrast (difference between darkest and lightest
6214 pixels) will be considered. Range 1-255, default 125.
6215
6216 @item search
6217 Specify the search strategy. Available values are:
6218 @table @samp
6219 @item exhaustive, 0
6220 Set exhaustive search
6221 @item less, 1
6222 Set less exhaustive search.
6223 @end table
6224 Default value is @samp{exhaustive}.
6225
6226 @item filename
6227 If set then a detailed log of the motion search is written to the
6228 specified file.
6229
6230 @item opencl
6231 If set to 1, specify using OpenCL capabilities, only available if
6232 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6233
6234 @end table
6235
6236 @section detelecine
6237
6238 Apply an exact inverse of the telecine operation. It requires a predefined
6239 pattern specified using the pattern option which must be the same as that passed
6240 to the telecine filter.
6241
6242 This filter accepts the following options:
6243
6244 @table @option
6245 @item first_field
6246 @table @samp
6247 @item top, t
6248 top field first
6249 @item bottom, b
6250 bottom field first
6251 The default value is @code{top}.
6252 @end table
6253
6254 @item pattern
6255 A string of numbers representing the pulldown pattern you wish to apply.
6256 The default value is @code{23}.
6257
6258 @item start_frame
6259 A number representing position of the first frame with respect to the telecine
6260 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6261 @end table
6262
6263 @section dilation
6264
6265 Apply dilation effect to the video.
6266
6267 This filter replaces the pixel by the local(3x3) maximum.
6268
6269 It accepts the following options:
6270
6271 @table @option
6272 @item threshold0
6273 @item threshold1
6274 @item threshold2
6275 @item threshold3
6276 Limit the maximum change for each plane, default is 65535.
6277 If 0, plane will remain unchanged.
6278
6279 @item coordinates
6280 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6281 pixels are used.
6282
6283 Flags to local 3x3 coordinates maps like this:
6284
6285     1 2 3
6286     4   5
6287     6 7 8
6288 @end table
6289
6290 @section displace
6291
6292 Displace pixels as indicated by second and third input stream.
6293
6294 It takes three input streams and outputs one stream, the first input is the
6295 source, and second and third input are displacement maps.
6296
6297 The second input specifies how much to displace pixels along the
6298 x-axis, while the third input specifies how much to displace pixels
6299 along the y-axis.
6300 If one of displacement map streams terminates, last frame from that
6301 displacement map will be used.
6302
6303 Note that once generated, displacements maps can be reused over and over again.
6304
6305 A description of the accepted options follows.
6306
6307 @table @option
6308 @item edge
6309 Set displace behavior for pixels that are out of range.
6310
6311 Available values are:
6312 @table @samp
6313 @item blank
6314 Missing pixels are replaced by black pixels.
6315
6316 @item smear
6317 Adjacent pixels will spread out to replace missing pixels.
6318
6319 @item wrap
6320 Out of range pixels are wrapped so they point to pixels of other side.
6321 @end table
6322 Default is @samp{smear}.
6323
6324 @end table
6325
6326 @subsection Examples
6327
6328 @itemize
6329 @item
6330 Add ripple effect to rgb input of video size hd720:
6331 @example
6332 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
6333 @end example
6334
6335 @item
6336 Add wave effect to rgb input of video size hd720:
6337 @example
6338 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
6339 @end example
6340 @end itemize
6341
6342 @section drawbox
6343
6344 Draw a colored box on the input image.
6345
6346 It accepts the following parameters:
6347
6348 @table @option
6349 @item x
6350 @item y
6351 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6352
6353 @item width, w
6354 @item height, h
6355 The expressions which specify the width and height of the box; if 0 they are interpreted as
6356 the input width and height. It defaults to 0.
6357
6358 @item color, c
6359 Specify the color of the box to write. For the general syntax of this option,
6360 check the "Color" section in the ffmpeg-utils manual. If the special
6361 value @code{invert} is used, the box edge color is the same as the
6362 video with inverted luma.
6363
6364 @item thickness, t
6365 The expression which sets the thickness of the box edge. Default value is @code{3}.
6366
6367 See below for the list of accepted constants.
6368 @end table
6369
6370 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6371 following constants:
6372
6373 @table @option
6374 @item dar
6375 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6376
6377 @item hsub
6378 @item vsub
6379 horizontal and vertical chroma subsample values. For example for the
6380 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6381
6382 @item in_h, ih
6383 @item in_w, iw
6384 The input width and height.
6385
6386 @item sar
6387 The input sample aspect ratio.
6388
6389 @item x
6390 @item y
6391 The x and y offset coordinates where the box is drawn.
6392
6393 @item w
6394 @item h
6395 The width and height of the drawn box.
6396
6397 @item t
6398 The thickness of the drawn box.
6399
6400 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6401 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6402
6403 @end table
6404
6405 @subsection Examples
6406
6407 @itemize
6408 @item
6409 Draw a black box around the edge of the input image:
6410 @example
6411 drawbox
6412 @end example
6413
6414 @item
6415 Draw a box with color red and an opacity of 50%:
6416 @example
6417 drawbox=10:20:200:60:red@@0.5
6418 @end example
6419
6420 The previous example can be specified as:
6421 @example
6422 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6423 @end example
6424
6425 @item
6426 Fill the box with pink color:
6427 @example
6428 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6429 @end example
6430
6431 @item
6432 Draw a 2-pixel red 2.40:1 mask:
6433 @example
6434 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
6435 @end example
6436 @end itemize
6437
6438 @section drawgrid
6439
6440 Draw a grid on the input image.
6441
6442 It accepts the following parameters:
6443
6444 @table @option
6445 @item x
6446 @item y
6447 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6448
6449 @item width, w
6450 @item height, h
6451 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6452 input width and height, respectively, minus @code{thickness}, so image gets
6453 framed. Default to 0.
6454
6455 @item color, c
6456 Specify the color of the grid. For the general syntax of this option,
6457 check the "Color" section in the ffmpeg-utils manual. If the special
6458 value @code{invert} is used, the grid color is the same as the
6459 video with inverted luma.
6460
6461 @item thickness, t
6462 The expression which sets the thickness of the grid line. Default value is @code{1}.
6463
6464 See below for the list of accepted constants.
6465 @end table
6466
6467 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6468 following constants:
6469
6470 @table @option
6471 @item dar
6472 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6473
6474 @item hsub
6475 @item vsub
6476 horizontal and vertical chroma subsample values. For example for the
6477 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6478
6479 @item in_h, ih
6480 @item in_w, iw
6481 The input grid cell width and height.
6482
6483 @item sar
6484 The input sample aspect ratio.
6485
6486 @item x
6487 @item y
6488 The x and y coordinates of some point of grid intersection (meant to configure offset).
6489
6490 @item w
6491 @item h
6492 The width and height of the drawn cell.
6493
6494 @item t
6495 The thickness of the drawn cell.
6496
6497 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6498 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6499
6500 @end table
6501
6502 @subsection Examples
6503
6504 @itemize
6505 @item
6506 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6507 @example
6508 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6509 @end example
6510
6511 @item
6512 Draw a white 3x3 grid with an opacity of 50%:
6513 @example
6514 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6515 @end example
6516 @end itemize
6517
6518 @anchor{drawtext}
6519 @section drawtext
6520
6521 Draw a text string or text from a specified file on top of a video, using the
6522 libfreetype library.
6523
6524 To enable compilation of this filter, you need to configure FFmpeg with
6525 @code{--enable-libfreetype}.
6526 To enable default font fallback and the @var{font} option you need to
6527 configure FFmpeg with @code{--enable-libfontconfig}.
6528 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6529 @code{--enable-libfribidi}.
6530
6531 @subsection Syntax
6532
6533 It accepts the following parameters:
6534
6535 @table @option
6536
6537 @item box
6538 Used to draw a box around text using the background color.
6539 The value must be either 1 (enable) or 0 (disable).
6540 The default value of @var{box} is 0.
6541
6542 @item boxborderw
6543 Set the width of the border to be drawn around the box using @var{boxcolor}.
6544 The default value of @var{boxborderw} is 0.
6545
6546 @item boxcolor
6547 The color to be used for drawing box around text. For the syntax of this
6548 option, check the "Color" section in the ffmpeg-utils manual.
6549
6550 The default value of @var{boxcolor} is "white".
6551
6552 @item borderw
6553 Set the width of the border to be drawn around the text using @var{bordercolor}.
6554 The default value of @var{borderw} is 0.
6555
6556 @item bordercolor
6557 Set the color to be used for drawing border around text. For the syntax of this
6558 option, check the "Color" section in the ffmpeg-utils manual.
6559
6560 The default value of @var{bordercolor} is "black".
6561
6562 @item expansion
6563 Select how the @var{text} is expanded. Can be either @code{none},
6564 @code{strftime} (deprecated) or
6565 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6566 below for details.
6567
6568 @item fix_bounds
6569 If true, check and fix text coords to avoid clipping.
6570
6571 @item fontcolor
6572 The color to be used for drawing fonts. For the syntax of this option, check
6573 the "Color" section in the ffmpeg-utils manual.
6574
6575 The default value of @var{fontcolor} is "black".
6576
6577 @item fontcolor_expr
6578 String which is expanded the same way as @var{text} to obtain dynamic
6579 @var{fontcolor} value. By default this option has empty value and is not
6580 processed. When this option is set, it overrides @var{fontcolor} option.
6581
6582 @item font
6583 The font family to be used for drawing text. By default Sans.
6584
6585 @item fontfile
6586 The font file to be used for drawing text. The path must be included.
6587 This parameter is mandatory if the fontconfig support is disabled.
6588
6589 @item draw
6590 This option does not exist, please see the timeline system
6591
6592 @item alpha
6593 Draw the text applying alpha blending. The value can
6594 be either a number between 0.0 and 1.0
6595 The expression accepts the same variables @var{x, y} do.
6596 The default value is 1.
6597 Please see fontcolor_expr
6598
6599 @item fontsize
6600 The font size to be used for drawing text.
6601 The default value of @var{fontsize} is 16.
6602
6603 @item text_shaping
6604 If set to 1, attempt to shape the text (for example, reverse the order of
6605 right-to-left text and join Arabic characters) before drawing it.
6606 Otherwise, just draw the text exactly as given.
6607 By default 1 (if supported).
6608
6609 @item ft_load_flags
6610 The flags to be used for loading the fonts.
6611
6612 The flags map the corresponding flags supported by libfreetype, and are
6613 a combination of the following values:
6614 @table @var
6615 @item default
6616 @item no_scale
6617 @item no_hinting
6618 @item render
6619 @item no_bitmap
6620 @item vertical_layout
6621 @item force_autohint
6622 @item crop_bitmap
6623 @item pedantic
6624 @item ignore_global_advance_width
6625 @item no_recurse
6626 @item ignore_transform
6627 @item monochrome
6628 @item linear_design
6629 @item no_autohint
6630 @end table
6631
6632 Default value is "default".
6633
6634 For more information consult the documentation for the FT_LOAD_*
6635 libfreetype flags.
6636
6637 @item shadowcolor
6638 The color to be used for drawing a shadow behind the drawn text. For the
6639 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6640
6641 The default value of @var{shadowcolor} is "black".
6642
6643 @item shadowx
6644 @item shadowy
6645 The x and y offsets for the text shadow position with respect to the
6646 position of the text. They can be either positive or negative
6647 values. The default value for both is "0".
6648
6649 @item start_number
6650 The starting frame number for the n/frame_num variable. The default value
6651 is "0".
6652
6653 @item tabsize
6654 The size in number of spaces to use for rendering the tab.
6655 Default value is 4.
6656
6657 @item timecode
6658 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6659 format. It can be used with or without text parameter. @var{timecode_rate}
6660 option must be specified.
6661
6662 @item timecode_rate, rate, r
6663 Set the timecode frame rate (timecode only).
6664
6665 @item text
6666 The text string to be drawn. The text must be a sequence of UTF-8
6667 encoded characters.
6668 This parameter is mandatory if no file is specified with the parameter
6669 @var{textfile}.
6670
6671 @item textfile
6672 A text file containing text to be drawn. The text must be a sequence
6673 of UTF-8 encoded characters.
6674
6675 This parameter is mandatory if no text string is specified with the
6676 parameter @var{text}.
6677
6678 If both @var{text} and @var{textfile} are specified, an error is thrown.
6679
6680 @item reload
6681 If set to 1, the @var{textfile} will be reloaded before each frame.
6682 Be sure to update it atomically, or it may be read partially, or even fail.
6683
6684 @item x
6685 @item y
6686 The expressions which specify the offsets where text will be drawn
6687 within the video frame. They are relative to the top/left border of the
6688 output image.
6689
6690 The default value of @var{x} and @var{y} is "0".
6691
6692 See below for the list of accepted constants and functions.
6693 @end table
6694
6695 The parameters for @var{x} and @var{y} are expressions containing the
6696 following constants and functions:
6697
6698 @table @option
6699 @item dar
6700 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6701
6702 @item hsub
6703 @item vsub
6704 horizontal and vertical chroma subsample values. For example for the
6705 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6706
6707 @item line_h, lh
6708 the height of each text line
6709
6710 @item main_h, h, H
6711 the input height
6712
6713 @item main_w, w, W
6714 the input width
6715
6716 @item max_glyph_a, ascent
6717 the maximum distance from the baseline to the highest/upper grid
6718 coordinate used to place a glyph outline point, for all the rendered
6719 glyphs.
6720 It is a positive value, due to the grid's orientation with the Y axis
6721 upwards.
6722
6723 @item max_glyph_d, descent
6724 the maximum distance from the baseline to the lowest grid coordinate
6725 used to place a glyph outline point, for all the rendered glyphs.
6726 This is a negative value, due to the grid's orientation, with the Y axis
6727 upwards.
6728
6729 @item max_glyph_h
6730 maximum glyph height, that is the maximum height for all the glyphs
6731 contained in the rendered text, it is equivalent to @var{ascent} -
6732 @var{descent}.
6733
6734 @item max_glyph_w
6735 maximum glyph width, that is the maximum width for all the glyphs
6736 contained in the rendered text
6737
6738 @item n
6739 the number of input frame, starting from 0
6740
6741 @item rand(min, max)
6742 return a random number included between @var{min} and @var{max}
6743
6744 @item sar
6745 The input sample aspect ratio.
6746
6747 @item t
6748 timestamp expressed in seconds, NAN if the input timestamp is unknown
6749
6750 @item text_h, th
6751 the height of the rendered text
6752
6753 @item text_w, tw
6754 the width of the rendered text
6755
6756 @item x
6757 @item y
6758 the x and y offset coordinates where the text is drawn.
6759
6760 These parameters allow the @var{x} and @var{y} expressions to refer
6761 each other, so you can for example specify @code{y=x/dar}.
6762 @end table
6763
6764 @anchor{drawtext_expansion}
6765 @subsection Text expansion
6766
6767 If @option{expansion} is set to @code{strftime},
6768 the filter recognizes strftime() sequences in the provided text and
6769 expands them accordingly. Check the documentation of strftime(). This
6770 feature is deprecated.
6771
6772 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6773
6774 If @option{expansion} is set to @code{normal} (which is the default),
6775 the following expansion mechanism is used.
6776
6777 The backslash character @samp{\}, followed by any character, always expands to
6778 the second character.
6779
6780 Sequence of the form @code{%@{...@}} are expanded. The text between the
6781 braces is a function name, possibly followed by arguments separated by ':'.
6782 If the arguments contain special characters or delimiters (':' or '@}'),
6783 they should be escaped.
6784
6785 Note that they probably must also be escaped as the value for the
6786 @option{text} option in the filter argument string and as the filter
6787 argument in the filtergraph description, and possibly also for the shell,
6788 that makes up to four levels of escaping; using a text file avoids these
6789 problems.
6790
6791 The following functions are available:
6792
6793 @table @command
6794
6795 @item expr, e
6796 The expression evaluation result.
6797
6798 It must take one argument specifying the expression to be evaluated,
6799 which accepts the same constants and functions as the @var{x} and
6800 @var{y} values. Note that not all constants should be used, for
6801 example the text size is not known when evaluating the expression, so
6802 the constants @var{text_w} and @var{text_h} will have an undefined
6803 value.
6804
6805 @item expr_int_format, eif
6806 Evaluate the expression's value and output as formatted integer.
6807
6808 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6809 The second argument specifies the output format. Allowed values are @samp{x},
6810 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6811 @code{printf} function.
6812 The third parameter is optional and sets the number of positions taken by the output.
6813 It can be used to add padding with zeros from the left.
6814
6815 @item gmtime
6816 The time at which the filter is running, expressed in UTC.
6817 It can accept an argument: a strftime() format string.
6818
6819 @item localtime
6820 The time at which the filter is running, expressed in the local time zone.
6821 It can accept an argument: a strftime() format string.
6822
6823 @item metadata
6824 Frame metadata. Takes one or two arguments.
6825
6826 The first argument is mandatory and specifies the metadata key.
6827
6828 The second argument is optional and specifies a default value, used when the
6829 metadata key is not found or empty.
6830
6831 @item n, frame_num
6832 The frame number, starting from 0.
6833
6834 @item pict_type
6835 A 1 character description of the current picture type.
6836
6837 @item pts
6838 The timestamp of the current frame.
6839 It can take up to three arguments.
6840
6841 The first argument is the format of the timestamp; it defaults to @code{flt}
6842 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6843 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6844 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6845 @code{localtime} stands for the timestamp of the frame formatted as
6846 local time zone time.
6847
6848 The second argument is an offset added to the timestamp.
6849
6850 If the format is set to @code{localtime} or @code{gmtime},
6851 a third argument may be supplied: a strftime() format string.
6852 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6853 @end table
6854
6855 @subsection Examples
6856
6857 @itemize
6858 @item
6859 Draw "Test Text" with font FreeSerif, using the default values for the
6860 optional parameters.
6861
6862 @example
6863 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6864 @end example
6865
6866 @item
6867 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
6868 and y=50 (counting from the top-left corner of the screen), text is
6869 yellow with a red box around it. Both the text and the box have an
6870 opacity of 20%.
6871
6872 @example
6873 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
6874           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
6875 @end example
6876
6877 Note that the double quotes are not necessary if spaces are not used
6878 within the parameter list.
6879
6880 @item
6881 Show the text at the center of the video frame:
6882 @example
6883 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
6884 @end example
6885
6886 @item
6887 Show the text at a random position, switching to a new position every 30 seconds:
6888 @example
6889 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)"
6890 @end example
6891
6892 @item
6893 Show a text line sliding from right to left in the last row of the video
6894 frame. The file @file{LONG_LINE} is assumed to contain a single line
6895 with no newlines.
6896 @example
6897 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
6898 @end example
6899
6900 @item
6901 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
6902 @example
6903 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
6904 @end example
6905
6906 @item
6907 Draw a single green letter "g", at the center of the input video.
6908 The glyph baseline is placed at half screen height.
6909 @example
6910 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
6911 @end example
6912
6913 @item
6914 Show text for 1 second every 3 seconds:
6915 @example
6916 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
6917 @end example
6918
6919 @item
6920 Use fontconfig to set the font. Note that the colons need to be escaped.
6921 @example
6922 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
6923 @end example
6924
6925 @item
6926 Print the date of a real-time encoding (see strftime(3)):
6927 @example
6928 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
6929 @end example
6930
6931 @item
6932 Show text fading in and out (appearing/disappearing):
6933 @example
6934 #!/bin/sh
6935 DS=1.0 # display start
6936 DE=10.0 # display end
6937 FID=1.5 # fade in duration
6938 FOD=5 # fade out duration
6939 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 @}"
6940 @end example
6941
6942 @end itemize
6943
6944 For more information about libfreetype, check:
6945 @url{http://www.freetype.org/}.
6946
6947 For more information about fontconfig, check:
6948 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
6949
6950 For more information about libfribidi, check:
6951 @url{http://fribidi.org/}.
6952
6953 @section edgedetect
6954
6955 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
6956
6957 The filter accepts the following options:
6958
6959 @table @option
6960 @item low
6961 @item high
6962 Set low and high threshold values used by the Canny thresholding
6963 algorithm.
6964
6965 The high threshold selects the "strong" edge pixels, which are then
6966 connected through 8-connectivity with the "weak" edge pixels selected
6967 by the low threshold.
6968
6969 @var{low} and @var{high} threshold values must be chosen in the range
6970 [0,1], and @var{low} should be lesser or equal to @var{high}.
6971
6972 Default value for @var{low} is @code{20/255}, and default value for @var{high}
6973 is @code{50/255}.
6974
6975 @item mode
6976 Define the drawing mode.
6977
6978 @table @samp
6979 @item wires
6980 Draw white/gray wires on black background.
6981
6982 @item colormix
6983 Mix the colors to create a paint/cartoon effect.
6984 @end table
6985
6986 Default value is @var{wires}.
6987 @end table
6988
6989 @subsection Examples
6990
6991 @itemize
6992 @item
6993 Standard edge detection with custom values for the hysteresis thresholding:
6994 @example
6995 edgedetect=low=0.1:high=0.4
6996 @end example
6997
6998 @item
6999 Painting effect without thresholding:
7000 @example
7001 edgedetect=mode=colormix:high=0
7002 @end example
7003 @end itemize
7004
7005 @section eq
7006 Set brightness, contrast, saturation and approximate gamma adjustment.
7007
7008 The filter accepts the following options:
7009
7010 @table @option
7011 @item contrast
7012 Set the contrast expression. The value must be a float value in range
7013 @code{-2.0} to @code{2.0}. The default value is "1".
7014
7015 @item brightness
7016 Set the brightness expression. The value must be a float value in
7017 range @code{-1.0} to @code{1.0}. The default value is "0".
7018
7019 @item saturation
7020 Set the saturation expression. The value must be a float in
7021 range @code{0.0} to @code{3.0}. The default value is "1".
7022
7023 @item gamma
7024 Set the gamma expression. The value must be a float in range
7025 @code{0.1} to @code{10.0}.  The default value is "1".
7026
7027 @item gamma_r
7028 Set the gamma expression for red. The value must be a float in
7029 range @code{0.1} to @code{10.0}. The default value is "1".
7030
7031 @item gamma_g
7032 Set the gamma expression for green. The value must be a float in range
7033 @code{0.1} to @code{10.0}. The default value is "1".
7034
7035 @item gamma_b
7036 Set the gamma expression for blue. The value must be a float in range
7037 @code{0.1} to @code{10.0}. The default value is "1".
7038
7039 @item gamma_weight
7040 Set the gamma weight expression. It can be used to reduce the effect
7041 of a high gamma value on bright image areas, e.g. keep them from
7042 getting overamplified and just plain white. The value must be a float
7043 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7044 gamma correction all the way down while @code{1.0} leaves it at its
7045 full strength. Default is "1".
7046
7047 @item eval
7048 Set when the expressions for brightness, contrast, saturation and
7049 gamma expressions are evaluated.
7050
7051 It accepts the following values:
7052 @table @samp
7053 @item init
7054 only evaluate expressions once during the filter initialization or
7055 when a command is processed
7056
7057 @item frame
7058 evaluate expressions for each incoming frame
7059 @end table
7060
7061 Default value is @samp{init}.
7062 @end table
7063
7064 The expressions accept the following parameters:
7065 @table @option
7066 @item n
7067 frame count of the input frame starting from 0
7068
7069 @item pos
7070 byte position of the corresponding packet in the input file, NAN if
7071 unspecified
7072
7073 @item r
7074 frame rate of the input video, NAN if the input frame rate is unknown
7075
7076 @item t
7077 timestamp expressed in seconds, NAN if the input timestamp is unknown
7078 @end table
7079
7080 @subsection Commands
7081 The filter supports the following commands:
7082
7083 @table @option
7084 @item contrast
7085 Set the contrast expression.
7086
7087 @item brightness
7088 Set the brightness expression.
7089
7090 @item saturation
7091 Set the saturation expression.
7092
7093 @item gamma
7094 Set the gamma expression.
7095
7096 @item gamma_r
7097 Set the gamma_r expression.
7098
7099 @item gamma_g
7100 Set gamma_g expression.
7101
7102 @item gamma_b
7103 Set gamma_b expression.
7104
7105 @item gamma_weight
7106 Set gamma_weight expression.
7107
7108 The command accepts the same syntax of the corresponding option.
7109
7110 If the specified expression is not valid, it is kept at its current
7111 value.
7112
7113 @end table
7114
7115 @section erosion
7116
7117 Apply erosion effect to the video.
7118
7119 This filter replaces the pixel by the local(3x3) minimum.
7120
7121 It accepts the following options:
7122
7123 @table @option
7124 @item threshold0
7125 @item threshold1
7126 @item threshold2
7127 @item threshold3
7128 Limit the maximum change for each plane, default is 65535.
7129 If 0, plane will remain unchanged.
7130
7131 @item coordinates
7132 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7133 pixels are used.
7134
7135 Flags to local 3x3 coordinates maps like this:
7136
7137     1 2 3
7138     4   5
7139     6 7 8
7140 @end table
7141
7142 @section extractplanes
7143
7144 Extract color channel components from input video stream into
7145 separate grayscale video streams.
7146
7147 The filter accepts the following option:
7148
7149 @table @option
7150 @item planes
7151 Set plane(s) to extract.
7152
7153 Available values for planes are:
7154 @table @samp
7155 @item y
7156 @item u
7157 @item v
7158 @item a
7159 @item r
7160 @item g
7161 @item b
7162 @end table
7163
7164 Choosing planes not available in the input will result in an error.
7165 That means you cannot select @code{r}, @code{g}, @code{b} planes
7166 with @code{y}, @code{u}, @code{v} planes at same time.
7167 @end table
7168
7169 @subsection Examples
7170
7171 @itemize
7172 @item
7173 Extract luma, u and v color channel component from input video frame
7174 into 3 grayscale outputs:
7175 @example
7176 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
7177 @end example
7178 @end itemize
7179
7180 @section elbg
7181
7182 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7183
7184 For each input image, the filter will compute the optimal mapping from
7185 the input to the output given the codebook length, that is the number
7186 of distinct output colors.
7187
7188 This filter accepts the following options.
7189
7190 @table @option
7191 @item codebook_length, l
7192 Set codebook length. The value must be a positive integer, and
7193 represents the number of distinct output colors. Default value is 256.
7194
7195 @item nb_steps, n
7196 Set the maximum number of iterations to apply for computing the optimal
7197 mapping. The higher the value the better the result and the higher the
7198 computation time. Default value is 1.
7199
7200 @item seed, s
7201 Set a random seed, must be an integer included between 0 and
7202 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7203 will try to use a good random seed on a best effort basis.
7204
7205 @item pal8
7206 Set pal8 output pixel format. This option does not work with codebook
7207 length greater than 256.
7208 @end table
7209
7210 @section fade
7211
7212 Apply a fade-in/out effect to the input video.
7213
7214 It accepts the following parameters:
7215
7216 @table @option
7217 @item type, t
7218 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7219 effect.
7220 Default is @code{in}.
7221
7222 @item start_frame, s
7223 Specify the number of the frame to start applying the fade
7224 effect at. Default is 0.
7225
7226 @item nb_frames, n
7227 The number of frames that the fade effect lasts. At the end of the
7228 fade-in effect, the output video will have the same intensity as the input video.
7229 At the end of the fade-out transition, the output video will be filled with the
7230 selected @option{color}.
7231 Default is 25.
7232
7233 @item alpha
7234 If set to 1, fade only alpha channel, if one exists on the input.
7235 Default value is 0.
7236
7237 @item start_time, st
7238 Specify the timestamp (in seconds) of the frame to start to apply the fade
7239 effect. If both start_frame and start_time are specified, the fade will start at
7240 whichever comes last.  Default is 0.
7241
7242 @item duration, d
7243 The number of seconds for which the fade effect has to last. At the end of the
7244 fade-in effect the output video will have the same intensity as the input video,
7245 at the end of the fade-out transition the output video will be filled with the
7246 selected @option{color}.
7247 If both duration and nb_frames are specified, duration is used. Default is 0
7248 (nb_frames is used by default).
7249
7250 @item color, c
7251 Specify the color of the fade. Default is "black".
7252 @end table
7253
7254 @subsection Examples
7255
7256 @itemize
7257 @item
7258 Fade in the first 30 frames of video:
7259 @example
7260 fade=in:0:30
7261 @end example
7262
7263 The command above is equivalent to:
7264 @example
7265 fade=t=in:s=0:n=30
7266 @end example
7267
7268 @item
7269 Fade out the last 45 frames of a 200-frame video:
7270 @example
7271 fade=out:155:45
7272 fade=type=out:start_frame=155:nb_frames=45
7273 @end example
7274
7275 @item
7276 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7277 @example
7278 fade=in:0:25, fade=out:975:25
7279 @end example
7280
7281 @item
7282 Make the first 5 frames yellow, then fade in from frame 5-24:
7283 @example
7284 fade=in:5:20:color=yellow
7285 @end example
7286
7287 @item
7288 Fade in alpha over first 25 frames of video:
7289 @example
7290 fade=in:0:25:alpha=1
7291 @end example
7292
7293 @item
7294 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7295 @example
7296 fade=t=in:st=5.5:d=0.5
7297 @end example
7298
7299 @end itemize
7300
7301 @section fftfilt
7302 Apply arbitrary expressions to samples in frequency domain
7303
7304 @table @option
7305 @item dc_Y
7306 Adjust the dc value (gain) of the luma plane of the image. The filter
7307 accepts an integer value in range @code{0} to @code{1000}. The default
7308 value is set to @code{0}.
7309
7310 @item dc_U
7311 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7312 filter accepts an integer value in range @code{0} to @code{1000}. The
7313 default value is set to @code{0}.
7314
7315 @item dc_V
7316 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7317 filter accepts an integer value in range @code{0} to @code{1000}. The
7318 default value is set to @code{0}.
7319
7320 @item weight_Y
7321 Set the frequency domain weight expression for the luma plane.
7322
7323 @item weight_U
7324 Set the frequency domain weight expression for the 1st chroma plane.
7325
7326 @item weight_V
7327 Set the frequency domain weight expression for the 2nd chroma plane.
7328
7329 The filter accepts the following variables:
7330 @item X
7331 @item Y
7332 The coordinates of the current sample.
7333
7334 @item W
7335 @item H
7336 The width and height of the image.
7337 @end table
7338
7339 @subsection Examples
7340
7341 @itemize
7342 @item
7343 High-pass:
7344 @example
7345 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7346 @end example
7347
7348 @item
7349 Low-pass:
7350 @example
7351 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7352 @end example
7353
7354 @item
7355 Sharpen:
7356 @example
7357 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7358 @end example
7359
7360 @item
7361 Blur:
7362 @example
7363 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7364 @end example
7365
7366 @end itemize
7367
7368 @section field
7369
7370 Extract a single field from an interlaced image using stride
7371 arithmetic to avoid wasting CPU time. The output frames are marked as
7372 non-interlaced.
7373
7374 The filter accepts the following options:
7375
7376 @table @option
7377 @item type
7378 Specify whether to extract the top (if the value is @code{0} or
7379 @code{top}) or the bottom field (if the value is @code{1} or
7380 @code{bottom}).
7381 @end table
7382
7383 @section fieldhint
7384
7385 Create new frames by copying the top and bottom fields from surrounding frames
7386 supplied as numbers by the hint file.
7387
7388 @table @option
7389 @item hint
7390 Set file containing hints: absolute/relative frame numbers.
7391
7392 There must be one line for each frame in a clip. Each line must contain two
7393 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7394 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7395 is current frame number for @code{absolute} mode or out of [-1, 1] range
7396 for @code{relative} mode. First number tells from which frame to pick up top
7397 field and second number tells from which frame to pick up bottom field.
7398
7399 If optionally followed by @code{+} output frame will be marked as interlaced,
7400 else if followed by @code{-} output frame will be marked as progressive, else
7401 it will be marked same as input frame.
7402 If line starts with @code{#} or @code{;} that line is skipped.
7403
7404 @item mode
7405 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7406 @end table
7407
7408 Example of first several lines of @code{hint} file for @code{relative} mode:
7409 @example
7410 0,0 - # first frame
7411 1,0 - # second frame, use third's frame top field and second's frame bottom field
7412 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7413 1,0 -
7414 0,0 -
7415 0,0 -
7416 1,0 -
7417 1,0 -
7418 1,0 -
7419 0,0 -
7420 0,0 -
7421 1,0 -
7422 1,0 -
7423 1,0 -
7424 0,0 -
7425 @end example
7426
7427 @section fieldmatch
7428
7429 Field matching filter for inverse telecine. It is meant to reconstruct the
7430 progressive frames from a telecined stream. The filter does not drop duplicated
7431 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7432 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7433
7434 The separation of the field matching and the decimation is notably motivated by
7435 the possibility of inserting a de-interlacing filter fallback between the two.
7436 If the source has mixed telecined and real interlaced content,
7437 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7438 But these remaining combed frames will be marked as interlaced, and thus can be
7439 de-interlaced by a later filter such as @ref{yadif} before decimation.
7440
7441 In addition to the various configuration options, @code{fieldmatch} can take an
7442 optional second stream, activated through the @option{ppsrc} option. If
7443 enabled, the frames reconstruction will be based on the fields and frames from
7444 this second stream. This allows the first input to be pre-processed in order to
7445 help the various algorithms of the filter, while keeping the output lossless
7446 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7447 or brightness/contrast adjustments can help.
7448
7449 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7450 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7451 which @code{fieldmatch} is based on. While the semantic and usage are very
7452 close, some behaviour and options names can differ.
7453
7454 The @ref{decimate} filter currently only works for constant frame rate input.
7455 If your input has mixed telecined (30fps) and progressive content with a lower
7456 framerate like 24fps use the following filterchain to produce the necessary cfr
7457 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7458
7459 The filter accepts the following options:
7460
7461 @table @option
7462 @item order
7463 Specify the assumed field order of the input stream. Available values are:
7464
7465 @table @samp
7466 @item auto
7467 Auto detect parity (use FFmpeg's internal parity value).
7468 @item bff
7469 Assume bottom field first.
7470 @item tff
7471 Assume top field first.
7472 @end table
7473
7474 Note that it is sometimes recommended not to trust the parity announced by the
7475 stream.
7476
7477 Default value is @var{auto}.
7478
7479 @item mode
7480 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7481 sense that it won't risk creating jerkiness due to duplicate frames when
7482 possible, but if there are bad edits or blended fields it will end up
7483 outputting combed frames when a good match might actually exist. On the other
7484 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7485 but will almost always find a good frame if there is one. The other values are
7486 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7487 jerkiness and creating duplicate frames versus finding good matches in sections
7488 with bad edits, orphaned fields, blended fields, etc.
7489
7490 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7491
7492 Available values are:
7493
7494 @table @samp
7495 @item pc
7496 2-way matching (p/c)
7497 @item pc_n
7498 2-way matching, and trying 3rd match if still combed (p/c + n)
7499 @item pc_u
7500 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7501 @item pc_n_ub
7502 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7503 still combed (p/c + n + u/b)
7504 @item pcn
7505 3-way matching (p/c/n)
7506 @item pcn_ub
7507 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7508 detected as combed (p/c/n + u/b)
7509 @end table
7510
7511 The parenthesis at the end indicate the matches that would be used for that
7512 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7513 @var{top}).
7514
7515 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7516 the slowest.
7517
7518 Default value is @var{pc_n}.
7519
7520 @item ppsrc
7521 Mark the main input stream as a pre-processed input, and enable the secondary
7522 input stream as the clean source to pick the fields from. See the filter
7523 introduction for more details. It is similar to the @option{clip2} feature from
7524 VFM/TFM.
7525
7526 Default value is @code{0} (disabled).
7527
7528 @item field
7529 Set the field to match from. It is recommended to set this to the same value as
7530 @option{order} unless you experience matching failures with that setting. In
7531 certain circumstances changing the field that is used to match from can have a
7532 large impact on matching performance. Available values are:
7533
7534 @table @samp
7535 @item auto
7536 Automatic (same value as @option{order}).
7537 @item bottom
7538 Match from the bottom field.
7539 @item top
7540 Match from the top field.
7541 @end table
7542
7543 Default value is @var{auto}.
7544
7545 @item mchroma
7546 Set whether or not chroma is included during the match comparisons. In most
7547 cases it is recommended to leave this enabled. You should set this to @code{0}
7548 only if your clip has bad chroma problems such as heavy rainbowing or other
7549 artifacts. Setting this to @code{0} could also be used to speed things up at
7550 the cost of some accuracy.
7551
7552 Default value is @code{1}.
7553
7554 @item y0
7555 @item y1
7556 These define an exclusion band which excludes the lines between @option{y0} and
7557 @option{y1} from being included in the field matching decision. An exclusion
7558 band can be used to ignore subtitles, a logo, or other things that may
7559 interfere with the matching. @option{y0} sets the starting scan line and
7560 @option{y1} sets the ending line; all lines in between @option{y0} and
7561 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7562 @option{y0} and @option{y1} to the same value will disable the feature.
7563 @option{y0} and @option{y1} defaults to @code{0}.
7564
7565 @item scthresh
7566 Set the scene change detection threshold as a percentage of maximum change on
7567 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7568 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7569 @option{scthresh} is @code{[0.0, 100.0]}.
7570
7571 Default value is @code{12.0}.
7572
7573 @item combmatch
7574 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7575 account the combed scores of matches when deciding what match to use as the
7576 final match. Available values are:
7577
7578 @table @samp
7579 @item none
7580 No final matching based on combed scores.
7581 @item sc
7582 Combed scores are only used when a scene change is detected.
7583 @item full
7584 Use combed scores all the time.
7585 @end table
7586
7587 Default is @var{sc}.
7588
7589 @item combdbg
7590 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7591 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7592 Available values are:
7593
7594 @table @samp
7595 @item none
7596 No forced calculation.
7597 @item pcn
7598 Force p/c/n calculations.
7599 @item pcnub
7600 Force p/c/n/u/b calculations.
7601 @end table
7602
7603 Default value is @var{none}.
7604
7605 @item cthresh
7606 This is the area combing threshold used for combed frame detection. This
7607 essentially controls how "strong" or "visible" combing must be to be detected.
7608 Larger values mean combing must be more visible and smaller values mean combing
7609 can be less visible or strong and still be detected. Valid settings are from
7610 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7611 be detected as combed). This is basically a pixel difference value. A good
7612 range is @code{[8, 12]}.
7613
7614 Default value is @code{9}.
7615
7616 @item chroma
7617 Sets whether or not chroma is considered in the combed frame decision.  Only
7618 disable this if your source has chroma problems (rainbowing, etc.) that are
7619 causing problems for the combed frame detection with chroma enabled. Actually,
7620 using @option{chroma}=@var{0} is usually more reliable, except for the case
7621 where there is chroma only combing in the source.
7622
7623 Default value is @code{0}.
7624
7625 @item blockx
7626 @item blocky
7627 Respectively set the x-axis and y-axis size of the window used during combed
7628 frame detection. This has to do with the size of the area in which
7629 @option{combpel} pixels are required to be detected as combed for a frame to be
7630 declared combed. See the @option{combpel} parameter description for more info.
7631 Possible values are any number that is a power of 2 starting at 4 and going up
7632 to 512.
7633
7634 Default value is @code{16}.
7635
7636 @item combpel
7637 The number of combed pixels inside any of the @option{blocky} by
7638 @option{blockx} size blocks on the frame for the frame to be detected as
7639 combed. While @option{cthresh} controls how "visible" the combing must be, this
7640 setting controls "how much" combing there must be in any localized area (a
7641 window defined by the @option{blockx} and @option{blocky} settings) on the
7642 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7643 which point no frames will ever be detected as combed). This setting is known
7644 as @option{MI} in TFM/VFM vocabulary.
7645
7646 Default value is @code{80}.
7647 @end table
7648
7649 @anchor{p/c/n/u/b meaning}
7650 @subsection p/c/n/u/b meaning
7651
7652 @subsubsection p/c/n
7653
7654 We assume the following telecined stream:
7655
7656 @example
7657 Top fields:     1 2 2 3 4
7658 Bottom fields:  1 2 3 4 4
7659 @end example
7660
7661 The numbers correspond to the progressive frame the fields relate to. Here, the
7662 first two frames are progressive, the 3rd and 4th are combed, and so on.
7663
7664 When @code{fieldmatch} is configured to run a matching from bottom
7665 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7666
7667 @example
7668 Input stream:
7669                 T     1 2 2 3 4
7670                 B     1 2 3 4 4   <-- matching reference
7671
7672 Matches:              c c n n c
7673
7674 Output stream:
7675                 T     1 2 3 4 4
7676                 B     1 2 3 4 4
7677 @end example
7678
7679 As a result of the field matching, we can see that some frames get duplicated.
7680 To perform a complete inverse telecine, you need to rely on a decimation filter
7681 after this operation. See for instance the @ref{decimate} filter.
7682
7683 The same operation now matching from top fields (@option{field}=@var{top})
7684 looks like this:
7685
7686 @example
7687 Input stream:
7688                 T     1 2 2 3 4   <-- matching reference
7689                 B     1 2 3 4 4
7690
7691 Matches:              c c p p c
7692
7693 Output stream:
7694                 T     1 2 2 3 4
7695                 B     1 2 2 3 4
7696 @end example
7697
7698 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7699 basically, they refer to the frame and field of the opposite parity:
7700
7701 @itemize
7702 @item @var{p} matches the field of the opposite parity in the previous frame
7703 @item @var{c} matches the field of the opposite parity in the current frame
7704 @item @var{n} matches the field of the opposite parity in the next frame
7705 @end itemize
7706
7707 @subsubsection u/b
7708
7709 The @var{u} and @var{b} matching are a bit special in the sense that they match
7710 from the opposite parity flag. In the following examples, we assume that we are
7711 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7712 'x' is placed above and below each matched fields.
7713
7714 With bottom matching (@option{field}=@var{bottom}):
7715 @example
7716 Match:           c         p           n          b          u
7717
7718                  x       x               x        x          x
7719   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7720   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7721                  x         x           x        x              x
7722
7723 Output frames:
7724                  2          1          2          2          2
7725                  2          2          2          1          3
7726 @end example
7727
7728 With top matching (@option{field}=@var{top}):
7729 @example
7730 Match:           c         p           n          b          u
7731
7732                  x         x           x        x              x
7733   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7734   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7735                  x       x               x        x          x
7736
7737 Output frames:
7738                  2          2          2          1          2
7739                  2          1          3          2          2
7740 @end example
7741
7742 @subsection Examples
7743
7744 Simple IVTC of a top field first telecined stream:
7745 @example
7746 fieldmatch=order=tff:combmatch=none, decimate
7747 @end example
7748
7749 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7750 @example
7751 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7752 @end example
7753
7754 @section fieldorder
7755
7756 Transform the field order of the input video.
7757
7758 It accepts the following parameters:
7759
7760 @table @option
7761
7762 @item order
7763 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7764 for bottom field first.
7765 @end table
7766
7767 The default value is @samp{tff}.
7768
7769 The transformation is done by shifting the picture content up or down
7770 by one line, and filling the remaining line with appropriate picture content.
7771 This method is consistent with most broadcast field order converters.
7772
7773 If the input video is not flagged as being interlaced, or it is already
7774 flagged as being of the required output field order, then this filter does
7775 not alter the incoming video.
7776
7777 It is very useful when converting to or from PAL DV material,
7778 which is bottom field first.
7779
7780 For example:
7781 @example
7782 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7783 @end example
7784
7785 @section fifo, afifo
7786
7787 Buffer input images and send them when they are requested.
7788
7789 It is mainly useful when auto-inserted by the libavfilter
7790 framework.
7791
7792 It does not take parameters.
7793
7794 @section find_rect
7795
7796 Find a rectangular object
7797
7798 It accepts the following options:
7799
7800 @table @option
7801 @item object
7802 Filepath of the object image, needs to be in gray8.
7803
7804 @item threshold
7805 Detection threshold, default is 0.5.
7806
7807 @item mipmaps
7808 Number of mipmaps, default is 3.
7809
7810 @item xmin, ymin, xmax, ymax
7811 Specifies the rectangle in which to search.
7812 @end table
7813
7814 @subsection Examples
7815
7816 @itemize
7817 @item
7818 Generate a representative palette of a given video using @command{ffmpeg}:
7819 @example
7820 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7821 @end example
7822 @end itemize
7823
7824 @section cover_rect
7825
7826 Cover a rectangular object
7827
7828 It accepts the following options:
7829
7830 @table @option
7831 @item cover
7832 Filepath of the optional cover image, needs to be in yuv420.
7833
7834 @item mode
7835 Set covering mode.
7836
7837 It accepts the following values:
7838 @table @samp
7839 @item cover
7840 cover it by the supplied image
7841 @item blur
7842 cover it by interpolating the surrounding pixels
7843 @end table
7844
7845 Default value is @var{blur}.
7846 @end table
7847
7848 @subsection Examples
7849
7850 @itemize
7851 @item
7852 Generate a representative palette of a given video using @command{ffmpeg}:
7853 @example
7854 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7855 @end example
7856 @end itemize
7857
7858 @anchor{format}
7859 @section format
7860
7861 Convert the input video to one of the specified pixel formats.
7862 Libavfilter will try to pick one that is suitable as input to
7863 the next filter.
7864
7865 It accepts the following parameters:
7866 @table @option
7867
7868 @item pix_fmts
7869 A '|'-separated list of pixel format names, such as
7870 "pix_fmts=yuv420p|monow|rgb24".
7871
7872 @end table
7873
7874 @subsection Examples
7875
7876 @itemize
7877 @item
7878 Convert the input video to the @var{yuv420p} format
7879 @example
7880 format=pix_fmts=yuv420p
7881 @end example
7882
7883 Convert the input video to any of the formats in the list
7884 @example
7885 format=pix_fmts=yuv420p|yuv444p|yuv410p
7886 @end example
7887 @end itemize
7888
7889 @anchor{fps}
7890 @section fps
7891
7892 Convert the video to specified constant frame rate by duplicating or dropping
7893 frames as necessary.
7894
7895 It accepts the following parameters:
7896 @table @option
7897
7898 @item fps
7899 The desired output frame rate. The default is @code{25}.
7900
7901 @item round
7902 Rounding method.
7903
7904 Possible values are:
7905 @table @option
7906 @item zero
7907 zero round towards 0
7908 @item inf
7909 round away from 0
7910 @item down
7911 round towards -infinity
7912 @item up
7913 round towards +infinity
7914 @item near
7915 round to nearest
7916 @end table
7917 The default is @code{near}.
7918
7919 @item start_time
7920 Assume the first PTS should be the given value, in seconds. This allows for
7921 padding/trimming at the start of stream. By default, no assumption is made
7922 about the first frame's expected PTS, so no padding or trimming is done.
7923 For example, this could be set to 0 to pad the beginning with duplicates of
7924 the first frame if a video stream starts after the audio stream or to trim any
7925 frames with a negative PTS.
7926
7927 @end table
7928
7929 Alternatively, the options can be specified as a flat string:
7930 @var{fps}[:@var{round}].
7931
7932 See also the @ref{setpts} filter.
7933
7934 @subsection Examples
7935
7936 @itemize
7937 @item
7938 A typical usage in order to set the fps to 25:
7939 @example
7940 fps=fps=25
7941 @end example
7942
7943 @item
7944 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
7945 @example
7946 fps=fps=film:round=near
7947 @end example
7948 @end itemize
7949
7950 @section framepack
7951
7952 Pack two different video streams into a stereoscopic video, setting proper
7953 metadata on supported codecs. The two views should have the same size and
7954 framerate and processing will stop when the shorter video ends. Please note
7955 that you may conveniently adjust view properties with the @ref{scale} and
7956 @ref{fps} filters.
7957
7958 It accepts the following parameters:
7959 @table @option
7960
7961 @item format
7962 The desired packing format. Supported values are:
7963
7964 @table @option
7965
7966 @item sbs
7967 The views are next to each other (default).
7968
7969 @item tab
7970 The views are on top of each other.
7971
7972 @item lines
7973 The views are packed by line.
7974
7975 @item columns
7976 The views are packed by column.
7977
7978 @item frameseq
7979 The views are temporally interleaved.
7980
7981 @end table
7982
7983 @end table
7984
7985 Some examples:
7986
7987 @example
7988 # Convert left and right views into a frame-sequential video
7989 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
7990
7991 # Convert views into a side-by-side video with the same output resolution as the input
7992 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
7993 @end example
7994
7995 @section framerate
7996
7997 Change the frame rate by interpolating new video output frames from the source
7998 frames.
7999
8000 This filter is not designed to function correctly with interlaced media. If
8001 you wish to change the frame rate of interlaced media then you are required
8002 to deinterlace before this filter and re-interlace after this filter.
8003
8004 A description of the accepted options follows.
8005
8006 @table @option
8007 @item fps
8008 Specify the output frames per second. This option can also be specified
8009 as a value alone. The default is @code{50}.
8010
8011 @item interp_start
8012 Specify the start of a range where the output frame will be created as a
8013 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8014 the default is @code{15}.
8015
8016 @item interp_end
8017 Specify the end of a range where the output frame will be created as a
8018 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8019 the default is @code{240}.
8020
8021 @item scene
8022 Specify the level at which a scene change is detected as a value between
8023 0 and 100 to indicate a new scene; a low value reflects a low
8024 probability for the current frame to introduce a new scene, while a higher
8025 value means the current frame is more likely to be one.
8026 The default is @code{7}.
8027
8028 @item flags
8029 Specify flags influencing the filter process.
8030
8031 Available value for @var{flags} is:
8032
8033 @table @option
8034 @item scene_change_detect, scd
8035 Enable scene change detection using the value of the option @var{scene}.
8036 This flag is enabled by default.
8037 @end table
8038 @end table
8039
8040 @section framestep
8041
8042 Select one frame every N-th frame.
8043
8044 This filter accepts the following option:
8045 @table @option
8046 @item step
8047 Select frame after every @code{step} frames.
8048 Allowed values are positive integers higher than 0. Default value is @code{1}.
8049 @end table
8050
8051 @anchor{frei0r}
8052 @section frei0r
8053
8054 Apply a frei0r effect to the input video.
8055
8056 To enable the compilation of this filter, you need to install the frei0r
8057 header and configure FFmpeg with @code{--enable-frei0r}.
8058
8059 It accepts the following parameters:
8060
8061 @table @option
8062
8063 @item filter_name
8064 The name of the frei0r effect to load. If the environment variable
8065 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8066 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8067 Otherwise, the standard frei0r paths are searched, in this order:
8068 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8069 @file{/usr/lib/frei0r-1/}.
8070
8071 @item filter_params
8072 A '|'-separated list of parameters to pass to the frei0r effect.
8073
8074 @end table
8075
8076 A frei0r effect parameter can be a boolean (its value is either
8077 "y" or "n"), a double, a color (specified as
8078 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8079 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8080 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8081 @var{X} and @var{Y} are floating point numbers) and/or a string.
8082
8083 The number and types of parameters depend on the loaded effect. If an
8084 effect parameter is not specified, the default value is set.
8085
8086 @subsection Examples
8087
8088 @itemize
8089 @item
8090 Apply the distort0r effect, setting the first two double parameters:
8091 @example
8092 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8093 @end example
8094
8095 @item
8096 Apply the colordistance effect, taking a color as the first parameter:
8097 @example
8098 frei0r=colordistance:0.2/0.3/0.4
8099 frei0r=colordistance:violet
8100 frei0r=colordistance:0x112233
8101 @end example
8102
8103 @item
8104 Apply the perspective effect, specifying the top left and top right image
8105 positions:
8106 @example
8107 frei0r=perspective:0.2/0.2|0.8/0.2
8108 @end example
8109 @end itemize
8110
8111 For more information, see
8112 @url{http://frei0r.dyne.org}
8113
8114 @section fspp
8115
8116 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8117
8118 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8119 processing filter, one of them is performed once per block, not per pixel.
8120 This allows for much higher speed.
8121
8122 The filter accepts the following options:
8123
8124 @table @option
8125 @item quality
8126 Set quality. This option defines the number of levels for averaging. It accepts
8127 an integer in the range 4-5. Default value is @code{4}.
8128
8129 @item qp
8130 Force a constant quantization parameter. It accepts an integer in range 0-63.
8131 If not set, the filter will use the QP from the video stream (if available).
8132
8133 @item strength
8134 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8135 more details but also more artifacts, while higher values make the image smoother
8136 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8137
8138 @item use_bframe_qp
8139 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8140 option may cause flicker since the B-Frames have often larger QP. Default is
8141 @code{0} (not enabled).
8142
8143 @end table
8144
8145 @section geq
8146
8147 The filter accepts the following options:
8148
8149 @table @option
8150 @item lum_expr, lum
8151 Set the luminance expression.
8152 @item cb_expr, cb
8153 Set the chrominance blue expression.
8154 @item cr_expr, cr
8155 Set the chrominance red expression.
8156 @item alpha_expr, a
8157 Set the alpha expression.
8158 @item red_expr, r
8159 Set the red expression.
8160 @item green_expr, g
8161 Set the green expression.
8162 @item blue_expr, b
8163 Set the blue expression.
8164 @end table
8165
8166 The colorspace is selected according to the specified options. If one
8167 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8168 options is specified, the filter will automatically select a YCbCr
8169 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8170 @option{blue_expr} options is specified, it will select an RGB
8171 colorspace.
8172
8173 If one of the chrominance expression is not defined, it falls back on the other
8174 one. If no alpha expression is specified it will evaluate to opaque value.
8175 If none of chrominance expressions are specified, they will evaluate
8176 to the luminance expression.
8177
8178 The expressions can use the following variables and functions:
8179
8180 @table @option
8181 @item N
8182 The sequential number of the filtered frame, starting from @code{0}.
8183
8184 @item X
8185 @item Y
8186 The coordinates of the current sample.
8187
8188 @item W
8189 @item H
8190 The width and height of the image.
8191
8192 @item SW
8193 @item SH
8194 Width and height scale depending on the currently filtered plane. It is the
8195 ratio between the corresponding luma plane number of pixels and the current
8196 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8197 @code{0.5,0.5} for chroma planes.
8198
8199 @item T
8200 Time of the current frame, expressed in seconds.
8201
8202 @item p(x, y)
8203 Return the value of the pixel at location (@var{x},@var{y}) of the current
8204 plane.
8205
8206 @item lum(x, y)
8207 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8208 plane.
8209
8210 @item cb(x, y)
8211 Return the value of the pixel at location (@var{x},@var{y}) of the
8212 blue-difference chroma plane. Return 0 if there is no such plane.
8213
8214 @item cr(x, y)
8215 Return the value of the pixel at location (@var{x},@var{y}) of the
8216 red-difference chroma plane. Return 0 if there is no such plane.
8217
8218 @item r(x, y)
8219 @item g(x, y)
8220 @item b(x, y)
8221 Return the value of the pixel at location (@var{x},@var{y}) of the
8222 red/green/blue component. Return 0 if there is no such component.
8223
8224 @item alpha(x, y)
8225 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8226 plane. Return 0 if there is no such plane.
8227 @end table
8228
8229 For functions, if @var{x} and @var{y} are outside the area, the value will be
8230 automatically clipped to the closer edge.
8231
8232 @subsection Examples
8233
8234 @itemize
8235 @item
8236 Flip the image horizontally:
8237 @example
8238 geq=p(W-X\,Y)
8239 @end example
8240
8241 @item
8242 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8243 wavelength of 100 pixels:
8244 @example
8245 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8246 @end example
8247
8248 @item
8249 Generate a fancy enigmatic moving light:
8250 @example
8251 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
8252 @end example
8253
8254 @item
8255 Generate a quick emboss effect:
8256 @example
8257 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8258 @end example
8259
8260 @item
8261 Modify RGB components depending on pixel position:
8262 @example
8263 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8264 @end example
8265
8266 @item
8267 Create a radial gradient that is the same size as the input (also see
8268 the @ref{vignette} filter):
8269 @example
8270 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8271 @end example
8272 @end itemize
8273
8274 @section gradfun
8275
8276 Fix the banding artifacts that are sometimes introduced into nearly flat
8277 regions by truncation to 8-bit color depth.
8278 Interpolate the gradients that should go where the bands are, and
8279 dither them.
8280
8281 It is designed for playback only.  Do not use it prior to
8282 lossy compression, because compression tends to lose the dither and
8283 bring back the bands.
8284
8285 It accepts the following parameters:
8286
8287 @table @option
8288
8289 @item strength
8290 The maximum amount by which the filter will change any one pixel. This is also
8291 the threshold for detecting nearly flat regions. Acceptable values range from
8292 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8293 valid range.
8294
8295 @item radius
8296 The neighborhood to fit the gradient to. A larger radius makes for smoother
8297 gradients, but also prevents the filter from modifying the pixels near detailed
8298 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8299 values will be clipped to the valid range.
8300
8301 @end table
8302
8303 Alternatively, the options can be specified as a flat string:
8304 @var{strength}[:@var{radius}]
8305
8306 @subsection Examples
8307
8308 @itemize
8309 @item
8310 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8311 @example
8312 gradfun=3.5:8
8313 @end example
8314
8315 @item
8316 Specify radius, omitting the strength (which will fall-back to the default
8317 value):
8318 @example
8319 gradfun=radius=8
8320 @end example
8321
8322 @end itemize
8323
8324 @anchor{haldclut}
8325 @section haldclut
8326
8327 Apply a Hald CLUT to a video stream.
8328
8329 First input is the video stream to process, and second one is the Hald CLUT.
8330 The Hald CLUT input can be a simple picture or a complete video stream.
8331
8332 The filter accepts the following options:
8333
8334 @table @option
8335 @item shortest
8336 Force termination when the shortest input terminates. Default is @code{0}.
8337 @item repeatlast
8338 Continue applying the last CLUT after the end of the stream. A value of
8339 @code{0} disable the filter after the last frame of the CLUT is reached.
8340 Default is @code{1}.
8341 @end table
8342
8343 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8344 filters share the same internals).
8345
8346 More information about the Hald CLUT can be found on Eskil Steenberg's website
8347 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8348
8349 @subsection Workflow examples
8350
8351 @subsubsection Hald CLUT video stream
8352
8353 Generate an identity Hald CLUT stream altered with various effects:
8354 @example
8355 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
8356 @end example
8357
8358 Note: make sure you use a lossless codec.
8359
8360 Then use it with @code{haldclut} to apply it on some random stream:
8361 @example
8362 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8363 @end example
8364
8365 The Hald CLUT will be applied to the 10 first seconds (duration of
8366 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8367 to the remaining frames of the @code{mandelbrot} stream.
8368
8369 @subsubsection Hald CLUT with preview
8370
8371 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8372 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8373 biggest possible square starting at the top left of the picture. The remaining
8374 padding pixels (bottom or right) will be ignored. This area can be used to add
8375 a preview of the Hald CLUT.
8376
8377 Typically, the following generated Hald CLUT will be supported by the
8378 @code{haldclut} filter:
8379
8380 @example
8381 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8382    pad=iw+320 [padded_clut];
8383    smptebars=s=320x256, split [a][b];
8384    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8385    [main][b] overlay=W-320" -frames:v 1 clut.png
8386 @end example
8387
8388 It contains the original and a preview of the effect of the CLUT: SMPTE color
8389 bars are displayed on the right-top, and below the same color bars processed by
8390 the color changes.
8391
8392 Then, the effect of this Hald CLUT can be visualized with:
8393 @example
8394 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8395 @end example
8396
8397 @section hdcd
8398
8399 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
8400 embedded HDCD codes is expanded into a 20-bit PCM stream.
8401
8402 The filter supports the Peak Extend and Low-level Gain Adjustment features
8403 of HDCD, and detects the Transient Filter flag.
8404
8405 @example
8406 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
8407 @end example
8408
8409 When using the filter with wav, note the default encoding for wav is 16-bit,
8410 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
8411 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
8412 @example
8413 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
8414 ffmpeg -i HDCD16.wav -af hdcd -acodec pcm_s24le OUT24.wav
8415 @end example
8416
8417 The filter accepts the following options:
8418
8419 @table @option
8420 @item process_stereo
8421 Process the stereo channels together. If target_gain does not match between
8422 channels, consider it invalid and use the last valid target_gain.
8423
8424 @item force_pe
8425 Always extend peaks above -3dBFS even if PE isn't signaled.
8426
8427 @item analyze_mode
8428 Replace audio with a solid tone and adjust the amplitude to signal some
8429 specific aspect of the decoding process. The output file can be loaded in
8430 an audio editor alongside the original to aid analysis.
8431
8432 @code{analyze_mode=pe:force_pe=1} can be used to see all samples above the PE level.
8433
8434 Modes are:
8435 @table @samp
8436 @item 0, off
8437 Disabled
8438 @item 1, lle
8439 Gain adjustment level at each sample
8440 @item 2, pe
8441 Samples where peak extend occurs
8442 @item 3, cdt
8443 Samples where the code detect timer is active
8444 @item 4, tgm
8445 Samples where the target gain does not match between channels
8446 @end table
8447 @end table
8448
8449 @section hflip
8450
8451 Flip the input video horizontally.
8452
8453 For example, to horizontally flip the input video with @command{ffmpeg}:
8454 @example
8455 ffmpeg -i in.avi -vf "hflip" out.avi
8456 @end example
8457
8458 @section histeq
8459 This filter applies a global color histogram equalization on a
8460 per-frame basis.
8461
8462 It can be used to correct video that has a compressed range of pixel
8463 intensities.  The filter redistributes the pixel intensities to
8464 equalize their distribution across the intensity range. It may be
8465 viewed as an "automatically adjusting contrast filter". This filter is
8466 useful only for correcting degraded or poorly captured source
8467 video.
8468
8469 The filter accepts the following options:
8470
8471 @table @option
8472 @item strength
8473 Determine the amount of equalization to be applied.  As the strength
8474 is reduced, the distribution of pixel intensities more-and-more
8475 approaches that of the input frame. The value must be a float number
8476 in the range [0,1] and defaults to 0.200.
8477
8478 @item intensity
8479 Set the maximum intensity that can generated and scale the output
8480 values appropriately.  The strength should be set as desired and then
8481 the intensity can be limited if needed to avoid washing-out. The value
8482 must be a float number in the range [0,1] and defaults to 0.210.
8483
8484 @item antibanding
8485 Set the antibanding level. If enabled the filter will randomly vary
8486 the luminance of output pixels by a small amount to avoid banding of
8487 the histogram. Possible values are @code{none}, @code{weak} or
8488 @code{strong}. It defaults to @code{none}.
8489 @end table
8490
8491 @section histogram
8492
8493 Compute and draw a color distribution histogram for the input video.
8494
8495 The computed histogram is a representation of the color component
8496 distribution in an image.
8497
8498 Standard histogram displays the color components distribution in an image.
8499 Displays color graph for each color component. Shows distribution of
8500 the Y, U, V, A or R, G, B components, depending on input format, in the
8501 current frame. Below each graph a color component scale meter is shown.
8502
8503 The filter accepts the following options:
8504
8505 @table @option
8506 @item level_height
8507 Set height of level. Default value is @code{200}.
8508 Allowed range is [50, 2048].
8509
8510 @item scale_height
8511 Set height of color scale. Default value is @code{12}.
8512 Allowed range is [0, 40].
8513
8514 @item display_mode
8515 Set display mode.
8516 It accepts the following values:
8517 @table @samp
8518 @item parade
8519 Per color component graphs are placed below each other.
8520
8521 @item overlay
8522 Presents information identical to that in the @code{parade}, except
8523 that the graphs representing color components are superimposed directly
8524 over one another.
8525 @end table
8526 Default is @code{parade}.
8527
8528 @item levels_mode
8529 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8530 Default is @code{linear}.
8531
8532 @item components
8533 Set what color components to display.
8534 Default is @code{7}.
8535 @end table
8536
8537 @subsection Examples
8538
8539 @itemize
8540
8541 @item
8542 Calculate and draw histogram:
8543 @example
8544 ffplay -i input -vf histogram
8545 @end example
8546
8547 @end itemize
8548
8549 @anchor{hqdn3d}
8550 @section hqdn3d
8551
8552 This is a high precision/quality 3d denoise filter. It aims to reduce
8553 image noise, producing smooth images and making still images really
8554 still. It should enhance compressibility.
8555
8556 It accepts the following optional parameters:
8557
8558 @table @option
8559 @item luma_spatial
8560 A non-negative floating point number which specifies spatial luma strength.
8561 It defaults to 4.0.
8562
8563 @item chroma_spatial
8564 A non-negative floating point number which specifies spatial chroma strength.
8565 It defaults to 3.0*@var{luma_spatial}/4.0.
8566
8567 @item luma_tmp
8568 A floating point number which specifies luma temporal strength. It defaults to
8569 6.0*@var{luma_spatial}/4.0.
8570
8571 @item chroma_tmp
8572 A floating point number which specifies chroma temporal strength. It defaults to
8573 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8574 @end table
8575
8576 @anchor{hwupload_cuda}
8577 @section hwupload_cuda
8578
8579 Upload system memory frames to a CUDA device.
8580
8581 It accepts the following optional parameters:
8582
8583 @table @option
8584 @item device
8585 The number of the CUDA device to use
8586 @end table
8587
8588 @section hqx
8589
8590 Apply a high-quality magnification filter designed for pixel art. This filter
8591 was originally created by Maxim Stepin.
8592
8593 It accepts the following option:
8594
8595 @table @option
8596 @item n
8597 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8598 @code{hq3x} and @code{4} for @code{hq4x}.
8599 Default is @code{3}.
8600 @end table
8601
8602 @section hstack
8603 Stack input videos horizontally.
8604
8605 All streams must be of same pixel format and of same height.
8606
8607 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8608 to create same output.
8609
8610 The filter accept the following option:
8611
8612 @table @option
8613 @item inputs
8614 Set number of input streams. Default is 2.
8615
8616 @item shortest
8617 If set to 1, force the output to terminate when the shortest input
8618 terminates. Default value is 0.
8619 @end table
8620
8621 @section hue
8622
8623 Modify the hue and/or the saturation of the input.
8624
8625 It accepts the following parameters:
8626
8627 @table @option
8628 @item h
8629 Specify the hue angle as a number of degrees. It accepts an expression,
8630 and defaults to "0".
8631
8632 @item s
8633 Specify the saturation in the [-10,10] range. It accepts an expression and
8634 defaults to "1".
8635
8636 @item H
8637 Specify the hue angle as a number of radians. It accepts an
8638 expression, and defaults to "0".
8639
8640 @item b
8641 Specify the brightness in the [-10,10] range. It accepts an expression and
8642 defaults to "0".
8643 @end table
8644
8645 @option{h} and @option{H} are mutually exclusive, and can't be
8646 specified at the same time.
8647
8648 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8649 expressions containing the following constants:
8650
8651 @table @option
8652 @item n
8653 frame count of the input frame starting from 0
8654
8655 @item pts
8656 presentation timestamp of the input frame expressed in time base units
8657
8658 @item r
8659 frame rate of the input video, NAN if the input frame rate is unknown
8660
8661 @item t
8662 timestamp expressed in seconds, NAN if the input timestamp is unknown
8663
8664 @item tb
8665 time base of the input video
8666 @end table
8667
8668 @subsection Examples
8669
8670 @itemize
8671 @item
8672 Set the hue to 90 degrees and the saturation to 1.0:
8673 @example
8674 hue=h=90:s=1
8675 @end example
8676
8677 @item
8678 Same command but expressing the hue in radians:
8679 @example
8680 hue=H=PI/2:s=1
8681 @end example
8682
8683 @item
8684 Rotate hue and make the saturation swing between 0
8685 and 2 over a period of 1 second:
8686 @example
8687 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8688 @end example
8689
8690 @item
8691 Apply a 3 seconds saturation fade-in effect starting at 0:
8692 @example
8693 hue="s=min(t/3\,1)"
8694 @end example
8695
8696 The general fade-in expression can be written as:
8697 @example
8698 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8699 @end example
8700
8701 @item
8702 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8703 @example
8704 hue="s=max(0\, min(1\, (8-t)/3))"
8705 @end example
8706
8707 The general fade-out expression can be written as:
8708 @example
8709 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8710 @end example
8711
8712 @end itemize
8713
8714 @subsection Commands
8715
8716 This filter supports the following commands:
8717 @table @option
8718 @item b
8719 @item s
8720 @item h
8721 @item H
8722 Modify the hue and/or the saturation and/or brightness of the input video.
8723 The command accepts the same syntax of the corresponding option.
8724
8725 If the specified expression is not valid, it is kept at its current
8726 value.
8727 @end table
8728
8729 @section idet
8730
8731 Detect video interlacing type.
8732
8733 This filter tries to detect if the input frames as interlaced, progressive,
8734 top or bottom field first. It will also try and detect fields that are
8735 repeated between adjacent frames (a sign of telecine).
8736
8737 Single frame detection considers only immediately adjacent frames when classifying each frame.
8738 Multiple frame detection incorporates the classification history of previous frames.
8739
8740 The filter will log these metadata values:
8741
8742 @table @option
8743 @item single.current_frame
8744 Detected type of current frame using single-frame detection. One of:
8745 ``tff'' (top field first), ``bff'' (bottom field first),
8746 ``progressive'', or ``undetermined''
8747
8748 @item single.tff
8749 Cumulative number of frames detected as top field first using single-frame detection.
8750
8751 @item multiple.tff
8752 Cumulative number of frames detected as top field first using multiple-frame detection.
8753
8754 @item single.bff
8755 Cumulative number of frames detected as bottom field first using single-frame detection.
8756
8757 @item multiple.current_frame
8758 Detected type of current frame using multiple-frame detection. One of:
8759 ``tff'' (top field first), ``bff'' (bottom field first),
8760 ``progressive'', or ``undetermined''
8761
8762 @item multiple.bff
8763 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8764
8765 @item single.progressive
8766 Cumulative number of frames detected as progressive using single-frame detection.
8767
8768 @item multiple.progressive
8769 Cumulative number of frames detected as progressive using multiple-frame detection.
8770
8771 @item single.undetermined
8772 Cumulative number of frames that could not be classified using single-frame detection.
8773
8774 @item multiple.undetermined
8775 Cumulative number of frames that could not be classified using multiple-frame detection.
8776
8777 @item repeated.current_frame
8778 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8779
8780 @item repeated.neither
8781 Cumulative number of frames with no repeated field.
8782
8783 @item repeated.top
8784 Cumulative number of frames with the top field repeated from the previous frame's top field.
8785
8786 @item repeated.bottom
8787 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
8788 @end table
8789
8790 The filter accepts the following options:
8791
8792 @table @option
8793 @item intl_thres
8794 Set interlacing threshold.
8795 @item prog_thres
8796 Set progressive threshold.
8797 @item rep_thres
8798 Threshold for repeated field detection.
8799 @item half_life
8800 Number of frames after which a given frame's contribution to the
8801 statistics is halved (i.e., it contributes only 0.5 to it's
8802 classification). The default of 0 means that all frames seen are given
8803 full weight of 1.0 forever.
8804 @item analyze_interlaced_flag
8805 When this is not 0 then idet will use the specified number of frames to determine
8806 if the interlaced flag is accurate, it will not count undetermined frames.
8807 If the flag is found to be accurate it will be used without any further
8808 computations, if it is found to be inaccurate it will be cleared without any
8809 further computations. This allows inserting the idet filter as a low computational
8810 method to clean up the interlaced flag
8811 @end table
8812
8813 @section il
8814
8815 Deinterleave or interleave fields.
8816
8817 This filter allows one to process interlaced images fields without
8818 deinterlacing them. Deinterleaving splits the input frame into 2
8819 fields (so called half pictures). Odd lines are moved to the top
8820 half of the output image, even lines to the bottom half.
8821 You can process (filter) them independently and then re-interleave them.
8822
8823 The filter accepts the following options:
8824
8825 @table @option
8826 @item luma_mode, l
8827 @item chroma_mode, c
8828 @item alpha_mode, a
8829 Available values for @var{luma_mode}, @var{chroma_mode} and
8830 @var{alpha_mode} are:
8831
8832 @table @samp
8833 @item none
8834 Do nothing.
8835
8836 @item deinterleave, d
8837 Deinterleave fields, placing one above the other.
8838
8839 @item interleave, i
8840 Interleave fields. Reverse the effect of deinterleaving.
8841 @end table
8842 Default value is @code{none}.
8843
8844 @item luma_swap, ls
8845 @item chroma_swap, cs
8846 @item alpha_swap, as
8847 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8848 @end table
8849
8850 @section inflate
8851
8852 Apply inflate effect to the video.
8853
8854 This filter replaces the pixel by the local(3x3) average by taking into account
8855 only values higher than the pixel.
8856
8857 It accepts the following options:
8858
8859 @table @option
8860 @item threshold0
8861 @item threshold1
8862 @item threshold2
8863 @item threshold3
8864 Limit the maximum change for each plane, default is 65535.
8865 If 0, plane will remain unchanged.
8866 @end table
8867
8868 @section interlace
8869
8870 Simple interlacing filter from progressive contents. This interleaves upper (or
8871 lower) lines from odd frames with lower (or upper) lines from even frames,
8872 halving the frame rate and preserving image height.
8873
8874 @example
8875    Original        Original             New Frame
8876    Frame 'j'      Frame 'j+1'             (tff)
8877   ==========      ===========       ==================
8878     Line 0  -------------------->    Frame 'j' Line 0
8879     Line 1          Line 1  ---->   Frame 'j+1' Line 1
8880     Line 2 --------------------->    Frame 'j' Line 2
8881     Line 3          Line 3  ---->   Frame 'j+1' Line 3
8882      ...             ...                   ...
8883 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
8884 @end example
8885
8886 It accepts the following optional parameters:
8887
8888 @table @option
8889 @item scan
8890 This determines whether the interlaced frame is taken from the even
8891 (tff - default) or odd (bff) lines of the progressive frame.
8892
8893 @item lowpass
8894 Enable (default) or disable the vertical lowpass filter to avoid twitter
8895 interlacing and reduce moire patterns.
8896 @end table
8897
8898 @section kerndeint
8899
8900 Deinterlace input video by applying Donald Graft's adaptive kernel
8901 deinterling. Work on interlaced parts of a video to produce
8902 progressive frames.
8903
8904 The description of the accepted parameters follows.
8905
8906 @table @option
8907 @item thresh
8908 Set the threshold which affects the filter's tolerance when
8909 determining if a pixel line must be processed. It must be an integer
8910 in the range [0,255] and defaults to 10. A value of 0 will result in
8911 applying the process on every pixels.
8912
8913 @item map
8914 Paint pixels exceeding the threshold value to white if set to 1.
8915 Default is 0.
8916
8917 @item order
8918 Set the fields order. Swap fields if set to 1, leave fields alone if
8919 0. Default is 0.
8920
8921 @item sharp
8922 Enable additional sharpening if set to 1. Default is 0.
8923
8924 @item twoway
8925 Enable twoway sharpening if set to 1. Default is 0.
8926 @end table
8927
8928 @subsection Examples
8929
8930 @itemize
8931 @item
8932 Apply default values:
8933 @example
8934 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
8935 @end example
8936
8937 @item
8938 Enable additional sharpening:
8939 @example
8940 kerndeint=sharp=1
8941 @end example
8942
8943 @item
8944 Paint processed pixels in white:
8945 @example
8946 kerndeint=map=1
8947 @end example
8948 @end itemize
8949
8950 @section lenscorrection
8951
8952 Correct radial lens distortion
8953
8954 This filter can be used to correct for radial distortion as can result from the use
8955 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
8956 one can use tools available for example as part of opencv or simply trial-and-error.
8957 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
8958 and extract the k1 and k2 coefficients from the resulting matrix.
8959
8960 Note that effectively the same filter is available in the open-source tools Krita and
8961 Digikam from the KDE project.
8962
8963 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
8964 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
8965 brightness distribution, so you may want to use both filters together in certain
8966 cases, though you will have to take care of ordering, i.e. whether vignetting should
8967 be applied before or after lens correction.
8968
8969 @subsection Options
8970
8971 The filter accepts the following options:
8972
8973 @table @option
8974 @item cx
8975 Relative x-coordinate of the focal point of the image, and thereby the center of the
8976 distortion. This value has a range [0,1] and is expressed as fractions of the image
8977 width.
8978 @item cy
8979 Relative y-coordinate of the focal point of the image, and thereby the center of the
8980 distortion. This value has a range [0,1] and is expressed as fractions of the image
8981 height.
8982 @item k1
8983 Coefficient of the quadratic correction term. 0.5 means no correction.
8984 @item k2
8985 Coefficient of the double quadratic correction term. 0.5 means no correction.
8986 @end table
8987
8988 The formula that generates the correction is:
8989
8990 @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)
8991
8992 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
8993 distances from the focal point in the source and target images, respectively.
8994
8995 @section loop
8996
8997 Loop video frames.
8998
8999 The filter accepts the following options:
9000
9001 @table @option
9002 @item loop
9003 Set the number of loops.
9004
9005 @item size
9006 Set maximal size in number of frames.
9007
9008 @item start
9009 Set first frame of loop.
9010 @end table
9011
9012 @anchor{lut3d}
9013 @section lut3d
9014
9015 Apply a 3D LUT to an input video.
9016
9017 The filter accepts the following options:
9018
9019 @table @option
9020 @item file
9021 Set the 3D LUT file name.
9022
9023 Currently supported formats:
9024 @table @samp
9025 @item 3dl
9026 AfterEffects
9027 @item cube
9028 Iridas
9029 @item dat
9030 DaVinci
9031 @item m3d
9032 Pandora
9033 @end table
9034 @item interp
9035 Select interpolation mode.
9036
9037 Available values are:
9038
9039 @table @samp
9040 @item nearest
9041 Use values from the nearest defined point.
9042 @item trilinear
9043 Interpolate values using the 8 points defining a cube.
9044 @item tetrahedral
9045 Interpolate values using a tetrahedron.
9046 @end table
9047 @end table
9048
9049 @section lut, lutrgb, lutyuv
9050
9051 Compute a look-up table for binding each pixel component input value
9052 to an output value, and apply it to the input video.
9053
9054 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9055 to an RGB input video.
9056
9057 These filters accept the following parameters:
9058 @table @option
9059 @item c0
9060 set first pixel component expression
9061 @item c1
9062 set second pixel component expression
9063 @item c2
9064 set third pixel component expression
9065 @item c3
9066 set fourth pixel component expression, corresponds to the alpha component
9067
9068 @item r
9069 set red component expression
9070 @item g
9071 set green component expression
9072 @item b
9073 set blue component expression
9074 @item a
9075 alpha component expression
9076
9077 @item y
9078 set Y/luminance component expression
9079 @item u
9080 set U/Cb component expression
9081 @item v
9082 set V/Cr component expression
9083 @end table
9084
9085 Each of them specifies the expression to use for computing the lookup table for
9086 the corresponding pixel component values.
9087
9088 The exact component associated to each of the @var{c*} options depends on the
9089 format in input.
9090
9091 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9092 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9093
9094 The expressions can contain the following constants and functions:
9095
9096 @table @option
9097 @item w
9098 @item h
9099 The input width and height.
9100
9101 @item val
9102 The input value for the pixel component.
9103
9104 @item clipval
9105 The input value, clipped to the @var{minval}-@var{maxval} range.
9106
9107 @item maxval
9108 The maximum value for the pixel component.
9109
9110 @item minval
9111 The minimum value for the pixel component.
9112
9113 @item negval
9114 The negated value for the pixel component value, clipped to the
9115 @var{minval}-@var{maxval} range; it corresponds to the expression
9116 "maxval-clipval+minval".
9117
9118 @item clip(val)
9119 The computed value in @var{val}, clipped to the
9120 @var{minval}-@var{maxval} range.
9121
9122 @item gammaval(gamma)
9123 The computed gamma correction value of the pixel component value,
9124 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9125 expression
9126 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9127
9128 @end table
9129
9130 All expressions default to "val".
9131
9132 @subsection Examples
9133
9134 @itemize
9135 @item
9136 Negate input video:
9137 @example
9138 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9139 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9140 @end example
9141
9142 The above is the same as:
9143 @example
9144 lutrgb="r=negval:g=negval:b=negval"
9145 lutyuv="y=negval:u=negval:v=negval"
9146 @end example
9147
9148 @item
9149 Negate luminance:
9150 @example
9151 lutyuv=y=negval
9152 @end example
9153
9154 @item
9155 Remove chroma components, turning the video into a graytone image:
9156 @example
9157 lutyuv="u=128:v=128"
9158 @end example
9159
9160 @item
9161 Apply a luma burning effect:
9162 @example
9163 lutyuv="y=2*val"
9164 @end example
9165
9166 @item
9167 Remove green and blue components:
9168 @example
9169 lutrgb="g=0:b=0"
9170 @end example
9171
9172 @item
9173 Set a constant alpha channel value on input:
9174 @example
9175 format=rgba,lutrgb=a="maxval-minval/2"
9176 @end example
9177
9178 @item
9179 Correct luminance gamma by a factor of 0.5:
9180 @example
9181 lutyuv=y=gammaval(0.5)
9182 @end example
9183
9184 @item
9185 Discard least significant bits of luma:
9186 @example
9187 lutyuv=y='bitand(val, 128+64+32)'
9188 @end example
9189
9190 @item
9191 Technicolor like effect:
9192 @example
9193 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9194 @end example
9195 @end itemize
9196
9197 @section maskedmerge
9198
9199 Merge the first input stream with the second input stream using per pixel
9200 weights in the third input stream.
9201
9202 A value of 0 in the third stream pixel component means that pixel component
9203 from first stream is returned unchanged, while maximum value (eg. 255 for
9204 8-bit videos) means that pixel component from second stream is returned
9205 unchanged. Intermediate values define the amount of merging between both
9206 input stream's pixel components.
9207
9208 This filter accepts the following options:
9209 @table @option
9210 @item planes
9211 Set which planes will be processed as bitmap, unprocessed planes will be
9212 copied from first stream.
9213 By default value 0xf, all planes will be processed.
9214 @end table
9215
9216 @section mcdeint
9217
9218 Apply motion-compensation deinterlacing.
9219
9220 It needs one field per frame as input and must thus be used together
9221 with yadif=1/3 or equivalent.
9222
9223 This filter accepts the following options:
9224 @table @option
9225 @item mode
9226 Set the deinterlacing mode.
9227
9228 It accepts one of the following values:
9229 @table @samp
9230 @item fast
9231 @item medium
9232 @item slow
9233 use iterative motion estimation
9234 @item extra_slow
9235 like @samp{slow}, but use multiple reference frames.
9236 @end table
9237 Default value is @samp{fast}.
9238
9239 @item parity
9240 Set the picture field parity assumed for the input video. It must be
9241 one of the following values:
9242
9243 @table @samp
9244 @item 0, tff
9245 assume top field first
9246 @item 1, bff
9247 assume bottom field first
9248 @end table
9249
9250 Default value is @samp{bff}.
9251
9252 @item qp
9253 Set per-block quantization parameter (QP) used by the internal
9254 encoder.
9255
9256 Higher values should result in a smoother motion vector field but less
9257 optimal individual vectors. Default value is 1.
9258 @end table
9259
9260 @section mergeplanes
9261
9262 Merge color channel components from several video streams.
9263
9264 The filter accepts up to 4 input streams, and merge selected input
9265 planes to the output video.
9266
9267 This filter accepts the following options:
9268 @table @option
9269 @item mapping
9270 Set input to output plane mapping. Default is @code{0}.
9271
9272 The mappings is specified as a bitmap. It should be specified as a
9273 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9274 mapping for the first plane of the output stream. 'A' sets the number of
9275 the input stream to use (from 0 to 3), and 'a' the plane number of the
9276 corresponding input to use (from 0 to 3). The rest of the mappings is
9277 similar, 'Bb' describes the mapping for the output stream second
9278 plane, 'Cc' describes the mapping for the output stream third plane and
9279 'Dd' describes the mapping for the output stream fourth plane.
9280
9281 @item format
9282 Set output pixel format. Default is @code{yuva444p}.
9283 @end table
9284
9285 @subsection Examples
9286
9287 @itemize
9288 @item
9289 Merge three gray video streams of same width and height into single video stream:
9290 @example
9291 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9292 @end example
9293
9294 @item
9295 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9296 @example
9297 [a0][a1]mergeplanes=0x00010210:yuva444p
9298 @end example
9299
9300 @item
9301 Swap Y and A plane in yuva444p stream:
9302 @example
9303 format=yuva444p,mergeplanes=0x03010200:yuva444p
9304 @end example
9305
9306 @item
9307 Swap U and V plane in yuv420p stream:
9308 @example
9309 format=yuv420p,mergeplanes=0x000201:yuv420p
9310 @end example
9311
9312 @item
9313 Cast a rgb24 clip to yuv444p:
9314 @example
9315 format=rgb24,mergeplanes=0x000102:yuv444p
9316 @end example
9317 @end itemize
9318
9319 @section mpdecimate
9320
9321 Drop frames that do not differ greatly from the previous frame in
9322 order to reduce frame rate.
9323
9324 The main use of this filter is for very-low-bitrate encoding
9325 (e.g. streaming over dialup modem), but it could in theory be used for
9326 fixing movies that were inverse-telecined incorrectly.
9327
9328 A description of the accepted options follows.
9329
9330 @table @option
9331 @item max
9332 Set the maximum number of consecutive frames which can be dropped (if
9333 positive), or the minimum interval between dropped frames (if
9334 negative). If the value is 0, the frame is dropped unregarding the
9335 number of previous sequentially dropped frames.
9336
9337 Default value is 0.
9338
9339 @item hi
9340 @item lo
9341 @item frac
9342 Set the dropping threshold values.
9343
9344 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9345 represent actual pixel value differences, so a threshold of 64
9346 corresponds to 1 unit of difference for each pixel, or the same spread
9347 out differently over the block.
9348
9349 A frame is a candidate for dropping if no 8x8 blocks differ by more
9350 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9351 meaning the whole image) differ by more than a threshold of @option{lo}.
9352
9353 Default value for @option{hi} is 64*12, default value for @option{lo} is
9354 64*5, and default value for @option{frac} is 0.33.
9355 @end table
9356
9357
9358 @section negate
9359
9360 Negate input video.
9361
9362 It accepts an integer in input; if non-zero it negates the
9363 alpha component (if available). The default value in input is 0.
9364
9365 @section nnedi
9366
9367 Deinterlace video using neural network edge directed interpolation.
9368
9369 This filter accepts the following options:
9370
9371 @table @option
9372 @item weights
9373 Mandatory option, without binary file filter can not work.
9374 Currently file can be found here:
9375 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9376
9377 @item deint
9378 Set which frames to deinterlace, by default it is @code{all}.
9379 Can be @code{all} or @code{interlaced}.
9380
9381 @item field
9382 Set mode of operation.
9383
9384 Can be one of the following:
9385
9386 @table @samp
9387 @item af
9388 Use frame flags, both fields.
9389 @item a
9390 Use frame flags, single field.
9391 @item t
9392 Use top field only.
9393 @item b
9394 Use bottom field only.
9395 @item tf
9396 Use both fields, top first.
9397 @item bf
9398 Use both fields, bottom first.
9399 @end table
9400
9401 @item planes
9402 Set which planes to process, by default filter process all frames.
9403
9404 @item nsize
9405 Set size of local neighborhood around each pixel, used by the predictor neural
9406 network.
9407
9408 Can be one of the following:
9409
9410 @table @samp
9411 @item s8x6
9412 @item s16x6
9413 @item s32x6
9414 @item s48x6
9415 @item s8x4
9416 @item s16x4
9417 @item s32x4
9418 @end table
9419
9420 @item nns
9421 Set the number of neurons in predicctor neural network.
9422 Can be one of the following:
9423
9424 @table @samp
9425 @item n16
9426 @item n32
9427 @item n64
9428 @item n128
9429 @item n256
9430 @end table
9431
9432 @item qual
9433 Controls the number of different neural network predictions that are blended
9434 together to compute the final output value. Can be @code{fast}, default or
9435 @code{slow}.
9436
9437 @item etype
9438 Set which set of weights to use in the predictor.
9439 Can be one of the following:
9440
9441 @table @samp
9442 @item a
9443 weights trained to minimize absolute error
9444 @item s
9445 weights trained to minimize squared error
9446 @end table
9447
9448 @item pscrn
9449 Controls whether or not the prescreener neural network is used to decide
9450 which pixels should be processed by the predictor neural network and which
9451 can be handled by simple cubic interpolation.
9452 The prescreener is trained to know whether cubic interpolation will be
9453 sufficient for a pixel or whether it should be predicted by the predictor nn.
9454 The computational complexity of the prescreener nn is much less than that of
9455 the predictor nn. Since most pixels can be handled by cubic interpolation,
9456 using the prescreener generally results in much faster processing.
9457 The prescreener is pretty accurate, so the difference between using it and not
9458 using it is almost always unnoticeable.
9459
9460 Can be one of the following:
9461
9462 @table @samp
9463 @item none
9464 @item original
9465 @item new
9466 @end table
9467
9468 Default is @code{new}.
9469
9470 @item fapprox
9471 Set various debugging flags.
9472 @end table
9473
9474 @section noformat
9475
9476 Force libavfilter not to use any of the specified pixel formats for the
9477 input to the next filter.
9478
9479 It accepts the following parameters:
9480 @table @option
9481
9482 @item pix_fmts
9483 A '|'-separated list of pixel format names, such as
9484 apix_fmts=yuv420p|monow|rgb24".
9485
9486 @end table
9487
9488 @subsection Examples
9489
9490 @itemize
9491 @item
9492 Force libavfilter to use a format different from @var{yuv420p} for the
9493 input to the vflip filter:
9494 @example
9495 noformat=pix_fmts=yuv420p,vflip
9496 @end example
9497
9498 @item
9499 Convert the input video to any of the formats not contained in the list:
9500 @example
9501 noformat=yuv420p|yuv444p|yuv410p
9502 @end example
9503 @end itemize
9504
9505 @section noise
9506
9507 Add noise on video input frame.
9508
9509 The filter accepts the following options:
9510
9511 @table @option
9512 @item all_seed
9513 @item c0_seed
9514 @item c1_seed
9515 @item c2_seed
9516 @item c3_seed
9517 Set noise seed for specific pixel component or all pixel components in case
9518 of @var{all_seed}. Default value is @code{123457}.
9519
9520 @item all_strength, alls
9521 @item c0_strength, c0s
9522 @item c1_strength, c1s
9523 @item c2_strength, c2s
9524 @item c3_strength, c3s
9525 Set noise strength for specific pixel component or all pixel components in case
9526 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
9527
9528 @item all_flags, allf
9529 @item c0_flags, c0f
9530 @item c1_flags, c1f
9531 @item c2_flags, c2f
9532 @item c3_flags, c3f
9533 Set pixel component flags or set flags for all components if @var{all_flags}.
9534 Available values for component flags are:
9535 @table @samp
9536 @item a
9537 averaged temporal noise (smoother)
9538 @item p
9539 mix random noise with a (semi)regular pattern
9540 @item t
9541 temporal noise (noise pattern changes between frames)
9542 @item u
9543 uniform noise (gaussian otherwise)
9544 @end table
9545 @end table
9546
9547 @subsection Examples
9548
9549 Add temporal and uniform noise to input video:
9550 @example
9551 noise=alls=20:allf=t+u
9552 @end example
9553
9554 @section null
9555
9556 Pass the video source unchanged to the output.
9557
9558 @section ocr
9559 Optical Character Recognition
9560
9561 This filter uses Tesseract for optical character recognition.
9562
9563 It accepts the following options:
9564
9565 @table @option
9566 @item datapath
9567 Set datapath to tesseract data. Default is to use whatever was
9568 set at installation.
9569
9570 @item language
9571 Set language, default is "eng".
9572
9573 @item whitelist
9574 Set character whitelist.
9575
9576 @item blacklist
9577 Set character blacklist.
9578 @end table
9579
9580 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
9581
9582 @section ocv
9583
9584 Apply a video transform using libopencv.
9585
9586 To enable this filter, install the libopencv library and headers and
9587 configure FFmpeg with @code{--enable-libopencv}.
9588
9589 It accepts the following parameters:
9590
9591 @table @option
9592
9593 @item filter_name
9594 The name of the libopencv filter to apply.
9595
9596 @item filter_params
9597 The parameters to pass to the libopencv filter. If not specified, the default
9598 values are assumed.
9599
9600 @end table
9601
9602 Refer to the official libopencv documentation for more precise
9603 information:
9604 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
9605
9606 Several libopencv filters are supported; see the following subsections.
9607
9608 @anchor{dilate}
9609 @subsection dilate
9610
9611 Dilate an image by using a specific structuring element.
9612 It corresponds to the libopencv function @code{cvDilate}.
9613
9614 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
9615
9616 @var{struct_el} represents a structuring element, and has the syntax:
9617 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
9618
9619 @var{cols} and @var{rows} represent the number of columns and rows of
9620 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
9621 point, and @var{shape} the shape for the structuring element. @var{shape}
9622 must be "rect", "cross", "ellipse", or "custom".
9623
9624 If the value for @var{shape} is "custom", it must be followed by a
9625 string of the form "=@var{filename}". The file with name
9626 @var{filename} is assumed to represent a binary image, with each
9627 printable character corresponding to a bright pixel. When a custom
9628 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
9629 or columns and rows of the read file are assumed instead.
9630
9631 The default value for @var{struct_el} is "3x3+0x0/rect".
9632
9633 @var{nb_iterations} specifies the number of times the transform is
9634 applied to the image, and defaults to 1.
9635
9636 Some examples:
9637 @example
9638 # Use the default values
9639 ocv=dilate
9640
9641 # Dilate using a structuring element with a 5x5 cross, iterating two times
9642 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
9643
9644 # Read the shape from the file diamond.shape, iterating two times.
9645 # The file diamond.shape may contain a pattern of characters like this
9646 #   *
9647 #  ***
9648 # *****
9649 #  ***
9650 #   *
9651 # The specified columns and rows are ignored
9652 # but the anchor point coordinates are not
9653 ocv=dilate:0x0+2x2/custom=diamond.shape|2
9654 @end example
9655
9656 @subsection erode
9657
9658 Erode an image by using a specific structuring element.
9659 It corresponds to the libopencv function @code{cvErode}.
9660
9661 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
9662 with the same syntax and semantics as the @ref{dilate} filter.
9663
9664 @subsection smooth
9665
9666 Smooth the input video.
9667
9668 The filter takes the following parameters:
9669 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
9670
9671 @var{type} is the type of smooth filter to apply, and must be one of
9672 the following values: "blur", "blur_no_scale", "median", "gaussian",
9673 or "bilateral". The default value is "gaussian".
9674
9675 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
9676 depend on the smooth type. @var{param1} and
9677 @var{param2} accept integer positive values or 0. @var{param3} and
9678 @var{param4} accept floating point values.
9679
9680 The default value for @var{param1} is 3. The default value for the
9681 other parameters is 0.
9682
9683 These parameters correspond to the parameters assigned to the
9684 libopencv function @code{cvSmooth}.
9685
9686 @anchor{overlay}
9687 @section overlay
9688
9689 Overlay one video on top of another.
9690
9691 It takes two inputs and has one output. The first input is the "main"
9692 video on which the second input is overlaid.
9693
9694 It accepts the following parameters:
9695
9696 A description of the accepted options follows.
9697
9698 @table @option
9699 @item x
9700 @item y
9701 Set the expression for the x and y coordinates of the overlaid video
9702 on the main video. Default value is "0" for both expressions. In case
9703 the expression is invalid, it is set to a huge value (meaning that the
9704 overlay will not be displayed within the output visible area).
9705
9706 @item eof_action
9707 The action to take when EOF is encountered on the secondary input; it accepts
9708 one of the following values:
9709
9710 @table @option
9711 @item repeat
9712 Repeat the last frame (the default).
9713 @item endall
9714 End both streams.
9715 @item pass
9716 Pass the main input through.
9717 @end table
9718
9719 @item eval
9720 Set when the expressions for @option{x}, and @option{y} are evaluated.
9721
9722 It accepts the following values:
9723 @table @samp
9724 @item init
9725 only evaluate expressions once during the filter initialization or
9726 when a command is processed
9727
9728 @item frame
9729 evaluate expressions for each incoming frame
9730 @end table
9731
9732 Default value is @samp{frame}.
9733
9734 @item shortest
9735 If set to 1, force the output to terminate when the shortest input
9736 terminates. Default value is 0.
9737
9738 @item format
9739 Set the format for the output video.
9740
9741 It accepts the following values:
9742 @table @samp
9743 @item yuv420
9744 force YUV420 output
9745
9746 @item yuv422
9747 force YUV422 output
9748
9749 @item yuv444
9750 force YUV444 output
9751
9752 @item rgb
9753 force RGB output
9754 @end table
9755
9756 Default value is @samp{yuv420}.
9757
9758 @item rgb @emph{(deprecated)}
9759 If set to 1, force the filter to accept inputs in the RGB
9760 color space. Default value is 0. This option is deprecated, use
9761 @option{format} instead.
9762
9763 @item repeatlast
9764 If set to 1, force the filter to draw the last overlay frame over the
9765 main input until the end of the stream. A value of 0 disables this
9766 behavior. Default value is 1.
9767 @end table
9768
9769 The @option{x}, and @option{y} expressions can contain the following
9770 parameters.
9771
9772 @table @option
9773 @item main_w, W
9774 @item main_h, H
9775 The main input width and height.
9776
9777 @item overlay_w, w
9778 @item overlay_h, h
9779 The overlay input width and height.
9780
9781 @item x
9782 @item y
9783 The computed values for @var{x} and @var{y}. They are evaluated for
9784 each new frame.
9785
9786 @item hsub
9787 @item vsub
9788 horizontal and vertical chroma subsample values of the output
9789 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
9790 @var{vsub} is 1.
9791
9792 @item n
9793 the number of input frame, starting from 0
9794
9795 @item pos
9796 the position in the file of the input frame, NAN if unknown
9797
9798 @item t
9799 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
9800
9801 @end table
9802
9803 Note that the @var{n}, @var{pos}, @var{t} variables are available only
9804 when evaluation is done @emph{per frame}, and will evaluate to NAN
9805 when @option{eval} is set to @samp{init}.
9806
9807 Be aware that frames are taken from each input video in timestamp
9808 order, hence, if their initial timestamps differ, it is a good idea
9809 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
9810 have them begin in the same zero timestamp, as the example for
9811 the @var{movie} filter does.
9812
9813 You can chain together more overlays but you should test the
9814 efficiency of such approach.
9815
9816 @subsection Commands
9817
9818 This filter supports the following commands:
9819 @table @option
9820 @item x
9821 @item y
9822 Modify the x and y of the overlay input.
9823 The command accepts the same syntax of the corresponding option.
9824
9825 If the specified expression is not valid, it is kept at its current
9826 value.
9827 @end table
9828
9829 @subsection Examples
9830
9831 @itemize
9832 @item
9833 Draw the overlay at 10 pixels from the bottom right corner of the main
9834 video:
9835 @example
9836 overlay=main_w-overlay_w-10:main_h-overlay_h-10
9837 @end example
9838
9839 Using named options the example above becomes:
9840 @example
9841 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
9842 @end example
9843
9844 @item
9845 Insert a transparent PNG logo in the bottom left corner of the input,
9846 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
9847 @example
9848 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
9849 @end example
9850
9851 @item
9852 Insert 2 different transparent PNG logos (second logo on bottom
9853 right corner) using the @command{ffmpeg} tool:
9854 @example
9855 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
9856 @end example
9857
9858 @item
9859 Add a transparent color layer on top of the main video; @code{WxH}
9860 must specify the size of the main input to the overlay filter:
9861 @example
9862 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
9863 @end example
9864
9865 @item
9866 Play an original video and a filtered version (here with the deshake
9867 filter) side by side using the @command{ffplay} tool:
9868 @example
9869 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
9870 @end example
9871
9872 The above command is the same as:
9873 @example
9874 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
9875 @end example
9876
9877 @item
9878 Make a sliding overlay appearing from the left to the right top part of the
9879 screen starting since time 2:
9880 @example
9881 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
9882 @end example
9883
9884 @item
9885 Compose output by putting two input videos side to side:
9886 @example
9887 ffmpeg -i left.avi -i right.avi -filter_complex "
9888 nullsrc=size=200x100 [background];
9889 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
9890 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
9891 [background][left]       overlay=shortest=1       [background+left];
9892 [background+left][right] overlay=shortest=1:x=100 [left+right]
9893 "
9894 @end example
9895
9896 @item
9897 Mask 10-20 seconds of a video by applying the delogo filter to a section
9898 @example
9899 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
9900 -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]'
9901 masked.avi
9902 @end example
9903
9904 @item
9905 Chain several overlays in cascade:
9906 @example
9907 nullsrc=s=200x200 [bg];
9908 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
9909 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
9910 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
9911 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
9912 [in3] null,       [mid2] overlay=100:100 [out0]
9913 @end example
9914
9915 @end itemize
9916
9917 @section owdenoise
9918
9919 Apply Overcomplete Wavelet denoiser.
9920
9921 The filter accepts the following options:
9922
9923 @table @option
9924 @item depth
9925 Set depth.
9926
9927 Larger depth values will denoise lower frequency components more, but
9928 slow down filtering.
9929
9930 Must be an int in the range 8-16, default is @code{8}.
9931
9932 @item luma_strength, ls
9933 Set luma strength.
9934
9935 Must be a double value in the range 0-1000, default is @code{1.0}.
9936
9937 @item chroma_strength, cs
9938 Set chroma strength.
9939
9940 Must be a double value in the range 0-1000, default is @code{1.0}.
9941 @end table
9942
9943 @anchor{pad}
9944 @section pad
9945
9946 Add paddings to the input image, and place the original input at the
9947 provided @var{x}, @var{y} coordinates.
9948
9949 It accepts the following parameters:
9950
9951 @table @option
9952 @item width, w
9953 @item height, h
9954 Specify an expression for the size of the output image with the
9955 paddings added. If the value for @var{width} or @var{height} is 0, the
9956 corresponding input size is used for the output.
9957
9958 The @var{width} expression can reference the value set by the
9959 @var{height} expression, and vice versa.
9960
9961 The default value of @var{width} and @var{height} is 0.
9962
9963 @item x
9964 @item y
9965 Specify the offsets to place the input image at within the padded area,
9966 with respect to the top/left border of the output image.
9967
9968 The @var{x} expression can reference the value set by the @var{y}
9969 expression, and vice versa.
9970
9971 The default value of @var{x} and @var{y} is 0.
9972
9973 @item color
9974 Specify the color of the padded area. For the syntax of this option,
9975 check the "Color" section in the ffmpeg-utils manual.
9976
9977 The default value of @var{color} is "black".
9978 @end table
9979
9980 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
9981 options are expressions containing the following constants:
9982
9983 @table @option
9984 @item in_w
9985 @item in_h
9986 The input video width and height.
9987
9988 @item iw
9989 @item ih
9990 These are the same as @var{in_w} and @var{in_h}.
9991
9992 @item out_w
9993 @item out_h
9994 The output width and height (the size of the padded area), as
9995 specified by the @var{width} and @var{height} expressions.
9996
9997 @item ow
9998 @item oh
9999 These are the same as @var{out_w} and @var{out_h}.
10000
10001 @item x
10002 @item y
10003 The x and y offsets as specified by the @var{x} and @var{y}
10004 expressions, or NAN if not yet specified.
10005
10006 @item a
10007 same as @var{iw} / @var{ih}
10008
10009 @item sar
10010 input sample aspect ratio
10011
10012 @item dar
10013 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10014
10015 @item hsub
10016 @item vsub
10017 The horizontal and vertical chroma subsample values. For example for the
10018 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10019 @end table
10020
10021 @subsection Examples
10022
10023 @itemize
10024 @item
10025 Add paddings with the color "violet" to the input video. The output video
10026 size is 640x480, and the top-left corner of the input video is placed at
10027 column 0, row 40
10028 @example
10029 pad=640:480:0:40:violet
10030 @end example
10031
10032 The example above is equivalent to the following command:
10033 @example
10034 pad=width=640:height=480:x=0:y=40:color=violet
10035 @end example
10036
10037 @item
10038 Pad the input to get an output with dimensions increased by 3/2,
10039 and put the input video at the center of the padded area:
10040 @example
10041 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10042 @end example
10043
10044 @item
10045 Pad the input to get a squared output with size equal to the maximum
10046 value between the input width and height, and put the input video at
10047 the center of the padded area:
10048 @example
10049 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10050 @end example
10051
10052 @item
10053 Pad the input to get a final w/h ratio of 16:9:
10054 @example
10055 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10056 @end example
10057
10058 @item
10059 In case of anamorphic video, in order to set the output display aspect
10060 correctly, it is necessary to use @var{sar} in the expression,
10061 according to the relation:
10062 @example
10063 (ih * X / ih) * sar = output_dar
10064 X = output_dar / sar
10065 @end example
10066
10067 Thus the previous example needs to be modified to:
10068 @example
10069 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10070 @end example
10071
10072 @item
10073 Double the output size and put the input video in the bottom-right
10074 corner of the output padded area:
10075 @example
10076 pad="2*iw:2*ih:ow-iw:oh-ih"
10077 @end example
10078 @end itemize
10079
10080 @anchor{palettegen}
10081 @section palettegen
10082
10083 Generate one palette for a whole video stream.
10084
10085 It accepts the following options:
10086
10087 @table @option
10088 @item max_colors
10089 Set the maximum number of colors to quantize in the palette.
10090 Note: the palette will still contain 256 colors; the unused palette entries
10091 will be black.
10092
10093 @item reserve_transparent
10094 Create a palette of 255 colors maximum and reserve the last one for
10095 transparency. Reserving the transparency color is useful for GIF optimization.
10096 If not set, the maximum of colors in the palette will be 256. You probably want
10097 to disable this option for a standalone image.
10098 Set by default.
10099
10100 @item stats_mode
10101 Set statistics mode.
10102
10103 It accepts the following values:
10104 @table @samp
10105 @item full
10106 Compute full frame histograms.
10107 @item diff
10108 Compute histograms only for the part that differs from previous frame. This
10109 might be relevant to give more importance to the moving part of your input if
10110 the background is static.
10111 @end table
10112
10113 Default value is @var{full}.
10114 @end table
10115
10116 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10117 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10118 color quantization of the palette. This information is also visible at
10119 @var{info} logging level.
10120
10121 @subsection Examples
10122
10123 @itemize
10124 @item
10125 Generate a representative palette of a given video using @command{ffmpeg}:
10126 @example
10127 ffmpeg -i input.mkv -vf palettegen palette.png
10128 @end example
10129 @end itemize
10130
10131 @section paletteuse
10132
10133 Use a palette to downsample an input video stream.
10134
10135 The filter takes two inputs: one video stream and a palette. The palette must
10136 be a 256 pixels image.
10137
10138 It accepts the following options:
10139
10140 @table @option
10141 @item dither
10142 Select dithering mode. Available algorithms are:
10143 @table @samp
10144 @item bayer
10145 Ordered 8x8 bayer dithering (deterministic)
10146 @item heckbert
10147 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10148 Note: this dithering is sometimes considered "wrong" and is included as a
10149 reference.
10150 @item floyd_steinberg
10151 Floyd and Steingberg dithering (error diffusion)
10152 @item sierra2
10153 Frankie Sierra dithering v2 (error diffusion)
10154 @item sierra2_4a
10155 Frankie Sierra dithering v2 "Lite" (error diffusion)
10156 @end table
10157
10158 Default is @var{sierra2_4a}.
10159
10160 @item bayer_scale
10161 When @var{bayer} dithering is selected, this option defines the scale of the
10162 pattern (how much the crosshatch pattern is visible). A low value means more
10163 visible pattern for less banding, and higher value means less visible pattern
10164 at the cost of more banding.
10165
10166 The option must be an integer value in the range [0,5]. Default is @var{2}.
10167
10168 @item diff_mode
10169 If set, define the zone to process
10170
10171 @table @samp
10172 @item rectangle
10173 Only the changing rectangle will be reprocessed. This is similar to GIF
10174 cropping/offsetting compression mechanism. This option can be useful for speed
10175 if only a part of the image is changing, and has use cases such as limiting the
10176 scope of the error diffusal @option{dither} to the rectangle that bounds the
10177 moving scene (it leads to more deterministic output if the scene doesn't change
10178 much, and as a result less moving noise and better GIF compression).
10179 @end table
10180
10181 Default is @var{none}.
10182 @end table
10183
10184 @subsection Examples
10185
10186 @itemize
10187 @item
10188 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10189 using @command{ffmpeg}:
10190 @example
10191 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10192 @end example
10193 @end itemize
10194
10195 @section perspective
10196
10197 Correct perspective of video not recorded perpendicular to the screen.
10198
10199 A description of the accepted parameters follows.
10200
10201 @table @option
10202 @item x0
10203 @item y0
10204 @item x1
10205 @item y1
10206 @item x2
10207 @item y2
10208 @item x3
10209 @item y3
10210 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10211 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10212 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10213 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10214 then the corners of the source will be sent to the specified coordinates.
10215
10216 The expressions can use the following variables:
10217
10218 @table @option
10219 @item W
10220 @item H
10221 the width and height of video frame.
10222 @item in
10223 Input frame count.
10224 @item on
10225 Output frame count.
10226 @end table
10227
10228 @item interpolation
10229 Set interpolation for perspective correction.
10230
10231 It accepts the following values:
10232 @table @samp
10233 @item linear
10234 @item cubic
10235 @end table
10236
10237 Default value is @samp{linear}.
10238
10239 @item sense
10240 Set interpretation of coordinate options.
10241
10242 It accepts the following values:
10243 @table @samp
10244 @item 0, source
10245
10246 Send point in the source specified by the given coordinates to
10247 the corners of the destination.
10248
10249 @item 1, destination
10250
10251 Send the corners of the source to the point in the destination specified
10252 by the given coordinates.
10253
10254 Default value is @samp{source}.
10255 @end table
10256
10257 @item eval
10258 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10259
10260 It accepts the following values:
10261 @table @samp
10262 @item init
10263 only evaluate expressions once during the filter initialization or
10264 when a command is processed
10265
10266 @item frame
10267 evaluate expressions for each incoming frame
10268 @end table
10269
10270 Default value is @samp{init}.
10271 @end table
10272
10273 @section phase
10274
10275 Delay interlaced video by one field time so that the field order changes.
10276
10277 The intended use is to fix PAL movies that have been captured with the
10278 opposite field order to the film-to-video transfer.
10279
10280 A description of the accepted parameters follows.
10281
10282 @table @option
10283 @item mode
10284 Set phase mode.
10285
10286 It accepts the following values:
10287 @table @samp
10288 @item t
10289 Capture field order top-first, transfer bottom-first.
10290 Filter will delay the bottom field.
10291
10292 @item b
10293 Capture field order bottom-first, transfer top-first.
10294 Filter will delay the top field.
10295
10296 @item p
10297 Capture and transfer with the same field order. This mode only exists
10298 for the documentation of the other options to refer to, but if you
10299 actually select it, the filter will faithfully do nothing.
10300
10301 @item a
10302 Capture field order determined automatically by field flags, transfer
10303 opposite.
10304 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10305 basis using field flags. If no field information is available,
10306 then this works just like @samp{u}.
10307
10308 @item u
10309 Capture unknown or varying, transfer opposite.
10310 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10311 analyzing the images and selecting the alternative that produces best
10312 match between the fields.
10313
10314 @item T
10315 Capture top-first, transfer unknown or varying.
10316 Filter selects among @samp{t} and @samp{p} using image analysis.
10317
10318 @item B
10319 Capture bottom-first, transfer unknown or varying.
10320 Filter selects among @samp{b} and @samp{p} using image analysis.
10321
10322 @item A
10323 Capture determined by field flags, transfer unknown or varying.
10324 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10325 image analysis. If no field information is available, then this works just
10326 like @samp{U}. This is the default mode.
10327
10328 @item U
10329 Both capture and transfer unknown or varying.
10330 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10331 @end table
10332 @end table
10333
10334 @section pixdesctest
10335
10336 Pixel format descriptor test filter, mainly useful for internal
10337 testing. The output video should be equal to the input video.
10338
10339 For example:
10340 @example
10341 format=monow, pixdesctest
10342 @end example
10343
10344 can be used to test the monowhite pixel format descriptor definition.
10345
10346 @section pp
10347
10348 Enable the specified chain of postprocessing subfilters using libpostproc. This
10349 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10350 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10351 Each subfilter and some options have a short and a long name that can be used
10352 interchangeably, i.e. dr/dering are the same.
10353
10354 The filters accept the following options:
10355
10356 @table @option
10357 @item subfilters
10358 Set postprocessing subfilters string.
10359 @end table
10360
10361 All subfilters share common options to determine their scope:
10362
10363 @table @option
10364 @item a/autoq
10365 Honor the quality commands for this subfilter.
10366
10367 @item c/chrom
10368 Do chrominance filtering, too (default).
10369
10370 @item y/nochrom
10371 Do luminance filtering only (no chrominance).
10372
10373 @item n/noluma
10374 Do chrominance filtering only (no luminance).
10375 @end table
10376
10377 These options can be appended after the subfilter name, separated by a '|'.
10378
10379 Available subfilters are:
10380
10381 @table @option
10382 @item hb/hdeblock[|difference[|flatness]]
10383 Horizontal deblocking filter
10384 @table @option
10385 @item difference
10386 Difference factor where higher values mean more deblocking (default: @code{32}).
10387 @item flatness
10388 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10389 @end table
10390
10391 @item vb/vdeblock[|difference[|flatness]]
10392 Vertical deblocking filter
10393 @table @option
10394 @item difference
10395 Difference factor where higher values mean more deblocking (default: @code{32}).
10396 @item flatness
10397 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10398 @end table
10399
10400 @item ha/hadeblock[|difference[|flatness]]
10401 Accurate horizontal deblocking filter
10402 @table @option
10403 @item difference
10404 Difference factor where higher values mean more deblocking (default: @code{32}).
10405 @item flatness
10406 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10407 @end table
10408
10409 @item va/vadeblock[|difference[|flatness]]
10410 Accurate vertical deblocking filter
10411 @table @option
10412 @item difference
10413 Difference factor where higher values mean more deblocking (default: @code{32}).
10414 @item flatness
10415 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10416 @end table
10417 @end table
10418
10419 The horizontal and vertical deblocking filters share the difference and
10420 flatness values so you cannot set different horizontal and vertical
10421 thresholds.
10422
10423 @table @option
10424 @item h1/x1hdeblock
10425 Experimental horizontal deblocking filter
10426
10427 @item v1/x1vdeblock
10428 Experimental vertical deblocking filter
10429
10430 @item dr/dering
10431 Deringing filter
10432
10433 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10434 @table @option
10435 @item threshold1
10436 larger -> stronger filtering
10437 @item threshold2
10438 larger -> stronger filtering
10439 @item threshold3
10440 larger -> stronger filtering
10441 @end table
10442
10443 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10444 @table @option
10445 @item f/fullyrange
10446 Stretch luminance to @code{0-255}.
10447 @end table
10448
10449 @item lb/linblenddeint
10450 Linear blend deinterlacing filter that deinterlaces the given block by
10451 filtering all lines with a @code{(1 2 1)} filter.
10452
10453 @item li/linipoldeint
10454 Linear interpolating deinterlacing filter that deinterlaces the given block by
10455 linearly interpolating every second line.
10456
10457 @item ci/cubicipoldeint
10458 Cubic interpolating deinterlacing filter deinterlaces the given block by
10459 cubically interpolating every second line.
10460
10461 @item md/mediandeint
10462 Median deinterlacing filter that deinterlaces the given block by applying a
10463 median filter to every second line.
10464
10465 @item fd/ffmpegdeint
10466 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10467 second line with a @code{(-1 4 2 4 -1)} filter.
10468
10469 @item l5/lowpass5
10470 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10471 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10472
10473 @item fq/forceQuant[|quantizer]
10474 Overrides the quantizer table from the input with the constant quantizer you
10475 specify.
10476 @table @option
10477 @item quantizer
10478 Quantizer to use
10479 @end table
10480
10481 @item de/default
10482 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10483
10484 @item fa/fast
10485 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10486
10487 @item ac
10488 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10489 @end table
10490
10491 @subsection Examples
10492
10493 @itemize
10494 @item
10495 Apply horizontal and vertical deblocking, deringing and automatic
10496 brightness/contrast:
10497 @example
10498 pp=hb/vb/dr/al
10499 @end example
10500
10501 @item
10502 Apply default filters without brightness/contrast correction:
10503 @example
10504 pp=de/-al
10505 @end example
10506
10507 @item
10508 Apply default filters and temporal denoiser:
10509 @example
10510 pp=default/tmpnoise|1|2|3
10511 @end example
10512
10513 @item
10514 Apply deblocking on luminance only, and switch vertical deblocking on or off
10515 automatically depending on available CPU time:
10516 @example
10517 pp=hb|y/vb|a
10518 @end example
10519 @end itemize
10520
10521 @section pp7
10522 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
10523 similar to spp = 6 with 7 point DCT, where only the center sample is
10524 used after IDCT.
10525
10526 The filter accepts the following options:
10527
10528 @table @option
10529 @item qp
10530 Force a constant quantization parameter. It accepts an integer in range
10531 0 to 63. If not set, the filter will use the QP from the video stream
10532 (if available).
10533
10534 @item mode
10535 Set thresholding mode. Available modes are:
10536
10537 @table @samp
10538 @item hard
10539 Set hard thresholding.
10540 @item soft
10541 Set soft thresholding (better de-ringing effect, but likely blurrier).
10542 @item medium
10543 Set medium thresholding (good results, default).
10544 @end table
10545 @end table
10546
10547 @section psnr
10548
10549 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
10550 Ratio) between two input videos.
10551
10552 This filter takes in input two input videos, the first input is
10553 considered the "main" source and is passed unchanged to the
10554 output. The second input is used as a "reference" video for computing
10555 the PSNR.
10556
10557 Both video inputs must have the same resolution and pixel format for
10558 this filter to work correctly. Also it assumes that both inputs
10559 have the same number of frames, which are compared one by one.
10560
10561 The obtained average PSNR is printed through the logging system.
10562
10563 The filter stores the accumulated MSE (mean squared error) of each
10564 frame, and at the end of the processing it is averaged across all frames
10565 equally, and the following formula is applied to obtain the PSNR:
10566
10567 @example
10568 PSNR = 10*log10(MAX^2/MSE)
10569 @end example
10570
10571 Where MAX is the average of the maximum values of each component of the
10572 image.
10573
10574 The description of the accepted parameters follows.
10575
10576 @table @option
10577 @item stats_file, f
10578 If specified the filter will use the named file to save the PSNR of
10579 each individual frame. When filename equals "-" the data is sent to
10580 standard output.
10581
10582 @item stats_version
10583 Specifies which version of the stats file format to use. Details of
10584 each format are written below.
10585 Default value is 1.
10586 @end table
10587
10588 The file printed if @var{stats_file} is selected, contains a sequence of
10589 key/value pairs of the form @var{key}:@var{value} for each compared
10590 couple of frames.
10591
10592 If a @var{stats_version} greater than 1 is specified, a header line precedes
10593 the list of per-frame-pair stats, with key value pairs following the frame
10594 format with the following parameters:
10595
10596 @table @option
10597 @item psnr_log_version
10598 The version of the log file format. Will match @var{stats_version}.
10599
10600 @item fields
10601 A comma separated list of the per-frame-pair parameters included in
10602 the log.
10603 @end table
10604
10605 A description of each shown per-frame-pair parameter follows:
10606
10607 @table @option
10608 @item n
10609 sequential number of the input frame, starting from 1
10610
10611 @item mse_avg
10612 Mean Square Error pixel-by-pixel average difference of the compared
10613 frames, averaged over all the image components.
10614
10615 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
10616 Mean Square Error pixel-by-pixel average difference of the compared
10617 frames for the component specified by the suffix.
10618
10619 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
10620 Peak Signal to Noise ratio of the compared frames for the component
10621 specified by the suffix.
10622 @end table
10623
10624 For example:
10625 @example
10626 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10627 [main][ref] psnr="stats_file=stats.log" [out]
10628 @end example
10629
10630 On this example the input file being processed is compared with the
10631 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
10632 is stored in @file{stats.log}.
10633
10634 @anchor{pullup}
10635 @section pullup
10636
10637 Pulldown reversal (inverse telecine) filter, capable of handling mixed
10638 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
10639 content.
10640
10641 The pullup filter is designed to take advantage of future context in making
10642 its decisions. This filter is stateless in the sense that it does not lock
10643 onto a pattern to follow, but it instead looks forward to the following
10644 fields in order to identify matches and rebuild progressive frames.
10645
10646 To produce content with an even framerate, insert the fps filter after
10647 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
10648 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
10649
10650 The filter accepts the following options:
10651
10652 @table @option
10653 @item jl
10654 @item jr
10655 @item jt
10656 @item jb
10657 These options set the amount of "junk" to ignore at the left, right, top, and
10658 bottom of the image, respectively. Left and right are in units of 8 pixels,
10659 while top and bottom are in units of 2 lines.
10660 The default is 8 pixels on each side.
10661
10662 @item sb
10663 Set the strict breaks. Setting this option to 1 will reduce the chances of
10664 filter generating an occasional mismatched frame, but it may also cause an
10665 excessive number of frames to be dropped during high motion sequences.
10666 Conversely, setting it to -1 will make filter match fields more easily.
10667 This may help processing of video where there is slight blurring between
10668 the fields, but may also cause there to be interlaced frames in the output.
10669 Default value is @code{0}.
10670
10671 @item mp
10672 Set the metric plane to use. It accepts the following values:
10673 @table @samp
10674 @item l
10675 Use luma plane.
10676
10677 @item u
10678 Use chroma blue plane.
10679
10680 @item v
10681 Use chroma red plane.
10682 @end table
10683
10684 This option may be set to use chroma plane instead of the default luma plane
10685 for doing filter's computations. This may improve accuracy on very clean
10686 source material, but more likely will decrease accuracy, especially if there
10687 is chroma noise (rainbow effect) or any grayscale video.
10688 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
10689 load and make pullup usable in realtime on slow machines.
10690 @end table
10691
10692 For best results (without duplicated frames in the output file) it is
10693 necessary to change the output frame rate. For example, to inverse
10694 telecine NTSC input:
10695 @example
10696 ffmpeg -i input -vf pullup -r 24000/1001 ...
10697 @end example
10698
10699 @section qp
10700
10701 Change video quantization parameters (QP).
10702
10703 The filter accepts the following option:
10704
10705 @table @option
10706 @item qp
10707 Set expression for quantization parameter.
10708 @end table
10709
10710 The expression is evaluated through the eval API and can contain, among others,
10711 the following constants:
10712
10713 @table @var
10714 @item known
10715 1 if index is not 129, 0 otherwise.
10716
10717 @item qp
10718 Sequentional index starting from -129 to 128.
10719 @end table
10720
10721 @subsection Examples
10722
10723 @itemize
10724 @item
10725 Some equation like:
10726 @example
10727 qp=2+2*sin(PI*qp)
10728 @end example
10729 @end itemize
10730
10731 @section random
10732
10733 Flush video frames from internal cache of frames into a random order.
10734 No frame is discarded.
10735 Inspired by @ref{frei0r} nervous filter.
10736
10737 @table @option
10738 @item frames
10739 Set size in number of frames of internal cache, in range from @code{2} to
10740 @code{512}. Default is @code{30}.
10741
10742 @item seed
10743 Set seed for random number generator, must be an integer included between
10744 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
10745 less than @code{0}, the filter will try to use a good random seed on a
10746 best effort basis.
10747 @end table
10748
10749 @section readvitc
10750
10751 Read vertical interval timecode (VITC) information from the top lines of a
10752 video frame.
10753
10754 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
10755 timecode value, if a valid timecode has been detected. Further metadata key
10756 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
10757 timecode data has been found or not.
10758
10759 This filter accepts the following options:
10760
10761 @table @option
10762 @item scan_max
10763 Set the maximum number of lines to scan for VITC data. If the value is set to
10764 @code{-1} the full video frame is scanned. Default is @code{45}.
10765
10766 @item thr_b
10767 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
10768 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
10769
10770 @item thr_w
10771 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
10772 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
10773 @end table
10774
10775 @subsection Examples
10776
10777 @itemize
10778 @item
10779 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
10780 draw @code{--:--:--:--} as a placeholder:
10781 @example
10782 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
10783 @end example
10784 @end itemize
10785
10786 @section remap
10787
10788 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
10789
10790 Destination pixel at position (X, Y) will be picked from source (x, y) position
10791 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
10792 value for pixel will be used for destination pixel.
10793
10794 Xmap and Ymap input video streams must be of same dimensions. Output video stream
10795 will have Xmap/Ymap video stream dimensions.
10796 Xmap and Ymap input video streams are 16bit depth, single channel.
10797
10798 @section removegrain
10799
10800 The removegrain filter is a spatial denoiser for progressive video.
10801
10802 @table @option
10803 @item m0
10804 Set mode for the first plane.
10805
10806 @item m1
10807 Set mode for the second plane.
10808
10809 @item m2
10810 Set mode for the third plane.
10811
10812 @item m3
10813 Set mode for the fourth plane.
10814 @end table
10815
10816 Range of mode is from 0 to 24. Description of each mode follows:
10817
10818 @table @var
10819 @item 0
10820 Leave input plane unchanged. Default.
10821
10822 @item 1
10823 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
10824
10825 @item 2
10826 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
10827
10828 @item 3
10829 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
10830
10831 @item 4
10832 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
10833 This is equivalent to a median filter.
10834
10835 @item 5
10836 Line-sensitive clipping giving the minimal change.
10837
10838 @item 6
10839 Line-sensitive clipping, intermediate.
10840
10841 @item 7
10842 Line-sensitive clipping, intermediate.
10843
10844 @item 8
10845 Line-sensitive clipping, intermediate.
10846
10847 @item 9
10848 Line-sensitive clipping on a line where the neighbours pixels are the closest.
10849
10850 @item 10
10851 Replaces the target pixel with the closest neighbour.
10852
10853 @item 11
10854 [1 2 1] horizontal and vertical kernel blur.
10855
10856 @item 12
10857 Same as mode 11.
10858
10859 @item 13
10860 Bob mode, interpolates top field from the line where the neighbours
10861 pixels are the closest.
10862
10863 @item 14
10864 Bob mode, interpolates bottom field from the line where the neighbours
10865 pixels are the closest.
10866
10867 @item 15
10868 Bob mode, interpolates top field. Same as 13 but with a more complicated
10869 interpolation formula.
10870
10871 @item 16
10872 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
10873 interpolation formula.
10874
10875 @item 17
10876 Clips the pixel with the minimum and maximum of respectively the maximum and
10877 minimum of each pair of opposite neighbour pixels.
10878
10879 @item 18
10880 Line-sensitive clipping using opposite neighbours whose greatest distance from
10881 the current pixel is minimal.
10882
10883 @item 19
10884 Replaces the pixel with the average of its 8 neighbours.
10885
10886 @item 20
10887 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
10888
10889 @item 21
10890 Clips pixels using the averages of opposite neighbour.
10891
10892 @item 22
10893 Same as mode 21 but simpler and faster.
10894
10895 @item 23
10896 Small edge and halo removal, but reputed useless.
10897
10898 @item 24
10899 Similar as 23.
10900 @end table
10901
10902 @section removelogo
10903
10904 Suppress a TV station logo, using an image file to determine which
10905 pixels comprise the logo. It works by filling in the pixels that
10906 comprise the logo with neighboring pixels.
10907
10908 The filter accepts the following options:
10909
10910 @table @option
10911 @item filename, f
10912 Set the filter bitmap file, which can be any image format supported by
10913 libavformat. The width and height of the image file must match those of the
10914 video stream being processed.
10915 @end table
10916
10917 Pixels in the provided bitmap image with a value of zero are not
10918 considered part of the logo, non-zero pixels are considered part of
10919 the logo. If you use white (255) for the logo and black (0) for the
10920 rest, you will be safe. For making the filter bitmap, it is
10921 recommended to take a screen capture of a black frame with the logo
10922 visible, and then using a threshold filter followed by the erode
10923 filter once or twice.
10924
10925 If needed, little splotches can be fixed manually. Remember that if
10926 logo pixels are not covered, the filter quality will be much
10927 reduced. Marking too many pixels as part of the logo does not hurt as
10928 much, but it will increase the amount of blurring needed to cover over
10929 the image and will destroy more information than necessary, and extra
10930 pixels will slow things down on a large logo.
10931
10932 @section repeatfields
10933
10934 This filter uses the repeat_field flag from the Video ES headers and hard repeats
10935 fields based on its value.
10936
10937 @section reverse
10938
10939 Reverse a video clip.
10940
10941 Warning: This filter requires memory to buffer the entire clip, so trimming
10942 is suggested.
10943
10944 @subsection Examples
10945
10946 @itemize
10947 @item
10948 Take the first 5 seconds of a clip, and reverse it.
10949 @example
10950 trim=end=5,reverse
10951 @end example
10952 @end itemize
10953
10954 @section rotate
10955
10956 Rotate video by an arbitrary angle expressed in radians.
10957
10958 The filter accepts the following options:
10959
10960 A description of the optional parameters follows.
10961 @table @option
10962 @item angle, a
10963 Set an expression for the angle by which to rotate the input video
10964 clockwise, expressed as a number of radians. A negative value will
10965 result in a counter-clockwise rotation. By default it is set to "0".
10966
10967 This expression is evaluated for each frame.
10968
10969 @item out_w, ow
10970 Set the output width expression, default value is "iw".
10971 This expression is evaluated just once during configuration.
10972
10973 @item out_h, oh
10974 Set the output height expression, default value is "ih".
10975 This expression is evaluated just once during configuration.
10976
10977 @item bilinear
10978 Enable bilinear interpolation if set to 1, a value of 0 disables
10979 it. Default value is 1.
10980
10981 @item fillcolor, c
10982 Set the color used to fill the output area not covered by the rotated
10983 image. For the general syntax of this option, check the "Color" section in the
10984 ffmpeg-utils manual. If the special value "none" is selected then no
10985 background is printed (useful for example if the background is never shown).
10986
10987 Default value is "black".
10988 @end table
10989
10990 The expressions for the angle and the output size can contain the
10991 following constants and functions:
10992
10993 @table @option
10994 @item n
10995 sequential number of the input frame, starting from 0. It is always NAN
10996 before the first frame is filtered.
10997
10998 @item t
10999 time in seconds of the input frame, it is set to 0 when the filter is
11000 configured. It is always NAN before the first frame is filtered.
11001
11002 @item hsub
11003 @item vsub
11004 horizontal and vertical chroma subsample values. For example for the
11005 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11006
11007 @item in_w, iw
11008 @item in_h, ih
11009 the input video width and height
11010
11011 @item out_w, ow
11012 @item out_h, oh
11013 the output width and height, that is the size of the padded area as
11014 specified by the @var{width} and @var{height} expressions
11015
11016 @item rotw(a)
11017 @item roth(a)
11018 the minimal width/height required for completely containing the input
11019 video rotated by @var{a} radians.
11020
11021 These are only available when computing the @option{out_w} and
11022 @option{out_h} expressions.
11023 @end table
11024
11025 @subsection Examples
11026
11027 @itemize
11028 @item
11029 Rotate the input by PI/6 radians clockwise:
11030 @example
11031 rotate=PI/6
11032 @end example
11033
11034 @item
11035 Rotate the input by PI/6 radians counter-clockwise:
11036 @example
11037 rotate=-PI/6
11038 @end example
11039
11040 @item
11041 Rotate the input by 45 degrees clockwise:
11042 @example
11043 rotate=45*PI/180
11044 @end example
11045
11046 @item
11047 Apply a constant rotation with period T, starting from an angle of PI/3:
11048 @example
11049 rotate=PI/3+2*PI*t/T
11050 @end example
11051
11052 @item
11053 Make the input video rotation oscillating with a period of T
11054 seconds and an amplitude of A radians:
11055 @example
11056 rotate=A*sin(2*PI/T*t)
11057 @end example
11058
11059 @item
11060 Rotate the video, output size is chosen so that the whole rotating
11061 input video is always completely contained in the output:
11062 @example
11063 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11064 @end example
11065
11066 @item
11067 Rotate the video, reduce the output size so that no background is ever
11068 shown:
11069 @example
11070 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11071 @end example
11072 @end itemize
11073
11074 @subsection Commands
11075
11076 The filter supports the following commands:
11077
11078 @table @option
11079 @item a, angle
11080 Set the angle expression.
11081 The command accepts the same syntax of the corresponding option.
11082
11083 If the specified expression is not valid, it is kept at its current
11084 value.
11085 @end table
11086
11087 @section sab
11088
11089 Apply Shape Adaptive Blur.
11090
11091 The filter accepts the following options:
11092
11093 @table @option
11094 @item luma_radius, lr
11095 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11096 value is 1.0. A greater value will result in a more blurred image, and
11097 in slower processing.
11098
11099 @item luma_pre_filter_radius, lpfr
11100 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11101 value is 1.0.
11102
11103 @item luma_strength, ls
11104 Set luma maximum difference between pixels to still be considered, must
11105 be a value in the 0.1-100.0 range, default value is 1.0.
11106
11107 @item chroma_radius, cr
11108 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11109 greater value will result in a more blurred image, and in slower
11110 processing.
11111
11112 @item chroma_pre_filter_radius, cpfr
11113 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11114
11115 @item chroma_strength, cs
11116 Set chroma maximum difference between pixels to still be considered,
11117 must be a value in the -0.9-100.0 range.
11118 @end table
11119
11120 Each chroma option value, if not explicitly specified, is set to the
11121 corresponding luma option value.
11122
11123 @anchor{scale}
11124 @section scale
11125
11126 Scale (resize) the input video, using the libswscale library.
11127
11128 The scale filter forces the output display aspect ratio to be the same
11129 of the input, by changing the output sample aspect ratio.
11130
11131 If the input image format is different from the format requested by
11132 the next filter, the scale filter will convert the input to the
11133 requested format.
11134
11135 @subsection Options
11136 The filter accepts the following options, or any of the options
11137 supported by the libswscale scaler.
11138
11139 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11140 the complete list of scaler options.
11141
11142 @table @option
11143 @item width, w
11144 @item height, h
11145 Set the output video dimension expression. Default value is the input
11146 dimension.
11147
11148 If the value is 0, the input width is used for the output.
11149
11150 If one of the values is -1, the scale filter will use a value that
11151 maintains the aspect ratio of the input image, calculated from the
11152 other specified dimension. If both of them are -1, the input size is
11153 used
11154
11155 If one of the values is -n with n > 1, the scale filter will also use a value
11156 that maintains the aspect ratio of the input image, calculated from the other
11157 specified dimension. After that it will, however, make sure that the calculated
11158 dimension is divisible by n and adjust the value if necessary.
11159
11160 See below for the list of accepted constants for use in the dimension
11161 expression.
11162
11163 @item eval
11164 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11165
11166 @table @samp
11167 @item init
11168 Only evaluate expressions once during the filter initialization or when a command is processed.
11169
11170 @item frame
11171 Evaluate expressions for each incoming frame.
11172
11173 @end table
11174
11175 Default value is @samp{init}.
11176
11177
11178 @item interl
11179 Set the interlacing mode. It accepts the following values:
11180
11181 @table @samp
11182 @item 1
11183 Force interlaced aware scaling.
11184
11185 @item 0
11186 Do not apply interlaced scaling.
11187
11188 @item -1
11189 Select interlaced aware scaling depending on whether the source frames
11190 are flagged as interlaced or not.
11191 @end table
11192
11193 Default value is @samp{0}.
11194
11195 @item flags
11196 Set libswscale scaling flags. See
11197 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11198 complete list of values. If not explicitly specified the filter applies
11199 the default flags.
11200
11201
11202 @item param0, param1
11203 Set libswscale input parameters for scaling algorithms that need them. See
11204 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11205 complete documentation. If not explicitly specified the filter applies
11206 empty parameters.
11207
11208
11209
11210 @item size, s
11211 Set the video size. For the syntax of this option, check the
11212 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11213
11214 @item in_color_matrix
11215 @item out_color_matrix
11216 Set in/output YCbCr color space type.
11217
11218 This allows the autodetected value to be overridden as well as allows forcing
11219 a specific value used for the output and encoder.
11220
11221 If not specified, the color space type depends on the pixel format.
11222
11223 Possible values:
11224
11225 @table @samp
11226 @item auto
11227 Choose automatically.
11228
11229 @item bt709
11230 Format conforming to International Telecommunication Union (ITU)
11231 Recommendation BT.709.
11232
11233 @item fcc
11234 Set color space conforming to the United States Federal Communications
11235 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11236
11237 @item bt601
11238 Set color space conforming to:
11239
11240 @itemize
11241 @item
11242 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11243
11244 @item
11245 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11246
11247 @item
11248 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11249
11250 @end itemize
11251
11252 @item smpte240m
11253 Set color space conforming to SMPTE ST 240:1999.
11254 @end table
11255
11256 @item in_range
11257 @item out_range
11258 Set in/output YCbCr sample range.
11259
11260 This allows the autodetected value to be overridden as well as allows forcing
11261 a specific value used for the output and encoder. If not specified, the
11262 range depends on the pixel format. Possible values:
11263
11264 @table @samp
11265 @item auto
11266 Choose automatically.
11267
11268 @item jpeg/full/pc
11269 Set full range (0-255 in case of 8-bit luma).
11270
11271 @item mpeg/tv
11272 Set "MPEG" range (16-235 in case of 8-bit luma).
11273 @end table
11274
11275 @item force_original_aspect_ratio
11276 Enable decreasing or increasing output video width or height if necessary to
11277 keep the original aspect ratio. Possible values:
11278
11279 @table @samp
11280 @item disable
11281 Scale the video as specified and disable this feature.
11282
11283 @item decrease
11284 The output video dimensions will automatically be decreased if needed.
11285
11286 @item increase
11287 The output video dimensions will automatically be increased if needed.
11288
11289 @end table
11290
11291 One useful instance of this option is that when you know a specific device's
11292 maximum allowed resolution, you can use this to limit the output video to
11293 that, while retaining the aspect ratio. For example, device A allows
11294 1280x720 playback, and your video is 1920x800. Using this option (set it to
11295 decrease) and specifying 1280x720 to the command line makes the output
11296 1280x533.
11297
11298 Please note that this is a different thing than specifying -1 for @option{w}
11299 or @option{h}, you still need to specify the output resolution for this option
11300 to work.
11301
11302 @end table
11303
11304 The values of the @option{w} and @option{h} options are expressions
11305 containing the following constants:
11306
11307 @table @var
11308 @item in_w
11309 @item in_h
11310 The input width and height
11311
11312 @item iw
11313 @item ih
11314 These are the same as @var{in_w} and @var{in_h}.
11315
11316 @item out_w
11317 @item out_h
11318 The output (scaled) width and height
11319
11320 @item ow
11321 @item oh
11322 These are the same as @var{out_w} and @var{out_h}
11323
11324 @item a
11325 The same as @var{iw} / @var{ih}
11326
11327 @item sar
11328 input sample aspect ratio
11329
11330 @item dar
11331 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11332
11333 @item hsub
11334 @item vsub
11335 horizontal and vertical input chroma subsample values. For example for the
11336 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11337
11338 @item ohsub
11339 @item ovsub
11340 horizontal and vertical output chroma subsample values. For example for the
11341 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11342 @end table
11343
11344 @subsection Examples
11345
11346 @itemize
11347 @item
11348 Scale the input video to a size of 200x100
11349 @example
11350 scale=w=200:h=100
11351 @end example
11352
11353 This is equivalent to:
11354 @example
11355 scale=200:100
11356 @end example
11357
11358 or:
11359 @example
11360 scale=200x100
11361 @end example
11362
11363 @item
11364 Specify a size abbreviation for the output size:
11365 @example
11366 scale=qcif
11367 @end example
11368
11369 which can also be written as:
11370 @example
11371 scale=size=qcif
11372 @end example
11373
11374 @item
11375 Scale the input to 2x:
11376 @example
11377 scale=w=2*iw:h=2*ih
11378 @end example
11379
11380 @item
11381 The above is the same as:
11382 @example
11383 scale=2*in_w:2*in_h
11384 @end example
11385
11386 @item
11387 Scale the input to 2x with forced interlaced scaling:
11388 @example
11389 scale=2*iw:2*ih:interl=1
11390 @end example
11391
11392 @item
11393 Scale the input to half size:
11394 @example
11395 scale=w=iw/2:h=ih/2
11396 @end example
11397
11398 @item
11399 Increase the width, and set the height to the same size:
11400 @example
11401 scale=3/2*iw:ow
11402 @end example
11403
11404 @item
11405 Seek Greek harmony:
11406 @example
11407 scale=iw:1/PHI*iw
11408 scale=ih*PHI:ih
11409 @end example
11410
11411 @item
11412 Increase the height, and set the width to 3/2 of the height:
11413 @example
11414 scale=w=3/2*oh:h=3/5*ih
11415 @end example
11416
11417 @item
11418 Increase the size, making the size a multiple of the chroma
11419 subsample values:
11420 @example
11421 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
11422 @end example
11423
11424 @item
11425 Increase the width to a maximum of 500 pixels,
11426 keeping the same aspect ratio as the input:
11427 @example
11428 scale=w='min(500\, iw*3/2):h=-1'
11429 @end example
11430 @end itemize
11431
11432 @subsection Commands
11433
11434 This filter supports the following commands:
11435 @table @option
11436 @item width, w
11437 @item height, h
11438 Set the output video dimension expression.
11439 The command accepts the same syntax of the corresponding option.
11440
11441 If the specified expression is not valid, it is kept at its current
11442 value.
11443 @end table
11444
11445 @section scale_npp
11446
11447 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
11448 format conversion on CUDA video frames. Setting the output width and height
11449 works in the same way as for the @var{scale} filter.
11450
11451 The following additional options are accepted:
11452 @table @option
11453 @item format
11454 The pixel format of the output CUDA frames. If set to the string "same" (the
11455 default), the input format will be kept. Note that automatic format negotiation
11456 and conversion is not yet supported for hardware frames
11457
11458 @item interp_algo
11459 The interpolation algorithm used for resizing. One of the following:
11460 @table @option
11461 @item nn
11462 Nearest neighbour.
11463
11464 @item linear
11465 @item cubic
11466 @item cubic2p_bspline
11467 2-parameter cubic (B=1, C=0)
11468
11469 @item cubic2p_catmullrom
11470 2-parameter cubic (B=0, C=1/2)
11471
11472 @item cubic2p_b05c03
11473 2-parameter cubic (B=1/2, C=3/10)
11474
11475 @item super
11476 Supersampling
11477
11478 @item lanczos
11479 @end table
11480
11481 @end table
11482
11483 @section scale2ref
11484
11485 Scale (resize) the input video, based on a reference video.
11486
11487 See the scale filter for available options, scale2ref supports the same but
11488 uses the reference video instead of the main input as basis.
11489
11490 @subsection Examples
11491
11492 @itemize
11493 @item
11494 Scale a subtitle stream to match the main video in size before overlaying
11495 @example
11496 'scale2ref[b][a];[a][b]overlay'
11497 @end example
11498 @end itemize
11499
11500 @anchor{selectivecolor}
11501 @section selectivecolor
11502
11503 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
11504 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
11505 by the "purity" of the color (that is, how saturated it already is).
11506
11507 This filter is similar to the Adobe Photoshop Selective Color tool.
11508
11509 The filter accepts the following options:
11510
11511 @table @option
11512 @item correction_method
11513 Select color correction method.
11514
11515 Available values are:
11516 @table @samp
11517 @item absolute
11518 Specified adjustments are applied "as-is" (added/subtracted to original pixel
11519 component value).
11520 @item relative
11521 Specified adjustments are relative to the original component value.
11522 @end table
11523 Default is @code{absolute}.
11524 @item reds
11525 Adjustments for red pixels (pixels where the red component is the maximum)
11526 @item yellows
11527 Adjustments for yellow pixels (pixels where the blue component is the minimum)
11528 @item greens
11529 Adjustments for green pixels (pixels where the green component is the maximum)
11530 @item cyans
11531 Adjustments for cyan pixels (pixels where the red component is the minimum)
11532 @item blues
11533 Adjustments for blue pixels (pixels where the blue component is the maximum)
11534 @item magentas
11535 Adjustments for magenta pixels (pixels where the green component is the minimum)
11536 @item whites
11537 Adjustments for white pixels (pixels where all components are greater than 128)
11538 @item neutrals
11539 Adjustments for all pixels except pure black and pure white
11540 @item blacks
11541 Adjustments for black pixels (pixels where all components are lesser than 128)
11542 @item psfile
11543 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
11544 @end table
11545
11546 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
11547 4 space separated floating point adjustment values in the [-1,1] range,
11548 respectively to adjust the amount of cyan, magenta, yellow and black for the
11549 pixels of its range.
11550
11551 @subsection Examples
11552
11553 @itemize
11554 @item
11555 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
11556 increase magenta by 27% in blue areas:
11557 @example
11558 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
11559 @end example
11560
11561 @item
11562 Use a Photoshop selective color preset:
11563 @example
11564 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
11565 @end example
11566 @end itemize
11567
11568 @section separatefields
11569
11570 The @code{separatefields} takes a frame-based video input and splits
11571 each frame into its components fields, producing a new half height clip
11572 with twice the frame rate and twice the frame count.
11573
11574 This filter use field-dominance information in frame to decide which
11575 of each pair of fields to place first in the output.
11576 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
11577
11578 @section setdar, setsar
11579
11580 The @code{setdar} filter sets the Display Aspect Ratio for the filter
11581 output video.
11582
11583 This is done by changing the specified Sample (aka Pixel) Aspect
11584 Ratio, according to the following equation:
11585 @example
11586 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
11587 @end example
11588
11589 Keep in mind that the @code{setdar} filter does not modify the pixel
11590 dimensions of the video frame. Also, the display aspect ratio set by
11591 this filter may be changed by later filters in the filterchain,
11592 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
11593 applied.
11594
11595 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
11596 the filter output video.
11597
11598 Note that as a consequence of the application of this filter, the
11599 output display aspect ratio will change according to the equation
11600 above.
11601
11602 Keep in mind that the sample aspect ratio set by the @code{setsar}
11603 filter may be changed by later filters in the filterchain, e.g. if
11604 another "setsar" or a "setdar" filter is applied.
11605
11606 It accepts the following parameters:
11607
11608 @table @option
11609 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
11610 Set the aspect ratio used by the filter.
11611
11612 The parameter can be a floating point number string, an expression, or
11613 a string of the form @var{num}:@var{den}, where @var{num} and
11614 @var{den} are the numerator and denominator of the aspect ratio. If
11615 the parameter is not specified, it is assumed the value "0".
11616 In case the form "@var{num}:@var{den}" is used, the @code{:} character
11617 should be escaped.
11618
11619 @item max
11620 Set the maximum integer value to use for expressing numerator and
11621 denominator when reducing the expressed aspect ratio to a rational.
11622 Default value is @code{100}.
11623
11624 @end table
11625
11626 The parameter @var{sar} is an expression containing
11627 the following constants:
11628
11629 @table @option
11630 @item E, PI, PHI
11631 These are approximated values for the mathematical constants e
11632 (Euler's number), pi (Greek pi), and phi (the golden ratio).
11633
11634 @item w, h
11635 The input width and height.
11636
11637 @item a
11638 These are the same as @var{w} / @var{h}.
11639
11640 @item sar
11641 The input sample aspect ratio.
11642
11643 @item dar
11644 The input display aspect ratio. It is the same as
11645 (@var{w} / @var{h}) * @var{sar}.
11646
11647 @item hsub, vsub
11648 Horizontal and vertical chroma subsample values. For example, for the
11649 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11650 @end table
11651
11652 @subsection Examples
11653
11654 @itemize
11655
11656 @item
11657 To change the display aspect ratio to 16:9, specify one of the following:
11658 @example
11659 setdar=dar=1.77777
11660 setdar=dar=16/9
11661 @end example
11662
11663 @item
11664 To change the sample aspect ratio to 10:11, specify:
11665 @example
11666 setsar=sar=10/11
11667 @end example
11668
11669 @item
11670 To set a display aspect ratio of 16:9, and specify a maximum integer value of
11671 1000 in the aspect ratio reduction, use the command:
11672 @example
11673 setdar=ratio=16/9:max=1000
11674 @end example
11675
11676 @end itemize
11677
11678 @anchor{setfield}
11679 @section setfield
11680
11681 Force field for the output video frame.
11682
11683 The @code{setfield} filter marks the interlace type field for the
11684 output frames. It does not change the input frame, but only sets the
11685 corresponding property, which affects how the frame is treated by
11686 following filters (e.g. @code{fieldorder} or @code{yadif}).
11687
11688 The filter accepts the following options:
11689
11690 @table @option
11691
11692 @item mode
11693 Available values are:
11694
11695 @table @samp
11696 @item auto
11697 Keep the same field property.
11698
11699 @item bff
11700 Mark the frame as bottom-field-first.
11701
11702 @item tff
11703 Mark the frame as top-field-first.
11704
11705 @item prog
11706 Mark the frame as progressive.
11707 @end table
11708 @end table
11709
11710 @section showinfo
11711
11712 Show a line containing various information for each input video frame.
11713 The input video is not modified.
11714
11715 The shown line contains a sequence of key/value pairs of the form
11716 @var{key}:@var{value}.
11717
11718 The following values are shown in the output:
11719
11720 @table @option
11721 @item n
11722 The (sequential) number of the input frame, starting from 0.
11723
11724 @item pts
11725 The Presentation TimeStamp of the input frame, expressed as a number of
11726 time base units. The time base unit depends on the filter input pad.
11727
11728 @item pts_time
11729 The Presentation TimeStamp of the input frame, expressed as a number of
11730 seconds.
11731
11732 @item pos
11733 The position of the frame in the input stream, or -1 if this information is
11734 unavailable and/or meaningless (for example in case of synthetic video).
11735
11736 @item fmt
11737 The pixel format name.
11738
11739 @item sar
11740 The sample aspect ratio of the input frame, expressed in the form
11741 @var{num}/@var{den}.
11742
11743 @item s
11744 The size of the input frame. For the syntax of this option, check the
11745 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11746
11747 @item i
11748 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
11749 for bottom field first).
11750
11751 @item iskey
11752 This is 1 if the frame is a key frame, 0 otherwise.
11753
11754 @item type
11755 The picture type of the input frame ("I" for an I-frame, "P" for a
11756 P-frame, "B" for a B-frame, or "?" for an unknown type).
11757 Also refer to the documentation of the @code{AVPictureType} enum and of
11758 the @code{av_get_picture_type_char} function defined in
11759 @file{libavutil/avutil.h}.
11760
11761 @item checksum
11762 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
11763
11764 @item plane_checksum
11765 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
11766 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
11767 @end table
11768
11769 @section showpalette
11770
11771 Displays the 256 colors palette of each frame. This filter is only relevant for
11772 @var{pal8} pixel format frames.
11773
11774 It accepts the following option:
11775
11776 @table @option
11777 @item s
11778 Set the size of the box used to represent one palette color entry. Default is
11779 @code{30} (for a @code{30x30} pixel box).
11780 @end table
11781
11782 @section shuffleframes
11783
11784 Reorder and/or duplicate video frames.
11785
11786 It accepts the following parameters:
11787
11788 @table @option
11789 @item mapping
11790 Set the destination indexes of input frames.
11791 This is space or '|' separated list of indexes that maps input frames to output
11792 frames. Number of indexes also sets maximal value that each index may have.
11793 @end table
11794
11795 The first frame has the index 0. The default is to keep the input unchanged.
11796
11797 Swap second and third frame of every three frames of the input:
11798 @example
11799 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
11800 @end example
11801
11802 @section shuffleplanes
11803
11804 Reorder and/or duplicate video planes.
11805
11806 It accepts the following parameters:
11807
11808 @table @option
11809
11810 @item map0
11811 The index of the input plane to be used as the first output plane.
11812
11813 @item map1
11814 The index of the input plane to be used as the second output plane.
11815
11816 @item map2
11817 The index of the input plane to be used as the third output plane.
11818
11819 @item map3
11820 The index of the input plane to be used as the fourth output plane.
11821
11822 @end table
11823
11824 The first plane has the index 0. The default is to keep the input unchanged.
11825
11826 Swap the second and third planes of the input:
11827 @example
11828 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
11829 @end example
11830
11831 @anchor{signalstats}
11832 @section signalstats
11833 Evaluate various visual metrics that assist in determining issues associated
11834 with the digitization of analog video media.
11835
11836 By default the filter will log these metadata values:
11837
11838 @table @option
11839 @item YMIN
11840 Display the minimal Y value contained within the input frame. Expressed in
11841 range of [0-255].
11842
11843 @item YLOW
11844 Display the Y value at the 10% percentile within the input frame. Expressed in
11845 range of [0-255].
11846
11847 @item YAVG
11848 Display the average Y value within the input frame. Expressed in range of
11849 [0-255].
11850
11851 @item YHIGH
11852 Display the Y value at the 90% percentile within the input frame. Expressed in
11853 range of [0-255].
11854
11855 @item YMAX
11856 Display the maximum Y value contained within the input frame. Expressed in
11857 range of [0-255].
11858
11859 @item UMIN
11860 Display the minimal U value contained within the input frame. Expressed in
11861 range of [0-255].
11862
11863 @item ULOW
11864 Display the U value at the 10% percentile within the input frame. Expressed in
11865 range of [0-255].
11866
11867 @item UAVG
11868 Display the average U value within the input frame. Expressed in range of
11869 [0-255].
11870
11871 @item UHIGH
11872 Display the U value at the 90% percentile within the input frame. Expressed in
11873 range of [0-255].
11874
11875 @item UMAX
11876 Display the maximum U value contained within the input frame. Expressed in
11877 range of [0-255].
11878
11879 @item VMIN
11880 Display the minimal V value contained within the input frame. Expressed in
11881 range of [0-255].
11882
11883 @item VLOW
11884 Display the V value at the 10% percentile within the input frame. Expressed in
11885 range of [0-255].
11886
11887 @item VAVG
11888 Display the average V value within the input frame. Expressed in range of
11889 [0-255].
11890
11891 @item VHIGH
11892 Display the V value at the 90% percentile within the input frame. Expressed in
11893 range of [0-255].
11894
11895 @item VMAX
11896 Display the maximum V value contained within the input frame. Expressed in
11897 range of [0-255].
11898
11899 @item SATMIN
11900 Display the minimal saturation value contained within the input frame.
11901 Expressed in range of [0-~181.02].
11902
11903 @item SATLOW
11904 Display the saturation value at the 10% percentile within the input frame.
11905 Expressed in range of [0-~181.02].
11906
11907 @item SATAVG
11908 Display the average saturation value within the input frame. Expressed in range
11909 of [0-~181.02].
11910
11911 @item SATHIGH
11912 Display the saturation value at the 90% percentile within the input frame.
11913 Expressed in range of [0-~181.02].
11914
11915 @item SATMAX
11916 Display the maximum saturation value contained within the input frame.
11917 Expressed in range of [0-~181.02].
11918
11919 @item HUEMED
11920 Display the median value for hue within the input frame. Expressed in range of
11921 [0-360].
11922
11923 @item HUEAVG
11924 Display the average value for hue within the input frame. Expressed in range of
11925 [0-360].
11926
11927 @item YDIF
11928 Display the average of sample value difference between all values of the Y
11929 plane in the current frame and corresponding values of the previous input frame.
11930 Expressed in range of [0-255].
11931
11932 @item UDIF
11933 Display the average of sample value difference between all values of the U
11934 plane in the current frame and corresponding values of the previous input frame.
11935 Expressed in range of [0-255].
11936
11937 @item VDIF
11938 Display the average of sample value difference between all values of the V
11939 plane in the current frame and corresponding values of the previous input frame.
11940 Expressed in range of [0-255].
11941 @end table
11942
11943 The filter accepts the following options:
11944
11945 @table @option
11946 @item stat
11947 @item out
11948
11949 @option{stat} specify an additional form of image analysis.
11950 @option{out} output video with the specified type of pixel highlighted.
11951
11952 Both options accept the following values:
11953
11954 @table @samp
11955 @item tout
11956 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
11957 unlike the neighboring pixels of the same field. Examples of temporal outliers
11958 include the results of video dropouts, head clogs, or tape tracking issues.
11959
11960 @item vrep
11961 Identify @var{vertical line repetition}. Vertical line repetition includes
11962 similar rows of pixels within a frame. In born-digital video vertical line
11963 repetition is common, but this pattern is uncommon in video digitized from an
11964 analog source. When it occurs in video that results from the digitization of an
11965 analog source it can indicate concealment from a dropout compensator.
11966
11967 @item brng
11968 Identify pixels that fall outside of legal broadcast range.
11969 @end table
11970
11971 @item color, c
11972 Set the highlight color for the @option{out} option. The default color is
11973 yellow.
11974 @end table
11975
11976 @subsection Examples
11977
11978 @itemize
11979 @item
11980 Output data of various video metrics:
11981 @example
11982 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
11983 @end example
11984
11985 @item
11986 Output specific data about the minimum and maximum values of the Y plane per frame:
11987 @example
11988 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
11989 @end example
11990
11991 @item
11992 Playback video while highlighting pixels that are outside of broadcast range in red.
11993 @example
11994 ffplay example.mov -vf signalstats="out=brng:color=red"
11995 @end example
11996
11997 @item
11998 Playback video with signalstats metadata drawn over the frame.
11999 @example
12000 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12001 @end example
12002
12003 The contents of signalstat_drawtext.txt used in the command are:
12004 @example
12005 time %@{pts:hms@}
12006 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12007 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12008 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12009 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12010
12011 @end example
12012 @end itemize
12013
12014 @anchor{smartblur}
12015 @section smartblur
12016
12017 Blur the input video without impacting the outlines.
12018
12019 It accepts the following options:
12020
12021 @table @option
12022 @item luma_radius, lr
12023 Set the luma radius. The option value must be a float number in
12024 the range [0.1,5.0] that specifies the variance of the gaussian filter
12025 used to blur the image (slower if larger). Default value is 1.0.
12026
12027 @item luma_strength, ls
12028 Set the luma strength. The option value must be a float number
12029 in the range [-1.0,1.0] that configures the blurring. A value included
12030 in [0.0,1.0] will blur the image whereas a value included in
12031 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12032
12033 @item luma_threshold, lt
12034 Set the luma threshold used as a coefficient to determine
12035 whether a pixel should be blurred or not. The option value must be an
12036 integer in the range [-30,30]. A value of 0 will filter all the image,
12037 a value included in [0,30] will filter flat areas and a value included
12038 in [-30,0] will filter edges. Default value is 0.
12039
12040 @item chroma_radius, cr
12041 Set the chroma radius. The option value must be a float number in
12042 the range [0.1,5.0] that specifies the variance of the gaussian filter
12043 used to blur the image (slower if larger). Default value is 1.0.
12044
12045 @item chroma_strength, cs
12046 Set the chroma strength. The option value must be a float number
12047 in the range [-1.0,1.0] that configures the blurring. A value included
12048 in [0.0,1.0] will blur the image whereas a value included in
12049 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12050
12051 @item chroma_threshold, ct
12052 Set the chroma threshold used as a coefficient to determine
12053 whether a pixel should be blurred or not. The option value must be an
12054 integer in the range [-30,30]. A value of 0 will filter all the image,
12055 a value included in [0,30] will filter flat areas and a value included
12056 in [-30,0] will filter edges. Default value is 0.
12057 @end table
12058
12059 If a chroma option is not explicitly set, the corresponding luma value
12060 is set.
12061
12062 @section ssim
12063
12064 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12065
12066 This filter takes in input two input videos, the first input is
12067 considered the "main" source and is passed unchanged to the
12068 output. The second input is used as a "reference" video for computing
12069 the SSIM.
12070
12071 Both video inputs must have the same resolution and pixel format for
12072 this filter to work correctly. Also it assumes that both inputs
12073 have the same number of frames, which are compared one by one.
12074
12075 The filter stores the calculated SSIM of each frame.
12076
12077 The description of the accepted parameters follows.
12078
12079 @table @option
12080 @item stats_file, f
12081 If specified the filter will use the named file to save the SSIM of
12082 each individual frame. When filename equals "-" the data is sent to
12083 standard output.
12084 @end table
12085
12086 The file printed if @var{stats_file} is selected, contains a sequence of
12087 key/value pairs of the form @var{key}:@var{value} for each compared
12088 couple of frames.
12089
12090 A description of each shown parameter follows:
12091
12092 @table @option
12093 @item n
12094 sequential number of the input frame, starting from 1
12095
12096 @item Y, U, V, R, G, B
12097 SSIM of the compared frames for the component specified by the suffix.
12098
12099 @item All
12100 SSIM of the compared frames for the whole frame.
12101
12102 @item dB
12103 Same as above but in dB representation.
12104 @end table
12105
12106 For example:
12107 @example
12108 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12109 [main][ref] ssim="stats_file=stats.log" [out]
12110 @end example
12111
12112 On this example the input file being processed is compared with the
12113 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12114 is stored in @file{stats.log}.
12115
12116 Another example with both psnr and ssim at same time:
12117 @example
12118 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12119 @end example
12120
12121 @section stereo3d
12122
12123 Convert between different stereoscopic image formats.
12124
12125 The filters accept the following options:
12126
12127 @table @option
12128 @item in
12129 Set stereoscopic image format of input.
12130
12131 Available values for input image formats are:
12132 @table @samp
12133 @item sbsl
12134 side by side parallel (left eye left, right eye right)
12135
12136 @item sbsr
12137 side by side crosseye (right eye left, left eye right)
12138
12139 @item sbs2l
12140 side by side parallel with half width resolution
12141 (left eye left, right eye right)
12142
12143 @item sbs2r
12144 side by side crosseye with half width resolution
12145 (right eye left, left eye right)
12146
12147 @item abl
12148 above-below (left eye above, right eye below)
12149
12150 @item abr
12151 above-below (right eye above, left eye below)
12152
12153 @item ab2l
12154 above-below with half height resolution
12155 (left eye above, right eye below)
12156
12157 @item ab2r
12158 above-below with half height resolution
12159 (right eye above, left eye below)
12160
12161 @item al
12162 alternating frames (left eye first, right eye second)
12163
12164 @item ar
12165 alternating frames (right eye first, left eye second)
12166
12167 @item irl
12168 interleaved rows (left eye has top row, right eye starts on next row)
12169
12170 @item irr
12171 interleaved rows (right eye has top row, left eye starts on next row)
12172
12173 @item icl
12174 interleaved columns, left eye first
12175
12176 @item icr
12177 interleaved columns, right eye first
12178
12179 Default value is @samp{sbsl}.
12180 @end table
12181
12182 @item out
12183 Set stereoscopic image format of output.
12184
12185 @table @samp
12186 @item sbsl
12187 side by side parallel (left eye left, right eye right)
12188
12189 @item sbsr
12190 side by side crosseye (right eye left, left eye right)
12191
12192 @item sbs2l
12193 side by side parallel with half width resolution
12194 (left eye left, right eye right)
12195
12196 @item sbs2r
12197 side by side crosseye with half width resolution
12198 (right eye left, left eye right)
12199
12200 @item abl
12201 above-below (left eye above, right eye below)
12202
12203 @item abr
12204 above-below (right eye above, left eye below)
12205
12206 @item ab2l
12207 above-below with half height resolution
12208 (left eye above, right eye below)
12209
12210 @item ab2r
12211 above-below with half height resolution
12212 (right eye above, left eye below)
12213
12214 @item al
12215 alternating frames (left eye first, right eye second)
12216
12217 @item ar
12218 alternating frames (right eye first, left eye second)
12219
12220 @item irl
12221 interleaved rows (left eye has top row, right eye starts on next row)
12222
12223 @item irr
12224 interleaved rows (right eye has top row, left eye starts on next row)
12225
12226 @item arbg
12227 anaglyph red/blue gray
12228 (red filter on left eye, blue filter on right eye)
12229
12230 @item argg
12231 anaglyph red/green gray
12232 (red filter on left eye, green filter on right eye)
12233
12234 @item arcg
12235 anaglyph red/cyan gray
12236 (red filter on left eye, cyan filter on right eye)
12237
12238 @item arch
12239 anaglyph red/cyan half colored
12240 (red filter on left eye, cyan filter on right eye)
12241
12242 @item arcc
12243 anaglyph red/cyan color
12244 (red filter on left eye, cyan filter on right eye)
12245
12246 @item arcd
12247 anaglyph red/cyan color optimized with the least squares projection of dubois
12248 (red filter on left eye, cyan filter on right eye)
12249
12250 @item agmg
12251 anaglyph green/magenta gray
12252 (green filter on left eye, magenta filter on right eye)
12253
12254 @item agmh
12255 anaglyph green/magenta half colored
12256 (green filter on left eye, magenta filter on right eye)
12257
12258 @item agmc
12259 anaglyph green/magenta colored
12260 (green filter on left eye, magenta filter on right eye)
12261
12262 @item agmd
12263 anaglyph green/magenta color optimized with the least squares projection of dubois
12264 (green filter on left eye, magenta filter on right eye)
12265
12266 @item aybg
12267 anaglyph yellow/blue gray
12268 (yellow filter on left eye, blue filter on right eye)
12269
12270 @item aybh
12271 anaglyph yellow/blue half colored
12272 (yellow filter on left eye, blue filter on right eye)
12273
12274 @item aybc
12275 anaglyph yellow/blue colored
12276 (yellow filter on left eye, blue filter on right eye)
12277
12278 @item aybd
12279 anaglyph yellow/blue color optimized with the least squares projection of dubois
12280 (yellow filter on left eye, blue filter on right eye)
12281
12282 @item ml
12283 mono output (left eye only)
12284
12285 @item mr
12286 mono output (right eye only)
12287
12288 @item chl
12289 checkerboard, left eye first
12290
12291 @item chr
12292 checkerboard, right eye first
12293
12294 @item icl
12295 interleaved columns, left eye first
12296
12297 @item icr
12298 interleaved columns, right eye first
12299
12300 @item hdmi
12301 HDMI frame pack
12302 @end table
12303
12304 Default value is @samp{arcd}.
12305 @end table
12306
12307 @subsection Examples
12308
12309 @itemize
12310 @item
12311 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12312 @example
12313 stereo3d=sbsl:aybd
12314 @end example
12315
12316 @item
12317 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12318 @example
12319 stereo3d=abl:sbsr
12320 @end example
12321 @end itemize
12322
12323 @section streamselect, astreamselect
12324 Select video or audio streams.
12325
12326 The filter accepts the following options:
12327
12328 @table @option
12329 @item inputs
12330 Set number of inputs. Default is 2.
12331
12332 @item map
12333 Set input indexes to remap to outputs.
12334 @end table
12335
12336 @subsection Commands
12337
12338 The @code{streamselect} and @code{astreamselect} filter supports the following
12339 commands:
12340
12341 @table @option
12342 @item map
12343 Set input indexes to remap to outputs.
12344 @end table
12345
12346 @subsection Examples
12347
12348 @itemize
12349 @item
12350 Select first 5 seconds 1st stream and rest of time 2nd stream:
12351 @example
12352 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12353 @end example
12354
12355 @item
12356 Same as above, but for audio:
12357 @example
12358 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12359 @end example
12360 @end itemize
12361
12362 @anchor{spp}
12363 @section spp
12364
12365 Apply a simple postprocessing filter that compresses and decompresses the image
12366 at several (or - in the case of @option{quality} level @code{6} - all) shifts
12367 and average the results.
12368
12369 The filter accepts the following options:
12370
12371 @table @option
12372 @item quality
12373 Set quality. This option defines the number of levels for averaging. It accepts
12374 an integer in the range 0-6. If set to @code{0}, the filter will have no
12375 effect. A value of @code{6} means the higher quality. For each increment of
12376 that value the speed drops by a factor of approximately 2.  Default value is
12377 @code{3}.
12378
12379 @item qp
12380 Force a constant quantization parameter. If not set, the filter will use the QP
12381 from the video stream (if available).
12382
12383 @item mode
12384 Set thresholding mode. Available modes are:
12385
12386 @table @samp
12387 @item hard
12388 Set hard thresholding (default).
12389 @item soft
12390 Set soft thresholding (better de-ringing effect, but likely blurrier).
12391 @end table
12392
12393 @item use_bframe_qp
12394 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12395 option may cause flicker since the B-Frames have often larger QP. Default is
12396 @code{0} (not enabled).
12397 @end table
12398
12399 @anchor{subtitles}
12400 @section subtitles
12401
12402 Draw subtitles on top of input video using the libass library.
12403
12404 To enable compilation of this filter you need to configure FFmpeg with
12405 @code{--enable-libass}. This filter also requires a build with libavcodec and
12406 libavformat to convert the passed subtitles file to ASS (Advanced Substation
12407 Alpha) subtitles format.
12408
12409 The filter accepts the following options:
12410
12411 @table @option
12412 @item filename, f
12413 Set the filename of the subtitle file to read. It must be specified.
12414
12415 @item original_size
12416 Specify the size of the original video, the video for which the ASS file
12417 was composed. For the syntax of this option, check the
12418 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12419 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
12420 correctly scale the fonts if the aspect ratio has been changed.
12421
12422 @item fontsdir
12423 Set a directory path containing fonts that can be used by the filter.
12424 These fonts will be used in addition to whatever the font provider uses.
12425
12426 @item charenc
12427 Set subtitles input character encoding. @code{subtitles} filter only. Only
12428 useful if not UTF-8.
12429
12430 @item stream_index, si
12431 Set subtitles stream index. @code{subtitles} filter only.
12432
12433 @item force_style
12434 Override default style or script info parameters of the subtitles. It accepts a
12435 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
12436 @end table
12437
12438 If the first key is not specified, it is assumed that the first value
12439 specifies the @option{filename}.
12440
12441 For example, to render the file @file{sub.srt} on top of the input
12442 video, use the command:
12443 @example
12444 subtitles=sub.srt
12445 @end example
12446
12447 which is equivalent to:
12448 @example
12449 subtitles=filename=sub.srt
12450 @end example
12451
12452 To render the default subtitles stream from file @file{video.mkv}, use:
12453 @example
12454 subtitles=video.mkv
12455 @end example
12456
12457 To render the second subtitles stream from that file, use:
12458 @example
12459 subtitles=video.mkv:si=1
12460 @end example
12461
12462 To make the subtitles stream from @file{sub.srt} appear in transparent green
12463 @code{DejaVu Serif}, use:
12464 @example
12465 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
12466 @end example
12467
12468 @section super2xsai
12469
12470 Scale the input by 2x and smooth using the Super2xSaI (Scale and
12471 Interpolate) pixel art scaling algorithm.
12472
12473 Useful for enlarging pixel art images without reducing sharpness.
12474
12475 @section swaprect
12476
12477 Swap two rectangular objects in video.
12478
12479 This filter accepts the following options:
12480
12481 @table @option
12482 @item w
12483 Set object width.
12484
12485 @item h
12486 Set object height.
12487
12488 @item x1
12489 Set 1st rect x coordinate.
12490
12491 @item y1
12492 Set 1st rect y coordinate.
12493
12494 @item x2
12495 Set 2nd rect x coordinate.
12496
12497 @item y2
12498 Set 2nd rect y coordinate.
12499
12500 All expressions are evaluated once for each frame.
12501 @end table
12502
12503 The all options are expressions containing the following constants:
12504
12505 @table @option
12506 @item w
12507 @item h
12508 The input width and height.
12509
12510 @item a
12511 same as @var{w} / @var{h}
12512
12513 @item sar
12514 input sample aspect ratio
12515
12516 @item dar
12517 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
12518
12519 @item n
12520 The number of the input frame, starting from 0.
12521
12522 @item t
12523 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
12524
12525 @item pos
12526 the position in the file of the input frame, NAN if unknown
12527 @end table
12528
12529 @section swapuv
12530 Swap U & V plane.
12531
12532 @section telecine
12533
12534 Apply telecine process to the video.
12535
12536 This filter accepts the following options:
12537
12538 @table @option
12539 @item first_field
12540 @table @samp
12541 @item top, t
12542 top field first
12543 @item bottom, b
12544 bottom field first
12545 The default value is @code{top}.
12546 @end table
12547
12548 @item pattern
12549 A string of numbers representing the pulldown pattern you wish to apply.
12550 The default value is @code{23}.
12551 @end table
12552
12553 @example
12554 Some typical patterns:
12555
12556 NTSC output (30i):
12557 27.5p: 32222
12558 24p: 23 (classic)
12559 24p: 2332 (preferred)
12560 20p: 33
12561 18p: 334
12562 16p: 3444
12563
12564 PAL output (25i):
12565 27.5p: 12222
12566 24p: 222222222223 ("Euro pulldown")
12567 16.67p: 33
12568 16p: 33333334
12569 @end example
12570
12571 @section thumbnail
12572 Select the most representative frame in a given sequence of consecutive frames.
12573
12574 The filter accepts the following options:
12575
12576 @table @option
12577 @item n
12578 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
12579 will pick one of them, and then handle the next batch of @var{n} frames until
12580 the end. Default is @code{100}.
12581 @end table
12582
12583 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
12584 value will result in a higher memory usage, so a high value is not recommended.
12585
12586 @subsection Examples
12587
12588 @itemize
12589 @item
12590 Extract one picture each 50 frames:
12591 @example
12592 thumbnail=50
12593 @end example
12594
12595 @item
12596 Complete example of a thumbnail creation with @command{ffmpeg}:
12597 @example
12598 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
12599 @end example
12600 @end itemize
12601
12602 @section tile
12603
12604 Tile several successive frames together.
12605
12606 The filter accepts the following options:
12607
12608 @table @option
12609
12610 @item layout
12611 Set the grid size (i.e. the number of lines and columns). For the syntax of
12612 this option, check the
12613 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12614
12615 @item nb_frames
12616 Set the maximum number of frames to render in the given area. It must be less
12617 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
12618 the area will be used.
12619
12620 @item margin
12621 Set the outer border margin in pixels.
12622
12623 @item padding
12624 Set the inner border thickness (i.e. the number of pixels between frames). For
12625 more advanced padding options (such as having different values for the edges),
12626 refer to the pad video filter.
12627
12628 @item color
12629 Specify the color of the unused area. For the syntax of this option, check the
12630 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
12631 is "black".
12632 @end table
12633
12634 @subsection Examples
12635
12636 @itemize
12637 @item
12638 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
12639 @example
12640 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
12641 @end example
12642 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
12643 duplicating each output frame to accommodate the originally detected frame
12644 rate.
12645
12646 @item
12647 Display @code{5} pictures in an area of @code{3x2} frames,
12648 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
12649 mixed flat and named options:
12650 @example
12651 tile=3x2:nb_frames=5:padding=7:margin=2
12652 @end example
12653 @end itemize
12654
12655 @section tinterlace
12656
12657 Perform various types of temporal field interlacing.
12658
12659 Frames are counted starting from 1, so the first input frame is
12660 considered odd.
12661
12662 The filter accepts the following options:
12663
12664 @table @option
12665
12666 @item mode
12667 Specify the mode of the interlacing. This option can also be specified
12668 as a value alone. See below for a list of values for this option.
12669
12670 Available values are:
12671
12672 @table @samp
12673 @item merge, 0
12674 Move odd frames into the upper field, even into the lower field,
12675 generating a double height frame at half frame rate.
12676 @example
12677  ------> time
12678 Input:
12679 Frame 1         Frame 2         Frame 3         Frame 4
12680
12681 11111           22222           33333           44444
12682 11111           22222           33333           44444
12683 11111           22222           33333           44444
12684 11111           22222           33333           44444
12685
12686 Output:
12687 11111                           33333
12688 22222                           44444
12689 11111                           33333
12690 22222                           44444
12691 11111                           33333
12692 22222                           44444
12693 11111                           33333
12694 22222                           44444
12695 @end example
12696
12697 @item drop_even, 1
12698 Only output odd frames, even frames are dropped, generating a frame with
12699 unchanged height at half frame rate.
12700
12701 @example
12702  ------> time
12703 Input:
12704 Frame 1         Frame 2         Frame 3         Frame 4
12705
12706 11111           22222           33333           44444
12707 11111           22222           33333           44444
12708 11111           22222           33333           44444
12709 11111           22222           33333           44444
12710
12711 Output:
12712 11111                           33333
12713 11111                           33333
12714 11111                           33333
12715 11111                           33333
12716 @end example
12717
12718 @item drop_odd, 2
12719 Only output even frames, odd frames are dropped, generating a frame with
12720 unchanged height at half frame rate.
12721
12722 @example
12723  ------> time
12724 Input:
12725 Frame 1         Frame 2         Frame 3         Frame 4
12726
12727 11111           22222           33333           44444
12728 11111           22222           33333           44444
12729 11111           22222           33333           44444
12730 11111           22222           33333           44444
12731
12732 Output:
12733                 22222                           44444
12734                 22222                           44444
12735                 22222                           44444
12736                 22222                           44444
12737 @end example
12738
12739 @item pad, 3
12740 Expand each frame to full height, but pad alternate lines with black,
12741 generating a frame with double height at the same input frame rate.
12742
12743 @example
12744  ------> time
12745 Input:
12746 Frame 1         Frame 2         Frame 3         Frame 4
12747
12748 11111           22222           33333           44444
12749 11111           22222           33333           44444
12750 11111           22222           33333           44444
12751 11111           22222           33333           44444
12752
12753 Output:
12754 11111           .....           33333           .....
12755 .....           22222           .....           44444
12756 11111           .....           33333           .....
12757 .....           22222           .....           44444
12758 11111           .....           33333           .....
12759 .....           22222           .....           44444
12760 11111           .....           33333           .....
12761 .....           22222           .....           44444
12762 @end example
12763
12764
12765 @item interleave_top, 4
12766 Interleave the upper field from odd frames with the lower field from
12767 even frames, generating a frame with unchanged height at half frame rate.
12768
12769 @example
12770  ------> time
12771 Input:
12772 Frame 1         Frame 2         Frame 3         Frame 4
12773
12774 11111<-         22222           33333<-         44444
12775 11111           22222<-         33333           44444<-
12776 11111<-         22222           33333<-         44444
12777 11111           22222<-         33333           44444<-
12778
12779 Output:
12780 11111                           33333
12781 22222                           44444
12782 11111                           33333
12783 22222                           44444
12784 @end example
12785
12786
12787 @item interleave_bottom, 5
12788 Interleave the lower field from odd frames with the upper field from
12789 even frames, generating a frame with unchanged height at half frame rate.
12790
12791 @example
12792  ------> time
12793 Input:
12794 Frame 1         Frame 2         Frame 3         Frame 4
12795
12796 11111           22222<-         33333           44444<-
12797 11111<-         22222           33333<-         44444
12798 11111           22222<-         33333           44444<-
12799 11111<-         22222           33333<-         44444
12800
12801 Output:
12802 22222                           44444
12803 11111                           33333
12804 22222                           44444
12805 11111                           33333
12806 @end example
12807
12808
12809 @item interlacex2, 6
12810 Double frame rate with unchanged height. Frames are inserted each
12811 containing the second temporal field from the previous input frame and
12812 the first temporal field from the next input frame. This mode relies on
12813 the top_field_first flag. Useful for interlaced video displays with no
12814 field synchronisation.
12815
12816 @example
12817  ------> time
12818 Input:
12819 Frame 1         Frame 2         Frame 3         Frame 4
12820
12821 11111           22222           33333           44444
12822  11111           22222           33333           44444
12823 11111           22222           33333           44444
12824  11111           22222           33333           44444
12825
12826 Output:
12827 11111   22222   22222   33333   33333   44444   44444
12828  11111   11111   22222   22222   33333   33333   44444
12829 11111   22222   22222   33333   33333   44444   44444
12830  11111   11111   22222   22222   33333   33333   44444
12831 @end example
12832
12833
12834 @item mergex2, 7
12835 Move odd frames into the upper field, even into the lower field,
12836 generating a double height frame at same frame rate.
12837
12838 @example
12839  ------> time
12840 Input:
12841 Frame 1         Frame 2         Frame 3         Frame 4
12842
12843 11111           22222           33333           44444
12844 11111           22222           33333           44444
12845 11111           22222           33333           44444
12846 11111           22222           33333           44444
12847
12848 Output:
12849 11111           33333           33333           55555
12850 22222           22222           44444           44444
12851 11111           33333           33333           55555
12852 22222           22222           44444           44444
12853 11111           33333           33333           55555
12854 22222           22222           44444           44444
12855 11111           33333           33333           55555
12856 22222           22222           44444           44444
12857 @end example
12858
12859 @end table
12860
12861 Numeric values are deprecated but are accepted for backward
12862 compatibility reasons.
12863
12864 Default mode is @code{merge}.
12865
12866 @item flags
12867 Specify flags influencing the filter process.
12868
12869 Available value for @var{flags} is:
12870
12871 @table @option
12872 @item low_pass_filter, vlfp
12873 Enable vertical low-pass filtering in the filter.
12874 Vertical low-pass filtering is required when creating an interlaced
12875 destination from a progressive source which contains high-frequency
12876 vertical detail. Filtering will reduce interlace 'twitter' and Moire
12877 patterning.
12878
12879 Vertical low-pass filtering can only be enabled for @option{mode}
12880 @var{interleave_top} and @var{interleave_bottom}.
12881
12882 @end table
12883 @end table
12884
12885 @section transpose
12886
12887 Transpose rows with columns in the input video and optionally flip it.
12888
12889 It accepts the following parameters:
12890
12891 @table @option
12892
12893 @item dir
12894 Specify the transposition direction.
12895
12896 Can assume the following values:
12897 @table @samp
12898 @item 0, 4, cclock_flip
12899 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
12900 @example
12901 L.R     L.l
12902 . . ->  . .
12903 l.r     R.r
12904 @end example
12905
12906 @item 1, 5, clock
12907 Rotate by 90 degrees clockwise, that is:
12908 @example
12909 L.R     l.L
12910 . . ->  . .
12911 l.r     r.R
12912 @end example
12913
12914 @item 2, 6, cclock
12915 Rotate by 90 degrees counterclockwise, that is:
12916 @example
12917 L.R     R.r
12918 . . ->  . .
12919 l.r     L.l
12920 @end example
12921
12922 @item 3, 7, clock_flip
12923 Rotate by 90 degrees clockwise and vertically flip, that is:
12924 @example
12925 L.R     r.R
12926 . . ->  . .
12927 l.r     l.L
12928 @end example
12929 @end table
12930
12931 For values between 4-7, the transposition is only done if the input
12932 video geometry is portrait and not landscape. These values are
12933 deprecated, the @code{passthrough} option should be used instead.
12934
12935 Numerical values are deprecated, and should be dropped in favor of
12936 symbolic constants.
12937
12938 @item passthrough
12939 Do not apply the transposition if the input geometry matches the one
12940 specified by the specified value. It accepts the following values:
12941 @table @samp
12942 @item none
12943 Always apply transposition.
12944 @item portrait
12945 Preserve portrait geometry (when @var{height} >= @var{width}).
12946 @item landscape
12947 Preserve landscape geometry (when @var{width} >= @var{height}).
12948 @end table
12949
12950 Default value is @code{none}.
12951 @end table
12952
12953 For example to rotate by 90 degrees clockwise and preserve portrait
12954 layout:
12955 @example
12956 transpose=dir=1:passthrough=portrait
12957 @end example
12958
12959 The command above can also be specified as:
12960 @example
12961 transpose=1:portrait
12962 @end example
12963
12964 @section trim
12965 Trim the input so that the output contains one continuous subpart of the input.
12966
12967 It accepts the following parameters:
12968 @table @option
12969 @item start
12970 Specify the time of the start of the kept section, i.e. the frame with the
12971 timestamp @var{start} will be the first frame in the output.
12972
12973 @item end
12974 Specify the time of the first frame that will be dropped, i.e. the frame
12975 immediately preceding the one with the timestamp @var{end} will be the last
12976 frame in the output.
12977
12978 @item start_pts
12979 This is the same as @var{start}, except this option sets the start timestamp
12980 in timebase units instead of seconds.
12981
12982 @item end_pts
12983 This is the same as @var{end}, except this option sets the end timestamp
12984 in timebase units instead of seconds.
12985
12986 @item duration
12987 The maximum duration of the output in seconds.
12988
12989 @item start_frame
12990 The number of the first frame that should be passed to the output.
12991
12992 @item end_frame
12993 The number of the first frame that should be dropped.
12994 @end table
12995
12996 @option{start}, @option{end}, and @option{duration} are expressed as time
12997 duration specifications; see
12998 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12999 for the accepted syntax.
13000
13001 Note that the first two sets of the start/end options and the @option{duration}
13002 option look at the frame timestamp, while the _frame variants simply count the
13003 frames that pass through the filter. Also note that this filter does not modify
13004 the timestamps. If you wish for the output timestamps to start at zero, insert a
13005 setpts filter after the trim filter.
13006
13007 If multiple start or end options are set, this filter tries to be greedy and
13008 keep all the frames that match at least one of the specified constraints. To keep
13009 only the part that matches all the constraints at once, chain multiple trim
13010 filters.
13011
13012 The defaults are such that all the input is kept. So it is possible to set e.g.
13013 just the end values to keep everything before the specified time.
13014
13015 Examples:
13016 @itemize
13017 @item
13018 Drop everything except the second minute of input:
13019 @example
13020 ffmpeg -i INPUT -vf trim=60:120
13021 @end example
13022
13023 @item
13024 Keep only the first second:
13025 @example
13026 ffmpeg -i INPUT -vf trim=duration=1
13027 @end example
13028
13029 @end itemize
13030
13031
13032 @anchor{unsharp}
13033 @section unsharp
13034
13035 Sharpen or blur the input video.
13036
13037 It accepts the following parameters:
13038
13039 @table @option
13040 @item luma_msize_x, lx
13041 Set the luma matrix horizontal size. It must be an odd integer between
13042 3 and 63. The default value is 5.
13043
13044 @item luma_msize_y, ly
13045 Set the luma matrix vertical size. It must be an odd integer between 3
13046 and 63. The default value is 5.
13047
13048 @item luma_amount, la
13049 Set the luma effect strength. It must be a floating point number, reasonable
13050 values lay between -1.5 and 1.5.
13051
13052 Negative values will blur the input video, while positive values will
13053 sharpen it, a value of zero will disable the effect.
13054
13055 Default value is 1.0.
13056
13057 @item chroma_msize_x, cx
13058 Set the chroma matrix horizontal size. It must be an odd integer
13059 between 3 and 63. The default value is 5.
13060
13061 @item chroma_msize_y, cy
13062 Set the chroma matrix vertical size. It must be an odd integer
13063 between 3 and 63. The default value is 5.
13064
13065 @item chroma_amount, ca
13066 Set the chroma effect strength. It must be a floating point number, reasonable
13067 values lay between -1.5 and 1.5.
13068
13069 Negative values will blur the input video, while positive values will
13070 sharpen it, a value of zero will disable the effect.
13071
13072 Default value is 0.0.
13073
13074 @item opencl
13075 If set to 1, specify using OpenCL capabilities, only available if
13076 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
13077
13078 @end table
13079
13080 All parameters are optional and default to the equivalent of the
13081 string '5:5:1.0:5:5:0.0'.
13082
13083 @subsection Examples
13084
13085 @itemize
13086 @item
13087 Apply strong luma sharpen effect:
13088 @example
13089 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13090 @end example
13091
13092 @item
13093 Apply a strong blur of both luma and chroma parameters:
13094 @example
13095 unsharp=7:7:-2:7:7:-2
13096 @end example
13097 @end itemize
13098
13099 @section uspp
13100
13101 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13102 the image at several (or - in the case of @option{quality} level @code{8} - all)
13103 shifts and average the results.
13104
13105 The way this differs from the behavior of spp is that uspp actually encodes &
13106 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13107 DCT similar to MJPEG.
13108
13109 The filter accepts the following options:
13110
13111 @table @option
13112 @item quality
13113 Set quality. This option defines the number of levels for averaging. It accepts
13114 an integer in the range 0-8. If set to @code{0}, the filter will have no
13115 effect. A value of @code{8} means the higher quality. For each increment of
13116 that value the speed drops by a factor of approximately 2.  Default value is
13117 @code{3}.
13118
13119 @item qp
13120 Force a constant quantization parameter. If not set, the filter will use the QP
13121 from the video stream (if available).
13122 @end table
13123
13124 @section vectorscope
13125
13126 Display 2 color component values in the two dimensional graph (which is called
13127 a vectorscope).
13128
13129 This filter accepts the following options:
13130
13131 @table @option
13132 @item mode, m
13133 Set vectorscope mode.
13134
13135 It accepts the following values:
13136 @table @samp
13137 @item gray
13138 Gray values are displayed on graph, higher brightness means more pixels have
13139 same component color value on location in graph. This is the default mode.
13140
13141 @item color
13142 Gray values are displayed on graph. Surrounding pixels values which are not
13143 present in video frame are drawn in gradient of 2 color components which are
13144 set by option @code{x} and @code{y}. The 3rd color component is static.
13145
13146 @item color2
13147 Actual color components values present in video frame are displayed on graph.
13148
13149 @item color3
13150 Similar as color2 but higher frequency of same values @code{x} and @code{y}
13151 on graph increases value of another color component, which is luminance by
13152 default values of @code{x} and @code{y}.
13153
13154 @item color4
13155 Actual colors present in video frame are displayed on graph. If two different
13156 colors map to same position on graph then color with higher value of component
13157 not present in graph is picked.
13158
13159 @item color5
13160 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
13161 component picked from radial gradient.
13162 @end table
13163
13164 @item x
13165 Set which color component will be represented on X-axis. Default is @code{1}.
13166
13167 @item y
13168 Set which color component will be represented on Y-axis. Default is @code{2}.
13169
13170 @item intensity, i
13171 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
13172 of color component which represents frequency of (X, Y) location in graph.
13173
13174 @item envelope, e
13175 @table @samp
13176 @item none
13177 No envelope, this is default.
13178
13179 @item instant
13180 Instant envelope, even darkest single pixel will be clearly highlighted.
13181
13182 @item peak
13183 Hold maximum and minimum values presented in graph over time. This way you
13184 can still spot out of range values without constantly looking at vectorscope.
13185
13186 @item peak+instant
13187 Peak and instant envelope combined together.
13188 @end table
13189
13190 @item graticule, g
13191 Set what kind of graticule to draw.
13192 @table @samp
13193 @item none
13194 @item green
13195 @item color
13196 @end table
13197
13198 @item opacity, o
13199 Set graticule opacity.
13200
13201 @item flags, f
13202 Set graticule flags.
13203
13204 @table @samp
13205 @item white
13206 Draw graticule for white point.
13207
13208 @item black
13209 Draw graticule for black point.
13210
13211 @item name
13212 Draw color points short names.
13213 @end table
13214
13215 @item bgopacity, b
13216 Set background opacity.
13217
13218 @item lthreshold, l
13219 Set low threshold for color component not represented on X or Y axis.
13220 Values lower than this value will be ignored. Default is 0.
13221 Note this value is multiplied with actual max possible value one pixel component
13222 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13223 is 0.1 * 255 = 25.
13224
13225 @item hthreshold, h
13226 Set high threshold for color component not represented on X or Y axis.
13227 Values higher than this value will be ignored. Default is 1.
13228 Note this value is multiplied with actual max possible value one pixel component
13229 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13230 is 0.9 * 255 = 230.
13231
13232 @item colorspace, c
13233 Set what kind of colorspace to use when drawing graticule.
13234 @table @samp
13235 @item auto
13236 @item 601
13237 @item 709
13238 @end table
13239 Default is auto.
13240 @end table
13241
13242 @anchor{vidstabdetect}
13243 @section vidstabdetect
13244
13245 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
13246 @ref{vidstabtransform} for pass 2.
13247
13248 This filter generates a file with relative translation and rotation
13249 transform information about subsequent frames, which is then used by
13250 the @ref{vidstabtransform} filter.
13251
13252 To enable compilation of this filter you need to configure FFmpeg with
13253 @code{--enable-libvidstab}.
13254
13255 This filter accepts the following options:
13256
13257 @table @option
13258 @item result
13259 Set the path to the file used to write the transforms information.
13260 Default value is @file{transforms.trf}.
13261
13262 @item shakiness
13263 Set how shaky the video is and how quick the camera is. It accepts an
13264 integer in the range 1-10, a value of 1 means little shakiness, a
13265 value of 10 means strong shakiness. Default value is 5.
13266
13267 @item accuracy
13268 Set the accuracy of the detection process. It must be a value in the
13269 range 1-15. A value of 1 means low accuracy, a value of 15 means high
13270 accuracy. Default value is 15.
13271
13272 @item stepsize
13273 Set stepsize of the search process. The region around minimum is
13274 scanned with 1 pixel resolution. Default value is 6.
13275
13276 @item mincontrast
13277 Set minimum contrast. Below this value a local measurement field is
13278 discarded. Must be a floating point value in the range 0-1. Default
13279 value is 0.3.
13280
13281 @item tripod
13282 Set reference frame number for tripod mode.
13283
13284 If enabled, the motion of the frames is compared to a reference frame
13285 in the filtered stream, identified by the specified number. The idea
13286 is to compensate all movements in a more-or-less static scene and keep
13287 the camera view absolutely still.
13288
13289 If set to 0, it is disabled. The frames are counted starting from 1.
13290
13291 @item show
13292 Show fields and transforms in the resulting frames. It accepts an
13293 integer in the range 0-2. Default value is 0, which disables any
13294 visualization.
13295 @end table
13296
13297 @subsection Examples
13298
13299 @itemize
13300 @item
13301 Use default values:
13302 @example
13303 vidstabdetect
13304 @end example
13305
13306 @item
13307 Analyze strongly shaky movie and put the results in file
13308 @file{mytransforms.trf}:
13309 @example
13310 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
13311 @end example
13312
13313 @item
13314 Visualize the result of internal transformations in the resulting
13315 video:
13316 @example
13317 vidstabdetect=show=1
13318 @end example
13319
13320 @item
13321 Analyze a video with medium shakiness using @command{ffmpeg}:
13322 @example
13323 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
13324 @end example
13325 @end itemize
13326
13327 @anchor{vidstabtransform}
13328 @section vidstabtransform
13329
13330 Video stabilization/deshaking: pass 2 of 2,
13331 see @ref{vidstabdetect} for pass 1.
13332
13333 Read a file with transform information for each frame and
13334 apply/compensate them. Together with the @ref{vidstabdetect}
13335 filter this can be used to deshake videos. See also
13336 @url{http://public.hronopik.de/vid.stab}. It is important to also use
13337 the @ref{unsharp} filter, see below.
13338
13339 To enable compilation of this filter you need to configure FFmpeg with
13340 @code{--enable-libvidstab}.
13341
13342 @subsection Options
13343
13344 @table @option
13345 @item input
13346 Set path to the file used to read the transforms. Default value is
13347 @file{transforms.trf}.
13348
13349 @item smoothing
13350 Set the number of frames (value*2 + 1) used for lowpass filtering the
13351 camera movements. Default value is 10.
13352
13353 For example a number of 10 means that 21 frames are used (10 in the
13354 past and 10 in the future) to smoothen the motion in the video. A
13355 larger value leads to a smoother video, but limits the acceleration of
13356 the camera (pan/tilt movements). 0 is a special case where a static
13357 camera is simulated.
13358
13359 @item optalgo
13360 Set the camera path optimization algorithm.
13361
13362 Accepted values are:
13363 @table @samp
13364 @item gauss
13365 gaussian kernel low-pass filter on camera motion (default)
13366 @item avg
13367 averaging on transformations
13368 @end table
13369
13370 @item maxshift
13371 Set maximal number of pixels to translate frames. Default value is -1,
13372 meaning no limit.
13373
13374 @item maxangle
13375 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
13376 value is -1, meaning no limit.
13377
13378 @item crop
13379 Specify how to deal with borders that may be visible due to movement
13380 compensation.
13381
13382 Available values are:
13383 @table @samp
13384 @item keep
13385 keep image information from previous frame (default)
13386 @item black
13387 fill the border black
13388 @end table
13389
13390 @item invert
13391 Invert transforms if set to 1. Default value is 0.
13392
13393 @item relative
13394 Consider transforms as relative to previous frame if set to 1,
13395 absolute if set to 0. Default value is 0.
13396
13397 @item zoom
13398 Set percentage to zoom. A positive value will result in a zoom-in
13399 effect, a negative value in a zoom-out effect. Default value is 0 (no
13400 zoom).
13401
13402 @item optzoom
13403 Set optimal zooming to avoid borders.
13404
13405 Accepted values are:
13406 @table @samp
13407 @item 0
13408 disabled
13409 @item 1
13410 optimal static zoom value is determined (only very strong movements
13411 will lead to visible borders) (default)
13412 @item 2
13413 optimal adaptive zoom value is determined (no borders will be
13414 visible), see @option{zoomspeed}
13415 @end table
13416
13417 Note that the value given at zoom is added to the one calculated here.
13418
13419 @item zoomspeed
13420 Set percent to zoom maximally each frame (enabled when
13421 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
13422 0.25.
13423
13424 @item interpol
13425 Specify type of interpolation.
13426
13427 Available values are:
13428 @table @samp
13429 @item no
13430 no interpolation
13431 @item linear
13432 linear only horizontal
13433 @item bilinear
13434 linear in both directions (default)
13435 @item bicubic
13436 cubic in both directions (slow)
13437 @end table
13438
13439 @item tripod
13440 Enable virtual tripod mode if set to 1, which is equivalent to
13441 @code{relative=0:smoothing=0}. Default value is 0.
13442
13443 Use also @code{tripod} option of @ref{vidstabdetect}.
13444
13445 @item debug
13446 Increase log verbosity if set to 1. Also the detected global motions
13447 are written to the temporary file @file{global_motions.trf}. Default
13448 value is 0.
13449 @end table
13450
13451 @subsection Examples
13452
13453 @itemize
13454 @item
13455 Use @command{ffmpeg} for a typical stabilization with default values:
13456 @example
13457 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
13458 @end example
13459
13460 Note the use of the @ref{unsharp} filter which is always recommended.
13461
13462 @item
13463 Zoom in a bit more and load transform data from a given file:
13464 @example
13465 vidstabtransform=zoom=5:input="mytransforms.trf"
13466 @end example
13467
13468 @item
13469 Smoothen the video even more:
13470 @example
13471 vidstabtransform=smoothing=30
13472 @end example
13473 @end itemize
13474
13475 @section vflip
13476
13477 Flip the input video vertically.
13478
13479 For example, to vertically flip a video with @command{ffmpeg}:
13480 @example
13481 ffmpeg -i in.avi -vf "vflip" out.avi
13482 @end example
13483
13484 @anchor{vignette}
13485 @section vignette
13486
13487 Make or reverse a natural vignetting effect.
13488
13489 The filter accepts the following options:
13490
13491 @table @option
13492 @item angle, a
13493 Set lens angle expression as a number of radians.
13494
13495 The value is clipped in the @code{[0,PI/2]} range.
13496
13497 Default value: @code{"PI/5"}
13498
13499 @item x0
13500 @item y0
13501 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
13502 by default.
13503
13504 @item mode
13505 Set forward/backward mode.
13506
13507 Available modes are:
13508 @table @samp
13509 @item forward
13510 The larger the distance from the central point, the darker the image becomes.
13511
13512 @item backward
13513 The larger the distance from the central point, the brighter the image becomes.
13514 This can be used to reverse a vignette effect, though there is no automatic
13515 detection to extract the lens @option{angle} and other settings (yet). It can
13516 also be used to create a burning effect.
13517 @end table
13518
13519 Default value is @samp{forward}.
13520
13521 @item eval
13522 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
13523
13524 It accepts the following values:
13525 @table @samp
13526 @item init
13527 Evaluate expressions only once during the filter initialization.
13528
13529 @item frame
13530 Evaluate expressions for each incoming frame. This is way slower than the
13531 @samp{init} mode since it requires all the scalers to be re-computed, but it
13532 allows advanced dynamic expressions.
13533 @end table
13534
13535 Default value is @samp{init}.
13536
13537 @item dither
13538 Set dithering to reduce the circular banding effects. Default is @code{1}
13539 (enabled).
13540
13541 @item aspect
13542 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
13543 Setting this value to the SAR of the input will make a rectangular vignetting
13544 following the dimensions of the video.
13545
13546 Default is @code{1/1}.
13547 @end table
13548
13549 @subsection Expressions
13550
13551 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
13552 following parameters.
13553
13554 @table @option
13555 @item w
13556 @item h
13557 input width and height
13558
13559 @item n
13560 the number of input frame, starting from 0
13561
13562 @item pts
13563 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
13564 @var{TB} units, NAN if undefined
13565
13566 @item r
13567 frame rate of the input video, NAN if the input frame rate is unknown
13568
13569 @item t
13570 the PTS (Presentation TimeStamp) of the filtered video frame,
13571 expressed in seconds, NAN if undefined
13572
13573 @item tb
13574 time base of the input video
13575 @end table
13576
13577
13578 @subsection Examples
13579
13580 @itemize
13581 @item
13582 Apply simple strong vignetting effect:
13583 @example
13584 vignette=PI/4
13585 @end example
13586
13587 @item
13588 Make a flickering vignetting:
13589 @example
13590 vignette='PI/4+random(1)*PI/50':eval=frame
13591 @end example
13592
13593 @end itemize
13594
13595 @section vstack
13596 Stack input videos vertically.
13597
13598 All streams must be of same pixel format and of same width.
13599
13600 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13601 to create same output.
13602
13603 The filter accept the following option:
13604
13605 @table @option
13606 @item inputs
13607 Set number of input streams. Default is 2.
13608
13609 @item shortest
13610 If set to 1, force the output to terminate when the shortest input
13611 terminates. Default value is 0.
13612 @end table
13613
13614 @section w3fdif
13615
13616 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
13617 Deinterlacing Filter").
13618
13619 Based on the process described by Martin Weston for BBC R&D, and
13620 implemented based on the de-interlace algorithm written by Jim
13621 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
13622 uses filter coefficients calculated by BBC R&D.
13623
13624 There are two sets of filter coefficients, so called "simple":
13625 and "complex". Which set of filter coefficients is used can
13626 be set by passing an optional parameter:
13627
13628 @table @option
13629 @item filter
13630 Set the interlacing filter coefficients. Accepts one of the following values:
13631
13632 @table @samp
13633 @item simple
13634 Simple filter coefficient set.
13635 @item complex
13636 More-complex filter coefficient set.
13637 @end table
13638 Default value is @samp{complex}.
13639
13640 @item deint
13641 Specify which frames to deinterlace. Accept one of the following values:
13642
13643 @table @samp
13644 @item all
13645 Deinterlace all frames,
13646 @item interlaced
13647 Only deinterlace frames marked as interlaced.
13648 @end table
13649
13650 Default value is @samp{all}.
13651 @end table
13652
13653 @section waveform
13654 Video waveform monitor.
13655
13656 The waveform monitor plots color component intensity. By default luminance
13657 only. Each column of the waveform corresponds to a column of pixels in the
13658 source video.
13659
13660 It accepts the following options:
13661
13662 @table @option
13663 @item mode, m
13664 Can be either @code{row}, or @code{column}. Default is @code{column}.
13665 In row mode, the graph on the left side represents color component value 0 and
13666 the right side represents value = 255. In column mode, the top side represents
13667 color component value = 0 and bottom side represents value = 255.
13668
13669 @item intensity, i
13670 Set intensity. Smaller values are useful to find out how many values of the same
13671 luminance are distributed across input rows/columns.
13672 Default value is @code{0.04}. Allowed range is [0, 1].
13673
13674 @item mirror, r
13675 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
13676 In mirrored mode, higher values will be represented on the left
13677 side for @code{row} mode and at the top for @code{column} mode. Default is
13678 @code{1} (mirrored).
13679
13680 @item display, d
13681 Set display mode.
13682 It accepts the following values:
13683 @table @samp
13684 @item overlay
13685 Presents information identical to that in the @code{parade}, except
13686 that the graphs representing color components are superimposed directly
13687 over one another.
13688
13689 This display mode makes it easier to spot relative differences or similarities
13690 in overlapping areas of the color components that are supposed to be identical,
13691 such as neutral whites, grays, or blacks.
13692
13693 @item stack
13694 Display separate graph for the color components side by side in
13695 @code{row} mode or one below the other in @code{column} mode.
13696
13697 @item parade
13698 Display separate graph for the color components side by side in
13699 @code{column} mode or one below the other in @code{row} mode.
13700
13701 Using this display mode makes it easy to spot color casts in the highlights
13702 and shadows of an image, by comparing the contours of the top and the bottom
13703 graphs of each waveform. Since whites, grays, and blacks are characterized
13704 by exactly equal amounts of red, green, and blue, neutral areas of the picture
13705 should display three waveforms of roughly equal width/height. If not, the
13706 correction is easy to perform by making level adjustments the three waveforms.
13707 @end table
13708 Default is @code{stack}.
13709
13710 @item components, c
13711 Set which color components to display. Default is 1, which means only luminance
13712 or red color component if input is in RGB colorspace. If is set for example to
13713 7 it will display all 3 (if) available color components.
13714
13715 @item envelope, e
13716 @table @samp
13717 @item none
13718 No envelope, this is default.
13719
13720 @item instant
13721 Instant envelope, minimum and maximum values presented in graph will be easily
13722 visible even with small @code{step} value.
13723
13724 @item peak
13725 Hold minimum and maximum values presented in graph across time. This way you
13726 can still spot out of range values without constantly looking at waveforms.
13727
13728 @item peak+instant
13729 Peak and instant envelope combined together.
13730 @end table
13731
13732 @item filter, f
13733 @table @samp
13734 @item lowpass
13735 No filtering, this is default.
13736
13737 @item flat
13738 Luma and chroma combined together.
13739
13740 @item aflat
13741 Similar as above, but shows difference between blue and red chroma.
13742
13743 @item chroma
13744 Displays only chroma.
13745
13746 @item color
13747 Displays actual color value on waveform.
13748
13749 @item acolor
13750 Similar as above, but with luma showing frequency of chroma values.
13751 @end table
13752
13753 @item graticule, g
13754 Set which graticule to display.
13755
13756 @table @samp
13757 @item none
13758 Do not display graticule.
13759
13760 @item green
13761 Display green graticule showing legal broadcast ranges.
13762 @end table
13763
13764 @item opacity, o
13765 Set graticule opacity.
13766
13767 @item flags, fl
13768 Set graticule flags.
13769
13770 @table @samp
13771 @item numbers
13772 Draw numbers above lines. By default enabled.
13773
13774 @item dots
13775 Draw dots instead of lines.
13776 @end table
13777
13778 @item scale, s
13779 Set scale used for displaying graticule.
13780
13781 @table @samp
13782 @item digital
13783 @item millivolts
13784 @item ire
13785 @end table
13786 Default is digital.
13787 @end table
13788
13789 @section xbr
13790 Apply the xBR high-quality magnification filter which is designed for pixel
13791 art. It follows a set of edge-detection rules, see
13792 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
13793
13794 It accepts the following option:
13795
13796 @table @option
13797 @item n
13798 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
13799 @code{3xBR} and @code{4} for @code{4xBR}.
13800 Default is @code{3}.
13801 @end table
13802
13803 @anchor{yadif}
13804 @section yadif
13805
13806 Deinterlace the input video ("yadif" means "yet another deinterlacing
13807 filter").
13808
13809 It accepts the following parameters:
13810
13811
13812 @table @option
13813
13814 @item mode
13815 The interlacing mode to adopt. It accepts one of the following values:
13816
13817 @table @option
13818 @item 0, send_frame
13819 Output one frame for each frame.
13820 @item 1, send_field
13821 Output one frame for each field.
13822 @item 2, send_frame_nospatial
13823 Like @code{send_frame}, but it skips the spatial interlacing check.
13824 @item 3, send_field_nospatial
13825 Like @code{send_field}, but it skips the spatial interlacing check.
13826 @end table
13827
13828 The default value is @code{send_frame}.
13829
13830 @item parity
13831 The picture field parity assumed for the input interlaced video. It accepts one
13832 of the following values:
13833
13834 @table @option
13835 @item 0, tff
13836 Assume the top field is first.
13837 @item 1, bff
13838 Assume the bottom field is first.
13839 @item -1, auto
13840 Enable automatic detection of field parity.
13841 @end table
13842
13843 The default value is @code{auto}.
13844 If the interlacing is unknown or the decoder does not export this information,
13845 top field first will be assumed.
13846
13847 @item deint
13848 Specify which frames to deinterlace. Accept one of the following
13849 values:
13850
13851 @table @option
13852 @item 0, all
13853 Deinterlace all frames.
13854 @item 1, interlaced
13855 Only deinterlace frames marked as interlaced.
13856 @end table
13857
13858 The default value is @code{all}.
13859 @end table
13860
13861 @section zoompan
13862
13863 Apply Zoom & Pan effect.
13864
13865 This filter accepts the following options:
13866
13867 @table @option
13868 @item zoom, z
13869 Set the zoom expression. Default is 1.
13870
13871 @item x
13872 @item y
13873 Set the x and y expression. Default is 0.
13874
13875 @item d
13876 Set the duration expression in number of frames.
13877 This sets for how many number of frames effect will last for
13878 single input image.
13879
13880 @item s
13881 Set the output image size, default is 'hd720'.
13882
13883 @item fps
13884 Set the output frame rate, default is '25'.
13885 @end table
13886
13887 Each expression can contain the following constants:
13888
13889 @table @option
13890 @item in_w, iw
13891 Input width.
13892
13893 @item in_h, ih
13894 Input height.
13895
13896 @item out_w, ow
13897 Output width.
13898
13899 @item out_h, oh
13900 Output height.
13901
13902 @item in
13903 Input frame count.
13904
13905 @item on
13906 Output frame count.
13907
13908 @item x
13909 @item y
13910 Last calculated 'x' and 'y' position from 'x' and 'y' expression
13911 for current input frame.
13912
13913 @item px
13914 @item py
13915 'x' and 'y' of last output frame of previous input frame or 0 when there was
13916 not yet such frame (first input frame).
13917
13918 @item zoom
13919 Last calculated zoom from 'z' expression for current input frame.
13920
13921 @item pzoom
13922 Last calculated zoom of last output frame of previous input frame.
13923
13924 @item duration
13925 Number of output frames for current input frame. Calculated from 'd' expression
13926 for each input frame.
13927
13928 @item pduration
13929 number of output frames created for previous input frame
13930
13931 @item a
13932 Rational number: input width / input height
13933
13934 @item sar
13935 sample aspect ratio
13936
13937 @item dar
13938 display aspect ratio
13939
13940 @end table
13941
13942 @subsection Examples
13943
13944 @itemize
13945 @item
13946 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
13947 @example
13948 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
13949 @end example
13950
13951 @item
13952 Zoom-in up to 1.5 and pan always at center of picture:
13953 @example
13954 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
13955 @end example
13956 @end itemize
13957
13958 @section zscale
13959 Scale (resize) the input video, using the z.lib library:
13960 https://github.com/sekrit-twc/zimg.
13961
13962 The zscale filter forces the output display aspect ratio to be the same
13963 as the input, by changing the output sample aspect ratio.
13964
13965 If the input image format is different from the format requested by
13966 the next filter, the zscale filter will convert the input to the
13967 requested format.
13968
13969 @subsection Options
13970 The filter accepts the following options.
13971
13972 @table @option
13973 @item width, w
13974 @item height, h
13975 Set the output video dimension expression. Default value is the input
13976 dimension.
13977
13978 If the @var{width} or @var{w} is 0, the input width is used for the output.
13979 If the @var{height} or @var{h} is 0, the input height is used for the output.
13980
13981 If one of the values is -1, the zscale filter will use a value that
13982 maintains the aspect ratio of the input image, calculated from the
13983 other specified dimension. If both of them are -1, the input size is
13984 used
13985
13986 If one of the values is -n with n > 1, the zscale filter will also use a value
13987 that maintains the aspect ratio of the input image, calculated from the other
13988 specified dimension. After that it will, however, make sure that the calculated
13989 dimension is divisible by n and adjust the value if necessary.
13990
13991 See below for the list of accepted constants for use in the dimension
13992 expression.
13993
13994 @item size, s
13995 Set the video size. For the syntax of this option, check the
13996 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13997
13998 @item dither, d
13999 Set the dither type.
14000
14001 Possible values are:
14002 @table @var
14003 @item none
14004 @item ordered
14005 @item random
14006 @item error_diffusion
14007 @end table
14008
14009 Default is none.
14010
14011 @item filter, f
14012 Set the resize filter type.
14013
14014 Possible values are:
14015 @table @var
14016 @item point
14017 @item bilinear
14018 @item bicubic
14019 @item spline16
14020 @item spline36
14021 @item lanczos
14022 @end table
14023
14024 Default is bilinear.
14025
14026 @item range, r
14027 Set the color range.
14028
14029 Possible values are:
14030 @table @var
14031 @item input
14032 @item limited
14033 @item full
14034 @end table
14035
14036 Default is same as input.
14037
14038 @item primaries, p
14039 Set the color primaries.
14040
14041 Possible values are:
14042 @table @var
14043 @item input
14044 @item 709
14045 @item unspecified
14046 @item 170m
14047 @item 240m
14048 @item 2020
14049 @end table
14050
14051 Default is same as input.
14052
14053 @item transfer, t
14054 Set the transfer characteristics.
14055
14056 Possible values are:
14057 @table @var
14058 @item input
14059 @item 709
14060 @item unspecified
14061 @item 601
14062 @item linear
14063 @item 2020_10
14064 @item 2020_12
14065 @end table
14066
14067 Default is same as input.
14068
14069 @item matrix, m
14070 Set the colorspace matrix.
14071
14072 Possible value are:
14073 @table @var
14074 @item input
14075 @item 709
14076 @item unspecified
14077 @item 470bg
14078 @item 170m
14079 @item 2020_ncl
14080 @item 2020_cl
14081 @end table
14082
14083 Default is same as input.
14084
14085 @item rangein, rin
14086 Set the input color range.
14087
14088 Possible values are:
14089 @table @var
14090 @item input
14091 @item limited
14092 @item full
14093 @end table
14094
14095 Default is same as input.
14096
14097 @item primariesin, pin
14098 Set the input color primaries.
14099
14100 Possible values are:
14101 @table @var
14102 @item input
14103 @item 709
14104 @item unspecified
14105 @item 170m
14106 @item 240m
14107 @item 2020
14108 @end table
14109
14110 Default is same as input.
14111
14112 @item transferin, tin
14113 Set the input transfer characteristics.
14114
14115 Possible values are:
14116 @table @var
14117 @item input
14118 @item 709
14119 @item unspecified
14120 @item 601
14121 @item linear
14122 @item 2020_10
14123 @item 2020_12
14124 @end table
14125
14126 Default is same as input.
14127
14128 @item matrixin, min
14129 Set the input colorspace matrix.
14130
14131 Possible value are:
14132 @table @var
14133 @item input
14134 @item 709
14135 @item unspecified
14136 @item 470bg
14137 @item 170m
14138 @item 2020_ncl
14139 @item 2020_cl
14140 @end table
14141 @end table
14142
14143 The values of the @option{w} and @option{h} options are expressions
14144 containing the following constants:
14145
14146 @table @var
14147 @item in_w
14148 @item in_h
14149 The input width and height
14150
14151 @item iw
14152 @item ih
14153 These are the same as @var{in_w} and @var{in_h}.
14154
14155 @item out_w
14156 @item out_h
14157 The output (scaled) width and height
14158
14159 @item ow
14160 @item oh
14161 These are the same as @var{out_w} and @var{out_h}
14162
14163 @item a
14164 The same as @var{iw} / @var{ih}
14165
14166 @item sar
14167 input sample aspect ratio
14168
14169 @item dar
14170 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14171
14172 @item hsub
14173 @item vsub
14174 horizontal and vertical input chroma subsample values. For example for the
14175 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14176
14177 @item ohsub
14178 @item ovsub
14179 horizontal and vertical output chroma subsample values. For example for the
14180 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14181 @end table
14182
14183 @table @option
14184 @end table
14185
14186 @c man end VIDEO FILTERS
14187
14188 @chapter Video Sources
14189 @c man begin VIDEO SOURCES
14190
14191 Below is a description of the currently available video sources.
14192
14193 @section buffer
14194
14195 Buffer video frames, and make them available to the filter chain.
14196
14197 This source is mainly intended for a programmatic use, in particular
14198 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
14199
14200 It accepts the following parameters:
14201
14202 @table @option
14203
14204 @item video_size
14205 Specify the size (width and height) of the buffered video frames. For the
14206 syntax of this option, check the
14207 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14208
14209 @item width
14210 The input video width.
14211
14212 @item height
14213 The input video height.
14214
14215 @item pix_fmt
14216 A string representing the pixel format of the buffered video frames.
14217 It may be a number corresponding to a pixel format, or a pixel format
14218 name.
14219
14220 @item time_base
14221 Specify the timebase assumed by the timestamps of the buffered frames.
14222
14223 @item frame_rate
14224 Specify the frame rate expected for the video stream.
14225
14226 @item pixel_aspect, sar
14227 The sample (pixel) aspect ratio of the input video.
14228
14229 @item sws_param
14230 Specify the optional parameters to be used for the scale filter which
14231 is automatically inserted when an input change is detected in the
14232 input size or format.
14233
14234 @item hw_frames_ctx
14235 When using a hardware pixel format, this should be a reference to an
14236 AVHWFramesContext describing input frames.
14237 @end table
14238
14239 For example:
14240 @example
14241 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
14242 @end example
14243
14244 will instruct the source to accept video frames with size 320x240 and
14245 with format "yuv410p", assuming 1/24 as the timestamps timebase and
14246 square pixels (1:1 sample aspect ratio).
14247 Since the pixel format with name "yuv410p" corresponds to the number 6
14248 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
14249 this example corresponds to:
14250 @example
14251 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
14252 @end example
14253
14254 Alternatively, the options can be specified as a flat string, but this
14255 syntax is deprecated:
14256
14257 @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}]
14258
14259 @section cellauto
14260
14261 Create a pattern generated by an elementary cellular automaton.
14262
14263 The initial state of the cellular automaton can be defined through the
14264 @option{filename}, and @option{pattern} options. If such options are
14265 not specified an initial state is created randomly.
14266
14267 At each new frame a new row in the video is filled with the result of
14268 the cellular automaton next generation. The behavior when the whole
14269 frame is filled is defined by the @option{scroll} option.
14270
14271 This source accepts the following options:
14272
14273 @table @option
14274 @item filename, f
14275 Read the initial cellular automaton state, i.e. the starting row, from
14276 the specified file.
14277 In the file, each non-whitespace character is considered an alive
14278 cell, a newline will terminate the row, and further characters in the
14279 file will be ignored.
14280
14281 @item pattern, p
14282 Read the initial cellular automaton state, i.e. the starting row, from
14283 the specified string.
14284
14285 Each non-whitespace character in the string is considered an alive
14286 cell, a newline will terminate the row, and further characters in the
14287 string will be ignored.
14288
14289 @item rate, r
14290 Set the video rate, that is the number of frames generated per second.
14291 Default is 25.
14292
14293 @item random_fill_ratio, ratio
14294 Set the random fill ratio for the initial cellular automaton row. It
14295 is a floating point number value ranging from 0 to 1, defaults to
14296 1/PHI.
14297
14298 This option is ignored when a file or a pattern is specified.
14299
14300 @item random_seed, seed
14301 Set the seed for filling randomly the initial row, must be an integer
14302 included between 0 and UINT32_MAX. If not specified, or if explicitly
14303 set to -1, the filter will try to use a good random seed on a best
14304 effort basis.
14305
14306 @item rule
14307 Set the cellular automaton rule, it is a number ranging from 0 to 255.
14308 Default value is 110.
14309
14310 @item size, s
14311 Set the size of the output video. For the syntax of this option, check the
14312 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14313
14314 If @option{filename} or @option{pattern} is specified, the size is set
14315 by default to the width of the specified initial state row, and the
14316 height is set to @var{width} * PHI.
14317
14318 If @option{size} is set, it must contain the width of the specified
14319 pattern string, and the specified pattern will be centered in the
14320 larger row.
14321
14322 If a filename or a pattern string is not specified, the size value
14323 defaults to "320x518" (used for a randomly generated initial state).
14324
14325 @item scroll
14326 If set to 1, scroll the output upward when all the rows in the output
14327 have been already filled. If set to 0, the new generated row will be
14328 written over the top row just after the bottom row is filled.
14329 Defaults to 1.
14330
14331 @item start_full, full
14332 If set to 1, completely fill the output with generated rows before
14333 outputting the first frame.
14334 This is the default behavior, for disabling set the value to 0.
14335
14336 @item stitch
14337 If set to 1, stitch the left and right row edges together.
14338 This is the default behavior, for disabling set the value to 0.
14339 @end table
14340
14341 @subsection Examples
14342
14343 @itemize
14344 @item
14345 Read the initial state from @file{pattern}, and specify an output of
14346 size 200x400.
14347 @example
14348 cellauto=f=pattern:s=200x400
14349 @end example
14350
14351 @item
14352 Generate a random initial row with a width of 200 cells, with a fill
14353 ratio of 2/3:
14354 @example
14355 cellauto=ratio=2/3:s=200x200
14356 @end example
14357
14358 @item
14359 Create a pattern generated by rule 18 starting by a single alive cell
14360 centered on an initial row with width 100:
14361 @example
14362 cellauto=p=@@:s=100x400:full=0:rule=18
14363 @end example
14364
14365 @item
14366 Specify a more elaborated initial pattern:
14367 @example
14368 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
14369 @end example
14370
14371 @end itemize
14372
14373 @anchor{coreimagesrc}
14374 @section coreimagesrc
14375 Video source generated on GPU using Apple's CoreImage API on OSX.
14376
14377 This video source is a specialized version of the @ref{coreimage} video filter.
14378 Use a core image generator at the beginning of the applied filterchain to
14379 generate the content.
14380
14381 The coreimagesrc video source accepts the following options:
14382 @table @option
14383 @item list_generators
14384 List all available generators along with all their respective options as well as
14385 possible minimum and maximum values along with the default values.
14386 @example
14387 list_generators=true
14388 @end example
14389
14390 @item size, s
14391 Specify the size of the sourced video. For the syntax of this option, check the
14392 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14393 The default value is @code{320x240}.
14394
14395 @item rate, r
14396 Specify the frame rate of the sourced video, as the number of frames
14397 generated per second. It has to be a string in the format
14398 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14399 number or a valid video frame rate abbreviation. The default value is
14400 "25".
14401
14402 @item sar
14403 Set the sample aspect ratio of the sourced video.
14404
14405 @item duration, d
14406 Set the duration of the sourced video. See
14407 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14408 for the accepted syntax.
14409
14410 If not specified, or the expressed duration is negative, the video is
14411 supposed to be generated forever.
14412 @end table
14413
14414 Additionally, all options of the @ref{coreimage} video filter are accepted.
14415 A complete filterchain can be used for further processing of the
14416 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
14417 and examples for details.
14418
14419 @subsection Examples
14420
14421 @itemize
14422
14423 @item
14424 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
14425 given as complete and escaped command-line for Apple's standard bash shell:
14426 @example
14427 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
14428 @end example
14429 This example is equivalent to the QRCode example of @ref{coreimage} without the
14430 need for a nullsrc video source.
14431 @end itemize
14432
14433
14434 @section mandelbrot
14435
14436 Generate a Mandelbrot set fractal, and progressively zoom towards the
14437 point specified with @var{start_x} and @var{start_y}.
14438
14439 This source accepts the following options:
14440
14441 @table @option
14442
14443 @item end_pts
14444 Set the terminal pts value. Default value is 400.
14445
14446 @item end_scale
14447 Set the terminal scale value.
14448 Must be a floating point value. Default value is 0.3.
14449
14450 @item inner
14451 Set the inner coloring mode, that is the algorithm used to draw the
14452 Mandelbrot fractal internal region.
14453
14454 It shall assume one of the following values:
14455 @table @option
14456 @item black
14457 Set black mode.
14458 @item convergence
14459 Show time until convergence.
14460 @item mincol
14461 Set color based on point closest to the origin of the iterations.
14462 @item period
14463 Set period mode.
14464 @end table
14465
14466 Default value is @var{mincol}.
14467
14468 @item bailout
14469 Set the bailout value. Default value is 10.0.
14470
14471 @item maxiter
14472 Set the maximum of iterations performed by the rendering
14473 algorithm. Default value is 7189.
14474
14475 @item outer
14476 Set outer coloring mode.
14477 It shall assume one of following values:
14478 @table @option
14479 @item iteration_count
14480 Set iteration cound mode.
14481 @item normalized_iteration_count
14482 set normalized iteration count mode.
14483 @end table
14484 Default value is @var{normalized_iteration_count}.
14485
14486 @item rate, r
14487 Set frame rate, expressed as number of frames per second. Default
14488 value is "25".
14489
14490 @item size, s
14491 Set frame size. For the syntax of this option, check the "Video
14492 size" section in the ffmpeg-utils manual. Default value is "640x480".
14493
14494 @item start_scale
14495 Set the initial scale value. Default value is 3.0.
14496
14497 @item start_x
14498 Set the initial x position. Must be a floating point value between
14499 -100 and 100. Default value is -0.743643887037158704752191506114774.
14500
14501 @item start_y
14502 Set the initial y position. Must be a floating point value between
14503 -100 and 100. Default value is -0.131825904205311970493132056385139.
14504 @end table
14505
14506 @section mptestsrc
14507
14508 Generate various test patterns, as generated by the MPlayer test filter.
14509
14510 The size of the generated video is fixed, and is 256x256.
14511 This source is useful in particular for testing encoding features.
14512
14513 This source accepts the following options:
14514
14515 @table @option
14516
14517 @item rate, r
14518 Specify the frame rate of the sourced video, as the number of frames
14519 generated per second. It has to be a string in the format
14520 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14521 number or a valid video frame rate abbreviation. The default value is
14522 "25".
14523
14524 @item duration, d
14525 Set the duration of the sourced video. See
14526 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14527 for the accepted syntax.
14528
14529 If not specified, or the expressed duration is negative, the video is
14530 supposed to be generated forever.
14531
14532 @item test, t
14533
14534 Set the number or the name of the test to perform. Supported tests are:
14535 @table @option
14536 @item dc_luma
14537 @item dc_chroma
14538 @item freq_luma
14539 @item freq_chroma
14540 @item amp_luma
14541 @item amp_chroma
14542 @item cbp
14543 @item mv
14544 @item ring1
14545 @item ring2
14546 @item all
14547
14548 @end table
14549
14550 Default value is "all", which will cycle through the list of all tests.
14551 @end table
14552
14553 Some examples:
14554 @example
14555 mptestsrc=t=dc_luma
14556 @end example
14557
14558 will generate a "dc_luma" test pattern.
14559
14560 @section frei0r_src
14561
14562 Provide a frei0r source.
14563
14564 To enable compilation of this filter you need to install the frei0r
14565 header and configure FFmpeg with @code{--enable-frei0r}.
14566
14567 This source accepts the following parameters:
14568
14569 @table @option
14570
14571 @item size
14572 The size of the video to generate. For the syntax of this option, check the
14573 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14574
14575 @item framerate
14576 The framerate of the generated video. It may be a string of the form
14577 @var{num}/@var{den} or a frame rate abbreviation.
14578
14579 @item filter_name
14580 The name to the frei0r source to load. For more information regarding frei0r and
14581 how to set the parameters, read the @ref{frei0r} section in the video filters
14582 documentation.
14583
14584 @item filter_params
14585 A '|'-separated list of parameters to pass to the frei0r source.
14586
14587 @end table
14588
14589 For example, to generate a frei0r partik0l source with size 200x200
14590 and frame rate 10 which is overlaid on the overlay filter main input:
14591 @example
14592 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
14593 @end example
14594
14595 @section life
14596
14597 Generate a life pattern.
14598
14599 This source is based on a generalization of John Conway's life game.
14600
14601 The sourced input represents a life grid, each pixel represents a cell
14602 which can be in one of two possible states, alive or dead. Every cell
14603 interacts with its eight neighbours, which are the cells that are
14604 horizontally, vertically, or diagonally adjacent.
14605
14606 At each interaction the grid evolves according to the adopted rule,
14607 which specifies the number of neighbor alive cells which will make a
14608 cell stay alive or born. The @option{rule} option allows one to specify
14609 the rule to adopt.
14610
14611 This source accepts the following options:
14612
14613 @table @option
14614 @item filename, f
14615 Set the file from which to read the initial grid state. In the file,
14616 each non-whitespace character is considered an alive cell, and newline
14617 is used to delimit the end of each row.
14618
14619 If this option is not specified, the initial grid is generated
14620 randomly.
14621
14622 @item rate, r
14623 Set the video rate, that is the number of frames generated per second.
14624 Default is 25.
14625
14626 @item random_fill_ratio, ratio
14627 Set the random fill ratio for the initial random grid. It is a
14628 floating point number value ranging from 0 to 1, defaults to 1/PHI.
14629 It is ignored when a file is specified.
14630
14631 @item random_seed, seed
14632 Set the seed for filling the initial random grid, must be an integer
14633 included between 0 and UINT32_MAX. If not specified, or if explicitly
14634 set to -1, the filter will try to use a good random seed on a best
14635 effort basis.
14636
14637 @item rule
14638 Set the life rule.
14639
14640 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
14641 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
14642 @var{NS} specifies the number of alive neighbor cells which make a
14643 live cell stay alive, and @var{NB} the number of alive neighbor cells
14644 which make a dead cell to become alive (i.e. to "born").
14645 "s" and "b" can be used in place of "S" and "B", respectively.
14646
14647 Alternatively a rule can be specified by an 18-bits integer. The 9
14648 high order bits are used to encode the next cell state if it is alive
14649 for each number of neighbor alive cells, the low order bits specify
14650 the rule for "borning" new cells. Higher order bits encode for an
14651 higher number of neighbor cells.
14652 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
14653 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
14654
14655 Default value is "S23/B3", which is the original Conway's game of life
14656 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
14657 cells, and will born a new cell if there are three alive cells around
14658 a dead cell.
14659
14660 @item size, s
14661 Set the size of the output video. For the syntax of this option, check the
14662 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14663
14664 If @option{filename} is specified, the size is set by default to the
14665 same size of the input file. If @option{size} is set, it must contain
14666 the size specified in the input file, and the initial grid defined in
14667 that file is centered in the larger resulting area.
14668
14669 If a filename is not specified, the size value defaults to "320x240"
14670 (used for a randomly generated initial grid).
14671
14672 @item stitch
14673 If set to 1, stitch the left and right grid edges together, and the
14674 top and bottom edges also. Defaults to 1.
14675
14676 @item mold
14677 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
14678 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
14679 value from 0 to 255.
14680
14681 @item life_color
14682 Set the color of living (or new born) cells.
14683
14684 @item death_color
14685 Set the color of dead cells. If @option{mold} is set, this is the first color
14686 used to represent a dead cell.
14687
14688 @item mold_color
14689 Set mold color, for definitely dead and moldy cells.
14690
14691 For the syntax of these 3 color options, check the "Color" section in the
14692 ffmpeg-utils manual.
14693 @end table
14694
14695 @subsection Examples
14696
14697 @itemize
14698 @item
14699 Read a grid from @file{pattern}, and center it on a grid of size
14700 300x300 pixels:
14701 @example
14702 life=f=pattern:s=300x300
14703 @end example
14704
14705 @item
14706 Generate a random grid of size 200x200, with a fill ratio of 2/3:
14707 @example
14708 life=ratio=2/3:s=200x200
14709 @end example
14710
14711 @item
14712 Specify a custom rule for evolving a randomly generated grid:
14713 @example
14714 life=rule=S14/B34
14715 @end example
14716
14717 @item
14718 Full example with slow death effect (mold) using @command{ffplay}:
14719 @example
14720 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
14721 @end example
14722 @end itemize
14723
14724 @anchor{allrgb}
14725 @anchor{allyuv}
14726 @anchor{color}
14727 @anchor{haldclutsrc}
14728 @anchor{nullsrc}
14729 @anchor{rgbtestsrc}
14730 @anchor{smptebars}
14731 @anchor{smptehdbars}
14732 @anchor{testsrc}
14733 @anchor{testsrc2}
14734 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2
14735
14736 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
14737
14738 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
14739
14740 The @code{color} source provides an uniformly colored input.
14741
14742 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
14743 @ref{haldclut} filter.
14744
14745 The @code{nullsrc} source returns unprocessed video frames. It is
14746 mainly useful to be employed in analysis / debugging tools, or as the
14747 source for filters which ignore the input data.
14748
14749 The @code{rgbtestsrc} source generates an RGB test pattern useful for
14750 detecting RGB vs BGR issues. You should see a red, green and blue
14751 stripe from top to bottom.
14752
14753 The @code{smptebars} source generates a color bars pattern, based on
14754 the SMPTE Engineering Guideline EG 1-1990.
14755
14756 The @code{smptehdbars} source generates a color bars pattern, based on
14757 the SMPTE RP 219-2002.
14758
14759 The @code{testsrc} source generates a test video pattern, showing a
14760 color pattern, a scrolling gradient and a timestamp. This is mainly
14761 intended for testing purposes.
14762
14763 The @code{testsrc2} source is similar to testsrc, but supports more
14764 pixel formats instead of just @code{rgb24}. This allows using it as an
14765 input for other tests without requiring a format conversion.
14766
14767 The sources accept the following parameters:
14768
14769 @table @option
14770
14771 @item color, c
14772 Specify the color of the source, only available in the @code{color}
14773 source. For the syntax of this option, check the "Color" section in the
14774 ffmpeg-utils manual.
14775
14776 @item level
14777 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
14778 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
14779 pixels to be used as identity matrix for 3D lookup tables. Each component is
14780 coded on a @code{1/(N*N)} scale.
14781
14782 @item size, s
14783 Specify the size of the sourced video. For the syntax of this option, check the
14784 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14785 The default value is @code{320x240}.
14786
14787 This option is not available with the @code{haldclutsrc} filter.
14788
14789 @item rate, r
14790 Specify the frame rate of the sourced video, as the number of frames
14791 generated per second. It has to be a string in the format
14792 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14793 number or a valid video frame rate abbreviation. The default value is
14794 "25".
14795
14796 @item sar
14797 Set the sample aspect ratio of the sourced video.
14798
14799 @item duration, d
14800 Set the duration of the sourced video. See
14801 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14802 for the accepted syntax.
14803
14804 If not specified, or the expressed duration is negative, the video is
14805 supposed to be generated forever.
14806
14807 @item decimals, n
14808 Set the number of decimals to show in the timestamp, only available in the
14809 @code{testsrc} source.
14810
14811 The displayed timestamp value will correspond to the original
14812 timestamp value multiplied by the power of 10 of the specified
14813 value. Default value is 0.
14814 @end table
14815
14816 For example the following:
14817 @example
14818 testsrc=duration=5.3:size=qcif:rate=10
14819 @end example
14820
14821 will generate a video with a duration of 5.3 seconds, with size
14822 176x144 and a frame rate of 10 frames per second.
14823
14824 The following graph description will generate a red source
14825 with an opacity of 0.2, with size "qcif" and a frame rate of 10
14826 frames per second.
14827 @example
14828 color=c=red@@0.2:s=qcif:r=10
14829 @end example
14830
14831 If the input content is to be ignored, @code{nullsrc} can be used. The
14832 following command generates noise in the luminance plane by employing
14833 the @code{geq} filter:
14834 @example
14835 nullsrc=s=256x256, geq=random(1)*255:128:128
14836 @end example
14837
14838 @subsection Commands
14839
14840 The @code{color} source supports the following commands:
14841
14842 @table @option
14843 @item c, color
14844 Set the color of the created image. Accepts the same syntax of the
14845 corresponding @option{color} option.
14846 @end table
14847
14848 @c man end VIDEO SOURCES
14849
14850 @chapter Video Sinks
14851 @c man begin VIDEO SINKS
14852
14853 Below is a description of the currently available video sinks.
14854
14855 @section buffersink
14856
14857 Buffer video frames, and make them available to the end of the filter
14858 graph.
14859
14860 This sink is mainly intended for programmatic use, in particular
14861 through the interface defined in @file{libavfilter/buffersink.h}
14862 or the options system.
14863
14864 It accepts a pointer to an AVBufferSinkContext structure, which
14865 defines the incoming buffers' formats, to be passed as the opaque
14866 parameter to @code{avfilter_init_filter} for initialization.
14867
14868 @section nullsink
14869
14870 Null video sink: do absolutely nothing with the input video. It is
14871 mainly useful as a template and for use in analysis / debugging
14872 tools.
14873
14874 @c man end VIDEO SINKS
14875
14876 @chapter Multimedia Filters
14877 @c man begin MULTIMEDIA FILTERS
14878
14879 Below is a description of the currently available multimedia filters.
14880
14881 @section ahistogram
14882
14883 Convert input audio to a video output, displaying the volume histogram.
14884
14885 The filter accepts the following options:
14886
14887 @table @option
14888 @item dmode
14889 Specify how histogram is calculated.
14890
14891 It accepts the following values:
14892 @table @samp
14893 @item single
14894 Use single histogram for all channels.
14895 @item separate
14896 Use separate histogram for each channel.
14897 @end table
14898 Default is @code{single}.
14899
14900 @item rate, r
14901 Set frame rate, expressed as number of frames per second. Default
14902 value is "25".
14903
14904 @item size, s
14905 Specify the video size for the output. For the syntax of this option, check the
14906 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14907 Default value is @code{hd720}.
14908
14909 @item scale
14910 Set display scale.
14911
14912 It accepts the following values:
14913 @table @samp
14914 @item log
14915 logarithmic
14916 @item sqrt
14917 square root
14918 @item cbrt
14919 cubic root
14920 @item lin
14921 linear
14922 @item rlog
14923 reverse logarithmic
14924 @end table
14925 Default is @code{log}.
14926
14927 @item ascale
14928 Set amplitude scale.
14929
14930 It accepts the following values:
14931 @table @samp
14932 @item log
14933 logarithmic
14934 @item lin
14935 linear
14936 @end table
14937 Default is @code{log}.
14938
14939 @item acount
14940 Set how much frames to accumulate in histogram.
14941 Defauls is 1. Setting this to -1 accumulates all frames.
14942
14943 @item rheight
14944 Set histogram ratio of window height.
14945
14946 @item slide
14947 Set sonogram sliding.
14948
14949 It accepts the following values:
14950 @table @samp
14951 @item replace
14952 replace old rows with new ones.
14953 @item scroll
14954 scroll from top to bottom.
14955 @end table
14956 Default is @code{replace}.
14957 @end table
14958
14959 @section aphasemeter
14960
14961 Convert input audio to a video output, displaying the audio phase.
14962
14963 The filter accepts the following options:
14964
14965 @table @option
14966 @item rate, r
14967 Set the output frame rate. Default value is @code{25}.
14968
14969 @item size, s
14970 Set the video size for the output. For the syntax of this option, check the
14971 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14972 Default value is @code{800x400}.
14973
14974 @item rc
14975 @item gc
14976 @item bc
14977 Specify the red, green, blue contrast. Default values are @code{2},
14978 @code{7} and @code{1}.
14979 Allowed range is @code{[0, 255]}.
14980
14981 @item mpc
14982 Set color which will be used for drawing median phase. If color is
14983 @code{none} which is default, no median phase value will be drawn.
14984 @end table
14985
14986 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
14987 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
14988 The @code{-1} means left and right channels are completely out of phase and
14989 @code{1} means channels are in phase.
14990
14991 @section avectorscope
14992
14993 Convert input audio to a video output, representing the audio vector
14994 scope.
14995
14996 The filter is used to measure the difference between channels of stereo
14997 audio stream. A monoaural signal, consisting of identical left and right
14998 signal, results in straight vertical line. Any stereo separation is visible
14999 as a deviation from this line, creating a Lissajous figure.
15000 If the straight (or deviation from it) but horizontal line appears this
15001 indicates that the left and right channels are out of phase.
15002
15003 The filter accepts the following options:
15004
15005 @table @option
15006 @item mode, m
15007 Set the vectorscope mode.
15008
15009 Available values are:
15010 @table @samp
15011 @item lissajous
15012 Lissajous rotated by 45 degrees.
15013
15014 @item lissajous_xy
15015 Same as above but not rotated.
15016
15017 @item polar
15018 Shape resembling half of circle.
15019 @end table
15020
15021 Default value is @samp{lissajous}.
15022
15023 @item size, s
15024 Set the video size for the output. For the syntax of this option, check the
15025 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15026 Default value is @code{400x400}.
15027
15028 @item rate, r
15029 Set the output frame rate. Default value is @code{25}.
15030
15031 @item rc
15032 @item gc
15033 @item bc
15034 @item ac
15035 Specify the red, green, blue and alpha contrast. Default values are @code{40},
15036 @code{160}, @code{80} and @code{255}.
15037 Allowed range is @code{[0, 255]}.
15038
15039 @item rf
15040 @item gf
15041 @item bf
15042 @item af
15043 Specify the red, green, blue and alpha fade. Default values are @code{15},
15044 @code{10}, @code{5} and @code{5}.
15045 Allowed range is @code{[0, 255]}.
15046
15047 @item zoom
15048 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
15049
15050 @item draw
15051 Set the vectorscope drawing mode.
15052
15053 Available values are:
15054 @table @samp
15055 @item dot
15056 Draw dot for each sample.
15057
15058 @item line
15059 Draw line between previous and current sample.
15060 @end table
15061
15062 Default value is @samp{dot}.
15063 @end table
15064
15065 @subsection Examples
15066
15067 @itemize
15068 @item
15069 Complete example using @command{ffplay}:
15070 @example
15071 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
15072              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
15073 @end example
15074 @end itemize
15075
15076 @section bench, abench
15077
15078 Benchmark part of a filtergraph.
15079
15080 The filter accepts the following options:
15081
15082 @table @option
15083 @item action
15084 Start or stop a timer.
15085
15086 Available values are:
15087 @table @samp
15088 @item start
15089 Get the current time, set it as frame metadata (using the key
15090 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
15091
15092 @item stop
15093 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
15094 the input frame metadata to get the time difference. Time difference, average,
15095 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
15096 @code{min}) are then printed. The timestamps are expressed in seconds.
15097 @end table
15098 @end table
15099
15100 @subsection Examples
15101
15102 @itemize
15103 @item
15104 Benchmark @ref{selectivecolor} filter:
15105 @example
15106 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
15107 @end example
15108 @end itemize
15109
15110 @section concat
15111
15112 Concatenate audio and video streams, joining them together one after the
15113 other.
15114
15115 The filter works on segments of synchronized video and audio streams. All
15116 segments must have the same number of streams of each type, and that will
15117 also be the number of streams at output.
15118
15119 The filter accepts the following options:
15120
15121 @table @option
15122
15123 @item n
15124 Set the number of segments. Default is 2.
15125
15126 @item v
15127 Set the number of output video streams, that is also the number of video
15128 streams in each segment. Default is 1.
15129
15130 @item a
15131 Set the number of output audio streams, that is also the number of audio
15132 streams in each segment. Default is 0.
15133
15134 @item unsafe
15135 Activate unsafe mode: do not fail if segments have a different format.
15136
15137 @end table
15138
15139 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
15140 @var{a} audio outputs.
15141
15142 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
15143 segment, in the same order as the outputs, then the inputs for the second
15144 segment, etc.
15145
15146 Related streams do not always have exactly the same duration, for various
15147 reasons including codec frame size or sloppy authoring. For that reason,
15148 related synchronized streams (e.g. a video and its audio track) should be
15149 concatenated at once. The concat filter will use the duration of the longest
15150 stream in each segment (except the last one), and if necessary pad shorter
15151 audio streams with silence.
15152
15153 For this filter to work correctly, all segments must start at timestamp 0.
15154
15155 All corresponding streams must have the same parameters in all segments; the
15156 filtering system will automatically select a common pixel format for video
15157 streams, and a common sample format, sample rate and channel layout for
15158 audio streams, but other settings, such as resolution, must be converted
15159 explicitly by the user.
15160
15161 Different frame rates are acceptable but will result in variable frame rate
15162 at output; be sure to configure the output file to handle it.
15163
15164 @subsection Examples
15165
15166 @itemize
15167 @item
15168 Concatenate an opening, an episode and an ending, all in bilingual version
15169 (video in stream 0, audio in streams 1 and 2):
15170 @example
15171 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
15172   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
15173    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
15174   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
15175 @end example
15176
15177 @item
15178 Concatenate two parts, handling audio and video separately, using the
15179 (a)movie sources, and adjusting the resolution:
15180 @example
15181 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
15182 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
15183 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
15184 @end example
15185 Note that a desync will happen at the stitch if the audio and video streams
15186 do not have exactly the same duration in the first file.
15187
15188 @end itemize
15189
15190 @section drawgraph, adrawgraph
15191
15192 Draw a graph using input video or audio metadata.
15193
15194 It accepts the following parameters:
15195
15196 @table @option
15197 @item m1
15198 Set 1st frame metadata key from which metadata values will be used to draw a graph.
15199
15200 @item fg1
15201 Set 1st foreground color expression.
15202
15203 @item m2
15204 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
15205
15206 @item fg2
15207 Set 2nd foreground color expression.
15208
15209 @item m3
15210 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
15211
15212 @item fg3
15213 Set 3rd foreground color expression.
15214
15215 @item m4
15216 Set 4th frame metadata key from which metadata values will be used to draw a graph.
15217
15218 @item fg4
15219 Set 4th foreground color expression.
15220
15221 @item min
15222 Set minimal value of metadata value.
15223
15224 @item max
15225 Set maximal value of metadata value.
15226
15227 @item bg
15228 Set graph background color. Default is white.
15229
15230 @item mode
15231 Set graph mode.
15232
15233 Available values for mode is:
15234 @table @samp
15235 @item bar
15236 @item dot
15237 @item line
15238 @end table
15239
15240 Default is @code{line}.
15241
15242 @item slide
15243 Set slide mode.
15244
15245 Available values for slide is:
15246 @table @samp
15247 @item frame
15248 Draw new frame when right border is reached.
15249
15250 @item replace
15251 Replace old columns with new ones.
15252
15253 @item scroll
15254 Scroll from right to left.
15255
15256 @item rscroll
15257 Scroll from left to right.
15258
15259 @item picture
15260 Draw single picture.
15261 @end table
15262
15263 Default is @code{frame}.
15264
15265 @item size
15266 Set size of graph video. For the syntax of this option, check the
15267 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15268 The default value is @code{900x256}.
15269
15270 The foreground color expressions can use the following variables:
15271 @table @option
15272 @item MIN
15273 Minimal value of metadata value.
15274
15275 @item MAX
15276 Maximal value of metadata value.
15277
15278 @item VAL
15279 Current metadata key value.
15280 @end table
15281
15282 The color is defined as 0xAABBGGRR.
15283 @end table
15284
15285 Example using metadata from @ref{signalstats} filter:
15286 @example
15287 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
15288 @end example
15289
15290 Example using metadata from @ref{ebur128} filter:
15291 @example
15292 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
15293 @end example
15294
15295 @anchor{ebur128}
15296 @section ebur128
15297
15298 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
15299 it unchanged. By default, it logs a message at a frequency of 10Hz with the
15300 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
15301 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
15302
15303 The filter also has a video output (see the @var{video} option) with a real
15304 time graph to observe the loudness evolution. The graphic contains the logged
15305 message mentioned above, so it is not printed anymore when this option is set,
15306 unless the verbose logging is set. The main graphing area contains the
15307 short-term loudness (3 seconds of analysis), and the gauge on the right is for
15308 the momentary loudness (400 milliseconds).
15309
15310 More information about the Loudness Recommendation EBU R128 on
15311 @url{http://tech.ebu.ch/loudness}.
15312
15313 The filter accepts the following options:
15314
15315 @table @option
15316
15317 @item video
15318 Activate the video output. The audio stream is passed unchanged whether this
15319 option is set or no. The video stream will be the first output stream if
15320 activated. Default is @code{0}.
15321
15322 @item size
15323 Set the video size. This option is for video only. For the syntax of this
15324 option, check the
15325 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15326 Default and minimum resolution is @code{640x480}.
15327
15328 @item meter
15329 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
15330 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
15331 other integer value between this range is allowed.
15332
15333 @item metadata
15334 Set metadata injection. If set to @code{1}, the audio input will be segmented
15335 into 100ms output frames, each of them containing various loudness information
15336 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
15337
15338 Default is @code{0}.
15339
15340 @item framelog
15341 Force the frame logging level.
15342
15343 Available values are:
15344 @table @samp
15345 @item info
15346 information logging level
15347 @item verbose
15348 verbose logging level
15349 @end table
15350
15351 By default, the logging level is set to @var{info}. If the @option{video} or
15352 the @option{metadata} options are set, it switches to @var{verbose}.
15353
15354 @item peak
15355 Set peak mode(s).
15356
15357 Available modes can be cumulated (the option is a @code{flag} type). Possible
15358 values are:
15359 @table @samp
15360 @item none
15361 Disable any peak mode (default).
15362 @item sample
15363 Enable sample-peak mode.
15364
15365 Simple peak mode looking for the higher sample value. It logs a message
15366 for sample-peak (identified by @code{SPK}).
15367 @item true
15368 Enable true-peak mode.
15369
15370 If enabled, the peak lookup is done on an over-sampled version of the input
15371 stream for better peak accuracy. It logs a message for true-peak.
15372 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
15373 This mode requires a build with @code{libswresample}.
15374 @end table
15375
15376 @item dualmono
15377 Treat mono input files as "dual mono". If a mono file is intended for playback
15378 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
15379 If set to @code{true}, this option will compensate for this effect.
15380 Multi-channel input files are not affected by this option.
15381
15382 @item panlaw
15383 Set a specific pan law to be used for the measurement of dual mono files.
15384 This parameter is optional, and has a default value of -3.01dB.
15385 @end table
15386
15387 @subsection Examples
15388
15389 @itemize
15390 @item
15391 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
15392 @example
15393 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
15394 @end example
15395
15396 @item
15397 Run an analysis with @command{ffmpeg}:
15398 @example
15399 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
15400 @end example
15401 @end itemize
15402
15403 @section interleave, ainterleave
15404
15405 Temporally interleave frames from several inputs.
15406
15407 @code{interleave} works with video inputs, @code{ainterleave} with audio.
15408
15409 These filters read frames from several inputs and send the oldest
15410 queued frame to the output.
15411
15412 Input streams must have a well defined, monotonically increasing frame
15413 timestamp values.
15414
15415 In order to submit one frame to output, these filters need to enqueue
15416 at least one frame for each input, so they cannot work in case one
15417 input is not yet terminated and will not receive incoming frames.
15418
15419 For example consider the case when one input is a @code{select} filter
15420 which always drop input frames. The @code{interleave} filter will keep
15421 reading from that input, but it will never be able to send new frames
15422 to output until the input will send an end-of-stream signal.
15423
15424 Also, depending on inputs synchronization, the filters will drop
15425 frames in case one input receives more frames than the other ones, and
15426 the queue is already filled.
15427
15428 These filters accept the following options:
15429
15430 @table @option
15431 @item nb_inputs, n
15432 Set the number of different inputs, it is 2 by default.
15433 @end table
15434
15435 @subsection Examples
15436
15437 @itemize
15438 @item
15439 Interleave frames belonging to different streams using @command{ffmpeg}:
15440 @example
15441 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
15442 @end example
15443
15444 @item
15445 Add flickering blur effect:
15446 @example
15447 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
15448 @end example
15449 @end itemize
15450
15451 @section metadata, ametadata
15452
15453 Manipulate frame metadata.
15454
15455 This filter accepts the following options:
15456
15457 @table @option
15458 @item mode
15459 Set mode of operation of the filter.
15460
15461 Can be one of the following:
15462
15463 @table @samp
15464 @item select
15465 If both @code{value} and @code{key} is set, select frames
15466 which have such metadata. If only @code{key} is set, select
15467 every frame that has such key in metadata.
15468
15469 @item add
15470 Add new metadata @code{key} and @code{value}. If key is already available
15471 do nothing.
15472
15473 @item modify
15474 Modify value of already present key.
15475
15476 @item delete
15477 If @code{value} is set, delete only keys that have such value.
15478 Otherwise, delete key.
15479
15480 @item print
15481 Print key and its value if metadata was found. If @code{key} is not set print all
15482 metadata values available in frame.
15483 @end table
15484
15485 @item key
15486 Set key used with all modes. Must be set for all modes except @code{print}.
15487
15488 @item value
15489 Set metadata value which will be used. This option is mandatory for
15490 @code{modify} and @code{add} mode.
15491
15492 @item function
15493 Which function to use when comparing metadata value and @code{value}.
15494
15495 Can be one of following:
15496
15497 @table @samp
15498 @item same_str
15499 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
15500
15501 @item starts_with
15502 Values are interpreted as strings, returns true if metadata value starts with
15503 the @code{value} option string.
15504
15505 @item less
15506 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
15507
15508 @item equal
15509 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
15510
15511 @item greater
15512 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
15513
15514 @item expr
15515 Values are interpreted as floats, returns true if expression from option @code{expr}
15516 evaluates to true.
15517 @end table
15518
15519 @item expr
15520 Set expression which is used when @code{function} is set to @code{expr}.
15521 The expression is evaluated through the eval API and can contain the following
15522 constants:
15523
15524 @table @option
15525 @item VALUE1
15526 Float representation of @code{value} from metadata key.
15527
15528 @item VALUE2
15529 Float representation of @code{value} as supplied by user in @code{value} option.
15530
15531 @item file
15532 If specified in @code{print} mode, output is written to the named file. Instead of
15533 plain filename any writable url can be specified. Filename ``-'' is a shorthand
15534 for standard output. If @code{file} option is not set, output is written to the log
15535 with AV_LOG_INFO loglevel.
15536 @end table
15537
15538 @end table
15539
15540 @subsection Examples
15541
15542 @itemize
15543 @item
15544 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
15545 between 0 and 1.
15546 @example
15547 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
15548 @end example
15549 @item
15550 Print silencedetect output to file @file{metadata.txt}.
15551 @example
15552 silencedetect,ametadata=mode=print:file=metadata.txt
15553 @end example
15554 @item
15555 Direct all metadata to a pipe with file descriptor 4.
15556 @example
15557 metadata=mode=print:file='pipe\:4'
15558 @end example
15559 @end itemize
15560
15561 @section perms, aperms
15562
15563 Set read/write permissions for the output frames.
15564
15565 These filters are mainly aimed at developers to test direct path in the
15566 following filter in the filtergraph.
15567
15568 The filters accept the following options:
15569
15570 @table @option
15571 @item mode
15572 Select the permissions mode.
15573
15574 It accepts the following values:
15575 @table @samp
15576 @item none
15577 Do nothing. This is the default.
15578 @item ro
15579 Set all the output frames read-only.
15580 @item rw
15581 Set all the output frames directly writable.
15582 @item toggle
15583 Make the frame read-only if writable, and writable if read-only.
15584 @item random
15585 Set each output frame read-only or writable randomly.
15586 @end table
15587
15588 @item seed
15589 Set the seed for the @var{random} mode, must be an integer included between
15590 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15591 @code{-1}, the filter will try to use a good random seed on a best effort
15592 basis.
15593 @end table
15594
15595 Note: in case of auto-inserted filter between the permission filter and the
15596 following one, the permission might not be received as expected in that
15597 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
15598 perms/aperms filter can avoid this problem.
15599
15600 @section realtime, arealtime
15601
15602 Slow down filtering to match real time approximatively.
15603
15604 These filters will pause the filtering for a variable amount of time to
15605 match the output rate with the input timestamps.
15606 They are similar to the @option{re} option to @code{ffmpeg}.
15607
15608 They accept the following options:
15609
15610 @table @option
15611 @item limit
15612 Time limit for the pauses. Any pause longer than that will be considered
15613 a timestamp discontinuity and reset the timer. Default is 2 seconds.
15614 @end table
15615
15616 @section select, aselect
15617
15618 Select frames to pass in output.
15619
15620 This filter accepts the following options:
15621
15622 @table @option
15623
15624 @item expr, e
15625 Set expression, which is evaluated for each input frame.
15626
15627 If the expression is evaluated to zero, the frame is discarded.
15628
15629 If the evaluation result is negative or NaN, the frame is sent to the
15630 first output; otherwise it is sent to the output with index
15631 @code{ceil(val)-1}, assuming that the input index starts from 0.
15632
15633 For example a value of @code{1.2} corresponds to the output with index
15634 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
15635
15636 @item outputs, n
15637 Set the number of outputs. The output to which to send the selected
15638 frame is based on the result of the evaluation. Default value is 1.
15639 @end table
15640
15641 The expression can contain the following constants:
15642
15643 @table @option
15644 @item n
15645 The (sequential) number of the filtered frame, starting from 0.
15646
15647 @item selected_n
15648 The (sequential) number of the selected frame, starting from 0.
15649
15650 @item prev_selected_n
15651 The sequential number of the last selected frame. It's NAN if undefined.
15652
15653 @item TB
15654 The timebase of the input timestamps.
15655
15656 @item pts
15657 The PTS (Presentation TimeStamp) of the filtered video frame,
15658 expressed in @var{TB} units. It's NAN if undefined.
15659
15660 @item t
15661 The PTS of the filtered video frame,
15662 expressed in seconds. It's NAN if undefined.
15663
15664 @item prev_pts
15665 The PTS of the previously filtered video frame. It's NAN if undefined.
15666
15667 @item prev_selected_pts
15668 The PTS of the last previously filtered video frame. It's NAN if undefined.
15669
15670 @item prev_selected_t
15671 The PTS of the last previously selected video frame. It's NAN if undefined.
15672
15673 @item start_pts
15674 The PTS of the first video frame in the video. It's NAN if undefined.
15675
15676 @item start_t
15677 The time of the first video frame in the video. It's NAN if undefined.
15678
15679 @item pict_type @emph{(video only)}
15680 The type of the filtered frame. It can assume one of the following
15681 values:
15682 @table @option
15683 @item I
15684 @item P
15685 @item B
15686 @item S
15687 @item SI
15688 @item SP
15689 @item BI
15690 @end table
15691
15692 @item interlace_type @emph{(video only)}
15693 The frame interlace type. It can assume one of the following values:
15694 @table @option
15695 @item PROGRESSIVE
15696 The frame is progressive (not interlaced).
15697 @item TOPFIRST
15698 The frame is top-field-first.
15699 @item BOTTOMFIRST
15700 The frame is bottom-field-first.
15701 @end table
15702
15703 @item consumed_sample_n @emph{(audio only)}
15704 the number of selected samples before the current frame
15705
15706 @item samples_n @emph{(audio only)}
15707 the number of samples in the current frame
15708
15709 @item sample_rate @emph{(audio only)}
15710 the input sample rate
15711
15712 @item key
15713 This is 1 if the filtered frame is a key-frame, 0 otherwise.
15714
15715 @item pos
15716 the position in the file of the filtered frame, -1 if the information
15717 is not available (e.g. for synthetic video)
15718
15719 @item scene @emph{(video only)}
15720 value between 0 and 1 to indicate a new scene; a low value reflects a low
15721 probability for the current frame to introduce a new scene, while a higher
15722 value means the current frame is more likely to be one (see the example below)
15723
15724 @item concatdec_select
15725 The concat demuxer can select only part of a concat input file by setting an
15726 inpoint and an outpoint, but the output packets may not be entirely contained
15727 in the selected interval. By using this variable, it is possible to skip frames
15728 generated by the concat demuxer which are not exactly contained in the selected
15729 interval.
15730
15731 This works by comparing the frame pts against the @var{lavf.concat.start_time}
15732 and the @var{lavf.concat.duration} packet metadata values which are also
15733 present in the decoded frames.
15734
15735 The @var{concatdec_select} variable is -1 if the frame pts is at least
15736 start_time and either the duration metadata is missing or the frame pts is less
15737 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
15738 missing.
15739
15740 That basically means that an input frame is selected if its pts is within the
15741 interval set by the concat demuxer.
15742
15743 @end table
15744
15745 The default value of the select expression is "1".
15746
15747 @subsection Examples
15748
15749 @itemize
15750 @item
15751 Select all frames in input:
15752 @example
15753 select
15754 @end example
15755
15756 The example above is the same as:
15757 @example
15758 select=1
15759 @end example
15760
15761 @item
15762 Skip all frames:
15763 @example
15764 select=0
15765 @end example
15766
15767 @item
15768 Select only I-frames:
15769 @example
15770 select='eq(pict_type\,I)'
15771 @end example
15772
15773 @item
15774 Select one frame every 100:
15775 @example
15776 select='not(mod(n\,100))'
15777 @end example
15778
15779 @item
15780 Select only frames contained in the 10-20 time interval:
15781 @example
15782 select=between(t\,10\,20)
15783 @end example
15784
15785 @item
15786 Select only I-frames contained in the 10-20 time interval:
15787 @example
15788 select=between(t\,10\,20)*eq(pict_type\,I)
15789 @end example
15790
15791 @item
15792 Select frames with a minimum distance of 10 seconds:
15793 @example
15794 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
15795 @end example
15796
15797 @item
15798 Use aselect to select only audio frames with samples number > 100:
15799 @example
15800 aselect='gt(samples_n\,100)'
15801 @end example
15802
15803 @item
15804 Create a mosaic of the first scenes:
15805 @example
15806 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
15807 @end example
15808
15809 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
15810 choice.
15811
15812 @item
15813 Send even and odd frames to separate outputs, and compose them:
15814 @example
15815 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
15816 @end example
15817
15818 @item
15819 Select useful frames from an ffconcat file which is using inpoints and
15820 outpoints but where the source files are not intra frame only.
15821 @example
15822 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
15823 @end example
15824 @end itemize
15825
15826 @section sendcmd, asendcmd
15827
15828 Send commands to filters in the filtergraph.
15829
15830 These filters read commands to be sent to other filters in the
15831 filtergraph.
15832
15833 @code{sendcmd} must be inserted between two video filters,
15834 @code{asendcmd} must be inserted between two audio filters, but apart
15835 from that they act the same way.
15836
15837 The specification of commands can be provided in the filter arguments
15838 with the @var{commands} option, or in a file specified by the
15839 @var{filename} option.
15840
15841 These filters accept the following options:
15842 @table @option
15843 @item commands, c
15844 Set the commands to be read and sent to the other filters.
15845 @item filename, f
15846 Set the filename of the commands to be read and sent to the other
15847 filters.
15848 @end table
15849
15850 @subsection Commands syntax
15851
15852 A commands description consists of a sequence of interval
15853 specifications, comprising a list of commands to be executed when a
15854 particular event related to that interval occurs. The occurring event
15855 is typically the current frame time entering or leaving a given time
15856 interval.
15857
15858 An interval is specified by the following syntax:
15859 @example
15860 @var{START}[-@var{END}] @var{COMMANDS};
15861 @end example
15862
15863 The time interval is specified by the @var{START} and @var{END} times.
15864 @var{END} is optional and defaults to the maximum time.
15865
15866 The current frame time is considered within the specified interval if
15867 it is included in the interval [@var{START}, @var{END}), that is when
15868 the time is greater or equal to @var{START} and is lesser than
15869 @var{END}.
15870
15871 @var{COMMANDS} consists of a sequence of one or more command
15872 specifications, separated by ",", relating to that interval.  The
15873 syntax of a command specification is given by:
15874 @example
15875 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
15876 @end example
15877
15878 @var{FLAGS} is optional and specifies the type of events relating to
15879 the time interval which enable sending the specified command, and must
15880 be a non-null sequence of identifier flags separated by "+" or "|" and
15881 enclosed between "[" and "]".
15882
15883 The following flags are recognized:
15884 @table @option
15885 @item enter
15886 The command is sent when the current frame timestamp enters the
15887 specified interval. In other words, the command is sent when the
15888 previous frame timestamp was not in the given interval, and the
15889 current is.
15890
15891 @item leave
15892 The command is sent when the current frame timestamp leaves the
15893 specified interval. In other words, the command is sent when the
15894 previous frame timestamp was in the given interval, and the
15895 current is not.
15896 @end table
15897
15898 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
15899 assumed.
15900
15901 @var{TARGET} specifies the target of the command, usually the name of
15902 the filter class or a specific filter instance name.
15903
15904 @var{COMMAND} specifies the name of the command for the target filter.
15905
15906 @var{ARG} is optional and specifies the optional list of argument for
15907 the given @var{COMMAND}.
15908
15909 Between one interval specification and another, whitespaces, or
15910 sequences of characters starting with @code{#} until the end of line,
15911 are ignored and can be used to annotate comments.
15912
15913 A simplified BNF description of the commands specification syntax
15914 follows:
15915 @example
15916 @var{COMMAND_FLAG}  ::= "enter" | "leave"
15917 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
15918 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
15919 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
15920 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
15921 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
15922 @end example
15923
15924 @subsection Examples
15925
15926 @itemize
15927 @item
15928 Specify audio tempo change at second 4:
15929 @example
15930 asendcmd=c='4.0 atempo tempo 1.5',atempo
15931 @end example
15932
15933 @item
15934 Specify a list of drawtext and hue commands in a file.
15935 @example
15936 # show text in the interval 5-10
15937 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
15938          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
15939
15940 # desaturate the image in the interval 15-20
15941 15.0-20.0 [enter] hue s 0,
15942           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
15943           [leave] hue s 1,
15944           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
15945
15946 # apply an exponential saturation fade-out effect, starting from time 25
15947 25 [enter] hue s exp(25-t)
15948 @end example
15949
15950 A filtergraph allowing to read and process the above command list
15951 stored in a file @file{test.cmd}, can be specified with:
15952 @example
15953 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
15954 @end example
15955 @end itemize
15956
15957 @anchor{setpts}
15958 @section setpts, asetpts
15959
15960 Change the PTS (presentation timestamp) of the input frames.
15961
15962 @code{setpts} works on video frames, @code{asetpts} on audio frames.
15963
15964 This filter accepts the following options:
15965
15966 @table @option
15967
15968 @item expr
15969 The expression which is evaluated for each frame to construct its timestamp.
15970
15971 @end table
15972
15973 The expression is evaluated through the eval API and can contain the following
15974 constants:
15975
15976 @table @option
15977 @item FRAME_RATE
15978 frame rate, only defined for constant frame-rate video
15979
15980 @item PTS
15981 The presentation timestamp in input
15982
15983 @item N
15984 The count of the input frame for video or the number of consumed samples,
15985 not including the current frame for audio, starting from 0.
15986
15987 @item NB_CONSUMED_SAMPLES
15988 The number of consumed samples, not including the current frame (only
15989 audio)
15990
15991 @item NB_SAMPLES, S
15992 The number of samples in the current frame (only audio)
15993
15994 @item SAMPLE_RATE, SR
15995 The audio sample rate.
15996
15997 @item STARTPTS
15998 The PTS of the first frame.
15999
16000 @item STARTT
16001 the time in seconds of the first frame
16002
16003 @item INTERLACED
16004 State whether the current frame is interlaced.
16005
16006 @item T
16007 the time in seconds of the current frame
16008
16009 @item POS
16010 original position in the file of the frame, or undefined if undefined
16011 for the current frame
16012
16013 @item PREV_INPTS
16014 The previous input PTS.
16015
16016 @item PREV_INT
16017 previous input time in seconds
16018
16019 @item PREV_OUTPTS
16020 The previous output PTS.
16021
16022 @item PREV_OUTT
16023 previous output time in seconds
16024
16025 @item RTCTIME
16026 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
16027 instead.
16028
16029 @item RTCSTART
16030 The wallclock (RTC) time at the start of the movie in microseconds.
16031
16032 @item TB
16033 The timebase of the input timestamps.
16034
16035 @end table
16036
16037 @subsection Examples
16038
16039 @itemize
16040 @item
16041 Start counting PTS from zero
16042 @example
16043 setpts=PTS-STARTPTS
16044 @end example
16045
16046 @item
16047 Apply fast motion effect:
16048 @example
16049 setpts=0.5*PTS
16050 @end example
16051
16052 @item
16053 Apply slow motion effect:
16054 @example
16055 setpts=2.0*PTS
16056 @end example
16057
16058 @item
16059 Set fixed rate of 25 frames per second:
16060 @example
16061 setpts=N/(25*TB)
16062 @end example
16063
16064 @item
16065 Set fixed rate 25 fps with some jitter:
16066 @example
16067 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
16068 @end example
16069
16070 @item
16071 Apply an offset of 10 seconds to the input PTS:
16072 @example
16073 setpts=PTS+10/TB
16074 @end example
16075
16076 @item
16077 Generate timestamps from a "live source" and rebase onto the current timebase:
16078 @example
16079 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
16080 @end example
16081
16082 @item
16083 Generate timestamps by counting samples:
16084 @example
16085 asetpts=N/SR/TB
16086 @end example
16087
16088 @end itemize
16089
16090 @section settb, asettb
16091
16092 Set the timebase to use for the output frames timestamps.
16093 It is mainly useful for testing timebase configuration.
16094
16095 It accepts the following parameters:
16096
16097 @table @option
16098
16099 @item expr, tb
16100 The expression which is evaluated into the output timebase.
16101
16102 @end table
16103
16104 The value for @option{tb} is an arithmetic expression representing a
16105 rational. The expression can contain the constants "AVTB" (the default
16106 timebase), "intb" (the input timebase) and "sr" (the sample rate,
16107 audio only). Default value is "intb".
16108
16109 @subsection Examples
16110
16111 @itemize
16112 @item
16113 Set the timebase to 1/25:
16114 @example
16115 settb=expr=1/25
16116 @end example
16117
16118 @item
16119 Set the timebase to 1/10:
16120 @example
16121 settb=expr=0.1
16122 @end example
16123
16124 @item
16125 Set the timebase to 1001/1000:
16126 @example
16127 settb=1+0.001
16128 @end example
16129
16130 @item
16131 Set the timebase to 2*intb:
16132 @example
16133 settb=2*intb
16134 @end example
16135
16136 @item
16137 Set the default timebase value:
16138 @example
16139 settb=AVTB
16140 @end example
16141 @end itemize
16142
16143 @section showcqt
16144 Convert input audio to a video output representing frequency spectrum
16145 logarithmically using Brown-Puckette constant Q transform algorithm with
16146 direct frequency domain coefficient calculation (but the transform itself
16147 is not really constant Q, instead the Q factor is actually variable/clamped),
16148 with musical tone scale, from E0 to D#10.
16149
16150 The filter accepts the following options:
16151
16152 @table @option
16153 @item size, s
16154 Specify the video size for the output. It must be even. For the syntax of this option,
16155 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16156 Default value is @code{1920x1080}.
16157
16158 @item fps, rate, r
16159 Set the output frame rate. Default value is @code{25}.
16160
16161 @item bar_h
16162 Set the bargraph height. It must be even. Default value is @code{-1} which
16163 computes the bargraph height automatically.
16164
16165 @item axis_h
16166 Set the axis height. It must be even. Default value is @code{-1} which computes
16167 the axis height automatically.
16168
16169 @item sono_h
16170 Set the sonogram height. It must be even. Default value is @code{-1} which
16171 computes the sonogram height automatically.
16172
16173 @item fullhd
16174 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
16175 instead. Default value is @code{1}.
16176
16177 @item sono_v, volume
16178 Specify the sonogram volume expression. It can contain variables:
16179 @table @option
16180 @item bar_v
16181 the @var{bar_v} evaluated expression
16182 @item frequency, freq, f
16183 the frequency where it is evaluated
16184 @item timeclamp, tc
16185 the value of @var{timeclamp} option
16186 @end table
16187 and functions:
16188 @table @option
16189 @item a_weighting(f)
16190 A-weighting of equal loudness
16191 @item b_weighting(f)
16192 B-weighting of equal loudness
16193 @item c_weighting(f)
16194 C-weighting of equal loudness.
16195 @end table
16196 Default value is @code{16}.
16197
16198 @item bar_v, volume2
16199 Specify the bargraph volume expression. It can contain variables:
16200 @table @option
16201 @item sono_v
16202 the @var{sono_v} evaluated expression
16203 @item frequency, freq, f
16204 the frequency where it is evaluated
16205 @item timeclamp, tc
16206 the value of @var{timeclamp} option
16207 @end table
16208 and functions:
16209 @table @option
16210 @item a_weighting(f)
16211 A-weighting of equal loudness
16212 @item b_weighting(f)
16213 B-weighting of equal loudness
16214 @item c_weighting(f)
16215 C-weighting of equal loudness.
16216 @end table
16217 Default value is @code{sono_v}.
16218
16219 @item sono_g, gamma
16220 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
16221 higher gamma makes the spectrum having more range. Default value is @code{3}.
16222 Acceptable range is @code{[1, 7]}.
16223
16224 @item bar_g, gamma2
16225 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
16226 @code{[1, 7]}.
16227
16228 @item timeclamp, tc
16229 Specify the transform timeclamp. At low frequency, there is trade-off between
16230 accuracy in time domain and frequency domain. If timeclamp is lower,
16231 event in time domain is represented more accurately (such as fast bass drum),
16232 otherwise event in frequency domain is represented more accurately
16233 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
16234
16235 @item basefreq
16236 Specify the transform base frequency. Default value is @code{20.01523126408007475},
16237 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
16238
16239 @item endfreq
16240 Specify the transform end frequency. Default value is @code{20495.59681441799654},
16241 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
16242
16243 @item coeffclamp
16244 This option is deprecated and ignored.
16245
16246 @item tlength
16247 Specify the transform length in time domain. Use this option to control accuracy
16248 trade-off between time domain and frequency domain at every frequency sample.
16249 It can contain variables:
16250 @table @option
16251 @item frequency, freq, f
16252 the frequency where it is evaluated
16253 @item timeclamp, tc
16254 the value of @var{timeclamp} option.
16255 @end table
16256 Default value is @code{384*tc/(384+tc*f)}.
16257
16258 @item count
16259 Specify the transform count for every video frame. Default value is @code{6}.
16260 Acceptable range is @code{[1, 30]}.
16261
16262 @item fcount
16263 Specify the transform count for every single pixel. Default value is @code{0},
16264 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
16265
16266 @item fontfile
16267 Specify font file for use with freetype to draw the axis. If not specified,
16268 use embedded font. Note that drawing with font file or embedded font is not
16269 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
16270 option instead.
16271
16272 @item fontcolor
16273 Specify font color expression. This is arithmetic expression that should return
16274 integer value 0xRRGGBB. It can contain variables:
16275 @table @option
16276 @item frequency, freq, f
16277 the frequency where it is evaluated
16278 @item timeclamp, tc
16279 the value of @var{timeclamp} option
16280 @end table
16281 and functions:
16282 @table @option
16283 @item midi(f)
16284 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
16285 @item r(x), g(x), b(x)
16286 red, green, and blue value of intensity x.
16287 @end table
16288 Default value is @code{st(0, (midi(f)-59.5)/12);
16289 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
16290 r(1-ld(1)) + b(ld(1))}.
16291
16292 @item axisfile
16293 Specify image file to draw the axis. This option override @var{fontfile} and
16294 @var{fontcolor} option.
16295
16296 @item axis, text
16297 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
16298 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
16299 Default value is @code{1}.
16300
16301 @end table
16302
16303 @subsection Examples
16304
16305 @itemize
16306 @item
16307 Playing audio while showing the spectrum:
16308 @example
16309 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
16310 @end example
16311
16312 @item
16313 Same as above, but with frame rate 30 fps:
16314 @example
16315 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
16316 @end example
16317
16318 @item
16319 Playing at 1280x720:
16320 @example
16321 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
16322 @end example
16323
16324 @item
16325 Disable sonogram display:
16326 @example
16327 sono_h=0
16328 @end example
16329
16330 @item
16331 A1 and its harmonics: A1, A2, (near)E3, A3:
16332 @example
16333 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),
16334                  asplit[a][out1]; [a] showcqt [out0]'
16335 @end example
16336
16337 @item
16338 Same as above, but with more accuracy in frequency domain:
16339 @example
16340 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),
16341                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
16342 @end example
16343
16344 @item
16345 Custom volume:
16346 @example
16347 bar_v=10:sono_v=bar_v*a_weighting(f)
16348 @end example
16349
16350 @item
16351 Custom gamma, now spectrum is linear to the amplitude.
16352 @example
16353 bar_g=2:sono_g=2
16354 @end example
16355
16356 @item
16357 Custom tlength equation:
16358 @example
16359 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)))'
16360 @end example
16361
16362 @item
16363 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
16364 @example
16365 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
16366 @end example
16367
16368 @item
16369 Custom frequency range with custom axis using image file:
16370 @example
16371 axisfile=myaxis.png:basefreq=40:endfreq=10000
16372 @end example
16373 @end itemize
16374
16375 @section showfreqs
16376
16377 Convert input audio to video output representing the audio power spectrum.
16378 Audio amplitude is on Y-axis while frequency is on X-axis.
16379
16380 The filter accepts the following options:
16381
16382 @table @option
16383 @item size, s
16384 Specify size of video. For the syntax of this option, check the
16385 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16386 Default is @code{1024x512}.
16387
16388 @item mode
16389 Set display mode.
16390 This set how each frequency bin will be represented.
16391
16392 It accepts the following values:
16393 @table @samp
16394 @item line
16395 @item bar
16396 @item dot
16397 @end table
16398 Default is @code{bar}.
16399
16400 @item ascale
16401 Set amplitude scale.
16402
16403 It accepts the following values:
16404 @table @samp
16405 @item lin
16406 Linear scale.
16407
16408 @item sqrt
16409 Square root scale.
16410
16411 @item cbrt
16412 Cubic root scale.
16413
16414 @item log
16415 Logarithmic scale.
16416 @end table
16417 Default is @code{log}.
16418
16419 @item fscale
16420 Set frequency scale.
16421
16422 It accepts the following values:
16423 @table @samp
16424 @item lin
16425 Linear scale.
16426
16427 @item log
16428 Logarithmic scale.
16429
16430 @item rlog
16431 Reverse logarithmic scale.
16432 @end table
16433 Default is @code{lin}.
16434
16435 @item win_size
16436 Set window size.
16437
16438 It accepts the following values:
16439 @table @samp
16440 @item w16
16441 @item w32
16442 @item w64
16443 @item w128
16444 @item w256
16445 @item w512
16446 @item w1024
16447 @item w2048
16448 @item w4096
16449 @item w8192
16450 @item w16384
16451 @item w32768
16452 @item w65536
16453 @end table
16454 Default is @code{w2048}
16455
16456 @item win_func
16457 Set windowing function.
16458
16459 It accepts the following values:
16460 @table @samp
16461 @item rect
16462 @item bartlett
16463 @item hanning
16464 @item hamming
16465 @item blackman
16466 @item welch
16467 @item flattop
16468 @item bharris
16469 @item bnuttall
16470 @item bhann
16471 @item sine
16472 @item nuttall
16473 @item lanczos
16474 @item gauss
16475 @item tukey
16476 @end table
16477 Default is @code{hanning}.
16478
16479 @item overlap
16480 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16481 which means optimal overlap for selected window function will be picked.
16482
16483 @item averaging
16484 Set time averaging. Setting this to 0 will display current maximal peaks.
16485 Default is @code{1}, which means time averaging is disabled.
16486
16487 @item colors
16488 Specify list of colors separated by space or by '|' which will be used to
16489 draw channel frequencies. Unrecognized or missing colors will be replaced
16490 by white color.
16491
16492 @item cmode
16493 Set channel display mode.
16494
16495 It accepts the following values:
16496 @table @samp
16497 @item combined
16498 @item separate
16499 @end table
16500 Default is @code{combined}.
16501
16502 @end table
16503
16504 @anchor{showspectrum}
16505 @section showspectrum
16506
16507 Convert input audio to a video output, representing the audio frequency
16508 spectrum.
16509
16510 The filter accepts the following options:
16511
16512 @table @option
16513 @item size, s
16514 Specify the video size for the output. For the syntax of this option, check the
16515 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16516 Default value is @code{640x512}.
16517
16518 @item slide
16519 Specify how the spectrum should slide along the window.
16520
16521 It accepts the following values:
16522 @table @samp
16523 @item replace
16524 the samples start again on the left when they reach the right
16525 @item scroll
16526 the samples scroll from right to left
16527 @item rscroll
16528 the samples scroll from left to right
16529 @item fullframe
16530 frames are only produced when the samples reach the right
16531 @end table
16532
16533 Default value is @code{replace}.
16534
16535 @item mode
16536 Specify display mode.
16537
16538 It accepts the following values:
16539 @table @samp
16540 @item combined
16541 all channels are displayed in the same row
16542 @item separate
16543 all channels are displayed in separate rows
16544 @end table
16545
16546 Default value is @samp{combined}.
16547
16548 @item color
16549 Specify display color mode.
16550
16551 It accepts the following values:
16552 @table @samp
16553 @item channel
16554 each channel is displayed in a separate color
16555 @item intensity
16556 each channel is displayed using the same color scheme
16557 @item rainbow
16558 each channel is displayed using the rainbow color scheme
16559 @item moreland
16560 each channel is displayed using the moreland color scheme
16561 @item nebulae
16562 each channel is displayed using the nebulae color scheme
16563 @item fire
16564 each channel is displayed using the fire color scheme
16565 @item fiery
16566 each channel is displayed using the fiery color scheme
16567 @item fruit
16568 each channel is displayed using the fruit color scheme
16569 @item cool
16570 each channel is displayed using the cool color scheme
16571 @end table
16572
16573 Default value is @samp{channel}.
16574
16575 @item scale
16576 Specify scale used for calculating intensity color values.
16577
16578 It accepts the following values:
16579 @table @samp
16580 @item lin
16581 linear
16582 @item sqrt
16583 square root, default
16584 @item cbrt
16585 cubic root
16586 @item 4thrt
16587 4th root
16588 @item 5thrt
16589 5th root
16590 @item log
16591 logarithmic
16592 @end table
16593
16594 Default value is @samp{sqrt}.
16595
16596 @item saturation
16597 Set saturation modifier for displayed colors. Negative values provide
16598 alternative color scheme. @code{0} is no saturation at all.
16599 Saturation must be in [-10.0, 10.0] range.
16600 Default value is @code{1}.
16601
16602 @item win_func
16603 Set window function.
16604
16605 It accepts the following values:
16606 @table @samp
16607 @item rect
16608 @item bartlett
16609 @item hann
16610 @item hanning
16611 @item hamming
16612 @item blackman
16613 @item welch
16614 @item flattop
16615 @item bharris
16616 @item bnuttall
16617 @item bhann
16618 @item sine
16619 @item nuttall
16620 @item lanczos
16621 @item gauss
16622 @item tukey
16623 @end table
16624
16625 Default value is @code{hann}.
16626
16627 @item orientation
16628 Set orientation of time vs frequency axis. Can be @code{vertical} or
16629 @code{horizontal}. Default is @code{vertical}.
16630
16631 @item overlap
16632 Set ratio of overlap window. Default value is @code{0}.
16633 When value is @code{1} overlap is set to recommended size for specific
16634 window function currently used.
16635
16636 @item gain
16637 Set scale gain for calculating intensity color values.
16638 Default value is @code{1}.
16639
16640 @item data
16641 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
16642
16643 @item rotation
16644 Set color rotation, must be in [-1.0, 1.0] range.
16645 Default value is @code{0}.
16646 @end table
16647
16648 The usage is very similar to the showwaves filter; see the examples in that
16649 section.
16650
16651 @subsection Examples
16652
16653 @itemize
16654 @item
16655 Large window with logarithmic color scaling:
16656 @example
16657 showspectrum=s=1280x480:scale=log
16658 @end example
16659
16660 @item
16661 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
16662 @example
16663 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16664              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
16665 @end example
16666 @end itemize
16667
16668 @section showspectrumpic
16669
16670 Convert input audio to a single video frame, representing the audio frequency
16671 spectrum.
16672
16673 The filter accepts the following options:
16674
16675 @table @option
16676 @item size, s
16677 Specify the video size for the output. For the syntax of this option, check the
16678 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16679 Default value is @code{4096x2048}.
16680
16681 @item mode
16682 Specify display mode.
16683
16684 It accepts the following values:
16685 @table @samp
16686 @item combined
16687 all channels are displayed in the same row
16688 @item separate
16689 all channels are displayed in separate rows
16690 @end table
16691 Default value is @samp{combined}.
16692
16693 @item color
16694 Specify display color mode.
16695
16696 It accepts the following values:
16697 @table @samp
16698 @item channel
16699 each channel is displayed in a separate color
16700 @item intensity
16701 each channel is displayed using the same color scheme
16702 @item rainbow
16703 each channel is displayed using the rainbow color scheme
16704 @item moreland
16705 each channel is displayed using the moreland color scheme
16706 @item nebulae
16707 each channel is displayed using the nebulae color scheme
16708 @item fire
16709 each channel is displayed using the fire color scheme
16710 @item fiery
16711 each channel is displayed using the fiery color scheme
16712 @item fruit
16713 each channel is displayed using the fruit color scheme
16714 @item cool
16715 each channel is displayed using the cool color scheme
16716 @end table
16717 Default value is @samp{intensity}.
16718
16719 @item scale
16720 Specify scale used for calculating intensity color values.
16721
16722 It accepts the following values:
16723 @table @samp
16724 @item lin
16725 linear
16726 @item sqrt
16727 square root, default
16728 @item cbrt
16729 cubic root
16730 @item 4thrt
16731 4th root
16732 @item 5thrt
16733 5th root
16734 @item log
16735 logarithmic
16736 @end table
16737 Default value is @samp{log}.
16738
16739 @item saturation
16740 Set saturation modifier for displayed colors. Negative values provide
16741 alternative color scheme. @code{0} is no saturation at all.
16742 Saturation must be in [-10.0, 10.0] range.
16743 Default value is @code{1}.
16744
16745 @item win_func
16746 Set window function.
16747
16748 It accepts the following values:
16749 @table @samp
16750 @item rect
16751 @item bartlett
16752 @item hann
16753 @item hanning
16754 @item hamming
16755 @item blackman
16756 @item welch
16757 @item flattop
16758 @item bharris
16759 @item bnuttall
16760 @item bhann
16761 @item sine
16762 @item nuttall
16763 @item lanczos
16764 @item gauss
16765 @item tukey
16766 @end table
16767 Default value is @code{hann}.
16768
16769 @item orientation
16770 Set orientation of time vs frequency axis. Can be @code{vertical} or
16771 @code{horizontal}. Default is @code{vertical}.
16772
16773 @item gain
16774 Set scale gain for calculating intensity color values.
16775 Default value is @code{1}.
16776
16777 @item legend
16778 Draw time and frequency axes and legends. Default is enabled.
16779
16780 @item rotation
16781 Set color rotation, must be in [-1.0, 1.0] range.
16782 Default value is @code{0}.
16783 @end table
16784
16785 @subsection Examples
16786
16787 @itemize
16788 @item
16789 Extract an audio spectrogram of a whole audio track
16790 in a 1024x1024 picture using @command{ffmpeg}:
16791 @example
16792 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
16793 @end example
16794 @end itemize
16795
16796 @section showvolume
16797
16798 Convert input audio volume to a video output.
16799
16800 The filter accepts the following options:
16801
16802 @table @option
16803 @item rate, r
16804 Set video rate.
16805
16806 @item b
16807 Set border width, allowed range is [0, 5]. Default is 1.
16808
16809 @item w
16810 Set channel width, allowed range is [80, 8192]. Default is 400.
16811
16812 @item h
16813 Set channel height, allowed range is [1, 900]. Default is 20.
16814
16815 @item f
16816 Set fade, allowed range is [0.001, 1]. Default is 0.95.
16817
16818 @item c
16819 Set volume color expression.
16820
16821 The expression can use the following variables:
16822
16823 @table @option
16824 @item VOLUME
16825 Current max volume of channel in dB.
16826
16827 @item CHANNEL
16828 Current channel number, starting from 0.
16829 @end table
16830
16831 @item t
16832 If set, displays channel names. Default is enabled.
16833
16834 @item v
16835 If set, displays volume values. Default is enabled.
16836
16837 @item o
16838 Set orientation, can be @code{horizontal} or @code{vertical},
16839 default is @code{horizontal}.
16840
16841 @item s
16842 Set step size, allowed range s [0, 5]. Default is 0, which means
16843 step is disabled.
16844 @end table
16845
16846 @section showwaves
16847
16848 Convert input audio to a video output, representing the samples waves.
16849
16850 The filter accepts the following options:
16851
16852 @table @option
16853 @item size, s
16854 Specify the video size for the output. For the syntax of this option, check the
16855 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16856 Default value is @code{600x240}.
16857
16858 @item mode
16859 Set display mode.
16860
16861 Available values are:
16862 @table @samp
16863 @item point
16864 Draw a point for each sample.
16865
16866 @item line
16867 Draw a vertical line for each sample.
16868
16869 @item p2p
16870 Draw a point for each sample and a line between them.
16871
16872 @item cline
16873 Draw a centered vertical line for each sample.
16874 @end table
16875
16876 Default value is @code{point}.
16877
16878 @item n
16879 Set the number of samples which are printed on the same column. A
16880 larger value will decrease the frame rate. Must be a positive
16881 integer. This option can be set only if the value for @var{rate}
16882 is not explicitly specified.
16883
16884 @item rate, r
16885 Set the (approximate) output frame rate. This is done by setting the
16886 option @var{n}. Default value is "25".
16887
16888 @item split_channels
16889 Set if channels should be drawn separately or overlap. Default value is 0.
16890
16891 @item colors
16892 Set colors separated by '|' which are going to be used for drawing of each channel.
16893
16894 @item scale
16895 Set amplitude scale.
16896
16897 Available values are:
16898 @table @samp
16899 @item lin
16900 Linear.
16901
16902 @item log
16903 Logarithmic.
16904
16905 @item sqrt
16906 Square root.
16907
16908 @item cbrt
16909 Cubic root.
16910 @end table
16911
16912 Default is linear.
16913 @end table
16914
16915 @subsection Examples
16916
16917 @itemize
16918 @item
16919 Output the input file audio and the corresponding video representation
16920 at the same time:
16921 @example
16922 amovie=a.mp3,asplit[out0],showwaves[out1]
16923 @end example
16924
16925 @item
16926 Create a synthetic signal and show it with showwaves, forcing a
16927 frame rate of 30 frames per second:
16928 @example
16929 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
16930 @end example
16931 @end itemize
16932
16933 @section showwavespic
16934
16935 Convert input audio to a single video frame, representing the samples waves.
16936
16937 The filter accepts the following options:
16938
16939 @table @option
16940 @item size, s
16941 Specify the video size for the output. For the syntax of this option, check the
16942 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16943 Default value is @code{600x240}.
16944
16945 @item split_channels
16946 Set if channels should be drawn separately or overlap. Default value is 0.
16947
16948 @item colors
16949 Set colors separated by '|' which are going to be used for drawing of each channel.
16950
16951 @item scale
16952 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
16953 Default is linear.
16954 @end table
16955
16956 @subsection Examples
16957
16958 @itemize
16959 @item
16960 Extract a channel split representation of the wave form of a whole audio track
16961 in a 1024x800 picture using @command{ffmpeg}:
16962 @example
16963 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
16964 @end example
16965 @end itemize
16966
16967 @section spectrumsynth
16968
16969 Sythesize audio from 2 input video spectrums, first input stream represents
16970 magnitude across time and second represents phase across time.
16971 The filter will transform from frequency domain as displayed in videos back
16972 to time domain as presented in audio output.
16973
16974 This filter is primarly created for reversing processed @ref{showspectrum}
16975 filter outputs, but can synthesize sound from other spectrograms too.
16976 But in such case results are going to be poor if the phase data is not
16977 available, because in such cases phase data need to be recreated, usually
16978 its just recreated from random noise.
16979 For best results use gray only output (@code{channel} color mode in
16980 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
16981 @code{lin} scale for phase video. To produce phase, for 2nd video, use
16982 @code{data} option. Inputs videos should generally use @code{fullframe}
16983 slide mode as that saves resources needed for decoding video.
16984
16985 The filter accepts the following options:
16986
16987 @table @option
16988 @item sample_rate
16989 Specify sample rate of output audio, the sample rate of audio from which
16990 spectrum was generated may differ.
16991
16992 @item channels
16993 Set number of channels represented in input video spectrums.
16994
16995 @item scale
16996 Set scale which was used when generating magnitude input spectrum.
16997 Can be @code{lin} or @code{log}. Default is @code{log}.
16998
16999 @item slide
17000 Set slide which was used when generating inputs spectrums.
17001 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
17002 Default is @code{fullframe}.
17003
17004 @item win_func
17005 Set window function used for resynthesis.
17006
17007 @item overlap
17008 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17009 which means optimal overlap for selected window function will be picked.
17010
17011 @item orientation
17012 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
17013 Default is @code{vertical}.
17014 @end table
17015
17016 @subsection Examples
17017
17018 @itemize
17019 @item
17020 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
17021 then resynthesize videos back to audio with spectrumsynth:
17022 @example
17023 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
17024 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
17025 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
17026 @end example
17027 @end itemize
17028
17029 @section split, asplit
17030
17031 Split input into several identical outputs.
17032
17033 @code{asplit} works with audio input, @code{split} with video.
17034
17035 The filter accepts a single parameter which specifies the number of outputs. If
17036 unspecified, it defaults to 2.
17037
17038 @subsection Examples
17039
17040 @itemize
17041 @item
17042 Create two separate outputs from the same input:
17043 @example
17044 [in] split [out0][out1]
17045 @end example
17046
17047 @item
17048 To create 3 or more outputs, you need to specify the number of
17049 outputs, like in:
17050 @example
17051 [in] asplit=3 [out0][out1][out2]
17052 @end example
17053
17054 @item
17055 Create two separate outputs from the same input, one cropped and
17056 one padded:
17057 @example
17058 [in] split [splitout1][splitout2];
17059 [splitout1] crop=100:100:0:0    [cropout];
17060 [splitout2] pad=200:200:100:100 [padout];
17061 @end example
17062
17063 @item
17064 Create 5 copies of the input audio with @command{ffmpeg}:
17065 @example
17066 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
17067 @end example
17068 @end itemize
17069
17070 @section zmq, azmq
17071
17072 Receive commands sent through a libzmq client, and forward them to
17073 filters in the filtergraph.
17074
17075 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
17076 must be inserted between two video filters, @code{azmq} between two
17077 audio filters.
17078
17079 To enable these filters you need to install the libzmq library and
17080 headers and configure FFmpeg with @code{--enable-libzmq}.
17081
17082 For more information about libzmq see:
17083 @url{http://www.zeromq.org/}
17084
17085 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
17086 receives messages sent through a network interface defined by the
17087 @option{bind_address} option.
17088
17089 The received message must be in the form:
17090 @example
17091 @var{TARGET} @var{COMMAND} [@var{ARG}]
17092 @end example
17093
17094 @var{TARGET} specifies the target of the command, usually the name of
17095 the filter class or a specific filter instance name.
17096
17097 @var{COMMAND} specifies the name of the command for the target filter.
17098
17099 @var{ARG} is optional and specifies the optional argument list for the
17100 given @var{COMMAND}.
17101
17102 Upon reception, the message is processed and the corresponding command
17103 is injected into the filtergraph. Depending on the result, the filter
17104 will send a reply to the client, adopting the format:
17105 @example
17106 @var{ERROR_CODE} @var{ERROR_REASON}
17107 @var{MESSAGE}
17108 @end example
17109
17110 @var{MESSAGE} is optional.
17111
17112 @subsection Examples
17113
17114 Look at @file{tools/zmqsend} for an example of a zmq client which can
17115 be used to send commands processed by these filters.
17116
17117 Consider the following filtergraph generated by @command{ffplay}
17118 @example
17119 ffplay -dumpgraph 1 -f lavfi "
17120 color=s=100x100:c=red  [l];
17121 color=s=100x100:c=blue [r];
17122 nullsrc=s=200x100, zmq [bg];
17123 [bg][l]   overlay      [bg+l];
17124 [bg+l][r] overlay=x=100 "
17125 @end example
17126
17127 To change the color of the left side of the video, the following
17128 command can be used:
17129 @example
17130 echo Parsed_color_0 c yellow | tools/zmqsend
17131 @end example
17132
17133 To change the right side:
17134 @example
17135 echo Parsed_color_1 c pink | tools/zmqsend
17136 @end example
17137
17138 @c man end MULTIMEDIA FILTERS
17139
17140 @chapter Multimedia Sources
17141 @c man begin MULTIMEDIA SOURCES
17142
17143 Below is a description of the currently available multimedia sources.
17144
17145 @section amovie
17146
17147 This is the same as @ref{movie} source, except it selects an audio
17148 stream by default.
17149
17150 @anchor{movie}
17151 @section movie
17152
17153 Read audio and/or video stream(s) from a movie container.
17154
17155 It accepts the following parameters:
17156
17157 @table @option
17158 @item filename
17159 The name of the resource to read (not necessarily a file; it can also be a
17160 device or a stream accessed through some protocol).
17161
17162 @item format_name, f
17163 Specifies the format assumed for the movie to read, and can be either
17164 the name of a container or an input device. If not specified, the
17165 format is guessed from @var{movie_name} or by probing.
17166
17167 @item seek_point, sp
17168 Specifies the seek point in seconds. The frames will be output
17169 starting from this seek point. The parameter is evaluated with
17170 @code{av_strtod}, so the numerical value may be suffixed by an IS
17171 postfix. The default value is "0".
17172
17173 @item streams, s
17174 Specifies the streams to read. Several streams can be specified,
17175 separated by "+". The source will then have as many outputs, in the
17176 same order. The syntax is explained in the ``Stream specifiers''
17177 section in the ffmpeg manual. Two special names, "dv" and "da" specify
17178 respectively the default (best suited) video and audio stream. Default
17179 is "dv", or "da" if the filter is called as "amovie".
17180
17181 @item stream_index, si
17182 Specifies the index of the video stream to read. If the value is -1,
17183 the most suitable video stream will be automatically selected. The default
17184 value is "-1". Deprecated. If the filter is called "amovie", it will select
17185 audio instead of video.
17186
17187 @item loop
17188 Specifies how many times to read the stream in sequence.
17189 If the value is less than 1, the stream will be read again and again.
17190 Default value is "1".
17191
17192 Note that when the movie is looped the source timestamps are not
17193 changed, so it will generate non monotonically increasing timestamps.
17194
17195 @item discontinuity
17196 Specifies the time difference between frames above which the point is
17197 considered a timestamp discontinuity which is removed by adjusting the later
17198 timestamps.
17199 @end table
17200
17201 It allows overlaying a second video on top of the main input of
17202 a filtergraph, as shown in this graph:
17203 @example
17204 input -----------> deltapts0 --> overlay --> output
17205                                     ^
17206                                     |
17207 movie --> scale--> deltapts1 -------+
17208 @end example
17209 @subsection Examples
17210
17211 @itemize
17212 @item
17213 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
17214 on top of the input labelled "in":
17215 @example
17216 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
17217 [in] setpts=PTS-STARTPTS [main];
17218 [main][over] overlay=16:16 [out]
17219 @end example
17220
17221 @item
17222 Read from a video4linux2 device, and overlay it on top of the input
17223 labelled "in":
17224 @example
17225 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
17226 [in] setpts=PTS-STARTPTS [main];
17227 [main][over] overlay=16:16 [out]
17228 @end example
17229
17230 @item
17231 Read the first video stream and the audio stream with id 0x81 from
17232 dvd.vob; the video is connected to the pad named "video" and the audio is
17233 connected to the pad named "audio":
17234 @example
17235 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
17236 @end example
17237 @end itemize
17238
17239 @subsection Commands
17240
17241 Both movie and amovie support the following commands:
17242 @table @option
17243 @item seek
17244 Perform seek using "av_seek_frame".
17245 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
17246 @itemize
17247 @item
17248 @var{stream_index}: If stream_index is -1, a default
17249 stream is selected, and @var{timestamp} is automatically converted
17250 from AV_TIME_BASE units to the stream specific time_base.
17251 @item
17252 @var{timestamp}: Timestamp in AVStream.time_base units
17253 or, if no stream is specified, in AV_TIME_BASE units.
17254 @item
17255 @var{flags}: Flags which select direction and seeking mode.
17256 @end itemize
17257
17258 @item get_duration
17259 Get movie duration in AV_TIME_BASE units.
17260
17261 @end table
17262
17263 @c man end MULTIMEDIA SOURCES