]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/avf_showvolume: use current peak value for picking colors
[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 If you want to delay exact number of samples, append 'S' to number.
517 @end table
518
519 @subsection Examples
520
521 @itemize
522 @item
523 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
524 the second channel (and any other channels that may be present) unchanged.
525 @example
526 adelay=1500|0|500
527 @end example
528
529 @item
530 Delay second channel by 500 samples, the third channel by 700 samples and leave
531 the first channel (and any other channels that may be present) unchanged.
532 @example
533 adelay=0|500S|700S
534 @end example
535 @end itemize
536
537 @section aecho
538
539 Apply echoing to the input audio.
540
541 Echoes are reflected sound and can occur naturally amongst mountains
542 (and sometimes large buildings) when talking or shouting; digital echo
543 effects emulate this behaviour and are often used to help fill out the
544 sound of a single instrument or vocal. The time difference between the
545 original signal and the reflection is the @code{delay}, and the
546 loudness of the reflected signal is the @code{decay}.
547 Multiple echoes can have different delays and decays.
548
549 A description of the accepted parameters follows.
550
551 @table @option
552 @item in_gain
553 Set input gain of reflected signal. Default is @code{0.6}.
554
555 @item out_gain
556 Set output gain of reflected signal. Default is @code{0.3}.
557
558 @item delays
559 Set list of time intervals in milliseconds between original signal and reflections
560 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
561 Default is @code{1000}.
562
563 @item decays
564 Set list of loudnesses of reflected signals separated by '|'.
565 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
566 Default is @code{0.5}.
567 @end table
568
569 @subsection Examples
570
571 @itemize
572 @item
573 Make it sound as if there are twice as many instruments as are actually playing:
574 @example
575 aecho=0.8:0.88:60:0.4
576 @end example
577
578 @item
579 If delay is very short, then it sound like a (metallic) robot playing music:
580 @example
581 aecho=0.8:0.88:6:0.4
582 @end example
583
584 @item
585 A longer delay will sound like an open air concert in the mountains:
586 @example
587 aecho=0.8:0.9:1000:0.3
588 @end example
589
590 @item
591 Same as above but with one more mountain:
592 @example
593 aecho=0.8:0.9:1000|1800:0.3|0.25
594 @end example
595 @end itemize
596
597 @section aemphasis
598 Audio emphasis filter creates or restores material directly taken from LPs or
599 emphased CDs with different filter curves. E.g. to store music on vinyl the
600 signal has to be altered by a filter first to even out the disadvantages of
601 this recording medium.
602 Once the material is played back the inverse filter has to be applied to
603 restore the distortion of the frequency response.
604
605 The filter accepts the following options:
606
607 @table @option
608 @item level_in
609 Set input gain.
610
611 @item level_out
612 Set output gain.
613
614 @item mode
615 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
616 use @code{production} mode. Default is @code{reproduction} mode.
617
618 @item type
619 Set filter type. Selects medium. Can be one of the following:
620
621 @table @option
622 @item col
623 select Columbia.
624 @item emi
625 select EMI.
626 @item bsi
627 select BSI (78RPM).
628 @item riaa
629 select RIAA.
630 @item cd
631 select Compact Disc (CD).
632 @item 50fm
633 select 50µs (FM).
634 @item 75fm
635 select 75µs (FM).
636 @item 50kf
637 select 50µs (FM-KF).
638 @item 75kf
639 select 75µs (FM-KF).
640 @end table
641 @end table
642
643 @section aeval
644
645 Modify an audio signal according to the specified expressions.
646
647 This filter accepts one or more expressions (one for each channel),
648 which are evaluated and used to modify a corresponding audio signal.
649
650 It accepts the following parameters:
651
652 @table @option
653 @item exprs
654 Set the '|'-separated expressions list for each separate channel. If
655 the number of input channels is greater than the number of
656 expressions, the last specified expression is used for the remaining
657 output channels.
658
659 @item channel_layout, c
660 Set output channel layout. If not specified, the channel layout is
661 specified by the number of expressions. If set to @samp{same}, it will
662 use by default the same input channel layout.
663 @end table
664
665 Each expression in @var{exprs} can contain the following constants and functions:
666
667 @table @option
668 @item ch
669 channel number of the current expression
670
671 @item n
672 number of the evaluated sample, starting from 0
673
674 @item s
675 sample rate
676
677 @item t
678 time of the evaluated sample expressed in seconds
679
680 @item nb_in_channels
681 @item nb_out_channels
682 input and output number of channels
683
684 @item val(CH)
685 the value of input channel with number @var{CH}
686 @end table
687
688 Note: this filter is slow. For faster processing you should use a
689 dedicated filter.
690
691 @subsection Examples
692
693 @itemize
694 @item
695 Half volume:
696 @example
697 aeval=val(ch)/2:c=same
698 @end example
699
700 @item
701 Invert phase of the second channel:
702 @example
703 aeval=val(0)|-val(1)
704 @end example
705 @end itemize
706
707 @anchor{afade}
708 @section afade
709
710 Apply fade-in/out effect to input audio.
711
712 A description of the accepted parameters follows.
713
714 @table @option
715 @item type, t
716 Specify the effect type, can be either @code{in} for fade-in, or
717 @code{out} for a fade-out effect. Default is @code{in}.
718
719 @item start_sample, ss
720 Specify the number of the start sample for starting to apply the fade
721 effect. Default is 0.
722
723 @item nb_samples, ns
724 Specify the number of samples for which the fade effect has to last. At
725 the end of the fade-in effect the output audio will have the same
726 volume as the input audio, at the end of the fade-out transition
727 the output audio will be silence. Default is 44100.
728
729 @item start_time, st
730 Specify the start time of the fade effect. Default is 0.
731 The value must be specified as a time duration; see
732 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
733 for the accepted syntax.
734 If set this option is used instead of @var{start_sample}.
735
736 @item duration, d
737 Specify the duration of the fade effect. See
738 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
739 for the accepted syntax.
740 At the end of the fade-in effect the output audio will have the same
741 volume as the input audio, at the end of the fade-out transition
742 the output audio will be silence.
743 By default the duration is determined by @var{nb_samples}.
744 If set this option is used instead of @var{nb_samples}.
745
746 @item curve
747 Set curve for fade transition.
748
749 It accepts the following values:
750 @table @option
751 @item tri
752 select triangular, linear slope (default)
753 @item qsin
754 select quarter of sine wave
755 @item hsin
756 select half of sine wave
757 @item esin
758 select exponential sine wave
759 @item log
760 select logarithmic
761 @item ipar
762 select inverted parabola
763 @item qua
764 select quadratic
765 @item cub
766 select cubic
767 @item squ
768 select square root
769 @item cbr
770 select cubic root
771 @item par
772 select parabola
773 @item exp
774 select exponential
775 @item iqsin
776 select inverted quarter of sine wave
777 @item ihsin
778 select inverted half of sine wave
779 @item dese
780 select double-exponential seat
781 @item desi
782 select double-exponential sigmoid
783 @end table
784 @end table
785
786 @subsection Examples
787
788 @itemize
789 @item
790 Fade in first 15 seconds of audio:
791 @example
792 afade=t=in:ss=0:d=15
793 @end example
794
795 @item
796 Fade out last 25 seconds of a 900 seconds audio:
797 @example
798 afade=t=out:st=875:d=25
799 @end example
800 @end itemize
801
802 @section afftfilt
803 Apply arbitrary expressions to samples in frequency domain.
804
805 @table @option
806 @item real
807 Set frequency domain real expression for each separate channel separated
808 by '|'. Default is "1".
809 If the number of input channels is greater than the number of
810 expressions, the last specified expression is used for the remaining
811 output channels.
812
813 @item imag
814 Set frequency domain imaginary expression for each separate channel
815 separated by '|'. If not set, @var{real} option is used.
816
817 Each expression in @var{real} and @var{imag} can contain the following
818 constants:
819
820 @table @option
821 @item sr
822 sample rate
823
824 @item b
825 current frequency bin number
826
827 @item nb
828 number of available bins
829
830 @item ch
831 channel number of the current expression
832
833 @item chs
834 number of channels
835
836 @item pts
837 current frame pts
838 @end table
839
840 @item win_size
841 Set window size.
842
843 It accepts the following values:
844 @table @samp
845 @item w16
846 @item w32
847 @item w64
848 @item w128
849 @item w256
850 @item w512
851 @item w1024
852 @item w2048
853 @item w4096
854 @item w8192
855 @item w16384
856 @item w32768
857 @item w65536
858 @end table
859 Default is @code{w4096}
860
861 @item win_func
862 Set window function. Default is @code{hann}.
863
864 @item overlap
865 Set window overlap. If set to 1, the recommended overlap for selected
866 window function will be picked. Default is @code{0.75}.
867 @end table
868
869 @subsection Examples
870
871 @itemize
872 @item
873 Leave almost only low frequencies in audio:
874 @example
875 afftfilt="1-clip((b/nb)*b,0,1)"
876 @end example
877 @end itemize
878
879 @anchor{aformat}
880 @section aformat
881
882 Set output format constraints for the input audio. The framework will
883 negotiate the most appropriate format to minimize conversions.
884
885 It accepts the following parameters:
886 @table @option
887
888 @item sample_fmts
889 A '|'-separated list of requested sample formats.
890
891 @item sample_rates
892 A '|'-separated list of requested sample rates.
893
894 @item channel_layouts
895 A '|'-separated list of requested channel layouts.
896
897 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
898 for the required syntax.
899 @end table
900
901 If a parameter is omitted, all values are allowed.
902
903 Force the output to either unsigned 8-bit or signed 16-bit stereo
904 @example
905 aformat=sample_fmts=u8|s16:channel_layouts=stereo
906 @end example
907
908 @section agate
909
910 A gate is mainly used to reduce lower parts of a signal. This kind of signal
911 processing reduces disturbing noise between useful signals.
912
913 Gating is done by detecting the volume below a chosen level @var{threshold}
914 and divide it by the factor set with @var{ratio}. The bottom of the noise
915 floor is set via @var{range}. Because an exact manipulation of the signal
916 would cause distortion of the waveform the reduction can be levelled over
917 time. This is done by setting @var{attack} and @var{release}.
918
919 @var{attack} determines how long the signal has to fall below the threshold
920 before any reduction will occur and @var{release} sets the time the signal
921 has to raise above the threshold to reduce the reduction again.
922 Shorter signals than the chosen attack time will be left untouched.
923
924 @table @option
925 @item level_in
926 Set input level before filtering.
927 Default is 1. Allowed range is from 0.015625 to 64.
928
929 @item range
930 Set the level of gain reduction when the signal is below the threshold.
931 Default is 0.06125. Allowed range is from 0 to 1.
932
933 @item threshold
934 If a signal rises above this level the gain reduction is released.
935 Default is 0.125. Allowed range is from 0 to 1.
936
937 @item ratio
938 Set a ratio about which the signal is reduced.
939 Default is 2. Allowed range is from 1 to 9000.
940
941 @item attack
942 Amount of milliseconds the signal has to rise above the threshold before gain
943 reduction stops.
944 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
945
946 @item release
947 Amount of milliseconds the signal has to fall below the threshold before the
948 reduction is increased again. Default is 250 milliseconds.
949 Allowed range is from 0.01 to 9000.
950
951 @item makeup
952 Set amount of amplification of signal after processing.
953 Default is 1. Allowed range is from 1 to 64.
954
955 @item knee
956 Curve the sharp knee around the threshold to enter gain reduction more softly.
957 Default is 2.828427125. Allowed range is from 1 to 8.
958
959 @item detection
960 Choose if exact signal should be taken for detection or an RMS like one.
961 Default is rms. Can be peak or rms.
962
963 @item link
964 Choose if the average level between all channels or the louder channel affects
965 the reduction.
966 Default is average. Can be average or maximum.
967 @end table
968
969 @section alimiter
970
971 The limiter prevents input signal from raising over a desired threshold.
972 This limiter uses lookahead technology to prevent your signal from distorting.
973 It means that there is a small delay after signal is processed. Keep in mind
974 that the delay it produces is the attack time you set.
975
976 The filter accepts the following options:
977
978 @table @option
979 @item level_in
980 Set input gain. Default is 1.
981
982 @item level_out
983 Set output gain. Default is 1.
984
985 @item limit
986 Don't let signals above this level pass the limiter. Default is 1.
987
988 @item attack
989 The limiter will reach its attenuation level in this amount of time in
990 milliseconds. Default is 5 milliseconds.
991
992 @item release
993 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
994 Default is 50 milliseconds.
995
996 @item asc
997 When gain reduction is always needed ASC takes care of releasing to an
998 average reduction level rather than reaching a reduction of 0 in the release
999 time.
1000
1001 @item asc_level
1002 Select how much the release time is affected by ASC, 0 means nearly no changes
1003 in release time while 1 produces higher release times.
1004
1005 @item level
1006 Auto level output signal. Default is enabled.
1007 This normalizes audio back to 0dB if enabled.
1008 @end table
1009
1010 Depending on picked setting it is recommended to upsample input 2x or 4x times
1011 with @ref{aresample} before applying this filter.
1012
1013 @section allpass
1014
1015 Apply a two-pole all-pass filter with central frequency (in Hz)
1016 @var{frequency}, and filter-width @var{width}.
1017 An all-pass filter changes the audio's frequency to phase relationship
1018 without changing its frequency to amplitude relationship.
1019
1020 The filter accepts the following options:
1021
1022 @table @option
1023 @item frequency, f
1024 Set frequency in Hz.
1025
1026 @item width_type
1027 Set method to specify band-width of filter.
1028 @table @option
1029 @item h
1030 Hz
1031 @item q
1032 Q-Factor
1033 @item o
1034 octave
1035 @item s
1036 slope
1037 @end table
1038
1039 @item width, w
1040 Specify the band-width of a filter in width_type units.
1041 @end table
1042
1043 @section aloop
1044
1045 Loop audio samples.
1046
1047 The filter accepts the following options:
1048
1049 @table @option
1050 @item loop
1051 Set the number of loops.
1052
1053 @item size
1054 Set maximal number of samples.
1055
1056 @item start
1057 Set first sample of loop.
1058 @end table
1059
1060 @anchor{amerge}
1061 @section amerge
1062
1063 Merge two or more audio streams into a single multi-channel stream.
1064
1065 The filter accepts the following options:
1066
1067 @table @option
1068
1069 @item inputs
1070 Set the number of inputs. Default is 2.
1071
1072 @end table
1073
1074 If the channel layouts of the inputs are disjoint, and therefore compatible,
1075 the channel layout of the output will be set accordingly and the channels
1076 will be reordered as necessary. If the channel layouts of the inputs are not
1077 disjoint, the output will have all the channels of the first input then all
1078 the channels of the second input, in that order, and the channel layout of
1079 the output will be the default value corresponding to the total number of
1080 channels.
1081
1082 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1083 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1084 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1085 first input, b1 is the first channel of the second input).
1086
1087 On the other hand, if both input are in stereo, the output channels will be
1088 in the default order: a1, a2, b1, b2, and the channel layout will be
1089 arbitrarily set to 4.0, which may or may not be the expected value.
1090
1091 All inputs must have the same sample rate, and format.
1092
1093 If inputs do not have the same duration, the output will stop with the
1094 shortest.
1095
1096 @subsection Examples
1097
1098 @itemize
1099 @item
1100 Merge two mono files into a stereo stream:
1101 @example
1102 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1103 @end example
1104
1105 @item
1106 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1107 @example
1108 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
1109 @end example
1110 @end itemize
1111
1112 @section amix
1113
1114 Mixes multiple audio inputs into a single output.
1115
1116 Note that this filter only supports float samples (the @var{amerge}
1117 and @var{pan} audio filters support many formats). If the @var{amix}
1118 input has integer samples then @ref{aresample} will be automatically
1119 inserted to perform the conversion to float samples.
1120
1121 For example
1122 @example
1123 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1124 @end example
1125 will mix 3 input audio streams to a single output with the same duration as the
1126 first input and a dropout transition time of 3 seconds.
1127
1128 It accepts the following parameters:
1129 @table @option
1130
1131 @item inputs
1132 The number of inputs. If unspecified, it defaults to 2.
1133
1134 @item duration
1135 How to determine the end-of-stream.
1136 @table @option
1137
1138 @item longest
1139 The duration of the longest input. (default)
1140
1141 @item shortest
1142 The duration of the shortest input.
1143
1144 @item first
1145 The duration of the first input.
1146
1147 @end table
1148
1149 @item dropout_transition
1150 The transition time, in seconds, for volume renormalization when an input
1151 stream ends. The default value is 2 seconds.
1152
1153 @end table
1154
1155 @section anequalizer
1156
1157 High-order parametric multiband equalizer for each channel.
1158
1159 It accepts the following parameters:
1160 @table @option
1161 @item params
1162
1163 This option string is in format:
1164 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1165 Each equalizer band is separated by '|'.
1166
1167 @table @option
1168 @item chn
1169 Set channel number to which equalization will be applied.
1170 If input doesn't have that channel the entry is ignored.
1171
1172 @item cf
1173 Set central frequency for band.
1174 If input doesn't have that frequency the entry is ignored.
1175
1176 @item w
1177 Set band width in hertz.
1178
1179 @item g
1180 Set band gain in dB.
1181
1182 @item f
1183 Set filter type for band, optional, can be:
1184
1185 @table @samp
1186 @item 0
1187 Butterworth, this is default.
1188
1189 @item 1
1190 Chebyshev type 1.
1191
1192 @item 2
1193 Chebyshev type 2.
1194 @end table
1195 @end table
1196
1197 @item curves
1198 With this option activated frequency response of anequalizer is displayed
1199 in video stream.
1200
1201 @item size
1202 Set video stream size. Only useful if curves option is activated.
1203
1204 @item mgain
1205 Set max gain that will be displayed. Only useful if curves option is activated.
1206 Setting this to reasonable value allows to display gain which is derived from
1207 neighbour bands which are too close to each other and thus produce higher gain
1208 when both are activated.
1209
1210 @item fscale
1211 Set frequency scale used to draw frequency response in video output.
1212 Can be linear or logarithmic. Default is logarithmic.
1213
1214 @item colors
1215 Set color for each channel curve which is going to be displayed in video stream.
1216 This is list of color names separated by space or by '|'.
1217 Unrecognised or missing colors will be replaced by white color.
1218 @end table
1219
1220 @subsection Examples
1221
1222 @itemize
1223 @item
1224 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1225 for first 2 channels using Chebyshev type 1 filter:
1226 @example
1227 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1228 @end example
1229 @end itemize
1230
1231 @subsection Commands
1232
1233 This filter supports the following commands:
1234 @table @option
1235 @item change
1236 Alter existing filter parameters.
1237 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1238
1239 @var{fN} is existing filter number, starting from 0, if no such filter is available
1240 error is returned.
1241 @var{freq} set new frequency parameter.
1242 @var{width} set new width parameter in herz.
1243 @var{gain} set new gain parameter in dB.
1244
1245 Full filter invocation with asendcmd may look like this:
1246 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1247 @end table
1248
1249 @section anull
1250
1251 Pass the audio source unchanged to the output.
1252
1253 @section apad
1254
1255 Pad the end of an audio stream with silence.
1256
1257 This can be used together with @command{ffmpeg} @option{-shortest} to
1258 extend audio streams to the same length as the video stream.
1259
1260 A description of the accepted options follows.
1261
1262 @table @option
1263 @item packet_size
1264 Set silence packet size. Default value is 4096.
1265
1266 @item pad_len
1267 Set the number of samples of silence to add to the end. After the
1268 value is reached, the stream is terminated. This option is mutually
1269 exclusive with @option{whole_len}.
1270
1271 @item whole_len
1272 Set the minimum total number of samples in the output audio stream. If
1273 the value is longer than the input audio length, silence is added to
1274 the end, until the value is reached. This option is mutually exclusive
1275 with @option{pad_len}.
1276 @end table
1277
1278 If neither the @option{pad_len} nor the @option{whole_len} option is
1279 set, the filter will add silence to the end of the input stream
1280 indefinitely.
1281
1282 @subsection Examples
1283
1284 @itemize
1285 @item
1286 Add 1024 samples of silence to the end of the input:
1287 @example
1288 apad=pad_len=1024
1289 @end example
1290
1291 @item
1292 Make sure the audio output will contain at least 10000 samples, pad
1293 the input with silence if required:
1294 @example
1295 apad=whole_len=10000
1296 @end example
1297
1298 @item
1299 Use @command{ffmpeg} to pad the audio input with silence, so that the
1300 video stream will always result the shortest and will be converted
1301 until the end in the output file when using the @option{shortest}
1302 option:
1303 @example
1304 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1305 @end example
1306 @end itemize
1307
1308 @section aphaser
1309 Add a phasing effect to the input audio.
1310
1311 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1312 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1313
1314 A description of the accepted parameters follows.
1315
1316 @table @option
1317 @item in_gain
1318 Set input gain. Default is 0.4.
1319
1320 @item out_gain
1321 Set output gain. Default is 0.74
1322
1323 @item delay
1324 Set delay in milliseconds. Default is 3.0.
1325
1326 @item decay
1327 Set decay. Default is 0.4.
1328
1329 @item speed
1330 Set modulation speed in Hz. Default is 0.5.
1331
1332 @item type
1333 Set modulation type. Default is triangular.
1334
1335 It accepts the following values:
1336 @table @samp
1337 @item triangular, t
1338 @item sinusoidal, s
1339 @end table
1340 @end table
1341
1342 @section apulsator
1343
1344 Audio pulsator is something between an autopanner and a tremolo.
1345 But it can produce funny stereo effects as well. Pulsator changes the volume
1346 of the left and right channel based on a LFO (low frequency oscillator) with
1347 different waveforms and shifted phases.
1348 This filter have the ability to define an offset between left and right
1349 channel. An offset of 0 means that both LFO shapes match each other.
1350 The left and right channel are altered equally - a conventional tremolo.
1351 An offset of 50% means that the shape of the right channel is exactly shifted
1352 in phase (or moved backwards about half of the frequency) - pulsator acts as
1353 an autopanner. At 1 both curves match again. Every setting in between moves the
1354 phase shift gapless between all stages and produces some "bypassing" sounds with
1355 sine and triangle waveforms. The more you set the offset near 1 (starting from
1356 the 0.5) the faster the signal passes from the left to the right speaker.
1357
1358 The filter accepts the following options:
1359
1360 @table @option
1361 @item level_in
1362 Set input gain. By default it is 1. Range is [0.015625 - 64].
1363
1364 @item level_out
1365 Set output gain. By default it is 1. Range is [0.015625 - 64].
1366
1367 @item mode
1368 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1369 sawup or sawdown. Default is sine.
1370
1371 @item amount
1372 Set modulation. Define how much of original signal is affected by the LFO.
1373
1374 @item offset_l
1375 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1376
1377 @item offset_r
1378 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1379
1380 @item width
1381 Set pulse width. Default is 1. Allowed range is [0 - 2].
1382
1383 @item timing
1384 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1385
1386 @item bpm
1387 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1388 is set to bpm.
1389
1390 @item ms
1391 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1392 is set to ms.
1393
1394 @item hz
1395 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1396 if timing is set to hz.
1397 @end table
1398
1399 @anchor{aresample}
1400 @section aresample
1401
1402 Resample the input audio to the specified parameters, using the
1403 libswresample library. If none are specified then the filter will
1404 automatically convert between its input and output.
1405
1406 This filter is also able to stretch/squeeze the audio data to make it match
1407 the timestamps or to inject silence / cut out audio to make it match the
1408 timestamps, do a combination of both or do neither.
1409
1410 The filter accepts the syntax
1411 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1412 expresses a sample rate and @var{resampler_options} is a list of
1413 @var{key}=@var{value} pairs, separated by ":". See the
1414 ffmpeg-resampler manual for the complete list of supported options.
1415
1416 @subsection Examples
1417
1418 @itemize
1419 @item
1420 Resample the input audio to 44100Hz:
1421 @example
1422 aresample=44100
1423 @end example
1424
1425 @item
1426 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1427 samples per second compensation:
1428 @example
1429 aresample=async=1000
1430 @end example
1431 @end itemize
1432
1433 @section areverse
1434
1435 Reverse an audio clip.
1436
1437 Warning: This filter requires memory to buffer the entire clip, so trimming
1438 is suggested.
1439
1440 @subsection Examples
1441
1442 @itemize
1443 @item
1444 Take the first 5 seconds of a clip, and reverse it.
1445 @example
1446 atrim=end=5,areverse
1447 @end example
1448 @end itemize
1449
1450 @section asetnsamples
1451
1452 Set the number of samples per each output audio frame.
1453
1454 The last output packet may contain a different number of samples, as
1455 the filter will flush all the remaining samples when the input audio
1456 signal its end.
1457
1458 The filter accepts the following options:
1459
1460 @table @option
1461
1462 @item nb_out_samples, n
1463 Set the number of frames per each output audio frame. The number is
1464 intended as the number of samples @emph{per each channel}.
1465 Default value is 1024.
1466
1467 @item pad, p
1468 If set to 1, the filter will pad the last audio frame with zeroes, so
1469 that the last frame will contain the same number of samples as the
1470 previous ones. Default value is 1.
1471 @end table
1472
1473 For example, to set the number of per-frame samples to 1234 and
1474 disable padding for the last frame, use:
1475 @example
1476 asetnsamples=n=1234:p=0
1477 @end example
1478
1479 @section asetrate
1480
1481 Set the sample rate without altering the PCM data.
1482 This will result in a change of speed and pitch.
1483
1484 The filter accepts the following options:
1485
1486 @table @option
1487 @item sample_rate, r
1488 Set the output sample rate. Default is 44100 Hz.
1489 @end table
1490
1491 @section ashowinfo
1492
1493 Show a line containing various information for each input audio frame.
1494 The input audio is not modified.
1495
1496 The shown line contains a sequence of key/value pairs of the form
1497 @var{key}:@var{value}.
1498
1499 The following values are shown in the output:
1500
1501 @table @option
1502 @item n
1503 The (sequential) number of the input frame, starting from 0.
1504
1505 @item pts
1506 The presentation timestamp of the input frame, in time base units; the time base
1507 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1508
1509 @item pts_time
1510 The presentation timestamp of the input frame in seconds.
1511
1512 @item pos
1513 position of the frame in the input stream, -1 if this information in
1514 unavailable and/or meaningless (for example in case of synthetic audio)
1515
1516 @item fmt
1517 The sample format.
1518
1519 @item chlayout
1520 The channel layout.
1521
1522 @item rate
1523 The sample rate for the audio frame.
1524
1525 @item nb_samples
1526 The number of samples (per channel) in the frame.
1527
1528 @item checksum
1529 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1530 audio, the data is treated as if all the planes were concatenated.
1531
1532 @item plane_checksums
1533 A list of Adler-32 checksums for each data plane.
1534 @end table
1535
1536 @anchor{astats}
1537 @section astats
1538
1539 Display time domain statistical information about the audio channels.
1540 Statistics are calculated and displayed for each audio channel and,
1541 where applicable, an overall figure is also given.
1542
1543 It accepts the following option:
1544 @table @option
1545 @item length
1546 Short window length in seconds, used for peak and trough RMS measurement.
1547 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1548
1549 @item metadata
1550
1551 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1552 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1553 disabled.
1554
1555 Available keys for each channel are:
1556 DC_offset
1557 Min_level
1558 Max_level
1559 Min_difference
1560 Max_difference
1561 Mean_difference
1562 Peak_level
1563 RMS_peak
1564 RMS_trough
1565 Crest_factor
1566 Flat_factor
1567 Peak_count
1568 Bit_depth
1569
1570 and for Overall:
1571 DC_offset
1572 Min_level
1573 Max_level
1574 Min_difference
1575 Max_difference
1576 Mean_difference
1577 Peak_level
1578 RMS_level
1579 RMS_peak
1580 RMS_trough
1581 Flat_factor
1582 Peak_count
1583 Bit_depth
1584 Number_of_samples
1585
1586 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1587 this @code{lavfi.astats.Overall.Peak_count}.
1588
1589 For description what each key means read below.
1590
1591 @item reset
1592 Set number of frame after which stats are going to be recalculated.
1593 Default is disabled.
1594 @end table
1595
1596 A description of each shown parameter follows:
1597
1598 @table @option
1599 @item DC offset
1600 Mean amplitude displacement from zero.
1601
1602 @item Min level
1603 Minimal sample level.
1604
1605 @item Max level
1606 Maximal sample level.
1607
1608 @item Min difference
1609 Minimal difference between two consecutive samples.
1610
1611 @item Max difference
1612 Maximal difference between two consecutive samples.
1613
1614 @item Mean difference
1615 Mean difference between two consecutive samples.
1616 The average of each difference between two consecutive samples.
1617
1618 @item Peak level dB
1619 @item RMS level dB
1620 Standard peak and RMS level measured in dBFS.
1621
1622 @item RMS peak dB
1623 @item RMS trough dB
1624 Peak and trough values for RMS level measured over a short window.
1625
1626 @item Crest factor
1627 Standard ratio of peak to RMS level (note: not in dB).
1628
1629 @item Flat factor
1630 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1631 (i.e. either @var{Min level} or @var{Max level}).
1632
1633 @item Peak count
1634 Number of occasions (not the number of samples) that the signal attained either
1635 @var{Min level} or @var{Max level}.
1636
1637 @item Bit depth
1638 Overall bit depth of audio. Number of bits used for each sample.
1639 @end table
1640
1641 @section asyncts
1642
1643 Synchronize audio data with timestamps by squeezing/stretching it and/or
1644 dropping samples/adding silence when needed.
1645
1646 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1647
1648 It accepts the following parameters:
1649 @table @option
1650
1651 @item compensate
1652 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1653 by default. When disabled, time gaps are covered with silence.
1654
1655 @item min_delta
1656 The minimum difference between timestamps and audio data (in seconds) to trigger
1657 adding/dropping samples. The default value is 0.1. If you get an imperfect
1658 sync with this filter, try setting this parameter to 0.
1659
1660 @item max_comp
1661 The maximum compensation in samples per second. Only relevant with compensate=1.
1662 The default value is 500.
1663
1664 @item first_pts
1665 Assume that the first PTS should be this value. The time base is 1 / sample
1666 rate. This allows for padding/trimming at the start of the stream. By default,
1667 no assumption is made about the first frame's expected PTS, so no padding or
1668 trimming is done. For example, this could be set to 0 to pad the beginning with
1669 silence if an audio stream starts after the video stream or to trim any samples
1670 with a negative PTS due to encoder delay.
1671
1672 @end table
1673
1674 @section atempo
1675
1676 Adjust audio tempo.
1677
1678 The filter accepts exactly one parameter, the audio tempo. If not
1679 specified then the filter will assume nominal 1.0 tempo. Tempo must
1680 be in the [0.5, 2.0] range.
1681
1682 @subsection Examples
1683
1684 @itemize
1685 @item
1686 Slow down audio to 80% tempo:
1687 @example
1688 atempo=0.8
1689 @end example
1690
1691 @item
1692 To speed up audio to 125% tempo:
1693 @example
1694 atempo=1.25
1695 @end example
1696 @end itemize
1697
1698 @section atrim
1699
1700 Trim the input so that the output contains one continuous subpart of the input.
1701
1702 It accepts the following parameters:
1703 @table @option
1704 @item start
1705 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1706 sample with the timestamp @var{start} will be the first sample in the output.
1707
1708 @item end
1709 Specify time of the first audio sample that will be dropped, i.e. the
1710 audio sample immediately preceding the one with the timestamp @var{end} will be
1711 the last sample in the output.
1712
1713 @item start_pts
1714 Same as @var{start}, except this option sets the start timestamp in samples
1715 instead of seconds.
1716
1717 @item end_pts
1718 Same as @var{end}, except this option sets the end timestamp in samples instead
1719 of seconds.
1720
1721 @item duration
1722 The maximum duration of the output in seconds.
1723
1724 @item start_sample
1725 The number of the first sample that should be output.
1726
1727 @item end_sample
1728 The number of the first sample that should be dropped.
1729 @end table
1730
1731 @option{start}, @option{end}, and @option{duration} are expressed as time
1732 duration specifications; see
1733 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1734
1735 Note that the first two sets of the start/end options and the @option{duration}
1736 option look at the frame timestamp, while the _sample options simply count the
1737 samples that pass through the filter. So start/end_pts and start/end_sample will
1738 give different results when the timestamps are wrong, inexact or do not start at
1739 zero. Also note that this filter does not modify the timestamps. If you wish
1740 to have the output timestamps start at zero, insert the asetpts filter after the
1741 atrim filter.
1742
1743 If multiple start or end options are set, this filter tries to be greedy and
1744 keep all samples that match at least one of the specified constraints. To keep
1745 only the part that matches all the constraints at once, chain multiple atrim
1746 filters.
1747
1748 The defaults are such that all the input is kept. So it is possible to set e.g.
1749 just the end values to keep everything before the specified time.
1750
1751 Examples:
1752 @itemize
1753 @item
1754 Drop everything except the second minute of input:
1755 @example
1756 ffmpeg -i INPUT -af atrim=60:120
1757 @end example
1758
1759 @item
1760 Keep only the first 1000 samples:
1761 @example
1762 ffmpeg -i INPUT -af atrim=end_sample=1000
1763 @end example
1764
1765 @end itemize
1766
1767 @section bandpass
1768
1769 Apply a two-pole Butterworth band-pass filter with central
1770 frequency @var{frequency}, and (3dB-point) band-width width.
1771 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1772 instead of the default: constant 0dB peak gain.
1773 The filter roll off at 6dB per octave (20dB per decade).
1774
1775 The filter accepts the following options:
1776
1777 @table @option
1778 @item frequency, f
1779 Set the filter's central frequency. Default is @code{3000}.
1780
1781 @item csg
1782 Constant skirt gain if set to 1. Defaults to 0.
1783
1784 @item width_type
1785 Set method to specify band-width of filter.
1786 @table @option
1787 @item h
1788 Hz
1789 @item q
1790 Q-Factor
1791 @item o
1792 octave
1793 @item s
1794 slope
1795 @end table
1796
1797 @item width, w
1798 Specify the band-width of a filter in width_type units.
1799 @end table
1800
1801 @section bandreject
1802
1803 Apply a two-pole Butterworth band-reject filter with central
1804 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1805 The filter roll off at 6dB per octave (20dB per decade).
1806
1807 The filter accepts the following options:
1808
1809 @table @option
1810 @item frequency, f
1811 Set the filter's central frequency. Default is @code{3000}.
1812
1813 @item width_type
1814 Set method to specify band-width of filter.
1815 @table @option
1816 @item h
1817 Hz
1818 @item q
1819 Q-Factor
1820 @item o
1821 octave
1822 @item s
1823 slope
1824 @end table
1825
1826 @item width, w
1827 Specify the band-width of a filter in width_type units.
1828 @end table
1829
1830 @section bass
1831
1832 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1833 shelving filter with a response similar to that of a standard
1834 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1835
1836 The filter accepts the following options:
1837
1838 @table @option
1839 @item gain, g
1840 Give the gain at 0 Hz. Its useful range is about -20
1841 (for a large cut) to +20 (for a large boost).
1842 Beware of clipping when using a positive gain.
1843
1844 @item frequency, f
1845 Set the filter's central frequency and so can be used
1846 to extend or reduce the frequency range to be boosted or cut.
1847 The default value is @code{100} Hz.
1848
1849 @item width_type
1850 Set method to specify band-width of filter.
1851 @table @option
1852 @item h
1853 Hz
1854 @item q
1855 Q-Factor
1856 @item o
1857 octave
1858 @item s
1859 slope
1860 @end table
1861
1862 @item width, w
1863 Determine how steep is the filter's shelf transition.
1864 @end table
1865
1866 @section biquad
1867
1868 Apply a biquad IIR filter with the given coefficients.
1869 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1870 are the numerator and denominator coefficients respectively.
1871
1872 @section bs2b
1873 Bauer stereo to binaural transformation, which improves headphone listening of
1874 stereo audio records.
1875
1876 It accepts the following parameters:
1877 @table @option
1878
1879 @item profile
1880 Pre-defined crossfeed level.
1881 @table @option
1882
1883 @item default
1884 Default level (fcut=700, feed=50).
1885
1886 @item cmoy
1887 Chu Moy circuit (fcut=700, feed=60).
1888
1889 @item jmeier
1890 Jan Meier circuit (fcut=650, feed=95).
1891
1892 @end table
1893
1894 @item fcut
1895 Cut frequency (in Hz).
1896
1897 @item feed
1898 Feed level (in Hz).
1899
1900 @end table
1901
1902 @section channelmap
1903
1904 Remap input channels to new locations.
1905
1906 It accepts the following parameters:
1907 @table @option
1908 @item channel_layout
1909 The channel layout of the output stream.
1910
1911 @item map
1912 Map channels from input to output. The argument is a '|'-separated list of
1913 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1914 @var{in_channel} form. @var{in_channel} can be either the name of the input
1915 channel (e.g. FL for front left) or its index in the input channel layout.
1916 @var{out_channel} is the name of the output channel or its index in the output
1917 channel layout. If @var{out_channel} is not given then it is implicitly an
1918 index, starting with zero and increasing by one for each mapping.
1919 @end table
1920
1921 If no mapping is present, the filter will implicitly map input channels to
1922 output channels, preserving indices.
1923
1924 For example, assuming a 5.1+downmix input MOV file,
1925 @example
1926 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1927 @end example
1928 will create an output WAV file tagged as stereo from the downmix channels of
1929 the input.
1930
1931 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1932 @example
1933 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1934 @end example
1935
1936 @section channelsplit
1937
1938 Split each channel from an input audio stream into a separate output stream.
1939
1940 It accepts the following parameters:
1941 @table @option
1942 @item channel_layout
1943 The channel layout of the input stream. The default is "stereo".
1944 @end table
1945
1946 For example, assuming a stereo input MP3 file,
1947 @example
1948 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1949 @end example
1950 will create an output Matroska file with two audio streams, one containing only
1951 the left channel and the other the right channel.
1952
1953 Split a 5.1 WAV file into per-channel files:
1954 @example
1955 ffmpeg -i in.wav -filter_complex
1956 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1957 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1958 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1959 side_right.wav
1960 @end example
1961
1962 @section chorus
1963 Add a chorus effect to the audio.
1964
1965 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1966
1967 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1968 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1969 The modulation depth defines the range the modulated delay is played before or after
1970 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1971 sound tuned around the original one, like in a chorus where some vocals are slightly
1972 off key.
1973
1974 It accepts the following parameters:
1975 @table @option
1976 @item in_gain
1977 Set input gain. Default is 0.4.
1978
1979 @item out_gain
1980 Set output gain. Default is 0.4.
1981
1982 @item delays
1983 Set delays. A typical delay is around 40ms to 60ms.
1984
1985 @item decays
1986 Set decays.
1987
1988 @item speeds
1989 Set speeds.
1990
1991 @item depths
1992 Set depths.
1993 @end table
1994
1995 @subsection Examples
1996
1997 @itemize
1998 @item
1999 A single delay:
2000 @example
2001 chorus=0.7:0.9:55:0.4:0.25:2
2002 @end example
2003
2004 @item
2005 Two delays:
2006 @example
2007 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2008 @end example
2009
2010 @item
2011 Fuller sounding chorus with three delays:
2012 @example
2013 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
2014 @end example
2015 @end itemize
2016
2017 @section compand
2018 Compress or expand the audio's dynamic range.
2019
2020 It accepts the following parameters:
2021
2022 @table @option
2023
2024 @item attacks
2025 @item decays
2026 A list of times in seconds for each channel over which the instantaneous level
2027 of the input signal is averaged to determine its volume. @var{attacks} refers to
2028 increase of volume and @var{decays} refers to decrease of volume. For most
2029 situations, the attack time (response to the audio getting louder) should be
2030 shorter than the decay time, because the human ear is more sensitive to sudden
2031 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2032 a typical value for decay is 0.8 seconds.
2033 If specified number of attacks & decays is lower than number of channels, the last
2034 set attack/decay will be used for all remaining channels.
2035
2036 @item points
2037 A list of points for the transfer function, specified in dB relative to the
2038 maximum possible signal amplitude. Each key points list must be defined using
2039 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2040 @code{x0/y0 x1/y1 x2/y2 ....}
2041
2042 The input values must be in strictly increasing order but the transfer function
2043 does not have to be monotonically rising. The point @code{0/0} is assumed but
2044 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2045 function are @code{-70/-70|-60/-20}.
2046
2047 @item soft-knee
2048 Set the curve radius in dB for all joints. It defaults to 0.01.
2049
2050 @item gain
2051 Set the additional gain in dB to be applied at all points on the transfer
2052 function. This allows for easy adjustment of the overall gain.
2053 It defaults to 0.
2054
2055 @item volume
2056 Set an initial volume, in dB, to be assumed for each channel when filtering
2057 starts. This permits the user to supply a nominal level initially, so that, for
2058 example, a very large gain is not applied to initial signal levels before the
2059 companding has begun to operate. A typical value for audio which is initially
2060 quiet is -90 dB. It defaults to 0.
2061
2062 @item delay
2063 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2064 delayed before being fed to the volume adjuster. Specifying a delay
2065 approximately equal to the attack/decay times allows the filter to effectively
2066 operate in predictive rather than reactive mode. It defaults to 0.
2067
2068 @end table
2069
2070 @subsection Examples
2071
2072 @itemize
2073 @item
2074 Make music with both quiet and loud passages suitable for listening to in a
2075 noisy environment:
2076 @example
2077 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2078 @end example
2079
2080 Another example for audio with whisper and explosion parts:
2081 @example
2082 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2083 @end example
2084
2085 @item
2086 A noise gate for when the noise is at a lower level than the signal:
2087 @example
2088 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2089 @end example
2090
2091 @item
2092 Here is another noise gate, this time for when the noise is at a higher level
2093 than the signal (making it, in some ways, similar to squelch):
2094 @example
2095 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2096 @end example
2097
2098 @item
2099 2:1 compression starting at -6dB:
2100 @example
2101 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2102 @end example
2103
2104 @item
2105 2:1 compression starting at -9dB:
2106 @example
2107 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2108 @end example
2109
2110 @item
2111 2:1 compression starting at -12dB:
2112 @example
2113 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2114 @end example
2115
2116 @item
2117 2:1 compression starting at -18dB:
2118 @example
2119 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2120 @end example
2121
2122 @item
2123 3:1 compression starting at -15dB:
2124 @example
2125 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2126 @end example
2127
2128 @item
2129 Compressor/Gate:
2130 @example
2131 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2132 @end example
2133
2134 @item
2135 Expander:
2136 @example
2137 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
2138 @end example
2139
2140 @item
2141 Hard limiter at -6dB:
2142 @example
2143 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2144 @end example
2145
2146 @item
2147 Hard limiter at -12dB:
2148 @example
2149 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2150 @end example
2151
2152 @item
2153 Hard noise gate at -35 dB:
2154 @example
2155 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2156 @end example
2157
2158 @item
2159 Soft limiter:
2160 @example
2161 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2162 @end example
2163 @end itemize
2164
2165 @section compensationdelay
2166
2167 Compensation Delay Line is a metric based delay to compensate differing
2168 positions of microphones or speakers.
2169
2170 For example, you have recorded guitar with two microphones placed in
2171 different location. Because the front of sound wave has fixed speed in
2172 normal conditions, the phasing of microphones can vary and depends on
2173 their location and interposition. The best sound mix can be achieved when
2174 these microphones are in phase (synchronized). Note that distance of
2175 ~30 cm between microphones makes one microphone to capture signal in
2176 antiphase to another microphone. That makes the final mix sounding moody.
2177 This filter helps to solve phasing problems by adding different delays
2178 to each microphone track and make them synchronized.
2179
2180 The best result can be reached when you take one track as base and
2181 synchronize other tracks one by one with it.
2182 Remember that synchronization/delay tolerance depends on sample rate, too.
2183 Higher sample rates will give more tolerance.
2184
2185 It accepts the following parameters:
2186
2187 @table @option
2188 @item mm
2189 Set millimeters distance. This is compensation distance for fine tuning.
2190 Default is 0.
2191
2192 @item cm
2193 Set cm distance. This is compensation distance for tightening distance setup.
2194 Default is 0.
2195
2196 @item m
2197 Set meters distance. This is compensation distance for hard distance setup.
2198 Default is 0.
2199
2200 @item dry
2201 Set dry amount. Amount of unprocessed (dry) signal.
2202 Default is 0.
2203
2204 @item wet
2205 Set wet amount. Amount of processed (wet) signal.
2206 Default is 1.
2207
2208 @item temp
2209 Set temperature degree in Celsius. This is the temperature of the environment.
2210 Default is 20.
2211 @end table
2212
2213 @section crystalizer
2214 Simple algorithm to expand audio dynamic range.
2215
2216 The filter accepts the following options:
2217
2218 @table @option
2219 @item i
2220 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2221 (unchanged sound) to 10.0 (maximum effect).
2222
2223 @item c
2224 Enable clipping. By default is enabled.
2225 @end table
2226
2227 @section dcshift
2228 Apply a DC shift to the audio.
2229
2230 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2231 in the recording chain) from the audio. The effect of a DC offset is reduced
2232 headroom and hence volume. The @ref{astats} filter can be used to determine if
2233 a signal has a DC offset.
2234
2235 @table @option
2236 @item shift
2237 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2238 the audio.
2239
2240 @item limitergain
2241 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2242 used to prevent clipping.
2243 @end table
2244
2245 @section dynaudnorm
2246 Dynamic Audio Normalizer.
2247
2248 This filter applies a certain amount of gain to the input audio in order
2249 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2250 contrast to more "simple" normalization algorithms, the Dynamic Audio
2251 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2252 This allows for applying extra gain to the "quiet" sections of the audio
2253 while avoiding distortions or clipping the "loud" sections. In other words:
2254 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2255 sections, in the sense that the volume of each section is brought to the
2256 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2257 this goal *without* applying "dynamic range compressing". It will retain 100%
2258 of the dynamic range *within* each section of the audio file.
2259
2260 @table @option
2261 @item f
2262 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2263 Default is 500 milliseconds.
2264 The Dynamic Audio Normalizer processes the input audio in small chunks,
2265 referred to as frames. This is required, because a peak magnitude has no
2266 meaning for just a single sample value. Instead, we need to determine the
2267 peak magnitude for a contiguous sequence of sample values. While a "standard"
2268 normalizer would simply use the peak magnitude of the complete file, the
2269 Dynamic Audio Normalizer determines the peak magnitude individually for each
2270 frame. The length of a frame is specified in milliseconds. By default, the
2271 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2272 been found to give good results with most files.
2273 Note that the exact frame length, in number of samples, will be determined
2274 automatically, based on the sampling rate of the individual input audio file.
2275
2276 @item g
2277 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2278 number. Default is 31.
2279 Probably the most important parameter of the Dynamic Audio Normalizer is the
2280 @code{window size} of the Gaussian smoothing filter. The filter's window size
2281 is specified in frames, centered around the current frame. For the sake of
2282 simplicity, this must be an odd number. Consequently, the default value of 31
2283 takes into account the current frame, as well as the 15 preceding frames and
2284 the 15 subsequent frames. Using a larger window results in a stronger
2285 smoothing effect and thus in less gain variation, i.e. slower gain
2286 adaptation. Conversely, using a smaller window results in a weaker smoothing
2287 effect and thus in more gain variation, i.e. faster gain adaptation.
2288 In other words, the more you increase this value, the more the Dynamic Audio
2289 Normalizer will behave like a "traditional" normalization filter. On the
2290 contrary, the more you decrease this value, the more the Dynamic Audio
2291 Normalizer will behave like a dynamic range compressor.
2292
2293 @item p
2294 Set the target peak value. This specifies the highest permissible magnitude
2295 level for the normalized audio input. This filter will try to approach the
2296 target peak magnitude as closely as possible, but at the same time it also
2297 makes sure that the normalized signal will never exceed the peak magnitude.
2298 A frame's maximum local gain factor is imposed directly by the target peak
2299 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2300 It is not recommended to go above this value.
2301
2302 @item m
2303 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2304 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2305 factor for each input frame, i.e. the maximum gain factor that does not
2306 result in clipping or distortion. The maximum gain factor is determined by
2307 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2308 additionally bounds the frame's maximum gain factor by a predetermined
2309 (global) maximum gain factor. This is done in order to avoid excessive gain
2310 factors in "silent" or almost silent frames. By default, the maximum gain
2311 factor is 10.0, For most inputs the default value should be sufficient and
2312 it usually is not recommended to increase this value. Though, for input
2313 with an extremely low overall volume level, it may be necessary to allow even
2314 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2315 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2316 Instead, a "sigmoid" threshold function will be applied. This way, the
2317 gain factors will smoothly approach the threshold value, but never exceed that
2318 value.
2319
2320 @item r
2321 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2322 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2323 This means that the maximum local gain factor for each frame is defined
2324 (only) by the frame's highest magnitude sample. This way, the samples can
2325 be amplified as much as possible without exceeding the maximum signal
2326 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2327 Normalizer can also take into account the frame's root mean square,
2328 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2329 determine the power of a time-varying signal. It is therefore considered
2330 that the RMS is a better approximation of the "perceived loudness" than
2331 just looking at the signal's peak magnitude. Consequently, by adjusting all
2332 frames to a constant RMS value, a uniform "perceived loudness" can be
2333 established. If a target RMS value has been specified, a frame's local gain
2334 factor is defined as the factor that would result in exactly that RMS value.
2335 Note, however, that the maximum local gain factor is still restricted by the
2336 frame's highest magnitude sample, in order to prevent clipping.
2337
2338 @item n
2339 Enable channels coupling. By default is enabled.
2340 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2341 amount. This means the same gain factor will be applied to all channels, i.e.
2342 the maximum possible gain factor is determined by the "loudest" channel.
2343 However, in some recordings, it may happen that the volume of the different
2344 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2345 In this case, this option can be used to disable the channel coupling. This way,
2346 the gain factor will be determined independently for each channel, depending
2347 only on the individual channel's highest magnitude sample. This allows for
2348 harmonizing the volume of the different channels.
2349
2350 @item c
2351 Enable DC bias correction. By default is disabled.
2352 An audio signal (in the time domain) is a sequence of sample values.
2353 In the Dynamic Audio Normalizer these sample values are represented in the
2354 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2355 audio signal, or "waveform", should be centered around the zero point.
2356 That means if we calculate the mean value of all samples in a file, or in a
2357 single frame, then the result should be 0.0 or at least very close to that
2358 value. If, however, there is a significant deviation of the mean value from
2359 0.0, in either positive or negative direction, this is referred to as a
2360 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2361 Audio Normalizer provides optional DC bias correction.
2362 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2363 the mean value, or "DC correction" offset, of each input frame and subtract
2364 that value from all of the frame's sample values which ensures those samples
2365 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2366 boundaries, the DC correction offset values will be interpolated smoothly
2367 between neighbouring frames.
2368
2369 @item b
2370 Enable alternative boundary mode. By default is disabled.
2371 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2372 around each frame. This includes the preceding frames as well as the
2373 subsequent frames. However, for the "boundary" frames, located at the very
2374 beginning and at the very end of the audio file, not all neighbouring
2375 frames are available. In particular, for the first few frames in the audio
2376 file, the preceding frames are not known. And, similarly, for the last few
2377 frames in the audio file, the subsequent frames are not known. Thus, the
2378 question arises which gain factors should be assumed for the missing frames
2379 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2380 to deal with this situation. The default boundary mode assumes a gain factor
2381 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2382 "fade out" at the beginning and at the end of the input, respectively.
2383
2384 @item s
2385 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2386 By default, the Dynamic Audio Normalizer does not apply "traditional"
2387 compression. This means that signal peaks will not be pruned and thus the
2388 full dynamic range will be retained within each local neighbourhood. However,
2389 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2390 normalization algorithm with a more "traditional" compression.
2391 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2392 (thresholding) function. If (and only if) the compression feature is enabled,
2393 all input frames will be processed by a soft knee thresholding function prior
2394 to the actual normalization process. Put simply, the thresholding function is
2395 going to prune all samples whose magnitude exceeds a certain threshold value.
2396 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2397 value. Instead, the threshold value will be adjusted for each individual
2398 frame.
2399 In general, smaller parameters result in stronger compression, and vice versa.
2400 Values below 3.0 are not recommended, because audible distortion may appear.
2401 @end table
2402
2403 @section earwax
2404
2405 Make audio easier to listen to on headphones.
2406
2407 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2408 so that when listened to on headphones the stereo image is moved from
2409 inside your head (standard for headphones) to outside and in front of
2410 the listener (standard for speakers).
2411
2412 Ported from SoX.
2413
2414 @section equalizer
2415
2416 Apply a two-pole peaking equalisation (EQ) filter. With this
2417 filter, the signal-level at and around a selected frequency can
2418 be increased or decreased, whilst (unlike bandpass and bandreject
2419 filters) that at all other frequencies is unchanged.
2420
2421 In order to produce complex equalisation curves, this filter can
2422 be given several times, each with a different central frequency.
2423
2424 The filter accepts the following options:
2425
2426 @table @option
2427 @item frequency, f
2428 Set the filter's central frequency in Hz.
2429
2430 @item width_type
2431 Set method to specify band-width of filter.
2432 @table @option
2433 @item h
2434 Hz
2435 @item q
2436 Q-Factor
2437 @item o
2438 octave
2439 @item s
2440 slope
2441 @end table
2442
2443 @item width, w
2444 Specify the band-width of a filter in width_type units.
2445
2446 @item gain, g
2447 Set the required gain or attenuation in dB.
2448 Beware of clipping when using a positive gain.
2449 @end table
2450
2451 @subsection Examples
2452 @itemize
2453 @item
2454 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2455 @example
2456 equalizer=f=1000:width_type=h:width=200:g=-10
2457 @end example
2458
2459 @item
2460 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2461 @example
2462 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2463 @end example
2464 @end itemize
2465
2466 @section extrastereo
2467
2468 Linearly increases the difference between left and right channels which
2469 adds some sort of "live" effect to playback.
2470
2471 The filter accepts the following options:
2472
2473 @table @option
2474 @item m
2475 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2476 (average of both channels), with 1.0 sound will be unchanged, with
2477 -1.0 left and right channels will be swapped.
2478
2479 @item c
2480 Enable clipping. By default is enabled.
2481 @end table
2482
2483 @section firequalizer
2484 Apply FIR Equalization using arbitrary frequency response.
2485
2486 The filter accepts the following option:
2487
2488 @table @option
2489 @item gain
2490 Set gain curve equation (in dB). The expression can contain variables:
2491 @table @option
2492 @item f
2493 the evaluated frequency
2494 @item sr
2495 sample rate
2496 @item ch
2497 channel number, set to 0 when multichannels evaluation is disabled
2498 @item chid
2499 channel id, see libavutil/channel_layout.h, set to the first channel id when
2500 multichannels evaluation is disabled
2501 @item chs
2502 number of channels
2503 @item chlayout
2504 channel_layout, see libavutil/channel_layout.h
2505
2506 @end table
2507 and functions:
2508 @table @option
2509 @item gain_interpolate(f)
2510 interpolate gain on frequency f based on gain_entry
2511 @end table
2512 This option is also available as command. Default is @code{gain_interpolate(f)}.
2513
2514 @item gain_entry
2515 Set gain entry for gain_interpolate function. The expression can
2516 contain functions:
2517 @table @option
2518 @item entry(f, g)
2519 store gain entry at frequency f with value g
2520 @end table
2521 This option is also available as command.
2522
2523 @item delay
2524 Set filter delay in seconds. Higher value means more accurate.
2525 Default is @code{0.01}.
2526
2527 @item accuracy
2528 Set filter accuracy in Hz. Lower value means more accurate.
2529 Default is @code{5}.
2530
2531 @item wfunc
2532 Set window function. Acceptable values are:
2533 @table @option
2534 @item rectangular
2535 rectangular window, useful when gain curve is already smooth
2536 @item hann
2537 hann window (default)
2538 @item hamming
2539 hamming window
2540 @item blackman
2541 blackman window
2542 @item nuttall3
2543 3-terms continuous 1st derivative nuttall window
2544 @item mnuttall3
2545 minimum 3-terms discontinuous nuttall window
2546 @item nuttall
2547 4-terms continuous 1st derivative nuttall window
2548 @item bnuttall
2549 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2550 @item bharris
2551 blackman-harris window
2552 @end table
2553
2554 @item fixed
2555 If enabled, use fixed number of audio samples. This improves speed when
2556 filtering with large delay. Default is disabled.
2557
2558 @item multi
2559 Enable multichannels evaluation on gain. Default is disabled.
2560
2561 @item zero_phase
2562 Enable zero phase mode by substracting timestamp to compensate delay.
2563 Default is disabled.
2564 @end table
2565
2566 @subsection Examples
2567 @itemize
2568 @item
2569 lowpass at 1000 Hz:
2570 @example
2571 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2572 @end example
2573 @item
2574 lowpass at 1000 Hz with gain_entry:
2575 @example
2576 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2577 @end example
2578 @item
2579 custom equalization:
2580 @example
2581 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2582 @end example
2583 @item
2584 higher delay with zero phase to compensate delay:
2585 @example
2586 firequalizer=delay=0.1:fixed=on:zero_phase=on
2587 @end example
2588 @item
2589 lowpass on left channel, highpass on right channel:
2590 @example
2591 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2592 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2593 @end example
2594 @end itemize
2595
2596 @section flanger
2597 Apply a flanging effect to the audio.
2598
2599 The filter accepts the following options:
2600
2601 @table @option
2602 @item delay
2603 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2604
2605 @item depth
2606 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2607
2608 @item regen
2609 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2610 Default value is 0.
2611
2612 @item width
2613 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2614 Default value is 71.
2615
2616 @item speed
2617 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2618
2619 @item shape
2620 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2621 Default value is @var{sinusoidal}.
2622
2623 @item phase
2624 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2625 Default value is 25.
2626
2627 @item interp
2628 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2629 Default is @var{linear}.
2630 @end table
2631
2632 @section hdcd
2633
2634 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
2635 embedded HDCD codes is expanded into a 20-bit PCM stream.
2636
2637 The filter supports the Peak Extend and Low-level Gain Adjustment features
2638 of HDCD, and detects the Transient Filter flag.
2639
2640 @example
2641 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
2642 @end example
2643
2644 When using the filter with wav, note the default encoding for wav is 16-bit,
2645 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
2646 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
2647 @example
2648 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
2649 ffmpeg -i HDCD16.wav -af hdcd -acodec pcm_s24le OUT24.wav
2650 @end example
2651
2652 The filter accepts the following options:
2653
2654 @table @option
2655 @item process_stereo
2656 Process the stereo channels together. If target_gain does not match between
2657 channels, consider it invalid and use the last valid target_gain.
2658
2659 @item force_pe
2660 Always extend peaks above -3dBFS even if PE isn't signaled.
2661
2662 @item analyze_mode
2663 Replace audio with a solid tone and adjust the amplitude to signal some
2664 specific aspect of the decoding process. The output file can be loaded in
2665 an audio editor alongside the original to aid analysis.
2666
2667 @code{analyze_mode=pe:force_pe=1} can be used to see all samples above the PE level.
2668
2669 Modes are:
2670 @table @samp
2671 @item 0, off
2672 Disabled
2673 @item 1, lle
2674 Gain adjustment level at each sample
2675 @item 2, pe
2676 Samples where peak extend occurs
2677 @item 3, cdt
2678 Samples where the code detect timer is active
2679 @item 4, tgm
2680 Samples where the target gain does not match between channels
2681 @end table
2682 @end table
2683
2684 @section highpass
2685
2686 Apply a high-pass filter with 3dB point frequency.
2687 The filter can be either single-pole, or double-pole (the default).
2688 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2689
2690 The filter accepts the following options:
2691
2692 @table @option
2693 @item frequency, f
2694 Set frequency in Hz. Default is 3000.
2695
2696 @item poles, p
2697 Set number of poles. Default is 2.
2698
2699 @item width_type
2700 Set method to specify band-width of filter.
2701 @table @option
2702 @item h
2703 Hz
2704 @item q
2705 Q-Factor
2706 @item o
2707 octave
2708 @item s
2709 slope
2710 @end table
2711
2712 @item width, w
2713 Specify the band-width of a filter in width_type units.
2714 Applies only to double-pole filter.
2715 The default is 0.707q and gives a Butterworth response.
2716 @end table
2717
2718 @section join
2719
2720 Join multiple input streams into one multi-channel stream.
2721
2722 It accepts the following parameters:
2723 @table @option
2724
2725 @item inputs
2726 The number of input streams. It defaults to 2.
2727
2728 @item channel_layout
2729 The desired output channel layout. It defaults to stereo.
2730
2731 @item map
2732 Map channels from inputs to output. The argument is a '|'-separated list of
2733 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2734 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2735 can be either the name of the input channel (e.g. FL for front left) or its
2736 index in the specified input stream. @var{out_channel} is the name of the output
2737 channel.
2738 @end table
2739
2740 The filter will attempt to guess the mappings when they are not specified
2741 explicitly. It does so by first trying to find an unused matching input channel
2742 and if that fails it picks the first unused input channel.
2743
2744 Join 3 inputs (with properly set channel layouts):
2745 @example
2746 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2747 @end example
2748
2749 Build a 5.1 output from 6 single-channel streams:
2750 @example
2751 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2752 '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'
2753 out
2754 @end example
2755
2756 @section ladspa
2757
2758 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2759
2760 To enable compilation of this filter you need to configure FFmpeg with
2761 @code{--enable-ladspa}.
2762
2763 @table @option
2764 @item file, f
2765 Specifies the name of LADSPA plugin library to load. If the environment
2766 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2767 each one of the directories specified by the colon separated list in
2768 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2769 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2770 @file{/usr/lib/ladspa/}.
2771
2772 @item plugin, p
2773 Specifies the plugin within the library. Some libraries contain only
2774 one plugin, but others contain many of them. If this is not set filter
2775 will list all available plugins within the specified library.
2776
2777 @item controls, c
2778 Set the '|' separated list of controls which are zero or more floating point
2779 values that determine the behavior of the loaded plugin (for example delay,
2780 threshold or gain).
2781 Controls need to be defined using the following syntax:
2782 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2783 @var{valuei} is the value set on the @var{i}-th control.
2784 Alternatively they can be also defined using the following syntax:
2785 @var{value0}|@var{value1}|@var{value2}|..., where
2786 @var{valuei} is the value set on the @var{i}-th control.
2787 If @option{controls} is set to @code{help}, all available controls and
2788 their valid ranges are printed.
2789
2790 @item sample_rate, s
2791 Specify the sample rate, default to 44100. Only used if plugin have
2792 zero inputs.
2793
2794 @item nb_samples, n
2795 Set the number of samples per channel per each output frame, default
2796 is 1024. Only used if plugin have zero inputs.
2797
2798 @item duration, d
2799 Set the minimum duration of the sourced audio. See
2800 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2801 for the accepted syntax.
2802 Note that the resulting duration may be greater than the specified duration,
2803 as the generated audio is always cut at the end of a complete frame.
2804 If not specified, or the expressed duration is negative, the audio is
2805 supposed to be generated forever.
2806 Only used if plugin have zero inputs.
2807
2808 @end table
2809
2810 @subsection Examples
2811
2812 @itemize
2813 @item
2814 List all available plugins within amp (LADSPA example plugin) library:
2815 @example
2816 ladspa=file=amp
2817 @end example
2818
2819 @item
2820 List all available controls and their valid ranges for @code{vcf_notch}
2821 plugin from @code{VCF} library:
2822 @example
2823 ladspa=f=vcf:p=vcf_notch:c=help
2824 @end example
2825
2826 @item
2827 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2828 plugin library:
2829 @example
2830 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2831 @end example
2832
2833 @item
2834 Add reverberation to the audio using TAP-plugins
2835 (Tom's Audio Processing plugins):
2836 @example
2837 ladspa=file=tap_reverb:tap_reverb
2838 @end example
2839
2840 @item
2841 Generate white noise, with 0.2 amplitude:
2842 @example
2843 ladspa=file=cmt:noise_source_white:c=c0=.2
2844 @end example
2845
2846 @item
2847 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2848 @code{C* Audio Plugin Suite} (CAPS) library:
2849 @example
2850 ladspa=file=caps:Click:c=c1=20'
2851 @end example
2852
2853 @item
2854 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2855 @example
2856 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2857 @end example
2858
2859 @item
2860 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2861 @code{SWH Plugins} collection:
2862 @example
2863 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2864 @end example
2865
2866 @item
2867 Attenuate low frequencies using Multiband EQ from Steve Harris
2868 @code{SWH Plugins} collection:
2869 @example
2870 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2871 @end example
2872 @end itemize
2873
2874 @subsection Commands
2875
2876 This filter supports the following commands:
2877 @table @option
2878 @item cN
2879 Modify the @var{N}-th control value.
2880
2881 If the specified value is not valid, it is ignored and prior one is kept.
2882 @end table
2883
2884 @section loudnorm
2885
2886 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
2887 Support for both single pass (livestreams, files) and double pass (files) modes.
2888 This algorithm can target IL, LRA, and maximum true peak.
2889
2890 To enable compilation of this filter you need to configure FFmpeg with
2891 @code{--enable-libebur128}.
2892
2893 The filter accepts the following options:
2894
2895 @table @option
2896 @item I, i
2897 Set integrated loudness target.
2898 Range is -70.0 - -5.0. Default value is -24.0.
2899
2900 @item LRA, lra
2901 Set loudness range target.
2902 Range is 1.0 - 20.0. Default value is 7.0.
2903
2904 @item TP, tp
2905 Set maximum true peak.
2906 Range is -9.0 - +0.0. Default value is -2.0.
2907
2908 @item measured_I, measured_i
2909 Measured IL of input file.
2910 Range is -99.0 - +0.0.
2911
2912 @item measured_LRA, measured_lra
2913 Measured LRA of input file.
2914 Range is  0.0 - 99.0.
2915
2916 @item measured_TP, measured_tp
2917 Measured true peak of input file.
2918 Range is  -99.0 - +99.0.
2919
2920 @item measured_thresh
2921 Measured threshold of input file.
2922 Range is -99.0 - +0.0.
2923
2924 @item offset
2925 Set offset gain. Gain is applied before the true-peak limiter.
2926 Range is  -99.0 - +99.0. Default is +0.0.
2927
2928 @item linear
2929 Normalize linearly if possible.
2930 measured_I, measured_LRA, measured_TP, and measured_thresh must also
2931 to be specified in order to use this mode.
2932 Options are true or false. Default is true.
2933
2934 @item dual_mono
2935 Treat mono input files as "dual-mono". If a mono file is intended for playback
2936 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
2937 If set to @code{true}, this option will compensate for this effect.
2938 Multi-channel input files are not affected by this option.
2939 Options are true or false. Default is false.
2940
2941 @item print_format
2942 Set print format for stats. Options are summary, json, or none.
2943 Default value is none.
2944 @end table
2945
2946 @section lowpass
2947
2948 Apply a low-pass filter with 3dB point frequency.
2949 The filter can be either single-pole or double-pole (the default).
2950 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2951
2952 The filter accepts the following options:
2953
2954 @table @option
2955 @item frequency, f
2956 Set frequency in Hz. Default is 500.
2957
2958 @item poles, p
2959 Set number of poles. Default is 2.
2960
2961 @item width_type
2962 Set method to specify band-width of filter.
2963 @table @option
2964 @item h
2965 Hz
2966 @item q
2967 Q-Factor
2968 @item o
2969 octave
2970 @item s
2971 slope
2972 @end table
2973
2974 @item width, w
2975 Specify the band-width of a filter in width_type units.
2976 Applies only to double-pole filter.
2977 The default is 0.707q and gives a Butterworth response.
2978 @end table
2979
2980 @anchor{pan}
2981 @section pan
2982
2983 Mix channels with specific gain levels. The filter accepts the output
2984 channel layout followed by a set of channels definitions.
2985
2986 This filter is also designed to efficiently remap the channels of an audio
2987 stream.
2988
2989 The filter accepts parameters of the form:
2990 "@var{l}|@var{outdef}|@var{outdef}|..."
2991
2992 @table @option
2993 @item l
2994 output channel layout or number of channels
2995
2996 @item outdef
2997 output channel specification, of the form:
2998 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2999
3000 @item out_name
3001 output channel to define, either a channel name (FL, FR, etc.) or a channel
3002 number (c0, c1, etc.)
3003
3004 @item gain
3005 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3006
3007 @item in_name
3008 input channel to use, see out_name for details; it is not possible to mix
3009 named and numbered input channels
3010 @end table
3011
3012 If the `=' in a channel specification is replaced by `<', then the gains for
3013 that specification will be renormalized so that the total is 1, thus
3014 avoiding clipping noise.
3015
3016 @subsection Mixing examples
3017
3018 For example, if you want to down-mix from stereo to mono, but with a bigger
3019 factor for the left channel:
3020 @example
3021 pan=1c|c0=0.9*c0+0.1*c1
3022 @end example
3023
3024 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3025 7-channels surround:
3026 @example
3027 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3028 @end example
3029
3030 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3031 that should be preferred (see "-ac" option) unless you have very specific
3032 needs.
3033
3034 @subsection Remapping examples
3035
3036 The channel remapping will be effective if, and only if:
3037
3038 @itemize
3039 @item gain coefficients are zeroes or ones,
3040 @item only one input per channel output,
3041 @end itemize
3042
3043 If all these conditions are satisfied, the filter will notify the user ("Pure
3044 channel mapping detected"), and use an optimized and lossless method to do the
3045 remapping.
3046
3047 For example, if you have a 5.1 source and want a stereo audio stream by
3048 dropping the extra channels:
3049 @example
3050 pan="stereo| c0=FL | c1=FR"
3051 @end example
3052
3053 Given the same source, you can also switch front left and front right channels
3054 and keep the input channel layout:
3055 @example
3056 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3057 @end example
3058
3059 If the input is a stereo audio stream, you can mute the front left channel (and
3060 still keep the stereo channel layout) with:
3061 @example
3062 pan="stereo|c1=c1"
3063 @end example
3064
3065 Still with a stereo audio stream input, you can copy the right channel in both
3066 front left and right:
3067 @example
3068 pan="stereo| c0=FR | c1=FR"
3069 @end example
3070
3071 @section replaygain
3072
3073 ReplayGain scanner filter. This filter takes an audio stream as an input and
3074 outputs it unchanged.
3075 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3076
3077 @section resample
3078
3079 Convert the audio sample format, sample rate and channel layout. It is
3080 not meant to be used directly.
3081
3082 @section rubberband
3083 Apply time-stretching and pitch-shifting with librubberband.
3084
3085 The filter accepts the following options:
3086
3087 @table @option
3088 @item tempo
3089 Set tempo scale factor.
3090
3091 @item pitch
3092 Set pitch scale factor.
3093
3094 @item transients
3095 Set transients detector.
3096 Possible values are:
3097 @table @var
3098 @item crisp
3099 @item mixed
3100 @item smooth
3101 @end table
3102
3103 @item detector
3104 Set detector.
3105 Possible values are:
3106 @table @var
3107 @item compound
3108 @item percussive
3109 @item soft
3110 @end table
3111
3112 @item phase
3113 Set phase.
3114 Possible values are:
3115 @table @var
3116 @item laminar
3117 @item independent
3118 @end table
3119
3120 @item window
3121 Set processing window size.
3122 Possible values are:
3123 @table @var
3124 @item standard
3125 @item short
3126 @item long
3127 @end table
3128
3129 @item smoothing
3130 Set smoothing.
3131 Possible values are:
3132 @table @var
3133 @item off
3134 @item on
3135 @end table
3136
3137 @item formant
3138 Enable formant preservation when shift pitching.
3139 Possible values are:
3140 @table @var
3141 @item shifted
3142 @item preserved
3143 @end table
3144
3145 @item pitchq
3146 Set pitch quality.
3147 Possible values are:
3148 @table @var
3149 @item quality
3150 @item speed
3151 @item consistency
3152 @end table
3153
3154 @item channels
3155 Set channels.
3156 Possible values are:
3157 @table @var
3158 @item apart
3159 @item together
3160 @end table
3161 @end table
3162
3163 @section sidechaincompress
3164
3165 This filter acts like normal compressor but has the ability to compress
3166 detected signal using second input signal.
3167 It needs two input streams and returns one output stream.
3168 First input stream will be processed depending on second stream signal.
3169 The filtered signal then can be filtered with other filters in later stages of
3170 processing. See @ref{pan} and @ref{amerge} filter.
3171
3172 The filter accepts the following options:
3173
3174 @table @option
3175 @item level_in
3176 Set input gain. Default is 1. Range is between 0.015625 and 64.
3177
3178 @item threshold
3179 If a signal of second stream raises above this level it will affect the gain
3180 reduction of first stream.
3181 By default is 0.125. Range is between 0.00097563 and 1.
3182
3183 @item ratio
3184 Set a ratio about which the signal is reduced. 1:2 means that if the level
3185 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3186 Default is 2. Range is between 1 and 20.
3187
3188 @item attack
3189 Amount of milliseconds the signal has to rise above the threshold before gain
3190 reduction starts. Default is 20. Range is between 0.01 and 2000.
3191
3192 @item release
3193 Amount of milliseconds the signal has to fall below the threshold before
3194 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3195
3196 @item makeup
3197 Set the amount by how much signal will be amplified after processing.
3198 Default is 2. Range is from 1 and 64.
3199
3200 @item knee
3201 Curve the sharp knee around the threshold to enter gain reduction more softly.
3202 Default is 2.82843. Range is between 1 and 8.
3203
3204 @item link
3205 Choose if the @code{average} level between all channels of side-chain stream
3206 or the louder(@code{maximum}) channel of side-chain stream affects the
3207 reduction. Default is @code{average}.
3208
3209 @item detection
3210 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3211 of @code{rms}. Default is @code{rms} which is mainly smoother.
3212
3213 @item level_sc
3214 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3215
3216 @item mix
3217 How much to use compressed signal in output. Default is 1.
3218 Range is between 0 and 1.
3219 @end table
3220
3221 @subsection Examples
3222
3223 @itemize
3224 @item
3225 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3226 depending on the signal of 2nd input and later compressed signal to be
3227 merged with 2nd input:
3228 @example
3229 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3230 @end example
3231 @end itemize
3232
3233 @section sidechaingate
3234
3235 A sidechain gate acts like a normal (wideband) gate but has the ability to
3236 filter the detected signal before sending it to the gain reduction stage.
3237 Normally a gate uses the full range signal to detect a level above the
3238 threshold.
3239 For example: If you cut all lower frequencies from your sidechain signal
3240 the gate will decrease the volume of your track only if not enough highs
3241 appear. With this technique you are able to reduce the resonation of a
3242 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3243 guitar.
3244 It needs two input streams and returns one output stream.
3245 First input stream will be processed depending on second stream signal.
3246
3247 The filter accepts the following options:
3248
3249 @table @option
3250 @item level_in
3251 Set input level before filtering.
3252 Default is 1. Allowed range is from 0.015625 to 64.
3253
3254 @item range
3255 Set the level of gain reduction when the signal is below the threshold.
3256 Default is 0.06125. Allowed range is from 0 to 1.
3257
3258 @item threshold
3259 If a signal rises above this level the gain reduction is released.
3260 Default is 0.125. Allowed range is from 0 to 1.
3261
3262 @item ratio
3263 Set a ratio about which the signal is reduced.
3264 Default is 2. Allowed range is from 1 to 9000.
3265
3266 @item attack
3267 Amount of milliseconds the signal has to rise above the threshold before gain
3268 reduction stops.
3269 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3270
3271 @item release
3272 Amount of milliseconds the signal has to fall below the threshold before the
3273 reduction is increased again. Default is 250 milliseconds.
3274 Allowed range is from 0.01 to 9000.
3275
3276 @item makeup
3277 Set amount of amplification of signal after processing.
3278 Default is 1. Allowed range is from 1 to 64.
3279
3280 @item knee
3281 Curve the sharp knee around the threshold to enter gain reduction more softly.
3282 Default is 2.828427125. Allowed range is from 1 to 8.
3283
3284 @item detection
3285 Choose if exact signal should be taken for detection or an RMS like one.
3286 Default is rms. Can be peak or rms.
3287
3288 @item link
3289 Choose if the average level between all channels or the louder channel affects
3290 the reduction.
3291 Default is average. Can be average or maximum.
3292
3293 @item level_sc
3294 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3295 @end table
3296
3297 @section silencedetect
3298
3299 Detect silence in an audio stream.
3300
3301 This filter logs a message when it detects that the input audio volume is less
3302 or equal to a noise tolerance value for a duration greater or equal to the
3303 minimum detected noise duration.
3304
3305 The printed times and duration are expressed in seconds.
3306
3307 The filter accepts the following options:
3308
3309 @table @option
3310 @item duration, d
3311 Set silence duration until notification (default is 2 seconds).
3312
3313 @item noise, n
3314 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3315 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3316 @end table
3317
3318 @subsection Examples
3319
3320 @itemize
3321 @item
3322 Detect 5 seconds of silence with -50dB noise tolerance:
3323 @example
3324 silencedetect=n=-50dB:d=5
3325 @end example
3326
3327 @item
3328 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3329 tolerance in @file{silence.mp3}:
3330 @example
3331 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3332 @end example
3333 @end itemize
3334
3335 @section silenceremove
3336
3337 Remove silence from the beginning, middle or end of the audio.
3338
3339 The filter accepts the following options:
3340
3341 @table @option
3342 @item start_periods
3343 This value is used to indicate if audio should be trimmed at beginning of
3344 the audio. A value of zero indicates no silence should be trimmed from the
3345 beginning. When specifying a non-zero value, it trims audio up until it
3346 finds non-silence. Normally, when trimming silence from beginning of audio
3347 the @var{start_periods} will be @code{1} but it can be increased to higher
3348 values to trim all audio up to specific count of non-silence periods.
3349 Default value is @code{0}.
3350
3351 @item start_duration
3352 Specify the amount of time that non-silence must be detected before it stops
3353 trimming audio. By increasing the duration, bursts of noises can be treated
3354 as silence and trimmed off. Default value is @code{0}.
3355
3356 @item start_threshold
3357 This indicates what sample value should be treated as silence. For digital
3358 audio, a value of @code{0} may be fine but for audio recorded from analog,
3359 you may wish to increase the value to account for background noise.
3360 Can be specified in dB (in case "dB" is appended to the specified value)
3361 or amplitude ratio. Default value is @code{0}.
3362
3363 @item stop_periods
3364 Set the count for trimming silence from the end of audio.
3365 To remove silence from the middle of a file, specify a @var{stop_periods}
3366 that is negative. This value is then treated as a positive value and is
3367 used to indicate the effect should restart processing as specified by
3368 @var{start_periods}, making it suitable for removing periods of silence
3369 in the middle of the audio.
3370 Default value is @code{0}.
3371
3372 @item stop_duration
3373 Specify a duration of silence that must exist before audio is not copied any
3374 more. By specifying a higher duration, silence that is wanted can be left in
3375 the audio.
3376 Default value is @code{0}.
3377
3378 @item stop_threshold
3379 This is the same as @option{start_threshold} but for trimming silence from
3380 the end of audio.
3381 Can be specified in dB (in case "dB" is appended to the specified value)
3382 or amplitude ratio. Default value is @code{0}.
3383
3384 @item leave_silence
3385 This indicate that @var{stop_duration} length of audio should be left intact
3386 at the beginning of each period of silence.
3387 For example, if you want to remove long pauses between words but do not want
3388 to remove the pauses completely. Default value is @code{0}.
3389
3390 @item detection
3391 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3392 and works better with digital silence which is exactly 0.
3393 Default value is @code{rms}.
3394
3395 @item window
3396 Set ratio used to calculate size of window for detecting silence.
3397 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3398 @end table
3399
3400 @subsection Examples
3401
3402 @itemize
3403 @item
3404 The following example shows how this filter can be used to start a recording
3405 that does not contain the delay at the start which usually occurs between
3406 pressing the record button and the start of the performance:
3407 @example
3408 silenceremove=1:5:0.02
3409 @end example
3410
3411 @item
3412 Trim all silence encountered from beginning to end where there is more than 1
3413 second of silence in audio:
3414 @example
3415 silenceremove=0:0:0:-1:1:-90dB
3416 @end example
3417 @end itemize
3418
3419 @section sofalizer
3420
3421 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3422 loudspeakers around the user for binaural listening via headphones (audio
3423 formats up to 9 channels supported).
3424 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3425 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3426 Austrian Academy of Sciences.
3427
3428 To enable compilation of this filter you need to configure FFmpeg with
3429 @code{--enable-netcdf}.
3430
3431 The filter accepts the following options:
3432
3433 @table @option
3434 @item sofa
3435 Set the SOFA file used for rendering.
3436
3437 @item gain
3438 Set gain applied to audio. Value is in dB. Default is 0.
3439
3440 @item rotation
3441 Set rotation of virtual loudspeakers in deg. Default is 0.
3442
3443 @item elevation
3444 Set elevation of virtual speakers in deg. Default is 0.
3445
3446 @item radius
3447 Set distance in meters between loudspeakers and the listener with near-field
3448 HRTFs. Default is 1.
3449
3450 @item type
3451 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3452 processing audio in time domain which is slow.
3453 @var{freq} is processing audio in frequency domain which is fast.
3454 Default is @var{freq}.
3455
3456 @item speakers
3457 Set custom positions of virtual loudspeakers. Syntax for this option is:
3458 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3459 Each virtual loudspeaker is described with short channel name following with
3460 azimuth and elevation in degreees.
3461 Each virtual loudspeaker description is separated by '|'.
3462 For example to override front left and front right channel positions use:
3463 'speakers=FL 45 15|FR 345 15'.
3464 Descriptions with unrecognised channel names are ignored.
3465 @end table
3466
3467 @subsection Examples
3468
3469 @itemize
3470 @item
3471 Using ClubFritz6 sofa file:
3472 @example
3473 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3474 @end example
3475
3476 @item
3477 Using ClubFritz12 sofa file and bigger radius with small rotation:
3478 @example
3479 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3480 @end example
3481
3482 @item
3483 Similar as above but with custom speaker positions for front left, front right, rear left and rear right
3484 and also with custom gain:
3485 @example
3486 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|RL 135|RR 225:gain=28"
3487 @end example
3488 @end itemize
3489
3490 @section stereotools
3491
3492 This filter has some handy utilities to manage stereo signals, for converting
3493 M/S stereo recordings to L/R signal while having control over the parameters
3494 or spreading the stereo image of master track.
3495
3496 The filter accepts the following options:
3497
3498 @table @option
3499 @item level_in
3500 Set input level before filtering for both channels. Defaults is 1.
3501 Allowed range is from 0.015625 to 64.
3502
3503 @item level_out
3504 Set output level after filtering for both channels. Defaults is 1.
3505 Allowed range is from 0.015625 to 64.
3506
3507 @item balance_in
3508 Set input balance between both channels. Default is 0.
3509 Allowed range is from -1 to 1.
3510
3511 @item balance_out
3512 Set output balance between both channels. Default is 0.
3513 Allowed range is from -1 to 1.
3514
3515 @item softclip
3516 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3517 clipping. Disabled by default.
3518
3519 @item mutel
3520 Mute the left channel. Disabled by default.
3521
3522 @item muter
3523 Mute the right channel. Disabled by default.
3524
3525 @item phasel
3526 Change the phase of the left channel. Disabled by default.
3527
3528 @item phaser
3529 Change the phase of the right channel. Disabled by default.
3530
3531 @item mode
3532 Set stereo mode. Available values are:
3533
3534 @table @samp
3535 @item lr>lr
3536 Left/Right to Left/Right, this is default.
3537
3538 @item lr>ms
3539 Left/Right to Mid/Side.
3540
3541 @item ms>lr
3542 Mid/Side to Left/Right.
3543
3544 @item lr>ll
3545 Left/Right to Left/Left.
3546
3547 @item lr>rr
3548 Left/Right to Right/Right.
3549
3550 @item lr>l+r
3551 Left/Right to Left + Right.
3552
3553 @item lr>rl
3554 Left/Right to Right/Left.
3555 @end table
3556
3557 @item slev
3558 Set level of side signal. Default is 1.
3559 Allowed range is from 0.015625 to 64.
3560
3561 @item sbal
3562 Set balance of side signal. Default is 0.
3563 Allowed range is from -1 to 1.
3564
3565 @item mlev
3566 Set level of the middle signal. Default is 1.
3567 Allowed range is from 0.015625 to 64.
3568
3569 @item mpan
3570 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3571
3572 @item base
3573 Set stereo base between mono and inversed channels. Default is 0.
3574 Allowed range is from -1 to 1.
3575
3576 @item delay
3577 Set delay in milliseconds how much to delay left from right channel and
3578 vice versa. Default is 0. Allowed range is from -20 to 20.
3579
3580 @item sclevel
3581 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3582
3583 @item phase
3584 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3585 @end table
3586
3587 @subsection Examples
3588
3589 @itemize
3590 @item
3591 Apply karaoke like effect:
3592 @example
3593 stereotools=mlev=0.015625
3594 @end example
3595
3596 @item
3597 Convert M/S signal to L/R:
3598 @example
3599 "stereotools=mode=ms>lr"
3600 @end example
3601 @end itemize
3602
3603 @section stereowiden
3604
3605 This filter enhance the stereo effect by suppressing signal common to both
3606 channels and by delaying the signal of left into right and vice versa,
3607 thereby widening the stereo effect.
3608
3609 The filter accepts the following options:
3610
3611 @table @option
3612 @item delay
3613 Time in milliseconds of the delay of left signal into right and vice versa.
3614 Default is 20 milliseconds.
3615
3616 @item feedback
3617 Amount of gain in delayed signal into right and vice versa. Gives a delay
3618 effect of left signal in right output and vice versa which gives widening
3619 effect. Default is 0.3.
3620
3621 @item crossfeed
3622 Cross feed of left into right with inverted phase. This helps in suppressing
3623 the mono. If the value is 1 it will cancel all the signal common to both
3624 channels. Default is 0.3.
3625
3626 @item drymix
3627 Set level of input signal of original channel. Default is 0.8.
3628 @end table
3629
3630 @section treble
3631
3632 Boost or cut treble (upper) frequencies of the audio using a two-pole
3633 shelving filter with a response similar to that of a standard
3634 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3635
3636 The filter accepts the following options:
3637
3638 @table @option
3639 @item gain, g
3640 Give the gain at whichever is the lower of ~22 kHz and the
3641 Nyquist frequency. Its useful range is about -20 (for a large cut)
3642 to +20 (for a large boost). Beware of clipping when using a positive gain.
3643
3644 @item frequency, f
3645 Set the filter's central frequency and so can be used
3646 to extend or reduce the frequency range to be boosted or cut.
3647 The default value is @code{3000} Hz.
3648
3649 @item width_type
3650 Set method to specify band-width of filter.
3651 @table @option
3652 @item h
3653 Hz
3654 @item q
3655 Q-Factor
3656 @item o
3657 octave
3658 @item s
3659 slope
3660 @end table
3661
3662 @item width, w
3663 Determine how steep is the filter's shelf transition.
3664 @end table
3665
3666 @section tremolo
3667
3668 Sinusoidal amplitude modulation.
3669
3670 The filter accepts the following options:
3671
3672 @table @option
3673 @item f
3674 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3675 (20 Hz or lower) will result in a tremolo effect.
3676 This filter may also be used as a ring modulator by specifying
3677 a modulation frequency higher than 20 Hz.
3678 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3679
3680 @item d
3681 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3682 Default value is 0.5.
3683 @end table
3684
3685 @section vibrato
3686
3687 Sinusoidal phase modulation.
3688
3689 The filter accepts the following options:
3690
3691 @table @option
3692 @item f
3693 Modulation frequency in Hertz.
3694 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3695
3696 @item d
3697 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3698 Default value is 0.5.
3699 @end table
3700
3701 @section volume
3702
3703 Adjust the input audio volume.
3704
3705 It accepts the following parameters:
3706 @table @option
3707
3708 @item volume
3709 Set audio volume expression.
3710
3711 Output values are clipped to the maximum value.
3712
3713 The output audio volume is given by the relation:
3714 @example
3715 @var{output_volume} = @var{volume} * @var{input_volume}
3716 @end example
3717
3718 The default value for @var{volume} is "1.0".
3719
3720 @item precision
3721 This parameter represents the mathematical precision.
3722
3723 It determines which input sample formats will be allowed, which affects the
3724 precision of the volume scaling.
3725
3726 @table @option
3727 @item fixed
3728 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3729 @item float
3730 32-bit floating-point; this limits input sample format to FLT. (default)
3731 @item double
3732 64-bit floating-point; this limits input sample format to DBL.
3733 @end table
3734
3735 @item replaygain
3736 Choose the behaviour on encountering ReplayGain side data in input frames.
3737
3738 @table @option
3739 @item drop
3740 Remove ReplayGain side data, ignoring its contents (the default).
3741
3742 @item ignore
3743 Ignore ReplayGain side data, but leave it in the frame.
3744
3745 @item track
3746 Prefer the track gain, if present.
3747
3748 @item album
3749 Prefer the album gain, if present.
3750 @end table
3751
3752 @item replaygain_preamp
3753 Pre-amplification gain in dB to apply to the selected replaygain gain.
3754
3755 Default value for @var{replaygain_preamp} is 0.0.
3756
3757 @item eval
3758 Set when the volume expression is evaluated.
3759
3760 It accepts the following values:
3761 @table @samp
3762 @item once
3763 only evaluate expression once during the filter initialization, or
3764 when the @samp{volume} command is sent
3765
3766 @item frame
3767 evaluate expression for each incoming frame
3768 @end table
3769
3770 Default value is @samp{once}.
3771 @end table
3772
3773 The volume expression can contain the following parameters.
3774
3775 @table @option
3776 @item n
3777 frame number (starting at zero)
3778 @item nb_channels
3779 number of channels
3780 @item nb_consumed_samples
3781 number of samples consumed by the filter
3782 @item nb_samples
3783 number of samples in the current frame
3784 @item pos
3785 original frame position in the file
3786 @item pts
3787 frame PTS
3788 @item sample_rate
3789 sample rate
3790 @item startpts
3791 PTS at start of stream
3792 @item startt
3793 time at start of stream
3794 @item t
3795 frame time
3796 @item tb
3797 timestamp timebase
3798 @item volume
3799 last set volume value
3800 @end table
3801
3802 Note that when @option{eval} is set to @samp{once} only the
3803 @var{sample_rate} and @var{tb} variables are available, all other
3804 variables will evaluate to NAN.
3805
3806 @subsection Commands
3807
3808 This filter supports the following commands:
3809 @table @option
3810 @item volume
3811 Modify the volume expression.
3812 The command accepts the same syntax of the corresponding option.
3813
3814 If the specified expression is not valid, it is kept at its current
3815 value.
3816 @item replaygain_noclip
3817 Prevent clipping by limiting the gain applied.
3818
3819 Default value for @var{replaygain_noclip} is 1.
3820
3821 @end table
3822
3823 @subsection Examples
3824
3825 @itemize
3826 @item
3827 Halve the input audio volume:
3828 @example
3829 volume=volume=0.5
3830 volume=volume=1/2
3831 volume=volume=-6.0206dB
3832 @end example
3833
3834 In all the above example the named key for @option{volume} can be
3835 omitted, for example like in:
3836 @example
3837 volume=0.5
3838 @end example
3839
3840 @item
3841 Increase input audio power by 6 decibels using fixed-point precision:
3842 @example
3843 volume=volume=6dB:precision=fixed
3844 @end example
3845
3846 @item
3847 Fade volume after time 10 with an annihilation period of 5 seconds:
3848 @example
3849 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3850 @end example
3851 @end itemize
3852
3853 @section volumedetect
3854
3855 Detect the volume of the input video.
3856
3857 The filter has no parameters. The input is not modified. Statistics about
3858 the volume will be printed in the log when the input stream end is reached.
3859
3860 In particular it will show the mean volume (root mean square), maximum
3861 volume (on a per-sample basis), and the beginning of a histogram of the
3862 registered volume values (from the maximum value to a cumulated 1/1000 of
3863 the samples).
3864
3865 All volumes are in decibels relative to the maximum PCM value.
3866
3867 @subsection Examples
3868
3869 Here is an excerpt of the output:
3870 @example
3871 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3872 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3873 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3874 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3875 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3876 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3877 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3878 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3879 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3880 @end example
3881
3882 It means that:
3883 @itemize
3884 @item
3885 The mean square energy is approximately -27 dB, or 10^-2.7.
3886 @item
3887 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3888 @item
3889 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3890 @end itemize
3891
3892 In other words, raising the volume by +4 dB does not cause any clipping,
3893 raising it by +5 dB causes clipping for 6 samples, etc.
3894
3895 @c man end AUDIO FILTERS
3896
3897 @chapter Audio Sources
3898 @c man begin AUDIO SOURCES
3899
3900 Below is a description of the currently available audio sources.
3901
3902 @section abuffer
3903
3904 Buffer audio frames, and make them available to the filter chain.
3905
3906 This source is mainly intended for a programmatic use, in particular
3907 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3908
3909 It accepts the following parameters:
3910 @table @option
3911
3912 @item time_base
3913 The timebase which will be used for timestamps of submitted frames. It must be
3914 either a floating-point number or in @var{numerator}/@var{denominator} form.
3915
3916 @item sample_rate
3917 The sample rate of the incoming audio buffers.
3918
3919 @item sample_fmt
3920 The sample format of the incoming audio buffers.
3921 Either a sample format name or its corresponding integer representation from
3922 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
3923
3924 @item channel_layout
3925 The channel layout of the incoming audio buffers.
3926 Either a channel layout name from channel_layout_map in
3927 @file{libavutil/channel_layout.c} or its corresponding integer representation
3928 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
3929
3930 @item channels
3931 The number of channels of the incoming audio buffers.
3932 If both @var{channels} and @var{channel_layout} are specified, then they
3933 must be consistent.
3934
3935 @end table
3936
3937 @subsection Examples
3938
3939 @example
3940 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
3941 @end example
3942
3943 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
3944 Since the sample format with name "s16p" corresponds to the number
3945 6 and the "stereo" channel layout corresponds to the value 0x3, this is
3946 equivalent to:
3947 @example
3948 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
3949 @end example
3950
3951 @section aevalsrc
3952
3953 Generate an audio signal specified by an expression.
3954
3955 This source accepts in input one or more expressions (one for each
3956 channel), which are evaluated and used to generate a corresponding
3957 audio signal.
3958
3959 This source accepts the following options:
3960
3961 @table @option
3962 @item exprs
3963 Set the '|'-separated expressions list for each separate channel. In case the
3964 @option{channel_layout} option is not specified, the selected channel layout
3965 depends on the number of provided expressions. Otherwise the last
3966 specified expression is applied to the remaining output channels.
3967
3968 @item channel_layout, c
3969 Set the channel layout. The number of channels in the specified layout
3970 must be equal to the number of specified expressions.
3971
3972 @item duration, d
3973 Set the minimum duration of the sourced audio. See
3974 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3975 for the accepted syntax.
3976 Note that the resulting duration may be greater than the specified
3977 duration, as the generated audio is always cut at the end of a
3978 complete frame.
3979
3980 If not specified, or the expressed duration is negative, the audio is
3981 supposed to be generated forever.
3982
3983 @item nb_samples, n
3984 Set the number of samples per channel per each output frame,
3985 default to 1024.
3986
3987 @item sample_rate, s
3988 Specify the sample rate, default to 44100.
3989 @end table
3990
3991 Each expression in @var{exprs} can contain the following constants:
3992
3993 @table @option
3994 @item n
3995 number of the evaluated sample, starting from 0
3996
3997 @item t
3998 time of the evaluated sample expressed in seconds, starting from 0
3999
4000 @item s
4001 sample rate
4002
4003 @end table
4004
4005 @subsection Examples
4006
4007 @itemize
4008 @item
4009 Generate silence:
4010 @example
4011 aevalsrc=0
4012 @end example
4013
4014 @item
4015 Generate a sin signal with frequency of 440 Hz, set sample rate to
4016 8000 Hz:
4017 @example
4018 aevalsrc="sin(440*2*PI*t):s=8000"
4019 @end example
4020
4021 @item
4022 Generate a two channels signal, specify the channel layout (Front
4023 Center + Back Center) explicitly:
4024 @example
4025 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4026 @end example
4027
4028 @item
4029 Generate white noise:
4030 @example
4031 aevalsrc="-2+random(0)"
4032 @end example
4033
4034 @item
4035 Generate an amplitude modulated signal:
4036 @example
4037 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4038 @end example
4039
4040 @item
4041 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4042 @example
4043 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4044 @end example
4045
4046 @end itemize
4047
4048 @section anullsrc
4049
4050 The null audio source, return unprocessed audio frames. It is mainly useful
4051 as a template and to be employed in analysis / debugging tools, or as
4052 the source for filters which ignore the input data (for example the sox
4053 synth filter).
4054
4055 This source accepts the following options:
4056
4057 @table @option
4058
4059 @item channel_layout, cl
4060
4061 Specifies the channel layout, and can be either an integer or a string
4062 representing a channel layout. The default value of @var{channel_layout}
4063 is "stereo".
4064
4065 Check the channel_layout_map definition in
4066 @file{libavutil/channel_layout.c} for the mapping between strings and
4067 channel layout values.
4068
4069 @item sample_rate, r
4070 Specifies the sample rate, and defaults to 44100.
4071
4072 @item nb_samples, n
4073 Set the number of samples per requested frames.
4074
4075 @end table
4076
4077 @subsection Examples
4078
4079 @itemize
4080 @item
4081 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4082 @example
4083 anullsrc=r=48000:cl=4
4084 @end example
4085
4086 @item
4087 Do the same operation with a more obvious syntax:
4088 @example
4089 anullsrc=r=48000:cl=mono
4090 @end example
4091 @end itemize
4092
4093 All the parameters need to be explicitly defined.
4094
4095 @section flite
4096
4097 Synthesize a voice utterance using the libflite library.
4098
4099 To enable compilation of this filter you need to configure FFmpeg with
4100 @code{--enable-libflite}.
4101
4102 Note that the flite library is not thread-safe.
4103
4104 The filter accepts the following options:
4105
4106 @table @option
4107
4108 @item list_voices
4109 If set to 1, list the names of the available voices and exit
4110 immediately. Default value is 0.
4111
4112 @item nb_samples, n
4113 Set the maximum number of samples per frame. Default value is 512.
4114
4115 @item textfile
4116 Set the filename containing the text to speak.
4117
4118 @item text
4119 Set the text to speak.
4120
4121 @item voice, v
4122 Set the voice to use for the speech synthesis. Default value is
4123 @code{kal}. See also the @var{list_voices} option.
4124 @end table
4125
4126 @subsection Examples
4127
4128 @itemize
4129 @item
4130 Read from file @file{speech.txt}, and synthesize the text using the
4131 standard flite voice:
4132 @example
4133 flite=textfile=speech.txt
4134 @end example
4135
4136 @item
4137 Read the specified text selecting the @code{slt} voice:
4138 @example
4139 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4140 @end example
4141
4142 @item
4143 Input text to ffmpeg:
4144 @example
4145 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4146 @end example
4147
4148 @item
4149 Make @file{ffplay} speak the specified text, using @code{flite} and
4150 the @code{lavfi} device:
4151 @example
4152 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4153 @end example
4154 @end itemize
4155
4156 For more information about libflite, check:
4157 @url{http://www.speech.cs.cmu.edu/flite/}
4158
4159 @section anoisesrc
4160
4161 Generate a noise audio signal.
4162
4163 The filter accepts the following options:
4164
4165 @table @option
4166 @item sample_rate, r
4167 Specify the sample rate. Default value is 48000 Hz.
4168
4169 @item amplitude, a
4170 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4171 is 1.0.
4172
4173 @item duration, d
4174 Specify the duration of the generated audio stream. Not specifying this option
4175 results in noise with an infinite length.
4176
4177 @item color, colour, c
4178 Specify the color of noise. Available noise colors are white, pink, and brown.
4179 Default color is white.
4180
4181 @item seed, s
4182 Specify a value used to seed the PRNG.
4183
4184 @item nb_samples, n
4185 Set the number of samples per each output frame, default is 1024.
4186 @end table
4187
4188 @subsection Examples
4189
4190 @itemize
4191
4192 @item
4193 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4194 @example
4195 anoisesrc=d=60:c=pink:r=44100:a=0.5
4196 @end example
4197 @end itemize
4198
4199 @section sine
4200
4201 Generate an audio signal made of a sine wave with amplitude 1/8.
4202
4203 The audio signal is bit-exact.
4204
4205 The filter accepts the following options:
4206
4207 @table @option
4208
4209 @item frequency, f
4210 Set the carrier frequency. Default is 440 Hz.
4211
4212 @item beep_factor, b
4213 Enable a periodic beep every second with frequency @var{beep_factor} times
4214 the carrier frequency. Default is 0, meaning the beep is disabled.
4215
4216 @item sample_rate, r
4217 Specify the sample rate, default is 44100.
4218
4219 @item duration, d
4220 Specify the duration of the generated audio stream.
4221
4222 @item samples_per_frame
4223 Set the number of samples per output frame.
4224
4225 The expression can contain the following constants:
4226
4227 @table @option
4228 @item n
4229 The (sequential) number of the output audio frame, starting from 0.
4230
4231 @item pts
4232 The PTS (Presentation TimeStamp) of the output audio frame,
4233 expressed in @var{TB} units.
4234
4235 @item t
4236 The PTS of the output audio frame, expressed in seconds.
4237
4238 @item TB
4239 The timebase of the output audio frames.
4240 @end table
4241
4242 Default is @code{1024}.
4243 @end table
4244
4245 @subsection Examples
4246
4247 @itemize
4248
4249 @item
4250 Generate a simple 440 Hz sine wave:
4251 @example
4252 sine
4253 @end example
4254
4255 @item
4256 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4257 @example
4258 sine=220:4:d=5
4259 sine=f=220:b=4:d=5
4260 sine=frequency=220:beep_factor=4:duration=5
4261 @end example
4262
4263 @item
4264 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4265 pattern:
4266 @example
4267 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4268 @end example
4269 @end itemize
4270
4271 @c man end AUDIO SOURCES
4272
4273 @chapter Audio Sinks
4274 @c man begin AUDIO SINKS
4275
4276 Below is a description of the currently available audio sinks.
4277
4278 @section abuffersink
4279
4280 Buffer audio frames, and make them available to the end of filter chain.
4281
4282 This sink is mainly intended for programmatic use, in particular
4283 through the interface defined in @file{libavfilter/buffersink.h}
4284 or the options system.
4285
4286 It accepts a pointer to an AVABufferSinkContext structure, which
4287 defines the incoming buffers' formats, to be passed as the opaque
4288 parameter to @code{avfilter_init_filter} for initialization.
4289 @section anullsink
4290
4291 Null audio sink; do absolutely nothing with the input audio. It is
4292 mainly useful as a template and for use in analysis / debugging
4293 tools.
4294
4295 @c man end AUDIO SINKS
4296
4297 @chapter Video Filters
4298 @c man begin VIDEO FILTERS
4299
4300 When you configure your FFmpeg build, you can disable any of the
4301 existing filters using @code{--disable-filters}.
4302 The configure output will show the video filters included in your
4303 build.
4304
4305 Below is a description of the currently available video filters.
4306
4307 @section alphaextract
4308
4309 Extract the alpha component from the input as a grayscale video. This
4310 is especially useful with the @var{alphamerge} filter.
4311
4312 @section alphamerge
4313
4314 Add or replace the alpha component of the primary input with the
4315 grayscale value of a second input. This is intended for use with
4316 @var{alphaextract} to allow the transmission or storage of frame
4317 sequences that have alpha in a format that doesn't support an alpha
4318 channel.
4319
4320 For example, to reconstruct full frames from a normal YUV-encoded video
4321 and a separate video created with @var{alphaextract}, you might use:
4322 @example
4323 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4324 @end example
4325
4326 Since this filter is designed for reconstruction, it operates on frame
4327 sequences without considering timestamps, and terminates when either
4328 input reaches end of stream. This will cause problems if your encoding
4329 pipeline drops frames. If you're trying to apply an image as an
4330 overlay to a video stream, consider the @var{overlay} filter instead.
4331
4332 @section ass
4333
4334 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4335 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4336 Substation Alpha) subtitles files.
4337
4338 This filter accepts the following option in addition to the common options from
4339 the @ref{subtitles} filter:
4340
4341 @table @option
4342 @item shaping
4343 Set the shaping engine
4344
4345 Available values are:
4346 @table @samp
4347 @item auto
4348 The default libass shaping engine, which is the best available.
4349 @item simple
4350 Fast, font-agnostic shaper that can do only substitutions
4351 @item complex
4352 Slower shaper using OpenType for substitutions and positioning
4353 @end table
4354
4355 The default is @code{auto}.
4356 @end table
4357
4358 @section atadenoise
4359 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4360
4361 The filter accepts the following options:
4362
4363 @table @option
4364 @item 0a
4365 Set threshold A for 1st plane. Default is 0.02.
4366 Valid range is 0 to 0.3.
4367
4368 @item 0b
4369 Set threshold B for 1st plane. Default is 0.04.
4370 Valid range is 0 to 5.
4371
4372 @item 1a
4373 Set threshold A for 2nd plane. Default is 0.02.
4374 Valid range is 0 to 0.3.
4375
4376 @item 1b
4377 Set threshold B for 2nd plane. Default is 0.04.
4378 Valid range is 0 to 5.
4379
4380 @item 2a
4381 Set threshold A for 3rd plane. Default is 0.02.
4382 Valid range is 0 to 0.3.
4383
4384 @item 2b
4385 Set threshold B for 3rd plane. Default is 0.04.
4386 Valid range is 0 to 5.
4387
4388 Threshold A is designed to react on abrupt changes in the input signal and
4389 threshold B is designed to react on continuous changes in the input signal.
4390
4391 @item s
4392 Set number of frames filter will use for averaging. Default is 33. Must be odd
4393 number in range [5, 129].
4394 @end table
4395
4396 @section bbox
4397
4398 Compute the bounding box for the non-black pixels in the input frame
4399 luminance plane.
4400
4401 This filter computes the bounding box containing all the pixels with a
4402 luminance value greater than the minimum allowed value.
4403 The parameters describing the bounding box are printed on the filter
4404 log.
4405
4406 The filter accepts the following option:
4407
4408 @table @option
4409 @item min_val
4410 Set the minimal luminance value. Default is @code{16}.
4411 @end table
4412
4413 @section bitplanenoise
4414
4415 Show and measure bit plane noise.
4416
4417 The filter accepts the following options:
4418
4419 @table @option
4420 @item bitplane
4421 Set which plane to analyze. Default is @code{1}.
4422
4423 @item filter
4424 Filter out noisy pixels from @code{bitplane} set above.
4425 Default is disabled.
4426 @end table
4427
4428 @section blackdetect
4429
4430 Detect video intervals that are (almost) completely black. Can be
4431 useful to detect chapter transitions, commercials, or invalid
4432 recordings. Output lines contains the time for the start, end and
4433 duration of the detected black interval expressed in seconds.
4434
4435 In order to display the output lines, you need to set the loglevel at
4436 least to the AV_LOG_INFO value.
4437
4438 The filter accepts the following options:
4439
4440 @table @option
4441 @item black_min_duration, d
4442 Set the minimum detected black duration expressed in seconds. It must
4443 be a non-negative floating point number.
4444
4445 Default value is 2.0.
4446
4447 @item picture_black_ratio_th, pic_th
4448 Set the threshold for considering a picture "black".
4449 Express the minimum value for the ratio:
4450 @example
4451 @var{nb_black_pixels} / @var{nb_pixels}
4452 @end example
4453
4454 for which a picture is considered black.
4455 Default value is 0.98.
4456
4457 @item pixel_black_th, pix_th
4458 Set the threshold for considering a pixel "black".
4459
4460 The threshold expresses the maximum pixel luminance value for which a
4461 pixel is considered "black". The provided value is scaled according to
4462 the following equation:
4463 @example
4464 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4465 @end example
4466
4467 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4468 the input video format, the range is [0-255] for YUV full-range
4469 formats and [16-235] for YUV non full-range formats.
4470
4471 Default value is 0.10.
4472 @end table
4473
4474 The following example sets the maximum pixel threshold to the minimum
4475 value, and detects only black intervals of 2 or more seconds:
4476 @example
4477 blackdetect=d=2:pix_th=0.00
4478 @end example
4479
4480 @section blackframe
4481
4482 Detect frames that are (almost) completely black. Can be useful to
4483 detect chapter transitions or commercials. Output lines consist of
4484 the frame number of the detected frame, the percentage of blackness,
4485 the position in the file if known or -1 and the timestamp in seconds.
4486
4487 In order to display the output lines, you need to set the loglevel at
4488 least to the AV_LOG_INFO value.
4489
4490 It accepts the following parameters:
4491
4492 @table @option
4493
4494 @item amount
4495 The percentage of the pixels that have to be below the threshold; it defaults to
4496 @code{98}.
4497
4498 @item threshold, thresh
4499 The threshold below which a pixel value is considered black; it defaults to
4500 @code{32}.
4501
4502 @end table
4503
4504 @section blend, tblend
4505
4506 Blend two video frames into each other.
4507
4508 The @code{blend} filter takes two input streams and outputs one
4509 stream, the first input is the "top" layer and second input is
4510 "bottom" layer.  Output terminates when shortest input terminates.
4511
4512 The @code{tblend} (time blend) filter takes two consecutive frames
4513 from one single stream, and outputs the result obtained by blending
4514 the new frame on top of the old frame.
4515
4516 A description of the accepted options follows.
4517
4518 @table @option
4519 @item c0_mode
4520 @item c1_mode
4521 @item c2_mode
4522 @item c3_mode
4523 @item all_mode
4524 Set blend mode for specific pixel component or all pixel components in case
4525 of @var{all_mode}. Default value is @code{normal}.
4526
4527 Available values for component modes are:
4528 @table @samp
4529 @item addition
4530 @item addition128
4531 @item and
4532 @item average
4533 @item burn
4534 @item darken
4535 @item difference
4536 @item difference128
4537 @item divide
4538 @item dodge
4539 @item freeze
4540 @item exclusion
4541 @item glow
4542 @item hardlight
4543 @item hardmix
4544 @item heat
4545 @item lighten
4546 @item linearlight
4547 @item multiply
4548 @item multiply128
4549 @item negation
4550 @item normal
4551 @item or
4552 @item overlay
4553 @item phoenix
4554 @item pinlight
4555 @item reflect
4556 @item screen
4557 @item softlight
4558 @item subtract
4559 @item vividlight
4560 @item xor
4561 @end table
4562
4563 @item c0_opacity
4564 @item c1_opacity
4565 @item c2_opacity
4566 @item c3_opacity
4567 @item all_opacity
4568 Set blend opacity for specific pixel component or all pixel components in case
4569 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4570
4571 @item c0_expr
4572 @item c1_expr
4573 @item c2_expr
4574 @item c3_expr
4575 @item all_expr
4576 Set blend expression for specific pixel component or all pixel components in case
4577 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4578
4579 The expressions can use the following variables:
4580
4581 @table @option
4582 @item N
4583 The sequential number of the filtered frame, starting from @code{0}.
4584
4585 @item X
4586 @item Y
4587 the coordinates of the current sample
4588
4589 @item W
4590 @item H
4591 the width and height of currently filtered plane
4592
4593 @item SW
4594 @item SH
4595 Width and height scale depending on the currently filtered plane. It is the
4596 ratio between the corresponding luma plane number of pixels and the current
4597 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4598 @code{0.5,0.5} for chroma planes.
4599
4600 @item T
4601 Time of the current frame, expressed in seconds.
4602
4603 @item TOP, A
4604 Value of pixel component at current location for first video frame (top layer).
4605
4606 @item BOTTOM, B
4607 Value of pixel component at current location for second video frame (bottom layer).
4608 @end table
4609
4610 @item shortest
4611 Force termination when the shortest input terminates. Default is
4612 @code{0}. This option is only defined for the @code{blend} filter.
4613
4614 @item repeatlast
4615 Continue applying the last bottom frame after the end of the stream. A value of
4616 @code{0} disable the filter after the last frame of the bottom layer is reached.
4617 Default is @code{1}. This option is only defined for the @code{blend} filter.
4618 @end table
4619
4620 @subsection Examples
4621
4622 @itemize
4623 @item
4624 Apply transition from bottom layer to top layer in first 10 seconds:
4625 @example
4626 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4627 @end example
4628
4629 @item
4630 Apply 1x1 checkerboard effect:
4631 @example
4632 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4633 @end example
4634
4635 @item
4636 Apply uncover left effect:
4637 @example
4638 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4639 @end example
4640
4641 @item
4642 Apply uncover down effect:
4643 @example
4644 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4645 @end example
4646
4647 @item
4648 Apply uncover up-left effect:
4649 @example
4650 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4651 @end example
4652
4653 @item
4654 Split diagonally video and shows top and bottom layer on each side:
4655 @example
4656 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4657 @end example
4658
4659 @item
4660 Display differences between the current and the previous frame:
4661 @example
4662 tblend=all_mode=difference128
4663 @end example
4664 @end itemize
4665
4666 @section boxblur
4667
4668 Apply a boxblur algorithm to the input video.
4669
4670 It accepts the following parameters:
4671
4672 @table @option
4673
4674 @item luma_radius, lr
4675 @item luma_power, lp
4676 @item chroma_radius, cr
4677 @item chroma_power, cp
4678 @item alpha_radius, ar
4679 @item alpha_power, ap
4680
4681 @end table
4682
4683 A description of the accepted options follows.
4684
4685 @table @option
4686 @item luma_radius, lr
4687 @item chroma_radius, cr
4688 @item alpha_radius, ar
4689 Set an expression for the box radius in pixels used for blurring the
4690 corresponding input plane.
4691
4692 The radius value must be a non-negative number, and must not be
4693 greater than the value of the expression @code{min(w,h)/2} for the
4694 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4695 planes.
4696
4697 Default value for @option{luma_radius} is "2". If not specified,
4698 @option{chroma_radius} and @option{alpha_radius} default to the
4699 corresponding value set for @option{luma_radius}.
4700
4701 The expressions can contain the following constants:
4702 @table @option
4703 @item w
4704 @item h
4705 The input width and height in pixels.
4706
4707 @item cw
4708 @item ch
4709 The input chroma image width and height in pixels.
4710
4711 @item hsub
4712 @item vsub
4713 The horizontal and vertical chroma subsample values. For example, for the
4714 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4715 @end table
4716
4717 @item luma_power, lp
4718 @item chroma_power, cp
4719 @item alpha_power, ap
4720 Specify how many times the boxblur filter is applied to the
4721 corresponding plane.
4722
4723 Default value for @option{luma_power} is 2. If not specified,
4724 @option{chroma_power} and @option{alpha_power} default to the
4725 corresponding value set for @option{luma_power}.
4726
4727 A value of 0 will disable the effect.
4728 @end table
4729
4730 @subsection Examples
4731
4732 @itemize
4733 @item
4734 Apply a boxblur filter with the luma, chroma, and alpha radii
4735 set to 2:
4736 @example
4737 boxblur=luma_radius=2:luma_power=1
4738 boxblur=2:1
4739 @end example
4740
4741 @item
4742 Set the luma radius to 2, and alpha and chroma radius to 0:
4743 @example
4744 boxblur=2:1:cr=0:ar=0
4745 @end example
4746
4747 @item
4748 Set the luma and chroma radii to a fraction of the video dimension:
4749 @example
4750 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4751 @end example
4752 @end itemize
4753
4754 @section bwdif
4755
4756 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4757 Deinterlacing Filter").
4758
4759 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4760 interpolation algorithms.
4761 It accepts the following parameters:
4762
4763 @table @option
4764 @item mode
4765 The interlacing mode to adopt. It accepts one of the following values:
4766
4767 @table @option
4768 @item 0, send_frame
4769 Output one frame for each frame.
4770 @item 1, send_field
4771 Output one frame for each field.
4772 @end table
4773
4774 The default value is @code{send_field}.
4775
4776 @item parity
4777 The picture field parity assumed for the input interlaced video. It accepts one
4778 of the following values:
4779
4780 @table @option
4781 @item 0, tff
4782 Assume the top field is first.
4783 @item 1, bff
4784 Assume the bottom field is first.
4785 @item -1, auto
4786 Enable automatic detection of field parity.
4787 @end table
4788
4789 The default value is @code{auto}.
4790 If the interlacing is unknown or the decoder does not export this information,
4791 top field first will be assumed.
4792
4793 @item deint
4794 Specify which frames to deinterlace. Accept one of the following
4795 values:
4796
4797 @table @option
4798 @item 0, all
4799 Deinterlace all frames.
4800 @item 1, interlaced
4801 Only deinterlace frames marked as interlaced.
4802 @end table
4803
4804 The default value is @code{all}.
4805 @end table
4806
4807 @section chromakey
4808 YUV colorspace color/chroma keying.
4809
4810 The filter accepts the following options:
4811
4812 @table @option
4813 @item color
4814 The color which will be replaced with transparency.
4815
4816 @item similarity
4817 Similarity percentage with the key color.
4818
4819 0.01 matches only the exact key color, while 1.0 matches everything.
4820
4821 @item blend
4822 Blend percentage.
4823
4824 0.0 makes pixels either fully transparent, or not transparent at all.
4825
4826 Higher values result in semi-transparent pixels, with a higher transparency
4827 the more similar the pixels color is to the key color.
4828
4829 @item yuv
4830 Signals that the color passed is already in YUV instead of RGB.
4831
4832 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4833 This can be used to pass exact YUV values as hexadecimal numbers.
4834 @end table
4835
4836 @subsection Examples
4837
4838 @itemize
4839 @item
4840 Make every green pixel in the input image transparent:
4841 @example
4842 ffmpeg -i input.png -vf chromakey=green out.png
4843 @end example
4844
4845 @item
4846 Overlay a greenscreen-video on top of a static black background.
4847 @example
4848 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
4849 @end example
4850 @end itemize
4851
4852 @section ciescope
4853
4854 Display CIE color diagram with pixels overlaid onto it.
4855
4856 The filter accepts the following options:
4857
4858 @table @option
4859 @item system
4860 Set color system.
4861
4862 @table @samp
4863 @item ntsc, 470m
4864 @item ebu, 470bg
4865 @item smpte
4866 @item 240m
4867 @item apple
4868 @item widergb
4869 @item cie1931
4870 @item rec709, hdtv
4871 @item uhdtv, rec2020
4872 @end table
4873
4874 @item cie
4875 Set CIE system.
4876
4877 @table @samp
4878 @item xyy
4879 @item ucs
4880 @item luv
4881 @end table
4882
4883 @item gamuts
4884 Set what gamuts to draw.
4885
4886 See @code{system} option for available values.
4887
4888 @item size, s
4889 Set ciescope size, by default set to 512.
4890
4891 @item intensity, i
4892 Set intensity used to map input pixel values to CIE diagram.
4893
4894 @item contrast
4895 Set contrast used to draw tongue colors that are out of active color system gamut.
4896
4897 @item corrgamma
4898 Correct gamma displayed on scope, by default enabled.
4899
4900 @item showwhite
4901 Show white point on CIE diagram, by default disabled.
4902
4903 @item gamma
4904 Set input gamma. Used only with XYZ input color space.
4905 @end table
4906
4907 @section codecview
4908
4909 Visualize information exported by some codecs.
4910
4911 Some codecs can export information through frames using side-data or other
4912 means. For example, some MPEG based codecs export motion vectors through the
4913 @var{export_mvs} flag in the codec @option{flags2} option.
4914
4915 The filter accepts the following option:
4916
4917 @table @option
4918 @item mv
4919 Set motion vectors to visualize.
4920
4921 Available flags for @var{mv} are:
4922
4923 @table @samp
4924 @item pf
4925 forward predicted MVs of P-frames
4926 @item bf
4927 forward predicted MVs of B-frames
4928 @item bb
4929 backward predicted MVs of B-frames
4930 @end table
4931
4932 @item qp
4933 Display quantization parameters using the chroma planes.
4934
4935 @item mv_type, mvt
4936 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
4937
4938 Available flags for @var{mv_type} are:
4939
4940 @table @samp
4941 @item fp
4942 forward predicted MVs
4943 @item bp
4944 backward predicted MVs
4945 @end table
4946
4947 @item frame_type, ft
4948 Set frame type to visualize motion vectors of.
4949
4950 Available flags for @var{frame_type} are:
4951
4952 @table @samp
4953 @item if
4954 intra-coded frames (I-frames)
4955 @item pf
4956 predicted frames (P-frames)
4957 @item bf
4958 bi-directionally predicted frames (B-frames)
4959 @end table
4960 @end table
4961
4962 @subsection Examples
4963
4964 @itemize
4965 @item
4966 Visualize forward predicted MVs of all frames using @command{ffplay}:
4967 @example
4968 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
4969 @end example
4970
4971 @item
4972 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
4973 @example
4974 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
4975 @end example
4976 @end itemize
4977
4978 @section colorbalance
4979 Modify intensity of primary colors (red, green and blue) of input frames.
4980
4981 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
4982 regions for the red-cyan, green-magenta or blue-yellow balance.
4983
4984 A positive adjustment value shifts the balance towards the primary color, a negative
4985 value towards the complementary color.
4986
4987 The filter accepts the following options:
4988
4989 @table @option
4990 @item rs
4991 @item gs
4992 @item bs
4993 Adjust red, green and blue shadows (darkest pixels).
4994
4995 @item rm
4996 @item gm
4997 @item bm
4998 Adjust red, green and blue midtones (medium pixels).
4999
5000 @item rh
5001 @item gh
5002 @item bh
5003 Adjust red, green and blue highlights (brightest pixels).
5004
5005 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5006 @end table
5007
5008 @subsection Examples
5009
5010 @itemize
5011 @item
5012 Add red color cast to shadows:
5013 @example
5014 colorbalance=rs=.3
5015 @end example
5016 @end itemize
5017
5018 @section colorkey
5019 RGB colorspace color keying.
5020
5021 The filter accepts the following options:
5022
5023 @table @option
5024 @item color
5025 The color which will be replaced with transparency.
5026
5027 @item similarity
5028 Similarity percentage with the key color.
5029
5030 0.01 matches only the exact key color, while 1.0 matches everything.
5031
5032 @item blend
5033 Blend percentage.
5034
5035 0.0 makes pixels either fully transparent, or not transparent at all.
5036
5037 Higher values result in semi-transparent pixels, with a higher transparency
5038 the more similar the pixels color is to the key color.
5039 @end table
5040
5041 @subsection Examples
5042
5043 @itemize
5044 @item
5045 Make every green pixel in the input image transparent:
5046 @example
5047 ffmpeg -i input.png -vf colorkey=green out.png
5048 @end example
5049
5050 @item
5051 Overlay a greenscreen-video on top of a static background image.
5052 @example
5053 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
5054 @end example
5055 @end itemize
5056
5057 @section colorlevels
5058
5059 Adjust video input frames using levels.
5060
5061 The filter accepts the following options:
5062
5063 @table @option
5064 @item rimin
5065 @item gimin
5066 @item bimin
5067 @item aimin
5068 Adjust red, green, blue and alpha input black point.
5069 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5070
5071 @item rimax
5072 @item gimax
5073 @item bimax
5074 @item aimax
5075 Adjust red, green, blue and alpha input white point.
5076 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5077
5078 Input levels are used to lighten highlights (bright tones), darken shadows
5079 (dark tones), change the balance of bright and dark tones.
5080
5081 @item romin
5082 @item gomin
5083 @item bomin
5084 @item aomin
5085 Adjust red, green, blue and alpha output black point.
5086 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5087
5088 @item romax
5089 @item gomax
5090 @item bomax
5091 @item aomax
5092 Adjust red, green, blue and alpha output white point.
5093 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5094
5095 Output levels allows manual selection of a constrained output level range.
5096 @end table
5097
5098 @subsection Examples
5099
5100 @itemize
5101 @item
5102 Make video output darker:
5103 @example
5104 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5105 @end example
5106
5107 @item
5108 Increase contrast:
5109 @example
5110 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5111 @end example
5112
5113 @item
5114 Make video output lighter:
5115 @example
5116 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5117 @end example
5118
5119 @item
5120 Increase brightness:
5121 @example
5122 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5123 @end example
5124 @end itemize
5125
5126 @section colorchannelmixer
5127
5128 Adjust video input frames by re-mixing color channels.
5129
5130 This filter modifies a color channel by adding the values associated to
5131 the other channels of the same pixels. For example if the value to
5132 modify is red, the output value will be:
5133 @example
5134 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5135 @end example
5136
5137 The filter accepts the following options:
5138
5139 @table @option
5140 @item rr
5141 @item rg
5142 @item rb
5143 @item ra
5144 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5145 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5146
5147 @item gr
5148 @item gg
5149 @item gb
5150 @item ga
5151 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5152 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5153
5154 @item br
5155 @item bg
5156 @item bb
5157 @item ba
5158 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5159 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5160
5161 @item ar
5162 @item ag
5163 @item ab
5164 @item aa
5165 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5166 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5167
5168 Allowed ranges for options are @code{[-2.0, 2.0]}.
5169 @end table
5170
5171 @subsection Examples
5172
5173 @itemize
5174 @item
5175 Convert source to grayscale:
5176 @example
5177 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5178 @end example
5179 @item
5180 Simulate sepia tones:
5181 @example
5182 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5183 @end example
5184 @end itemize
5185
5186 @section colormatrix
5187
5188 Convert color matrix.
5189
5190 The filter accepts the following options:
5191
5192 @table @option
5193 @item src
5194 @item dst
5195 Specify the source and destination color matrix. Both values must be
5196 specified.
5197
5198 The accepted values are:
5199 @table @samp
5200 @item bt709
5201 BT.709
5202
5203 @item bt601
5204 BT.601
5205
5206 @item smpte240m
5207 SMPTE-240M
5208
5209 @item fcc
5210 FCC
5211
5212 @item bt2020
5213 BT.2020
5214 @end table
5215 @end table
5216
5217 For example to convert from BT.601 to SMPTE-240M, use the command:
5218 @example
5219 colormatrix=bt601:smpte240m
5220 @end example
5221
5222 @section colorspace
5223
5224 Convert colorspace, transfer characteristics or color primaries.
5225
5226 The filter accepts the following options:
5227
5228 @table @option
5229 @item all
5230 Specify all color properties at once.
5231
5232 The accepted values are:
5233 @table @samp
5234 @item bt470m
5235 BT.470M
5236
5237 @item bt470bg
5238 BT.470BG
5239
5240 @item bt601-6-525
5241 BT.601-6 525
5242
5243 @item bt601-6-625
5244 BT.601-6 625
5245
5246 @item bt709
5247 BT.709
5248
5249 @item smpte170m
5250 SMPTE-170M
5251
5252 @item smpte240m
5253 SMPTE-240M
5254
5255 @item bt2020
5256 BT.2020
5257
5258 @end table
5259
5260 @item space
5261 Specify output colorspace.
5262
5263 The accepted values are:
5264 @table @samp
5265 @item bt709
5266 BT.709
5267
5268 @item fcc
5269 FCC
5270
5271 @item bt470bg
5272 BT.470BG or BT.601-6 625
5273
5274 @item smpte170m
5275 SMPTE-170M or BT.601-6 525
5276
5277 @item smpte240m
5278 SMPTE-240M
5279
5280 @item bt2020ncl
5281 BT.2020 with non-constant luminance
5282
5283 @end table
5284
5285 @item trc
5286 Specify output transfer characteristics.
5287
5288 The accepted values are:
5289 @table @samp
5290 @item bt709
5291 BT.709
5292
5293 @item gamma22
5294 Constant gamma of 2.2
5295
5296 @item gamma28
5297 Constant gamma of 2.8
5298
5299 @item smpte170m
5300 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5301
5302 @item smpte240m
5303 SMPTE-240M
5304
5305 @item bt2020-10
5306 BT.2020 for 10-bits content
5307
5308 @item bt2020-12
5309 BT.2020 for 12-bits content
5310
5311 @end table
5312
5313 @item primaries
5314 Specify output color primaries.
5315
5316 The accepted values are:
5317 @table @samp
5318 @item bt709
5319 BT.709
5320
5321 @item bt470m
5322 BT.470M
5323
5324 @item bt470bg
5325 BT.470BG or BT.601-6 625
5326
5327 @item smpte170m
5328 SMPTE-170M or BT.601-6 525
5329
5330 @item smpte240m
5331 SMPTE-240M
5332
5333 @item bt2020
5334 BT.2020
5335
5336 @end table
5337
5338 @item range
5339 Specify output color range.
5340
5341 The accepted values are:
5342 @table @samp
5343 @item mpeg
5344 MPEG (restricted) range
5345
5346 @item jpeg
5347 JPEG (full) range
5348
5349 @end table
5350
5351 @item format
5352 Specify output color format.
5353
5354 The accepted values are:
5355 @table @samp
5356 @item yuv420p
5357 YUV 4:2:0 planar 8-bits
5358
5359 @item yuv420p10
5360 YUV 4:2:0 planar 10-bits
5361
5362 @item yuv420p12
5363 YUV 4:2:0 planar 12-bits
5364
5365 @item yuv422p
5366 YUV 4:2:2 planar 8-bits
5367
5368 @item yuv422p10
5369 YUV 4:2:2 planar 10-bits
5370
5371 @item yuv422p12
5372 YUV 4:2:2 planar 12-bits
5373
5374 @item yuv444p
5375 YUV 4:4:4 planar 8-bits
5376
5377 @item yuv444p10
5378 YUV 4:4:4 planar 10-bits
5379
5380 @item yuv444p12
5381 YUV 4:4:4 planar 12-bits
5382
5383 @end table
5384
5385 @item fast
5386 Do a fast conversion, which skips gamma/primary correction. This will take
5387 significantly less CPU, but will be mathematically incorrect. To get output
5388 compatible with that produced by the colormatrix filter, use fast=1.
5389
5390 @item dither
5391 Specify dithering mode.
5392
5393 The accepted values are:
5394 @table @samp
5395 @item none
5396 No dithering
5397
5398 @item fsb
5399 Floyd-Steinberg dithering
5400 @end table
5401
5402 @item wpadapt
5403 Whitepoint adaptation mode.
5404
5405 The accepted values are:
5406 @table @samp
5407 @item bradford
5408 Bradford whitepoint adaptation
5409
5410 @item vonkries
5411 von Kries whitepoint adaptation
5412
5413 @item identity
5414 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5415 @end table
5416
5417 @end table
5418
5419 The filter converts the transfer characteristics, color space and color
5420 primaries to the specified user values. The output value, if not specified,
5421 is set to a default value based on the "all" property. If that property is
5422 also not specified, the filter will log an error. The output color range and
5423 format default to the same value as the input color range and format. The
5424 input transfer characteristics, color space, color primaries and color range
5425 should be set on the input data. If any of these are missing, the filter will
5426 log an error and no conversion will take place.
5427
5428 For example to convert the input to SMPTE-240M, use the command:
5429 @example
5430 colorspace=smpte240m
5431 @end example
5432
5433 @section convolution
5434
5435 Apply convolution 3x3 or 5x5 filter.
5436
5437 The filter accepts the following options:
5438
5439 @table @option
5440 @item 0m
5441 @item 1m
5442 @item 2m
5443 @item 3m
5444 Set matrix for each plane.
5445 Matrix is sequence of 9 or 25 signed integers.
5446
5447 @item 0rdiv
5448 @item 1rdiv
5449 @item 2rdiv
5450 @item 3rdiv
5451 Set multiplier for calculated value for each plane.
5452
5453 @item 0bias
5454 @item 1bias
5455 @item 2bias
5456 @item 3bias
5457 Set bias for each plane. This value is added to the result of the multiplication.
5458 Useful for making the overall image brighter or darker. Default is 0.0.
5459 @end table
5460
5461 @subsection Examples
5462
5463 @itemize
5464 @item
5465 Apply sharpen:
5466 @example
5467 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"
5468 @end example
5469
5470 @item
5471 Apply blur:
5472 @example
5473 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"
5474 @end example
5475
5476 @item
5477 Apply edge enhance:
5478 @example
5479 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"
5480 @end example
5481
5482 @item
5483 Apply edge detect:
5484 @example
5485 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"
5486 @end example
5487
5488 @item
5489 Apply emboss:
5490 @example
5491 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"
5492 @end example
5493 @end itemize
5494
5495 @section copy
5496
5497 Copy the input source unchanged to the output. This is mainly useful for
5498 testing purposes.
5499
5500 @anchor{coreimage}
5501 @section coreimage
5502 Video filtering on GPU using Apple's CoreImage API on OSX.
5503
5504 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5505 processed by video hardware. However, software-based OpenGL implementations
5506 exist which means there is no guarantee for hardware processing. It depends on
5507 the respective OSX.
5508
5509 There are many filters and image generators provided by Apple that come with a
5510 large variety of options. The filter has to be referenced by its name along
5511 with its options.
5512
5513 The coreimage filter accepts the following options:
5514 @table @option
5515 @item list_filters
5516 List all available filters and generators along with all their respective
5517 options as well as possible minimum and maximum values along with the default
5518 values.
5519 @example
5520 list_filters=true
5521 @end example
5522
5523 @item filter
5524 Specify all filters by their respective name and options.
5525 Use @var{list_filters} to determine all valid filter names and options.
5526 Numerical options are specified by a float value and are automatically clamped
5527 to their respective value range.  Vector and color options have to be specified
5528 by a list of space separated float values. Character escaping has to be done.
5529 A special option name @code{default} is available to use default options for a
5530 filter.
5531
5532 It is required to specify either @code{default} or at least one of the filter options.
5533 All omitted options are used with their default values.
5534 The syntax of the filter string is as follows:
5535 @example
5536 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5537 @end example
5538
5539 @item output_rect
5540 Specify a rectangle where the output of the filter chain is copied into the
5541 input image. It is given by a list of space separated float values:
5542 @example
5543 output_rect=x\ y\ width\ height
5544 @end example
5545 If not given, the output rectangle equals the dimensions of the input image.
5546 The output rectangle is automatically cropped at the borders of the input
5547 image. Negative values are valid for each component.
5548 @example
5549 output_rect=25\ 25\ 100\ 100
5550 @end example
5551 @end table
5552
5553 Several filters can be chained for successive processing without GPU-HOST
5554 transfers allowing for fast processing of complex filter chains.
5555 Currently, only filters with zero (generators) or exactly one (filters) input
5556 image and one output image are supported. Also, transition filters are not yet
5557 usable as intended.
5558
5559 Some filters generate output images with additional padding depending on the
5560 respective filter kernel. The padding is automatically removed to ensure the
5561 filter output has the same size as the input image.
5562
5563 For image generators, the size of the output image is determined by the
5564 previous output image of the filter chain or the input image of the whole
5565 filterchain, respectively. The generators do not use the pixel information of
5566 this image to generate their output. However, the generated output is
5567 blended onto this image, resulting in partial or complete coverage of the
5568 output image.
5569
5570 The @ref{coreimagesrc} video source can be used for generating input images
5571 which are directly fed into the filter chain. By using it, providing input
5572 images by another video source or an input video is not required.
5573
5574 @subsection Examples
5575
5576 @itemize
5577
5578 @item
5579 List all filters available:
5580 @example
5581 coreimage=list_filters=true
5582 @end example
5583
5584 @item
5585 Use the CIBoxBlur filter with default options to blur an image:
5586 @example
5587 coreimage=filter=CIBoxBlur@@default
5588 @end example
5589
5590 @item
5591 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5592 its center at 100x100 and a radius of 50 pixels:
5593 @example
5594 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5595 @end example
5596
5597 @item
5598 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5599 given as complete and escaped command-line for Apple's standard bash shell:
5600 @example
5601 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5602 @end example
5603 @end itemize
5604
5605 @section crop
5606
5607 Crop the input video to given dimensions.
5608
5609 It accepts the following parameters:
5610
5611 @table @option
5612 @item w, out_w
5613 The width of the output video. It defaults to @code{iw}.
5614 This expression is evaluated only once during the filter
5615 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5616
5617 @item h, out_h
5618 The height of the output video. It defaults to @code{ih}.
5619 This expression is evaluated only once during the filter
5620 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5621
5622 @item x
5623 The horizontal position, in the input video, of the left edge of the output
5624 video. It defaults to @code{(in_w-out_w)/2}.
5625 This expression is evaluated per-frame.
5626
5627 @item y
5628 The vertical position, in the input video, of the top edge of the output video.
5629 It defaults to @code{(in_h-out_h)/2}.
5630 This expression is evaluated per-frame.
5631
5632 @item keep_aspect
5633 If set to 1 will force the output display aspect ratio
5634 to be the same of the input, by changing the output sample aspect
5635 ratio. It defaults to 0.
5636 @end table
5637
5638 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5639 expressions containing the following constants:
5640
5641 @table @option
5642 @item x
5643 @item y
5644 The computed values for @var{x} and @var{y}. They are evaluated for
5645 each new frame.
5646
5647 @item in_w
5648 @item in_h
5649 The input width and height.
5650
5651 @item iw
5652 @item ih
5653 These are the same as @var{in_w} and @var{in_h}.
5654
5655 @item out_w
5656 @item out_h
5657 The output (cropped) width and height.
5658
5659 @item ow
5660 @item oh
5661 These are the same as @var{out_w} and @var{out_h}.
5662
5663 @item a
5664 same as @var{iw} / @var{ih}
5665
5666 @item sar
5667 input sample aspect ratio
5668
5669 @item dar
5670 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5671
5672 @item hsub
5673 @item vsub
5674 horizontal and vertical chroma subsample values. For example for the
5675 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5676
5677 @item n
5678 The number of the input frame, starting from 0.
5679
5680 @item pos
5681 the position in the file of the input frame, NAN if unknown
5682
5683 @item t
5684 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5685
5686 @end table
5687
5688 The expression for @var{out_w} may depend on the value of @var{out_h},
5689 and the expression for @var{out_h} may depend on @var{out_w}, but they
5690 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5691 evaluated after @var{out_w} and @var{out_h}.
5692
5693 The @var{x} and @var{y} parameters specify the expressions for the
5694 position of the top-left corner of the output (non-cropped) area. They
5695 are evaluated for each frame. If the evaluated value is not valid, it
5696 is approximated to the nearest valid value.
5697
5698 The expression for @var{x} may depend on @var{y}, and the expression
5699 for @var{y} may depend on @var{x}.
5700
5701 @subsection Examples
5702
5703 @itemize
5704 @item
5705 Crop area with size 100x100 at position (12,34).
5706 @example
5707 crop=100:100:12:34
5708 @end example
5709
5710 Using named options, the example above becomes:
5711 @example
5712 crop=w=100:h=100:x=12:y=34
5713 @end example
5714
5715 @item
5716 Crop the central input area with size 100x100:
5717 @example
5718 crop=100:100
5719 @end example
5720
5721 @item
5722 Crop the central input area with size 2/3 of the input video:
5723 @example
5724 crop=2/3*in_w:2/3*in_h
5725 @end example
5726
5727 @item
5728 Crop the input video central square:
5729 @example
5730 crop=out_w=in_h
5731 crop=in_h
5732 @end example
5733
5734 @item
5735 Delimit the rectangle with the top-left corner placed at position
5736 100:100 and the right-bottom corner corresponding to the right-bottom
5737 corner of the input image.
5738 @example
5739 crop=in_w-100:in_h-100:100:100
5740 @end example
5741
5742 @item
5743 Crop 10 pixels from the left and right borders, and 20 pixels from
5744 the top and bottom borders
5745 @example
5746 crop=in_w-2*10:in_h-2*20
5747 @end example
5748
5749 @item
5750 Keep only the bottom right quarter of the input image:
5751 @example
5752 crop=in_w/2:in_h/2:in_w/2:in_h/2
5753 @end example
5754
5755 @item
5756 Crop height for getting Greek harmony:
5757 @example
5758 crop=in_w:1/PHI*in_w
5759 @end example
5760
5761 @item
5762 Apply trembling effect:
5763 @example
5764 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)
5765 @end example
5766
5767 @item
5768 Apply erratic camera effect depending on timestamp:
5769 @example
5770 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)"
5771 @end example
5772
5773 @item
5774 Set x depending on the value of y:
5775 @example
5776 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5777 @end example
5778 @end itemize
5779
5780 @subsection Commands
5781
5782 This filter supports the following commands:
5783 @table @option
5784 @item w, out_w
5785 @item h, out_h
5786 @item x
5787 @item y
5788 Set width/height of the output video and the horizontal/vertical position
5789 in the input video.
5790 The command accepts the same syntax of the corresponding option.
5791
5792 If the specified expression is not valid, it is kept at its current
5793 value.
5794 @end table
5795
5796 @section cropdetect
5797
5798 Auto-detect the crop size.
5799
5800 It calculates the necessary cropping parameters and prints the
5801 recommended parameters via the logging system. The detected dimensions
5802 correspond to the non-black area of the input video.
5803
5804 It accepts the following parameters:
5805
5806 @table @option
5807
5808 @item limit
5809 Set higher black value threshold, which can be optionally specified
5810 from nothing (0) to everything (255 for 8-bit based formats). An intensity
5811 value greater to the set value is considered non-black. It defaults to 24.
5812 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5813 on the bitdepth of the pixel format.
5814
5815 @item round
5816 The value which the width/height should be divisible by. It defaults to
5817 16. The offset is automatically adjusted to center the video. Use 2 to
5818 get only even dimensions (needed for 4:2:2 video). 16 is best when
5819 encoding to most video codecs.
5820
5821 @item reset_count, reset
5822 Set the counter that determines after how many frames cropdetect will
5823 reset the previously detected largest video area and start over to
5824 detect the current optimal crop area. Default value is 0.
5825
5826 This can be useful when channel logos distort the video area. 0
5827 indicates 'never reset', and returns the largest area encountered during
5828 playback.
5829 @end table
5830
5831 @anchor{curves}
5832 @section curves
5833
5834 Apply color adjustments using curves.
5835
5836 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
5837 component (red, green and blue) has its values defined by @var{N} key points
5838 tied from each other using a smooth curve. The x-axis represents the pixel
5839 values from the input frame, and the y-axis the new pixel values to be set for
5840 the output frame.
5841
5842 By default, a component curve is defined by the two points @var{(0;0)} and
5843 @var{(1;1)}. This creates a straight line where each original pixel value is
5844 "adjusted" to its own value, which means no change to the image.
5845
5846 The filter allows you to redefine these two points and add some more. A new
5847 curve (using a natural cubic spline interpolation) will be define to pass
5848 smoothly through all these new coordinates. The new defined points needs to be
5849 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
5850 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
5851 the vector spaces, the values will be clipped accordingly.
5852
5853 The filter accepts the following options:
5854
5855 @table @option
5856 @item preset
5857 Select one of the available color presets. This option can be used in addition
5858 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
5859 options takes priority on the preset values.
5860 Available presets are:
5861 @table @samp
5862 @item none
5863 @item color_negative
5864 @item cross_process
5865 @item darker
5866 @item increase_contrast
5867 @item lighter
5868 @item linear_contrast
5869 @item medium_contrast
5870 @item negative
5871 @item strong_contrast
5872 @item vintage
5873 @end table
5874 Default is @code{none}.
5875 @item master, m
5876 Set the master key points. These points will define a second pass mapping. It
5877 is sometimes called a "luminance" or "value" mapping. It can be used with
5878 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
5879 post-processing LUT.
5880 @item red, r
5881 Set the key points for the red component.
5882 @item green, g
5883 Set the key points for the green component.
5884 @item blue, b
5885 Set the key points for the blue component.
5886 @item all
5887 Set the key points for all components (not including master).
5888 Can be used in addition to the other key points component
5889 options. In this case, the unset component(s) will fallback on this
5890 @option{all} setting.
5891 @item psfile
5892 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
5893 @item plot
5894 Save Gnuplot script of the curves in specified file.
5895 @end table
5896
5897 To avoid some filtergraph syntax conflicts, each key points list need to be
5898 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
5899
5900 @subsection Examples
5901
5902 @itemize
5903 @item
5904 Increase slightly the middle level of blue:
5905 @example
5906 curves=blue='0/0 0.5/0.58 1/1'
5907 @end example
5908
5909 @item
5910 Vintage effect:
5911 @example
5912 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'
5913 @end example
5914 Here we obtain the following coordinates for each components:
5915 @table @var
5916 @item red
5917 @code{(0;0.11) (0.42;0.51) (1;0.95)}
5918 @item green
5919 @code{(0;0) (0.50;0.48) (1;1)}
5920 @item blue
5921 @code{(0;0.22) (0.49;0.44) (1;0.80)}
5922 @end table
5923
5924 @item
5925 The previous example can also be achieved with the associated built-in preset:
5926 @example
5927 curves=preset=vintage
5928 @end example
5929
5930 @item
5931 Or simply:
5932 @example
5933 curves=vintage
5934 @end example
5935
5936 @item
5937 Use a Photoshop preset and redefine the points of the green component:
5938 @example
5939 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
5940 @end example
5941
5942 @item
5943 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
5944 and @command{gnuplot}:
5945 @example
5946 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
5947 gnuplot -p /tmp/curves.plt
5948 @end example
5949 @end itemize
5950
5951 @section datascope
5952
5953 Video data analysis filter.
5954
5955 This filter shows hexadecimal pixel values of part of video.
5956
5957 The filter accepts the following options:
5958
5959 @table @option
5960 @item size, s
5961 Set output video size.
5962
5963 @item x
5964 Set x offset from where to pick pixels.
5965
5966 @item y
5967 Set y offset from where to pick pixels.
5968
5969 @item mode
5970 Set scope mode, can be one of the following:
5971 @table @samp
5972 @item mono
5973 Draw hexadecimal pixel values with white color on black background.
5974
5975 @item color
5976 Draw hexadecimal pixel values with input video pixel color on black
5977 background.
5978
5979 @item color2
5980 Draw hexadecimal pixel values on color background picked from input video,
5981 the text color is picked in such way so its always visible.
5982 @end table
5983
5984 @item axis
5985 Draw rows and columns numbers on left and top of video.
5986 @end table
5987
5988 @section dctdnoiz
5989
5990 Denoise frames using 2D DCT (frequency domain filtering).
5991
5992 This filter is not designed for real time.
5993
5994 The filter accepts the following options:
5995
5996 @table @option
5997 @item sigma, s
5998 Set the noise sigma constant.
5999
6000 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6001 coefficient (absolute value) below this threshold with be dropped.
6002
6003 If you need a more advanced filtering, see @option{expr}.
6004
6005 Default is @code{0}.
6006
6007 @item overlap
6008 Set number overlapping pixels for each block. Since the filter can be slow, you
6009 may want to reduce this value, at the cost of a less effective filter and the
6010 risk of various artefacts.
6011
6012 If the overlapping value doesn't permit processing the whole input width or
6013 height, a warning will be displayed and according borders won't be denoised.
6014
6015 Default value is @var{blocksize}-1, which is the best possible setting.
6016
6017 @item expr, e
6018 Set the coefficient factor expression.
6019
6020 For each coefficient of a DCT block, this expression will be evaluated as a
6021 multiplier value for the coefficient.
6022
6023 If this is option is set, the @option{sigma} option will be ignored.
6024
6025 The absolute value of the coefficient can be accessed through the @var{c}
6026 variable.
6027
6028 @item n
6029 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6030 @var{blocksize}, which is the width and height of the processed blocks.
6031
6032 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6033 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6034 on the speed processing. Also, a larger block size does not necessarily means a
6035 better de-noising.
6036 @end table
6037
6038 @subsection Examples
6039
6040 Apply a denoise with a @option{sigma} of @code{4.5}:
6041 @example
6042 dctdnoiz=4.5
6043 @end example
6044
6045 The same operation can be achieved using the expression system:
6046 @example
6047 dctdnoiz=e='gte(c, 4.5*3)'
6048 @end example
6049
6050 Violent denoise using a block size of @code{16x16}:
6051 @example
6052 dctdnoiz=15:n=4
6053 @end example
6054
6055 @section deband
6056
6057 Remove banding artifacts from input video.
6058 It works by replacing banded pixels with average value of referenced pixels.
6059
6060 The filter accepts the following options:
6061
6062 @table @option
6063 @item 1thr
6064 @item 2thr
6065 @item 3thr
6066 @item 4thr
6067 Set banding detection threshold for each plane. Default is 0.02.
6068 Valid range is 0.00003 to 0.5.
6069 If difference between current pixel and reference pixel is less than threshold,
6070 it will be considered as banded.
6071
6072 @item range, r
6073 Banding detection range in pixels. Default is 16. If positive, random number
6074 in range 0 to set value will be used. If negative, exact absolute value
6075 will be used.
6076 The range defines square of four pixels around current pixel.
6077
6078 @item direction, d
6079 Set direction in radians from which four pixel will be compared. If positive,
6080 random direction from 0 to set direction will be picked. If negative, exact of
6081 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6082 will pick only pixels on same row and -PI/2 will pick only pixels on same
6083 column.
6084
6085 @item blur
6086 If enabled, current pixel is compared with average value of all four
6087 surrounding pixels. The default is enabled. If disabled current pixel is
6088 compared with all four surrounding pixels. The pixel is considered banded
6089 if only all four differences with surrounding pixels are less than threshold.
6090 @end table
6091
6092 @anchor{decimate}
6093 @section decimate
6094
6095 Drop duplicated frames at regular intervals.
6096
6097 The filter accepts the following options:
6098
6099 @table @option
6100 @item cycle
6101 Set the number of frames from which one will be dropped. Setting this to
6102 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6103 Default is @code{5}.
6104
6105 @item dupthresh
6106 Set the threshold for duplicate detection. If the difference metric for a frame
6107 is less than or equal to this value, then it is declared as duplicate. Default
6108 is @code{1.1}
6109
6110 @item scthresh
6111 Set scene change threshold. Default is @code{15}.
6112
6113 @item blockx
6114 @item blocky
6115 Set the size of the x and y-axis blocks used during metric calculations.
6116 Larger blocks give better noise suppression, but also give worse detection of
6117 small movements. Must be a power of two. Default is @code{32}.
6118
6119 @item ppsrc
6120 Mark main input as a pre-processed input and activate clean source input
6121 stream. This allows the input to be pre-processed with various filters to help
6122 the metrics calculation while keeping the frame selection lossless. When set to
6123 @code{1}, the first stream is for the pre-processed input, and the second
6124 stream is the clean source from where the kept frames are chosen. Default is
6125 @code{0}.
6126
6127 @item chroma
6128 Set whether or not chroma is considered in the metric calculations. Default is
6129 @code{1}.
6130 @end table
6131
6132 @section deflate
6133
6134 Apply deflate effect to the video.
6135
6136 This filter replaces the pixel by the local(3x3) average by taking into account
6137 only values lower than the pixel.
6138
6139 It accepts the following options:
6140
6141 @table @option
6142 @item threshold0
6143 @item threshold1
6144 @item threshold2
6145 @item threshold3
6146 Limit the maximum change for each plane, default is 65535.
6147 If 0, plane will remain unchanged.
6148 @end table
6149
6150 @section dejudder
6151
6152 Remove judder produced by partially interlaced telecined content.
6153
6154 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6155 source was partially telecined content then the output of @code{pullup,dejudder}
6156 will have a variable frame rate. May change the recorded frame rate of the
6157 container. Aside from that change, this filter will not affect constant frame
6158 rate video.
6159
6160 The option available in this filter is:
6161 @table @option
6162
6163 @item cycle
6164 Specify the length of the window over which the judder repeats.
6165
6166 Accepts any integer greater than 1. Useful values are:
6167 @table @samp
6168
6169 @item 4
6170 If the original was telecined from 24 to 30 fps (Film to NTSC).
6171
6172 @item 5
6173 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6174
6175 @item 20
6176 If a mixture of the two.
6177 @end table
6178
6179 The default is @samp{4}.
6180 @end table
6181
6182 @section delogo
6183
6184 Suppress a TV station logo by a simple interpolation of the surrounding
6185 pixels. Just set a rectangle covering the logo and watch it disappear
6186 (and sometimes something even uglier appear - your mileage may vary).
6187
6188 It accepts the following parameters:
6189 @table @option
6190
6191 @item x
6192 @item y
6193 Specify the top left corner coordinates of the logo. They must be
6194 specified.
6195
6196 @item w
6197 @item h
6198 Specify the width and height of the logo to clear. They must be
6199 specified.
6200
6201 @item band, t
6202 Specify the thickness of the fuzzy edge of the rectangle (added to
6203 @var{w} and @var{h}). The default value is 1. This option is
6204 deprecated, setting higher values should no longer be necessary and
6205 is not recommended.
6206
6207 @item show
6208 When set to 1, a green rectangle is drawn on the screen to simplify
6209 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6210 The default value is 0.
6211
6212 The rectangle is drawn on the outermost pixels which will be (partly)
6213 replaced with interpolated values. The values of the next pixels
6214 immediately outside this rectangle in each direction will be used to
6215 compute the interpolated pixel values inside the rectangle.
6216
6217 @end table
6218
6219 @subsection Examples
6220
6221 @itemize
6222 @item
6223 Set a rectangle covering the area with top left corner coordinates 0,0
6224 and size 100x77, and a band of size 10:
6225 @example
6226 delogo=x=0:y=0:w=100:h=77:band=10
6227 @end example
6228
6229 @end itemize
6230
6231 @section deshake
6232
6233 Attempt to fix small changes in horizontal and/or vertical shift. This
6234 filter helps remove camera shake from hand-holding a camera, bumping a
6235 tripod, moving on a vehicle, etc.
6236
6237 The filter accepts the following options:
6238
6239 @table @option
6240
6241 @item x
6242 @item y
6243 @item w
6244 @item h
6245 Specify a rectangular area where to limit the search for motion
6246 vectors.
6247 If desired the search for motion vectors can be limited to a
6248 rectangular area of the frame defined by its top left corner, width
6249 and height. These parameters have the same meaning as the drawbox
6250 filter which can be used to visualise the position of the bounding
6251 box.
6252
6253 This is useful when simultaneous movement of subjects within the frame
6254 might be confused for camera motion by the motion vector search.
6255
6256 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6257 then the full frame is used. This allows later options to be set
6258 without specifying the bounding box for the motion vector search.
6259
6260 Default - search the whole frame.
6261
6262 @item rx
6263 @item ry
6264 Specify the maximum extent of movement in x and y directions in the
6265 range 0-64 pixels. Default 16.
6266
6267 @item edge
6268 Specify how to generate pixels to fill blanks at the edge of the
6269 frame. Available values are:
6270 @table @samp
6271 @item blank, 0
6272 Fill zeroes at blank locations
6273 @item original, 1
6274 Original image at blank locations
6275 @item clamp, 2
6276 Extruded edge value at blank locations
6277 @item mirror, 3
6278 Mirrored edge at blank locations
6279 @end table
6280 Default value is @samp{mirror}.
6281
6282 @item blocksize
6283 Specify the blocksize to use for motion search. Range 4-128 pixels,
6284 default 8.
6285
6286 @item contrast
6287 Specify the contrast threshold for blocks. Only blocks with more than
6288 the specified contrast (difference between darkest and lightest
6289 pixels) will be considered. Range 1-255, default 125.
6290
6291 @item search
6292 Specify the search strategy. Available values are:
6293 @table @samp
6294 @item exhaustive, 0
6295 Set exhaustive search
6296 @item less, 1
6297 Set less exhaustive search.
6298 @end table
6299 Default value is @samp{exhaustive}.
6300
6301 @item filename
6302 If set then a detailed log of the motion search is written to the
6303 specified file.
6304
6305 @item opencl
6306 If set to 1, specify using OpenCL capabilities, only available if
6307 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6308
6309 @end table
6310
6311 @section detelecine
6312
6313 Apply an exact inverse of the telecine operation. It requires a predefined
6314 pattern specified using the pattern option which must be the same as that passed
6315 to the telecine filter.
6316
6317 This filter accepts the following options:
6318
6319 @table @option
6320 @item first_field
6321 @table @samp
6322 @item top, t
6323 top field first
6324 @item bottom, b
6325 bottom field first
6326 The default value is @code{top}.
6327 @end table
6328
6329 @item pattern
6330 A string of numbers representing the pulldown pattern you wish to apply.
6331 The default value is @code{23}.
6332
6333 @item start_frame
6334 A number representing position of the first frame with respect to the telecine
6335 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6336 @end table
6337
6338 @section dilation
6339
6340 Apply dilation effect to the video.
6341
6342 This filter replaces the pixel by the local(3x3) maximum.
6343
6344 It accepts the following options:
6345
6346 @table @option
6347 @item threshold0
6348 @item threshold1
6349 @item threshold2
6350 @item threshold3
6351 Limit the maximum change for each plane, default is 65535.
6352 If 0, plane will remain unchanged.
6353
6354 @item coordinates
6355 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6356 pixels are used.
6357
6358 Flags to local 3x3 coordinates maps like this:
6359
6360     1 2 3
6361     4   5
6362     6 7 8
6363 @end table
6364
6365 @section displace
6366
6367 Displace pixels as indicated by second and third input stream.
6368
6369 It takes three input streams and outputs one stream, the first input is the
6370 source, and second and third input are displacement maps.
6371
6372 The second input specifies how much to displace pixels along the
6373 x-axis, while the third input specifies how much to displace pixels
6374 along the y-axis.
6375 If one of displacement map streams terminates, last frame from that
6376 displacement map will be used.
6377
6378 Note that once generated, displacements maps can be reused over and over again.
6379
6380 A description of the accepted options follows.
6381
6382 @table @option
6383 @item edge
6384 Set displace behavior for pixels that are out of range.
6385
6386 Available values are:
6387 @table @samp
6388 @item blank
6389 Missing pixels are replaced by black pixels.
6390
6391 @item smear
6392 Adjacent pixels will spread out to replace missing pixels.
6393
6394 @item wrap
6395 Out of range pixels are wrapped so they point to pixels of other side.
6396 @end table
6397 Default is @samp{smear}.
6398
6399 @end table
6400
6401 @subsection Examples
6402
6403 @itemize
6404 @item
6405 Add ripple effect to rgb input of video size hd720:
6406 @example
6407 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
6408 @end example
6409
6410 @item
6411 Add wave effect to rgb input of video size hd720:
6412 @example
6413 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
6414 @end example
6415 @end itemize
6416
6417 @section drawbox
6418
6419 Draw a colored box on the input image.
6420
6421 It accepts the following parameters:
6422
6423 @table @option
6424 @item x
6425 @item y
6426 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6427
6428 @item width, w
6429 @item height, h
6430 The expressions which specify the width and height of the box; if 0 they are interpreted as
6431 the input width and height. It defaults to 0.
6432
6433 @item color, c
6434 Specify the color of the box to write. For the general syntax of this option,
6435 check the "Color" section in the ffmpeg-utils manual. If the special
6436 value @code{invert} is used, the box edge color is the same as the
6437 video with inverted luma.
6438
6439 @item thickness, t
6440 The expression which sets the thickness of the box edge. Default value is @code{3}.
6441
6442 See below for the list of accepted constants.
6443 @end table
6444
6445 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6446 following constants:
6447
6448 @table @option
6449 @item dar
6450 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6451
6452 @item hsub
6453 @item vsub
6454 horizontal and vertical chroma subsample values. For example for the
6455 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6456
6457 @item in_h, ih
6458 @item in_w, iw
6459 The input width and height.
6460
6461 @item sar
6462 The input sample aspect ratio.
6463
6464 @item x
6465 @item y
6466 The x and y offset coordinates where the box is drawn.
6467
6468 @item w
6469 @item h
6470 The width and height of the drawn box.
6471
6472 @item t
6473 The thickness of the drawn box.
6474
6475 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6476 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6477
6478 @end table
6479
6480 @subsection Examples
6481
6482 @itemize
6483 @item
6484 Draw a black box around the edge of the input image:
6485 @example
6486 drawbox
6487 @end example
6488
6489 @item
6490 Draw a box with color red and an opacity of 50%:
6491 @example
6492 drawbox=10:20:200:60:red@@0.5
6493 @end example
6494
6495 The previous example can be specified as:
6496 @example
6497 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6498 @end example
6499
6500 @item
6501 Fill the box with pink color:
6502 @example
6503 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6504 @end example
6505
6506 @item
6507 Draw a 2-pixel red 2.40:1 mask:
6508 @example
6509 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
6510 @end example
6511 @end itemize
6512
6513 @section drawgrid
6514
6515 Draw a grid on the input image.
6516
6517 It accepts the following parameters:
6518
6519 @table @option
6520 @item x
6521 @item y
6522 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6523
6524 @item width, w
6525 @item height, h
6526 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6527 input width and height, respectively, minus @code{thickness}, so image gets
6528 framed. Default to 0.
6529
6530 @item color, c
6531 Specify the color of the grid. For the general syntax of this option,
6532 check the "Color" section in the ffmpeg-utils manual. If the special
6533 value @code{invert} is used, the grid color is the same as the
6534 video with inverted luma.
6535
6536 @item thickness, t
6537 The expression which sets the thickness of the grid line. Default value is @code{1}.
6538
6539 See below for the list of accepted constants.
6540 @end table
6541
6542 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6543 following constants:
6544
6545 @table @option
6546 @item dar
6547 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6548
6549 @item hsub
6550 @item vsub
6551 horizontal and vertical chroma subsample values. For example for the
6552 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6553
6554 @item in_h, ih
6555 @item in_w, iw
6556 The input grid cell width and height.
6557
6558 @item sar
6559 The input sample aspect ratio.
6560
6561 @item x
6562 @item y
6563 The x and y coordinates of some point of grid intersection (meant to configure offset).
6564
6565 @item w
6566 @item h
6567 The width and height of the drawn cell.
6568
6569 @item t
6570 The thickness of the drawn cell.
6571
6572 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6573 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6574
6575 @end table
6576
6577 @subsection Examples
6578
6579 @itemize
6580 @item
6581 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6582 @example
6583 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6584 @end example
6585
6586 @item
6587 Draw a white 3x3 grid with an opacity of 50%:
6588 @example
6589 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6590 @end example
6591 @end itemize
6592
6593 @anchor{drawtext}
6594 @section drawtext
6595
6596 Draw a text string or text from a specified file on top of a video, using the
6597 libfreetype library.
6598
6599 To enable compilation of this filter, you need to configure FFmpeg with
6600 @code{--enable-libfreetype}.
6601 To enable default font fallback and the @var{font} option you need to
6602 configure FFmpeg with @code{--enable-libfontconfig}.
6603 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6604 @code{--enable-libfribidi}.
6605
6606 @subsection Syntax
6607
6608 It accepts the following parameters:
6609
6610 @table @option
6611
6612 @item box
6613 Used to draw a box around text using the background color.
6614 The value must be either 1 (enable) or 0 (disable).
6615 The default value of @var{box} is 0.
6616
6617 @item boxborderw
6618 Set the width of the border to be drawn around the box using @var{boxcolor}.
6619 The default value of @var{boxborderw} is 0.
6620
6621 @item boxcolor
6622 The color to be used for drawing box around text. For the syntax of this
6623 option, check the "Color" section in the ffmpeg-utils manual.
6624
6625 The default value of @var{boxcolor} is "white".
6626
6627 @item borderw
6628 Set the width of the border to be drawn around the text using @var{bordercolor}.
6629 The default value of @var{borderw} is 0.
6630
6631 @item bordercolor
6632 Set the color to be used for drawing border around text. For the syntax of this
6633 option, check the "Color" section in the ffmpeg-utils manual.
6634
6635 The default value of @var{bordercolor} is "black".
6636
6637 @item expansion
6638 Select how the @var{text} is expanded. Can be either @code{none},
6639 @code{strftime} (deprecated) or
6640 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6641 below for details.
6642
6643 @item fix_bounds
6644 If true, check and fix text coords to avoid clipping.
6645
6646 @item fontcolor
6647 The color to be used for drawing fonts. For the syntax of this option, check
6648 the "Color" section in the ffmpeg-utils manual.
6649
6650 The default value of @var{fontcolor} is "black".
6651
6652 @item fontcolor_expr
6653 String which is expanded the same way as @var{text} to obtain dynamic
6654 @var{fontcolor} value. By default this option has empty value and is not
6655 processed. When this option is set, it overrides @var{fontcolor} option.
6656
6657 @item font
6658 The font family to be used for drawing text. By default Sans.
6659
6660 @item fontfile
6661 The font file to be used for drawing text. The path must be included.
6662 This parameter is mandatory if the fontconfig support is disabled.
6663
6664 @item draw
6665 This option does not exist, please see the timeline system
6666
6667 @item alpha
6668 Draw the text applying alpha blending. The value can
6669 be either a number between 0.0 and 1.0
6670 The expression accepts the same variables @var{x, y} do.
6671 The default value is 1.
6672 Please see fontcolor_expr
6673
6674 @item fontsize
6675 The font size to be used for drawing text.
6676 The default value of @var{fontsize} is 16.
6677
6678 @item text_shaping
6679 If set to 1, attempt to shape the text (for example, reverse the order of
6680 right-to-left text and join Arabic characters) before drawing it.
6681 Otherwise, just draw the text exactly as given.
6682 By default 1 (if supported).
6683
6684 @item ft_load_flags
6685 The flags to be used for loading the fonts.
6686
6687 The flags map the corresponding flags supported by libfreetype, and are
6688 a combination of the following values:
6689 @table @var
6690 @item default
6691 @item no_scale
6692 @item no_hinting
6693 @item render
6694 @item no_bitmap
6695 @item vertical_layout
6696 @item force_autohint
6697 @item crop_bitmap
6698 @item pedantic
6699 @item ignore_global_advance_width
6700 @item no_recurse
6701 @item ignore_transform
6702 @item monochrome
6703 @item linear_design
6704 @item no_autohint
6705 @end table
6706
6707 Default value is "default".
6708
6709 For more information consult the documentation for the FT_LOAD_*
6710 libfreetype flags.
6711
6712 @item shadowcolor
6713 The color to be used for drawing a shadow behind the drawn text. For the
6714 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6715
6716 The default value of @var{shadowcolor} is "black".
6717
6718 @item shadowx
6719 @item shadowy
6720 The x and y offsets for the text shadow position with respect to the
6721 position of the text. They can be either positive or negative
6722 values. The default value for both is "0".
6723
6724 @item start_number
6725 The starting frame number for the n/frame_num variable. The default value
6726 is "0".
6727
6728 @item tabsize
6729 The size in number of spaces to use for rendering the tab.
6730 Default value is 4.
6731
6732 @item timecode
6733 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6734 format. It can be used with or without text parameter. @var{timecode_rate}
6735 option must be specified.
6736
6737 @item timecode_rate, rate, r
6738 Set the timecode frame rate (timecode only).
6739
6740 @item text
6741 The text string to be drawn. The text must be a sequence of UTF-8
6742 encoded characters.
6743 This parameter is mandatory if no file is specified with the parameter
6744 @var{textfile}.
6745
6746 @item textfile
6747 A text file containing text to be drawn. The text must be a sequence
6748 of UTF-8 encoded characters.
6749
6750 This parameter is mandatory if no text string is specified with the
6751 parameter @var{text}.
6752
6753 If both @var{text} and @var{textfile} are specified, an error is thrown.
6754
6755 @item reload
6756 If set to 1, the @var{textfile} will be reloaded before each frame.
6757 Be sure to update it atomically, or it may be read partially, or even fail.
6758
6759 @item x
6760 @item y
6761 The expressions which specify the offsets where text will be drawn
6762 within the video frame. They are relative to the top/left border of the
6763 output image.
6764
6765 The default value of @var{x} and @var{y} is "0".
6766
6767 See below for the list of accepted constants and functions.
6768 @end table
6769
6770 The parameters for @var{x} and @var{y} are expressions containing the
6771 following constants and functions:
6772
6773 @table @option
6774 @item dar
6775 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
6776
6777 @item hsub
6778 @item vsub
6779 horizontal and vertical chroma subsample values. For example for the
6780 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6781
6782 @item line_h, lh
6783 the height of each text line
6784
6785 @item main_h, h, H
6786 the input height
6787
6788 @item main_w, w, W
6789 the input width
6790
6791 @item max_glyph_a, ascent
6792 the maximum distance from the baseline to the highest/upper grid
6793 coordinate used to place a glyph outline point, for all the rendered
6794 glyphs.
6795 It is a positive value, due to the grid's orientation with the Y axis
6796 upwards.
6797
6798 @item max_glyph_d, descent
6799 the maximum distance from the baseline to the lowest grid coordinate
6800 used to place a glyph outline point, for all the rendered glyphs.
6801 This is a negative value, due to the grid's orientation, with the Y axis
6802 upwards.
6803
6804 @item max_glyph_h
6805 maximum glyph height, that is the maximum height for all the glyphs
6806 contained in the rendered text, it is equivalent to @var{ascent} -
6807 @var{descent}.
6808
6809 @item max_glyph_w
6810 maximum glyph width, that is the maximum width for all the glyphs
6811 contained in the rendered text
6812
6813 @item n
6814 the number of input frame, starting from 0
6815
6816 @item rand(min, max)
6817 return a random number included between @var{min} and @var{max}
6818
6819 @item sar
6820 The input sample aspect ratio.
6821
6822 @item t
6823 timestamp expressed in seconds, NAN if the input timestamp is unknown
6824
6825 @item text_h, th
6826 the height of the rendered text
6827
6828 @item text_w, tw
6829 the width of the rendered text
6830
6831 @item x
6832 @item y
6833 the x and y offset coordinates where the text is drawn.
6834
6835 These parameters allow the @var{x} and @var{y} expressions to refer
6836 each other, so you can for example specify @code{y=x/dar}.
6837 @end table
6838
6839 @anchor{drawtext_expansion}
6840 @subsection Text expansion
6841
6842 If @option{expansion} is set to @code{strftime},
6843 the filter recognizes strftime() sequences in the provided text and
6844 expands them accordingly. Check the documentation of strftime(). This
6845 feature is deprecated.
6846
6847 If @option{expansion} is set to @code{none}, the text is printed verbatim.
6848
6849 If @option{expansion} is set to @code{normal} (which is the default),
6850 the following expansion mechanism is used.
6851
6852 The backslash character @samp{\}, followed by any character, always expands to
6853 the second character.
6854
6855 Sequence of the form @code{%@{...@}} are expanded. The text between the
6856 braces is a function name, possibly followed by arguments separated by ':'.
6857 If the arguments contain special characters or delimiters (':' or '@}'),
6858 they should be escaped.
6859
6860 Note that they probably must also be escaped as the value for the
6861 @option{text} option in the filter argument string and as the filter
6862 argument in the filtergraph description, and possibly also for the shell,
6863 that makes up to four levels of escaping; using a text file avoids these
6864 problems.
6865
6866 The following functions are available:
6867
6868 @table @command
6869
6870 @item expr, e
6871 The expression evaluation result.
6872
6873 It must take one argument specifying the expression to be evaluated,
6874 which accepts the same constants and functions as the @var{x} and
6875 @var{y} values. Note that not all constants should be used, for
6876 example the text size is not known when evaluating the expression, so
6877 the constants @var{text_w} and @var{text_h} will have an undefined
6878 value.
6879
6880 @item expr_int_format, eif
6881 Evaluate the expression's value and output as formatted integer.
6882
6883 The first argument is the expression to be evaluated, just as for the @var{expr} function.
6884 The second argument specifies the output format. Allowed values are @samp{x},
6885 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
6886 @code{printf} function.
6887 The third parameter is optional and sets the number of positions taken by the output.
6888 It can be used to add padding with zeros from the left.
6889
6890 @item gmtime
6891 The time at which the filter is running, expressed in UTC.
6892 It can accept an argument: a strftime() format string.
6893
6894 @item localtime
6895 The time at which the filter is running, expressed in the local time zone.
6896 It can accept an argument: a strftime() format string.
6897
6898 @item metadata
6899 Frame metadata. Takes one or two arguments.
6900
6901 The first argument is mandatory and specifies the metadata key.
6902
6903 The second argument is optional and specifies a default value, used when the
6904 metadata key is not found or empty.
6905
6906 @item n, frame_num
6907 The frame number, starting from 0.
6908
6909 @item pict_type
6910 A 1 character description of the current picture type.
6911
6912 @item pts
6913 The timestamp of the current frame.
6914 It can take up to three arguments.
6915
6916 The first argument is the format of the timestamp; it defaults to @code{flt}
6917 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
6918 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
6919 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
6920 @code{localtime} stands for the timestamp of the frame formatted as
6921 local time zone time.
6922
6923 The second argument is an offset added to the timestamp.
6924
6925 If the format is set to @code{localtime} or @code{gmtime},
6926 a third argument may be supplied: a strftime() format string.
6927 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
6928 @end table
6929
6930 @subsection Examples
6931
6932 @itemize
6933 @item
6934 Draw "Test Text" with font FreeSerif, using the default values for the
6935 optional parameters.
6936
6937 @example
6938 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
6939 @end example
6940
6941 @item
6942 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
6943 and y=50 (counting from the top-left corner of the screen), text is
6944 yellow with a red box around it. Both the text and the box have an
6945 opacity of 20%.
6946
6947 @example
6948 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
6949           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
6950 @end example
6951
6952 Note that the double quotes are not necessary if spaces are not used
6953 within the parameter list.
6954
6955 @item
6956 Show the text at the center of the video frame:
6957 @example
6958 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
6959 @end example
6960
6961 @item
6962 Show the text at a random position, switching to a new position every 30 seconds:
6963 @example
6964 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)"
6965 @end example
6966
6967 @item
6968 Show a text line sliding from right to left in the last row of the video
6969 frame. The file @file{LONG_LINE} is assumed to contain a single line
6970 with no newlines.
6971 @example
6972 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
6973 @end example
6974
6975 @item
6976 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
6977 @example
6978 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
6979 @end example
6980
6981 @item
6982 Draw a single green letter "g", at the center of the input video.
6983 The glyph baseline is placed at half screen height.
6984 @example
6985 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
6986 @end example
6987
6988 @item
6989 Show text for 1 second every 3 seconds:
6990 @example
6991 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
6992 @end example
6993
6994 @item
6995 Use fontconfig to set the font. Note that the colons need to be escaped.
6996 @example
6997 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
6998 @end example
6999
7000 @item
7001 Print the date of a real-time encoding (see strftime(3)):
7002 @example
7003 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7004 @end example
7005
7006 @item
7007 Show text fading in and out (appearing/disappearing):
7008 @example
7009 #!/bin/sh
7010 DS=1.0 # display start
7011 DE=10.0 # display end
7012 FID=1.5 # fade in duration
7013 FOD=5 # fade out duration
7014 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 @}"
7015 @end example
7016
7017 @end itemize
7018
7019 For more information about libfreetype, check:
7020 @url{http://www.freetype.org/}.
7021
7022 For more information about fontconfig, check:
7023 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7024
7025 For more information about libfribidi, check:
7026 @url{http://fribidi.org/}.
7027
7028 @section edgedetect
7029
7030 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7031
7032 The filter accepts the following options:
7033
7034 @table @option
7035 @item low
7036 @item high
7037 Set low and high threshold values used by the Canny thresholding
7038 algorithm.
7039
7040 The high threshold selects the "strong" edge pixels, which are then
7041 connected through 8-connectivity with the "weak" edge pixels selected
7042 by the low threshold.
7043
7044 @var{low} and @var{high} threshold values must be chosen in the range
7045 [0,1], and @var{low} should be lesser or equal to @var{high}.
7046
7047 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7048 is @code{50/255}.
7049
7050 @item mode
7051 Define the drawing mode.
7052
7053 @table @samp
7054 @item wires
7055 Draw white/gray wires on black background.
7056
7057 @item colormix
7058 Mix the colors to create a paint/cartoon effect.
7059 @end table
7060
7061 Default value is @var{wires}.
7062 @end table
7063
7064 @subsection Examples
7065
7066 @itemize
7067 @item
7068 Standard edge detection with custom values for the hysteresis thresholding:
7069 @example
7070 edgedetect=low=0.1:high=0.4
7071 @end example
7072
7073 @item
7074 Painting effect without thresholding:
7075 @example
7076 edgedetect=mode=colormix:high=0
7077 @end example
7078 @end itemize
7079
7080 @section eq
7081 Set brightness, contrast, saturation and approximate gamma adjustment.
7082
7083 The filter accepts the following options:
7084
7085 @table @option
7086 @item contrast
7087 Set the contrast expression. The value must be a float value in range
7088 @code{-2.0} to @code{2.0}. The default value is "1".
7089
7090 @item brightness
7091 Set the brightness expression. The value must be a float value in
7092 range @code{-1.0} to @code{1.0}. The default value is "0".
7093
7094 @item saturation
7095 Set the saturation expression. The value must be a float in
7096 range @code{0.0} to @code{3.0}. The default value is "1".
7097
7098 @item gamma
7099 Set the gamma expression. The value must be a float in range
7100 @code{0.1} to @code{10.0}.  The default value is "1".
7101
7102 @item gamma_r
7103 Set the gamma expression for red. The value must be a float in
7104 range @code{0.1} to @code{10.0}. The default value is "1".
7105
7106 @item gamma_g
7107 Set the gamma expression for green. The value must be a float in range
7108 @code{0.1} to @code{10.0}. The default value is "1".
7109
7110 @item gamma_b
7111 Set the gamma expression for blue. The value must be a float in range
7112 @code{0.1} to @code{10.0}. The default value is "1".
7113
7114 @item gamma_weight
7115 Set the gamma weight expression. It can be used to reduce the effect
7116 of a high gamma value on bright image areas, e.g. keep them from
7117 getting overamplified and just plain white. The value must be a float
7118 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7119 gamma correction all the way down while @code{1.0} leaves it at its
7120 full strength. Default is "1".
7121
7122 @item eval
7123 Set when the expressions for brightness, contrast, saturation and
7124 gamma expressions are evaluated.
7125
7126 It accepts the following values:
7127 @table @samp
7128 @item init
7129 only evaluate expressions once during the filter initialization or
7130 when a command is processed
7131
7132 @item frame
7133 evaluate expressions for each incoming frame
7134 @end table
7135
7136 Default value is @samp{init}.
7137 @end table
7138
7139 The expressions accept the following parameters:
7140 @table @option
7141 @item n
7142 frame count of the input frame starting from 0
7143
7144 @item pos
7145 byte position of the corresponding packet in the input file, NAN if
7146 unspecified
7147
7148 @item r
7149 frame rate of the input video, NAN if the input frame rate is unknown
7150
7151 @item t
7152 timestamp expressed in seconds, NAN if the input timestamp is unknown
7153 @end table
7154
7155 @subsection Commands
7156 The filter supports the following commands:
7157
7158 @table @option
7159 @item contrast
7160 Set the contrast expression.
7161
7162 @item brightness
7163 Set the brightness expression.
7164
7165 @item saturation
7166 Set the saturation expression.
7167
7168 @item gamma
7169 Set the gamma expression.
7170
7171 @item gamma_r
7172 Set the gamma_r expression.
7173
7174 @item gamma_g
7175 Set gamma_g expression.
7176
7177 @item gamma_b
7178 Set gamma_b expression.
7179
7180 @item gamma_weight
7181 Set gamma_weight expression.
7182
7183 The command accepts the same syntax of the corresponding option.
7184
7185 If the specified expression is not valid, it is kept at its current
7186 value.
7187
7188 @end table
7189
7190 @section erosion
7191
7192 Apply erosion effect to the video.
7193
7194 This filter replaces the pixel by the local(3x3) minimum.
7195
7196 It accepts the following options:
7197
7198 @table @option
7199 @item threshold0
7200 @item threshold1
7201 @item threshold2
7202 @item threshold3
7203 Limit the maximum change for each plane, default is 65535.
7204 If 0, plane will remain unchanged.
7205
7206 @item coordinates
7207 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7208 pixels are used.
7209
7210 Flags to local 3x3 coordinates maps like this:
7211
7212     1 2 3
7213     4   5
7214     6 7 8
7215 @end table
7216
7217 @section extractplanes
7218
7219 Extract color channel components from input video stream into
7220 separate grayscale video streams.
7221
7222 The filter accepts the following option:
7223
7224 @table @option
7225 @item planes
7226 Set plane(s) to extract.
7227
7228 Available values for planes are:
7229 @table @samp
7230 @item y
7231 @item u
7232 @item v
7233 @item a
7234 @item r
7235 @item g
7236 @item b
7237 @end table
7238
7239 Choosing planes not available in the input will result in an error.
7240 That means you cannot select @code{r}, @code{g}, @code{b} planes
7241 with @code{y}, @code{u}, @code{v} planes at same time.
7242 @end table
7243
7244 @subsection Examples
7245
7246 @itemize
7247 @item
7248 Extract luma, u and v color channel component from input video frame
7249 into 3 grayscale outputs:
7250 @example
7251 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
7252 @end example
7253 @end itemize
7254
7255 @section elbg
7256
7257 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7258
7259 For each input image, the filter will compute the optimal mapping from
7260 the input to the output given the codebook length, that is the number
7261 of distinct output colors.
7262
7263 This filter accepts the following options.
7264
7265 @table @option
7266 @item codebook_length, l
7267 Set codebook length. The value must be a positive integer, and
7268 represents the number of distinct output colors. Default value is 256.
7269
7270 @item nb_steps, n
7271 Set the maximum number of iterations to apply for computing the optimal
7272 mapping. The higher the value the better the result and the higher the
7273 computation time. Default value is 1.
7274
7275 @item seed, s
7276 Set a random seed, must be an integer included between 0 and
7277 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7278 will try to use a good random seed on a best effort basis.
7279
7280 @item pal8
7281 Set pal8 output pixel format. This option does not work with codebook
7282 length greater than 256.
7283 @end table
7284
7285 @section fade
7286
7287 Apply a fade-in/out effect to the input video.
7288
7289 It accepts the following parameters:
7290
7291 @table @option
7292 @item type, t
7293 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7294 effect.
7295 Default is @code{in}.
7296
7297 @item start_frame, s
7298 Specify the number of the frame to start applying the fade
7299 effect at. Default is 0.
7300
7301 @item nb_frames, n
7302 The number of frames that the fade effect lasts. At the end of the
7303 fade-in effect, the output video will have the same intensity as the input video.
7304 At the end of the fade-out transition, the output video will be filled with the
7305 selected @option{color}.
7306 Default is 25.
7307
7308 @item alpha
7309 If set to 1, fade only alpha channel, if one exists on the input.
7310 Default value is 0.
7311
7312 @item start_time, st
7313 Specify the timestamp (in seconds) of the frame to start to apply the fade
7314 effect. If both start_frame and start_time are specified, the fade will start at
7315 whichever comes last.  Default is 0.
7316
7317 @item duration, d
7318 The number of seconds for which the fade effect has to last. At the end of the
7319 fade-in effect the output video will have the same intensity as the input video,
7320 at the end of the fade-out transition the output video will be filled with the
7321 selected @option{color}.
7322 If both duration and nb_frames are specified, duration is used. Default is 0
7323 (nb_frames is used by default).
7324
7325 @item color, c
7326 Specify the color of the fade. Default is "black".
7327 @end table
7328
7329 @subsection Examples
7330
7331 @itemize
7332 @item
7333 Fade in the first 30 frames of video:
7334 @example
7335 fade=in:0:30
7336 @end example
7337
7338 The command above is equivalent to:
7339 @example
7340 fade=t=in:s=0:n=30
7341 @end example
7342
7343 @item
7344 Fade out the last 45 frames of a 200-frame video:
7345 @example
7346 fade=out:155:45
7347 fade=type=out:start_frame=155:nb_frames=45
7348 @end example
7349
7350 @item
7351 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7352 @example
7353 fade=in:0:25, fade=out:975:25
7354 @end example
7355
7356 @item
7357 Make the first 5 frames yellow, then fade in from frame 5-24:
7358 @example
7359 fade=in:5:20:color=yellow
7360 @end example
7361
7362 @item
7363 Fade in alpha over first 25 frames of video:
7364 @example
7365 fade=in:0:25:alpha=1
7366 @end example
7367
7368 @item
7369 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7370 @example
7371 fade=t=in:st=5.5:d=0.5
7372 @end example
7373
7374 @end itemize
7375
7376 @section fftfilt
7377 Apply arbitrary expressions to samples in frequency domain
7378
7379 @table @option
7380 @item dc_Y
7381 Adjust the dc value (gain) of the luma plane of the image. The filter
7382 accepts an integer value in range @code{0} to @code{1000}. The default
7383 value is set to @code{0}.
7384
7385 @item dc_U
7386 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7387 filter accepts an integer value in range @code{0} to @code{1000}. The
7388 default value is set to @code{0}.
7389
7390 @item dc_V
7391 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7392 filter accepts an integer value in range @code{0} to @code{1000}. The
7393 default value is set to @code{0}.
7394
7395 @item weight_Y
7396 Set the frequency domain weight expression for the luma plane.
7397
7398 @item weight_U
7399 Set the frequency domain weight expression for the 1st chroma plane.
7400
7401 @item weight_V
7402 Set the frequency domain weight expression for the 2nd chroma plane.
7403
7404 The filter accepts the following variables:
7405 @item X
7406 @item Y
7407 The coordinates of the current sample.
7408
7409 @item W
7410 @item H
7411 The width and height of the image.
7412 @end table
7413
7414 @subsection Examples
7415
7416 @itemize
7417 @item
7418 High-pass:
7419 @example
7420 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7421 @end example
7422
7423 @item
7424 Low-pass:
7425 @example
7426 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7427 @end example
7428
7429 @item
7430 Sharpen:
7431 @example
7432 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7433 @end example
7434
7435 @item
7436 Blur:
7437 @example
7438 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7439 @end example
7440
7441 @end itemize
7442
7443 @section field
7444
7445 Extract a single field from an interlaced image using stride
7446 arithmetic to avoid wasting CPU time. The output frames are marked as
7447 non-interlaced.
7448
7449 The filter accepts the following options:
7450
7451 @table @option
7452 @item type
7453 Specify whether to extract the top (if the value is @code{0} or
7454 @code{top}) or the bottom field (if the value is @code{1} or
7455 @code{bottom}).
7456 @end table
7457
7458 @section fieldhint
7459
7460 Create new frames by copying the top and bottom fields from surrounding frames
7461 supplied as numbers by the hint file.
7462
7463 @table @option
7464 @item hint
7465 Set file containing hints: absolute/relative frame numbers.
7466
7467 There must be one line for each frame in a clip. Each line must contain two
7468 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7469 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7470 is current frame number for @code{absolute} mode or out of [-1, 1] range
7471 for @code{relative} mode. First number tells from which frame to pick up top
7472 field and second number tells from which frame to pick up bottom field.
7473
7474 If optionally followed by @code{+} output frame will be marked as interlaced,
7475 else if followed by @code{-} output frame will be marked as progressive, else
7476 it will be marked same as input frame.
7477 If line starts with @code{#} or @code{;} that line is skipped.
7478
7479 @item mode
7480 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7481 @end table
7482
7483 Example of first several lines of @code{hint} file for @code{relative} mode:
7484 @example
7485 0,0 - # first frame
7486 1,0 - # second frame, use third's frame top field and second's frame bottom field
7487 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7488 1,0 -
7489 0,0 -
7490 0,0 -
7491 1,0 -
7492 1,0 -
7493 1,0 -
7494 0,0 -
7495 0,0 -
7496 1,0 -
7497 1,0 -
7498 1,0 -
7499 0,0 -
7500 @end example
7501
7502 @section fieldmatch
7503
7504 Field matching filter for inverse telecine. It is meant to reconstruct the
7505 progressive frames from a telecined stream. The filter does not drop duplicated
7506 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7507 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7508
7509 The separation of the field matching and the decimation is notably motivated by
7510 the possibility of inserting a de-interlacing filter fallback between the two.
7511 If the source has mixed telecined and real interlaced content,
7512 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7513 But these remaining combed frames will be marked as interlaced, and thus can be
7514 de-interlaced by a later filter such as @ref{yadif} before decimation.
7515
7516 In addition to the various configuration options, @code{fieldmatch} can take an
7517 optional second stream, activated through the @option{ppsrc} option. If
7518 enabled, the frames reconstruction will be based on the fields and frames from
7519 this second stream. This allows the first input to be pre-processed in order to
7520 help the various algorithms of the filter, while keeping the output lossless
7521 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7522 or brightness/contrast adjustments can help.
7523
7524 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7525 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7526 which @code{fieldmatch} is based on. While the semantic and usage are very
7527 close, some behaviour and options names can differ.
7528
7529 The @ref{decimate} filter currently only works for constant frame rate input.
7530 If your input has mixed telecined (30fps) and progressive content with a lower
7531 framerate like 24fps use the following filterchain to produce the necessary cfr
7532 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7533
7534 The filter accepts the following options:
7535
7536 @table @option
7537 @item order
7538 Specify the assumed field order of the input stream. Available values are:
7539
7540 @table @samp
7541 @item auto
7542 Auto detect parity (use FFmpeg's internal parity value).
7543 @item bff
7544 Assume bottom field first.
7545 @item tff
7546 Assume top field first.
7547 @end table
7548
7549 Note that it is sometimes recommended not to trust the parity announced by the
7550 stream.
7551
7552 Default value is @var{auto}.
7553
7554 @item mode
7555 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7556 sense that it won't risk creating jerkiness due to duplicate frames when
7557 possible, but if there are bad edits or blended fields it will end up
7558 outputting combed frames when a good match might actually exist. On the other
7559 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7560 but will almost always find a good frame if there is one. The other values are
7561 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7562 jerkiness and creating duplicate frames versus finding good matches in sections
7563 with bad edits, orphaned fields, blended fields, etc.
7564
7565 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7566
7567 Available values are:
7568
7569 @table @samp
7570 @item pc
7571 2-way matching (p/c)
7572 @item pc_n
7573 2-way matching, and trying 3rd match if still combed (p/c + n)
7574 @item pc_u
7575 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7576 @item pc_n_ub
7577 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7578 still combed (p/c + n + u/b)
7579 @item pcn
7580 3-way matching (p/c/n)
7581 @item pcn_ub
7582 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7583 detected as combed (p/c/n + u/b)
7584 @end table
7585
7586 The parenthesis at the end indicate the matches that would be used for that
7587 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7588 @var{top}).
7589
7590 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7591 the slowest.
7592
7593 Default value is @var{pc_n}.
7594
7595 @item ppsrc
7596 Mark the main input stream as a pre-processed input, and enable the secondary
7597 input stream as the clean source to pick the fields from. See the filter
7598 introduction for more details. It is similar to the @option{clip2} feature from
7599 VFM/TFM.
7600
7601 Default value is @code{0} (disabled).
7602
7603 @item field
7604 Set the field to match from. It is recommended to set this to the same value as
7605 @option{order} unless you experience matching failures with that setting. In
7606 certain circumstances changing the field that is used to match from can have a
7607 large impact on matching performance. Available values are:
7608
7609 @table @samp
7610 @item auto
7611 Automatic (same value as @option{order}).
7612 @item bottom
7613 Match from the bottom field.
7614 @item top
7615 Match from the top field.
7616 @end table
7617
7618 Default value is @var{auto}.
7619
7620 @item mchroma
7621 Set whether or not chroma is included during the match comparisons. In most
7622 cases it is recommended to leave this enabled. You should set this to @code{0}
7623 only if your clip has bad chroma problems such as heavy rainbowing or other
7624 artifacts. Setting this to @code{0} could also be used to speed things up at
7625 the cost of some accuracy.
7626
7627 Default value is @code{1}.
7628
7629 @item y0
7630 @item y1
7631 These define an exclusion band which excludes the lines between @option{y0} and
7632 @option{y1} from being included in the field matching decision. An exclusion
7633 band can be used to ignore subtitles, a logo, or other things that may
7634 interfere with the matching. @option{y0} sets the starting scan line and
7635 @option{y1} sets the ending line; all lines in between @option{y0} and
7636 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7637 @option{y0} and @option{y1} to the same value will disable the feature.
7638 @option{y0} and @option{y1} defaults to @code{0}.
7639
7640 @item scthresh
7641 Set the scene change detection threshold as a percentage of maximum change on
7642 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7643 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7644 @option{scthresh} is @code{[0.0, 100.0]}.
7645
7646 Default value is @code{12.0}.
7647
7648 @item combmatch
7649 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7650 account the combed scores of matches when deciding what match to use as the
7651 final match. Available values are:
7652
7653 @table @samp
7654 @item none
7655 No final matching based on combed scores.
7656 @item sc
7657 Combed scores are only used when a scene change is detected.
7658 @item full
7659 Use combed scores all the time.
7660 @end table
7661
7662 Default is @var{sc}.
7663
7664 @item combdbg
7665 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7666 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7667 Available values are:
7668
7669 @table @samp
7670 @item none
7671 No forced calculation.
7672 @item pcn
7673 Force p/c/n calculations.
7674 @item pcnub
7675 Force p/c/n/u/b calculations.
7676 @end table
7677
7678 Default value is @var{none}.
7679
7680 @item cthresh
7681 This is the area combing threshold used for combed frame detection. This
7682 essentially controls how "strong" or "visible" combing must be to be detected.
7683 Larger values mean combing must be more visible and smaller values mean combing
7684 can be less visible or strong and still be detected. Valid settings are from
7685 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7686 be detected as combed). This is basically a pixel difference value. A good
7687 range is @code{[8, 12]}.
7688
7689 Default value is @code{9}.
7690
7691 @item chroma
7692 Sets whether or not chroma is considered in the combed frame decision.  Only
7693 disable this if your source has chroma problems (rainbowing, etc.) that are
7694 causing problems for the combed frame detection with chroma enabled. Actually,
7695 using @option{chroma}=@var{0} is usually more reliable, except for the case
7696 where there is chroma only combing in the source.
7697
7698 Default value is @code{0}.
7699
7700 @item blockx
7701 @item blocky
7702 Respectively set the x-axis and y-axis size of the window used during combed
7703 frame detection. This has to do with the size of the area in which
7704 @option{combpel} pixels are required to be detected as combed for a frame to be
7705 declared combed. See the @option{combpel} parameter description for more info.
7706 Possible values are any number that is a power of 2 starting at 4 and going up
7707 to 512.
7708
7709 Default value is @code{16}.
7710
7711 @item combpel
7712 The number of combed pixels inside any of the @option{blocky} by
7713 @option{blockx} size blocks on the frame for the frame to be detected as
7714 combed. While @option{cthresh} controls how "visible" the combing must be, this
7715 setting controls "how much" combing there must be in any localized area (a
7716 window defined by the @option{blockx} and @option{blocky} settings) on the
7717 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7718 which point no frames will ever be detected as combed). This setting is known
7719 as @option{MI} in TFM/VFM vocabulary.
7720
7721 Default value is @code{80}.
7722 @end table
7723
7724 @anchor{p/c/n/u/b meaning}
7725 @subsection p/c/n/u/b meaning
7726
7727 @subsubsection p/c/n
7728
7729 We assume the following telecined stream:
7730
7731 @example
7732 Top fields:     1 2 2 3 4
7733 Bottom fields:  1 2 3 4 4
7734 @end example
7735
7736 The numbers correspond to the progressive frame the fields relate to. Here, the
7737 first two frames are progressive, the 3rd and 4th are combed, and so on.
7738
7739 When @code{fieldmatch} is configured to run a matching from bottom
7740 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7741
7742 @example
7743 Input stream:
7744                 T     1 2 2 3 4
7745                 B     1 2 3 4 4   <-- matching reference
7746
7747 Matches:              c c n n c
7748
7749 Output stream:
7750                 T     1 2 3 4 4
7751                 B     1 2 3 4 4
7752 @end example
7753
7754 As a result of the field matching, we can see that some frames get duplicated.
7755 To perform a complete inverse telecine, you need to rely on a decimation filter
7756 after this operation. See for instance the @ref{decimate} filter.
7757
7758 The same operation now matching from top fields (@option{field}=@var{top})
7759 looks like this:
7760
7761 @example
7762 Input stream:
7763                 T     1 2 2 3 4   <-- matching reference
7764                 B     1 2 3 4 4
7765
7766 Matches:              c c p p c
7767
7768 Output stream:
7769                 T     1 2 2 3 4
7770                 B     1 2 2 3 4
7771 @end example
7772
7773 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
7774 basically, they refer to the frame and field of the opposite parity:
7775
7776 @itemize
7777 @item @var{p} matches the field of the opposite parity in the previous frame
7778 @item @var{c} matches the field of the opposite parity in the current frame
7779 @item @var{n} matches the field of the opposite parity in the next frame
7780 @end itemize
7781
7782 @subsubsection u/b
7783
7784 The @var{u} and @var{b} matching are a bit special in the sense that they match
7785 from the opposite parity flag. In the following examples, we assume that we are
7786 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
7787 'x' is placed above and below each matched fields.
7788
7789 With bottom matching (@option{field}=@var{bottom}):
7790 @example
7791 Match:           c         p           n          b          u
7792
7793                  x       x               x        x          x
7794   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7795   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7796                  x         x           x        x              x
7797
7798 Output frames:
7799                  2          1          2          2          2
7800                  2          2          2          1          3
7801 @end example
7802
7803 With top matching (@option{field}=@var{top}):
7804 @example
7805 Match:           c         p           n          b          u
7806
7807                  x         x           x        x              x
7808   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
7809   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
7810                  x       x               x        x          x
7811
7812 Output frames:
7813                  2          2          2          1          2
7814                  2          1          3          2          2
7815 @end example
7816
7817 @subsection Examples
7818
7819 Simple IVTC of a top field first telecined stream:
7820 @example
7821 fieldmatch=order=tff:combmatch=none, decimate
7822 @end example
7823
7824 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
7825 @example
7826 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
7827 @end example
7828
7829 @section fieldorder
7830
7831 Transform the field order of the input video.
7832
7833 It accepts the following parameters:
7834
7835 @table @option
7836
7837 @item order
7838 The output field order. Valid values are @var{tff} for top field first or @var{bff}
7839 for bottom field first.
7840 @end table
7841
7842 The default value is @samp{tff}.
7843
7844 The transformation is done by shifting the picture content up or down
7845 by one line, and filling the remaining line with appropriate picture content.
7846 This method is consistent with most broadcast field order converters.
7847
7848 If the input video is not flagged as being interlaced, or it is already
7849 flagged as being of the required output field order, then this filter does
7850 not alter the incoming video.
7851
7852 It is very useful when converting to or from PAL DV material,
7853 which is bottom field first.
7854
7855 For example:
7856 @example
7857 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
7858 @end example
7859
7860 @section fifo, afifo
7861
7862 Buffer input images and send them when they are requested.
7863
7864 It is mainly useful when auto-inserted by the libavfilter
7865 framework.
7866
7867 It does not take parameters.
7868
7869 @section find_rect
7870
7871 Find a rectangular object
7872
7873 It accepts the following options:
7874
7875 @table @option
7876 @item object
7877 Filepath of the object image, needs to be in gray8.
7878
7879 @item threshold
7880 Detection threshold, default is 0.5.
7881
7882 @item mipmaps
7883 Number of mipmaps, default is 3.
7884
7885 @item xmin, ymin, xmax, ymax
7886 Specifies the rectangle in which to search.
7887 @end table
7888
7889 @subsection Examples
7890
7891 @itemize
7892 @item
7893 Generate a representative palette of a given video using @command{ffmpeg}:
7894 @example
7895 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7896 @end example
7897 @end itemize
7898
7899 @section cover_rect
7900
7901 Cover a rectangular object
7902
7903 It accepts the following options:
7904
7905 @table @option
7906 @item cover
7907 Filepath of the optional cover image, needs to be in yuv420.
7908
7909 @item mode
7910 Set covering mode.
7911
7912 It accepts the following values:
7913 @table @samp
7914 @item cover
7915 cover it by the supplied image
7916 @item blur
7917 cover it by interpolating the surrounding pixels
7918 @end table
7919
7920 Default value is @var{blur}.
7921 @end table
7922
7923 @subsection Examples
7924
7925 @itemize
7926 @item
7927 Generate a representative palette of a given video using @command{ffmpeg}:
7928 @example
7929 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7930 @end example
7931 @end itemize
7932
7933 @anchor{format}
7934 @section format
7935
7936 Convert the input video to one of the specified pixel formats.
7937 Libavfilter will try to pick one that is suitable as input to
7938 the next filter.
7939
7940 It accepts the following parameters:
7941 @table @option
7942
7943 @item pix_fmts
7944 A '|'-separated list of pixel format names, such as
7945 "pix_fmts=yuv420p|monow|rgb24".
7946
7947 @end table
7948
7949 @subsection Examples
7950
7951 @itemize
7952 @item
7953 Convert the input video to the @var{yuv420p} format
7954 @example
7955 format=pix_fmts=yuv420p
7956 @end example
7957
7958 Convert the input video to any of the formats in the list
7959 @example
7960 format=pix_fmts=yuv420p|yuv444p|yuv410p
7961 @end example
7962 @end itemize
7963
7964 @anchor{fps}
7965 @section fps
7966
7967 Convert the video to specified constant frame rate by duplicating or dropping
7968 frames as necessary.
7969
7970 It accepts the following parameters:
7971 @table @option
7972
7973 @item fps
7974 The desired output frame rate. The default is @code{25}.
7975
7976 @item round
7977 Rounding method.
7978
7979 Possible values are:
7980 @table @option
7981 @item zero
7982 zero round towards 0
7983 @item inf
7984 round away from 0
7985 @item down
7986 round towards -infinity
7987 @item up
7988 round towards +infinity
7989 @item near
7990 round to nearest
7991 @end table
7992 The default is @code{near}.
7993
7994 @item start_time
7995 Assume the first PTS should be the given value, in seconds. This allows for
7996 padding/trimming at the start of stream. By default, no assumption is made
7997 about the first frame's expected PTS, so no padding or trimming is done.
7998 For example, this could be set to 0 to pad the beginning with duplicates of
7999 the first frame if a video stream starts after the audio stream or to trim any
8000 frames with a negative PTS.
8001
8002 @end table
8003
8004 Alternatively, the options can be specified as a flat string:
8005 @var{fps}[:@var{round}].
8006
8007 See also the @ref{setpts} filter.
8008
8009 @subsection Examples
8010
8011 @itemize
8012 @item
8013 A typical usage in order to set the fps to 25:
8014 @example
8015 fps=fps=25
8016 @end example
8017
8018 @item
8019 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8020 @example
8021 fps=fps=film:round=near
8022 @end example
8023 @end itemize
8024
8025 @section framepack
8026
8027 Pack two different video streams into a stereoscopic video, setting proper
8028 metadata on supported codecs. The two views should have the same size and
8029 framerate and processing will stop when the shorter video ends. Please note
8030 that you may conveniently adjust view properties with the @ref{scale} and
8031 @ref{fps} filters.
8032
8033 It accepts the following parameters:
8034 @table @option
8035
8036 @item format
8037 The desired packing format. Supported values are:
8038
8039 @table @option
8040
8041 @item sbs
8042 The views are next to each other (default).
8043
8044 @item tab
8045 The views are on top of each other.
8046
8047 @item lines
8048 The views are packed by line.
8049
8050 @item columns
8051 The views are packed by column.
8052
8053 @item frameseq
8054 The views are temporally interleaved.
8055
8056 @end table
8057
8058 @end table
8059
8060 Some examples:
8061
8062 @example
8063 # Convert left and right views into a frame-sequential video
8064 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8065
8066 # Convert views into a side-by-side video with the same output resolution as the input
8067 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
8068 @end example
8069
8070 @section framerate
8071
8072 Change the frame rate by interpolating new video output frames from the source
8073 frames.
8074
8075 This filter is not designed to function correctly with interlaced media. If
8076 you wish to change the frame rate of interlaced media then you are required
8077 to deinterlace before this filter and re-interlace after this filter.
8078
8079 A description of the accepted options follows.
8080
8081 @table @option
8082 @item fps
8083 Specify the output frames per second. This option can also be specified
8084 as a value alone. The default is @code{50}.
8085
8086 @item interp_start
8087 Specify the start of a range where the output frame will be created as a
8088 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8089 the default is @code{15}.
8090
8091 @item interp_end
8092 Specify the end of a range where the output frame will be created as a
8093 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8094 the default is @code{240}.
8095
8096 @item scene
8097 Specify the level at which a scene change is detected as a value between
8098 0 and 100 to indicate a new scene; a low value reflects a low
8099 probability for the current frame to introduce a new scene, while a higher
8100 value means the current frame is more likely to be one.
8101 The default is @code{7}.
8102
8103 @item flags
8104 Specify flags influencing the filter process.
8105
8106 Available value for @var{flags} is:
8107
8108 @table @option
8109 @item scene_change_detect, scd
8110 Enable scene change detection using the value of the option @var{scene}.
8111 This flag is enabled by default.
8112 @end table
8113 @end table
8114
8115 @section framestep
8116
8117 Select one frame every N-th frame.
8118
8119 This filter accepts the following option:
8120 @table @option
8121 @item step
8122 Select frame after every @code{step} frames.
8123 Allowed values are positive integers higher than 0. Default value is @code{1}.
8124 @end table
8125
8126 @anchor{frei0r}
8127 @section frei0r
8128
8129 Apply a frei0r effect to the input video.
8130
8131 To enable the compilation of this filter, you need to install the frei0r
8132 header and configure FFmpeg with @code{--enable-frei0r}.
8133
8134 It accepts the following parameters:
8135
8136 @table @option
8137
8138 @item filter_name
8139 The name of the frei0r effect to load. If the environment variable
8140 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8141 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8142 Otherwise, the standard frei0r paths are searched, in this order:
8143 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8144 @file{/usr/lib/frei0r-1/}.
8145
8146 @item filter_params
8147 A '|'-separated list of parameters to pass to the frei0r effect.
8148
8149 @end table
8150
8151 A frei0r effect parameter can be a boolean (its value is either
8152 "y" or "n"), a double, a color (specified as
8153 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8154 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8155 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8156 @var{X} and @var{Y} are floating point numbers) and/or a string.
8157
8158 The number and types of parameters depend on the loaded effect. If an
8159 effect parameter is not specified, the default value is set.
8160
8161 @subsection Examples
8162
8163 @itemize
8164 @item
8165 Apply the distort0r effect, setting the first two double parameters:
8166 @example
8167 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8168 @end example
8169
8170 @item
8171 Apply the colordistance effect, taking a color as the first parameter:
8172 @example
8173 frei0r=colordistance:0.2/0.3/0.4
8174 frei0r=colordistance:violet
8175 frei0r=colordistance:0x112233
8176 @end example
8177
8178 @item
8179 Apply the perspective effect, specifying the top left and top right image
8180 positions:
8181 @example
8182 frei0r=perspective:0.2/0.2|0.8/0.2
8183 @end example
8184 @end itemize
8185
8186 For more information, see
8187 @url{http://frei0r.dyne.org}
8188
8189 @section fspp
8190
8191 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8192
8193 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8194 processing filter, one of them is performed once per block, not per pixel.
8195 This allows for much higher speed.
8196
8197 The filter accepts the following options:
8198
8199 @table @option
8200 @item quality
8201 Set quality. This option defines the number of levels for averaging. It accepts
8202 an integer in the range 4-5. Default value is @code{4}.
8203
8204 @item qp
8205 Force a constant quantization parameter. It accepts an integer in range 0-63.
8206 If not set, the filter will use the QP from the video stream (if available).
8207
8208 @item strength
8209 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8210 more details but also more artifacts, while higher values make the image smoother
8211 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8212
8213 @item use_bframe_qp
8214 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8215 option may cause flicker since the B-Frames have often larger QP. Default is
8216 @code{0} (not enabled).
8217
8218 @end table
8219
8220 @section geq
8221
8222 The filter accepts the following options:
8223
8224 @table @option
8225 @item lum_expr, lum
8226 Set the luminance expression.
8227 @item cb_expr, cb
8228 Set the chrominance blue expression.
8229 @item cr_expr, cr
8230 Set the chrominance red expression.
8231 @item alpha_expr, a
8232 Set the alpha expression.
8233 @item red_expr, r
8234 Set the red expression.
8235 @item green_expr, g
8236 Set the green expression.
8237 @item blue_expr, b
8238 Set the blue expression.
8239 @end table
8240
8241 The colorspace is selected according to the specified options. If one
8242 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8243 options is specified, the filter will automatically select a YCbCr
8244 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8245 @option{blue_expr} options is specified, it will select an RGB
8246 colorspace.
8247
8248 If one of the chrominance expression is not defined, it falls back on the other
8249 one. If no alpha expression is specified it will evaluate to opaque value.
8250 If none of chrominance expressions are specified, they will evaluate
8251 to the luminance expression.
8252
8253 The expressions can use the following variables and functions:
8254
8255 @table @option
8256 @item N
8257 The sequential number of the filtered frame, starting from @code{0}.
8258
8259 @item X
8260 @item Y
8261 The coordinates of the current sample.
8262
8263 @item W
8264 @item H
8265 The width and height of the image.
8266
8267 @item SW
8268 @item SH
8269 Width and height scale depending on the currently filtered plane. It is the
8270 ratio between the corresponding luma plane number of pixels and the current
8271 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8272 @code{0.5,0.5} for chroma planes.
8273
8274 @item T
8275 Time of the current frame, expressed in seconds.
8276
8277 @item p(x, y)
8278 Return the value of the pixel at location (@var{x},@var{y}) of the current
8279 plane.
8280
8281 @item lum(x, y)
8282 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8283 plane.
8284
8285 @item cb(x, y)
8286 Return the value of the pixel at location (@var{x},@var{y}) of the
8287 blue-difference chroma plane. Return 0 if there is no such plane.
8288
8289 @item cr(x, y)
8290 Return the value of the pixel at location (@var{x},@var{y}) of the
8291 red-difference chroma plane. Return 0 if there is no such plane.
8292
8293 @item r(x, y)
8294 @item g(x, y)
8295 @item b(x, y)
8296 Return the value of the pixel at location (@var{x},@var{y}) of the
8297 red/green/blue component. Return 0 if there is no such component.
8298
8299 @item alpha(x, y)
8300 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8301 plane. Return 0 if there is no such plane.
8302 @end table
8303
8304 For functions, if @var{x} and @var{y} are outside the area, the value will be
8305 automatically clipped to the closer edge.
8306
8307 @subsection Examples
8308
8309 @itemize
8310 @item
8311 Flip the image horizontally:
8312 @example
8313 geq=p(W-X\,Y)
8314 @end example
8315
8316 @item
8317 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8318 wavelength of 100 pixels:
8319 @example
8320 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8321 @end example
8322
8323 @item
8324 Generate a fancy enigmatic moving light:
8325 @example
8326 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
8327 @end example
8328
8329 @item
8330 Generate a quick emboss effect:
8331 @example
8332 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8333 @end example
8334
8335 @item
8336 Modify RGB components depending on pixel position:
8337 @example
8338 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8339 @end example
8340
8341 @item
8342 Create a radial gradient that is the same size as the input (also see
8343 the @ref{vignette} filter):
8344 @example
8345 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8346 @end example
8347 @end itemize
8348
8349 @section gradfun
8350
8351 Fix the banding artifacts that are sometimes introduced into nearly flat
8352 regions by truncation to 8-bit color depth.
8353 Interpolate the gradients that should go where the bands are, and
8354 dither them.
8355
8356 It is designed for playback only.  Do not use it prior to
8357 lossy compression, because compression tends to lose the dither and
8358 bring back the bands.
8359
8360 It accepts the following parameters:
8361
8362 @table @option
8363
8364 @item strength
8365 The maximum amount by which the filter will change any one pixel. This is also
8366 the threshold for detecting nearly flat regions. Acceptable values range from
8367 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8368 valid range.
8369
8370 @item radius
8371 The neighborhood to fit the gradient to. A larger radius makes for smoother
8372 gradients, but also prevents the filter from modifying the pixels near detailed
8373 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8374 values will be clipped to the valid range.
8375
8376 @end table
8377
8378 Alternatively, the options can be specified as a flat string:
8379 @var{strength}[:@var{radius}]
8380
8381 @subsection Examples
8382
8383 @itemize
8384 @item
8385 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8386 @example
8387 gradfun=3.5:8
8388 @end example
8389
8390 @item
8391 Specify radius, omitting the strength (which will fall-back to the default
8392 value):
8393 @example
8394 gradfun=radius=8
8395 @end example
8396
8397 @end itemize
8398
8399 @anchor{haldclut}
8400 @section haldclut
8401
8402 Apply a Hald CLUT to a video stream.
8403
8404 First input is the video stream to process, and second one is the Hald CLUT.
8405 The Hald CLUT input can be a simple picture or a complete video stream.
8406
8407 The filter accepts the following options:
8408
8409 @table @option
8410 @item shortest
8411 Force termination when the shortest input terminates. Default is @code{0}.
8412 @item repeatlast
8413 Continue applying the last CLUT after the end of the stream. A value of
8414 @code{0} disable the filter after the last frame of the CLUT is reached.
8415 Default is @code{1}.
8416 @end table
8417
8418 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8419 filters share the same internals).
8420
8421 More information about the Hald CLUT can be found on Eskil Steenberg's website
8422 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8423
8424 @subsection Workflow examples
8425
8426 @subsubsection Hald CLUT video stream
8427
8428 Generate an identity Hald CLUT stream altered with various effects:
8429 @example
8430 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
8431 @end example
8432
8433 Note: make sure you use a lossless codec.
8434
8435 Then use it with @code{haldclut} to apply it on some random stream:
8436 @example
8437 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8438 @end example
8439
8440 The Hald CLUT will be applied to the 10 first seconds (duration of
8441 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8442 to the remaining frames of the @code{mandelbrot} stream.
8443
8444 @subsubsection Hald CLUT with preview
8445
8446 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8447 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8448 biggest possible square starting at the top left of the picture. The remaining
8449 padding pixels (bottom or right) will be ignored. This area can be used to add
8450 a preview of the Hald CLUT.
8451
8452 Typically, the following generated Hald CLUT will be supported by the
8453 @code{haldclut} filter:
8454
8455 @example
8456 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8457    pad=iw+320 [padded_clut];
8458    smptebars=s=320x256, split [a][b];
8459    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8460    [main][b] overlay=W-320" -frames:v 1 clut.png
8461 @end example
8462
8463 It contains the original and a preview of the effect of the CLUT: SMPTE color
8464 bars are displayed on the right-top, and below the same color bars processed by
8465 the color changes.
8466
8467 Then, the effect of this Hald CLUT can be visualized with:
8468 @example
8469 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8470 @end example
8471
8472 @section hflip
8473
8474 Flip the input video horizontally.
8475
8476 For example, to horizontally flip the input video with @command{ffmpeg}:
8477 @example
8478 ffmpeg -i in.avi -vf "hflip" out.avi
8479 @end example
8480
8481 @section histeq
8482 This filter applies a global color histogram equalization on a
8483 per-frame basis.
8484
8485 It can be used to correct video that has a compressed range of pixel
8486 intensities.  The filter redistributes the pixel intensities to
8487 equalize their distribution across the intensity range. It may be
8488 viewed as an "automatically adjusting contrast filter". This filter is
8489 useful only for correcting degraded or poorly captured source
8490 video.
8491
8492 The filter accepts the following options:
8493
8494 @table @option
8495 @item strength
8496 Determine the amount of equalization to be applied.  As the strength
8497 is reduced, the distribution of pixel intensities more-and-more
8498 approaches that of the input frame. The value must be a float number
8499 in the range [0,1] and defaults to 0.200.
8500
8501 @item intensity
8502 Set the maximum intensity that can generated and scale the output
8503 values appropriately.  The strength should be set as desired and then
8504 the intensity can be limited if needed to avoid washing-out. The value
8505 must be a float number in the range [0,1] and defaults to 0.210.
8506
8507 @item antibanding
8508 Set the antibanding level. If enabled the filter will randomly vary
8509 the luminance of output pixels by a small amount to avoid banding of
8510 the histogram. Possible values are @code{none}, @code{weak} or
8511 @code{strong}. It defaults to @code{none}.
8512 @end table
8513
8514 @section histogram
8515
8516 Compute and draw a color distribution histogram for the input video.
8517
8518 The computed histogram is a representation of the color component
8519 distribution in an image.
8520
8521 Standard histogram displays the color components distribution in an image.
8522 Displays color graph for each color component. Shows distribution of
8523 the Y, U, V, A or R, G, B components, depending on input format, in the
8524 current frame. Below each graph a color component scale meter is shown.
8525
8526 The filter accepts the following options:
8527
8528 @table @option
8529 @item level_height
8530 Set height of level. Default value is @code{200}.
8531 Allowed range is [50, 2048].
8532
8533 @item scale_height
8534 Set height of color scale. Default value is @code{12}.
8535 Allowed range is [0, 40].
8536
8537 @item display_mode
8538 Set display mode.
8539 It accepts the following values:
8540 @table @samp
8541 @item parade
8542 Per color component graphs are placed below each other.
8543
8544 @item overlay
8545 Presents information identical to that in the @code{parade}, except
8546 that the graphs representing color components are superimposed directly
8547 over one another.
8548 @end table
8549 Default is @code{parade}.
8550
8551 @item levels_mode
8552 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8553 Default is @code{linear}.
8554
8555 @item components
8556 Set what color components to display.
8557 Default is @code{7}.
8558 @end table
8559
8560 @subsection Examples
8561
8562 @itemize
8563
8564 @item
8565 Calculate and draw histogram:
8566 @example
8567 ffplay -i input -vf histogram
8568 @end example
8569
8570 @end itemize
8571
8572 @anchor{hqdn3d}
8573 @section hqdn3d
8574
8575 This is a high precision/quality 3d denoise filter. It aims to reduce
8576 image noise, producing smooth images and making still images really
8577 still. It should enhance compressibility.
8578
8579 It accepts the following optional parameters:
8580
8581 @table @option
8582 @item luma_spatial
8583 A non-negative floating point number which specifies spatial luma strength.
8584 It defaults to 4.0.
8585
8586 @item chroma_spatial
8587 A non-negative floating point number which specifies spatial chroma strength.
8588 It defaults to 3.0*@var{luma_spatial}/4.0.
8589
8590 @item luma_tmp
8591 A floating point number which specifies luma temporal strength. It defaults to
8592 6.0*@var{luma_spatial}/4.0.
8593
8594 @item chroma_tmp
8595 A floating point number which specifies chroma temporal strength. It defaults to
8596 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8597 @end table
8598
8599 @anchor{hwupload_cuda}
8600 @section hwupload_cuda
8601
8602 Upload system memory frames to a CUDA device.
8603
8604 It accepts the following optional parameters:
8605
8606 @table @option
8607 @item device
8608 The number of the CUDA device to use
8609 @end table
8610
8611 @section hqx
8612
8613 Apply a high-quality magnification filter designed for pixel art. This filter
8614 was originally created by Maxim Stepin.
8615
8616 It accepts the following option:
8617
8618 @table @option
8619 @item n
8620 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8621 @code{hq3x} and @code{4} for @code{hq4x}.
8622 Default is @code{3}.
8623 @end table
8624
8625 @section hstack
8626 Stack input videos horizontally.
8627
8628 All streams must be of same pixel format and of same height.
8629
8630 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8631 to create same output.
8632
8633 The filter accept the following option:
8634
8635 @table @option
8636 @item inputs
8637 Set number of input streams. Default is 2.
8638
8639 @item shortest
8640 If set to 1, force the output to terminate when the shortest input
8641 terminates. Default value is 0.
8642 @end table
8643
8644 @section hue
8645
8646 Modify the hue and/or the saturation of the input.
8647
8648 It accepts the following parameters:
8649
8650 @table @option
8651 @item h
8652 Specify the hue angle as a number of degrees. It accepts an expression,
8653 and defaults to "0".
8654
8655 @item s
8656 Specify the saturation in the [-10,10] range. It accepts an expression and
8657 defaults to "1".
8658
8659 @item H
8660 Specify the hue angle as a number of radians. It accepts an
8661 expression, and defaults to "0".
8662
8663 @item b
8664 Specify the brightness in the [-10,10] range. It accepts an expression and
8665 defaults to "0".
8666 @end table
8667
8668 @option{h} and @option{H} are mutually exclusive, and can't be
8669 specified at the same time.
8670
8671 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8672 expressions containing the following constants:
8673
8674 @table @option
8675 @item n
8676 frame count of the input frame starting from 0
8677
8678 @item pts
8679 presentation timestamp of the input frame expressed in time base units
8680
8681 @item r
8682 frame rate of the input video, NAN if the input frame rate is unknown
8683
8684 @item t
8685 timestamp expressed in seconds, NAN if the input timestamp is unknown
8686
8687 @item tb
8688 time base of the input video
8689 @end table
8690
8691 @subsection Examples
8692
8693 @itemize
8694 @item
8695 Set the hue to 90 degrees and the saturation to 1.0:
8696 @example
8697 hue=h=90:s=1
8698 @end example
8699
8700 @item
8701 Same command but expressing the hue in radians:
8702 @example
8703 hue=H=PI/2:s=1
8704 @end example
8705
8706 @item
8707 Rotate hue and make the saturation swing between 0
8708 and 2 over a period of 1 second:
8709 @example
8710 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8711 @end example
8712
8713 @item
8714 Apply a 3 seconds saturation fade-in effect starting at 0:
8715 @example
8716 hue="s=min(t/3\,1)"
8717 @end example
8718
8719 The general fade-in expression can be written as:
8720 @example
8721 hue="s=min(0\, max((t-START)/DURATION\, 1))"
8722 @end example
8723
8724 @item
8725 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
8726 @example
8727 hue="s=max(0\, min(1\, (8-t)/3))"
8728 @end example
8729
8730 The general fade-out expression can be written as:
8731 @example
8732 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
8733 @end example
8734
8735 @end itemize
8736
8737 @subsection Commands
8738
8739 This filter supports the following commands:
8740 @table @option
8741 @item b
8742 @item s
8743 @item h
8744 @item H
8745 Modify the hue and/or the saturation and/or brightness of the input video.
8746 The command accepts the same syntax of the corresponding option.
8747
8748 If the specified expression is not valid, it is kept at its current
8749 value.
8750 @end table
8751
8752 @section idet
8753
8754 Detect video interlacing type.
8755
8756 This filter tries to detect if the input frames as interlaced, progressive,
8757 top or bottom field first. It will also try and detect fields that are
8758 repeated between adjacent frames (a sign of telecine).
8759
8760 Single frame detection considers only immediately adjacent frames when classifying each frame.
8761 Multiple frame detection incorporates the classification history of previous frames.
8762
8763 The filter will log these metadata values:
8764
8765 @table @option
8766 @item single.current_frame
8767 Detected type of current frame using single-frame detection. One of:
8768 ``tff'' (top field first), ``bff'' (bottom field first),
8769 ``progressive'', or ``undetermined''
8770
8771 @item single.tff
8772 Cumulative number of frames detected as top field first using single-frame detection.
8773
8774 @item multiple.tff
8775 Cumulative number of frames detected as top field first using multiple-frame detection.
8776
8777 @item single.bff
8778 Cumulative number of frames detected as bottom field first using single-frame detection.
8779
8780 @item multiple.current_frame
8781 Detected type of current frame using multiple-frame detection. One of:
8782 ``tff'' (top field first), ``bff'' (bottom field first),
8783 ``progressive'', or ``undetermined''
8784
8785 @item multiple.bff
8786 Cumulative number of frames detected as bottom field first using multiple-frame detection.
8787
8788 @item single.progressive
8789 Cumulative number of frames detected as progressive using single-frame detection.
8790
8791 @item multiple.progressive
8792 Cumulative number of frames detected as progressive using multiple-frame detection.
8793
8794 @item single.undetermined
8795 Cumulative number of frames that could not be classified using single-frame detection.
8796
8797 @item multiple.undetermined
8798 Cumulative number of frames that could not be classified using multiple-frame detection.
8799
8800 @item repeated.current_frame
8801 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
8802
8803 @item repeated.neither
8804 Cumulative number of frames with no repeated field.
8805
8806 @item repeated.top
8807 Cumulative number of frames with the top field repeated from the previous frame's top field.
8808
8809 @item repeated.bottom
8810 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
8811 @end table
8812
8813 The filter accepts the following options:
8814
8815 @table @option
8816 @item intl_thres
8817 Set interlacing threshold.
8818 @item prog_thres
8819 Set progressive threshold.
8820 @item rep_thres
8821 Threshold for repeated field detection.
8822 @item half_life
8823 Number of frames after which a given frame's contribution to the
8824 statistics is halved (i.e., it contributes only 0.5 to it's
8825 classification). The default of 0 means that all frames seen are given
8826 full weight of 1.0 forever.
8827 @item analyze_interlaced_flag
8828 When this is not 0 then idet will use the specified number of frames to determine
8829 if the interlaced flag is accurate, it will not count undetermined frames.
8830 If the flag is found to be accurate it will be used without any further
8831 computations, if it is found to be inaccurate it will be cleared without any
8832 further computations. This allows inserting the idet filter as a low computational
8833 method to clean up the interlaced flag
8834 @end table
8835
8836 @section il
8837
8838 Deinterleave or interleave fields.
8839
8840 This filter allows one to process interlaced images fields without
8841 deinterlacing them. Deinterleaving splits the input frame into 2
8842 fields (so called half pictures). Odd lines are moved to the top
8843 half of the output image, even lines to the bottom half.
8844 You can process (filter) them independently and then re-interleave them.
8845
8846 The filter accepts the following options:
8847
8848 @table @option
8849 @item luma_mode, l
8850 @item chroma_mode, c
8851 @item alpha_mode, a
8852 Available values for @var{luma_mode}, @var{chroma_mode} and
8853 @var{alpha_mode} are:
8854
8855 @table @samp
8856 @item none
8857 Do nothing.
8858
8859 @item deinterleave, d
8860 Deinterleave fields, placing one above the other.
8861
8862 @item interleave, i
8863 Interleave fields. Reverse the effect of deinterleaving.
8864 @end table
8865 Default value is @code{none}.
8866
8867 @item luma_swap, ls
8868 @item chroma_swap, cs
8869 @item alpha_swap, as
8870 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
8871 @end table
8872
8873 @section inflate
8874
8875 Apply inflate effect to the video.
8876
8877 This filter replaces the pixel by the local(3x3) average by taking into account
8878 only values higher than the pixel.
8879
8880 It accepts the following options:
8881
8882 @table @option
8883 @item threshold0
8884 @item threshold1
8885 @item threshold2
8886 @item threshold3
8887 Limit the maximum change for each plane, default is 65535.
8888 If 0, plane will remain unchanged.
8889 @end table
8890
8891 @section interlace
8892
8893 Simple interlacing filter from progressive contents. This interleaves upper (or
8894 lower) lines from odd frames with lower (or upper) lines from even frames,
8895 halving the frame rate and preserving image height.
8896
8897 @example
8898    Original        Original             New Frame
8899    Frame 'j'      Frame 'j+1'             (tff)
8900   ==========      ===========       ==================
8901     Line 0  -------------------->    Frame 'j' Line 0
8902     Line 1          Line 1  ---->   Frame 'j+1' Line 1
8903     Line 2 --------------------->    Frame 'j' Line 2
8904     Line 3          Line 3  ---->   Frame 'j+1' Line 3
8905      ...             ...                   ...
8906 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
8907 @end example
8908
8909 It accepts the following optional parameters:
8910
8911 @table @option
8912 @item scan
8913 This determines whether the interlaced frame is taken from the even
8914 (tff - default) or odd (bff) lines of the progressive frame.
8915
8916 @item lowpass
8917 Enable (default) or disable the vertical lowpass filter to avoid twitter
8918 interlacing and reduce moire patterns.
8919 @end table
8920
8921 @section kerndeint
8922
8923 Deinterlace input video by applying Donald Graft's adaptive kernel
8924 deinterling. Work on interlaced parts of a video to produce
8925 progressive frames.
8926
8927 The description of the accepted parameters follows.
8928
8929 @table @option
8930 @item thresh
8931 Set the threshold which affects the filter's tolerance when
8932 determining if a pixel line must be processed. It must be an integer
8933 in the range [0,255] and defaults to 10. A value of 0 will result in
8934 applying the process on every pixels.
8935
8936 @item map
8937 Paint pixels exceeding the threshold value to white if set to 1.
8938 Default is 0.
8939
8940 @item order
8941 Set the fields order. Swap fields if set to 1, leave fields alone if
8942 0. Default is 0.
8943
8944 @item sharp
8945 Enable additional sharpening if set to 1. Default is 0.
8946
8947 @item twoway
8948 Enable twoway sharpening if set to 1. Default is 0.
8949 @end table
8950
8951 @subsection Examples
8952
8953 @itemize
8954 @item
8955 Apply default values:
8956 @example
8957 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
8958 @end example
8959
8960 @item
8961 Enable additional sharpening:
8962 @example
8963 kerndeint=sharp=1
8964 @end example
8965
8966 @item
8967 Paint processed pixels in white:
8968 @example
8969 kerndeint=map=1
8970 @end example
8971 @end itemize
8972
8973 @section lenscorrection
8974
8975 Correct radial lens distortion
8976
8977 This filter can be used to correct for radial distortion as can result from the use
8978 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
8979 one can use tools available for example as part of opencv or simply trial-and-error.
8980 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
8981 and extract the k1 and k2 coefficients from the resulting matrix.
8982
8983 Note that effectively the same filter is available in the open-source tools Krita and
8984 Digikam from the KDE project.
8985
8986 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
8987 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
8988 brightness distribution, so you may want to use both filters together in certain
8989 cases, though you will have to take care of ordering, i.e. whether vignetting should
8990 be applied before or after lens correction.
8991
8992 @subsection Options
8993
8994 The filter accepts the following options:
8995
8996 @table @option
8997 @item cx
8998 Relative x-coordinate of the focal point of the image, and thereby the center of the
8999 distortion. This value has a range [0,1] and is expressed as fractions of the image
9000 width.
9001 @item cy
9002 Relative y-coordinate of the focal point of the image, and thereby the center of the
9003 distortion. This value has a range [0,1] and is expressed as fractions of the image
9004 height.
9005 @item k1
9006 Coefficient of the quadratic correction term. 0.5 means no correction.
9007 @item k2
9008 Coefficient of the double quadratic correction term. 0.5 means no correction.
9009 @end table
9010
9011 The formula that generates the correction is:
9012
9013 @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)
9014
9015 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9016 distances from the focal point in the source and target images, respectively.
9017
9018 @section loop
9019
9020 Loop video frames.
9021
9022 The filter accepts the following options:
9023
9024 @table @option
9025 @item loop
9026 Set the number of loops.
9027
9028 @item size
9029 Set maximal size in number of frames.
9030
9031 @item start
9032 Set first frame of loop.
9033 @end table
9034
9035 @anchor{lut3d}
9036 @section lut3d
9037
9038 Apply a 3D LUT to an input video.
9039
9040 The filter accepts the following options:
9041
9042 @table @option
9043 @item file
9044 Set the 3D LUT file name.
9045
9046 Currently supported formats:
9047 @table @samp
9048 @item 3dl
9049 AfterEffects
9050 @item cube
9051 Iridas
9052 @item dat
9053 DaVinci
9054 @item m3d
9055 Pandora
9056 @end table
9057 @item interp
9058 Select interpolation mode.
9059
9060 Available values are:
9061
9062 @table @samp
9063 @item nearest
9064 Use values from the nearest defined point.
9065 @item trilinear
9066 Interpolate values using the 8 points defining a cube.
9067 @item tetrahedral
9068 Interpolate values using a tetrahedron.
9069 @end table
9070 @end table
9071
9072 @section lut, lutrgb, lutyuv
9073
9074 Compute a look-up table for binding each pixel component input value
9075 to an output value, and apply it to the input video.
9076
9077 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9078 to an RGB input video.
9079
9080 These filters accept the following parameters:
9081 @table @option
9082 @item c0
9083 set first pixel component expression
9084 @item c1
9085 set second pixel component expression
9086 @item c2
9087 set third pixel component expression
9088 @item c3
9089 set fourth pixel component expression, corresponds to the alpha component
9090
9091 @item r
9092 set red component expression
9093 @item g
9094 set green component expression
9095 @item b
9096 set blue component expression
9097 @item a
9098 alpha component expression
9099
9100 @item y
9101 set Y/luminance component expression
9102 @item u
9103 set U/Cb component expression
9104 @item v
9105 set V/Cr component expression
9106 @end table
9107
9108 Each of them specifies the expression to use for computing the lookup table for
9109 the corresponding pixel component values.
9110
9111 The exact component associated to each of the @var{c*} options depends on the
9112 format in input.
9113
9114 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9115 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9116
9117 The expressions can contain the following constants and functions:
9118
9119 @table @option
9120 @item w
9121 @item h
9122 The input width and height.
9123
9124 @item val
9125 The input value for the pixel component.
9126
9127 @item clipval
9128 The input value, clipped to the @var{minval}-@var{maxval} range.
9129
9130 @item maxval
9131 The maximum value for the pixel component.
9132
9133 @item minval
9134 The minimum value for the pixel component.
9135
9136 @item negval
9137 The negated value for the pixel component value, clipped to the
9138 @var{minval}-@var{maxval} range; it corresponds to the expression
9139 "maxval-clipval+minval".
9140
9141 @item clip(val)
9142 The computed value in @var{val}, clipped to the
9143 @var{minval}-@var{maxval} range.
9144
9145 @item gammaval(gamma)
9146 The computed gamma correction value of the pixel component value,
9147 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9148 expression
9149 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9150
9151 @end table
9152
9153 All expressions default to "val".
9154
9155 @subsection Examples
9156
9157 @itemize
9158 @item
9159 Negate input video:
9160 @example
9161 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9162 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9163 @end example
9164
9165 The above is the same as:
9166 @example
9167 lutrgb="r=negval:g=negval:b=negval"
9168 lutyuv="y=negval:u=negval:v=negval"
9169 @end example
9170
9171 @item
9172 Negate luminance:
9173 @example
9174 lutyuv=y=negval
9175 @end example
9176
9177 @item
9178 Remove chroma components, turning the video into a graytone image:
9179 @example
9180 lutyuv="u=128:v=128"
9181 @end example
9182
9183 @item
9184 Apply a luma burning effect:
9185 @example
9186 lutyuv="y=2*val"
9187 @end example
9188
9189 @item
9190 Remove green and blue components:
9191 @example
9192 lutrgb="g=0:b=0"
9193 @end example
9194
9195 @item
9196 Set a constant alpha channel value on input:
9197 @example
9198 format=rgba,lutrgb=a="maxval-minval/2"
9199 @end example
9200
9201 @item
9202 Correct luminance gamma by a factor of 0.5:
9203 @example
9204 lutyuv=y=gammaval(0.5)
9205 @end example
9206
9207 @item
9208 Discard least significant bits of luma:
9209 @example
9210 lutyuv=y='bitand(val, 128+64+32)'
9211 @end example
9212
9213 @item
9214 Technicolor like effect:
9215 @example
9216 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9217 @end example
9218 @end itemize
9219
9220 @section maskedmerge
9221
9222 Merge the first input stream with the second input stream using per pixel
9223 weights in the third input stream.
9224
9225 A value of 0 in the third stream pixel component means that pixel component
9226 from first stream is returned unchanged, while maximum value (eg. 255 for
9227 8-bit videos) means that pixel component from second stream is returned
9228 unchanged. Intermediate values define the amount of merging between both
9229 input stream's pixel components.
9230
9231 This filter accepts the following options:
9232 @table @option
9233 @item planes
9234 Set which planes will be processed as bitmap, unprocessed planes will be
9235 copied from first stream.
9236 By default value 0xf, all planes will be processed.
9237 @end table
9238
9239 @section mcdeint
9240
9241 Apply motion-compensation deinterlacing.
9242
9243 It needs one field per frame as input and must thus be used together
9244 with yadif=1/3 or equivalent.
9245
9246 This filter accepts the following options:
9247 @table @option
9248 @item mode
9249 Set the deinterlacing mode.
9250
9251 It accepts one of the following values:
9252 @table @samp
9253 @item fast
9254 @item medium
9255 @item slow
9256 use iterative motion estimation
9257 @item extra_slow
9258 like @samp{slow}, but use multiple reference frames.
9259 @end table
9260 Default value is @samp{fast}.
9261
9262 @item parity
9263 Set the picture field parity assumed for the input video. It must be
9264 one of the following values:
9265
9266 @table @samp
9267 @item 0, tff
9268 assume top field first
9269 @item 1, bff
9270 assume bottom field first
9271 @end table
9272
9273 Default value is @samp{bff}.
9274
9275 @item qp
9276 Set per-block quantization parameter (QP) used by the internal
9277 encoder.
9278
9279 Higher values should result in a smoother motion vector field but less
9280 optimal individual vectors. Default value is 1.
9281 @end table
9282
9283 @section mergeplanes
9284
9285 Merge color channel components from several video streams.
9286
9287 The filter accepts up to 4 input streams, and merge selected input
9288 planes to the output video.
9289
9290 This filter accepts the following options:
9291 @table @option
9292 @item mapping
9293 Set input to output plane mapping. Default is @code{0}.
9294
9295 The mappings is specified as a bitmap. It should be specified as a
9296 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9297 mapping for the first plane of the output stream. 'A' sets the number of
9298 the input stream to use (from 0 to 3), and 'a' the plane number of the
9299 corresponding input to use (from 0 to 3). The rest of the mappings is
9300 similar, 'Bb' describes the mapping for the output stream second
9301 plane, 'Cc' describes the mapping for the output stream third plane and
9302 'Dd' describes the mapping for the output stream fourth plane.
9303
9304 @item format
9305 Set output pixel format. Default is @code{yuva444p}.
9306 @end table
9307
9308 @subsection Examples
9309
9310 @itemize
9311 @item
9312 Merge three gray video streams of same width and height into single video stream:
9313 @example
9314 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9315 @end example
9316
9317 @item
9318 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9319 @example
9320 [a0][a1]mergeplanes=0x00010210:yuva444p
9321 @end example
9322
9323 @item
9324 Swap Y and A plane in yuva444p stream:
9325 @example
9326 format=yuva444p,mergeplanes=0x03010200:yuva444p
9327 @end example
9328
9329 @item
9330 Swap U and V plane in yuv420p stream:
9331 @example
9332 format=yuv420p,mergeplanes=0x000201:yuv420p
9333 @end example
9334
9335 @item
9336 Cast a rgb24 clip to yuv444p:
9337 @example
9338 format=rgb24,mergeplanes=0x000102:yuv444p
9339 @end example
9340 @end itemize
9341
9342 @section mpdecimate
9343
9344 Drop frames that do not differ greatly from the previous frame in
9345 order to reduce frame rate.
9346
9347 The main use of this filter is for very-low-bitrate encoding
9348 (e.g. streaming over dialup modem), but it could in theory be used for
9349 fixing movies that were inverse-telecined incorrectly.
9350
9351 A description of the accepted options follows.
9352
9353 @table @option
9354 @item max
9355 Set the maximum number of consecutive frames which can be dropped (if
9356 positive), or the minimum interval between dropped frames (if
9357 negative). If the value is 0, the frame is dropped unregarding the
9358 number of previous sequentially dropped frames.
9359
9360 Default value is 0.
9361
9362 @item hi
9363 @item lo
9364 @item frac
9365 Set the dropping threshold values.
9366
9367 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9368 represent actual pixel value differences, so a threshold of 64
9369 corresponds to 1 unit of difference for each pixel, or the same spread
9370 out differently over the block.
9371
9372 A frame is a candidate for dropping if no 8x8 blocks differ by more
9373 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9374 meaning the whole image) differ by more than a threshold of @option{lo}.
9375
9376 Default value for @option{hi} is 64*12, default value for @option{lo} is
9377 64*5, and default value for @option{frac} is 0.33.
9378 @end table
9379
9380
9381 @section negate
9382
9383 Negate input video.
9384
9385 It accepts an integer in input; if non-zero it negates the
9386 alpha component (if available). The default value in input is 0.
9387
9388 @section nnedi
9389
9390 Deinterlace video using neural network edge directed interpolation.
9391
9392 This filter accepts the following options:
9393
9394 @table @option
9395 @item weights
9396 Mandatory option, without binary file filter can not work.
9397 Currently file can be found here:
9398 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9399
9400 @item deint
9401 Set which frames to deinterlace, by default it is @code{all}.
9402 Can be @code{all} or @code{interlaced}.
9403
9404 @item field
9405 Set mode of operation.
9406
9407 Can be one of the following:
9408
9409 @table @samp
9410 @item af
9411 Use frame flags, both fields.
9412 @item a
9413 Use frame flags, single field.
9414 @item t
9415 Use top field only.
9416 @item b
9417 Use bottom field only.
9418 @item tf
9419 Use both fields, top first.
9420 @item bf
9421 Use both fields, bottom first.
9422 @end table
9423
9424 @item planes
9425 Set which planes to process, by default filter process all frames.
9426
9427 @item nsize
9428 Set size of local neighborhood around each pixel, used by the predictor neural
9429 network.
9430
9431 Can be one of the following:
9432
9433 @table @samp
9434 @item s8x6
9435 @item s16x6
9436 @item s32x6
9437 @item s48x6
9438 @item s8x4
9439 @item s16x4
9440 @item s32x4
9441 @end table
9442
9443 @item nns
9444 Set the number of neurons in predicctor neural network.
9445 Can be one of the following:
9446
9447 @table @samp
9448 @item n16
9449 @item n32
9450 @item n64
9451 @item n128
9452 @item n256
9453 @end table
9454
9455 @item qual
9456 Controls the number of different neural network predictions that are blended
9457 together to compute the final output value. Can be @code{fast}, default or
9458 @code{slow}.
9459
9460 @item etype
9461 Set which set of weights to use in the predictor.
9462 Can be one of the following:
9463
9464 @table @samp
9465 @item a
9466 weights trained to minimize absolute error
9467 @item s
9468 weights trained to minimize squared error
9469 @end table
9470
9471 @item pscrn
9472 Controls whether or not the prescreener neural network is used to decide
9473 which pixels should be processed by the predictor neural network and which
9474 can be handled by simple cubic interpolation.
9475 The prescreener is trained to know whether cubic interpolation will be
9476 sufficient for a pixel or whether it should be predicted by the predictor nn.
9477 The computational complexity of the prescreener nn is much less than that of
9478 the predictor nn. Since most pixels can be handled by cubic interpolation,
9479 using the prescreener generally results in much faster processing.
9480 The prescreener is pretty accurate, so the difference between using it and not
9481 using it is almost always unnoticeable.
9482
9483 Can be one of the following:
9484
9485 @table @samp
9486 @item none
9487 @item original
9488 @item new
9489 @end table
9490
9491 Default is @code{new}.
9492
9493 @item fapprox
9494 Set various debugging flags.
9495 @end table
9496
9497 @section noformat
9498
9499 Force libavfilter not to use any of the specified pixel formats for the
9500 input to the next filter.
9501
9502 It accepts the following parameters:
9503 @table @option
9504
9505 @item pix_fmts
9506 A '|'-separated list of pixel format names, such as
9507 apix_fmts=yuv420p|monow|rgb24".
9508
9509 @end table
9510
9511 @subsection Examples
9512
9513 @itemize
9514 @item
9515 Force libavfilter to use a format different from @var{yuv420p} for the
9516 input to the vflip filter:
9517 @example
9518 noformat=pix_fmts=yuv420p,vflip
9519 @end example
9520
9521 @item
9522 Convert the input video to any of the formats not contained in the list:
9523 @example
9524 noformat=yuv420p|yuv444p|yuv410p
9525 @end example
9526 @end itemize
9527
9528 @section noise
9529
9530 Add noise on video input frame.
9531
9532 The filter accepts the following options:
9533
9534 @table @option
9535 @item all_seed
9536 @item c0_seed
9537 @item c1_seed
9538 @item c2_seed
9539 @item c3_seed
9540 Set noise seed for specific pixel component or all pixel components in case
9541 of @var{all_seed}. Default value is @code{123457}.
9542
9543 @item all_strength, alls
9544 @item c0_strength, c0s
9545 @item c1_strength, c1s
9546 @item c2_strength, c2s
9547 @item c3_strength, c3s
9548 Set noise strength for specific pixel component or all pixel components in case
9549 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
9550
9551 @item all_flags, allf
9552 @item c0_flags, c0f
9553 @item c1_flags, c1f
9554 @item c2_flags, c2f
9555 @item c3_flags, c3f
9556 Set pixel component flags or set flags for all components if @var{all_flags}.
9557 Available values for component flags are:
9558 @table @samp
9559 @item a
9560 averaged temporal noise (smoother)
9561 @item p
9562 mix random noise with a (semi)regular pattern
9563 @item t
9564 temporal noise (noise pattern changes between frames)
9565 @item u
9566 uniform noise (gaussian otherwise)
9567 @end table
9568 @end table
9569
9570 @subsection Examples
9571
9572 Add temporal and uniform noise to input video:
9573 @example
9574 noise=alls=20:allf=t+u
9575 @end example
9576
9577 @section null
9578
9579 Pass the video source unchanged to the output.
9580
9581 @section ocr
9582 Optical Character Recognition
9583
9584 This filter uses Tesseract for optical character recognition.
9585
9586 It accepts the following options:
9587
9588 @table @option
9589 @item datapath
9590 Set datapath to tesseract data. Default is to use whatever was
9591 set at installation.
9592
9593 @item language
9594 Set language, default is "eng".
9595
9596 @item whitelist
9597 Set character whitelist.
9598
9599 @item blacklist
9600 Set character blacklist.
9601 @end table
9602
9603 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
9604
9605 @section ocv
9606
9607 Apply a video transform using libopencv.
9608
9609 To enable this filter, install the libopencv library and headers and
9610 configure FFmpeg with @code{--enable-libopencv}.
9611
9612 It accepts the following parameters:
9613
9614 @table @option
9615
9616 @item filter_name
9617 The name of the libopencv filter to apply.
9618
9619 @item filter_params
9620 The parameters to pass to the libopencv filter. If not specified, the default
9621 values are assumed.
9622
9623 @end table
9624
9625 Refer to the official libopencv documentation for more precise
9626 information:
9627 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
9628
9629 Several libopencv filters are supported; see the following subsections.
9630
9631 @anchor{dilate}
9632 @subsection dilate
9633
9634 Dilate an image by using a specific structuring element.
9635 It corresponds to the libopencv function @code{cvDilate}.
9636
9637 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
9638
9639 @var{struct_el} represents a structuring element, and has the syntax:
9640 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
9641
9642 @var{cols} and @var{rows} represent the number of columns and rows of
9643 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
9644 point, and @var{shape} the shape for the structuring element. @var{shape}
9645 must be "rect", "cross", "ellipse", or "custom".
9646
9647 If the value for @var{shape} is "custom", it must be followed by a
9648 string of the form "=@var{filename}". The file with name
9649 @var{filename} is assumed to represent a binary image, with each
9650 printable character corresponding to a bright pixel. When a custom
9651 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
9652 or columns and rows of the read file are assumed instead.
9653
9654 The default value for @var{struct_el} is "3x3+0x0/rect".
9655
9656 @var{nb_iterations} specifies the number of times the transform is
9657 applied to the image, and defaults to 1.
9658
9659 Some examples:
9660 @example
9661 # Use the default values
9662 ocv=dilate
9663
9664 # Dilate using a structuring element with a 5x5 cross, iterating two times
9665 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
9666
9667 # Read the shape from the file diamond.shape, iterating two times.
9668 # The file diamond.shape may contain a pattern of characters like this
9669 #   *
9670 #  ***
9671 # *****
9672 #  ***
9673 #   *
9674 # The specified columns and rows are ignored
9675 # but the anchor point coordinates are not
9676 ocv=dilate:0x0+2x2/custom=diamond.shape|2
9677 @end example
9678
9679 @subsection erode
9680
9681 Erode an image by using a specific structuring element.
9682 It corresponds to the libopencv function @code{cvErode}.
9683
9684 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
9685 with the same syntax and semantics as the @ref{dilate} filter.
9686
9687 @subsection smooth
9688
9689 Smooth the input video.
9690
9691 The filter takes the following parameters:
9692 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
9693
9694 @var{type} is the type of smooth filter to apply, and must be one of
9695 the following values: "blur", "blur_no_scale", "median", "gaussian",
9696 or "bilateral". The default value is "gaussian".
9697
9698 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
9699 depend on the smooth type. @var{param1} and
9700 @var{param2} accept integer positive values or 0. @var{param3} and
9701 @var{param4} accept floating point values.
9702
9703 The default value for @var{param1} is 3. The default value for the
9704 other parameters is 0.
9705
9706 These parameters correspond to the parameters assigned to the
9707 libopencv function @code{cvSmooth}.
9708
9709 @anchor{overlay}
9710 @section overlay
9711
9712 Overlay one video on top of another.
9713
9714 It takes two inputs and has one output. The first input is the "main"
9715 video on which the second input is overlaid.
9716
9717 It accepts the following parameters:
9718
9719 A description of the accepted options follows.
9720
9721 @table @option
9722 @item x
9723 @item y
9724 Set the expression for the x and y coordinates of the overlaid video
9725 on the main video. Default value is "0" for both expressions. In case
9726 the expression is invalid, it is set to a huge value (meaning that the
9727 overlay will not be displayed within the output visible area).
9728
9729 @item eof_action
9730 The action to take when EOF is encountered on the secondary input; it accepts
9731 one of the following values:
9732
9733 @table @option
9734 @item repeat
9735 Repeat the last frame (the default).
9736 @item endall
9737 End both streams.
9738 @item pass
9739 Pass the main input through.
9740 @end table
9741
9742 @item eval
9743 Set when the expressions for @option{x}, and @option{y} are evaluated.
9744
9745 It accepts the following values:
9746 @table @samp
9747 @item init
9748 only evaluate expressions once during the filter initialization or
9749 when a command is processed
9750
9751 @item frame
9752 evaluate expressions for each incoming frame
9753 @end table
9754
9755 Default value is @samp{frame}.
9756
9757 @item shortest
9758 If set to 1, force the output to terminate when the shortest input
9759 terminates. Default value is 0.
9760
9761 @item format
9762 Set the format for the output video.
9763
9764 It accepts the following values:
9765 @table @samp
9766 @item yuv420
9767 force YUV420 output
9768
9769 @item yuv422
9770 force YUV422 output
9771
9772 @item yuv444
9773 force YUV444 output
9774
9775 @item rgb
9776 force RGB output
9777 @end table
9778
9779 Default value is @samp{yuv420}.
9780
9781 @item rgb @emph{(deprecated)}
9782 If set to 1, force the filter to accept inputs in the RGB
9783 color space. Default value is 0. This option is deprecated, use
9784 @option{format} instead.
9785
9786 @item repeatlast
9787 If set to 1, force the filter to draw the last overlay frame over the
9788 main input until the end of the stream. A value of 0 disables this
9789 behavior. Default value is 1.
9790 @end table
9791
9792 The @option{x}, and @option{y} expressions can contain the following
9793 parameters.
9794
9795 @table @option
9796 @item main_w, W
9797 @item main_h, H
9798 The main input width and height.
9799
9800 @item overlay_w, w
9801 @item overlay_h, h
9802 The overlay input width and height.
9803
9804 @item x
9805 @item y
9806 The computed values for @var{x} and @var{y}. They are evaluated for
9807 each new frame.
9808
9809 @item hsub
9810 @item vsub
9811 horizontal and vertical chroma subsample values of the output
9812 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
9813 @var{vsub} is 1.
9814
9815 @item n
9816 the number of input frame, starting from 0
9817
9818 @item pos
9819 the position in the file of the input frame, NAN if unknown
9820
9821 @item t
9822 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
9823
9824 @end table
9825
9826 Note that the @var{n}, @var{pos}, @var{t} variables are available only
9827 when evaluation is done @emph{per frame}, and will evaluate to NAN
9828 when @option{eval} is set to @samp{init}.
9829
9830 Be aware that frames are taken from each input video in timestamp
9831 order, hence, if their initial timestamps differ, it is a good idea
9832 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
9833 have them begin in the same zero timestamp, as the example for
9834 the @var{movie} filter does.
9835
9836 You can chain together more overlays but you should test the
9837 efficiency of such approach.
9838
9839 @subsection Commands
9840
9841 This filter supports the following commands:
9842 @table @option
9843 @item x
9844 @item y
9845 Modify the x and y of the overlay input.
9846 The command accepts the same syntax of the corresponding option.
9847
9848 If the specified expression is not valid, it is kept at its current
9849 value.
9850 @end table
9851
9852 @subsection Examples
9853
9854 @itemize
9855 @item
9856 Draw the overlay at 10 pixels from the bottom right corner of the main
9857 video:
9858 @example
9859 overlay=main_w-overlay_w-10:main_h-overlay_h-10
9860 @end example
9861
9862 Using named options the example above becomes:
9863 @example
9864 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
9865 @end example
9866
9867 @item
9868 Insert a transparent PNG logo in the bottom left corner of the input,
9869 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
9870 @example
9871 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
9872 @end example
9873
9874 @item
9875 Insert 2 different transparent PNG logos (second logo on bottom
9876 right corner) using the @command{ffmpeg} tool:
9877 @example
9878 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
9879 @end example
9880
9881 @item
9882 Add a transparent color layer on top of the main video; @code{WxH}
9883 must specify the size of the main input to the overlay filter:
9884 @example
9885 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
9886 @end example
9887
9888 @item
9889 Play an original video and a filtered version (here with the deshake
9890 filter) side by side using the @command{ffplay} tool:
9891 @example
9892 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
9893 @end example
9894
9895 The above command is the same as:
9896 @example
9897 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
9898 @end example
9899
9900 @item
9901 Make a sliding overlay appearing from the left to the right top part of the
9902 screen starting since time 2:
9903 @example
9904 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
9905 @end example
9906
9907 @item
9908 Compose output by putting two input videos side to side:
9909 @example
9910 ffmpeg -i left.avi -i right.avi -filter_complex "
9911 nullsrc=size=200x100 [background];
9912 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
9913 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
9914 [background][left]       overlay=shortest=1       [background+left];
9915 [background+left][right] overlay=shortest=1:x=100 [left+right]
9916 "
9917 @end example
9918
9919 @item
9920 Mask 10-20 seconds of a video by applying the delogo filter to a section
9921 @example
9922 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
9923 -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]'
9924 masked.avi
9925 @end example
9926
9927 @item
9928 Chain several overlays in cascade:
9929 @example
9930 nullsrc=s=200x200 [bg];
9931 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
9932 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
9933 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
9934 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
9935 [in3] null,       [mid2] overlay=100:100 [out0]
9936 @end example
9937
9938 @end itemize
9939
9940 @section owdenoise
9941
9942 Apply Overcomplete Wavelet denoiser.
9943
9944 The filter accepts the following options:
9945
9946 @table @option
9947 @item depth
9948 Set depth.
9949
9950 Larger depth values will denoise lower frequency components more, but
9951 slow down filtering.
9952
9953 Must be an int in the range 8-16, default is @code{8}.
9954
9955 @item luma_strength, ls
9956 Set luma strength.
9957
9958 Must be a double value in the range 0-1000, default is @code{1.0}.
9959
9960 @item chroma_strength, cs
9961 Set chroma strength.
9962
9963 Must be a double value in the range 0-1000, default is @code{1.0}.
9964 @end table
9965
9966 @anchor{pad}
9967 @section pad
9968
9969 Add paddings to the input image, and place the original input at the
9970 provided @var{x}, @var{y} coordinates.
9971
9972 It accepts the following parameters:
9973
9974 @table @option
9975 @item width, w
9976 @item height, h
9977 Specify an expression for the size of the output image with the
9978 paddings added. If the value for @var{width} or @var{height} is 0, the
9979 corresponding input size is used for the output.
9980
9981 The @var{width} expression can reference the value set by the
9982 @var{height} expression, and vice versa.
9983
9984 The default value of @var{width} and @var{height} is 0.
9985
9986 @item x
9987 @item y
9988 Specify the offsets to place the input image at within the padded area,
9989 with respect to the top/left border of the output image.
9990
9991 The @var{x} expression can reference the value set by the @var{y}
9992 expression, and vice versa.
9993
9994 The default value of @var{x} and @var{y} is 0.
9995
9996 @item color
9997 Specify the color of the padded area. For the syntax of this option,
9998 check the "Color" section in the ffmpeg-utils manual.
9999
10000 The default value of @var{color} is "black".
10001 @end table
10002
10003 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10004 options are expressions containing the following constants:
10005
10006 @table @option
10007 @item in_w
10008 @item in_h
10009 The input video width and height.
10010
10011 @item iw
10012 @item ih
10013 These are the same as @var{in_w} and @var{in_h}.
10014
10015 @item out_w
10016 @item out_h
10017 The output width and height (the size of the padded area), as
10018 specified by the @var{width} and @var{height} expressions.
10019
10020 @item ow
10021 @item oh
10022 These are the same as @var{out_w} and @var{out_h}.
10023
10024 @item x
10025 @item y
10026 The x and y offsets as specified by the @var{x} and @var{y}
10027 expressions, or NAN if not yet specified.
10028
10029 @item a
10030 same as @var{iw} / @var{ih}
10031
10032 @item sar
10033 input sample aspect ratio
10034
10035 @item dar
10036 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10037
10038 @item hsub
10039 @item vsub
10040 The horizontal and vertical chroma subsample values. For example for the
10041 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10042 @end table
10043
10044 @subsection Examples
10045
10046 @itemize
10047 @item
10048 Add paddings with the color "violet" to the input video. The output video
10049 size is 640x480, and the top-left corner of the input video is placed at
10050 column 0, row 40
10051 @example
10052 pad=640:480:0:40:violet
10053 @end example
10054
10055 The example above is equivalent to the following command:
10056 @example
10057 pad=width=640:height=480:x=0:y=40:color=violet
10058 @end example
10059
10060 @item
10061 Pad the input to get an output with dimensions increased by 3/2,
10062 and put the input video at the center of the padded area:
10063 @example
10064 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10065 @end example
10066
10067 @item
10068 Pad the input to get a squared output with size equal to the maximum
10069 value between the input width and height, and put the input video at
10070 the center of the padded area:
10071 @example
10072 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10073 @end example
10074
10075 @item
10076 Pad the input to get a final w/h ratio of 16:9:
10077 @example
10078 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10079 @end example
10080
10081 @item
10082 In case of anamorphic video, in order to set the output display aspect
10083 correctly, it is necessary to use @var{sar} in the expression,
10084 according to the relation:
10085 @example
10086 (ih * X / ih) * sar = output_dar
10087 X = output_dar / sar
10088 @end example
10089
10090 Thus the previous example needs to be modified to:
10091 @example
10092 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10093 @end example
10094
10095 @item
10096 Double the output size and put the input video in the bottom-right
10097 corner of the output padded area:
10098 @example
10099 pad="2*iw:2*ih:ow-iw:oh-ih"
10100 @end example
10101 @end itemize
10102
10103 @anchor{palettegen}
10104 @section palettegen
10105
10106 Generate one palette for a whole video stream.
10107
10108 It accepts the following options:
10109
10110 @table @option
10111 @item max_colors
10112 Set the maximum number of colors to quantize in the palette.
10113 Note: the palette will still contain 256 colors; the unused palette entries
10114 will be black.
10115
10116 @item reserve_transparent
10117 Create a palette of 255 colors maximum and reserve the last one for
10118 transparency. Reserving the transparency color is useful for GIF optimization.
10119 If not set, the maximum of colors in the palette will be 256. You probably want
10120 to disable this option for a standalone image.
10121 Set by default.
10122
10123 @item stats_mode
10124 Set statistics mode.
10125
10126 It accepts the following values:
10127 @table @samp
10128 @item full
10129 Compute full frame histograms.
10130 @item diff
10131 Compute histograms only for the part that differs from previous frame. This
10132 might be relevant to give more importance to the moving part of your input if
10133 the background is static.
10134 @end table
10135
10136 Default value is @var{full}.
10137 @end table
10138
10139 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10140 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10141 color quantization of the palette. This information is also visible at
10142 @var{info} logging level.
10143
10144 @subsection Examples
10145
10146 @itemize
10147 @item
10148 Generate a representative palette of a given video using @command{ffmpeg}:
10149 @example
10150 ffmpeg -i input.mkv -vf palettegen palette.png
10151 @end example
10152 @end itemize
10153
10154 @section paletteuse
10155
10156 Use a palette to downsample an input video stream.
10157
10158 The filter takes two inputs: one video stream and a palette. The palette must
10159 be a 256 pixels image.
10160
10161 It accepts the following options:
10162
10163 @table @option
10164 @item dither
10165 Select dithering mode. Available algorithms are:
10166 @table @samp
10167 @item bayer
10168 Ordered 8x8 bayer dithering (deterministic)
10169 @item heckbert
10170 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10171 Note: this dithering is sometimes considered "wrong" and is included as a
10172 reference.
10173 @item floyd_steinberg
10174 Floyd and Steingberg dithering (error diffusion)
10175 @item sierra2
10176 Frankie Sierra dithering v2 (error diffusion)
10177 @item sierra2_4a
10178 Frankie Sierra dithering v2 "Lite" (error diffusion)
10179 @end table
10180
10181 Default is @var{sierra2_4a}.
10182
10183 @item bayer_scale
10184 When @var{bayer} dithering is selected, this option defines the scale of the
10185 pattern (how much the crosshatch pattern is visible). A low value means more
10186 visible pattern for less banding, and higher value means less visible pattern
10187 at the cost of more banding.
10188
10189 The option must be an integer value in the range [0,5]. Default is @var{2}.
10190
10191 @item diff_mode
10192 If set, define the zone to process
10193
10194 @table @samp
10195 @item rectangle
10196 Only the changing rectangle will be reprocessed. This is similar to GIF
10197 cropping/offsetting compression mechanism. This option can be useful for speed
10198 if only a part of the image is changing, and has use cases such as limiting the
10199 scope of the error diffusal @option{dither} to the rectangle that bounds the
10200 moving scene (it leads to more deterministic output if the scene doesn't change
10201 much, and as a result less moving noise and better GIF compression).
10202 @end table
10203
10204 Default is @var{none}.
10205 @end table
10206
10207 @subsection Examples
10208
10209 @itemize
10210 @item
10211 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10212 using @command{ffmpeg}:
10213 @example
10214 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10215 @end example
10216 @end itemize
10217
10218 @section perspective
10219
10220 Correct perspective of video not recorded perpendicular to the screen.
10221
10222 A description of the accepted parameters follows.
10223
10224 @table @option
10225 @item x0
10226 @item y0
10227 @item x1
10228 @item y1
10229 @item x2
10230 @item y2
10231 @item x3
10232 @item y3
10233 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10234 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10235 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10236 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10237 then the corners of the source will be sent to the specified coordinates.
10238
10239 The expressions can use the following variables:
10240
10241 @table @option
10242 @item W
10243 @item H
10244 the width and height of video frame.
10245 @item in
10246 Input frame count.
10247 @item on
10248 Output frame count.
10249 @end table
10250
10251 @item interpolation
10252 Set interpolation for perspective correction.
10253
10254 It accepts the following values:
10255 @table @samp
10256 @item linear
10257 @item cubic
10258 @end table
10259
10260 Default value is @samp{linear}.
10261
10262 @item sense
10263 Set interpretation of coordinate options.
10264
10265 It accepts the following values:
10266 @table @samp
10267 @item 0, source
10268
10269 Send point in the source specified by the given coordinates to
10270 the corners of the destination.
10271
10272 @item 1, destination
10273
10274 Send the corners of the source to the point in the destination specified
10275 by the given coordinates.
10276
10277 Default value is @samp{source}.
10278 @end table
10279
10280 @item eval
10281 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10282
10283 It accepts the following values:
10284 @table @samp
10285 @item init
10286 only evaluate expressions once during the filter initialization or
10287 when a command is processed
10288
10289 @item frame
10290 evaluate expressions for each incoming frame
10291 @end table
10292
10293 Default value is @samp{init}.
10294 @end table
10295
10296 @section phase
10297
10298 Delay interlaced video by one field time so that the field order changes.
10299
10300 The intended use is to fix PAL movies that have been captured with the
10301 opposite field order to the film-to-video transfer.
10302
10303 A description of the accepted parameters follows.
10304
10305 @table @option
10306 @item mode
10307 Set phase mode.
10308
10309 It accepts the following values:
10310 @table @samp
10311 @item t
10312 Capture field order top-first, transfer bottom-first.
10313 Filter will delay the bottom field.
10314
10315 @item b
10316 Capture field order bottom-first, transfer top-first.
10317 Filter will delay the top field.
10318
10319 @item p
10320 Capture and transfer with the same field order. This mode only exists
10321 for the documentation of the other options to refer to, but if you
10322 actually select it, the filter will faithfully do nothing.
10323
10324 @item a
10325 Capture field order determined automatically by field flags, transfer
10326 opposite.
10327 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
10328 basis using field flags. If no field information is available,
10329 then this works just like @samp{u}.
10330
10331 @item u
10332 Capture unknown or varying, transfer opposite.
10333 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
10334 analyzing the images and selecting the alternative that produces best
10335 match between the fields.
10336
10337 @item T
10338 Capture top-first, transfer unknown or varying.
10339 Filter selects among @samp{t} and @samp{p} using image analysis.
10340
10341 @item B
10342 Capture bottom-first, transfer unknown or varying.
10343 Filter selects among @samp{b} and @samp{p} using image analysis.
10344
10345 @item A
10346 Capture determined by field flags, transfer unknown or varying.
10347 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
10348 image analysis. If no field information is available, then this works just
10349 like @samp{U}. This is the default mode.
10350
10351 @item U
10352 Both capture and transfer unknown or varying.
10353 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
10354 @end table
10355 @end table
10356
10357 @section pixdesctest
10358
10359 Pixel format descriptor test filter, mainly useful for internal
10360 testing. The output video should be equal to the input video.
10361
10362 For example:
10363 @example
10364 format=monow, pixdesctest
10365 @end example
10366
10367 can be used to test the monowhite pixel format descriptor definition.
10368
10369 @section pp
10370
10371 Enable the specified chain of postprocessing subfilters using libpostproc. This
10372 library should be automatically selected with a GPL build (@code{--enable-gpl}).
10373 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
10374 Each subfilter and some options have a short and a long name that can be used
10375 interchangeably, i.e. dr/dering are the same.
10376
10377 The filters accept the following options:
10378
10379 @table @option
10380 @item subfilters
10381 Set postprocessing subfilters string.
10382 @end table
10383
10384 All subfilters share common options to determine their scope:
10385
10386 @table @option
10387 @item a/autoq
10388 Honor the quality commands for this subfilter.
10389
10390 @item c/chrom
10391 Do chrominance filtering, too (default).
10392
10393 @item y/nochrom
10394 Do luminance filtering only (no chrominance).
10395
10396 @item n/noluma
10397 Do chrominance filtering only (no luminance).
10398 @end table
10399
10400 These options can be appended after the subfilter name, separated by a '|'.
10401
10402 Available subfilters are:
10403
10404 @table @option
10405 @item hb/hdeblock[|difference[|flatness]]
10406 Horizontal deblocking filter
10407 @table @option
10408 @item difference
10409 Difference factor where higher values mean more deblocking (default: @code{32}).
10410 @item flatness
10411 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10412 @end table
10413
10414 @item vb/vdeblock[|difference[|flatness]]
10415 Vertical deblocking filter
10416 @table @option
10417 @item difference
10418 Difference factor where higher values mean more deblocking (default: @code{32}).
10419 @item flatness
10420 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10421 @end table
10422
10423 @item ha/hadeblock[|difference[|flatness]]
10424 Accurate horizontal deblocking filter
10425 @table @option
10426 @item difference
10427 Difference factor where higher values mean more deblocking (default: @code{32}).
10428 @item flatness
10429 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10430 @end table
10431
10432 @item va/vadeblock[|difference[|flatness]]
10433 Accurate vertical deblocking filter
10434 @table @option
10435 @item difference
10436 Difference factor where higher values mean more deblocking (default: @code{32}).
10437 @item flatness
10438 Flatness threshold where lower values mean more deblocking (default: @code{39}).
10439 @end table
10440 @end table
10441
10442 The horizontal and vertical deblocking filters share the difference and
10443 flatness values so you cannot set different horizontal and vertical
10444 thresholds.
10445
10446 @table @option
10447 @item h1/x1hdeblock
10448 Experimental horizontal deblocking filter
10449
10450 @item v1/x1vdeblock
10451 Experimental vertical deblocking filter
10452
10453 @item dr/dering
10454 Deringing filter
10455
10456 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
10457 @table @option
10458 @item threshold1
10459 larger -> stronger filtering
10460 @item threshold2
10461 larger -> stronger filtering
10462 @item threshold3
10463 larger -> stronger filtering
10464 @end table
10465
10466 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
10467 @table @option
10468 @item f/fullyrange
10469 Stretch luminance to @code{0-255}.
10470 @end table
10471
10472 @item lb/linblenddeint
10473 Linear blend deinterlacing filter that deinterlaces the given block by
10474 filtering all lines with a @code{(1 2 1)} filter.
10475
10476 @item li/linipoldeint
10477 Linear interpolating deinterlacing filter that deinterlaces the given block by
10478 linearly interpolating every second line.
10479
10480 @item ci/cubicipoldeint
10481 Cubic interpolating deinterlacing filter deinterlaces the given block by
10482 cubically interpolating every second line.
10483
10484 @item md/mediandeint
10485 Median deinterlacing filter that deinterlaces the given block by applying a
10486 median filter to every second line.
10487
10488 @item fd/ffmpegdeint
10489 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
10490 second line with a @code{(-1 4 2 4 -1)} filter.
10491
10492 @item l5/lowpass5
10493 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
10494 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
10495
10496 @item fq/forceQuant[|quantizer]
10497 Overrides the quantizer table from the input with the constant quantizer you
10498 specify.
10499 @table @option
10500 @item quantizer
10501 Quantizer to use
10502 @end table
10503
10504 @item de/default
10505 Default pp filter combination (@code{hb|a,vb|a,dr|a})
10506
10507 @item fa/fast
10508 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
10509
10510 @item ac
10511 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
10512 @end table
10513
10514 @subsection Examples
10515
10516 @itemize
10517 @item
10518 Apply horizontal and vertical deblocking, deringing and automatic
10519 brightness/contrast:
10520 @example
10521 pp=hb/vb/dr/al
10522 @end example
10523
10524 @item
10525 Apply default filters without brightness/contrast correction:
10526 @example
10527 pp=de/-al
10528 @end example
10529
10530 @item
10531 Apply default filters and temporal denoiser:
10532 @example
10533 pp=default/tmpnoise|1|2|3
10534 @end example
10535
10536 @item
10537 Apply deblocking on luminance only, and switch vertical deblocking on or off
10538 automatically depending on available CPU time:
10539 @example
10540 pp=hb|y/vb|a
10541 @end example
10542 @end itemize
10543
10544 @section pp7
10545 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
10546 similar to spp = 6 with 7 point DCT, where only the center sample is
10547 used after IDCT.
10548
10549 The filter accepts the following options:
10550
10551 @table @option
10552 @item qp
10553 Force a constant quantization parameter. It accepts an integer in range
10554 0 to 63. If not set, the filter will use the QP from the video stream
10555 (if available).
10556
10557 @item mode
10558 Set thresholding mode. Available modes are:
10559
10560 @table @samp
10561 @item hard
10562 Set hard thresholding.
10563 @item soft
10564 Set soft thresholding (better de-ringing effect, but likely blurrier).
10565 @item medium
10566 Set medium thresholding (good results, default).
10567 @end table
10568 @end table
10569
10570 @section psnr
10571
10572 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
10573 Ratio) between two input videos.
10574
10575 This filter takes in input two input videos, the first input is
10576 considered the "main" source and is passed unchanged to the
10577 output. The second input is used as a "reference" video for computing
10578 the PSNR.
10579
10580 Both video inputs must have the same resolution and pixel format for
10581 this filter to work correctly. Also it assumes that both inputs
10582 have the same number of frames, which are compared one by one.
10583
10584 The obtained average PSNR is printed through the logging system.
10585
10586 The filter stores the accumulated MSE (mean squared error) of each
10587 frame, and at the end of the processing it is averaged across all frames
10588 equally, and the following formula is applied to obtain the PSNR:
10589
10590 @example
10591 PSNR = 10*log10(MAX^2/MSE)
10592 @end example
10593
10594 Where MAX is the average of the maximum values of each component of the
10595 image.
10596
10597 The description of the accepted parameters follows.
10598
10599 @table @option
10600 @item stats_file, f
10601 If specified the filter will use the named file to save the PSNR of
10602 each individual frame. When filename equals "-" the data is sent to
10603 standard output.
10604
10605 @item stats_version
10606 Specifies which version of the stats file format to use. Details of
10607 each format are written below.
10608 Default value is 1.
10609 @end table
10610
10611 The file printed if @var{stats_file} is selected, contains a sequence of
10612 key/value pairs of the form @var{key}:@var{value} for each compared
10613 couple of frames.
10614
10615 If a @var{stats_version} greater than 1 is specified, a header line precedes
10616 the list of per-frame-pair stats, with key value pairs following the frame
10617 format with the following parameters:
10618
10619 @table @option
10620 @item psnr_log_version
10621 The version of the log file format. Will match @var{stats_version}.
10622
10623 @item fields
10624 A comma separated list of the per-frame-pair parameters included in
10625 the log.
10626 @end table
10627
10628 A description of each shown per-frame-pair parameter follows:
10629
10630 @table @option
10631 @item n
10632 sequential number of the input frame, starting from 1
10633
10634 @item mse_avg
10635 Mean Square Error pixel-by-pixel average difference of the compared
10636 frames, averaged over all the image components.
10637
10638 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
10639 Mean Square Error pixel-by-pixel average difference of the compared
10640 frames for the component specified by the suffix.
10641
10642 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
10643 Peak Signal to Noise ratio of the compared frames for the component
10644 specified by the suffix.
10645 @end table
10646
10647 For example:
10648 @example
10649 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10650 [main][ref] psnr="stats_file=stats.log" [out]
10651 @end example
10652
10653 On this example the input file being processed is compared with the
10654 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
10655 is stored in @file{stats.log}.
10656
10657 @anchor{pullup}
10658 @section pullup
10659
10660 Pulldown reversal (inverse telecine) filter, capable of handling mixed
10661 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
10662 content.
10663
10664 The pullup filter is designed to take advantage of future context in making
10665 its decisions. This filter is stateless in the sense that it does not lock
10666 onto a pattern to follow, but it instead looks forward to the following
10667 fields in order to identify matches and rebuild progressive frames.
10668
10669 To produce content with an even framerate, insert the fps filter after
10670 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
10671 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
10672
10673 The filter accepts the following options:
10674
10675 @table @option
10676 @item jl
10677 @item jr
10678 @item jt
10679 @item jb
10680 These options set the amount of "junk" to ignore at the left, right, top, and
10681 bottom of the image, respectively. Left and right are in units of 8 pixels,
10682 while top and bottom are in units of 2 lines.
10683 The default is 8 pixels on each side.
10684
10685 @item sb
10686 Set the strict breaks. Setting this option to 1 will reduce the chances of
10687 filter generating an occasional mismatched frame, but it may also cause an
10688 excessive number of frames to be dropped during high motion sequences.
10689 Conversely, setting it to -1 will make filter match fields more easily.
10690 This may help processing of video where there is slight blurring between
10691 the fields, but may also cause there to be interlaced frames in the output.
10692 Default value is @code{0}.
10693
10694 @item mp
10695 Set the metric plane to use. It accepts the following values:
10696 @table @samp
10697 @item l
10698 Use luma plane.
10699
10700 @item u
10701 Use chroma blue plane.
10702
10703 @item v
10704 Use chroma red plane.
10705 @end table
10706
10707 This option may be set to use chroma plane instead of the default luma plane
10708 for doing filter's computations. This may improve accuracy on very clean
10709 source material, but more likely will decrease accuracy, especially if there
10710 is chroma noise (rainbow effect) or any grayscale video.
10711 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
10712 load and make pullup usable in realtime on slow machines.
10713 @end table
10714
10715 For best results (without duplicated frames in the output file) it is
10716 necessary to change the output frame rate. For example, to inverse
10717 telecine NTSC input:
10718 @example
10719 ffmpeg -i input -vf pullup -r 24000/1001 ...
10720 @end example
10721
10722 @section qp
10723
10724 Change video quantization parameters (QP).
10725
10726 The filter accepts the following option:
10727
10728 @table @option
10729 @item qp
10730 Set expression for quantization parameter.
10731 @end table
10732
10733 The expression is evaluated through the eval API and can contain, among others,
10734 the following constants:
10735
10736 @table @var
10737 @item known
10738 1 if index is not 129, 0 otherwise.
10739
10740 @item qp
10741 Sequentional index starting from -129 to 128.
10742 @end table
10743
10744 @subsection Examples
10745
10746 @itemize
10747 @item
10748 Some equation like:
10749 @example
10750 qp=2+2*sin(PI*qp)
10751 @end example
10752 @end itemize
10753
10754 @section random
10755
10756 Flush video frames from internal cache of frames into a random order.
10757 No frame is discarded.
10758 Inspired by @ref{frei0r} nervous filter.
10759
10760 @table @option
10761 @item frames
10762 Set size in number of frames of internal cache, in range from @code{2} to
10763 @code{512}. Default is @code{30}.
10764
10765 @item seed
10766 Set seed for random number generator, must be an integer included between
10767 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
10768 less than @code{0}, the filter will try to use a good random seed on a
10769 best effort basis.
10770 @end table
10771
10772 @section readvitc
10773
10774 Read vertical interval timecode (VITC) information from the top lines of a
10775 video frame.
10776
10777 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
10778 timecode value, if a valid timecode has been detected. Further metadata key
10779 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
10780 timecode data has been found or not.
10781
10782 This filter accepts the following options:
10783
10784 @table @option
10785 @item scan_max
10786 Set the maximum number of lines to scan for VITC data. If the value is set to
10787 @code{-1} the full video frame is scanned. Default is @code{45}.
10788
10789 @item thr_b
10790 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
10791 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
10792
10793 @item thr_w
10794 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
10795 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
10796 @end table
10797
10798 @subsection Examples
10799
10800 @itemize
10801 @item
10802 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
10803 draw @code{--:--:--:--} as a placeholder:
10804 @example
10805 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
10806 @end example
10807 @end itemize
10808
10809 @section remap
10810
10811 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
10812
10813 Destination pixel at position (X, Y) will be picked from source (x, y) position
10814 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
10815 value for pixel will be used for destination pixel.
10816
10817 Xmap and Ymap input video streams must be of same dimensions. Output video stream
10818 will have Xmap/Ymap video stream dimensions.
10819 Xmap and Ymap input video streams are 16bit depth, single channel.
10820
10821 @section removegrain
10822
10823 The removegrain filter is a spatial denoiser for progressive video.
10824
10825 @table @option
10826 @item m0
10827 Set mode for the first plane.
10828
10829 @item m1
10830 Set mode for the second plane.
10831
10832 @item m2
10833 Set mode for the third plane.
10834
10835 @item m3
10836 Set mode for the fourth plane.
10837 @end table
10838
10839 Range of mode is from 0 to 24. Description of each mode follows:
10840
10841 @table @var
10842 @item 0
10843 Leave input plane unchanged. Default.
10844
10845 @item 1
10846 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
10847
10848 @item 2
10849 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
10850
10851 @item 3
10852 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
10853
10854 @item 4
10855 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
10856 This is equivalent to a median filter.
10857
10858 @item 5
10859 Line-sensitive clipping giving the minimal change.
10860
10861 @item 6
10862 Line-sensitive clipping, intermediate.
10863
10864 @item 7
10865 Line-sensitive clipping, intermediate.
10866
10867 @item 8
10868 Line-sensitive clipping, intermediate.
10869
10870 @item 9
10871 Line-sensitive clipping on a line where the neighbours pixels are the closest.
10872
10873 @item 10
10874 Replaces the target pixel with the closest neighbour.
10875
10876 @item 11
10877 [1 2 1] horizontal and vertical kernel blur.
10878
10879 @item 12
10880 Same as mode 11.
10881
10882 @item 13
10883 Bob mode, interpolates top field from the line where the neighbours
10884 pixels are the closest.
10885
10886 @item 14
10887 Bob mode, interpolates bottom field from the line where the neighbours
10888 pixels are the closest.
10889
10890 @item 15
10891 Bob mode, interpolates top field. Same as 13 but with a more complicated
10892 interpolation formula.
10893
10894 @item 16
10895 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
10896 interpolation formula.
10897
10898 @item 17
10899 Clips the pixel with the minimum and maximum of respectively the maximum and
10900 minimum of each pair of opposite neighbour pixels.
10901
10902 @item 18
10903 Line-sensitive clipping using opposite neighbours whose greatest distance from
10904 the current pixel is minimal.
10905
10906 @item 19
10907 Replaces the pixel with the average of its 8 neighbours.
10908
10909 @item 20
10910 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
10911
10912 @item 21
10913 Clips pixels using the averages of opposite neighbour.
10914
10915 @item 22
10916 Same as mode 21 but simpler and faster.
10917
10918 @item 23
10919 Small edge and halo removal, but reputed useless.
10920
10921 @item 24
10922 Similar as 23.
10923 @end table
10924
10925 @section removelogo
10926
10927 Suppress a TV station logo, using an image file to determine which
10928 pixels comprise the logo. It works by filling in the pixels that
10929 comprise the logo with neighboring pixels.
10930
10931 The filter accepts the following options:
10932
10933 @table @option
10934 @item filename, f
10935 Set the filter bitmap file, which can be any image format supported by
10936 libavformat. The width and height of the image file must match those of the
10937 video stream being processed.
10938 @end table
10939
10940 Pixels in the provided bitmap image with a value of zero are not
10941 considered part of the logo, non-zero pixels are considered part of
10942 the logo. If you use white (255) for the logo and black (0) for the
10943 rest, you will be safe. For making the filter bitmap, it is
10944 recommended to take a screen capture of a black frame with the logo
10945 visible, and then using a threshold filter followed by the erode
10946 filter once or twice.
10947
10948 If needed, little splotches can be fixed manually. Remember that if
10949 logo pixels are not covered, the filter quality will be much
10950 reduced. Marking too many pixels as part of the logo does not hurt as
10951 much, but it will increase the amount of blurring needed to cover over
10952 the image and will destroy more information than necessary, and extra
10953 pixels will slow things down on a large logo.
10954
10955 @section repeatfields
10956
10957 This filter uses the repeat_field flag from the Video ES headers and hard repeats
10958 fields based on its value.
10959
10960 @section reverse
10961
10962 Reverse a video clip.
10963
10964 Warning: This filter requires memory to buffer the entire clip, so trimming
10965 is suggested.
10966
10967 @subsection Examples
10968
10969 @itemize
10970 @item
10971 Take the first 5 seconds of a clip, and reverse it.
10972 @example
10973 trim=end=5,reverse
10974 @end example
10975 @end itemize
10976
10977 @section rotate
10978
10979 Rotate video by an arbitrary angle expressed in radians.
10980
10981 The filter accepts the following options:
10982
10983 A description of the optional parameters follows.
10984 @table @option
10985 @item angle, a
10986 Set an expression for the angle by which to rotate the input video
10987 clockwise, expressed as a number of radians. A negative value will
10988 result in a counter-clockwise rotation. By default it is set to "0".
10989
10990 This expression is evaluated for each frame.
10991
10992 @item out_w, ow
10993 Set the output width expression, default value is "iw".
10994 This expression is evaluated just once during configuration.
10995
10996 @item out_h, oh
10997 Set the output height expression, default value is "ih".
10998 This expression is evaluated just once during configuration.
10999
11000 @item bilinear
11001 Enable bilinear interpolation if set to 1, a value of 0 disables
11002 it. Default value is 1.
11003
11004 @item fillcolor, c
11005 Set the color used to fill the output area not covered by the rotated
11006 image. For the general syntax of this option, check the "Color" section in the
11007 ffmpeg-utils manual. If the special value "none" is selected then no
11008 background is printed (useful for example if the background is never shown).
11009
11010 Default value is "black".
11011 @end table
11012
11013 The expressions for the angle and the output size can contain the
11014 following constants and functions:
11015
11016 @table @option
11017 @item n
11018 sequential number of the input frame, starting from 0. It is always NAN
11019 before the first frame is filtered.
11020
11021 @item t
11022 time in seconds of the input frame, it is set to 0 when the filter is
11023 configured. It is always NAN before the first frame is filtered.
11024
11025 @item hsub
11026 @item vsub
11027 horizontal and vertical chroma subsample values. For example for the
11028 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11029
11030 @item in_w, iw
11031 @item in_h, ih
11032 the input video width and height
11033
11034 @item out_w, ow
11035 @item out_h, oh
11036 the output width and height, that is the size of the padded area as
11037 specified by the @var{width} and @var{height} expressions
11038
11039 @item rotw(a)
11040 @item roth(a)
11041 the minimal width/height required for completely containing the input
11042 video rotated by @var{a} radians.
11043
11044 These are only available when computing the @option{out_w} and
11045 @option{out_h} expressions.
11046 @end table
11047
11048 @subsection Examples
11049
11050 @itemize
11051 @item
11052 Rotate the input by PI/6 radians clockwise:
11053 @example
11054 rotate=PI/6
11055 @end example
11056
11057 @item
11058 Rotate the input by PI/6 radians counter-clockwise:
11059 @example
11060 rotate=-PI/6
11061 @end example
11062
11063 @item
11064 Rotate the input by 45 degrees clockwise:
11065 @example
11066 rotate=45*PI/180
11067 @end example
11068
11069 @item
11070 Apply a constant rotation with period T, starting from an angle of PI/3:
11071 @example
11072 rotate=PI/3+2*PI*t/T
11073 @end example
11074
11075 @item
11076 Make the input video rotation oscillating with a period of T
11077 seconds and an amplitude of A radians:
11078 @example
11079 rotate=A*sin(2*PI/T*t)
11080 @end example
11081
11082 @item
11083 Rotate the video, output size is chosen so that the whole rotating
11084 input video is always completely contained in the output:
11085 @example
11086 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11087 @end example
11088
11089 @item
11090 Rotate the video, reduce the output size so that no background is ever
11091 shown:
11092 @example
11093 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11094 @end example
11095 @end itemize
11096
11097 @subsection Commands
11098
11099 The filter supports the following commands:
11100
11101 @table @option
11102 @item a, angle
11103 Set the angle expression.
11104 The command accepts the same syntax of the corresponding option.
11105
11106 If the specified expression is not valid, it is kept at its current
11107 value.
11108 @end table
11109
11110 @section sab
11111
11112 Apply Shape Adaptive Blur.
11113
11114 The filter accepts the following options:
11115
11116 @table @option
11117 @item luma_radius, lr
11118 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11119 value is 1.0. A greater value will result in a more blurred image, and
11120 in slower processing.
11121
11122 @item luma_pre_filter_radius, lpfr
11123 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11124 value is 1.0.
11125
11126 @item luma_strength, ls
11127 Set luma maximum difference between pixels to still be considered, must
11128 be a value in the 0.1-100.0 range, default value is 1.0.
11129
11130 @item chroma_radius, cr
11131 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11132 greater value will result in a more blurred image, and in slower
11133 processing.
11134
11135 @item chroma_pre_filter_radius, cpfr
11136 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11137
11138 @item chroma_strength, cs
11139 Set chroma maximum difference between pixels to still be considered,
11140 must be a value in the -0.9-100.0 range.
11141 @end table
11142
11143 Each chroma option value, if not explicitly specified, is set to the
11144 corresponding luma option value.
11145
11146 @anchor{scale}
11147 @section scale
11148
11149 Scale (resize) the input video, using the libswscale library.
11150
11151 The scale filter forces the output display aspect ratio to be the same
11152 of the input, by changing the output sample aspect ratio.
11153
11154 If the input image format is different from the format requested by
11155 the next filter, the scale filter will convert the input to the
11156 requested format.
11157
11158 @subsection Options
11159 The filter accepts the following options, or any of the options
11160 supported by the libswscale scaler.
11161
11162 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
11163 the complete list of scaler options.
11164
11165 @table @option
11166 @item width, w
11167 @item height, h
11168 Set the output video dimension expression. Default value is the input
11169 dimension.
11170
11171 If the value is 0, the input width is used for the output.
11172
11173 If one of the values is -1, the scale filter will use a value that
11174 maintains the aspect ratio of the input image, calculated from the
11175 other specified dimension. If both of them are -1, the input size is
11176 used
11177
11178 If one of the values is -n with n > 1, the scale filter will also use a value
11179 that maintains the aspect ratio of the input image, calculated from the other
11180 specified dimension. After that it will, however, make sure that the calculated
11181 dimension is divisible by n and adjust the value if necessary.
11182
11183 See below for the list of accepted constants for use in the dimension
11184 expression.
11185
11186 @item eval
11187 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
11188
11189 @table @samp
11190 @item init
11191 Only evaluate expressions once during the filter initialization or when a command is processed.
11192
11193 @item frame
11194 Evaluate expressions for each incoming frame.
11195
11196 @end table
11197
11198 Default value is @samp{init}.
11199
11200
11201 @item interl
11202 Set the interlacing mode. It accepts the following values:
11203
11204 @table @samp
11205 @item 1
11206 Force interlaced aware scaling.
11207
11208 @item 0
11209 Do not apply interlaced scaling.
11210
11211 @item -1
11212 Select interlaced aware scaling depending on whether the source frames
11213 are flagged as interlaced or not.
11214 @end table
11215
11216 Default value is @samp{0}.
11217
11218 @item flags
11219 Set libswscale scaling flags. See
11220 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11221 complete list of values. If not explicitly specified the filter applies
11222 the default flags.
11223
11224
11225 @item param0, param1
11226 Set libswscale input parameters for scaling algorithms that need them. See
11227 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
11228 complete documentation. If not explicitly specified the filter applies
11229 empty parameters.
11230
11231
11232
11233 @item size, s
11234 Set the video size. For the syntax of this option, check the
11235 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11236
11237 @item in_color_matrix
11238 @item out_color_matrix
11239 Set in/output YCbCr color space type.
11240
11241 This allows the autodetected value to be overridden as well as allows forcing
11242 a specific value used for the output and encoder.
11243
11244 If not specified, the color space type depends on the pixel format.
11245
11246 Possible values:
11247
11248 @table @samp
11249 @item auto
11250 Choose automatically.
11251
11252 @item bt709
11253 Format conforming to International Telecommunication Union (ITU)
11254 Recommendation BT.709.
11255
11256 @item fcc
11257 Set color space conforming to the United States Federal Communications
11258 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
11259
11260 @item bt601
11261 Set color space conforming to:
11262
11263 @itemize
11264 @item
11265 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
11266
11267 @item
11268 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
11269
11270 @item
11271 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
11272
11273 @end itemize
11274
11275 @item smpte240m
11276 Set color space conforming to SMPTE ST 240:1999.
11277 @end table
11278
11279 @item in_range
11280 @item out_range
11281 Set in/output YCbCr sample range.
11282
11283 This allows the autodetected value to be overridden as well as allows forcing
11284 a specific value used for the output and encoder. If not specified, the
11285 range depends on the pixel format. Possible values:
11286
11287 @table @samp
11288 @item auto
11289 Choose automatically.
11290
11291 @item jpeg/full/pc
11292 Set full range (0-255 in case of 8-bit luma).
11293
11294 @item mpeg/tv
11295 Set "MPEG" range (16-235 in case of 8-bit luma).
11296 @end table
11297
11298 @item force_original_aspect_ratio
11299 Enable decreasing or increasing output video width or height if necessary to
11300 keep the original aspect ratio. Possible values:
11301
11302 @table @samp
11303 @item disable
11304 Scale the video as specified and disable this feature.
11305
11306 @item decrease
11307 The output video dimensions will automatically be decreased if needed.
11308
11309 @item increase
11310 The output video dimensions will automatically be increased if needed.
11311
11312 @end table
11313
11314 One useful instance of this option is that when you know a specific device's
11315 maximum allowed resolution, you can use this to limit the output video to
11316 that, while retaining the aspect ratio. For example, device A allows
11317 1280x720 playback, and your video is 1920x800. Using this option (set it to
11318 decrease) and specifying 1280x720 to the command line makes the output
11319 1280x533.
11320
11321 Please note that this is a different thing than specifying -1 for @option{w}
11322 or @option{h}, you still need to specify the output resolution for this option
11323 to work.
11324
11325 @end table
11326
11327 The values of the @option{w} and @option{h} options are expressions
11328 containing the following constants:
11329
11330 @table @var
11331 @item in_w
11332 @item in_h
11333 The input width and height
11334
11335 @item iw
11336 @item ih
11337 These are the same as @var{in_w} and @var{in_h}.
11338
11339 @item out_w
11340 @item out_h
11341 The output (scaled) width and height
11342
11343 @item ow
11344 @item oh
11345 These are the same as @var{out_w} and @var{out_h}
11346
11347 @item a
11348 The same as @var{iw} / @var{ih}
11349
11350 @item sar
11351 input sample aspect ratio
11352
11353 @item dar
11354 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
11355
11356 @item hsub
11357 @item vsub
11358 horizontal and vertical input chroma subsample values. For example for the
11359 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11360
11361 @item ohsub
11362 @item ovsub
11363 horizontal and vertical output chroma subsample values. For example for the
11364 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11365 @end table
11366
11367 @subsection Examples
11368
11369 @itemize
11370 @item
11371 Scale the input video to a size of 200x100
11372 @example
11373 scale=w=200:h=100
11374 @end example
11375
11376 This is equivalent to:
11377 @example
11378 scale=200:100
11379 @end example
11380
11381 or:
11382 @example
11383 scale=200x100
11384 @end example
11385
11386 @item
11387 Specify a size abbreviation for the output size:
11388 @example
11389 scale=qcif
11390 @end example
11391
11392 which can also be written as:
11393 @example
11394 scale=size=qcif
11395 @end example
11396
11397 @item
11398 Scale the input to 2x:
11399 @example
11400 scale=w=2*iw:h=2*ih
11401 @end example
11402
11403 @item
11404 The above is the same as:
11405 @example
11406 scale=2*in_w:2*in_h
11407 @end example
11408
11409 @item
11410 Scale the input to 2x with forced interlaced scaling:
11411 @example
11412 scale=2*iw:2*ih:interl=1
11413 @end example
11414
11415 @item
11416 Scale the input to half size:
11417 @example
11418 scale=w=iw/2:h=ih/2
11419 @end example
11420
11421 @item
11422 Increase the width, and set the height to the same size:
11423 @example
11424 scale=3/2*iw:ow
11425 @end example
11426
11427 @item
11428 Seek Greek harmony:
11429 @example
11430 scale=iw:1/PHI*iw
11431 scale=ih*PHI:ih
11432 @end example
11433
11434 @item
11435 Increase the height, and set the width to 3/2 of the height:
11436 @example
11437 scale=w=3/2*oh:h=3/5*ih
11438 @end example
11439
11440 @item
11441 Increase the size, making the size a multiple of the chroma
11442 subsample values:
11443 @example
11444 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
11445 @end example
11446
11447 @item
11448 Increase the width to a maximum of 500 pixels,
11449 keeping the same aspect ratio as the input:
11450 @example
11451 scale=w='min(500\, iw*3/2):h=-1'
11452 @end example
11453 @end itemize
11454
11455 @subsection Commands
11456
11457 This filter supports the following commands:
11458 @table @option
11459 @item width, w
11460 @item height, h
11461 Set the output video dimension expression.
11462 The command accepts the same syntax of the corresponding option.
11463
11464 If the specified expression is not valid, it is kept at its current
11465 value.
11466 @end table
11467
11468 @section scale_npp
11469
11470 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
11471 format conversion on CUDA video frames. Setting the output width and height
11472 works in the same way as for the @var{scale} filter.
11473
11474 The following additional options are accepted:
11475 @table @option
11476 @item format
11477 The pixel format of the output CUDA frames. If set to the string "same" (the
11478 default), the input format will be kept. Note that automatic format negotiation
11479 and conversion is not yet supported for hardware frames
11480
11481 @item interp_algo
11482 The interpolation algorithm used for resizing. One of the following:
11483 @table @option
11484 @item nn
11485 Nearest neighbour.
11486
11487 @item linear
11488 @item cubic
11489 @item cubic2p_bspline
11490 2-parameter cubic (B=1, C=0)
11491
11492 @item cubic2p_catmullrom
11493 2-parameter cubic (B=0, C=1/2)
11494
11495 @item cubic2p_b05c03
11496 2-parameter cubic (B=1/2, C=3/10)
11497
11498 @item super
11499 Supersampling
11500
11501 @item lanczos
11502 @end table
11503
11504 @end table
11505
11506 @section scale2ref
11507
11508 Scale (resize) the input video, based on a reference video.
11509
11510 See the scale filter for available options, scale2ref supports the same but
11511 uses the reference video instead of the main input as basis.
11512
11513 @subsection Examples
11514
11515 @itemize
11516 @item
11517 Scale a subtitle stream to match the main video in size before overlaying
11518 @example
11519 'scale2ref[b][a];[a][b]overlay'
11520 @end example
11521 @end itemize
11522
11523 @anchor{selectivecolor}
11524 @section selectivecolor
11525
11526 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
11527 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
11528 by the "purity" of the color (that is, how saturated it already is).
11529
11530 This filter is similar to the Adobe Photoshop Selective Color tool.
11531
11532 The filter accepts the following options:
11533
11534 @table @option
11535 @item correction_method
11536 Select color correction method.
11537
11538 Available values are:
11539 @table @samp
11540 @item absolute
11541 Specified adjustments are applied "as-is" (added/subtracted to original pixel
11542 component value).
11543 @item relative
11544 Specified adjustments are relative to the original component value.
11545 @end table
11546 Default is @code{absolute}.
11547 @item reds
11548 Adjustments for red pixels (pixels where the red component is the maximum)
11549 @item yellows
11550 Adjustments for yellow pixels (pixels where the blue component is the minimum)
11551 @item greens
11552 Adjustments for green pixels (pixels where the green component is the maximum)
11553 @item cyans
11554 Adjustments for cyan pixels (pixels where the red component is the minimum)
11555 @item blues
11556 Adjustments for blue pixels (pixels where the blue component is the maximum)
11557 @item magentas
11558 Adjustments for magenta pixels (pixels where the green component is the minimum)
11559 @item whites
11560 Adjustments for white pixels (pixels where all components are greater than 128)
11561 @item neutrals
11562 Adjustments for all pixels except pure black and pure white
11563 @item blacks
11564 Adjustments for black pixels (pixels where all components are lesser than 128)
11565 @item psfile
11566 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
11567 @end table
11568
11569 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
11570 4 space separated floating point adjustment values in the [-1,1] range,
11571 respectively to adjust the amount of cyan, magenta, yellow and black for the
11572 pixels of its range.
11573
11574 @subsection Examples
11575
11576 @itemize
11577 @item
11578 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
11579 increase magenta by 27% in blue areas:
11580 @example
11581 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
11582 @end example
11583
11584 @item
11585 Use a Photoshop selective color preset:
11586 @example
11587 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
11588 @end example
11589 @end itemize
11590
11591 @section separatefields
11592
11593 The @code{separatefields} takes a frame-based video input and splits
11594 each frame into its components fields, producing a new half height clip
11595 with twice the frame rate and twice the frame count.
11596
11597 This filter use field-dominance information in frame to decide which
11598 of each pair of fields to place first in the output.
11599 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
11600
11601 @section setdar, setsar
11602
11603 The @code{setdar} filter sets the Display Aspect Ratio for the filter
11604 output video.
11605
11606 This is done by changing the specified Sample (aka Pixel) Aspect
11607 Ratio, according to the following equation:
11608 @example
11609 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
11610 @end example
11611
11612 Keep in mind that the @code{setdar} filter does not modify the pixel
11613 dimensions of the video frame. Also, the display aspect ratio set by
11614 this filter may be changed by later filters in the filterchain,
11615 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
11616 applied.
11617
11618 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
11619 the filter output video.
11620
11621 Note that as a consequence of the application of this filter, the
11622 output display aspect ratio will change according to the equation
11623 above.
11624
11625 Keep in mind that the sample aspect ratio set by the @code{setsar}
11626 filter may be changed by later filters in the filterchain, e.g. if
11627 another "setsar" or a "setdar" filter is applied.
11628
11629 It accepts the following parameters:
11630
11631 @table @option
11632 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
11633 Set the aspect ratio used by the filter.
11634
11635 The parameter can be a floating point number string, an expression, or
11636 a string of the form @var{num}:@var{den}, where @var{num} and
11637 @var{den} are the numerator and denominator of the aspect ratio. If
11638 the parameter is not specified, it is assumed the value "0".
11639 In case the form "@var{num}:@var{den}" is used, the @code{:} character
11640 should be escaped.
11641
11642 @item max
11643 Set the maximum integer value to use for expressing numerator and
11644 denominator when reducing the expressed aspect ratio to a rational.
11645 Default value is @code{100}.
11646
11647 @end table
11648
11649 The parameter @var{sar} is an expression containing
11650 the following constants:
11651
11652 @table @option
11653 @item E, PI, PHI
11654 These are approximated values for the mathematical constants e
11655 (Euler's number), pi (Greek pi), and phi (the golden ratio).
11656
11657 @item w, h
11658 The input width and height.
11659
11660 @item a
11661 These are the same as @var{w} / @var{h}.
11662
11663 @item sar
11664 The input sample aspect ratio.
11665
11666 @item dar
11667 The input display aspect ratio. It is the same as
11668 (@var{w} / @var{h}) * @var{sar}.
11669
11670 @item hsub, vsub
11671 Horizontal and vertical chroma subsample values. For example, for the
11672 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11673 @end table
11674
11675 @subsection Examples
11676
11677 @itemize
11678
11679 @item
11680 To change the display aspect ratio to 16:9, specify one of the following:
11681 @example
11682 setdar=dar=1.77777
11683 setdar=dar=16/9
11684 @end example
11685
11686 @item
11687 To change the sample aspect ratio to 10:11, specify:
11688 @example
11689 setsar=sar=10/11
11690 @end example
11691
11692 @item
11693 To set a display aspect ratio of 16:9, and specify a maximum integer value of
11694 1000 in the aspect ratio reduction, use the command:
11695 @example
11696 setdar=ratio=16/9:max=1000
11697 @end example
11698
11699 @end itemize
11700
11701 @anchor{setfield}
11702 @section setfield
11703
11704 Force field for the output video frame.
11705
11706 The @code{setfield} filter marks the interlace type field for the
11707 output frames. It does not change the input frame, but only sets the
11708 corresponding property, which affects how the frame is treated by
11709 following filters (e.g. @code{fieldorder} or @code{yadif}).
11710
11711 The filter accepts the following options:
11712
11713 @table @option
11714
11715 @item mode
11716 Available values are:
11717
11718 @table @samp
11719 @item auto
11720 Keep the same field property.
11721
11722 @item bff
11723 Mark the frame as bottom-field-first.
11724
11725 @item tff
11726 Mark the frame as top-field-first.
11727
11728 @item prog
11729 Mark the frame as progressive.
11730 @end table
11731 @end table
11732
11733 @section showinfo
11734
11735 Show a line containing various information for each input video frame.
11736 The input video is not modified.
11737
11738 The shown line contains a sequence of key/value pairs of the form
11739 @var{key}:@var{value}.
11740
11741 The following values are shown in the output:
11742
11743 @table @option
11744 @item n
11745 The (sequential) number of the input frame, starting from 0.
11746
11747 @item pts
11748 The Presentation TimeStamp of the input frame, expressed as a number of
11749 time base units. The time base unit depends on the filter input pad.
11750
11751 @item pts_time
11752 The Presentation TimeStamp of the input frame, expressed as a number of
11753 seconds.
11754
11755 @item pos
11756 The position of the frame in the input stream, or -1 if this information is
11757 unavailable and/or meaningless (for example in case of synthetic video).
11758
11759 @item fmt
11760 The pixel format name.
11761
11762 @item sar
11763 The sample aspect ratio of the input frame, expressed in the form
11764 @var{num}/@var{den}.
11765
11766 @item s
11767 The size of the input frame. For the syntax of this option, check the
11768 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11769
11770 @item i
11771 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
11772 for bottom field first).
11773
11774 @item iskey
11775 This is 1 if the frame is a key frame, 0 otherwise.
11776
11777 @item type
11778 The picture type of the input frame ("I" for an I-frame, "P" for a
11779 P-frame, "B" for a B-frame, or "?" for an unknown type).
11780 Also refer to the documentation of the @code{AVPictureType} enum and of
11781 the @code{av_get_picture_type_char} function defined in
11782 @file{libavutil/avutil.h}.
11783
11784 @item checksum
11785 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
11786
11787 @item plane_checksum
11788 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
11789 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
11790 @end table
11791
11792 @section showpalette
11793
11794 Displays the 256 colors palette of each frame. This filter is only relevant for
11795 @var{pal8} pixel format frames.
11796
11797 It accepts the following option:
11798
11799 @table @option
11800 @item s
11801 Set the size of the box used to represent one palette color entry. Default is
11802 @code{30} (for a @code{30x30} pixel box).
11803 @end table
11804
11805 @section shuffleframes
11806
11807 Reorder and/or duplicate video frames.
11808
11809 It accepts the following parameters:
11810
11811 @table @option
11812 @item mapping
11813 Set the destination indexes of input frames.
11814 This is space or '|' separated list of indexes that maps input frames to output
11815 frames. Number of indexes also sets maximal value that each index may have.
11816 @end table
11817
11818 The first frame has the index 0. The default is to keep the input unchanged.
11819
11820 Swap second and third frame of every three frames of the input:
11821 @example
11822 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
11823 @end example
11824
11825 @section shuffleplanes
11826
11827 Reorder and/or duplicate video planes.
11828
11829 It accepts the following parameters:
11830
11831 @table @option
11832
11833 @item map0
11834 The index of the input plane to be used as the first output plane.
11835
11836 @item map1
11837 The index of the input plane to be used as the second output plane.
11838
11839 @item map2
11840 The index of the input plane to be used as the third output plane.
11841
11842 @item map3
11843 The index of the input plane to be used as the fourth output plane.
11844
11845 @end table
11846
11847 The first plane has the index 0. The default is to keep the input unchanged.
11848
11849 Swap the second and third planes of the input:
11850 @example
11851 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
11852 @end example
11853
11854 @anchor{signalstats}
11855 @section signalstats
11856 Evaluate various visual metrics that assist in determining issues associated
11857 with the digitization of analog video media.
11858
11859 By default the filter will log these metadata values:
11860
11861 @table @option
11862 @item YMIN
11863 Display the minimal Y value contained within the input frame. Expressed in
11864 range of [0-255].
11865
11866 @item YLOW
11867 Display the Y value at the 10% percentile within the input frame. Expressed in
11868 range of [0-255].
11869
11870 @item YAVG
11871 Display the average Y value within the input frame. Expressed in range of
11872 [0-255].
11873
11874 @item YHIGH
11875 Display the Y value at the 90% percentile within the input frame. Expressed in
11876 range of [0-255].
11877
11878 @item YMAX
11879 Display the maximum Y value contained within the input frame. Expressed in
11880 range of [0-255].
11881
11882 @item UMIN
11883 Display the minimal U value contained within the input frame. Expressed in
11884 range of [0-255].
11885
11886 @item ULOW
11887 Display the U value at the 10% percentile within the input frame. Expressed in
11888 range of [0-255].
11889
11890 @item UAVG
11891 Display the average U value within the input frame. Expressed in range of
11892 [0-255].
11893
11894 @item UHIGH
11895 Display the U value at the 90% percentile within the input frame. Expressed in
11896 range of [0-255].
11897
11898 @item UMAX
11899 Display the maximum U value contained within the input frame. Expressed in
11900 range of [0-255].
11901
11902 @item VMIN
11903 Display the minimal V value contained within the input frame. Expressed in
11904 range of [0-255].
11905
11906 @item VLOW
11907 Display the V value at the 10% percentile within the input frame. Expressed in
11908 range of [0-255].
11909
11910 @item VAVG
11911 Display the average V value within the input frame. Expressed in range of
11912 [0-255].
11913
11914 @item VHIGH
11915 Display the V value at the 90% percentile within the input frame. Expressed in
11916 range of [0-255].
11917
11918 @item VMAX
11919 Display the maximum V value contained within the input frame. Expressed in
11920 range of [0-255].
11921
11922 @item SATMIN
11923 Display the minimal saturation value contained within the input frame.
11924 Expressed in range of [0-~181.02].
11925
11926 @item SATLOW
11927 Display the saturation value at the 10% percentile within the input frame.
11928 Expressed in range of [0-~181.02].
11929
11930 @item SATAVG
11931 Display the average saturation value within the input frame. Expressed in range
11932 of [0-~181.02].
11933
11934 @item SATHIGH
11935 Display the saturation value at the 90% percentile within the input frame.
11936 Expressed in range of [0-~181.02].
11937
11938 @item SATMAX
11939 Display the maximum saturation value contained within the input frame.
11940 Expressed in range of [0-~181.02].
11941
11942 @item HUEMED
11943 Display the median value for hue within the input frame. Expressed in range of
11944 [0-360].
11945
11946 @item HUEAVG
11947 Display the average value for hue within the input frame. Expressed in range of
11948 [0-360].
11949
11950 @item YDIF
11951 Display the average of sample value difference between all values of the Y
11952 plane in the current frame and corresponding values of the previous input frame.
11953 Expressed in range of [0-255].
11954
11955 @item UDIF
11956 Display the average of sample value difference between all values of the U
11957 plane in the current frame and corresponding values of the previous input frame.
11958 Expressed in range of [0-255].
11959
11960 @item VDIF
11961 Display the average of sample value difference between all values of the V
11962 plane in the current frame and corresponding values of the previous input frame.
11963 Expressed in range of [0-255].
11964
11965 @item YBITDEPTH
11966 Display bit depth of Y plane in current frame.
11967 Expressed in range of [0-16].
11968
11969 @item UBITDEPTH
11970 Display bit depth of U plane in current frame.
11971 Expressed in range of [0-16].
11972
11973 @item VBITDEPTH
11974 Display bit depth of V plane in current frame.
11975 Expressed in range of [0-16].
11976 @end table
11977
11978 The filter accepts the following options:
11979
11980 @table @option
11981 @item stat
11982 @item out
11983
11984 @option{stat} specify an additional form of image analysis.
11985 @option{out} output video with the specified type of pixel highlighted.
11986
11987 Both options accept the following values:
11988
11989 @table @samp
11990 @item tout
11991 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
11992 unlike the neighboring pixels of the same field. Examples of temporal outliers
11993 include the results of video dropouts, head clogs, or tape tracking issues.
11994
11995 @item vrep
11996 Identify @var{vertical line repetition}. Vertical line repetition includes
11997 similar rows of pixels within a frame. In born-digital video vertical line
11998 repetition is common, but this pattern is uncommon in video digitized from an
11999 analog source. When it occurs in video that results from the digitization of an
12000 analog source it can indicate concealment from a dropout compensator.
12001
12002 @item brng
12003 Identify pixels that fall outside of legal broadcast range.
12004 @end table
12005
12006 @item color, c
12007 Set the highlight color for the @option{out} option. The default color is
12008 yellow.
12009 @end table
12010
12011 @subsection Examples
12012
12013 @itemize
12014 @item
12015 Output data of various video metrics:
12016 @example
12017 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
12018 @end example
12019
12020 @item
12021 Output specific data about the minimum and maximum values of the Y plane per frame:
12022 @example
12023 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
12024 @end example
12025
12026 @item
12027 Playback video while highlighting pixels that are outside of broadcast range in red.
12028 @example
12029 ffplay example.mov -vf signalstats="out=brng:color=red"
12030 @end example
12031
12032 @item
12033 Playback video with signalstats metadata drawn over the frame.
12034 @example
12035 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12036 @end example
12037
12038 The contents of signalstat_drawtext.txt used in the command are:
12039 @example
12040 time %@{pts:hms@}
12041 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12042 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12043 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12044 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12045
12046 @end example
12047 @end itemize
12048
12049 @anchor{smartblur}
12050 @section smartblur
12051
12052 Blur the input video without impacting the outlines.
12053
12054 It accepts the following options:
12055
12056 @table @option
12057 @item luma_radius, lr
12058 Set the luma radius. The option value must be a float number in
12059 the range [0.1,5.0] that specifies the variance of the gaussian filter
12060 used to blur the image (slower if larger). Default value is 1.0.
12061
12062 @item luma_strength, ls
12063 Set the luma strength. The option value must be a float number
12064 in the range [-1.0,1.0] that configures the blurring. A value included
12065 in [0.0,1.0] will blur the image whereas a value included in
12066 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12067
12068 @item luma_threshold, lt
12069 Set the luma threshold used as a coefficient to determine
12070 whether a pixel should be blurred or not. The option value must be an
12071 integer in the range [-30,30]. A value of 0 will filter all the image,
12072 a value included in [0,30] will filter flat areas and a value included
12073 in [-30,0] will filter edges. Default value is 0.
12074
12075 @item chroma_radius, cr
12076 Set the chroma radius. The option value must be a float number in
12077 the range [0.1,5.0] that specifies the variance of the gaussian filter
12078 used to blur the image (slower if larger). Default value is 1.0.
12079
12080 @item chroma_strength, cs
12081 Set the chroma strength. The option value must be a float number
12082 in the range [-1.0,1.0] that configures the blurring. A value included
12083 in [0.0,1.0] will blur the image whereas a value included in
12084 [-1.0,0.0] will sharpen the image. Default value is 1.0.
12085
12086 @item chroma_threshold, ct
12087 Set the chroma threshold used as a coefficient to determine
12088 whether a pixel should be blurred or not. The option value must be an
12089 integer in the range [-30,30]. A value of 0 will filter all the image,
12090 a value included in [0,30] will filter flat areas and a value included
12091 in [-30,0] will filter edges. Default value is 0.
12092 @end table
12093
12094 If a chroma option is not explicitly set, the corresponding luma value
12095 is set.
12096
12097 @section ssim
12098
12099 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
12100
12101 This filter takes in input two input videos, the first input is
12102 considered the "main" source and is passed unchanged to the
12103 output. The second input is used as a "reference" video for computing
12104 the SSIM.
12105
12106 Both video inputs must have the same resolution and pixel format for
12107 this filter to work correctly. Also it assumes that both inputs
12108 have the same number of frames, which are compared one by one.
12109
12110 The filter stores the calculated SSIM of each frame.
12111
12112 The description of the accepted parameters follows.
12113
12114 @table @option
12115 @item stats_file, f
12116 If specified the filter will use the named file to save the SSIM of
12117 each individual frame. When filename equals "-" the data is sent to
12118 standard output.
12119 @end table
12120
12121 The file printed if @var{stats_file} is selected, contains a sequence of
12122 key/value pairs of the form @var{key}:@var{value} for each compared
12123 couple of frames.
12124
12125 A description of each shown parameter follows:
12126
12127 @table @option
12128 @item n
12129 sequential number of the input frame, starting from 1
12130
12131 @item Y, U, V, R, G, B
12132 SSIM of the compared frames for the component specified by the suffix.
12133
12134 @item All
12135 SSIM of the compared frames for the whole frame.
12136
12137 @item dB
12138 Same as above but in dB representation.
12139 @end table
12140
12141 For example:
12142 @example
12143 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12144 [main][ref] ssim="stats_file=stats.log" [out]
12145 @end example
12146
12147 On this example the input file being processed is compared with the
12148 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
12149 is stored in @file{stats.log}.
12150
12151 Another example with both psnr and ssim at same time:
12152 @example
12153 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
12154 @end example
12155
12156 @section stereo3d
12157
12158 Convert between different stereoscopic image formats.
12159
12160 The filters accept the following options:
12161
12162 @table @option
12163 @item in
12164 Set stereoscopic image format of input.
12165
12166 Available values for input image formats are:
12167 @table @samp
12168 @item sbsl
12169 side by side parallel (left eye left, right eye right)
12170
12171 @item sbsr
12172 side by side crosseye (right eye left, left eye right)
12173
12174 @item sbs2l
12175 side by side parallel with half width resolution
12176 (left eye left, right eye right)
12177
12178 @item sbs2r
12179 side by side crosseye with half width resolution
12180 (right eye left, left eye right)
12181
12182 @item abl
12183 above-below (left eye above, right eye below)
12184
12185 @item abr
12186 above-below (right eye above, left eye below)
12187
12188 @item ab2l
12189 above-below with half height resolution
12190 (left eye above, right eye below)
12191
12192 @item ab2r
12193 above-below with half height resolution
12194 (right eye above, left eye below)
12195
12196 @item al
12197 alternating frames (left eye first, right eye second)
12198
12199 @item ar
12200 alternating frames (right eye first, left eye second)
12201
12202 @item irl
12203 interleaved rows (left eye has top row, right eye starts on next row)
12204
12205 @item irr
12206 interleaved rows (right eye has top row, left eye starts on next row)
12207
12208 @item icl
12209 interleaved columns, left eye first
12210
12211 @item icr
12212 interleaved columns, right eye first
12213
12214 Default value is @samp{sbsl}.
12215 @end table
12216
12217 @item out
12218 Set stereoscopic image format of output.
12219
12220 @table @samp
12221 @item sbsl
12222 side by side parallel (left eye left, right eye right)
12223
12224 @item sbsr
12225 side by side crosseye (right eye left, left eye right)
12226
12227 @item sbs2l
12228 side by side parallel with half width resolution
12229 (left eye left, right eye right)
12230
12231 @item sbs2r
12232 side by side crosseye with half width resolution
12233 (right eye left, left eye right)
12234
12235 @item abl
12236 above-below (left eye above, right eye below)
12237
12238 @item abr
12239 above-below (right eye above, left eye below)
12240
12241 @item ab2l
12242 above-below with half height resolution
12243 (left eye above, right eye below)
12244
12245 @item ab2r
12246 above-below with half height resolution
12247 (right eye above, left eye below)
12248
12249 @item al
12250 alternating frames (left eye first, right eye second)
12251
12252 @item ar
12253 alternating frames (right eye first, left eye second)
12254
12255 @item irl
12256 interleaved rows (left eye has top row, right eye starts on next row)
12257
12258 @item irr
12259 interleaved rows (right eye has top row, left eye starts on next row)
12260
12261 @item arbg
12262 anaglyph red/blue gray
12263 (red filter on left eye, blue filter on right eye)
12264
12265 @item argg
12266 anaglyph red/green gray
12267 (red filter on left eye, green filter on right eye)
12268
12269 @item arcg
12270 anaglyph red/cyan gray
12271 (red filter on left eye, cyan filter on right eye)
12272
12273 @item arch
12274 anaglyph red/cyan half colored
12275 (red filter on left eye, cyan filter on right eye)
12276
12277 @item arcc
12278 anaglyph red/cyan color
12279 (red filter on left eye, cyan filter on right eye)
12280
12281 @item arcd
12282 anaglyph red/cyan color optimized with the least squares projection of dubois
12283 (red filter on left eye, cyan filter on right eye)
12284
12285 @item agmg
12286 anaglyph green/magenta gray
12287 (green filter on left eye, magenta filter on right eye)
12288
12289 @item agmh
12290 anaglyph green/magenta half colored
12291 (green filter on left eye, magenta filter on right eye)
12292
12293 @item agmc
12294 anaglyph green/magenta colored
12295 (green filter on left eye, magenta filter on right eye)
12296
12297 @item agmd
12298 anaglyph green/magenta color optimized with the least squares projection of dubois
12299 (green filter on left eye, magenta filter on right eye)
12300
12301 @item aybg
12302 anaglyph yellow/blue gray
12303 (yellow filter on left eye, blue filter on right eye)
12304
12305 @item aybh
12306 anaglyph yellow/blue half colored
12307 (yellow filter on left eye, blue filter on right eye)
12308
12309 @item aybc
12310 anaglyph yellow/blue colored
12311 (yellow filter on left eye, blue filter on right eye)
12312
12313 @item aybd
12314 anaglyph yellow/blue color optimized with the least squares projection of dubois
12315 (yellow filter on left eye, blue filter on right eye)
12316
12317 @item ml
12318 mono output (left eye only)
12319
12320 @item mr
12321 mono output (right eye only)
12322
12323 @item chl
12324 checkerboard, left eye first
12325
12326 @item chr
12327 checkerboard, right eye first
12328
12329 @item icl
12330 interleaved columns, left eye first
12331
12332 @item icr
12333 interleaved columns, right eye first
12334
12335 @item hdmi
12336 HDMI frame pack
12337 @end table
12338
12339 Default value is @samp{arcd}.
12340 @end table
12341
12342 @subsection Examples
12343
12344 @itemize
12345 @item
12346 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
12347 @example
12348 stereo3d=sbsl:aybd
12349 @end example
12350
12351 @item
12352 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
12353 @example
12354 stereo3d=abl:sbsr
12355 @end example
12356 @end itemize
12357
12358 @section streamselect, astreamselect
12359 Select video or audio streams.
12360
12361 The filter accepts the following options:
12362
12363 @table @option
12364 @item inputs
12365 Set number of inputs. Default is 2.
12366
12367 @item map
12368 Set input indexes to remap to outputs.
12369 @end table
12370
12371 @subsection Commands
12372
12373 The @code{streamselect} and @code{astreamselect} filter supports the following
12374 commands:
12375
12376 @table @option
12377 @item map
12378 Set input indexes to remap to outputs.
12379 @end table
12380
12381 @subsection Examples
12382
12383 @itemize
12384 @item
12385 Select first 5 seconds 1st stream and rest of time 2nd stream:
12386 @example
12387 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
12388 @end example
12389
12390 @item
12391 Same as above, but for audio:
12392 @example
12393 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
12394 @end example
12395 @end itemize
12396
12397 @anchor{spp}
12398 @section spp
12399
12400 Apply a simple postprocessing filter that compresses and decompresses the image
12401 at several (or - in the case of @option{quality} level @code{6} - all) shifts
12402 and average the results.
12403
12404 The filter accepts the following options:
12405
12406 @table @option
12407 @item quality
12408 Set quality. This option defines the number of levels for averaging. It accepts
12409 an integer in the range 0-6. If set to @code{0}, the filter will have no
12410 effect. A value of @code{6} means the higher quality. For each increment of
12411 that value the speed drops by a factor of approximately 2.  Default value is
12412 @code{3}.
12413
12414 @item qp
12415 Force a constant quantization parameter. If not set, the filter will use the QP
12416 from the video stream (if available).
12417
12418 @item mode
12419 Set thresholding mode. Available modes are:
12420
12421 @table @samp
12422 @item hard
12423 Set hard thresholding (default).
12424 @item soft
12425 Set soft thresholding (better de-ringing effect, but likely blurrier).
12426 @end table
12427
12428 @item use_bframe_qp
12429 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
12430 option may cause flicker since the B-Frames have often larger QP. Default is
12431 @code{0} (not enabled).
12432 @end table
12433
12434 @anchor{subtitles}
12435 @section subtitles
12436
12437 Draw subtitles on top of input video using the libass library.
12438
12439 To enable compilation of this filter you need to configure FFmpeg with
12440 @code{--enable-libass}. This filter also requires a build with libavcodec and
12441 libavformat to convert the passed subtitles file to ASS (Advanced Substation
12442 Alpha) subtitles format.
12443
12444 The filter accepts the following options:
12445
12446 @table @option
12447 @item filename, f
12448 Set the filename of the subtitle file to read. It must be specified.
12449
12450 @item original_size
12451 Specify the size of the original video, the video for which the ASS file
12452 was composed. For the syntax of this option, check the
12453 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12454 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
12455 correctly scale the fonts if the aspect ratio has been changed.
12456
12457 @item fontsdir
12458 Set a directory path containing fonts that can be used by the filter.
12459 These fonts will be used in addition to whatever the font provider uses.
12460
12461 @item charenc
12462 Set subtitles input character encoding. @code{subtitles} filter only. Only
12463 useful if not UTF-8.
12464
12465 @item stream_index, si
12466 Set subtitles stream index. @code{subtitles} filter only.
12467
12468 @item force_style
12469 Override default style or script info parameters of the subtitles. It accepts a
12470 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
12471 @end table
12472
12473 If the first key is not specified, it is assumed that the first value
12474 specifies the @option{filename}.
12475
12476 For example, to render the file @file{sub.srt} on top of the input
12477 video, use the command:
12478 @example
12479 subtitles=sub.srt
12480 @end example
12481
12482 which is equivalent to:
12483 @example
12484 subtitles=filename=sub.srt
12485 @end example
12486
12487 To render the default subtitles stream from file @file{video.mkv}, use:
12488 @example
12489 subtitles=video.mkv
12490 @end example
12491
12492 To render the second subtitles stream from that file, use:
12493 @example
12494 subtitles=video.mkv:si=1
12495 @end example
12496
12497 To make the subtitles stream from @file{sub.srt} appear in transparent green
12498 @code{DejaVu Serif}, use:
12499 @example
12500 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
12501 @end example
12502
12503 @section super2xsai
12504
12505 Scale the input by 2x and smooth using the Super2xSaI (Scale and
12506 Interpolate) pixel art scaling algorithm.
12507
12508 Useful for enlarging pixel art images without reducing sharpness.
12509
12510 @section swaprect
12511
12512 Swap two rectangular objects in video.
12513
12514 This filter accepts the following options:
12515
12516 @table @option
12517 @item w
12518 Set object width.
12519
12520 @item h
12521 Set object height.
12522
12523 @item x1
12524 Set 1st rect x coordinate.
12525
12526 @item y1
12527 Set 1st rect y coordinate.
12528
12529 @item x2
12530 Set 2nd rect x coordinate.
12531
12532 @item y2
12533 Set 2nd rect y coordinate.
12534
12535 All expressions are evaluated once for each frame.
12536 @end table
12537
12538 The all options are expressions containing the following constants:
12539
12540 @table @option
12541 @item w
12542 @item h
12543 The input width and height.
12544
12545 @item a
12546 same as @var{w} / @var{h}
12547
12548 @item sar
12549 input sample aspect ratio
12550
12551 @item dar
12552 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
12553
12554 @item n
12555 The number of the input frame, starting from 0.
12556
12557 @item t
12558 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
12559
12560 @item pos
12561 the position in the file of the input frame, NAN if unknown
12562 @end table
12563
12564 @section swapuv
12565 Swap U & V plane.
12566
12567 @section telecine
12568
12569 Apply telecine process to the video.
12570
12571 This filter accepts the following options:
12572
12573 @table @option
12574 @item first_field
12575 @table @samp
12576 @item top, t
12577 top field first
12578 @item bottom, b
12579 bottom field first
12580 The default value is @code{top}.
12581 @end table
12582
12583 @item pattern
12584 A string of numbers representing the pulldown pattern you wish to apply.
12585 The default value is @code{23}.
12586 @end table
12587
12588 @example
12589 Some typical patterns:
12590
12591 NTSC output (30i):
12592 27.5p: 32222
12593 24p: 23 (classic)
12594 24p: 2332 (preferred)
12595 20p: 33
12596 18p: 334
12597 16p: 3444
12598
12599 PAL output (25i):
12600 27.5p: 12222
12601 24p: 222222222223 ("Euro pulldown")
12602 16.67p: 33
12603 16p: 33333334
12604 @end example
12605
12606 @section thumbnail
12607 Select the most representative frame in a given sequence of consecutive frames.
12608
12609 The filter accepts the following options:
12610
12611 @table @option
12612 @item n
12613 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
12614 will pick one of them, and then handle the next batch of @var{n} frames until
12615 the end. Default is @code{100}.
12616 @end table
12617
12618 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
12619 value will result in a higher memory usage, so a high value is not recommended.
12620
12621 @subsection Examples
12622
12623 @itemize
12624 @item
12625 Extract one picture each 50 frames:
12626 @example
12627 thumbnail=50
12628 @end example
12629
12630 @item
12631 Complete example of a thumbnail creation with @command{ffmpeg}:
12632 @example
12633 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
12634 @end example
12635 @end itemize
12636
12637 @section tile
12638
12639 Tile several successive frames together.
12640
12641 The filter accepts the following options:
12642
12643 @table @option
12644
12645 @item layout
12646 Set the grid size (i.e. the number of lines and columns). For the syntax of
12647 this option, check the
12648 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12649
12650 @item nb_frames
12651 Set the maximum number of frames to render in the given area. It must be less
12652 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
12653 the area will be used.
12654
12655 @item margin
12656 Set the outer border margin in pixels.
12657
12658 @item padding
12659 Set the inner border thickness (i.e. the number of pixels between frames). For
12660 more advanced padding options (such as having different values for the edges),
12661 refer to the pad video filter.
12662
12663 @item color
12664 Specify the color of the unused area. For the syntax of this option, check the
12665 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
12666 is "black".
12667 @end table
12668
12669 @subsection Examples
12670
12671 @itemize
12672 @item
12673 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
12674 @example
12675 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
12676 @end example
12677 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
12678 duplicating each output frame to accommodate the originally detected frame
12679 rate.
12680
12681 @item
12682 Display @code{5} pictures in an area of @code{3x2} frames,
12683 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
12684 mixed flat and named options:
12685 @example
12686 tile=3x2:nb_frames=5:padding=7:margin=2
12687 @end example
12688 @end itemize
12689
12690 @section tinterlace
12691
12692 Perform various types of temporal field interlacing.
12693
12694 Frames are counted starting from 1, so the first input frame is
12695 considered odd.
12696
12697 The filter accepts the following options:
12698
12699 @table @option
12700
12701 @item mode
12702 Specify the mode of the interlacing. This option can also be specified
12703 as a value alone. See below for a list of values for this option.
12704
12705 Available values are:
12706
12707 @table @samp
12708 @item merge, 0
12709 Move odd frames into the upper field, even into the lower field,
12710 generating a double height frame at half frame rate.
12711 @example
12712  ------> time
12713 Input:
12714 Frame 1         Frame 2         Frame 3         Frame 4
12715
12716 11111           22222           33333           44444
12717 11111           22222           33333           44444
12718 11111           22222           33333           44444
12719 11111           22222           33333           44444
12720
12721 Output:
12722 11111                           33333
12723 22222                           44444
12724 11111                           33333
12725 22222                           44444
12726 11111                           33333
12727 22222                           44444
12728 11111                           33333
12729 22222                           44444
12730 @end example
12731
12732 @item drop_even, 1
12733 Only output odd frames, even frames are dropped, generating a frame with
12734 unchanged height at half frame rate.
12735
12736 @example
12737  ------> time
12738 Input:
12739 Frame 1         Frame 2         Frame 3         Frame 4
12740
12741 11111           22222           33333           44444
12742 11111           22222           33333           44444
12743 11111           22222           33333           44444
12744 11111           22222           33333           44444
12745
12746 Output:
12747 11111                           33333
12748 11111                           33333
12749 11111                           33333
12750 11111                           33333
12751 @end example
12752
12753 @item drop_odd, 2
12754 Only output even frames, odd frames are dropped, generating a frame with
12755 unchanged height at half frame rate.
12756
12757 @example
12758  ------> time
12759 Input:
12760 Frame 1         Frame 2         Frame 3         Frame 4
12761
12762 11111           22222           33333           44444
12763 11111           22222           33333           44444
12764 11111           22222           33333           44444
12765 11111           22222           33333           44444
12766
12767 Output:
12768                 22222                           44444
12769                 22222                           44444
12770                 22222                           44444
12771                 22222                           44444
12772 @end example
12773
12774 @item pad, 3
12775 Expand each frame to full height, but pad alternate lines with black,
12776 generating a frame with double height at the same input frame rate.
12777
12778 @example
12779  ------> time
12780 Input:
12781 Frame 1         Frame 2         Frame 3         Frame 4
12782
12783 11111           22222           33333           44444
12784 11111           22222           33333           44444
12785 11111           22222           33333           44444
12786 11111           22222           33333           44444
12787
12788 Output:
12789 11111           .....           33333           .....
12790 .....           22222           .....           44444
12791 11111           .....           33333           .....
12792 .....           22222           .....           44444
12793 11111           .....           33333           .....
12794 .....           22222           .....           44444
12795 11111           .....           33333           .....
12796 .....           22222           .....           44444
12797 @end example
12798
12799
12800 @item interleave_top, 4
12801 Interleave the upper field from odd frames with the lower field from
12802 even frames, generating a frame with unchanged height at half frame rate.
12803
12804 @example
12805  ------> time
12806 Input:
12807 Frame 1         Frame 2         Frame 3         Frame 4
12808
12809 11111<-         22222           33333<-         44444
12810 11111           22222<-         33333           44444<-
12811 11111<-         22222           33333<-         44444
12812 11111           22222<-         33333           44444<-
12813
12814 Output:
12815 11111                           33333
12816 22222                           44444
12817 11111                           33333
12818 22222                           44444
12819 @end example
12820
12821
12822 @item interleave_bottom, 5
12823 Interleave the lower field from odd frames with the upper field from
12824 even frames, generating a frame with unchanged height at half frame rate.
12825
12826 @example
12827  ------> time
12828 Input:
12829 Frame 1         Frame 2         Frame 3         Frame 4
12830
12831 11111           22222<-         33333           44444<-
12832 11111<-         22222           33333<-         44444
12833 11111           22222<-         33333           44444<-
12834 11111<-         22222           33333<-         44444
12835
12836 Output:
12837 22222                           44444
12838 11111                           33333
12839 22222                           44444
12840 11111                           33333
12841 @end example
12842
12843
12844 @item interlacex2, 6
12845 Double frame rate with unchanged height. Frames are inserted each
12846 containing the second temporal field from the previous input frame and
12847 the first temporal field from the next input frame. This mode relies on
12848 the top_field_first flag. Useful for interlaced video displays with no
12849 field synchronisation.
12850
12851 @example
12852  ------> time
12853 Input:
12854 Frame 1         Frame 2         Frame 3         Frame 4
12855
12856 11111           22222           33333           44444
12857  11111           22222           33333           44444
12858 11111           22222           33333           44444
12859  11111           22222           33333           44444
12860
12861 Output:
12862 11111   22222   22222   33333   33333   44444   44444
12863  11111   11111   22222   22222   33333   33333   44444
12864 11111   22222   22222   33333   33333   44444   44444
12865  11111   11111   22222   22222   33333   33333   44444
12866 @end example
12867
12868
12869 @item mergex2, 7
12870 Move odd frames into the upper field, even into the lower field,
12871 generating a double height frame at same frame rate.
12872
12873 @example
12874  ------> time
12875 Input:
12876 Frame 1         Frame 2         Frame 3         Frame 4
12877
12878 11111           22222           33333           44444
12879 11111           22222           33333           44444
12880 11111           22222           33333           44444
12881 11111           22222           33333           44444
12882
12883 Output:
12884 11111           33333           33333           55555
12885 22222           22222           44444           44444
12886 11111           33333           33333           55555
12887 22222           22222           44444           44444
12888 11111           33333           33333           55555
12889 22222           22222           44444           44444
12890 11111           33333           33333           55555
12891 22222           22222           44444           44444
12892 @end example
12893
12894 @end table
12895
12896 Numeric values are deprecated but are accepted for backward
12897 compatibility reasons.
12898
12899 Default mode is @code{merge}.
12900
12901 @item flags
12902 Specify flags influencing the filter process.
12903
12904 Available value for @var{flags} is:
12905
12906 @table @option
12907 @item low_pass_filter, vlfp
12908 Enable vertical low-pass filtering in the filter.
12909 Vertical low-pass filtering is required when creating an interlaced
12910 destination from a progressive source which contains high-frequency
12911 vertical detail. Filtering will reduce interlace 'twitter' and Moire
12912 patterning.
12913
12914 Vertical low-pass filtering can only be enabled for @option{mode}
12915 @var{interleave_top} and @var{interleave_bottom}.
12916
12917 @end table
12918 @end table
12919
12920 @section transpose
12921
12922 Transpose rows with columns in the input video and optionally flip it.
12923
12924 It accepts the following parameters:
12925
12926 @table @option
12927
12928 @item dir
12929 Specify the transposition direction.
12930
12931 Can assume the following values:
12932 @table @samp
12933 @item 0, 4, cclock_flip
12934 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
12935 @example
12936 L.R     L.l
12937 . . ->  . .
12938 l.r     R.r
12939 @end example
12940
12941 @item 1, 5, clock
12942 Rotate by 90 degrees clockwise, that is:
12943 @example
12944 L.R     l.L
12945 . . ->  . .
12946 l.r     r.R
12947 @end example
12948
12949 @item 2, 6, cclock
12950 Rotate by 90 degrees counterclockwise, that is:
12951 @example
12952 L.R     R.r
12953 . . ->  . .
12954 l.r     L.l
12955 @end example
12956
12957 @item 3, 7, clock_flip
12958 Rotate by 90 degrees clockwise and vertically flip, that is:
12959 @example
12960 L.R     r.R
12961 . . ->  . .
12962 l.r     l.L
12963 @end example
12964 @end table
12965
12966 For values between 4-7, the transposition is only done if the input
12967 video geometry is portrait and not landscape. These values are
12968 deprecated, the @code{passthrough} option should be used instead.
12969
12970 Numerical values are deprecated, and should be dropped in favor of
12971 symbolic constants.
12972
12973 @item passthrough
12974 Do not apply the transposition if the input geometry matches the one
12975 specified by the specified value. It accepts the following values:
12976 @table @samp
12977 @item none
12978 Always apply transposition.
12979 @item portrait
12980 Preserve portrait geometry (when @var{height} >= @var{width}).
12981 @item landscape
12982 Preserve landscape geometry (when @var{width} >= @var{height}).
12983 @end table
12984
12985 Default value is @code{none}.
12986 @end table
12987
12988 For example to rotate by 90 degrees clockwise and preserve portrait
12989 layout:
12990 @example
12991 transpose=dir=1:passthrough=portrait
12992 @end example
12993
12994 The command above can also be specified as:
12995 @example
12996 transpose=1:portrait
12997 @end example
12998
12999 @section trim
13000 Trim the input so that the output contains one continuous subpart of the input.
13001
13002 It accepts the following parameters:
13003 @table @option
13004 @item start
13005 Specify the time of the start of the kept section, i.e. the frame with the
13006 timestamp @var{start} will be the first frame in the output.
13007
13008 @item end
13009 Specify the time of the first frame that will be dropped, i.e. the frame
13010 immediately preceding the one with the timestamp @var{end} will be the last
13011 frame in the output.
13012
13013 @item start_pts
13014 This is the same as @var{start}, except this option sets the start timestamp
13015 in timebase units instead of seconds.
13016
13017 @item end_pts
13018 This is the same as @var{end}, except this option sets the end timestamp
13019 in timebase units instead of seconds.
13020
13021 @item duration
13022 The maximum duration of the output in seconds.
13023
13024 @item start_frame
13025 The number of the first frame that should be passed to the output.
13026
13027 @item end_frame
13028 The number of the first frame that should be dropped.
13029 @end table
13030
13031 @option{start}, @option{end}, and @option{duration} are expressed as time
13032 duration specifications; see
13033 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
13034 for the accepted syntax.
13035
13036 Note that the first two sets of the start/end options and the @option{duration}
13037 option look at the frame timestamp, while the _frame variants simply count the
13038 frames that pass through the filter. Also note that this filter does not modify
13039 the timestamps. If you wish for the output timestamps to start at zero, insert a
13040 setpts filter after the trim filter.
13041
13042 If multiple start or end options are set, this filter tries to be greedy and
13043 keep all the frames that match at least one of the specified constraints. To keep
13044 only the part that matches all the constraints at once, chain multiple trim
13045 filters.
13046
13047 The defaults are such that all the input is kept. So it is possible to set e.g.
13048 just the end values to keep everything before the specified time.
13049
13050 Examples:
13051 @itemize
13052 @item
13053 Drop everything except the second minute of input:
13054 @example
13055 ffmpeg -i INPUT -vf trim=60:120
13056 @end example
13057
13058 @item
13059 Keep only the first second:
13060 @example
13061 ffmpeg -i INPUT -vf trim=duration=1
13062 @end example
13063
13064 @end itemize
13065
13066
13067 @anchor{unsharp}
13068 @section unsharp
13069
13070 Sharpen or blur the input video.
13071
13072 It accepts the following parameters:
13073
13074 @table @option
13075 @item luma_msize_x, lx
13076 Set the luma matrix horizontal size. It must be an odd integer between
13077 3 and 63. The default value is 5.
13078
13079 @item luma_msize_y, ly
13080 Set the luma matrix vertical size. It must be an odd integer between 3
13081 and 63. The default value is 5.
13082
13083 @item luma_amount, la
13084 Set the luma effect strength. It must be a floating point number, reasonable
13085 values lay between -1.5 and 1.5.
13086
13087 Negative values will blur the input video, while positive values will
13088 sharpen it, a value of zero will disable the effect.
13089
13090 Default value is 1.0.
13091
13092 @item chroma_msize_x, cx
13093 Set the chroma matrix horizontal size. It must be an odd integer
13094 between 3 and 63. The default value is 5.
13095
13096 @item chroma_msize_y, cy
13097 Set the chroma matrix vertical size. It must be an odd integer
13098 between 3 and 63. The default value is 5.
13099
13100 @item chroma_amount, ca
13101 Set the chroma effect strength. It must be a floating point number, reasonable
13102 values lay between -1.5 and 1.5.
13103
13104 Negative values will blur the input video, while positive values will
13105 sharpen it, a value of zero will disable the effect.
13106
13107 Default value is 0.0.
13108
13109 @item opencl
13110 If set to 1, specify using OpenCL capabilities, only available if
13111 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
13112
13113 @end table
13114
13115 All parameters are optional and default to the equivalent of the
13116 string '5:5:1.0:5:5:0.0'.
13117
13118 @subsection Examples
13119
13120 @itemize
13121 @item
13122 Apply strong luma sharpen effect:
13123 @example
13124 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
13125 @end example
13126
13127 @item
13128 Apply a strong blur of both luma and chroma parameters:
13129 @example
13130 unsharp=7:7:-2:7:7:-2
13131 @end example
13132 @end itemize
13133
13134 @section uspp
13135
13136 Apply ultra slow/simple postprocessing filter that compresses and decompresses
13137 the image at several (or - in the case of @option{quality} level @code{8} - all)
13138 shifts and average the results.
13139
13140 The way this differs from the behavior of spp is that uspp actually encodes &
13141 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
13142 DCT similar to MJPEG.
13143
13144 The filter accepts the following options:
13145
13146 @table @option
13147 @item quality
13148 Set quality. This option defines the number of levels for averaging. It accepts
13149 an integer in the range 0-8. If set to @code{0}, the filter will have no
13150 effect. A value of @code{8} means the higher quality. For each increment of
13151 that value the speed drops by a factor of approximately 2.  Default value is
13152 @code{3}.
13153
13154 @item qp
13155 Force a constant quantization parameter. If not set, the filter will use the QP
13156 from the video stream (if available).
13157 @end table
13158
13159 @section vectorscope
13160
13161 Display 2 color component values in the two dimensional graph (which is called
13162 a vectorscope).
13163
13164 This filter accepts the following options:
13165
13166 @table @option
13167 @item mode, m
13168 Set vectorscope mode.
13169
13170 It accepts the following values:
13171 @table @samp
13172 @item gray
13173 Gray values are displayed on graph, higher brightness means more pixels have
13174 same component color value on location in graph. This is the default mode.
13175
13176 @item color
13177 Gray values are displayed on graph. Surrounding pixels values which are not
13178 present in video frame are drawn in gradient of 2 color components which are
13179 set by option @code{x} and @code{y}. The 3rd color component is static.
13180
13181 @item color2
13182 Actual color components values present in video frame are displayed on graph.
13183
13184 @item color3
13185 Similar as color2 but higher frequency of same values @code{x} and @code{y}
13186 on graph increases value of another color component, which is luminance by
13187 default values of @code{x} and @code{y}.
13188
13189 @item color4
13190 Actual colors present in video frame are displayed on graph. If two different
13191 colors map to same position on graph then color with higher value of component
13192 not present in graph is picked.
13193
13194 @item color5
13195 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
13196 component picked from radial gradient.
13197 @end table
13198
13199 @item x
13200 Set which color component will be represented on X-axis. Default is @code{1}.
13201
13202 @item y
13203 Set which color component will be represented on Y-axis. Default is @code{2}.
13204
13205 @item intensity, i
13206 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
13207 of color component which represents frequency of (X, Y) location in graph.
13208
13209 @item envelope, e
13210 @table @samp
13211 @item none
13212 No envelope, this is default.
13213
13214 @item instant
13215 Instant envelope, even darkest single pixel will be clearly highlighted.
13216
13217 @item peak
13218 Hold maximum and minimum values presented in graph over time. This way you
13219 can still spot out of range values without constantly looking at vectorscope.
13220
13221 @item peak+instant
13222 Peak and instant envelope combined together.
13223 @end table
13224
13225 @item graticule, g
13226 Set what kind of graticule to draw.
13227 @table @samp
13228 @item none
13229 @item green
13230 @item color
13231 @end table
13232
13233 @item opacity, o
13234 Set graticule opacity.
13235
13236 @item flags, f
13237 Set graticule flags.
13238
13239 @table @samp
13240 @item white
13241 Draw graticule for white point.
13242
13243 @item black
13244 Draw graticule for black point.
13245
13246 @item name
13247 Draw color points short names.
13248 @end table
13249
13250 @item bgopacity, b
13251 Set background opacity.
13252
13253 @item lthreshold, l
13254 Set low threshold for color component not represented on X or Y axis.
13255 Values lower than this value will be ignored. Default is 0.
13256 Note this value is multiplied with actual max possible value one pixel component
13257 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
13258 is 0.1 * 255 = 25.
13259
13260 @item hthreshold, h
13261 Set high threshold for color component not represented on X or Y axis.
13262 Values higher than this value will be ignored. Default is 1.
13263 Note this value is multiplied with actual max possible value one pixel component
13264 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
13265 is 0.9 * 255 = 230.
13266
13267 @item colorspace, c
13268 Set what kind of colorspace to use when drawing graticule.
13269 @table @samp
13270 @item auto
13271 @item 601
13272 @item 709
13273 @end table
13274 Default is auto.
13275 @end table
13276
13277 @anchor{vidstabdetect}
13278 @section vidstabdetect
13279
13280 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
13281 @ref{vidstabtransform} for pass 2.
13282
13283 This filter generates a file with relative translation and rotation
13284 transform information about subsequent frames, which is then used by
13285 the @ref{vidstabtransform} filter.
13286
13287 To enable compilation of this filter you need to configure FFmpeg with
13288 @code{--enable-libvidstab}.
13289
13290 This filter accepts the following options:
13291
13292 @table @option
13293 @item result
13294 Set the path to the file used to write the transforms information.
13295 Default value is @file{transforms.trf}.
13296
13297 @item shakiness
13298 Set how shaky the video is and how quick the camera is. It accepts an
13299 integer in the range 1-10, a value of 1 means little shakiness, a
13300 value of 10 means strong shakiness. Default value is 5.
13301
13302 @item accuracy
13303 Set the accuracy of the detection process. It must be a value in the
13304 range 1-15. A value of 1 means low accuracy, a value of 15 means high
13305 accuracy. Default value is 15.
13306
13307 @item stepsize
13308 Set stepsize of the search process. The region around minimum is
13309 scanned with 1 pixel resolution. Default value is 6.
13310
13311 @item mincontrast
13312 Set minimum contrast. Below this value a local measurement field is
13313 discarded. Must be a floating point value in the range 0-1. Default
13314 value is 0.3.
13315
13316 @item tripod
13317 Set reference frame number for tripod mode.
13318
13319 If enabled, the motion of the frames is compared to a reference frame
13320 in the filtered stream, identified by the specified number. The idea
13321 is to compensate all movements in a more-or-less static scene and keep
13322 the camera view absolutely still.
13323
13324 If set to 0, it is disabled. The frames are counted starting from 1.
13325
13326 @item show
13327 Show fields and transforms in the resulting frames. It accepts an
13328 integer in the range 0-2. Default value is 0, which disables any
13329 visualization.
13330 @end table
13331
13332 @subsection Examples
13333
13334 @itemize
13335 @item
13336 Use default values:
13337 @example
13338 vidstabdetect
13339 @end example
13340
13341 @item
13342 Analyze strongly shaky movie and put the results in file
13343 @file{mytransforms.trf}:
13344 @example
13345 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
13346 @end example
13347
13348 @item
13349 Visualize the result of internal transformations in the resulting
13350 video:
13351 @example
13352 vidstabdetect=show=1
13353 @end example
13354
13355 @item
13356 Analyze a video with medium shakiness using @command{ffmpeg}:
13357 @example
13358 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
13359 @end example
13360 @end itemize
13361
13362 @anchor{vidstabtransform}
13363 @section vidstabtransform
13364
13365 Video stabilization/deshaking: pass 2 of 2,
13366 see @ref{vidstabdetect} for pass 1.
13367
13368 Read a file with transform information for each frame and
13369 apply/compensate them. Together with the @ref{vidstabdetect}
13370 filter this can be used to deshake videos. See also
13371 @url{http://public.hronopik.de/vid.stab}. It is important to also use
13372 the @ref{unsharp} filter, see below.
13373
13374 To enable compilation of this filter you need to configure FFmpeg with
13375 @code{--enable-libvidstab}.
13376
13377 @subsection Options
13378
13379 @table @option
13380 @item input
13381 Set path to the file used to read the transforms. Default value is
13382 @file{transforms.trf}.
13383
13384 @item smoothing
13385 Set the number of frames (value*2 + 1) used for lowpass filtering the
13386 camera movements. Default value is 10.
13387
13388 For example a number of 10 means that 21 frames are used (10 in the
13389 past and 10 in the future) to smoothen the motion in the video. A
13390 larger value leads to a smoother video, but limits the acceleration of
13391 the camera (pan/tilt movements). 0 is a special case where a static
13392 camera is simulated.
13393
13394 @item optalgo
13395 Set the camera path optimization algorithm.
13396
13397 Accepted values are:
13398 @table @samp
13399 @item gauss
13400 gaussian kernel low-pass filter on camera motion (default)
13401 @item avg
13402 averaging on transformations
13403 @end table
13404
13405 @item maxshift
13406 Set maximal number of pixels to translate frames. Default value is -1,
13407 meaning no limit.
13408
13409 @item maxangle
13410 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
13411 value is -1, meaning no limit.
13412
13413 @item crop
13414 Specify how to deal with borders that may be visible due to movement
13415 compensation.
13416
13417 Available values are:
13418 @table @samp
13419 @item keep
13420 keep image information from previous frame (default)
13421 @item black
13422 fill the border black
13423 @end table
13424
13425 @item invert
13426 Invert transforms if set to 1. Default value is 0.
13427
13428 @item relative
13429 Consider transforms as relative to previous frame if set to 1,
13430 absolute if set to 0. Default value is 0.
13431
13432 @item zoom
13433 Set percentage to zoom. A positive value will result in a zoom-in
13434 effect, a negative value in a zoom-out effect. Default value is 0 (no
13435 zoom).
13436
13437 @item optzoom
13438 Set optimal zooming to avoid borders.
13439
13440 Accepted values are:
13441 @table @samp
13442 @item 0
13443 disabled
13444 @item 1
13445 optimal static zoom value is determined (only very strong movements
13446 will lead to visible borders) (default)
13447 @item 2
13448 optimal adaptive zoom value is determined (no borders will be
13449 visible), see @option{zoomspeed}
13450 @end table
13451
13452 Note that the value given at zoom is added to the one calculated here.
13453
13454 @item zoomspeed
13455 Set percent to zoom maximally each frame (enabled when
13456 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
13457 0.25.
13458
13459 @item interpol
13460 Specify type of interpolation.
13461
13462 Available values are:
13463 @table @samp
13464 @item no
13465 no interpolation
13466 @item linear
13467 linear only horizontal
13468 @item bilinear
13469 linear in both directions (default)
13470 @item bicubic
13471 cubic in both directions (slow)
13472 @end table
13473
13474 @item tripod
13475 Enable virtual tripod mode if set to 1, which is equivalent to
13476 @code{relative=0:smoothing=0}. Default value is 0.
13477
13478 Use also @code{tripod} option of @ref{vidstabdetect}.
13479
13480 @item debug
13481 Increase log verbosity if set to 1. Also the detected global motions
13482 are written to the temporary file @file{global_motions.trf}. Default
13483 value is 0.
13484 @end table
13485
13486 @subsection Examples
13487
13488 @itemize
13489 @item
13490 Use @command{ffmpeg} for a typical stabilization with default values:
13491 @example
13492 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
13493 @end example
13494
13495 Note the use of the @ref{unsharp} filter which is always recommended.
13496
13497 @item
13498 Zoom in a bit more and load transform data from a given file:
13499 @example
13500 vidstabtransform=zoom=5:input="mytransforms.trf"
13501 @end example
13502
13503 @item
13504 Smoothen the video even more:
13505 @example
13506 vidstabtransform=smoothing=30
13507 @end example
13508 @end itemize
13509
13510 @section vflip
13511
13512 Flip the input video vertically.
13513
13514 For example, to vertically flip a video with @command{ffmpeg}:
13515 @example
13516 ffmpeg -i in.avi -vf "vflip" out.avi
13517 @end example
13518
13519 @anchor{vignette}
13520 @section vignette
13521
13522 Make or reverse a natural vignetting effect.
13523
13524 The filter accepts the following options:
13525
13526 @table @option
13527 @item angle, a
13528 Set lens angle expression as a number of radians.
13529
13530 The value is clipped in the @code{[0,PI/2]} range.
13531
13532 Default value: @code{"PI/5"}
13533
13534 @item x0
13535 @item y0
13536 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
13537 by default.
13538
13539 @item mode
13540 Set forward/backward mode.
13541
13542 Available modes are:
13543 @table @samp
13544 @item forward
13545 The larger the distance from the central point, the darker the image becomes.
13546
13547 @item backward
13548 The larger the distance from the central point, the brighter the image becomes.
13549 This can be used to reverse a vignette effect, though there is no automatic
13550 detection to extract the lens @option{angle} and other settings (yet). It can
13551 also be used to create a burning effect.
13552 @end table
13553
13554 Default value is @samp{forward}.
13555
13556 @item eval
13557 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
13558
13559 It accepts the following values:
13560 @table @samp
13561 @item init
13562 Evaluate expressions only once during the filter initialization.
13563
13564 @item frame
13565 Evaluate expressions for each incoming frame. This is way slower than the
13566 @samp{init} mode since it requires all the scalers to be re-computed, but it
13567 allows advanced dynamic expressions.
13568 @end table
13569
13570 Default value is @samp{init}.
13571
13572 @item dither
13573 Set dithering to reduce the circular banding effects. Default is @code{1}
13574 (enabled).
13575
13576 @item aspect
13577 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
13578 Setting this value to the SAR of the input will make a rectangular vignetting
13579 following the dimensions of the video.
13580
13581 Default is @code{1/1}.
13582 @end table
13583
13584 @subsection Expressions
13585
13586 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
13587 following parameters.
13588
13589 @table @option
13590 @item w
13591 @item h
13592 input width and height
13593
13594 @item n
13595 the number of input frame, starting from 0
13596
13597 @item pts
13598 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
13599 @var{TB} units, NAN if undefined
13600
13601 @item r
13602 frame rate of the input video, NAN if the input frame rate is unknown
13603
13604 @item t
13605 the PTS (Presentation TimeStamp) of the filtered video frame,
13606 expressed in seconds, NAN if undefined
13607
13608 @item tb
13609 time base of the input video
13610 @end table
13611
13612
13613 @subsection Examples
13614
13615 @itemize
13616 @item
13617 Apply simple strong vignetting effect:
13618 @example
13619 vignette=PI/4
13620 @end example
13621
13622 @item
13623 Make a flickering vignetting:
13624 @example
13625 vignette='PI/4+random(1)*PI/50':eval=frame
13626 @end example
13627
13628 @end itemize
13629
13630 @section vstack
13631 Stack input videos vertically.
13632
13633 All streams must be of same pixel format and of same width.
13634
13635 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
13636 to create same output.
13637
13638 The filter accept the following option:
13639
13640 @table @option
13641 @item inputs
13642 Set number of input streams. Default is 2.
13643
13644 @item shortest
13645 If set to 1, force the output to terminate when the shortest input
13646 terminates. Default value is 0.
13647 @end table
13648
13649 @section w3fdif
13650
13651 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
13652 Deinterlacing Filter").
13653
13654 Based on the process described by Martin Weston for BBC R&D, and
13655 implemented based on the de-interlace algorithm written by Jim
13656 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
13657 uses filter coefficients calculated by BBC R&D.
13658
13659 There are two sets of filter coefficients, so called "simple":
13660 and "complex". Which set of filter coefficients is used can
13661 be set by passing an optional parameter:
13662
13663 @table @option
13664 @item filter
13665 Set the interlacing filter coefficients. Accepts one of the following values:
13666
13667 @table @samp
13668 @item simple
13669 Simple filter coefficient set.
13670 @item complex
13671 More-complex filter coefficient set.
13672 @end table
13673 Default value is @samp{complex}.
13674
13675 @item deint
13676 Specify which frames to deinterlace. Accept one of the following values:
13677
13678 @table @samp
13679 @item all
13680 Deinterlace all frames,
13681 @item interlaced
13682 Only deinterlace frames marked as interlaced.
13683 @end table
13684
13685 Default value is @samp{all}.
13686 @end table
13687
13688 @section waveform
13689 Video waveform monitor.
13690
13691 The waveform monitor plots color component intensity. By default luminance
13692 only. Each column of the waveform corresponds to a column of pixels in the
13693 source video.
13694
13695 It accepts the following options:
13696
13697 @table @option
13698 @item mode, m
13699 Can be either @code{row}, or @code{column}. Default is @code{column}.
13700 In row mode, the graph on the left side represents color component value 0 and
13701 the right side represents value = 255. In column mode, the top side represents
13702 color component value = 0 and bottom side represents value = 255.
13703
13704 @item intensity, i
13705 Set intensity. Smaller values are useful to find out how many values of the same
13706 luminance are distributed across input rows/columns.
13707 Default value is @code{0.04}. Allowed range is [0, 1].
13708
13709 @item mirror, r
13710 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
13711 In mirrored mode, higher values will be represented on the left
13712 side for @code{row} mode and at the top for @code{column} mode. Default is
13713 @code{1} (mirrored).
13714
13715 @item display, d
13716 Set display mode.
13717 It accepts the following values:
13718 @table @samp
13719 @item overlay
13720 Presents information identical to that in the @code{parade}, except
13721 that the graphs representing color components are superimposed directly
13722 over one another.
13723
13724 This display mode makes it easier to spot relative differences or similarities
13725 in overlapping areas of the color components that are supposed to be identical,
13726 such as neutral whites, grays, or blacks.
13727
13728 @item stack
13729 Display separate graph for the color components side by side in
13730 @code{row} mode or one below the other in @code{column} mode.
13731
13732 @item parade
13733 Display separate graph for the color components side by side in
13734 @code{column} mode or one below the other in @code{row} mode.
13735
13736 Using this display mode makes it easy to spot color casts in the highlights
13737 and shadows of an image, by comparing the contours of the top and the bottom
13738 graphs of each waveform. Since whites, grays, and blacks are characterized
13739 by exactly equal amounts of red, green, and blue, neutral areas of the picture
13740 should display three waveforms of roughly equal width/height. If not, the
13741 correction is easy to perform by making level adjustments the three waveforms.
13742 @end table
13743 Default is @code{stack}.
13744
13745 @item components, c
13746 Set which color components to display. Default is 1, which means only luminance
13747 or red color component if input is in RGB colorspace. If is set for example to
13748 7 it will display all 3 (if) available color components.
13749
13750 @item envelope, e
13751 @table @samp
13752 @item none
13753 No envelope, this is default.
13754
13755 @item instant
13756 Instant envelope, minimum and maximum values presented in graph will be easily
13757 visible even with small @code{step} value.
13758
13759 @item peak
13760 Hold minimum and maximum values presented in graph across time. This way you
13761 can still spot out of range values without constantly looking at waveforms.
13762
13763 @item peak+instant
13764 Peak and instant envelope combined together.
13765 @end table
13766
13767 @item filter, f
13768 @table @samp
13769 @item lowpass
13770 No filtering, this is default.
13771
13772 @item flat
13773 Luma and chroma combined together.
13774
13775 @item aflat
13776 Similar as above, but shows difference between blue and red chroma.
13777
13778 @item chroma
13779 Displays only chroma.
13780
13781 @item color
13782 Displays actual color value on waveform.
13783
13784 @item acolor
13785 Similar as above, but with luma showing frequency of chroma values.
13786 @end table
13787
13788 @item graticule, g
13789 Set which graticule to display.
13790
13791 @table @samp
13792 @item none
13793 Do not display graticule.
13794
13795 @item green
13796 Display green graticule showing legal broadcast ranges.
13797 @end table
13798
13799 @item opacity, o
13800 Set graticule opacity.
13801
13802 @item flags, fl
13803 Set graticule flags.
13804
13805 @table @samp
13806 @item numbers
13807 Draw numbers above lines. By default enabled.
13808
13809 @item dots
13810 Draw dots instead of lines.
13811 @end table
13812
13813 @item scale, s
13814 Set scale used for displaying graticule.
13815
13816 @table @samp
13817 @item digital
13818 @item millivolts
13819 @item ire
13820 @end table
13821 Default is digital.
13822 @end table
13823
13824 @section xbr
13825 Apply the xBR high-quality magnification filter which is designed for pixel
13826 art. It follows a set of edge-detection rules, see
13827 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
13828
13829 It accepts the following option:
13830
13831 @table @option
13832 @item n
13833 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
13834 @code{3xBR} and @code{4} for @code{4xBR}.
13835 Default is @code{3}.
13836 @end table
13837
13838 @anchor{yadif}
13839 @section yadif
13840
13841 Deinterlace the input video ("yadif" means "yet another deinterlacing
13842 filter").
13843
13844 It accepts the following parameters:
13845
13846
13847 @table @option
13848
13849 @item mode
13850 The interlacing mode to adopt. It accepts one of the following values:
13851
13852 @table @option
13853 @item 0, send_frame
13854 Output one frame for each frame.
13855 @item 1, send_field
13856 Output one frame for each field.
13857 @item 2, send_frame_nospatial
13858 Like @code{send_frame}, but it skips the spatial interlacing check.
13859 @item 3, send_field_nospatial
13860 Like @code{send_field}, but it skips the spatial interlacing check.
13861 @end table
13862
13863 The default value is @code{send_frame}.
13864
13865 @item parity
13866 The picture field parity assumed for the input interlaced video. It accepts one
13867 of the following values:
13868
13869 @table @option
13870 @item 0, tff
13871 Assume the top field is first.
13872 @item 1, bff
13873 Assume the bottom field is first.
13874 @item -1, auto
13875 Enable automatic detection of field parity.
13876 @end table
13877
13878 The default value is @code{auto}.
13879 If the interlacing is unknown or the decoder does not export this information,
13880 top field first will be assumed.
13881
13882 @item deint
13883 Specify which frames to deinterlace. Accept one of the following
13884 values:
13885
13886 @table @option
13887 @item 0, all
13888 Deinterlace all frames.
13889 @item 1, interlaced
13890 Only deinterlace frames marked as interlaced.
13891 @end table
13892
13893 The default value is @code{all}.
13894 @end table
13895
13896 @section zoompan
13897
13898 Apply Zoom & Pan effect.
13899
13900 This filter accepts the following options:
13901
13902 @table @option
13903 @item zoom, z
13904 Set the zoom expression. Default is 1.
13905
13906 @item x
13907 @item y
13908 Set the x and y expression. Default is 0.
13909
13910 @item d
13911 Set the duration expression in number of frames.
13912 This sets for how many number of frames effect will last for
13913 single input image.
13914
13915 @item s
13916 Set the output image size, default is 'hd720'.
13917
13918 @item fps
13919 Set the output frame rate, default is '25'.
13920 @end table
13921
13922 Each expression can contain the following constants:
13923
13924 @table @option
13925 @item in_w, iw
13926 Input width.
13927
13928 @item in_h, ih
13929 Input height.
13930
13931 @item out_w, ow
13932 Output width.
13933
13934 @item out_h, oh
13935 Output height.
13936
13937 @item in
13938 Input frame count.
13939
13940 @item on
13941 Output frame count.
13942
13943 @item x
13944 @item y
13945 Last calculated 'x' and 'y' position from 'x' and 'y' expression
13946 for current input frame.
13947
13948 @item px
13949 @item py
13950 'x' and 'y' of last output frame of previous input frame or 0 when there was
13951 not yet such frame (first input frame).
13952
13953 @item zoom
13954 Last calculated zoom from 'z' expression for current input frame.
13955
13956 @item pzoom
13957 Last calculated zoom of last output frame of previous input frame.
13958
13959 @item duration
13960 Number of output frames for current input frame. Calculated from 'd' expression
13961 for each input frame.
13962
13963 @item pduration
13964 number of output frames created for previous input frame
13965
13966 @item a
13967 Rational number: input width / input height
13968
13969 @item sar
13970 sample aspect ratio
13971
13972 @item dar
13973 display aspect ratio
13974
13975 @end table
13976
13977 @subsection Examples
13978
13979 @itemize
13980 @item
13981 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
13982 @example
13983 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
13984 @end example
13985
13986 @item
13987 Zoom-in up to 1.5 and pan always at center of picture:
13988 @example
13989 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
13990 @end example
13991
13992 @item
13993 Same as above but without pausing:
13994 @example
13995 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
13996 @end example
13997 @end itemize
13998
13999 @section zscale
14000 Scale (resize) the input video, using the z.lib library:
14001 https://github.com/sekrit-twc/zimg.
14002
14003 The zscale filter forces the output display aspect ratio to be the same
14004 as the input, by changing the output sample aspect ratio.
14005
14006 If the input image format is different from the format requested by
14007 the next filter, the zscale filter will convert the input to the
14008 requested format.
14009
14010 @subsection Options
14011 The filter accepts the following options.
14012
14013 @table @option
14014 @item width, w
14015 @item height, h
14016 Set the output video dimension expression. Default value is the input
14017 dimension.
14018
14019 If the @var{width} or @var{w} is 0, the input width is used for the output.
14020 If the @var{height} or @var{h} is 0, the input height is used for the output.
14021
14022 If one of the values is -1, the zscale filter will use a value that
14023 maintains the aspect ratio of the input image, calculated from the
14024 other specified dimension. If both of them are -1, the input size is
14025 used
14026
14027 If one of the values is -n with n > 1, the zscale filter will also use a value
14028 that maintains the aspect ratio of the input image, calculated from the other
14029 specified dimension. After that it will, however, make sure that the calculated
14030 dimension is divisible by n and adjust the value if necessary.
14031
14032 See below for the list of accepted constants for use in the dimension
14033 expression.
14034
14035 @item size, s
14036 Set the video size. For the syntax of this option, check the
14037 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14038
14039 @item dither, d
14040 Set the dither type.
14041
14042 Possible values are:
14043 @table @var
14044 @item none
14045 @item ordered
14046 @item random
14047 @item error_diffusion
14048 @end table
14049
14050 Default is none.
14051
14052 @item filter, f
14053 Set the resize filter type.
14054
14055 Possible values are:
14056 @table @var
14057 @item point
14058 @item bilinear
14059 @item bicubic
14060 @item spline16
14061 @item spline36
14062 @item lanczos
14063 @end table
14064
14065 Default is bilinear.
14066
14067 @item range, r
14068 Set the color range.
14069
14070 Possible values are:
14071 @table @var
14072 @item input
14073 @item limited
14074 @item full
14075 @end table
14076
14077 Default is same as input.
14078
14079 @item primaries, p
14080 Set the color primaries.
14081
14082 Possible values are:
14083 @table @var
14084 @item input
14085 @item 709
14086 @item unspecified
14087 @item 170m
14088 @item 240m
14089 @item 2020
14090 @end table
14091
14092 Default is same as input.
14093
14094 @item transfer, t
14095 Set the transfer characteristics.
14096
14097 Possible values are:
14098 @table @var
14099 @item input
14100 @item 709
14101 @item unspecified
14102 @item 601
14103 @item linear
14104 @item 2020_10
14105 @item 2020_12
14106 @end table
14107
14108 Default is same as input.
14109
14110 @item matrix, m
14111 Set the colorspace matrix.
14112
14113 Possible value are:
14114 @table @var
14115 @item input
14116 @item 709
14117 @item unspecified
14118 @item 470bg
14119 @item 170m
14120 @item 2020_ncl
14121 @item 2020_cl
14122 @end table
14123
14124 Default is same as input.
14125
14126 @item rangein, rin
14127 Set the input color range.
14128
14129 Possible values are:
14130 @table @var
14131 @item input
14132 @item limited
14133 @item full
14134 @end table
14135
14136 Default is same as input.
14137
14138 @item primariesin, pin
14139 Set the input color primaries.
14140
14141 Possible values are:
14142 @table @var
14143 @item input
14144 @item 709
14145 @item unspecified
14146 @item 170m
14147 @item 240m
14148 @item 2020
14149 @end table
14150
14151 Default is same as input.
14152
14153 @item transferin, tin
14154 Set the input transfer characteristics.
14155
14156 Possible values are:
14157 @table @var
14158 @item input
14159 @item 709
14160 @item unspecified
14161 @item 601
14162 @item linear
14163 @item 2020_10
14164 @item 2020_12
14165 @end table
14166
14167 Default is same as input.
14168
14169 @item matrixin, min
14170 Set the input colorspace matrix.
14171
14172 Possible value are:
14173 @table @var
14174 @item input
14175 @item 709
14176 @item unspecified
14177 @item 470bg
14178 @item 170m
14179 @item 2020_ncl
14180 @item 2020_cl
14181 @end table
14182 @end table
14183
14184 The values of the @option{w} and @option{h} options are expressions
14185 containing the following constants:
14186
14187 @table @var
14188 @item in_w
14189 @item in_h
14190 The input width and height
14191
14192 @item iw
14193 @item ih
14194 These are the same as @var{in_w} and @var{in_h}.
14195
14196 @item out_w
14197 @item out_h
14198 The output (scaled) width and height
14199
14200 @item ow
14201 @item oh
14202 These are the same as @var{out_w} and @var{out_h}
14203
14204 @item a
14205 The same as @var{iw} / @var{ih}
14206
14207 @item sar
14208 input sample aspect ratio
14209
14210 @item dar
14211 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14212
14213 @item hsub
14214 @item vsub
14215 horizontal and vertical input chroma subsample values. For example for the
14216 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14217
14218 @item ohsub
14219 @item ovsub
14220 horizontal and vertical output chroma subsample values. For example for the
14221 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14222 @end table
14223
14224 @table @option
14225 @end table
14226
14227 @c man end VIDEO FILTERS
14228
14229 @chapter Video Sources
14230 @c man begin VIDEO SOURCES
14231
14232 Below is a description of the currently available video sources.
14233
14234 @section buffer
14235
14236 Buffer video frames, and make them available to the filter chain.
14237
14238 This source is mainly intended for a programmatic use, in particular
14239 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
14240
14241 It accepts the following parameters:
14242
14243 @table @option
14244
14245 @item video_size
14246 Specify the size (width and height) of the buffered video frames. For the
14247 syntax of this option, check the
14248 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14249
14250 @item width
14251 The input video width.
14252
14253 @item height
14254 The input video height.
14255
14256 @item pix_fmt
14257 A string representing the pixel format of the buffered video frames.
14258 It may be a number corresponding to a pixel format, or a pixel format
14259 name.
14260
14261 @item time_base
14262 Specify the timebase assumed by the timestamps of the buffered frames.
14263
14264 @item frame_rate
14265 Specify the frame rate expected for the video stream.
14266
14267 @item pixel_aspect, sar
14268 The sample (pixel) aspect ratio of the input video.
14269
14270 @item sws_param
14271 Specify the optional parameters to be used for the scale filter which
14272 is automatically inserted when an input change is detected in the
14273 input size or format.
14274
14275 @item hw_frames_ctx
14276 When using a hardware pixel format, this should be a reference to an
14277 AVHWFramesContext describing input frames.
14278 @end table
14279
14280 For example:
14281 @example
14282 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
14283 @end example
14284
14285 will instruct the source to accept video frames with size 320x240 and
14286 with format "yuv410p", assuming 1/24 as the timestamps timebase and
14287 square pixels (1:1 sample aspect ratio).
14288 Since the pixel format with name "yuv410p" corresponds to the number 6
14289 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
14290 this example corresponds to:
14291 @example
14292 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
14293 @end example
14294
14295 Alternatively, the options can be specified as a flat string, but this
14296 syntax is deprecated:
14297
14298 @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}]
14299
14300 @section cellauto
14301
14302 Create a pattern generated by an elementary cellular automaton.
14303
14304 The initial state of the cellular automaton can be defined through the
14305 @option{filename}, and @option{pattern} options. If such options are
14306 not specified an initial state is created randomly.
14307
14308 At each new frame a new row in the video is filled with the result of
14309 the cellular automaton next generation. The behavior when the whole
14310 frame is filled is defined by the @option{scroll} option.
14311
14312 This source accepts the following options:
14313
14314 @table @option
14315 @item filename, f
14316 Read the initial cellular automaton state, i.e. the starting row, from
14317 the specified file.
14318 In the file, each non-whitespace character is considered an alive
14319 cell, a newline will terminate the row, and further characters in the
14320 file will be ignored.
14321
14322 @item pattern, p
14323 Read the initial cellular automaton state, i.e. the starting row, from
14324 the specified string.
14325
14326 Each non-whitespace character in the string is considered an alive
14327 cell, a newline will terminate the row, and further characters in the
14328 string will be ignored.
14329
14330 @item rate, r
14331 Set the video rate, that is the number of frames generated per second.
14332 Default is 25.
14333
14334 @item random_fill_ratio, ratio
14335 Set the random fill ratio for the initial cellular automaton row. It
14336 is a floating point number value ranging from 0 to 1, defaults to
14337 1/PHI.
14338
14339 This option is ignored when a file or a pattern is specified.
14340
14341 @item random_seed, seed
14342 Set the seed for filling randomly the initial row, must be an integer
14343 included between 0 and UINT32_MAX. If not specified, or if explicitly
14344 set to -1, the filter will try to use a good random seed on a best
14345 effort basis.
14346
14347 @item rule
14348 Set the cellular automaton rule, it is a number ranging from 0 to 255.
14349 Default value is 110.
14350
14351 @item size, s
14352 Set the size of the output video. For the syntax of this option, check the
14353 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14354
14355 If @option{filename} or @option{pattern} is specified, the size is set
14356 by default to the width of the specified initial state row, and the
14357 height is set to @var{width} * PHI.
14358
14359 If @option{size} is set, it must contain the width of the specified
14360 pattern string, and the specified pattern will be centered in the
14361 larger row.
14362
14363 If a filename or a pattern string is not specified, the size value
14364 defaults to "320x518" (used for a randomly generated initial state).
14365
14366 @item scroll
14367 If set to 1, scroll the output upward when all the rows in the output
14368 have been already filled. If set to 0, the new generated row will be
14369 written over the top row just after the bottom row is filled.
14370 Defaults to 1.
14371
14372 @item start_full, full
14373 If set to 1, completely fill the output with generated rows before
14374 outputting the first frame.
14375 This is the default behavior, for disabling set the value to 0.
14376
14377 @item stitch
14378 If set to 1, stitch the left and right row edges together.
14379 This is the default behavior, for disabling set the value to 0.
14380 @end table
14381
14382 @subsection Examples
14383
14384 @itemize
14385 @item
14386 Read the initial state from @file{pattern}, and specify an output of
14387 size 200x400.
14388 @example
14389 cellauto=f=pattern:s=200x400
14390 @end example
14391
14392 @item
14393 Generate a random initial row with a width of 200 cells, with a fill
14394 ratio of 2/3:
14395 @example
14396 cellauto=ratio=2/3:s=200x200
14397 @end example
14398
14399 @item
14400 Create a pattern generated by rule 18 starting by a single alive cell
14401 centered on an initial row with width 100:
14402 @example
14403 cellauto=p=@@:s=100x400:full=0:rule=18
14404 @end example
14405
14406 @item
14407 Specify a more elaborated initial pattern:
14408 @example
14409 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
14410 @end example
14411
14412 @end itemize
14413
14414 @anchor{coreimagesrc}
14415 @section coreimagesrc
14416 Video source generated on GPU using Apple's CoreImage API on OSX.
14417
14418 This video source is a specialized version of the @ref{coreimage} video filter.
14419 Use a core image generator at the beginning of the applied filterchain to
14420 generate the content.
14421
14422 The coreimagesrc video source accepts the following options:
14423 @table @option
14424 @item list_generators
14425 List all available generators along with all their respective options as well as
14426 possible minimum and maximum values along with the default values.
14427 @example
14428 list_generators=true
14429 @end example
14430
14431 @item size, s
14432 Specify the size of the sourced video. For the syntax of this option, check the
14433 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14434 The default value is @code{320x240}.
14435
14436 @item rate, r
14437 Specify the frame rate of the sourced video, as the number of frames
14438 generated per second. It has to be a string in the format
14439 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14440 number or a valid video frame rate abbreviation. The default value is
14441 "25".
14442
14443 @item sar
14444 Set the sample aspect ratio of the sourced video.
14445
14446 @item duration, d
14447 Set the duration of the sourced video. See
14448 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14449 for the accepted syntax.
14450
14451 If not specified, or the expressed duration is negative, the video is
14452 supposed to be generated forever.
14453 @end table
14454
14455 Additionally, all options of the @ref{coreimage} video filter are accepted.
14456 A complete filterchain can be used for further processing of the
14457 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
14458 and examples for details.
14459
14460 @subsection Examples
14461
14462 @itemize
14463
14464 @item
14465 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
14466 given as complete and escaped command-line for Apple's standard bash shell:
14467 @example
14468 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
14469 @end example
14470 This example is equivalent to the QRCode example of @ref{coreimage} without the
14471 need for a nullsrc video source.
14472 @end itemize
14473
14474
14475 @section mandelbrot
14476
14477 Generate a Mandelbrot set fractal, and progressively zoom towards the
14478 point specified with @var{start_x} and @var{start_y}.
14479
14480 This source accepts the following options:
14481
14482 @table @option
14483
14484 @item end_pts
14485 Set the terminal pts value. Default value is 400.
14486
14487 @item end_scale
14488 Set the terminal scale value.
14489 Must be a floating point value. Default value is 0.3.
14490
14491 @item inner
14492 Set the inner coloring mode, that is the algorithm used to draw the
14493 Mandelbrot fractal internal region.
14494
14495 It shall assume one of the following values:
14496 @table @option
14497 @item black
14498 Set black mode.
14499 @item convergence
14500 Show time until convergence.
14501 @item mincol
14502 Set color based on point closest to the origin of the iterations.
14503 @item period
14504 Set period mode.
14505 @end table
14506
14507 Default value is @var{mincol}.
14508
14509 @item bailout
14510 Set the bailout value. Default value is 10.0.
14511
14512 @item maxiter
14513 Set the maximum of iterations performed by the rendering
14514 algorithm. Default value is 7189.
14515
14516 @item outer
14517 Set outer coloring mode.
14518 It shall assume one of following values:
14519 @table @option
14520 @item iteration_count
14521 Set iteration cound mode.
14522 @item normalized_iteration_count
14523 set normalized iteration count mode.
14524 @end table
14525 Default value is @var{normalized_iteration_count}.
14526
14527 @item rate, r
14528 Set frame rate, expressed as number of frames per second. Default
14529 value is "25".
14530
14531 @item size, s
14532 Set frame size. For the syntax of this option, check the "Video
14533 size" section in the ffmpeg-utils manual. Default value is "640x480".
14534
14535 @item start_scale
14536 Set the initial scale value. Default value is 3.0.
14537
14538 @item start_x
14539 Set the initial x position. Must be a floating point value between
14540 -100 and 100. Default value is -0.743643887037158704752191506114774.
14541
14542 @item start_y
14543 Set the initial y position. Must be a floating point value between
14544 -100 and 100. Default value is -0.131825904205311970493132056385139.
14545 @end table
14546
14547 @section mptestsrc
14548
14549 Generate various test patterns, as generated by the MPlayer test filter.
14550
14551 The size of the generated video is fixed, and is 256x256.
14552 This source is useful in particular for testing encoding features.
14553
14554 This source accepts the following options:
14555
14556 @table @option
14557
14558 @item rate, r
14559 Specify the frame rate of the sourced video, as the number of frames
14560 generated per second. It has to be a string in the format
14561 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14562 number or a valid video frame rate abbreviation. The default value is
14563 "25".
14564
14565 @item duration, d
14566 Set the duration of the sourced video. See
14567 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14568 for the accepted syntax.
14569
14570 If not specified, or the expressed duration is negative, the video is
14571 supposed to be generated forever.
14572
14573 @item test, t
14574
14575 Set the number or the name of the test to perform. Supported tests are:
14576 @table @option
14577 @item dc_luma
14578 @item dc_chroma
14579 @item freq_luma
14580 @item freq_chroma
14581 @item amp_luma
14582 @item amp_chroma
14583 @item cbp
14584 @item mv
14585 @item ring1
14586 @item ring2
14587 @item all
14588
14589 @end table
14590
14591 Default value is "all", which will cycle through the list of all tests.
14592 @end table
14593
14594 Some examples:
14595 @example
14596 mptestsrc=t=dc_luma
14597 @end example
14598
14599 will generate a "dc_luma" test pattern.
14600
14601 @section frei0r_src
14602
14603 Provide a frei0r source.
14604
14605 To enable compilation of this filter you need to install the frei0r
14606 header and configure FFmpeg with @code{--enable-frei0r}.
14607
14608 This source accepts the following parameters:
14609
14610 @table @option
14611
14612 @item size
14613 The size of the video to generate. For the syntax of this option, check the
14614 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14615
14616 @item framerate
14617 The framerate of the generated video. It may be a string of the form
14618 @var{num}/@var{den} or a frame rate abbreviation.
14619
14620 @item filter_name
14621 The name to the frei0r source to load. For more information regarding frei0r and
14622 how to set the parameters, read the @ref{frei0r} section in the video filters
14623 documentation.
14624
14625 @item filter_params
14626 A '|'-separated list of parameters to pass to the frei0r source.
14627
14628 @end table
14629
14630 For example, to generate a frei0r partik0l source with size 200x200
14631 and frame rate 10 which is overlaid on the overlay filter main input:
14632 @example
14633 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
14634 @end example
14635
14636 @section life
14637
14638 Generate a life pattern.
14639
14640 This source is based on a generalization of John Conway's life game.
14641
14642 The sourced input represents a life grid, each pixel represents a cell
14643 which can be in one of two possible states, alive or dead. Every cell
14644 interacts with its eight neighbours, which are the cells that are
14645 horizontally, vertically, or diagonally adjacent.
14646
14647 At each interaction the grid evolves according to the adopted rule,
14648 which specifies the number of neighbor alive cells which will make a
14649 cell stay alive or born. The @option{rule} option allows one to specify
14650 the rule to adopt.
14651
14652 This source accepts the following options:
14653
14654 @table @option
14655 @item filename, f
14656 Set the file from which to read the initial grid state. In the file,
14657 each non-whitespace character is considered an alive cell, and newline
14658 is used to delimit the end of each row.
14659
14660 If this option is not specified, the initial grid is generated
14661 randomly.
14662
14663 @item rate, r
14664 Set the video rate, that is the number of frames generated per second.
14665 Default is 25.
14666
14667 @item random_fill_ratio, ratio
14668 Set the random fill ratio for the initial random grid. It is a
14669 floating point number value ranging from 0 to 1, defaults to 1/PHI.
14670 It is ignored when a file is specified.
14671
14672 @item random_seed, seed
14673 Set the seed for filling the initial random grid, must be an integer
14674 included between 0 and UINT32_MAX. If not specified, or if explicitly
14675 set to -1, the filter will try to use a good random seed on a best
14676 effort basis.
14677
14678 @item rule
14679 Set the life rule.
14680
14681 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
14682 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
14683 @var{NS} specifies the number of alive neighbor cells which make a
14684 live cell stay alive, and @var{NB} the number of alive neighbor cells
14685 which make a dead cell to become alive (i.e. to "born").
14686 "s" and "b" can be used in place of "S" and "B", respectively.
14687
14688 Alternatively a rule can be specified by an 18-bits integer. The 9
14689 high order bits are used to encode the next cell state if it is alive
14690 for each number of neighbor alive cells, the low order bits specify
14691 the rule for "borning" new cells. Higher order bits encode for an
14692 higher number of neighbor cells.
14693 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
14694 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
14695
14696 Default value is "S23/B3", which is the original Conway's game of life
14697 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
14698 cells, and will born a new cell if there are three alive cells around
14699 a dead cell.
14700
14701 @item size, s
14702 Set the size of the output video. For the syntax of this option, check the
14703 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14704
14705 If @option{filename} is specified, the size is set by default to the
14706 same size of the input file. If @option{size} is set, it must contain
14707 the size specified in the input file, and the initial grid defined in
14708 that file is centered in the larger resulting area.
14709
14710 If a filename is not specified, the size value defaults to "320x240"
14711 (used for a randomly generated initial grid).
14712
14713 @item stitch
14714 If set to 1, stitch the left and right grid edges together, and the
14715 top and bottom edges also. Defaults to 1.
14716
14717 @item mold
14718 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
14719 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
14720 value from 0 to 255.
14721
14722 @item life_color
14723 Set the color of living (or new born) cells.
14724
14725 @item death_color
14726 Set the color of dead cells. If @option{mold} is set, this is the first color
14727 used to represent a dead cell.
14728
14729 @item mold_color
14730 Set mold color, for definitely dead and moldy cells.
14731
14732 For the syntax of these 3 color options, check the "Color" section in the
14733 ffmpeg-utils manual.
14734 @end table
14735
14736 @subsection Examples
14737
14738 @itemize
14739 @item
14740 Read a grid from @file{pattern}, and center it on a grid of size
14741 300x300 pixels:
14742 @example
14743 life=f=pattern:s=300x300
14744 @end example
14745
14746 @item
14747 Generate a random grid of size 200x200, with a fill ratio of 2/3:
14748 @example
14749 life=ratio=2/3:s=200x200
14750 @end example
14751
14752 @item
14753 Specify a custom rule for evolving a randomly generated grid:
14754 @example
14755 life=rule=S14/B34
14756 @end example
14757
14758 @item
14759 Full example with slow death effect (mold) using @command{ffplay}:
14760 @example
14761 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
14762 @end example
14763 @end itemize
14764
14765 @anchor{allrgb}
14766 @anchor{allyuv}
14767 @anchor{color}
14768 @anchor{haldclutsrc}
14769 @anchor{nullsrc}
14770 @anchor{rgbtestsrc}
14771 @anchor{smptebars}
14772 @anchor{smptehdbars}
14773 @anchor{testsrc}
14774 @anchor{testsrc2}
14775 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2
14776
14777 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
14778
14779 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
14780
14781 The @code{color} source provides an uniformly colored input.
14782
14783 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
14784 @ref{haldclut} filter.
14785
14786 The @code{nullsrc} source returns unprocessed video frames. It is
14787 mainly useful to be employed in analysis / debugging tools, or as the
14788 source for filters which ignore the input data.
14789
14790 The @code{rgbtestsrc} source generates an RGB test pattern useful for
14791 detecting RGB vs BGR issues. You should see a red, green and blue
14792 stripe from top to bottom.
14793
14794 The @code{smptebars} source generates a color bars pattern, based on
14795 the SMPTE Engineering Guideline EG 1-1990.
14796
14797 The @code{smptehdbars} source generates a color bars pattern, based on
14798 the SMPTE RP 219-2002.
14799
14800 The @code{testsrc} source generates a test video pattern, showing a
14801 color pattern, a scrolling gradient and a timestamp. This is mainly
14802 intended for testing purposes.
14803
14804 The @code{testsrc2} source is similar to testsrc, but supports more
14805 pixel formats instead of just @code{rgb24}. This allows using it as an
14806 input for other tests without requiring a format conversion.
14807
14808 The sources accept the following parameters:
14809
14810 @table @option
14811
14812 @item color, c
14813 Specify the color of the source, only available in the @code{color}
14814 source. For the syntax of this option, check the "Color" section in the
14815 ffmpeg-utils manual.
14816
14817 @item level
14818 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
14819 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
14820 pixels to be used as identity matrix for 3D lookup tables. Each component is
14821 coded on a @code{1/(N*N)} scale.
14822
14823 @item size, s
14824 Specify the size of the sourced video. For the syntax of this option, check the
14825 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14826 The default value is @code{320x240}.
14827
14828 This option is not available with the @code{haldclutsrc} filter.
14829
14830 @item rate, r
14831 Specify the frame rate of the sourced video, as the number of frames
14832 generated per second. It has to be a string in the format
14833 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
14834 number or a valid video frame rate abbreviation. The default value is
14835 "25".
14836
14837 @item sar
14838 Set the sample aspect ratio of the sourced video.
14839
14840 @item duration, d
14841 Set the duration of the sourced video. See
14842 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14843 for the accepted syntax.
14844
14845 If not specified, or the expressed duration is negative, the video is
14846 supposed to be generated forever.
14847
14848 @item decimals, n
14849 Set the number of decimals to show in the timestamp, only available in the
14850 @code{testsrc} source.
14851
14852 The displayed timestamp value will correspond to the original
14853 timestamp value multiplied by the power of 10 of the specified
14854 value. Default value is 0.
14855 @end table
14856
14857 For example the following:
14858 @example
14859 testsrc=duration=5.3:size=qcif:rate=10
14860 @end example
14861
14862 will generate a video with a duration of 5.3 seconds, with size
14863 176x144 and a frame rate of 10 frames per second.
14864
14865 The following graph description will generate a red source
14866 with an opacity of 0.2, with size "qcif" and a frame rate of 10
14867 frames per second.
14868 @example
14869 color=c=red@@0.2:s=qcif:r=10
14870 @end example
14871
14872 If the input content is to be ignored, @code{nullsrc} can be used. The
14873 following command generates noise in the luminance plane by employing
14874 the @code{geq} filter:
14875 @example
14876 nullsrc=s=256x256, geq=random(1)*255:128:128
14877 @end example
14878
14879 @subsection Commands
14880
14881 The @code{color} source supports the following commands:
14882
14883 @table @option
14884 @item c, color
14885 Set the color of the created image. Accepts the same syntax of the
14886 corresponding @option{color} option.
14887 @end table
14888
14889 @c man end VIDEO SOURCES
14890
14891 @chapter Video Sinks
14892 @c man begin VIDEO SINKS
14893
14894 Below is a description of the currently available video sinks.
14895
14896 @section buffersink
14897
14898 Buffer video frames, and make them available to the end of the filter
14899 graph.
14900
14901 This sink is mainly intended for programmatic use, in particular
14902 through the interface defined in @file{libavfilter/buffersink.h}
14903 or the options system.
14904
14905 It accepts a pointer to an AVBufferSinkContext structure, which
14906 defines the incoming buffers' formats, to be passed as the opaque
14907 parameter to @code{avfilter_init_filter} for initialization.
14908
14909 @section nullsink
14910
14911 Null video sink: do absolutely nothing with the input video. It is
14912 mainly useful as a template and for use in analysis / debugging
14913 tools.
14914
14915 @c man end VIDEO SINKS
14916
14917 @chapter Multimedia Filters
14918 @c man begin MULTIMEDIA FILTERS
14919
14920 Below is a description of the currently available multimedia filters.
14921
14922 @section ahistogram
14923
14924 Convert input audio to a video output, displaying the volume histogram.
14925
14926 The filter accepts the following options:
14927
14928 @table @option
14929 @item dmode
14930 Specify how histogram is calculated.
14931
14932 It accepts the following values:
14933 @table @samp
14934 @item single
14935 Use single histogram for all channels.
14936 @item separate
14937 Use separate histogram for each channel.
14938 @end table
14939 Default is @code{single}.
14940
14941 @item rate, r
14942 Set frame rate, expressed as number of frames per second. Default
14943 value is "25".
14944
14945 @item size, s
14946 Specify the video size for the output. For the syntax of this option, check the
14947 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14948 Default value is @code{hd720}.
14949
14950 @item scale
14951 Set display scale.
14952
14953 It accepts the following values:
14954 @table @samp
14955 @item log
14956 logarithmic
14957 @item sqrt
14958 square root
14959 @item cbrt
14960 cubic root
14961 @item lin
14962 linear
14963 @item rlog
14964 reverse logarithmic
14965 @end table
14966 Default is @code{log}.
14967
14968 @item ascale
14969 Set amplitude scale.
14970
14971 It accepts the following values:
14972 @table @samp
14973 @item log
14974 logarithmic
14975 @item lin
14976 linear
14977 @end table
14978 Default is @code{log}.
14979
14980 @item acount
14981 Set how much frames to accumulate in histogram.
14982 Defauls is 1. Setting this to -1 accumulates all frames.
14983
14984 @item rheight
14985 Set histogram ratio of window height.
14986
14987 @item slide
14988 Set sonogram sliding.
14989
14990 It accepts the following values:
14991 @table @samp
14992 @item replace
14993 replace old rows with new ones.
14994 @item scroll
14995 scroll from top to bottom.
14996 @end table
14997 Default is @code{replace}.
14998 @end table
14999
15000 @section aphasemeter
15001
15002 Convert input audio to a video output, displaying the audio phase.
15003
15004 The filter accepts the following options:
15005
15006 @table @option
15007 @item rate, r
15008 Set the output frame rate. Default value is @code{25}.
15009
15010 @item size, s
15011 Set the video size for the output. For the syntax of this option, check the
15012 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15013 Default value is @code{800x400}.
15014
15015 @item rc
15016 @item gc
15017 @item bc
15018 Specify the red, green, blue contrast. Default values are @code{2},
15019 @code{7} and @code{1}.
15020 Allowed range is @code{[0, 255]}.
15021
15022 @item mpc
15023 Set color which will be used for drawing median phase. If color is
15024 @code{none} which is default, no median phase value will be drawn.
15025 @end table
15026
15027 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
15028 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
15029 The @code{-1} means left and right channels are completely out of phase and
15030 @code{1} means channels are in phase.
15031
15032 @section avectorscope
15033
15034 Convert input audio to a video output, representing the audio vector
15035 scope.
15036
15037 The filter is used to measure the difference between channels of stereo
15038 audio stream. A monoaural signal, consisting of identical left and right
15039 signal, results in straight vertical line. Any stereo separation is visible
15040 as a deviation from this line, creating a Lissajous figure.
15041 If the straight (or deviation from it) but horizontal line appears this
15042 indicates that the left and right channels are out of phase.
15043
15044 The filter accepts the following options:
15045
15046 @table @option
15047 @item mode, m
15048 Set the vectorscope mode.
15049
15050 Available values are:
15051 @table @samp
15052 @item lissajous
15053 Lissajous rotated by 45 degrees.
15054
15055 @item lissajous_xy
15056 Same as above but not rotated.
15057
15058 @item polar
15059 Shape resembling half of circle.
15060 @end table
15061
15062 Default value is @samp{lissajous}.
15063
15064 @item size, s
15065 Set the video size for the output. For the syntax of this option, check the
15066 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15067 Default value is @code{400x400}.
15068
15069 @item rate, r
15070 Set the output frame rate. Default value is @code{25}.
15071
15072 @item rc
15073 @item gc
15074 @item bc
15075 @item ac
15076 Specify the red, green, blue and alpha contrast. Default values are @code{40},
15077 @code{160}, @code{80} and @code{255}.
15078 Allowed range is @code{[0, 255]}.
15079
15080 @item rf
15081 @item gf
15082 @item bf
15083 @item af
15084 Specify the red, green, blue and alpha fade. Default values are @code{15},
15085 @code{10}, @code{5} and @code{5}.
15086 Allowed range is @code{[0, 255]}.
15087
15088 @item zoom
15089 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
15090
15091 @item draw
15092 Set the vectorscope drawing mode.
15093
15094 Available values are:
15095 @table @samp
15096 @item dot
15097 Draw dot for each sample.
15098
15099 @item line
15100 Draw line between previous and current sample.
15101 @end table
15102
15103 Default value is @samp{dot}.
15104
15105 @item scale
15106 Specify amplitude scale of audio samples.
15107
15108 Available values are:
15109 @table @samp
15110 @item lin
15111 Linear.
15112
15113 @item sqrt
15114 Square root.
15115
15116 @item cbrt
15117 Cubic root.
15118
15119 @item log
15120 Logarithmic.
15121 @end table
15122
15123 @end table
15124
15125 @subsection Examples
15126
15127 @itemize
15128 @item
15129 Complete example using @command{ffplay}:
15130 @example
15131 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
15132              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
15133 @end example
15134 @end itemize
15135
15136 @section bench, abench
15137
15138 Benchmark part of a filtergraph.
15139
15140 The filter accepts the following options:
15141
15142 @table @option
15143 @item action
15144 Start or stop a timer.
15145
15146 Available values are:
15147 @table @samp
15148 @item start
15149 Get the current time, set it as frame metadata (using the key
15150 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
15151
15152 @item stop
15153 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
15154 the input frame metadata to get the time difference. Time difference, average,
15155 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
15156 @code{min}) are then printed. The timestamps are expressed in seconds.
15157 @end table
15158 @end table
15159
15160 @subsection Examples
15161
15162 @itemize
15163 @item
15164 Benchmark @ref{selectivecolor} filter:
15165 @example
15166 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
15167 @end example
15168 @end itemize
15169
15170 @section concat
15171
15172 Concatenate audio and video streams, joining them together one after the
15173 other.
15174
15175 The filter works on segments of synchronized video and audio streams. All
15176 segments must have the same number of streams of each type, and that will
15177 also be the number of streams at output.
15178
15179 The filter accepts the following options:
15180
15181 @table @option
15182
15183 @item n
15184 Set the number of segments. Default is 2.
15185
15186 @item v
15187 Set the number of output video streams, that is also the number of video
15188 streams in each segment. Default is 1.
15189
15190 @item a
15191 Set the number of output audio streams, that is also the number of audio
15192 streams in each segment. Default is 0.
15193
15194 @item unsafe
15195 Activate unsafe mode: do not fail if segments have a different format.
15196
15197 @end table
15198
15199 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
15200 @var{a} audio outputs.
15201
15202 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
15203 segment, in the same order as the outputs, then the inputs for the second
15204 segment, etc.
15205
15206 Related streams do not always have exactly the same duration, for various
15207 reasons including codec frame size or sloppy authoring. For that reason,
15208 related synchronized streams (e.g. a video and its audio track) should be
15209 concatenated at once. The concat filter will use the duration of the longest
15210 stream in each segment (except the last one), and if necessary pad shorter
15211 audio streams with silence.
15212
15213 For this filter to work correctly, all segments must start at timestamp 0.
15214
15215 All corresponding streams must have the same parameters in all segments; the
15216 filtering system will automatically select a common pixel format for video
15217 streams, and a common sample format, sample rate and channel layout for
15218 audio streams, but other settings, such as resolution, must be converted
15219 explicitly by the user.
15220
15221 Different frame rates are acceptable but will result in variable frame rate
15222 at output; be sure to configure the output file to handle it.
15223
15224 @subsection Examples
15225
15226 @itemize
15227 @item
15228 Concatenate an opening, an episode and an ending, all in bilingual version
15229 (video in stream 0, audio in streams 1 and 2):
15230 @example
15231 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
15232   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
15233    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
15234   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
15235 @end example
15236
15237 @item
15238 Concatenate two parts, handling audio and video separately, using the
15239 (a)movie sources, and adjusting the resolution:
15240 @example
15241 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
15242 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
15243 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
15244 @end example
15245 Note that a desync will happen at the stitch if the audio and video streams
15246 do not have exactly the same duration in the first file.
15247
15248 @end itemize
15249
15250 @section drawgraph, adrawgraph
15251
15252 Draw a graph using input video or audio metadata.
15253
15254 It accepts the following parameters:
15255
15256 @table @option
15257 @item m1
15258 Set 1st frame metadata key from which metadata values will be used to draw a graph.
15259
15260 @item fg1
15261 Set 1st foreground color expression.
15262
15263 @item m2
15264 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
15265
15266 @item fg2
15267 Set 2nd foreground color expression.
15268
15269 @item m3
15270 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
15271
15272 @item fg3
15273 Set 3rd foreground color expression.
15274
15275 @item m4
15276 Set 4th frame metadata key from which metadata values will be used to draw a graph.
15277
15278 @item fg4
15279 Set 4th foreground color expression.
15280
15281 @item min
15282 Set minimal value of metadata value.
15283
15284 @item max
15285 Set maximal value of metadata value.
15286
15287 @item bg
15288 Set graph background color. Default is white.
15289
15290 @item mode
15291 Set graph mode.
15292
15293 Available values for mode is:
15294 @table @samp
15295 @item bar
15296 @item dot
15297 @item line
15298 @end table
15299
15300 Default is @code{line}.
15301
15302 @item slide
15303 Set slide mode.
15304
15305 Available values for slide is:
15306 @table @samp
15307 @item frame
15308 Draw new frame when right border is reached.
15309
15310 @item replace
15311 Replace old columns with new ones.
15312
15313 @item scroll
15314 Scroll from right to left.
15315
15316 @item rscroll
15317 Scroll from left to right.
15318
15319 @item picture
15320 Draw single picture.
15321 @end table
15322
15323 Default is @code{frame}.
15324
15325 @item size
15326 Set size of graph video. For the syntax of this option, check the
15327 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15328 The default value is @code{900x256}.
15329
15330 The foreground color expressions can use the following variables:
15331 @table @option
15332 @item MIN
15333 Minimal value of metadata value.
15334
15335 @item MAX
15336 Maximal value of metadata value.
15337
15338 @item VAL
15339 Current metadata key value.
15340 @end table
15341
15342 The color is defined as 0xAABBGGRR.
15343 @end table
15344
15345 Example using metadata from @ref{signalstats} filter:
15346 @example
15347 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
15348 @end example
15349
15350 Example using metadata from @ref{ebur128} filter:
15351 @example
15352 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
15353 @end example
15354
15355 @anchor{ebur128}
15356 @section ebur128
15357
15358 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
15359 it unchanged. By default, it logs a message at a frequency of 10Hz with the
15360 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
15361 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
15362
15363 The filter also has a video output (see the @var{video} option) with a real
15364 time graph to observe the loudness evolution. The graphic contains the logged
15365 message mentioned above, so it is not printed anymore when this option is set,
15366 unless the verbose logging is set. The main graphing area contains the
15367 short-term loudness (3 seconds of analysis), and the gauge on the right is for
15368 the momentary loudness (400 milliseconds).
15369
15370 More information about the Loudness Recommendation EBU R128 on
15371 @url{http://tech.ebu.ch/loudness}.
15372
15373 The filter accepts the following options:
15374
15375 @table @option
15376
15377 @item video
15378 Activate the video output. The audio stream is passed unchanged whether this
15379 option is set or no. The video stream will be the first output stream if
15380 activated. Default is @code{0}.
15381
15382 @item size
15383 Set the video size. This option is for video only. For the syntax of this
15384 option, check the
15385 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15386 Default and minimum resolution is @code{640x480}.
15387
15388 @item meter
15389 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
15390 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
15391 other integer value between this range is allowed.
15392
15393 @item metadata
15394 Set metadata injection. If set to @code{1}, the audio input will be segmented
15395 into 100ms output frames, each of them containing various loudness information
15396 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
15397
15398 Default is @code{0}.
15399
15400 @item framelog
15401 Force the frame logging level.
15402
15403 Available values are:
15404 @table @samp
15405 @item info
15406 information logging level
15407 @item verbose
15408 verbose logging level
15409 @end table
15410
15411 By default, the logging level is set to @var{info}. If the @option{video} or
15412 the @option{metadata} options are set, it switches to @var{verbose}.
15413
15414 @item peak
15415 Set peak mode(s).
15416
15417 Available modes can be cumulated (the option is a @code{flag} type). Possible
15418 values are:
15419 @table @samp
15420 @item none
15421 Disable any peak mode (default).
15422 @item sample
15423 Enable sample-peak mode.
15424
15425 Simple peak mode looking for the higher sample value. It logs a message
15426 for sample-peak (identified by @code{SPK}).
15427 @item true
15428 Enable true-peak mode.
15429
15430 If enabled, the peak lookup is done on an over-sampled version of the input
15431 stream for better peak accuracy. It logs a message for true-peak.
15432 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
15433 This mode requires a build with @code{libswresample}.
15434 @end table
15435
15436 @item dualmono
15437 Treat mono input files as "dual mono". If a mono file is intended for playback
15438 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
15439 If set to @code{true}, this option will compensate for this effect.
15440 Multi-channel input files are not affected by this option.
15441
15442 @item panlaw
15443 Set a specific pan law to be used for the measurement of dual mono files.
15444 This parameter is optional, and has a default value of -3.01dB.
15445 @end table
15446
15447 @subsection Examples
15448
15449 @itemize
15450 @item
15451 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
15452 @example
15453 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
15454 @end example
15455
15456 @item
15457 Run an analysis with @command{ffmpeg}:
15458 @example
15459 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
15460 @end example
15461 @end itemize
15462
15463 @section interleave, ainterleave
15464
15465 Temporally interleave frames from several inputs.
15466
15467 @code{interleave} works with video inputs, @code{ainterleave} with audio.
15468
15469 These filters read frames from several inputs and send the oldest
15470 queued frame to the output.
15471
15472 Input streams must have a well defined, monotonically increasing frame
15473 timestamp values.
15474
15475 In order to submit one frame to output, these filters need to enqueue
15476 at least one frame for each input, so they cannot work in case one
15477 input is not yet terminated and will not receive incoming frames.
15478
15479 For example consider the case when one input is a @code{select} filter
15480 which always drop input frames. The @code{interleave} filter will keep
15481 reading from that input, but it will never be able to send new frames
15482 to output until the input will send an end-of-stream signal.
15483
15484 Also, depending on inputs synchronization, the filters will drop
15485 frames in case one input receives more frames than the other ones, and
15486 the queue is already filled.
15487
15488 These filters accept the following options:
15489
15490 @table @option
15491 @item nb_inputs, n
15492 Set the number of different inputs, it is 2 by default.
15493 @end table
15494
15495 @subsection Examples
15496
15497 @itemize
15498 @item
15499 Interleave frames belonging to different streams using @command{ffmpeg}:
15500 @example
15501 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
15502 @end example
15503
15504 @item
15505 Add flickering blur effect:
15506 @example
15507 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
15508 @end example
15509 @end itemize
15510
15511 @section metadata, ametadata
15512
15513 Manipulate frame metadata.
15514
15515 This filter accepts the following options:
15516
15517 @table @option
15518 @item mode
15519 Set mode of operation of the filter.
15520
15521 Can be one of the following:
15522
15523 @table @samp
15524 @item select
15525 If both @code{value} and @code{key} is set, select frames
15526 which have such metadata. If only @code{key} is set, select
15527 every frame that has such key in metadata.
15528
15529 @item add
15530 Add new metadata @code{key} and @code{value}. If key is already available
15531 do nothing.
15532
15533 @item modify
15534 Modify value of already present key.
15535
15536 @item delete
15537 If @code{value} is set, delete only keys that have such value.
15538 Otherwise, delete key.
15539
15540 @item print
15541 Print key and its value if metadata was found. If @code{key} is not set print all
15542 metadata values available in frame.
15543 @end table
15544
15545 @item key
15546 Set key used with all modes. Must be set for all modes except @code{print}.
15547
15548 @item value
15549 Set metadata value which will be used. This option is mandatory for
15550 @code{modify} and @code{add} mode.
15551
15552 @item function
15553 Which function to use when comparing metadata value and @code{value}.
15554
15555 Can be one of following:
15556
15557 @table @samp
15558 @item same_str
15559 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
15560
15561 @item starts_with
15562 Values are interpreted as strings, returns true if metadata value starts with
15563 the @code{value} option string.
15564
15565 @item less
15566 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
15567
15568 @item equal
15569 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
15570
15571 @item greater
15572 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
15573
15574 @item expr
15575 Values are interpreted as floats, returns true if expression from option @code{expr}
15576 evaluates to true.
15577 @end table
15578
15579 @item expr
15580 Set expression which is used when @code{function} is set to @code{expr}.
15581 The expression is evaluated through the eval API and can contain the following
15582 constants:
15583
15584 @table @option
15585 @item VALUE1
15586 Float representation of @code{value} from metadata key.
15587
15588 @item VALUE2
15589 Float representation of @code{value} as supplied by user in @code{value} option.
15590
15591 @item file
15592 If specified in @code{print} mode, output is written to the named file. Instead of
15593 plain filename any writable url can be specified. Filename ``-'' is a shorthand
15594 for standard output. If @code{file} option is not set, output is written to the log
15595 with AV_LOG_INFO loglevel.
15596 @end table
15597
15598 @end table
15599
15600 @subsection Examples
15601
15602 @itemize
15603 @item
15604 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
15605 between 0 and 1.
15606 @example
15607 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
15608 @end example
15609 @item
15610 Print silencedetect output to file @file{metadata.txt}.
15611 @example
15612 silencedetect,ametadata=mode=print:file=metadata.txt
15613 @end example
15614 @item
15615 Direct all metadata to a pipe with file descriptor 4.
15616 @example
15617 metadata=mode=print:file='pipe\:4'
15618 @end example
15619 @end itemize
15620
15621 @section perms, aperms
15622
15623 Set read/write permissions for the output frames.
15624
15625 These filters are mainly aimed at developers to test direct path in the
15626 following filter in the filtergraph.
15627
15628 The filters accept the following options:
15629
15630 @table @option
15631 @item mode
15632 Select the permissions mode.
15633
15634 It accepts the following values:
15635 @table @samp
15636 @item none
15637 Do nothing. This is the default.
15638 @item ro
15639 Set all the output frames read-only.
15640 @item rw
15641 Set all the output frames directly writable.
15642 @item toggle
15643 Make the frame read-only if writable, and writable if read-only.
15644 @item random
15645 Set each output frame read-only or writable randomly.
15646 @end table
15647
15648 @item seed
15649 Set the seed for the @var{random} mode, must be an integer included between
15650 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15651 @code{-1}, the filter will try to use a good random seed on a best effort
15652 basis.
15653 @end table
15654
15655 Note: in case of auto-inserted filter between the permission filter and the
15656 following one, the permission might not be received as expected in that
15657 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
15658 perms/aperms filter can avoid this problem.
15659
15660 @section realtime, arealtime
15661
15662 Slow down filtering to match real time approximatively.
15663
15664 These filters will pause the filtering for a variable amount of time to
15665 match the output rate with the input timestamps.
15666 They are similar to the @option{re} option to @code{ffmpeg}.
15667
15668 They accept the following options:
15669
15670 @table @option
15671 @item limit
15672 Time limit for the pauses. Any pause longer than that will be considered
15673 a timestamp discontinuity and reset the timer. Default is 2 seconds.
15674 @end table
15675
15676 @section select, aselect
15677
15678 Select frames to pass in output.
15679
15680 This filter accepts the following options:
15681
15682 @table @option
15683
15684 @item expr, e
15685 Set expression, which is evaluated for each input frame.
15686
15687 If the expression is evaluated to zero, the frame is discarded.
15688
15689 If the evaluation result is negative or NaN, the frame is sent to the
15690 first output; otherwise it is sent to the output with index
15691 @code{ceil(val)-1}, assuming that the input index starts from 0.
15692
15693 For example a value of @code{1.2} corresponds to the output with index
15694 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
15695
15696 @item outputs, n
15697 Set the number of outputs. The output to which to send the selected
15698 frame is based on the result of the evaluation. Default value is 1.
15699 @end table
15700
15701 The expression can contain the following constants:
15702
15703 @table @option
15704 @item n
15705 The (sequential) number of the filtered frame, starting from 0.
15706
15707 @item selected_n
15708 The (sequential) number of the selected frame, starting from 0.
15709
15710 @item prev_selected_n
15711 The sequential number of the last selected frame. It's NAN if undefined.
15712
15713 @item TB
15714 The timebase of the input timestamps.
15715
15716 @item pts
15717 The PTS (Presentation TimeStamp) of the filtered video frame,
15718 expressed in @var{TB} units. It's NAN if undefined.
15719
15720 @item t
15721 The PTS of the filtered video frame,
15722 expressed in seconds. It's NAN if undefined.
15723
15724 @item prev_pts
15725 The PTS of the previously filtered video frame. It's NAN if undefined.
15726
15727 @item prev_selected_pts
15728 The PTS of the last previously filtered video frame. It's NAN if undefined.
15729
15730 @item prev_selected_t
15731 The PTS of the last previously selected video frame. It's NAN if undefined.
15732
15733 @item start_pts
15734 The PTS of the first video frame in the video. It's NAN if undefined.
15735
15736 @item start_t
15737 The time of the first video frame in the video. It's NAN if undefined.
15738
15739 @item pict_type @emph{(video only)}
15740 The type of the filtered frame. It can assume one of the following
15741 values:
15742 @table @option
15743 @item I
15744 @item P
15745 @item B
15746 @item S
15747 @item SI
15748 @item SP
15749 @item BI
15750 @end table
15751
15752 @item interlace_type @emph{(video only)}
15753 The frame interlace type. It can assume one of the following values:
15754 @table @option
15755 @item PROGRESSIVE
15756 The frame is progressive (not interlaced).
15757 @item TOPFIRST
15758 The frame is top-field-first.
15759 @item BOTTOMFIRST
15760 The frame is bottom-field-first.
15761 @end table
15762
15763 @item consumed_sample_n @emph{(audio only)}
15764 the number of selected samples before the current frame
15765
15766 @item samples_n @emph{(audio only)}
15767 the number of samples in the current frame
15768
15769 @item sample_rate @emph{(audio only)}
15770 the input sample rate
15771
15772 @item key
15773 This is 1 if the filtered frame is a key-frame, 0 otherwise.
15774
15775 @item pos
15776 the position in the file of the filtered frame, -1 if the information
15777 is not available (e.g. for synthetic video)
15778
15779 @item scene @emph{(video only)}
15780 value between 0 and 1 to indicate a new scene; a low value reflects a low
15781 probability for the current frame to introduce a new scene, while a higher
15782 value means the current frame is more likely to be one (see the example below)
15783
15784 @item concatdec_select
15785 The concat demuxer can select only part of a concat input file by setting an
15786 inpoint and an outpoint, but the output packets may not be entirely contained
15787 in the selected interval. By using this variable, it is possible to skip frames
15788 generated by the concat demuxer which are not exactly contained in the selected
15789 interval.
15790
15791 This works by comparing the frame pts against the @var{lavf.concat.start_time}
15792 and the @var{lavf.concat.duration} packet metadata values which are also
15793 present in the decoded frames.
15794
15795 The @var{concatdec_select} variable is -1 if the frame pts is at least
15796 start_time and either the duration metadata is missing or the frame pts is less
15797 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
15798 missing.
15799
15800 That basically means that an input frame is selected if its pts is within the
15801 interval set by the concat demuxer.
15802
15803 @end table
15804
15805 The default value of the select expression is "1".
15806
15807 @subsection Examples
15808
15809 @itemize
15810 @item
15811 Select all frames in input:
15812 @example
15813 select
15814 @end example
15815
15816 The example above is the same as:
15817 @example
15818 select=1
15819 @end example
15820
15821 @item
15822 Skip all frames:
15823 @example
15824 select=0
15825 @end example
15826
15827 @item
15828 Select only I-frames:
15829 @example
15830 select='eq(pict_type\,I)'
15831 @end example
15832
15833 @item
15834 Select one frame every 100:
15835 @example
15836 select='not(mod(n\,100))'
15837 @end example
15838
15839 @item
15840 Select only frames contained in the 10-20 time interval:
15841 @example
15842 select=between(t\,10\,20)
15843 @end example
15844
15845 @item
15846 Select only I-frames contained in the 10-20 time interval:
15847 @example
15848 select=between(t\,10\,20)*eq(pict_type\,I)
15849 @end example
15850
15851 @item
15852 Select frames with a minimum distance of 10 seconds:
15853 @example
15854 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
15855 @end example
15856
15857 @item
15858 Use aselect to select only audio frames with samples number > 100:
15859 @example
15860 aselect='gt(samples_n\,100)'
15861 @end example
15862
15863 @item
15864 Create a mosaic of the first scenes:
15865 @example
15866 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
15867 @end example
15868
15869 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
15870 choice.
15871
15872 @item
15873 Send even and odd frames to separate outputs, and compose them:
15874 @example
15875 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
15876 @end example
15877
15878 @item
15879 Select useful frames from an ffconcat file which is using inpoints and
15880 outpoints but where the source files are not intra frame only.
15881 @example
15882 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
15883 @end example
15884 @end itemize
15885
15886 @section sendcmd, asendcmd
15887
15888 Send commands to filters in the filtergraph.
15889
15890 These filters read commands to be sent to other filters in the
15891 filtergraph.
15892
15893 @code{sendcmd} must be inserted between two video filters,
15894 @code{asendcmd} must be inserted between two audio filters, but apart
15895 from that they act the same way.
15896
15897 The specification of commands can be provided in the filter arguments
15898 with the @var{commands} option, or in a file specified by the
15899 @var{filename} option.
15900
15901 These filters accept the following options:
15902 @table @option
15903 @item commands, c
15904 Set the commands to be read and sent to the other filters.
15905 @item filename, f
15906 Set the filename of the commands to be read and sent to the other
15907 filters.
15908 @end table
15909
15910 @subsection Commands syntax
15911
15912 A commands description consists of a sequence of interval
15913 specifications, comprising a list of commands to be executed when a
15914 particular event related to that interval occurs. The occurring event
15915 is typically the current frame time entering or leaving a given time
15916 interval.
15917
15918 An interval is specified by the following syntax:
15919 @example
15920 @var{START}[-@var{END}] @var{COMMANDS};
15921 @end example
15922
15923 The time interval is specified by the @var{START} and @var{END} times.
15924 @var{END} is optional and defaults to the maximum time.
15925
15926 The current frame time is considered within the specified interval if
15927 it is included in the interval [@var{START}, @var{END}), that is when
15928 the time is greater or equal to @var{START} and is lesser than
15929 @var{END}.
15930
15931 @var{COMMANDS} consists of a sequence of one or more command
15932 specifications, separated by ",", relating to that interval.  The
15933 syntax of a command specification is given by:
15934 @example
15935 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
15936 @end example
15937
15938 @var{FLAGS} is optional and specifies the type of events relating to
15939 the time interval which enable sending the specified command, and must
15940 be a non-null sequence of identifier flags separated by "+" or "|" and
15941 enclosed between "[" and "]".
15942
15943 The following flags are recognized:
15944 @table @option
15945 @item enter
15946 The command is sent when the current frame timestamp enters the
15947 specified interval. In other words, the command is sent when the
15948 previous frame timestamp was not in the given interval, and the
15949 current is.
15950
15951 @item leave
15952 The command is sent when the current frame timestamp leaves the
15953 specified interval. In other words, the command is sent when the
15954 previous frame timestamp was in the given interval, and the
15955 current is not.
15956 @end table
15957
15958 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
15959 assumed.
15960
15961 @var{TARGET} specifies the target of the command, usually the name of
15962 the filter class or a specific filter instance name.
15963
15964 @var{COMMAND} specifies the name of the command for the target filter.
15965
15966 @var{ARG} is optional and specifies the optional list of argument for
15967 the given @var{COMMAND}.
15968
15969 Between one interval specification and another, whitespaces, or
15970 sequences of characters starting with @code{#} until the end of line,
15971 are ignored and can be used to annotate comments.
15972
15973 A simplified BNF description of the commands specification syntax
15974 follows:
15975 @example
15976 @var{COMMAND_FLAG}  ::= "enter" | "leave"
15977 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
15978 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
15979 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
15980 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
15981 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
15982 @end example
15983
15984 @subsection Examples
15985
15986 @itemize
15987 @item
15988 Specify audio tempo change at second 4:
15989 @example
15990 asendcmd=c='4.0 atempo tempo 1.5',atempo
15991 @end example
15992
15993 @item
15994 Specify a list of drawtext and hue commands in a file.
15995 @example
15996 # show text in the interval 5-10
15997 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
15998          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
15999
16000 # desaturate the image in the interval 15-20
16001 15.0-20.0 [enter] hue s 0,
16002           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
16003           [leave] hue s 1,
16004           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
16005
16006 # apply an exponential saturation fade-out effect, starting from time 25
16007 25 [enter] hue s exp(25-t)
16008 @end example
16009
16010 A filtergraph allowing to read and process the above command list
16011 stored in a file @file{test.cmd}, can be specified with:
16012 @example
16013 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
16014 @end example
16015 @end itemize
16016
16017 @anchor{setpts}
16018 @section setpts, asetpts
16019
16020 Change the PTS (presentation timestamp) of the input frames.
16021
16022 @code{setpts} works on video frames, @code{asetpts} on audio frames.
16023
16024 This filter accepts the following options:
16025
16026 @table @option
16027
16028 @item expr
16029 The expression which is evaluated for each frame to construct its timestamp.
16030
16031 @end table
16032
16033 The expression is evaluated through the eval API and can contain the following
16034 constants:
16035
16036 @table @option
16037 @item FRAME_RATE
16038 frame rate, only defined for constant frame-rate video
16039
16040 @item PTS
16041 The presentation timestamp in input
16042
16043 @item N
16044 The count of the input frame for video or the number of consumed samples,
16045 not including the current frame for audio, starting from 0.
16046
16047 @item NB_CONSUMED_SAMPLES
16048 The number of consumed samples, not including the current frame (only
16049 audio)
16050
16051 @item NB_SAMPLES, S
16052 The number of samples in the current frame (only audio)
16053
16054 @item SAMPLE_RATE, SR
16055 The audio sample rate.
16056
16057 @item STARTPTS
16058 The PTS of the first frame.
16059
16060 @item STARTT
16061 the time in seconds of the first frame
16062
16063 @item INTERLACED
16064 State whether the current frame is interlaced.
16065
16066 @item T
16067 the time in seconds of the current frame
16068
16069 @item POS
16070 original position in the file of the frame, or undefined if undefined
16071 for the current frame
16072
16073 @item PREV_INPTS
16074 The previous input PTS.
16075
16076 @item PREV_INT
16077 previous input time in seconds
16078
16079 @item PREV_OUTPTS
16080 The previous output PTS.
16081
16082 @item PREV_OUTT
16083 previous output time in seconds
16084
16085 @item RTCTIME
16086 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
16087 instead.
16088
16089 @item RTCSTART
16090 The wallclock (RTC) time at the start of the movie in microseconds.
16091
16092 @item TB
16093 The timebase of the input timestamps.
16094
16095 @end table
16096
16097 @subsection Examples
16098
16099 @itemize
16100 @item
16101 Start counting PTS from zero
16102 @example
16103 setpts=PTS-STARTPTS
16104 @end example
16105
16106 @item
16107 Apply fast motion effect:
16108 @example
16109 setpts=0.5*PTS
16110 @end example
16111
16112 @item
16113 Apply slow motion effect:
16114 @example
16115 setpts=2.0*PTS
16116 @end example
16117
16118 @item
16119 Set fixed rate of 25 frames per second:
16120 @example
16121 setpts=N/(25*TB)
16122 @end example
16123
16124 @item
16125 Set fixed rate 25 fps with some jitter:
16126 @example
16127 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
16128 @end example
16129
16130 @item
16131 Apply an offset of 10 seconds to the input PTS:
16132 @example
16133 setpts=PTS+10/TB
16134 @end example
16135
16136 @item
16137 Generate timestamps from a "live source" and rebase onto the current timebase:
16138 @example
16139 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
16140 @end example
16141
16142 @item
16143 Generate timestamps by counting samples:
16144 @example
16145 asetpts=N/SR/TB
16146 @end example
16147
16148 @end itemize
16149
16150 @section settb, asettb
16151
16152 Set the timebase to use for the output frames timestamps.
16153 It is mainly useful for testing timebase configuration.
16154
16155 It accepts the following parameters:
16156
16157 @table @option
16158
16159 @item expr, tb
16160 The expression which is evaluated into the output timebase.
16161
16162 @end table
16163
16164 The value for @option{tb} is an arithmetic expression representing a
16165 rational. The expression can contain the constants "AVTB" (the default
16166 timebase), "intb" (the input timebase) and "sr" (the sample rate,
16167 audio only). Default value is "intb".
16168
16169 @subsection Examples
16170
16171 @itemize
16172 @item
16173 Set the timebase to 1/25:
16174 @example
16175 settb=expr=1/25
16176 @end example
16177
16178 @item
16179 Set the timebase to 1/10:
16180 @example
16181 settb=expr=0.1
16182 @end example
16183
16184 @item
16185 Set the timebase to 1001/1000:
16186 @example
16187 settb=1+0.001
16188 @end example
16189
16190 @item
16191 Set the timebase to 2*intb:
16192 @example
16193 settb=2*intb
16194 @end example
16195
16196 @item
16197 Set the default timebase value:
16198 @example
16199 settb=AVTB
16200 @end example
16201 @end itemize
16202
16203 @section showcqt
16204 Convert input audio to a video output representing frequency spectrum
16205 logarithmically using Brown-Puckette constant Q transform algorithm with
16206 direct frequency domain coefficient calculation (but the transform itself
16207 is not really constant Q, instead the Q factor is actually variable/clamped),
16208 with musical tone scale, from E0 to D#10.
16209
16210 The filter accepts the following options:
16211
16212 @table @option
16213 @item size, s
16214 Specify the video size for the output. It must be even. For the syntax of this option,
16215 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16216 Default value is @code{1920x1080}.
16217
16218 @item fps, rate, r
16219 Set the output frame rate. Default value is @code{25}.
16220
16221 @item bar_h
16222 Set the bargraph height. It must be even. Default value is @code{-1} which
16223 computes the bargraph height automatically.
16224
16225 @item axis_h
16226 Set the axis height. It must be even. Default value is @code{-1} which computes
16227 the axis height automatically.
16228
16229 @item sono_h
16230 Set the sonogram height. It must be even. Default value is @code{-1} which
16231 computes the sonogram height automatically.
16232
16233 @item fullhd
16234 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
16235 instead. Default value is @code{1}.
16236
16237 @item sono_v, volume
16238 Specify the sonogram volume expression. It can contain variables:
16239 @table @option
16240 @item bar_v
16241 the @var{bar_v} evaluated expression
16242 @item frequency, freq, f
16243 the frequency where it is evaluated
16244 @item timeclamp, tc
16245 the value of @var{timeclamp} option
16246 @end table
16247 and functions:
16248 @table @option
16249 @item a_weighting(f)
16250 A-weighting of equal loudness
16251 @item b_weighting(f)
16252 B-weighting of equal loudness
16253 @item c_weighting(f)
16254 C-weighting of equal loudness.
16255 @end table
16256 Default value is @code{16}.
16257
16258 @item bar_v, volume2
16259 Specify the bargraph volume expression. It can contain variables:
16260 @table @option
16261 @item sono_v
16262 the @var{sono_v} evaluated expression
16263 @item frequency, freq, f
16264 the frequency where it is evaluated
16265 @item timeclamp, tc
16266 the value of @var{timeclamp} option
16267 @end table
16268 and functions:
16269 @table @option
16270 @item a_weighting(f)
16271 A-weighting of equal loudness
16272 @item b_weighting(f)
16273 B-weighting of equal loudness
16274 @item c_weighting(f)
16275 C-weighting of equal loudness.
16276 @end table
16277 Default value is @code{sono_v}.
16278
16279 @item sono_g, gamma
16280 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
16281 higher gamma makes the spectrum having more range. Default value is @code{3}.
16282 Acceptable range is @code{[1, 7]}.
16283
16284 @item bar_g, gamma2
16285 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
16286 @code{[1, 7]}.
16287
16288 @item timeclamp, tc
16289 Specify the transform timeclamp. At low frequency, there is trade-off between
16290 accuracy in time domain and frequency domain. If timeclamp is lower,
16291 event in time domain is represented more accurately (such as fast bass drum),
16292 otherwise event in frequency domain is represented more accurately
16293 (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
16294
16295 @item basefreq
16296 Specify the transform base frequency. Default value is @code{20.01523126408007475},
16297 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
16298
16299 @item endfreq
16300 Specify the transform end frequency. Default value is @code{20495.59681441799654},
16301 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
16302
16303 @item coeffclamp
16304 This option is deprecated and ignored.
16305
16306 @item tlength
16307 Specify the transform length in time domain. Use this option to control accuracy
16308 trade-off between time domain and frequency domain at every frequency sample.
16309 It can contain variables:
16310 @table @option
16311 @item frequency, freq, f
16312 the frequency where it is evaluated
16313 @item timeclamp, tc
16314 the value of @var{timeclamp} option.
16315 @end table
16316 Default value is @code{384*tc/(384+tc*f)}.
16317
16318 @item count
16319 Specify the transform count for every video frame. Default value is @code{6}.
16320 Acceptable range is @code{[1, 30]}.
16321
16322 @item fcount
16323 Specify the transform count for every single pixel. Default value is @code{0},
16324 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
16325
16326 @item fontfile
16327 Specify font file for use with freetype to draw the axis. If not specified,
16328 use embedded font. Note that drawing with font file or embedded font is not
16329 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
16330 option instead.
16331
16332 @item fontcolor
16333 Specify font color expression. This is arithmetic expression that should return
16334 integer value 0xRRGGBB. It can contain variables:
16335 @table @option
16336 @item frequency, freq, f
16337 the frequency where it is evaluated
16338 @item timeclamp, tc
16339 the value of @var{timeclamp} option
16340 @end table
16341 and functions:
16342 @table @option
16343 @item midi(f)
16344 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
16345 @item r(x), g(x), b(x)
16346 red, green, and blue value of intensity x.
16347 @end table
16348 Default value is @code{st(0, (midi(f)-59.5)/12);
16349 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
16350 r(1-ld(1)) + b(ld(1))}.
16351
16352 @item axisfile
16353 Specify image file to draw the axis. This option override @var{fontfile} and
16354 @var{fontcolor} option.
16355
16356 @item axis, text
16357 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
16358 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
16359 Default value is @code{1}.
16360
16361 @end table
16362
16363 @subsection Examples
16364
16365 @itemize
16366 @item
16367 Playing audio while showing the spectrum:
16368 @example
16369 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
16370 @end example
16371
16372 @item
16373 Same as above, but with frame rate 30 fps:
16374 @example
16375 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
16376 @end example
16377
16378 @item
16379 Playing at 1280x720:
16380 @example
16381 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
16382 @end example
16383
16384 @item
16385 Disable sonogram display:
16386 @example
16387 sono_h=0
16388 @end example
16389
16390 @item
16391 A1 and its harmonics: A1, A2, (near)E3, A3:
16392 @example
16393 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),
16394                  asplit[a][out1]; [a] showcqt [out0]'
16395 @end example
16396
16397 @item
16398 Same as above, but with more accuracy in frequency domain:
16399 @example
16400 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),
16401                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
16402 @end example
16403
16404 @item
16405 Custom volume:
16406 @example
16407 bar_v=10:sono_v=bar_v*a_weighting(f)
16408 @end example
16409
16410 @item
16411 Custom gamma, now spectrum is linear to the amplitude.
16412 @example
16413 bar_g=2:sono_g=2
16414 @end example
16415
16416 @item
16417 Custom tlength equation:
16418 @example
16419 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)))'
16420 @end example
16421
16422 @item
16423 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
16424 @example
16425 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
16426 @end example
16427
16428 @item
16429 Custom frequency range with custom axis using image file:
16430 @example
16431 axisfile=myaxis.png:basefreq=40:endfreq=10000
16432 @end example
16433 @end itemize
16434
16435 @section showfreqs
16436
16437 Convert input audio to video output representing the audio power spectrum.
16438 Audio amplitude is on Y-axis while frequency is on X-axis.
16439
16440 The filter accepts the following options:
16441
16442 @table @option
16443 @item size, s
16444 Specify size of video. For the syntax of this option, check the
16445 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16446 Default is @code{1024x512}.
16447
16448 @item mode
16449 Set display mode.
16450 This set how each frequency bin will be represented.
16451
16452 It accepts the following values:
16453 @table @samp
16454 @item line
16455 @item bar
16456 @item dot
16457 @end table
16458 Default is @code{bar}.
16459
16460 @item ascale
16461 Set amplitude scale.
16462
16463 It accepts the following values:
16464 @table @samp
16465 @item lin
16466 Linear scale.
16467
16468 @item sqrt
16469 Square root scale.
16470
16471 @item cbrt
16472 Cubic root scale.
16473
16474 @item log
16475 Logarithmic scale.
16476 @end table
16477 Default is @code{log}.
16478
16479 @item fscale
16480 Set frequency scale.
16481
16482 It accepts the following values:
16483 @table @samp
16484 @item lin
16485 Linear scale.
16486
16487 @item log
16488 Logarithmic scale.
16489
16490 @item rlog
16491 Reverse logarithmic scale.
16492 @end table
16493 Default is @code{lin}.
16494
16495 @item win_size
16496 Set window size.
16497
16498 It accepts the following values:
16499 @table @samp
16500 @item w16
16501 @item w32
16502 @item w64
16503 @item w128
16504 @item w256
16505 @item w512
16506 @item w1024
16507 @item w2048
16508 @item w4096
16509 @item w8192
16510 @item w16384
16511 @item w32768
16512 @item w65536
16513 @end table
16514 Default is @code{w2048}
16515
16516 @item win_func
16517 Set windowing function.
16518
16519 It accepts the following values:
16520 @table @samp
16521 @item rect
16522 @item bartlett
16523 @item hanning
16524 @item hamming
16525 @item blackman
16526 @item welch
16527 @item flattop
16528 @item bharris
16529 @item bnuttall
16530 @item bhann
16531 @item sine
16532 @item nuttall
16533 @item lanczos
16534 @item gauss
16535 @item tukey
16536 @item dolph
16537 @item cauchy
16538 @item parzen
16539 @item poisson
16540 @end table
16541 Default is @code{hanning}.
16542
16543 @item overlap
16544 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
16545 which means optimal overlap for selected window function will be picked.
16546
16547 @item averaging
16548 Set time averaging. Setting this to 0 will display current maximal peaks.
16549 Default is @code{1}, which means time averaging is disabled.
16550
16551 @item colors
16552 Specify list of colors separated by space or by '|' which will be used to
16553 draw channel frequencies. Unrecognized or missing colors will be replaced
16554 by white color.
16555
16556 @item cmode
16557 Set channel display mode.
16558
16559 It accepts the following values:
16560 @table @samp
16561 @item combined
16562 @item separate
16563 @end table
16564 Default is @code{combined}.
16565
16566 @item minamp
16567 Set minimum amplitude used in @code{log} amplitude scaler.
16568
16569 @end table
16570
16571 @anchor{showspectrum}
16572 @section showspectrum
16573
16574 Convert input audio to a video output, representing the audio frequency
16575 spectrum.
16576
16577 The filter accepts the following options:
16578
16579 @table @option
16580 @item size, s
16581 Specify the video size for the output. For the syntax of this option, check the
16582 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16583 Default value is @code{640x512}.
16584
16585 @item slide
16586 Specify how the spectrum should slide along the window.
16587
16588 It accepts the following values:
16589 @table @samp
16590 @item replace
16591 the samples start again on the left when they reach the right
16592 @item scroll
16593 the samples scroll from right to left
16594 @item rscroll
16595 the samples scroll from left to right
16596 @item fullframe
16597 frames are only produced when the samples reach the right
16598 @end table
16599
16600 Default value is @code{replace}.
16601
16602 @item mode
16603 Specify display mode.
16604
16605 It accepts the following values:
16606 @table @samp
16607 @item combined
16608 all channels are displayed in the same row
16609 @item separate
16610 all channels are displayed in separate rows
16611 @end table
16612
16613 Default value is @samp{combined}.
16614
16615 @item color
16616 Specify display color mode.
16617
16618 It accepts the following values:
16619 @table @samp
16620 @item channel
16621 each channel is displayed in a separate color
16622 @item intensity
16623 each channel is displayed using the same color scheme
16624 @item rainbow
16625 each channel is displayed using the rainbow color scheme
16626 @item moreland
16627 each channel is displayed using the moreland color scheme
16628 @item nebulae
16629 each channel is displayed using the nebulae color scheme
16630 @item fire
16631 each channel is displayed using the fire color scheme
16632 @item fiery
16633 each channel is displayed using the fiery color scheme
16634 @item fruit
16635 each channel is displayed using the fruit color scheme
16636 @item cool
16637 each channel is displayed using the cool color scheme
16638 @end table
16639
16640 Default value is @samp{channel}.
16641
16642 @item scale
16643 Specify scale used for calculating intensity color values.
16644
16645 It accepts the following values:
16646 @table @samp
16647 @item lin
16648 linear
16649 @item sqrt
16650 square root, default
16651 @item cbrt
16652 cubic root
16653 @item 4thrt
16654 4th root
16655 @item 5thrt
16656 5th root
16657 @item log
16658 logarithmic
16659 @end table
16660
16661 Default value is @samp{sqrt}.
16662
16663 @item saturation
16664 Set saturation modifier for displayed colors. Negative values provide
16665 alternative color scheme. @code{0} is no saturation at all.
16666 Saturation must be in [-10.0, 10.0] range.
16667 Default value is @code{1}.
16668
16669 @item win_func
16670 Set window function.
16671
16672 It accepts the following values:
16673 @table @samp
16674 @item rect
16675 @item bartlett
16676 @item hann
16677 @item hanning
16678 @item hamming
16679 @item blackman
16680 @item welch
16681 @item flattop
16682 @item bharris
16683 @item bnuttall
16684 @item bhann
16685 @item sine
16686 @item nuttall
16687 @item lanczos
16688 @item gauss
16689 @item tukey
16690 @item dolph
16691 @item cauchy
16692 @item parzen
16693 @item poisson
16694 @end table
16695
16696 Default value is @code{hann}.
16697
16698 @item orientation
16699 Set orientation of time vs frequency axis. Can be @code{vertical} or
16700 @code{horizontal}. Default is @code{vertical}.
16701
16702 @item overlap
16703 Set ratio of overlap window. Default value is @code{0}.
16704 When value is @code{1} overlap is set to recommended size for specific
16705 window function currently used.
16706
16707 @item gain
16708 Set scale gain for calculating intensity color values.
16709 Default value is @code{1}.
16710
16711 @item data
16712 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
16713
16714 @item rotation
16715 Set color rotation, must be in [-1.0, 1.0] range.
16716 Default value is @code{0}.
16717 @end table
16718
16719 The usage is very similar to the showwaves filter; see the examples in that
16720 section.
16721
16722 @subsection Examples
16723
16724 @itemize
16725 @item
16726 Large window with logarithmic color scaling:
16727 @example
16728 showspectrum=s=1280x480:scale=log
16729 @end example
16730
16731 @item
16732 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
16733 @example
16734 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16735              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
16736 @end example
16737 @end itemize
16738
16739 @section showspectrumpic
16740
16741 Convert input audio to a single video frame, representing the audio frequency
16742 spectrum.
16743
16744 The filter accepts the following options:
16745
16746 @table @option
16747 @item size, s
16748 Specify the video size for the output. For the syntax of this option, check the
16749 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16750 Default value is @code{4096x2048}.
16751
16752 @item mode
16753 Specify display mode.
16754
16755 It accepts the following values:
16756 @table @samp
16757 @item combined
16758 all channels are displayed in the same row
16759 @item separate
16760 all channels are displayed in separate rows
16761 @end table
16762 Default value is @samp{combined}.
16763
16764 @item color
16765 Specify display color mode.
16766
16767 It accepts the following values:
16768 @table @samp
16769 @item channel
16770 each channel is displayed in a separate color
16771 @item intensity
16772 each channel is displayed using the same color scheme
16773 @item rainbow
16774 each channel is displayed using the rainbow color scheme
16775 @item moreland
16776 each channel is displayed using the moreland color scheme
16777 @item nebulae
16778 each channel is displayed using the nebulae color scheme
16779 @item fire
16780 each channel is displayed using the fire color scheme
16781 @item fiery
16782 each channel is displayed using the fiery color scheme
16783 @item fruit
16784 each channel is displayed using the fruit color scheme
16785 @item cool
16786 each channel is displayed using the cool color scheme
16787 @end table
16788 Default value is @samp{intensity}.
16789
16790 @item scale
16791 Specify scale used for calculating intensity color values.
16792
16793 It accepts the following values:
16794 @table @samp
16795 @item lin
16796 linear
16797 @item sqrt
16798 square root, default
16799 @item cbrt
16800 cubic root
16801 @item 4thrt
16802 4th root
16803 @item 5thrt
16804 5th root
16805 @item log
16806 logarithmic
16807 @end table
16808 Default value is @samp{log}.
16809
16810 @item saturation
16811 Set saturation modifier for displayed colors. Negative values provide
16812 alternative color scheme. @code{0} is no saturation at all.
16813 Saturation must be in [-10.0, 10.0] range.
16814 Default value is @code{1}.
16815
16816 @item win_func
16817 Set window function.
16818
16819 It accepts the following values:
16820 @table @samp
16821 @item rect
16822 @item bartlett
16823 @item hann
16824 @item hanning
16825 @item hamming
16826 @item blackman
16827 @item welch
16828 @item flattop
16829 @item bharris
16830 @item bnuttall
16831 @item bhann
16832 @item sine
16833 @item nuttall
16834 @item lanczos
16835 @item gauss
16836 @item tukey
16837 @item dolph
16838 @item cauchy
16839 @item parzen
16840 @item poisson
16841 @end table
16842 Default value is @code{hann}.
16843
16844 @item orientation
16845 Set orientation of time vs frequency axis. Can be @code{vertical} or
16846 @code{horizontal}. Default is @code{vertical}.
16847
16848 @item gain
16849 Set scale gain for calculating intensity color values.
16850 Default value is @code{1}.
16851
16852 @item legend
16853 Draw time and frequency axes and legends. Default is enabled.
16854
16855 @item rotation
16856 Set color rotation, must be in [-1.0, 1.0] range.
16857 Default value is @code{0}.
16858 @end table
16859
16860 @subsection Examples
16861
16862 @itemize
16863 @item
16864 Extract an audio spectrogram of a whole audio track
16865 in a 1024x1024 picture using @command{ffmpeg}:
16866 @example
16867 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
16868 @end example
16869 @end itemize
16870
16871 @section showvolume
16872
16873 Convert input audio volume to a video output.
16874
16875 The filter accepts the following options:
16876
16877 @table @option
16878 @item rate, r
16879 Set video rate.
16880
16881 @item b
16882 Set border width, allowed range is [0, 5]. Default is 1.
16883
16884 @item w
16885 Set channel width, allowed range is [80, 8192]. Default is 400.
16886
16887 @item h
16888 Set channel height, allowed range is [1, 900]. Default is 20.
16889
16890 @item f
16891 Set fade, allowed range is [0.001, 1]. Default is 0.95.
16892
16893 @item c
16894 Set volume color expression.
16895
16896 The expression can use the following variables:
16897
16898 @table @option
16899 @item VOLUME
16900 Current max volume of channel in dB.
16901
16902 @item PEAK
16903 Current peak.
16904
16905 @item CHANNEL
16906 Current channel number, starting from 0.
16907 @end table
16908
16909 @item t
16910 If set, displays channel names. Default is enabled.
16911
16912 @item v
16913 If set, displays volume values. Default is enabled.
16914
16915 @item o
16916 Set orientation, can be @code{horizontal} or @code{vertical},
16917 default is @code{horizontal}.
16918
16919 @item s
16920 Set step size, allowed range s [0, 5]. Default is 0, which means
16921 step is disabled.
16922 @end table
16923
16924 @section showwaves
16925
16926 Convert input audio to a video output, representing the samples waves.
16927
16928 The filter accepts the following options:
16929
16930 @table @option
16931 @item size, s
16932 Specify the video size for the output. For the syntax of this option, check the
16933 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16934 Default value is @code{600x240}.
16935
16936 @item mode
16937 Set display mode.
16938
16939 Available values are:
16940 @table @samp
16941 @item point
16942 Draw a point for each sample.
16943
16944 @item line
16945 Draw a vertical line for each sample.
16946
16947 @item p2p
16948 Draw a point for each sample and a line between them.
16949
16950 @item cline
16951 Draw a centered vertical line for each sample.
16952 @end table
16953
16954 Default value is @code{point}.
16955
16956 @item n
16957 Set the number of samples which are printed on the same column. A
16958 larger value will decrease the frame rate. Must be a positive
16959 integer. This option can be set only if the value for @var{rate}
16960 is not explicitly specified.
16961
16962 @item rate, r
16963 Set the (approximate) output frame rate. This is done by setting the
16964 option @var{n}. Default value is "25".
16965
16966 @item split_channels
16967 Set if channels should be drawn separately or overlap. Default value is 0.
16968
16969 @item colors
16970 Set colors separated by '|' which are going to be used for drawing of each channel.
16971
16972 @item scale
16973 Set amplitude scale.
16974
16975 Available values are:
16976 @table @samp
16977 @item lin
16978 Linear.
16979
16980 @item log
16981 Logarithmic.
16982
16983 @item sqrt
16984 Square root.
16985
16986 @item cbrt
16987 Cubic root.
16988 @end table
16989
16990 Default is linear.
16991 @end table
16992
16993 @subsection Examples
16994
16995 @itemize
16996 @item
16997 Output the input file audio and the corresponding video representation
16998 at the same time:
16999 @example
17000 amovie=a.mp3,asplit[out0],showwaves[out1]
17001 @end example
17002
17003 @item
17004 Create a synthetic signal and show it with showwaves, forcing a
17005 frame rate of 30 frames per second:
17006 @example
17007 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
17008 @end example
17009 @end itemize
17010
17011 @section showwavespic
17012
17013 Convert input audio to a single video frame, representing the samples waves.
17014
17015 The filter accepts the following options:
17016
17017 @table @option
17018 @item size, s
17019 Specify the video size for the output. For the syntax of this option, check the
17020 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17021 Default value is @code{600x240}.
17022
17023 @item split_channels
17024 Set if channels should be drawn separately or overlap. Default value is 0.
17025
17026 @item colors
17027 Set colors separated by '|' which are going to be used for drawing of each channel.
17028
17029 @item scale
17030 Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
17031 Default is linear.
17032 @end table
17033
17034 @subsection Examples
17035
17036 @itemize
17037 @item
17038 Extract a channel split representation of the wave form of a whole audio track
17039 in a 1024x800 picture using @command{ffmpeg}:
17040 @example
17041 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
17042 @end example
17043 @end itemize
17044
17045 @section spectrumsynth
17046
17047 Sythesize audio from 2 input video spectrums, first input stream represents
17048 magnitude across time and second represents phase across time.
17049 The filter will transform from frequency domain as displayed in videos back
17050 to time domain as presented in audio output.
17051
17052 This filter is primarly created for reversing processed @ref{showspectrum}
17053 filter outputs, but can synthesize sound from other spectrograms too.
17054 But in such case results are going to be poor if the phase data is not
17055 available, because in such cases phase data need to be recreated, usually
17056 its just recreated from random noise.
17057 For best results use gray only output (@code{channel} color mode in
17058 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
17059 @code{lin} scale for phase video. To produce phase, for 2nd video, use
17060 @code{data} option. Inputs videos should generally use @code{fullframe}
17061 slide mode as that saves resources needed for decoding video.
17062
17063 The filter accepts the following options:
17064
17065 @table @option
17066 @item sample_rate
17067 Specify sample rate of output audio, the sample rate of audio from which
17068 spectrum was generated may differ.
17069
17070 @item channels
17071 Set number of channels represented in input video spectrums.
17072
17073 @item scale
17074 Set scale which was used when generating magnitude input spectrum.
17075 Can be @code{lin} or @code{log}. Default is @code{log}.
17076
17077 @item slide
17078 Set slide which was used when generating inputs spectrums.
17079 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
17080 Default is @code{fullframe}.
17081
17082 @item win_func
17083 Set window function used for resynthesis.
17084
17085 @item overlap
17086 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17087 which means optimal overlap for selected window function will be picked.
17088
17089 @item orientation
17090 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
17091 Default is @code{vertical}.
17092 @end table
17093
17094 @subsection Examples
17095
17096 @itemize
17097 @item
17098 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
17099 then resynthesize videos back to audio with spectrumsynth:
17100 @example
17101 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
17102 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
17103 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
17104 @end example
17105 @end itemize
17106
17107 @section split, asplit
17108
17109 Split input into several identical outputs.
17110
17111 @code{asplit} works with audio input, @code{split} with video.
17112
17113 The filter accepts a single parameter which specifies the number of outputs. If
17114 unspecified, it defaults to 2.
17115
17116 @subsection Examples
17117
17118 @itemize
17119 @item
17120 Create two separate outputs from the same input:
17121 @example
17122 [in] split [out0][out1]
17123 @end example
17124
17125 @item
17126 To create 3 or more outputs, you need to specify the number of
17127 outputs, like in:
17128 @example
17129 [in] asplit=3 [out0][out1][out2]
17130 @end example
17131
17132 @item
17133 Create two separate outputs from the same input, one cropped and
17134 one padded:
17135 @example
17136 [in] split [splitout1][splitout2];
17137 [splitout1] crop=100:100:0:0    [cropout];
17138 [splitout2] pad=200:200:100:100 [padout];
17139 @end example
17140
17141 @item
17142 Create 5 copies of the input audio with @command{ffmpeg}:
17143 @example
17144 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
17145 @end example
17146 @end itemize
17147
17148 @section zmq, azmq
17149
17150 Receive commands sent through a libzmq client, and forward them to
17151 filters in the filtergraph.
17152
17153 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
17154 must be inserted between two video filters, @code{azmq} between two
17155 audio filters.
17156
17157 To enable these filters you need to install the libzmq library and
17158 headers and configure FFmpeg with @code{--enable-libzmq}.
17159
17160 For more information about libzmq see:
17161 @url{http://www.zeromq.org/}
17162
17163 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
17164 receives messages sent through a network interface defined by the
17165 @option{bind_address} option.
17166
17167 The received message must be in the form:
17168 @example
17169 @var{TARGET} @var{COMMAND} [@var{ARG}]
17170 @end example
17171
17172 @var{TARGET} specifies the target of the command, usually the name of
17173 the filter class or a specific filter instance name.
17174
17175 @var{COMMAND} specifies the name of the command for the target filter.
17176
17177 @var{ARG} is optional and specifies the optional argument list for the
17178 given @var{COMMAND}.
17179
17180 Upon reception, the message is processed and the corresponding command
17181 is injected into the filtergraph. Depending on the result, the filter
17182 will send a reply to the client, adopting the format:
17183 @example
17184 @var{ERROR_CODE} @var{ERROR_REASON}
17185 @var{MESSAGE}
17186 @end example
17187
17188 @var{MESSAGE} is optional.
17189
17190 @subsection Examples
17191
17192 Look at @file{tools/zmqsend} for an example of a zmq client which can
17193 be used to send commands processed by these filters.
17194
17195 Consider the following filtergraph generated by @command{ffplay}
17196 @example
17197 ffplay -dumpgraph 1 -f lavfi "
17198 color=s=100x100:c=red  [l];
17199 color=s=100x100:c=blue [r];
17200 nullsrc=s=200x100, zmq [bg];
17201 [bg][l]   overlay      [bg+l];
17202 [bg+l][r] overlay=x=100 "
17203 @end example
17204
17205 To change the color of the left side of the video, the following
17206 command can be used:
17207 @example
17208 echo Parsed_color_0 c yellow | tools/zmqsend
17209 @end example
17210
17211 To change the right side:
17212 @example
17213 echo Parsed_color_1 c pink | tools/zmqsend
17214 @end example
17215
17216 @c man end MULTIMEDIA FILTERS
17217
17218 @chapter Multimedia Sources
17219 @c man begin MULTIMEDIA SOURCES
17220
17221 Below is a description of the currently available multimedia sources.
17222
17223 @section amovie
17224
17225 This is the same as @ref{movie} source, except it selects an audio
17226 stream by default.
17227
17228 @anchor{movie}
17229 @section movie
17230
17231 Read audio and/or video stream(s) from a movie container.
17232
17233 It accepts the following parameters:
17234
17235 @table @option
17236 @item filename
17237 The name of the resource to read (not necessarily a file; it can also be a
17238 device or a stream accessed through some protocol).
17239
17240 @item format_name, f
17241 Specifies the format assumed for the movie to read, and can be either
17242 the name of a container or an input device. If not specified, the
17243 format is guessed from @var{movie_name} or by probing.
17244
17245 @item seek_point, sp
17246 Specifies the seek point in seconds. The frames will be output
17247 starting from this seek point. The parameter is evaluated with
17248 @code{av_strtod}, so the numerical value may be suffixed by an IS
17249 postfix. The default value is "0".
17250
17251 @item streams, s
17252 Specifies the streams to read. Several streams can be specified,
17253 separated by "+". The source will then have as many outputs, in the
17254 same order. The syntax is explained in the ``Stream specifiers''
17255 section in the ffmpeg manual. Two special names, "dv" and "da" specify
17256 respectively the default (best suited) video and audio stream. Default
17257 is "dv", or "da" if the filter is called as "amovie".
17258
17259 @item stream_index, si
17260 Specifies the index of the video stream to read. If the value is -1,
17261 the most suitable video stream will be automatically selected. The default
17262 value is "-1". Deprecated. If the filter is called "amovie", it will select
17263 audio instead of video.
17264
17265 @item loop
17266 Specifies how many times to read the stream in sequence.
17267 If the value is less than 1, the stream will be read again and again.
17268 Default value is "1".
17269
17270 Note that when the movie is looped the source timestamps are not
17271 changed, so it will generate non monotonically increasing timestamps.
17272
17273 @item discontinuity
17274 Specifies the time difference between frames above which the point is
17275 considered a timestamp discontinuity which is removed by adjusting the later
17276 timestamps.
17277 @end table
17278
17279 It allows overlaying a second video on top of the main input of
17280 a filtergraph, as shown in this graph:
17281 @example
17282 input -----------> deltapts0 --> overlay --> output
17283                                     ^
17284                                     |
17285 movie --> scale--> deltapts1 -------+
17286 @end example
17287 @subsection Examples
17288
17289 @itemize
17290 @item
17291 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
17292 on top of the input labelled "in":
17293 @example
17294 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
17295 [in] setpts=PTS-STARTPTS [main];
17296 [main][over] overlay=16:16 [out]
17297 @end example
17298
17299 @item
17300 Read from a video4linux2 device, and overlay it on top of the input
17301 labelled "in":
17302 @example
17303 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
17304 [in] setpts=PTS-STARTPTS [main];
17305 [main][over] overlay=16:16 [out]
17306 @end example
17307
17308 @item
17309 Read the first video stream and the audio stream with id 0x81 from
17310 dvd.vob; the video is connected to the pad named "video" and the audio is
17311 connected to the pad named "audio":
17312 @example
17313 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
17314 @end example
17315 @end itemize
17316
17317 @subsection Commands
17318
17319 Both movie and amovie support the following commands:
17320 @table @option
17321 @item seek
17322 Perform seek using "av_seek_frame".
17323 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
17324 @itemize
17325 @item
17326 @var{stream_index}: If stream_index is -1, a default
17327 stream is selected, and @var{timestamp} is automatically converted
17328 from AV_TIME_BASE units to the stream specific time_base.
17329 @item
17330 @var{timestamp}: Timestamp in AVStream.time_base units
17331 or, if no stream is specified, in AV_TIME_BASE units.
17332 @item
17333 @var{flags}: Flags which select direction and seeking mode.
17334 @end itemize
17335
17336 @item get_duration
17337 Get movie duration in AV_TIME_BASE units.
17338
17339 @end table
17340
17341 @c man end MULTIMEDIA SOURCES