]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit 'f56a08559334b7eb6b3fedbc0cc741887f6067ae'
[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 acrossfade
322
323 Apply cross fade from one input audio stream to another input audio stream.
324 The cross fade is applied for specified duration near the end of first stream.
325
326 The filter accepts the following options:
327
328 @table @option
329 @item nb_samples, ns
330 Specify the number of samples for which the cross fade effect has to last.
331 At the end of the cross fade effect the first input audio will be completely
332 silent. Default is 44100.
333
334 @item duration, d
335 Specify the duration of the cross fade effect. See
336 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
337 for the accepted syntax.
338 By default the duration is determined by @var{nb_samples}.
339 If set this option is used instead of @var{nb_samples}.
340
341 @item overlap, o
342 Should first stream end overlap with second stream start. Default is enabled.
343
344 @item curve1
345 Set curve for cross fade transition for first stream.
346
347 @item curve2
348 Set curve for cross fade transition for second stream.
349
350 For description of available curve types see @ref{afade} filter description.
351 @end table
352
353 @subsection Examples
354
355 @itemize
356 @item
357 Cross fade from one input to another:
358 @example
359 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
360 @end example
361
362 @item
363 Cross fade from one input to another but without overlapping:
364 @example
365 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
366 @end example
367 @end itemize
368
369 @section adelay
370
371 Delay one or more audio channels.
372
373 Samples in delayed channel are filled with silence.
374
375 The filter accepts the following option:
376
377 @table @option
378 @item delays
379 Set list of delays in milliseconds for each channel separated by '|'.
380 At least one delay greater than 0 should be provided.
381 Unused delays will be silently ignored. If number of given delays is
382 smaller than number of channels all remaining channels will not be delayed.
383 @end table
384
385 @subsection Examples
386
387 @itemize
388 @item
389 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
390 the second channel (and any other channels that may be present) unchanged.
391 @example
392 adelay=1500|0|500
393 @end example
394 @end itemize
395
396 @section aecho
397
398 Apply echoing to the input audio.
399
400 Echoes are reflected sound and can occur naturally amongst mountains
401 (and sometimes large buildings) when talking or shouting; digital echo
402 effects emulate this behaviour and are often used to help fill out the
403 sound of a single instrument or vocal. The time difference between the
404 original signal and the reflection is the @code{delay}, and the
405 loudness of the reflected signal is the @code{decay}.
406 Multiple echoes can have different delays and decays.
407
408 A description of the accepted parameters follows.
409
410 @table @option
411 @item in_gain
412 Set input gain of reflected signal. Default is @code{0.6}.
413
414 @item out_gain
415 Set output gain of reflected signal. Default is @code{0.3}.
416
417 @item delays
418 Set list of time intervals in milliseconds between original signal and reflections
419 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
420 Default is @code{1000}.
421
422 @item decays
423 Set list of loudnesses of reflected signals separated by '|'.
424 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
425 Default is @code{0.5}.
426 @end table
427
428 @subsection Examples
429
430 @itemize
431 @item
432 Make it sound as if there are twice as many instruments as are actually playing:
433 @example
434 aecho=0.8:0.88:60:0.4
435 @end example
436
437 @item
438 If delay is very short, then it sound like a (metallic) robot playing music:
439 @example
440 aecho=0.8:0.88:6:0.4
441 @end example
442
443 @item
444 A longer delay will sound like an open air concert in the mountains:
445 @example
446 aecho=0.8:0.9:1000:0.3
447 @end example
448
449 @item
450 Same as above but with one more mountain:
451 @example
452 aecho=0.8:0.9:1000|1800:0.3|0.25
453 @end example
454 @end itemize
455
456 @section aeval
457
458 Modify an audio signal according to the specified expressions.
459
460 This filter accepts one or more expressions (one for each channel),
461 which are evaluated and used to modify a corresponding audio signal.
462
463 It accepts the following parameters:
464
465 @table @option
466 @item exprs
467 Set the '|'-separated expressions list for each separate channel. If
468 the number of input channels is greater than the number of
469 expressions, the last specified expression is used for the remaining
470 output channels.
471
472 @item channel_layout, c
473 Set output channel layout. If not specified, the channel layout is
474 specified by the number of expressions. If set to @samp{same}, it will
475 use by default the same input channel layout.
476 @end table
477
478 Each expression in @var{exprs} can contain the following constants and functions:
479
480 @table @option
481 @item ch
482 channel number of the current expression
483
484 @item n
485 number of the evaluated sample, starting from 0
486
487 @item s
488 sample rate
489
490 @item t
491 time of the evaluated sample expressed in seconds
492
493 @item nb_in_channels
494 @item nb_out_channels
495 input and output number of channels
496
497 @item val(CH)
498 the value of input channel with number @var{CH}
499 @end table
500
501 Note: this filter is slow. For faster processing you should use a
502 dedicated filter.
503
504 @subsection Examples
505
506 @itemize
507 @item
508 Half volume:
509 @example
510 aeval=val(ch)/2:c=same
511 @end example
512
513 @item
514 Invert phase of the second channel:
515 @example
516 aeval=val(0)|-val(1)
517 @end example
518 @end itemize
519
520 @anchor{afade}
521 @section afade
522
523 Apply fade-in/out effect to input audio.
524
525 A description of the accepted parameters follows.
526
527 @table @option
528 @item type, t
529 Specify the effect type, can be either @code{in} for fade-in, or
530 @code{out} for a fade-out effect. Default is @code{in}.
531
532 @item start_sample, ss
533 Specify the number of the start sample for starting to apply the fade
534 effect. Default is 0.
535
536 @item nb_samples, ns
537 Specify the number of samples for which the fade effect has to last. At
538 the end of the fade-in effect the output audio will have the same
539 volume as the input audio, at the end of the fade-out transition
540 the output audio will be silence. Default is 44100.
541
542 @item start_time, st
543 Specify the start time of the fade effect. Default is 0.
544 The value must be specified as a time duration; see
545 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
546 for the accepted syntax.
547 If set this option is used instead of @var{start_sample}.
548
549 @item duration, d
550 Specify the duration of the fade effect. See
551 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
552 for the accepted syntax.
553 At the end of the fade-in effect the output audio will have the same
554 volume as the input audio, at the end of the fade-out transition
555 the output audio will be silence.
556 By default the duration is determined by @var{nb_samples}.
557 If set this option is used instead of @var{nb_samples}.
558
559 @item curve
560 Set curve for fade transition.
561
562 It accepts the following values:
563 @table @option
564 @item tri
565 select triangular, linear slope (default)
566 @item qsin
567 select quarter of sine wave
568 @item hsin
569 select half of sine wave
570 @item esin
571 select exponential sine wave
572 @item log
573 select logarithmic
574 @item ipar
575 select inverted parabola
576 @item qua
577 select quadratic
578 @item cub
579 select cubic
580 @item squ
581 select square root
582 @item cbr
583 select cubic root
584 @item par
585 select parabola
586 @item exp
587 select exponential
588 @item iqsin
589 select inverted quarter of sine wave
590 @item ihsin
591 select inverted half of sine wave
592 @item dese
593 select double-exponential seat
594 @item desi
595 select double-exponential sigmoid
596 @end table
597 @end table
598
599 @subsection Examples
600
601 @itemize
602 @item
603 Fade in first 15 seconds of audio:
604 @example
605 afade=t=in:ss=0:d=15
606 @end example
607
608 @item
609 Fade out last 25 seconds of a 900 seconds audio:
610 @example
611 afade=t=out:st=875:d=25
612 @end example
613 @end itemize
614
615 @anchor{aformat}
616 @section aformat
617
618 Set output format constraints for the input audio. The framework will
619 negotiate the most appropriate format to minimize conversions.
620
621 It accepts the following parameters:
622 @table @option
623
624 @item sample_fmts
625 A '|'-separated list of requested sample formats.
626
627 @item sample_rates
628 A '|'-separated list of requested sample rates.
629
630 @item channel_layouts
631 A '|'-separated list of requested channel layouts.
632
633 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
634 for the required syntax.
635 @end table
636
637 If a parameter is omitted, all values are allowed.
638
639 Force the output to either unsigned 8-bit or signed 16-bit stereo
640 @example
641 aformat=sample_fmts=u8|s16:channel_layouts=stereo
642 @end example
643
644 @section agate
645
646 A gate is mainly used to reduce lower parts of a signal. This kind of signal
647 processing reduces disturbing noise between useful signals.
648
649 Gating is done by detecting the volume below a chosen level @var{threshold}
650 and divide it by the factor set with @var{ratio}. The bottom of the noise
651 floor is set via @var{range}. Because an exact manipulation of the signal
652 would cause distortion of the waveform the reduction can be levelled over
653 time. This is done by setting @var{attack} and @var{release}.
654
655 @var{attack} determines how long the signal has to fall below the threshold
656 before any reduction will occur and @var{release} sets the time the signal
657 has to raise above the threshold to reduce the reduction again.
658 Shorter signals than the chosen attack time will be left untouched.
659
660 @table @option
661 @item level_in
662 Set input level before filtering.
663
664 @item range
665 Set the level of gain reduction when the signal is below the threshold.
666
667 @item threshold
668 If a signal rises above this level the gain reduction is released.
669
670 @item ratio
671 Set a ratio about which the signal is reduced.
672
673 @item attack
674 Amount of milliseconds the signal has to rise above the threshold before gain
675 reduction stops.
676
677 @item release
678 Amount of milliseconds the signal has to fall below the threshold before the
679 reduction is increased again.
680
681 @item makeup
682 Set amount of amplification of signal after processing.
683
684 @item knee
685 Curve the sharp knee around the threshold to enter gain reduction more softly.
686
687 @item detection
688 Choose if exact signal should be taken for detection or an RMS like one.
689
690 @item link
691 Choose if the average level between all channels or the louder channel affects
692 the reduction.
693 @end table
694
695 @section alimiter
696
697 The limiter prevents input signal from raising over a desired threshold.
698 This limiter uses lookahead technology to prevent your signal from distorting.
699 It means that there is a small delay after signal is processed. Keep in mind
700 that the delay it produces is the attack time you set.
701
702 The filter accepts the following options:
703
704 @table @option
705 @item limit
706 Don't let signals above this level pass the limiter. The removed amplitude is
707 added automatically. Default is 1.
708
709 @item attack
710 The limiter will reach its attenuation level in this amount of time in
711 milliseconds. Default is 5 milliseconds.
712
713 @item release
714 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
715 Default is 50 milliseconds.
716
717 @item asc
718 When gain reduction is always needed ASC takes care of releasing to an
719 average reduction level rather than reaching a reduction of 0 in the release
720 time.
721
722 @item asc_level
723 Select how much the release time is affected by ASC, 0 means nearly no changes
724 in release time while 1 produces higher release times.
725 @end table
726
727 Depending on picked setting it is recommended to upsample input 2x or 4x times
728 with @ref{aresample} before applying this filter.
729
730 @section allpass
731
732 Apply a two-pole all-pass filter with central frequency (in Hz)
733 @var{frequency}, and filter-width @var{width}.
734 An all-pass filter changes the audio's frequency to phase relationship
735 without changing its frequency to amplitude relationship.
736
737 The filter accepts the following options:
738
739 @table @option
740 @item frequency, f
741 Set frequency in Hz.
742
743 @item width_type
744 Set method to specify band-width of filter.
745 @table @option
746 @item h
747 Hz
748 @item q
749 Q-Factor
750 @item o
751 octave
752 @item s
753 slope
754 @end table
755
756 @item width, w
757 Specify the band-width of a filter in width_type units.
758 @end table
759
760 @anchor{amerge}
761 @section amerge
762
763 Merge two or more audio streams into a single multi-channel stream.
764
765 The filter accepts the following options:
766
767 @table @option
768
769 @item inputs
770 Set the number of inputs. Default is 2.
771
772 @end table
773
774 If the channel layouts of the inputs are disjoint, and therefore compatible,
775 the channel layout of the output will be set accordingly and the channels
776 will be reordered as necessary. If the channel layouts of the inputs are not
777 disjoint, the output will have all the channels of the first input then all
778 the channels of the second input, in that order, and the channel layout of
779 the output will be the default value corresponding to the total number of
780 channels.
781
782 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
783 is FC+BL+BR, then the output will be in 5.1, with the channels in the
784 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
785 first input, b1 is the first channel of the second input).
786
787 On the other hand, if both input are in stereo, the output channels will be
788 in the default order: a1, a2, b1, b2, and the channel layout will be
789 arbitrarily set to 4.0, which may or may not be the expected value.
790
791 All inputs must have the same sample rate, and format.
792
793 If inputs do not have the same duration, the output will stop with the
794 shortest.
795
796 @subsection Examples
797
798 @itemize
799 @item
800 Merge two mono files into a stereo stream:
801 @example
802 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
803 @end example
804
805 @item
806 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
807 @example
808 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
809 @end example
810 @end itemize
811
812 @section amix
813
814 Mixes multiple audio inputs into a single output.
815
816 Note that this filter only supports float samples (the @var{amerge}
817 and @var{pan} audio filters support many formats). If the @var{amix}
818 input has integer samples then @ref{aresample} will be automatically
819 inserted to perform the conversion to float samples.
820
821 For example
822 @example
823 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
824 @end example
825 will mix 3 input audio streams to a single output with the same duration as the
826 first input and a dropout transition time of 3 seconds.
827
828 It accepts the following parameters:
829 @table @option
830
831 @item inputs
832 The number of inputs. If unspecified, it defaults to 2.
833
834 @item duration
835 How to determine the end-of-stream.
836 @table @option
837
838 @item longest
839 The duration of the longest input. (default)
840
841 @item shortest
842 The duration of the shortest input.
843
844 @item first
845 The duration of the first input.
846
847 @end table
848
849 @item dropout_transition
850 The transition time, in seconds, for volume renormalization when an input
851 stream ends. The default value is 2 seconds.
852
853 @end table
854
855 @section anull
856
857 Pass the audio source unchanged to the output.
858
859 @section apad
860
861 Pad the end of an audio stream with silence.
862
863 This can be used together with @command{ffmpeg} @option{-shortest} to
864 extend audio streams to the same length as the video stream.
865
866 A description of the accepted options follows.
867
868 @table @option
869 @item packet_size
870 Set silence packet size. Default value is 4096.
871
872 @item pad_len
873 Set the number of samples of silence to add to the end. After the
874 value is reached, the stream is terminated. This option is mutually
875 exclusive with @option{whole_len}.
876
877 @item whole_len
878 Set the minimum total number of samples in the output audio stream. If
879 the value is longer than the input audio length, silence is added to
880 the end, until the value is reached. This option is mutually exclusive
881 with @option{pad_len}.
882 @end table
883
884 If neither the @option{pad_len} nor the @option{whole_len} option is
885 set, the filter will add silence to the end of the input stream
886 indefinitely.
887
888 @subsection Examples
889
890 @itemize
891 @item
892 Add 1024 samples of silence to the end of the input:
893 @example
894 apad=pad_len=1024
895 @end example
896
897 @item
898 Make sure the audio output will contain at least 10000 samples, pad
899 the input with silence if required:
900 @example
901 apad=whole_len=10000
902 @end example
903
904 @item
905 Use @command{ffmpeg} to pad the audio input with silence, so that the
906 video stream will always result the shortest and will be converted
907 until the end in the output file when using the @option{shortest}
908 option:
909 @example
910 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
911 @end example
912 @end itemize
913
914 @section aphaser
915 Add a phasing effect to the input audio.
916
917 A phaser filter creates series of peaks and troughs in the frequency spectrum.
918 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
919
920 A description of the accepted parameters follows.
921
922 @table @option
923 @item in_gain
924 Set input gain. Default is 0.4.
925
926 @item out_gain
927 Set output gain. Default is 0.74
928
929 @item delay
930 Set delay in milliseconds. Default is 3.0.
931
932 @item decay
933 Set decay. Default is 0.4.
934
935 @item speed
936 Set modulation speed in Hz. Default is 0.5.
937
938 @item type
939 Set modulation type. Default is triangular.
940
941 It accepts the following values:
942 @table @samp
943 @item triangular, t
944 @item sinusoidal, s
945 @end table
946 @end table
947
948 @anchor{aresample}
949 @section aresample
950
951 Resample the input audio to the specified parameters, using the
952 libswresample library. If none are specified then the filter will
953 automatically convert between its input and output.
954
955 This filter is also able to stretch/squeeze the audio data to make it match
956 the timestamps or to inject silence / cut out audio to make it match the
957 timestamps, do a combination of both or do neither.
958
959 The filter accepts the syntax
960 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
961 expresses a sample rate and @var{resampler_options} is a list of
962 @var{key}=@var{value} pairs, separated by ":". See the
963 ffmpeg-resampler manual for the complete list of supported options.
964
965 @subsection Examples
966
967 @itemize
968 @item
969 Resample the input audio to 44100Hz:
970 @example
971 aresample=44100
972 @end example
973
974 @item
975 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
976 samples per second compensation:
977 @example
978 aresample=async=1000
979 @end example
980 @end itemize
981
982 @section asetnsamples
983
984 Set the number of samples per each output audio frame.
985
986 The last output packet may contain a different number of samples, as
987 the filter will flush all the remaining samples when the input audio
988 signal its end.
989
990 The filter accepts the following options:
991
992 @table @option
993
994 @item nb_out_samples, n
995 Set the number of frames per each output audio frame. The number is
996 intended as the number of samples @emph{per each channel}.
997 Default value is 1024.
998
999 @item pad, p
1000 If set to 1, the filter will pad the last audio frame with zeroes, so
1001 that the last frame will contain the same number of samples as the
1002 previous ones. Default value is 1.
1003 @end table
1004
1005 For example, to set the number of per-frame samples to 1234 and
1006 disable padding for the last frame, use:
1007 @example
1008 asetnsamples=n=1234:p=0
1009 @end example
1010
1011 @section asetrate
1012
1013 Set the sample rate without altering the PCM data.
1014 This will result in a change of speed and pitch.
1015
1016 The filter accepts the following options:
1017
1018 @table @option
1019 @item sample_rate, r
1020 Set the output sample rate. Default is 44100 Hz.
1021 @end table
1022
1023 @section ashowinfo
1024
1025 Show a line containing various information for each input audio frame.
1026 The input audio is not modified.
1027
1028 The shown line contains a sequence of key/value pairs of the form
1029 @var{key}:@var{value}.
1030
1031 The following values are shown in the output:
1032
1033 @table @option
1034 @item n
1035 The (sequential) number of the input frame, starting from 0.
1036
1037 @item pts
1038 The presentation timestamp of the input frame, in time base units; the time base
1039 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1040
1041 @item pts_time
1042 The presentation timestamp of the input frame in seconds.
1043
1044 @item pos
1045 position of the frame in the input stream, -1 if this information in
1046 unavailable and/or meaningless (for example in case of synthetic audio)
1047
1048 @item fmt
1049 The sample format.
1050
1051 @item chlayout
1052 The channel layout.
1053
1054 @item rate
1055 The sample rate for the audio frame.
1056
1057 @item nb_samples
1058 The number of samples (per channel) in the frame.
1059
1060 @item checksum
1061 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1062 audio, the data is treated as if all the planes were concatenated.
1063
1064 @item plane_checksums
1065 A list of Adler-32 checksums for each data plane.
1066 @end table
1067
1068 @anchor{astats}
1069 @section astats
1070
1071 Display time domain statistical information about the audio channels.
1072 Statistics are calculated and displayed for each audio channel and,
1073 where applicable, an overall figure is also given.
1074
1075 It accepts the following option:
1076 @table @option
1077 @item length
1078 Short window length in seconds, used for peak and trough RMS measurement.
1079 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1080
1081 @item metadata
1082
1083 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1084 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1085 disabled.
1086
1087 Available keys for each channel are:
1088 DC_offset
1089 Min_level
1090 Max_level
1091 Min_difference
1092 Max_difference
1093 Mean_difference
1094 Peak_level
1095 RMS_peak
1096 RMS_trough
1097 Crest_factor
1098 Flat_factor
1099 Peak_count
1100 Bit_depth
1101
1102 and for Overall:
1103 DC_offset
1104 Min_level
1105 Max_level
1106 Min_difference
1107 Max_difference
1108 Mean_difference
1109 Peak_level
1110 RMS_level
1111 RMS_peak
1112 RMS_trough
1113 Flat_factor
1114 Peak_count
1115 Bit_depth
1116 Number_of_samples
1117
1118 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1119 this @code{lavfi.astats.Overall.Peak_count}.
1120
1121 For description what each key means read bellow.
1122
1123 @item reset
1124 Set number of frame after which stats are going to be recalculated.
1125 Default is disabled.
1126 @end table
1127
1128 A description of each shown parameter follows:
1129
1130 @table @option
1131 @item DC offset
1132 Mean amplitude displacement from zero.
1133
1134 @item Min level
1135 Minimal sample level.
1136
1137 @item Max level
1138 Maximal sample level.
1139
1140 @item Min difference
1141 Minimal difference between two consecutive samples.
1142
1143 @item Max difference
1144 Maximal difference between two consecutive samples.
1145
1146 @item Mean difference
1147 Mean difference between two consecutive samples.
1148 The average of each difference between two consecutive samples.
1149
1150 @item Peak level dB
1151 @item RMS level dB
1152 Standard peak and RMS level measured in dBFS.
1153
1154 @item RMS peak dB
1155 @item RMS trough dB
1156 Peak and trough values for RMS level measured over a short window.
1157
1158 @item Crest factor
1159 Standard ratio of peak to RMS level (note: not in dB).
1160
1161 @item Flat factor
1162 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1163 (i.e. either @var{Min level} or @var{Max level}).
1164
1165 @item Peak count
1166 Number of occasions (not the number of samples) that the signal attained either
1167 @var{Min level} or @var{Max level}.
1168
1169 @item Bit depth
1170 Overall bit depth of audio. Number of bits used for each sample.
1171 @end table
1172
1173 @section astreamsync
1174
1175 Forward two audio streams and control the order the buffers are forwarded.
1176
1177 The filter accepts the following options:
1178
1179 @table @option
1180 @item expr, e
1181 Set the expression deciding which stream should be
1182 forwarded next: if the result is negative, the first stream is forwarded; if
1183 the result is positive or zero, the second stream is forwarded. It can use
1184 the following variables:
1185
1186 @table @var
1187 @item b1 b2
1188 number of buffers forwarded so far on each stream
1189 @item s1 s2
1190 number of samples forwarded so far on each stream
1191 @item t1 t2
1192 current timestamp of each stream
1193 @end table
1194
1195 The default value is @code{t1-t2}, which means to always forward the stream
1196 that has a smaller timestamp.
1197 @end table
1198
1199 @subsection Examples
1200
1201 Stress-test @code{amerge} by randomly sending buffers on the wrong
1202 input, while avoiding too much of a desynchronization:
1203 @example
1204 amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
1205 [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
1206 [a2] [b2] amerge
1207 @end example
1208
1209 @section asyncts
1210
1211 Synchronize audio data with timestamps by squeezing/stretching it and/or
1212 dropping samples/adding silence when needed.
1213
1214 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1215
1216 It accepts the following parameters:
1217 @table @option
1218
1219 @item compensate
1220 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1221 by default. When disabled, time gaps are covered with silence.
1222
1223 @item min_delta
1224 The minimum difference between timestamps and audio data (in seconds) to trigger
1225 adding/dropping samples. The default value is 0.1. If you get an imperfect
1226 sync with this filter, try setting this parameter to 0.
1227
1228 @item max_comp
1229 The maximum compensation in samples per second. Only relevant with compensate=1.
1230 The default value is 500.
1231
1232 @item first_pts
1233 Assume that the first PTS should be this value. The time base is 1 / sample
1234 rate. This allows for padding/trimming at the start of the stream. By default,
1235 no assumption is made about the first frame's expected PTS, so no padding or
1236 trimming is done. For example, this could be set to 0 to pad the beginning with
1237 silence if an audio stream starts after the video stream or to trim any samples
1238 with a negative PTS due to encoder delay.
1239
1240 @end table
1241
1242 @section atempo
1243
1244 Adjust audio tempo.
1245
1246 The filter accepts exactly one parameter, the audio tempo. If not
1247 specified then the filter will assume nominal 1.0 tempo. Tempo must
1248 be in the [0.5, 2.0] range.
1249
1250 @subsection Examples
1251
1252 @itemize
1253 @item
1254 Slow down audio to 80% tempo:
1255 @example
1256 atempo=0.8
1257 @end example
1258
1259 @item
1260 To speed up audio to 125% tempo:
1261 @example
1262 atempo=1.25
1263 @end example
1264 @end itemize
1265
1266 @section atrim
1267
1268 Trim the input so that the output contains one continuous subpart of the input.
1269
1270 It accepts the following parameters:
1271 @table @option
1272 @item start
1273 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1274 sample with the timestamp @var{start} will be the first sample in the output.
1275
1276 @item end
1277 Specify time of the first audio sample that will be dropped, i.e. the
1278 audio sample immediately preceding the one with the timestamp @var{end} will be
1279 the last sample in the output.
1280
1281 @item start_pts
1282 Same as @var{start}, except this option sets the start timestamp in samples
1283 instead of seconds.
1284
1285 @item end_pts
1286 Same as @var{end}, except this option sets the end timestamp in samples instead
1287 of seconds.
1288
1289 @item duration
1290 The maximum duration of the output in seconds.
1291
1292 @item start_sample
1293 The number of the first sample that should be output.
1294
1295 @item end_sample
1296 The number of the first sample that should be dropped.
1297 @end table
1298
1299 @option{start}, @option{end}, and @option{duration} are expressed as time
1300 duration specifications; see
1301 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1302
1303 Note that the first two sets of the start/end options and the @option{duration}
1304 option look at the frame timestamp, while the _sample options simply count the
1305 samples that pass through the filter. So start/end_pts and start/end_sample will
1306 give different results when the timestamps are wrong, inexact or do not start at
1307 zero. Also note that this filter does not modify the timestamps. If you wish
1308 to have the output timestamps start at zero, insert the asetpts filter after the
1309 atrim filter.
1310
1311 If multiple start or end options are set, this filter tries to be greedy and
1312 keep all samples that match at least one of the specified constraints. To keep
1313 only the part that matches all the constraints at once, chain multiple atrim
1314 filters.
1315
1316 The defaults are such that all the input is kept. So it is possible to set e.g.
1317 just the end values to keep everything before the specified time.
1318
1319 Examples:
1320 @itemize
1321 @item
1322 Drop everything except the second minute of input:
1323 @example
1324 ffmpeg -i INPUT -af atrim=60:120
1325 @end example
1326
1327 @item
1328 Keep only the first 1000 samples:
1329 @example
1330 ffmpeg -i INPUT -af atrim=end_sample=1000
1331 @end example
1332
1333 @end itemize
1334
1335 @section bandpass
1336
1337 Apply a two-pole Butterworth band-pass filter with central
1338 frequency @var{frequency}, and (3dB-point) band-width width.
1339 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1340 instead of the default: constant 0dB peak gain.
1341 The filter roll off at 6dB per octave (20dB per decade).
1342
1343 The filter accepts the following options:
1344
1345 @table @option
1346 @item frequency, f
1347 Set the filter's central frequency. Default is @code{3000}.
1348
1349 @item csg
1350 Constant skirt gain if set to 1. Defaults to 0.
1351
1352 @item width_type
1353 Set method to specify band-width of filter.
1354 @table @option
1355 @item h
1356 Hz
1357 @item q
1358 Q-Factor
1359 @item o
1360 octave
1361 @item s
1362 slope
1363 @end table
1364
1365 @item width, w
1366 Specify the band-width of a filter in width_type units.
1367 @end table
1368
1369 @section bandreject
1370
1371 Apply a two-pole Butterworth band-reject filter with central
1372 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1373 The filter roll off at 6dB per octave (20dB per decade).
1374
1375 The filter accepts the following options:
1376
1377 @table @option
1378 @item frequency, f
1379 Set the filter's central frequency. Default is @code{3000}.
1380
1381 @item width_type
1382 Set method to specify band-width of filter.
1383 @table @option
1384 @item h
1385 Hz
1386 @item q
1387 Q-Factor
1388 @item o
1389 octave
1390 @item s
1391 slope
1392 @end table
1393
1394 @item width, w
1395 Specify the band-width of a filter in width_type units.
1396 @end table
1397
1398 @section bass
1399
1400 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1401 shelving filter with a response similar to that of a standard
1402 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1403
1404 The filter accepts the following options:
1405
1406 @table @option
1407 @item gain, g
1408 Give the gain at 0 Hz. Its useful range is about -20
1409 (for a large cut) to +20 (for a large boost).
1410 Beware of clipping when using a positive gain.
1411
1412 @item frequency, f
1413 Set the filter's central frequency and so can be used
1414 to extend or reduce the frequency range to be boosted or cut.
1415 The default value is @code{100} Hz.
1416
1417 @item width_type
1418 Set method to specify band-width of filter.
1419 @table @option
1420 @item h
1421 Hz
1422 @item q
1423 Q-Factor
1424 @item o
1425 octave
1426 @item s
1427 slope
1428 @end table
1429
1430 @item width, w
1431 Determine how steep is the filter's shelf transition.
1432 @end table
1433
1434 @section biquad
1435
1436 Apply a biquad IIR filter with the given coefficients.
1437 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1438 are the numerator and denominator coefficients respectively.
1439
1440 @section bs2b
1441 Bauer stereo to binaural transformation, which improves headphone listening of
1442 stereo audio records.
1443
1444 It accepts the following parameters:
1445 @table @option
1446
1447 @item profile
1448 Pre-defined crossfeed level.
1449 @table @option
1450
1451 @item default
1452 Default level (fcut=700, feed=50).
1453
1454 @item cmoy
1455 Chu Moy circuit (fcut=700, feed=60).
1456
1457 @item jmeier
1458 Jan Meier circuit (fcut=650, feed=95).
1459
1460 @end table
1461
1462 @item fcut
1463 Cut frequency (in Hz).
1464
1465 @item feed
1466 Feed level (in Hz).
1467
1468 @end table
1469
1470 @section channelmap
1471
1472 Remap input channels to new locations.
1473
1474 It accepts the following parameters:
1475 @table @option
1476 @item channel_layout
1477 The channel layout of the output stream.
1478
1479 @item map
1480 Map channels from input to output. The argument is a '|'-separated list of
1481 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1482 @var{in_channel} form. @var{in_channel} can be either the name of the input
1483 channel (e.g. FL for front left) or its index in the input channel layout.
1484 @var{out_channel} is the name of the output channel or its index in the output
1485 channel layout. If @var{out_channel} is not given then it is implicitly an
1486 index, starting with zero and increasing by one for each mapping.
1487 @end table
1488
1489 If no mapping is present, the filter will implicitly map input channels to
1490 output channels, preserving indices.
1491
1492 For example, assuming a 5.1+downmix input MOV file,
1493 @example
1494 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1495 @end example
1496 will create an output WAV file tagged as stereo from the downmix channels of
1497 the input.
1498
1499 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1500 @example
1501 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1502 @end example
1503
1504 @section channelsplit
1505
1506 Split each channel from an input audio stream into a separate output stream.
1507
1508 It accepts the following parameters:
1509 @table @option
1510 @item channel_layout
1511 The channel layout of the input stream. The default is "stereo".
1512 @end table
1513
1514 For example, assuming a stereo input MP3 file,
1515 @example
1516 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1517 @end example
1518 will create an output Matroska file with two audio streams, one containing only
1519 the left channel and the other the right channel.
1520
1521 Split a 5.1 WAV file into per-channel files:
1522 @example
1523 ffmpeg -i in.wav -filter_complex
1524 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1525 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1526 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1527 side_right.wav
1528 @end example
1529
1530 @section chorus
1531 Add a chorus effect to the audio.
1532
1533 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1534
1535 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1536 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1537 The modulation depth defines the range the modulated delay is played before or after
1538 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1539 sound tuned around the original one, like in a chorus where some vocals are slightly
1540 off key.
1541
1542 It accepts the following parameters:
1543 @table @option
1544 @item in_gain
1545 Set input gain. Default is 0.4.
1546
1547 @item out_gain
1548 Set output gain. Default is 0.4.
1549
1550 @item delays
1551 Set delays. A typical delay is around 40ms to 60ms.
1552
1553 @item decays
1554 Set decays.
1555
1556 @item speeds
1557 Set speeds.
1558
1559 @item depths
1560 Set depths.
1561 @end table
1562
1563 @subsection Examples
1564
1565 @itemize
1566 @item
1567 A single delay:
1568 @example
1569 chorus=0.7:0.9:55:0.4:0.25:2
1570 @end example
1571
1572 @item
1573 Two delays:
1574 @example
1575 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1576 @end example
1577
1578 @item
1579 Fuller sounding chorus with three delays:
1580 @example
1581 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
1582 @end example
1583 @end itemize
1584
1585 @section compand
1586 Compress or expand the audio's dynamic range.
1587
1588 It accepts the following parameters:
1589
1590 @table @option
1591
1592 @item attacks
1593 @item decays
1594 A list of times in seconds for each channel over which the instantaneous level
1595 of the input signal is averaged to determine its volume. @var{attacks} refers to
1596 increase of volume and @var{decays} refers to decrease of volume. For most
1597 situations, the attack time (response to the audio getting louder) should be
1598 shorter than the decay time, because the human ear is more sensitive to sudden
1599 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
1600 a typical value for decay is 0.8 seconds.
1601 If specified number of attacks & decays is lower than number of channels, the last
1602 set attack/decay will be used for all remaining channels.
1603
1604 @item points
1605 A list of points for the transfer function, specified in dB relative to the
1606 maximum possible signal amplitude. Each key points list must be defined using
1607 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
1608 @code{x0/y0 x1/y1 x2/y2 ....}
1609
1610 The input values must be in strictly increasing order but the transfer function
1611 does not have to be monotonically rising. The point @code{0/0} is assumed but
1612 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
1613 function are @code{-70/-70|-60/-20}.
1614
1615 @item soft-knee
1616 Set the curve radius in dB for all joints. It defaults to 0.01.
1617
1618 @item gain
1619 Set the additional gain in dB to be applied at all points on the transfer
1620 function. This allows for easy adjustment of the overall gain.
1621 It defaults to 0.
1622
1623 @item volume
1624 Set an initial volume, in dB, to be assumed for each channel when filtering
1625 starts. This permits the user to supply a nominal level initially, so that, for
1626 example, a very large gain is not applied to initial signal levels before the
1627 companding has begun to operate. A typical value for audio which is initially
1628 quiet is -90 dB. It defaults to 0.
1629
1630 @item delay
1631 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
1632 delayed before being fed to the volume adjuster. Specifying a delay
1633 approximately equal to the attack/decay times allows the filter to effectively
1634 operate in predictive rather than reactive mode. It defaults to 0.
1635
1636 @end table
1637
1638 @subsection Examples
1639
1640 @itemize
1641 @item
1642 Make music with both quiet and loud passages suitable for listening to in a
1643 noisy environment:
1644 @example
1645 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
1646 @end example
1647
1648 Another example for audio with whisper and explosion parts:
1649 @example
1650 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
1651 @end example
1652
1653 @item
1654 A noise gate for when the noise is at a lower level than the signal:
1655 @example
1656 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
1657 @end example
1658
1659 @item
1660 Here is another noise gate, this time for when the noise is at a higher level
1661 than the signal (making it, in some ways, similar to squelch):
1662 @example
1663 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
1664 @end example
1665 @end itemize
1666
1667 @section dcshift
1668 Apply a DC shift to the audio.
1669
1670 This can be useful to remove a DC offset (caused perhaps by a hardware problem
1671 in the recording chain) from the audio. The effect of a DC offset is reduced
1672 headroom and hence volume. The @ref{astats} filter can be used to determine if
1673 a signal has a DC offset.
1674
1675 @table @option
1676 @item shift
1677 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
1678 the audio.
1679
1680 @item limitergain
1681 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
1682 used to prevent clipping.
1683 @end table
1684
1685 @section dynaudnorm
1686 Dynamic Audio Normalizer.
1687
1688 This filter applies a certain amount of gain to the input audio in order
1689 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
1690 contrast to more "simple" normalization algorithms, the Dynamic Audio
1691 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
1692 This allows for applying extra gain to the "quiet" sections of the audio
1693 while avoiding distortions or clipping the "loud" sections. In other words:
1694 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
1695 sections, in the sense that the volume of each section is brought to the
1696 same target level. Note, however, that the Dynamic Audio Normalizer achieves
1697 this goal *without* applying "dynamic range compressing". It will retain 100%
1698 of the dynamic range *within* each section of the audio file.
1699
1700 @table @option
1701 @item f
1702 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
1703 Default is 500 milliseconds.
1704 The Dynamic Audio Normalizer processes the input audio in small chunks,
1705 referred to as frames. This is required, because a peak magnitude has no
1706 meaning for just a single sample value. Instead, we need to determine the
1707 peak magnitude for a contiguous sequence of sample values. While a "standard"
1708 normalizer would simply use the peak magnitude of the complete file, the
1709 Dynamic Audio Normalizer determines the peak magnitude individually for each
1710 frame. The length of a frame is specified in milliseconds. By default, the
1711 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
1712 been found to give good results with most files.
1713 Note that the exact frame length, in number of samples, will be determined
1714 automatically, based on the sampling rate of the individual input audio file.
1715
1716 @item g
1717 Set the Gaussian filter window size. In range from 3 to 301, must be odd
1718 number. Default is 31.
1719 Probably the most important parameter of the Dynamic Audio Normalizer is the
1720 @code{window size} of the Gaussian smoothing filter. The filter's window size
1721 is specified in frames, centered around the current frame. For the sake of
1722 simplicity, this must be an odd number. Consequently, the default value of 31
1723 takes into account the current frame, as well as the 15 preceding frames and
1724 the 15 subsequent frames. Using a larger window results in a stronger
1725 smoothing effect and thus in less gain variation, i.e. slower gain
1726 adaptation. Conversely, using a smaller window results in a weaker smoothing
1727 effect and thus in more gain variation, i.e. faster gain adaptation.
1728 In other words, the more you increase this value, the more the Dynamic Audio
1729 Normalizer will behave like a "traditional" normalization filter. On the
1730 contrary, the more you decrease this value, the more the Dynamic Audio
1731 Normalizer will behave like a dynamic range compressor.
1732
1733 @item p
1734 Set the target peak value. This specifies the highest permissible magnitude
1735 level for the normalized audio input. This filter will try to approach the
1736 target peak magnitude as closely as possible, but at the same time it also
1737 makes sure that the normalized signal will never exceed the peak magnitude.
1738 A frame's maximum local gain factor is imposed directly by the target peak
1739 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
1740 It is not recommended to go above this value.
1741
1742 @item m
1743 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
1744 The Dynamic Audio Normalizer determines the maximum possible (local) gain
1745 factor for each input frame, i.e. the maximum gain factor that does not
1746 result in clipping or distortion. The maximum gain factor is determined by
1747 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
1748 additionally bounds the frame's maximum gain factor by a predetermined
1749 (global) maximum gain factor. This is done in order to avoid excessive gain
1750 factors in "silent" or almost silent frames. By default, the maximum gain
1751 factor is 10.0, For most inputs the default value should be sufficient and
1752 it usually is not recommended to increase this value. Though, for input
1753 with an extremely low overall volume level, it may be necessary to allow even
1754 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
1755 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
1756 Instead, a "sigmoid" threshold function will be applied. This way, the
1757 gain factors will smoothly approach the threshold value, but never exceed that
1758 value.
1759
1760 @item r
1761 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
1762 By default, the Dynamic Audio Normalizer performs "peak" normalization.
1763 This means that the maximum local gain factor for each frame is defined
1764 (only) by the frame's highest magnitude sample. This way, the samples can
1765 be amplified as much as possible without exceeding the maximum signal
1766 level, i.e. without clipping. Optionally, however, the Dynamic Audio
1767 Normalizer can also take into account the frame's root mean square,
1768 abbreviated RMS. In electrical engineering, the RMS is commonly used to
1769 determine the power of a time-varying signal. It is therefore considered
1770 that the RMS is a better approximation of the "perceived loudness" than
1771 just looking at the signal's peak magnitude. Consequently, by adjusting all
1772 frames to a constant RMS value, a uniform "perceived loudness" can be
1773 established. If a target RMS value has been specified, a frame's local gain
1774 factor is defined as the factor that would result in exactly that RMS value.
1775 Note, however, that the maximum local gain factor is still restricted by the
1776 frame's highest magnitude sample, in order to prevent clipping.
1777
1778 @item n
1779 Enable channels coupling. By default is enabled.
1780 By default, the Dynamic Audio Normalizer will amplify all channels by the same
1781 amount. This means the same gain factor will be applied to all channels, i.e.
1782 the maximum possible gain factor is determined by the "loudest" channel.
1783 However, in some recordings, it may happen that the volume of the different
1784 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
1785 In this case, this option can be used to disable the channel coupling. This way,
1786 the gain factor will be determined independently for each channel, depending
1787 only on the individual channel's highest magnitude sample. This allows for
1788 harmonizing the volume of the different channels.
1789
1790 @item c
1791 Enable DC bias correction. By default is disabled.
1792 An audio signal (in the time domain) is a sequence of sample values.
1793 In the Dynamic Audio Normalizer these sample values are represented in the
1794 -1.0 to 1.0 range, regardless of the original input format. Normally, the
1795 audio signal, or "waveform", should be centered around the zero point.
1796 That means if we calculate the mean value of all samples in a file, or in a
1797 single frame, then the result should be 0.0 or at least very close to that
1798 value. If, however, there is a significant deviation of the mean value from
1799 0.0, in either positive or negative direction, this is referred to as a
1800 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
1801 Audio Normalizer provides optional DC bias correction.
1802 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
1803 the mean value, or "DC correction" offset, of each input frame and subtract
1804 that value from all of the frame's sample values which ensures those samples
1805 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
1806 boundaries, the DC correction offset values will be interpolated smoothly
1807 between neighbouring frames.
1808
1809 @item b
1810 Enable alternative boundary mode. By default is disabled.
1811 The Dynamic Audio Normalizer takes into account a certain neighbourhood
1812 around each frame. This includes the preceding frames as well as the
1813 subsequent frames. However, for the "boundary" frames, located at the very
1814 beginning and at the very end of the audio file, not all neighbouring
1815 frames are available. In particular, for the first few frames in the audio
1816 file, the preceding frames are not known. And, similarly, for the last few
1817 frames in the audio file, the subsequent frames are not known. Thus, the
1818 question arises which gain factors should be assumed for the missing frames
1819 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
1820 to deal with this situation. The default boundary mode assumes a gain factor
1821 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
1822 "fade out" at the beginning and at the end of the input, respectively.
1823
1824 @item s
1825 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
1826 By default, the Dynamic Audio Normalizer does not apply "traditional"
1827 compression. This means that signal peaks will not be pruned and thus the
1828 full dynamic range will be retained within each local neighbourhood. However,
1829 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
1830 normalization algorithm with a more "traditional" compression.
1831 For this purpose, the Dynamic Audio Normalizer provides an optional compression
1832 (thresholding) function. If (and only if) the compression feature is enabled,
1833 all input frames will be processed by a soft knee thresholding function prior
1834 to the actual normalization process. Put simply, the thresholding function is
1835 going to prune all samples whose magnitude exceeds a certain threshold value.
1836 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
1837 value. Instead, the threshold value will be adjusted for each individual
1838 frame.
1839 In general, smaller parameters result in stronger compression, and vice versa.
1840 Values below 3.0 are not recommended, because audible distortion may appear.
1841 @end table
1842
1843 @section earwax
1844
1845 Make audio easier to listen to on headphones.
1846
1847 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
1848 so that when listened to on headphones the stereo image is moved from
1849 inside your head (standard for headphones) to outside and in front of
1850 the listener (standard for speakers).
1851
1852 Ported from SoX.
1853
1854 @section equalizer
1855
1856 Apply a two-pole peaking equalisation (EQ) filter. With this
1857 filter, the signal-level at and around a selected frequency can
1858 be increased or decreased, whilst (unlike bandpass and bandreject
1859 filters) that at all other frequencies is unchanged.
1860
1861 In order to produce complex equalisation curves, this filter can
1862 be given several times, each with a different central frequency.
1863
1864 The filter accepts the following options:
1865
1866 @table @option
1867 @item frequency, f
1868 Set the filter's central frequency in Hz.
1869
1870 @item width_type
1871 Set method to specify band-width of filter.
1872 @table @option
1873 @item h
1874 Hz
1875 @item q
1876 Q-Factor
1877 @item o
1878 octave
1879 @item s
1880 slope
1881 @end table
1882
1883 @item width, w
1884 Specify the band-width of a filter in width_type units.
1885
1886 @item gain, g
1887 Set the required gain or attenuation in dB.
1888 Beware of clipping when using a positive gain.
1889 @end table
1890
1891 @subsection Examples
1892 @itemize
1893 @item
1894 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
1895 @example
1896 equalizer=f=1000:width_type=h:width=200:g=-10
1897 @end example
1898
1899 @item
1900 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
1901 @example
1902 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
1903 @end example
1904 @end itemize
1905
1906 @section extrastereo
1907
1908 Linearly increases the difference between left and right channels which
1909 adds some sort of "live" effect to playback.
1910
1911 The filter accepts the following option:
1912
1913 @table @option
1914 @item m
1915 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
1916 (average of both channels), with 1.0 sound will be unchanged, with
1917 -1.0 left and right channels will be swapped.
1918
1919 @item c
1920 Enable clipping. By default is enabled.
1921 @end table
1922
1923 @section flanger
1924 Apply a flanging effect to the audio.
1925
1926 The filter accepts the following options:
1927
1928 @table @option
1929 @item delay
1930 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
1931
1932 @item depth
1933 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
1934
1935 @item regen
1936 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
1937 Default value is 0.
1938
1939 @item width
1940 Set percentage of delayed signal mixed with original. Range from 0 to 100.
1941 Default value is 71.
1942
1943 @item speed
1944 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
1945
1946 @item shape
1947 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
1948 Default value is @var{sinusoidal}.
1949
1950 @item phase
1951 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
1952 Default value is 25.
1953
1954 @item interp
1955 Set delay-line interpolation, @var{linear} or @var{quadratic}.
1956 Default is @var{linear}.
1957 @end table
1958
1959 @section highpass
1960
1961 Apply a high-pass filter with 3dB point frequency.
1962 The filter can be either single-pole, or double-pole (the default).
1963 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
1964
1965 The filter accepts the following options:
1966
1967 @table @option
1968 @item frequency, f
1969 Set frequency in Hz. Default is 3000.
1970
1971 @item poles, p
1972 Set number of poles. Default is 2.
1973
1974 @item width_type
1975 Set method to specify band-width of filter.
1976 @table @option
1977 @item h
1978 Hz
1979 @item q
1980 Q-Factor
1981 @item o
1982 octave
1983 @item s
1984 slope
1985 @end table
1986
1987 @item width, w
1988 Specify the band-width of a filter in width_type units.
1989 Applies only to double-pole filter.
1990 The default is 0.707q and gives a Butterworth response.
1991 @end table
1992
1993 @section join
1994
1995 Join multiple input streams into one multi-channel stream.
1996
1997 It accepts the following parameters:
1998 @table @option
1999
2000 @item inputs
2001 The number of input streams. It defaults to 2.
2002
2003 @item channel_layout
2004 The desired output channel layout. It defaults to stereo.
2005
2006 @item map
2007 Map channels from inputs to output. The argument is a '|'-separated list of
2008 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2009 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2010 can be either the name of the input channel (e.g. FL for front left) or its
2011 index in the specified input stream. @var{out_channel} is the name of the output
2012 channel.
2013 @end table
2014
2015 The filter will attempt to guess the mappings when they are not specified
2016 explicitly. It does so by first trying to find an unused matching input channel
2017 and if that fails it picks the first unused input channel.
2018
2019 Join 3 inputs (with properly set channel layouts):
2020 @example
2021 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2022 @end example
2023
2024 Build a 5.1 output from 6 single-channel streams:
2025 @example
2026 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2027 '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'
2028 out
2029 @end example
2030
2031 @section ladspa
2032
2033 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2034
2035 To enable compilation of this filter you need to configure FFmpeg with
2036 @code{--enable-ladspa}.
2037
2038 @table @option
2039 @item file, f
2040 Specifies the name of LADSPA plugin library to load. If the environment
2041 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2042 each one of the directories specified by the colon separated list in
2043 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2044 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2045 @file{/usr/lib/ladspa/}.
2046
2047 @item plugin, p
2048 Specifies the plugin within the library. Some libraries contain only
2049 one plugin, but others contain many of them. If this is not set filter
2050 will list all available plugins within the specified library.
2051
2052 @item controls, c
2053 Set the '|' separated list of controls which are zero or more floating point
2054 values that determine the behavior of the loaded plugin (for example delay,
2055 threshold or gain).
2056 Controls need to be defined using the following syntax:
2057 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2058 @var{valuei} is the value set on the @var{i}-th control.
2059 Alternatively they can be also defined using the following syntax:
2060 @var{value0}|@var{value1}|@var{value2}|..., where
2061 @var{valuei} is the value set on the @var{i}-th control.
2062 If @option{controls} is set to @code{help}, all available controls and
2063 their valid ranges are printed.
2064
2065 @item sample_rate, s
2066 Specify the sample rate, default to 44100. Only used if plugin have
2067 zero inputs.
2068
2069 @item nb_samples, n
2070 Set the number of samples per channel per each output frame, default
2071 is 1024. Only used if plugin have zero inputs.
2072
2073 @item duration, d
2074 Set the minimum duration of the sourced audio. See
2075 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2076 for the accepted syntax.
2077 Note that the resulting duration may be greater than the specified duration,
2078 as the generated audio is always cut at the end of a complete frame.
2079 If not specified, or the expressed duration is negative, the audio is
2080 supposed to be generated forever.
2081 Only used if plugin have zero inputs.
2082
2083 @end table
2084
2085 @subsection Examples
2086
2087 @itemize
2088 @item
2089 List all available plugins within amp (LADSPA example plugin) library:
2090 @example
2091 ladspa=file=amp
2092 @end example
2093
2094 @item
2095 List all available controls and their valid ranges for @code{vcf_notch}
2096 plugin from @code{VCF} library:
2097 @example
2098 ladspa=f=vcf:p=vcf_notch:c=help
2099 @end example
2100
2101 @item
2102 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2103 plugin library:
2104 @example
2105 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2106 @end example
2107
2108 @item
2109 Add reverberation to the audio using TAP-plugins
2110 (Tom's Audio Processing plugins):
2111 @example
2112 ladspa=file=tap_reverb:tap_reverb
2113 @end example
2114
2115 @item
2116 Generate white noise, with 0.2 amplitude:
2117 @example
2118 ladspa=file=cmt:noise_source_white:c=c0=.2
2119 @end example
2120
2121 @item
2122 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2123 @code{C* Audio Plugin Suite} (CAPS) library:
2124 @example
2125 ladspa=file=caps:Click:c=c1=20'
2126 @end example
2127
2128 @item
2129 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2130 @example
2131 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2132 @end example
2133
2134 @item
2135 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2136 @code{SWH Plugins} collection:
2137 @example
2138 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2139 @end example
2140
2141 @item
2142 Attenuate low frequencies using Multiband EQ from Steve Harris
2143 @code{SWH Plugins} collection:
2144 @example
2145 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2146 @end example
2147 @end itemize
2148
2149 @subsection Commands
2150
2151 This filter supports the following commands:
2152 @table @option
2153 @item cN
2154 Modify the @var{N}-th control value.
2155
2156 If the specified value is not valid, it is ignored and prior one is kept.
2157 @end table
2158
2159 @section lowpass
2160
2161 Apply a low-pass filter with 3dB point frequency.
2162 The filter can be either single-pole or double-pole (the default).
2163 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2164
2165 The filter accepts the following options:
2166
2167 @table @option
2168 @item frequency, f
2169 Set frequency in Hz. Default is 500.
2170
2171 @item poles, p
2172 Set number of poles. Default is 2.
2173
2174 @item width_type
2175 Set method to specify band-width of filter.
2176 @table @option
2177 @item h
2178 Hz
2179 @item q
2180 Q-Factor
2181 @item o
2182 octave
2183 @item s
2184 slope
2185 @end table
2186
2187 @item width, w
2188 Specify the band-width of a filter in width_type units.
2189 Applies only to double-pole filter.
2190 The default is 0.707q and gives a Butterworth response.
2191 @end table
2192
2193 @anchor{pan}
2194 @section pan
2195
2196 Mix channels with specific gain levels. The filter accepts the output
2197 channel layout followed by a set of channels definitions.
2198
2199 This filter is also designed to efficiently remap the channels of an audio
2200 stream.
2201
2202 The filter accepts parameters of the form:
2203 "@var{l}|@var{outdef}|@var{outdef}|..."
2204
2205 @table @option
2206 @item l
2207 output channel layout or number of channels
2208
2209 @item outdef
2210 output channel specification, of the form:
2211 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2212
2213 @item out_name
2214 output channel to define, either a channel name (FL, FR, etc.) or a channel
2215 number (c0, c1, etc.)
2216
2217 @item gain
2218 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2219
2220 @item in_name
2221 input channel to use, see out_name for details; it is not possible to mix
2222 named and numbered input channels
2223 @end table
2224
2225 If the `=' in a channel specification is replaced by `<', then the gains for
2226 that specification will be renormalized so that the total is 1, thus
2227 avoiding clipping noise.
2228
2229 @subsection Mixing examples
2230
2231 For example, if you want to down-mix from stereo to mono, but with a bigger
2232 factor for the left channel:
2233 @example
2234 pan=1c|c0=0.9*c0+0.1*c1
2235 @end example
2236
2237 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2238 7-channels surround:
2239 @example
2240 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2241 @end example
2242
2243 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2244 that should be preferred (see "-ac" option) unless you have very specific
2245 needs.
2246
2247 @subsection Remapping examples
2248
2249 The channel remapping will be effective if, and only if:
2250
2251 @itemize
2252 @item gain coefficients are zeroes or ones,
2253 @item only one input per channel output,
2254 @end itemize
2255
2256 If all these conditions are satisfied, the filter will notify the user ("Pure
2257 channel mapping detected"), and use an optimized and lossless method to do the
2258 remapping.
2259
2260 For example, if you have a 5.1 source and want a stereo audio stream by
2261 dropping the extra channels:
2262 @example
2263 pan="stereo| c0=FL | c1=FR"
2264 @end example
2265
2266 Given the same source, you can also switch front left and front right channels
2267 and keep the input channel layout:
2268 @example
2269 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2270 @end example
2271
2272 If the input is a stereo audio stream, you can mute the front left channel (and
2273 still keep the stereo channel layout) with:
2274 @example
2275 pan="stereo|c1=c1"
2276 @end example
2277
2278 Still with a stereo audio stream input, you can copy the right channel in both
2279 front left and right:
2280 @example
2281 pan="stereo| c0=FR | c1=FR"
2282 @end example
2283
2284 @section replaygain
2285
2286 ReplayGain scanner filter. This filter takes an audio stream as an input and
2287 outputs it unchanged.
2288 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2289
2290 @section resample
2291
2292 Convert the audio sample format, sample rate and channel layout. It is
2293 not meant to be used directly.
2294
2295 @section rubberband
2296 Apply time-stretching and pitch-shifting with librubberband.
2297
2298 The filter accepts the following options:
2299
2300 @table @option
2301 @item tempo
2302 Set tempo scale factor.
2303
2304 @item pitch
2305 Set pitch scale factor.
2306
2307 @item transients
2308 Set transients detector.
2309 Possible values are:
2310 @table @var
2311 @item crisp
2312 @item mixed
2313 @item smooth
2314 @end table
2315
2316 @item detector
2317 Set detector.
2318 Possible values are:
2319 @table @var
2320 @item compound
2321 @item percussive
2322 @item soft
2323 @end table
2324
2325 @item phase
2326 Set phase.
2327 Possible values are:
2328 @table @var
2329 @item laminar
2330 @item independent
2331 @end table
2332
2333 @item window
2334 Set processing window size.
2335 Possible values are:
2336 @table @var
2337 @item standard
2338 @item short
2339 @item long
2340 @end table
2341
2342 @item smoothing
2343 Set smoothing.
2344 Possible values are:
2345 @table @var
2346 @item off
2347 @item on
2348 @end table
2349
2350 @item formant
2351 Enable formant preservation when shift pitching.
2352 Possible values are:
2353 @table @var
2354 @item shifted
2355 @item preserved
2356 @end table
2357
2358 @item pitchq
2359 Set pitch quality.
2360 Possible values are:
2361 @table @var
2362 @item quality
2363 @item speed
2364 @item consistency
2365 @end table
2366
2367 @item channels
2368 Set channels.
2369 Possible values are:
2370 @table @var
2371 @item apart
2372 @item together
2373 @end table
2374 @end table
2375
2376 @section sidechaincompress
2377
2378 This filter acts like normal compressor but has the ability to compress
2379 detected signal using second input signal.
2380 It needs two input streams and returns one output stream.
2381 First input stream will be processed depending on second stream signal.
2382 The filtered signal then can be filtered with other filters in later stages of
2383 processing. See @ref{pan} and @ref{amerge} filter.
2384
2385 The filter accepts the following options:
2386
2387 @table @option
2388 @item threshold
2389 If a signal of second stream raises above this level it will affect the gain
2390 reduction of first stream.
2391 By default is 0.125. Range is between 0.00097563 and 1.
2392
2393 @item ratio
2394 Set a ratio about which the signal is reduced. 1:2 means that if the level
2395 raised 4dB above the threshold, it will be only 2dB above after the reduction.
2396 Default is 2. Range is between 1 and 20.
2397
2398 @item attack
2399 Amount of milliseconds the signal has to rise above the threshold before gain
2400 reduction starts. Default is 20. Range is between 0.01 and 2000.
2401
2402 @item release
2403 Amount of milliseconds the signal has to fall bellow the threshold before
2404 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
2405
2406 @item makeup
2407 Set the amount by how much signal will be amplified after processing.
2408 Default is 2. Range is from 1 and 64.
2409
2410 @item knee
2411 Curve the sharp knee around the threshold to enter gain reduction more softly.
2412 Default is 2.82843. Range is between 1 and 8.
2413
2414 @item link
2415 Choose if the @code{average} level between all channels of side-chain stream
2416 or the louder(@code{maximum}) channel of side-chain stream affects the
2417 reduction. Default is @code{average}.
2418
2419 @item detection
2420 Should the exact signal be taken in case of @code{peak} or an RMS one in case
2421 of @code{rms}. Default is @code{rms} which is mainly smoother.
2422 @end table
2423
2424 @subsection Examples
2425
2426 @itemize
2427 @item
2428 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
2429 depending on the signal of 2nd input and later compressed signal to be
2430 merged with 2nd input:
2431 @example
2432 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
2433 @end example
2434 @end itemize
2435
2436 @section silencedetect
2437
2438 Detect silence in an audio stream.
2439
2440 This filter logs a message when it detects that the input audio volume is less
2441 or equal to a noise tolerance value for a duration greater or equal to the
2442 minimum detected noise duration.
2443
2444 The printed times and duration are expressed in seconds.
2445
2446 The filter accepts the following options:
2447
2448 @table @option
2449 @item duration, d
2450 Set silence duration until notification (default is 2 seconds).
2451
2452 @item noise, n
2453 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
2454 specified value) or amplitude ratio. Default is -60dB, or 0.001.
2455 @end table
2456
2457 @subsection Examples
2458
2459 @itemize
2460 @item
2461 Detect 5 seconds of silence with -50dB noise tolerance:
2462 @example
2463 silencedetect=n=-50dB:d=5
2464 @end example
2465
2466 @item
2467 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
2468 tolerance in @file{silence.mp3}:
2469 @example
2470 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
2471 @end example
2472 @end itemize
2473
2474 @section silenceremove
2475
2476 Remove silence from the beginning, middle or end of the audio.
2477
2478 The filter accepts the following options:
2479
2480 @table @option
2481 @item start_periods
2482 This value is used to indicate if audio should be trimmed at beginning of
2483 the audio. A value of zero indicates no silence should be trimmed from the
2484 beginning. When specifying a non-zero value, it trims audio up until it
2485 finds non-silence. Normally, when trimming silence from beginning of audio
2486 the @var{start_periods} will be @code{1} but it can be increased to higher
2487 values to trim all audio up to specific count of non-silence periods.
2488 Default value is @code{0}.
2489
2490 @item start_duration
2491 Specify the amount of time that non-silence must be detected before it stops
2492 trimming audio. By increasing the duration, bursts of noises can be treated
2493 as silence and trimmed off. Default value is @code{0}.
2494
2495 @item start_threshold
2496 This indicates what sample value should be treated as silence. For digital
2497 audio, a value of @code{0} may be fine but for audio recorded from analog,
2498 you may wish to increase the value to account for background noise.
2499 Can be specified in dB (in case "dB" is appended to the specified value)
2500 or amplitude ratio. Default value is @code{0}.
2501
2502 @item stop_periods
2503 Set the count for trimming silence from the end of audio.
2504 To remove silence from the middle of a file, specify a @var{stop_periods}
2505 that is negative. This value is then treated as a positive value and is
2506 used to indicate the effect should restart processing as specified by
2507 @var{start_periods}, making it suitable for removing periods of silence
2508 in the middle of the audio.
2509 Default value is @code{0}.
2510
2511 @item stop_duration
2512 Specify a duration of silence that must exist before audio is not copied any
2513 more. By specifying a higher duration, silence that is wanted can be left in
2514 the audio.
2515 Default value is @code{0}.
2516
2517 @item stop_threshold
2518 This is the same as @option{start_threshold} but for trimming silence from
2519 the end of audio.
2520 Can be specified in dB (in case "dB" is appended to the specified value)
2521 or amplitude ratio. Default value is @code{0}.
2522
2523 @item leave_silence
2524 This indicate that @var{stop_duration} length of audio should be left intact
2525 at the beginning of each period of silence.
2526 For example, if you want to remove long pauses between words but do not want
2527 to remove the pauses completely. Default value is @code{0}.
2528
2529 @end table
2530
2531 @subsection Examples
2532
2533 @itemize
2534 @item
2535 The following example shows how this filter can be used to start a recording
2536 that does not contain the delay at the start which usually occurs between
2537 pressing the record button and the start of the performance:
2538 @example
2539 silenceremove=1:5:0.02
2540 @end example
2541 @end itemize
2542
2543 @section stereotools
2544
2545 This filter has some handy utilities to manage stereo signals, for converting
2546 M/S stereo recordings to L/R signal while having control over the parameters
2547 or spreading the stereo image of master track.
2548
2549 The filter accepts the following options:
2550
2551 @table @option
2552 @item level_in
2553 Set input level before filtering for both channels. Defaults is 1.
2554 Allowed range is from 0.015625 to 64.
2555
2556 @item level_out
2557 Set output level after filtering for both channels. Defaults is 1.
2558 Allowed range is from 0.015625 to 64.
2559
2560 @item balance_in
2561 Set input balance between both channels. Default is 0.
2562 Allowed range is from -1 to 1.
2563
2564 @item balance_out
2565 Set output balance between both channels. Default is 0.
2566 Allowed range is from -1 to 1.
2567
2568 @item softclip
2569 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
2570 clipping. Disabled by default.
2571
2572 @item mutel
2573 Mute the left channel. Disabled by default.
2574
2575 @item muter
2576 Mute the right channel. Disabled by default.
2577
2578 @item phasel
2579 Change the phase of the left channel. Disabled by default.
2580
2581 @item phaser
2582 Change the phase of the right channel. Disabled by default.
2583
2584 @item mode
2585 Set stereo mode. Available values are:
2586
2587 @table @samp
2588 @item lr>lr
2589 Left/Right to Left/Right, this is default.
2590
2591 @item lr>ms
2592 Left/Right to Mid/Side.
2593
2594 @item ms>lr
2595 Mid/Side to Left/Right.
2596
2597 @item lr>ll
2598 Left/Right to Left/Left.
2599
2600 @item lr>rr
2601 Left/Right to Right/Right.
2602
2603 @item lr>l+r
2604 Left/Right to Left + Right.
2605
2606 @item lr>rl
2607 Left/Right to Right/Left.
2608 @end table
2609
2610 @item slev
2611 Set level of side signal. Default is 1.
2612 Allowed range is from 0.015625 to 64.
2613
2614 @item sbal
2615 Set balance of side signal. Default is 0.
2616 Allowed range is from -1 to 1.
2617
2618 @item mlev
2619 Set level of the middle signal. Default is 1.
2620 Allowed range is from 0.015625 to 64.
2621
2622 @item mpan
2623 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
2624
2625 @item base
2626 Set stereo base between mono and inversed channels. Default is 0.
2627 Allowed range is from -1 to 1.
2628
2629 @item delay
2630 Set delay in milliseconds how much to delay left from right channel and
2631 vice versa. Default is 0. Allowed range is from -20 to 20.
2632
2633 @item sclevel
2634 Set S/C level. Default is 1. Allowed range is from 1 to 100.
2635
2636 @item phase
2637 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
2638 @end table
2639
2640 @section stereowiden
2641
2642 This filter enhance the stereo effect by suppressing signal common to both
2643 channels and by delaying the signal of left into right and vice versa,
2644 thereby widening the stereo effect.
2645
2646 The filter accepts the following options:
2647
2648 @table @option
2649 @item delay
2650 Time in milliseconds of the delay of left signal into right and vice versa.
2651 Default is 20 milliseconds.
2652
2653 @item feedback
2654 Amount of gain in delayed signal into right and vice versa. Gives a delay
2655 effect of left signal in right output and vice versa which gives widening
2656 effect. Default is 0.3.
2657
2658 @item crossfeed
2659 Cross feed of left into right with inverted phase. This helps in suppressing
2660 the mono. If the value is 1 it will cancel all the signal common to both
2661 channels. Default is 0.3.
2662
2663 @item drymix
2664 Set level of input signal of original channel. Default is 0.8.
2665 @end table
2666
2667 @section treble
2668
2669 Boost or cut treble (upper) frequencies of the audio using a two-pole
2670 shelving filter with a response similar to that of a standard
2671 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2672
2673 The filter accepts the following options:
2674
2675 @table @option
2676 @item gain, g
2677 Give the gain at whichever is the lower of ~22 kHz and the
2678 Nyquist frequency. Its useful range is about -20 (for a large cut)
2679 to +20 (for a large boost). Beware of clipping when using a positive gain.
2680
2681 @item frequency, f
2682 Set the filter's central frequency and so can be used
2683 to extend or reduce the frequency range to be boosted or cut.
2684 The default value is @code{3000} Hz.
2685
2686 @item width_type
2687 Set method to specify band-width of filter.
2688 @table @option
2689 @item h
2690 Hz
2691 @item q
2692 Q-Factor
2693 @item o
2694 octave
2695 @item s
2696 slope
2697 @end table
2698
2699 @item width, w
2700 Determine how steep is the filter's shelf transition.
2701 @end table
2702
2703 @section tremolo
2704
2705 Sinusoidal amplitude modulation.
2706
2707 The filter accepts the following options:
2708
2709 @table @option
2710 @item f
2711 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
2712 (20 Hz or lower) will result in a tremolo effect.
2713 This filter may also be used as a ring modulator by specifying
2714 a modulation frequency higher than 20 Hz.
2715 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
2716
2717 @item d
2718 Depth of modulation as a percentage. Range is 0.0 - 1.0.
2719 Default value is 0.5.
2720 @end table
2721
2722 @section volume
2723
2724 Adjust the input audio volume.
2725
2726 It accepts the following parameters:
2727 @table @option
2728
2729 @item volume
2730 Set audio volume expression.
2731
2732 Output values are clipped to the maximum value.
2733
2734 The output audio volume is given by the relation:
2735 @example
2736 @var{output_volume} = @var{volume} * @var{input_volume}
2737 @end example
2738
2739 The default value for @var{volume} is "1.0".
2740
2741 @item precision
2742 This parameter represents the mathematical precision.
2743
2744 It determines which input sample formats will be allowed, which affects the
2745 precision of the volume scaling.
2746
2747 @table @option
2748 @item fixed
2749 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
2750 @item float
2751 32-bit floating-point; this limits input sample format to FLT. (default)
2752 @item double
2753 64-bit floating-point; this limits input sample format to DBL.
2754 @end table
2755
2756 @item replaygain
2757 Choose the behaviour on encountering ReplayGain side data in input frames.
2758
2759 @table @option
2760 @item drop
2761 Remove ReplayGain side data, ignoring its contents (the default).
2762
2763 @item ignore
2764 Ignore ReplayGain side data, but leave it in the frame.
2765
2766 @item track
2767 Prefer the track gain, if present.
2768
2769 @item album
2770 Prefer the album gain, if present.
2771 @end table
2772
2773 @item replaygain_preamp
2774 Pre-amplification gain in dB to apply to the selected replaygain gain.
2775
2776 Default value for @var{replaygain_preamp} is 0.0.
2777
2778 @item eval
2779 Set when the volume expression is evaluated.
2780
2781 It accepts the following values:
2782 @table @samp
2783 @item once
2784 only evaluate expression once during the filter initialization, or
2785 when the @samp{volume} command is sent
2786
2787 @item frame
2788 evaluate expression for each incoming frame
2789 @end table
2790
2791 Default value is @samp{once}.
2792 @end table
2793
2794 The volume expression can contain the following parameters.
2795
2796 @table @option
2797 @item n
2798 frame number (starting at zero)
2799 @item nb_channels
2800 number of channels
2801 @item nb_consumed_samples
2802 number of samples consumed by the filter
2803 @item nb_samples
2804 number of samples in the current frame
2805 @item pos
2806 original frame position in the file
2807 @item pts
2808 frame PTS
2809 @item sample_rate
2810 sample rate
2811 @item startpts
2812 PTS at start of stream
2813 @item startt
2814 time at start of stream
2815 @item t
2816 frame time
2817 @item tb
2818 timestamp timebase
2819 @item volume
2820 last set volume value
2821 @end table
2822
2823 Note that when @option{eval} is set to @samp{once} only the
2824 @var{sample_rate} and @var{tb} variables are available, all other
2825 variables will evaluate to NAN.
2826
2827 @subsection Commands
2828
2829 This filter supports the following commands:
2830 @table @option
2831 @item volume
2832 Modify the volume expression.
2833 The command accepts the same syntax of the corresponding option.
2834
2835 If the specified expression is not valid, it is kept at its current
2836 value.
2837 @item replaygain_noclip
2838 Prevent clipping by limiting the gain applied.
2839
2840 Default value for @var{replaygain_noclip} is 1.
2841
2842 @end table
2843
2844 @subsection Examples
2845
2846 @itemize
2847 @item
2848 Halve the input audio volume:
2849 @example
2850 volume=volume=0.5
2851 volume=volume=1/2
2852 volume=volume=-6.0206dB
2853 @end example
2854
2855 In all the above example the named key for @option{volume} can be
2856 omitted, for example like in:
2857 @example
2858 volume=0.5
2859 @end example
2860
2861 @item
2862 Increase input audio power by 6 decibels using fixed-point precision:
2863 @example
2864 volume=volume=6dB:precision=fixed
2865 @end example
2866
2867 @item
2868 Fade volume after time 10 with an annihilation period of 5 seconds:
2869 @example
2870 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
2871 @end example
2872 @end itemize
2873
2874 @section volumedetect
2875
2876 Detect the volume of the input video.
2877
2878 The filter has no parameters. The input is not modified. Statistics about
2879 the volume will be printed in the log when the input stream end is reached.
2880
2881 In particular it will show the mean volume (root mean square), maximum
2882 volume (on a per-sample basis), and the beginning of a histogram of the
2883 registered volume values (from the maximum value to a cumulated 1/1000 of
2884 the samples).
2885
2886 All volumes are in decibels relative to the maximum PCM value.
2887
2888 @subsection Examples
2889
2890 Here is an excerpt of the output:
2891 @example
2892 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
2893 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
2894 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
2895 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
2896 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
2897 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
2898 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
2899 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
2900 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
2901 @end example
2902
2903 It means that:
2904 @itemize
2905 @item
2906 The mean square energy is approximately -27 dB, or 10^-2.7.
2907 @item
2908 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
2909 @item
2910 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
2911 @end itemize
2912
2913 In other words, raising the volume by +4 dB does not cause any clipping,
2914 raising it by +5 dB causes clipping for 6 samples, etc.
2915
2916 @c man end AUDIO FILTERS
2917
2918 @chapter Audio Sources
2919 @c man begin AUDIO SOURCES
2920
2921 Below is a description of the currently available audio sources.
2922
2923 @section abuffer
2924
2925 Buffer audio frames, and make them available to the filter chain.
2926
2927 This source is mainly intended for a programmatic use, in particular
2928 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
2929
2930 It accepts the following parameters:
2931 @table @option
2932
2933 @item time_base
2934 The timebase which will be used for timestamps of submitted frames. It must be
2935 either a floating-point number or in @var{numerator}/@var{denominator} form.
2936
2937 @item sample_rate
2938 The sample rate of the incoming audio buffers.
2939
2940 @item sample_fmt
2941 The sample format of the incoming audio buffers.
2942 Either a sample format name or its corresponding integer representation from
2943 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
2944
2945 @item channel_layout
2946 The channel layout of the incoming audio buffers.
2947 Either a channel layout name from channel_layout_map in
2948 @file{libavutil/channel_layout.c} or its corresponding integer representation
2949 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
2950
2951 @item channels
2952 The number of channels of the incoming audio buffers.
2953 If both @var{channels} and @var{channel_layout} are specified, then they
2954 must be consistent.
2955
2956 @end table
2957
2958 @subsection Examples
2959
2960 @example
2961 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
2962 @end example
2963
2964 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
2965 Since the sample format with name "s16p" corresponds to the number
2966 6 and the "stereo" channel layout corresponds to the value 0x3, this is
2967 equivalent to:
2968 @example
2969 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
2970 @end example
2971
2972 @section aevalsrc
2973
2974 Generate an audio signal specified by an expression.
2975
2976 This source accepts in input one or more expressions (one for each
2977 channel), which are evaluated and used to generate a corresponding
2978 audio signal.
2979
2980 This source accepts the following options:
2981
2982 @table @option
2983 @item exprs
2984 Set the '|'-separated expressions list for each separate channel. In case the
2985 @option{channel_layout} option is not specified, the selected channel layout
2986 depends on the number of provided expressions. Otherwise the last
2987 specified expression is applied to the remaining output channels.
2988
2989 @item channel_layout, c
2990 Set the channel layout. The number of channels in the specified layout
2991 must be equal to the number of specified expressions.
2992
2993 @item duration, d
2994 Set the minimum duration of the sourced audio. See
2995 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2996 for the accepted syntax.
2997 Note that the resulting duration may be greater than the specified
2998 duration, as the generated audio is always cut at the end of a
2999 complete frame.
3000
3001 If not specified, or the expressed duration is negative, the audio is
3002 supposed to be generated forever.
3003
3004 @item nb_samples, n
3005 Set the number of samples per channel per each output frame,
3006 default to 1024.
3007
3008 @item sample_rate, s
3009 Specify the sample rate, default to 44100.
3010 @end table
3011
3012 Each expression in @var{exprs} can contain the following constants:
3013
3014 @table @option
3015 @item n
3016 number of the evaluated sample, starting from 0
3017
3018 @item t
3019 time of the evaluated sample expressed in seconds, starting from 0
3020
3021 @item s
3022 sample rate
3023
3024 @end table
3025
3026 @subsection Examples
3027
3028 @itemize
3029 @item
3030 Generate silence:
3031 @example
3032 aevalsrc=0
3033 @end example
3034
3035 @item
3036 Generate a sin signal with frequency of 440 Hz, set sample rate to
3037 8000 Hz:
3038 @example
3039 aevalsrc="sin(440*2*PI*t):s=8000"
3040 @end example
3041
3042 @item
3043 Generate a two channels signal, specify the channel layout (Front
3044 Center + Back Center) explicitly:
3045 @example
3046 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
3047 @end example
3048
3049 @item
3050 Generate white noise:
3051 @example
3052 aevalsrc="-2+random(0)"
3053 @end example
3054
3055 @item
3056 Generate an amplitude modulated signal:
3057 @example
3058 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
3059 @end example
3060
3061 @item
3062 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
3063 @example
3064 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
3065 @end example
3066
3067 @end itemize
3068
3069 @section anullsrc
3070
3071 The null audio source, return unprocessed audio frames. It is mainly useful
3072 as a template and to be employed in analysis / debugging tools, or as
3073 the source for filters which ignore the input data (for example the sox
3074 synth filter).
3075
3076 This source accepts the following options:
3077
3078 @table @option
3079
3080 @item channel_layout, cl
3081
3082 Specifies the channel layout, and can be either an integer or a string
3083 representing a channel layout. The default value of @var{channel_layout}
3084 is "stereo".
3085
3086 Check the channel_layout_map definition in
3087 @file{libavutil/channel_layout.c} for the mapping between strings and
3088 channel layout values.
3089
3090 @item sample_rate, r
3091 Specifies the sample rate, and defaults to 44100.
3092
3093 @item nb_samples, n
3094 Set the number of samples per requested frames.
3095
3096 @end table
3097
3098 @subsection Examples
3099
3100 @itemize
3101 @item
3102 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
3103 @example
3104 anullsrc=r=48000:cl=4
3105 @end example
3106
3107 @item
3108 Do the same operation with a more obvious syntax:
3109 @example
3110 anullsrc=r=48000:cl=mono
3111 @end example
3112 @end itemize
3113
3114 All the parameters need to be explicitly defined.
3115
3116 @section flite
3117
3118 Synthesize a voice utterance using the libflite library.
3119
3120 To enable compilation of this filter you need to configure FFmpeg with
3121 @code{--enable-libflite}.
3122
3123 Note that the flite library is not thread-safe.
3124
3125 The filter accepts the following options:
3126
3127 @table @option
3128
3129 @item list_voices
3130 If set to 1, list the names of the available voices and exit
3131 immediately. Default value is 0.
3132
3133 @item nb_samples, n
3134 Set the maximum number of samples per frame. Default value is 512.
3135
3136 @item textfile
3137 Set the filename containing the text to speak.
3138
3139 @item text
3140 Set the text to speak.
3141
3142 @item voice, v
3143 Set the voice to use for the speech synthesis. Default value is
3144 @code{kal}. See also the @var{list_voices} option.
3145 @end table
3146
3147 @subsection Examples
3148
3149 @itemize
3150 @item
3151 Read from file @file{speech.txt}, and synthesize the text using the
3152 standard flite voice:
3153 @example
3154 flite=textfile=speech.txt
3155 @end example
3156
3157 @item
3158 Read the specified text selecting the @code{slt} voice:
3159 @example
3160 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3161 @end example
3162
3163 @item
3164 Input text to ffmpeg:
3165 @example
3166 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3167 @end example
3168
3169 @item
3170 Make @file{ffplay} speak the specified text, using @code{flite} and
3171 the @code{lavfi} device:
3172 @example
3173 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
3174 @end example
3175 @end itemize
3176
3177 For more information about libflite, check:
3178 @url{http://www.speech.cs.cmu.edu/flite/}
3179
3180 @section sine
3181
3182 Generate an audio signal made of a sine wave with amplitude 1/8.
3183
3184 The audio signal is bit-exact.
3185
3186 The filter accepts the following options:
3187
3188 @table @option
3189
3190 @item frequency, f
3191 Set the carrier frequency. Default is 440 Hz.
3192
3193 @item beep_factor, b
3194 Enable a periodic beep every second with frequency @var{beep_factor} times
3195 the carrier frequency. Default is 0, meaning the beep is disabled.
3196
3197 @item sample_rate, r
3198 Specify the sample rate, default is 44100.
3199
3200 @item duration, d
3201 Specify the duration of the generated audio stream.
3202
3203 @item samples_per_frame
3204 Set the number of samples per output frame.
3205
3206 The expression can contain the following constants:
3207
3208 @table @option
3209 @item n
3210 The (sequential) number of the output audio frame, starting from 0.
3211
3212 @item pts
3213 The PTS (Presentation TimeStamp) of the output audio frame,
3214 expressed in @var{TB} units.
3215
3216 @item t
3217 The PTS of the output audio frame, expressed in seconds.
3218
3219 @item TB
3220 The timebase of the output audio frames.
3221 @end table
3222
3223 Default is @code{1024}.
3224 @end table
3225
3226 @subsection Examples
3227
3228 @itemize
3229
3230 @item
3231 Generate a simple 440 Hz sine wave:
3232 @example
3233 sine
3234 @end example
3235
3236 @item
3237 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
3238 @example
3239 sine=220:4:d=5
3240 sine=f=220:b=4:d=5
3241 sine=frequency=220:beep_factor=4:duration=5
3242 @end example
3243
3244 @item
3245 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
3246 pattern:
3247 @example
3248 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
3249 @end example
3250 @end itemize
3251
3252 @c man end AUDIO SOURCES
3253
3254 @chapter Audio Sinks
3255 @c man begin AUDIO SINKS
3256
3257 Below is a description of the currently available audio sinks.
3258
3259 @section abuffersink
3260
3261 Buffer audio frames, and make them available to the end of filter chain.
3262
3263 This sink is mainly intended for programmatic use, in particular
3264 through the interface defined in @file{libavfilter/buffersink.h}
3265 or the options system.
3266
3267 It accepts a pointer to an AVABufferSinkContext structure, which
3268 defines the incoming buffers' formats, to be passed as the opaque
3269 parameter to @code{avfilter_init_filter} for initialization.
3270 @section anullsink
3271
3272 Null audio sink; do absolutely nothing with the input audio. It is
3273 mainly useful as a template and for use in analysis / debugging
3274 tools.
3275
3276 @c man end AUDIO SINKS
3277
3278 @chapter Video Filters
3279 @c man begin VIDEO FILTERS
3280
3281 When you configure your FFmpeg build, you can disable any of the
3282 existing filters using @code{--disable-filters}.
3283 The configure output will show the video filters included in your
3284 build.
3285
3286 Below is a description of the currently available video filters.
3287
3288 @section alphaextract
3289
3290 Extract the alpha component from the input as a grayscale video. This
3291 is especially useful with the @var{alphamerge} filter.
3292
3293 @section alphamerge
3294
3295 Add or replace the alpha component of the primary input with the
3296 grayscale value of a second input. This is intended for use with
3297 @var{alphaextract} to allow the transmission or storage of frame
3298 sequences that have alpha in a format that doesn't support an alpha
3299 channel.
3300
3301 For example, to reconstruct full frames from a normal YUV-encoded video
3302 and a separate video created with @var{alphaextract}, you might use:
3303 @example
3304 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
3305 @end example
3306
3307 Since this filter is designed for reconstruction, it operates on frame
3308 sequences without considering timestamps, and terminates when either
3309 input reaches end of stream. This will cause problems if your encoding
3310 pipeline drops frames. If you're trying to apply an image as an
3311 overlay to a video stream, consider the @var{overlay} filter instead.
3312
3313 @section ass
3314
3315 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
3316 and libavformat to work. On the other hand, it is limited to ASS (Advanced
3317 Substation Alpha) subtitles files.
3318
3319 This filter accepts the following option in addition to the common options from
3320 the @ref{subtitles} filter:
3321
3322 @table @option
3323 @item shaping
3324 Set the shaping engine
3325
3326 Available values are:
3327 @table @samp
3328 @item auto
3329 The default libass shaping engine, which is the best available.
3330 @item simple
3331 Fast, font-agnostic shaper that can do only substitutions
3332 @item complex
3333 Slower shaper using OpenType for substitutions and positioning
3334 @end table
3335
3336 The default is @code{auto}.
3337 @end table
3338
3339 @section atadenoise
3340 Apply an Adaptive Temporal Averaging Denoiser to the video input.
3341
3342 The filter accepts the following options:
3343
3344 @table @option
3345 @item 0a
3346 Set threshold A for 1st plane. Default is 0.02.
3347 Valid range is 0 to 0.3.
3348
3349 @item 0b
3350 Set threshold B for 1st plane. Default is 0.04.
3351 Valid range is 0 to 5.
3352
3353 @item 1a
3354 Set threshold A for 2nd plane. Default is 0.02.
3355 Valid range is 0 to 0.3.
3356
3357 @item 1b
3358 Set threshold B for 2nd plane. Default is 0.04.
3359 Valid range is 0 to 5.
3360
3361 @item 2a
3362 Set threshold A for 3rd plane. Default is 0.02.
3363 Valid range is 0 to 0.3.
3364
3365 @item 2b
3366 Set threshold B for 3rd plane. Default is 0.04.
3367 Valid range is 0 to 5.
3368
3369 Threshold A is designed to react on abrupt changes in the input signal and
3370 threshold B is designed to react on continuous changes in the input signal.
3371
3372 @item s
3373 Set number of frames filter will use for averaging. Default is 33. Must be odd
3374 number in range [5, 129].
3375 @end table
3376
3377 @section bbox
3378
3379 Compute the bounding box for the non-black pixels in the input frame
3380 luminance plane.
3381
3382 This filter computes the bounding box containing all the pixels with a
3383 luminance value greater than the minimum allowed value.
3384 The parameters describing the bounding box are printed on the filter
3385 log.
3386
3387 The filter accepts the following option:
3388
3389 @table @option
3390 @item min_val
3391 Set the minimal luminance value. Default is @code{16}.
3392 @end table
3393
3394 @section blackdetect
3395
3396 Detect video intervals that are (almost) completely black. Can be
3397 useful to detect chapter transitions, commercials, or invalid
3398 recordings. Output lines contains the time for the start, end and
3399 duration of the detected black interval expressed in seconds.
3400
3401 In order to display the output lines, you need to set the loglevel at
3402 least to the AV_LOG_INFO value.
3403
3404 The filter accepts the following options:
3405
3406 @table @option
3407 @item black_min_duration, d
3408 Set the minimum detected black duration expressed in seconds. It must
3409 be a non-negative floating point number.
3410
3411 Default value is 2.0.
3412
3413 @item picture_black_ratio_th, pic_th
3414 Set the threshold for considering a picture "black".
3415 Express the minimum value for the ratio:
3416 @example
3417 @var{nb_black_pixels} / @var{nb_pixels}
3418 @end example
3419
3420 for which a picture is considered black.
3421 Default value is 0.98.
3422
3423 @item pixel_black_th, pix_th
3424 Set the threshold for considering a pixel "black".
3425
3426 The threshold expresses the maximum pixel luminance value for which a
3427 pixel is considered "black". The provided value is scaled according to
3428 the following equation:
3429 @example
3430 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
3431 @end example
3432
3433 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
3434 the input video format, the range is [0-255] for YUV full-range
3435 formats and [16-235] for YUV non full-range formats.
3436
3437 Default value is 0.10.
3438 @end table
3439
3440 The following example sets the maximum pixel threshold to the minimum
3441 value, and detects only black intervals of 2 or more seconds:
3442 @example
3443 blackdetect=d=2:pix_th=0.00
3444 @end example
3445
3446 @section blackframe
3447
3448 Detect frames that are (almost) completely black. Can be useful to
3449 detect chapter transitions or commercials. Output lines consist of
3450 the frame number of the detected frame, the percentage of blackness,
3451 the position in the file if known or -1 and the timestamp in seconds.
3452
3453 In order to display the output lines, you need to set the loglevel at
3454 least to the AV_LOG_INFO value.
3455
3456 It accepts the following parameters:
3457
3458 @table @option
3459
3460 @item amount
3461 The percentage of the pixels that have to be below the threshold; it defaults to
3462 @code{98}.
3463
3464 @item threshold, thresh
3465 The threshold below which a pixel value is considered black; it defaults to
3466 @code{32}.
3467
3468 @end table
3469
3470 @section blend, tblend
3471
3472 Blend two video frames into each other.
3473
3474 The @code{blend} filter takes two input streams and outputs one
3475 stream, the first input is the "top" layer and second input is
3476 "bottom" layer.  Output terminates when shortest input terminates.
3477
3478 The @code{tblend} (time blend) filter takes two consecutive frames
3479 from one single stream, and outputs the result obtained by blending
3480 the new frame on top of the old frame.
3481
3482 A description of the accepted options follows.
3483
3484 @table @option
3485 @item c0_mode
3486 @item c1_mode
3487 @item c2_mode
3488 @item c3_mode
3489 @item all_mode
3490 Set blend mode for specific pixel component or all pixel components in case
3491 of @var{all_mode}. Default value is @code{normal}.
3492
3493 Available values for component modes are:
3494 @table @samp
3495 @item addition
3496 @item addition128
3497 @item and
3498 @item average
3499 @item burn
3500 @item darken
3501 @item difference
3502 @item difference128
3503 @item divide
3504 @item dodge
3505 @item exclusion
3506 @item glow
3507 @item hardlight
3508 @item hardmix
3509 @item lighten
3510 @item linearlight
3511 @item multiply
3512 @item negation
3513 @item normal
3514 @item or
3515 @item overlay
3516 @item phoenix
3517 @item pinlight
3518 @item reflect
3519 @item screen
3520 @item softlight
3521 @item subtract
3522 @item vividlight
3523 @item xor
3524 @end table
3525
3526 @item c0_opacity
3527 @item c1_opacity
3528 @item c2_opacity
3529 @item c3_opacity
3530 @item all_opacity
3531 Set blend opacity for specific pixel component or all pixel components in case
3532 of @var{all_opacity}. Only used in combination with pixel component blend modes.
3533
3534 @item c0_expr
3535 @item c1_expr
3536 @item c2_expr
3537 @item c3_expr
3538 @item all_expr
3539 Set blend expression for specific pixel component or all pixel components in case
3540 of @var{all_expr}. Note that related mode options will be ignored if those are set.
3541
3542 The expressions can use the following variables:
3543
3544 @table @option
3545 @item N
3546 The sequential number of the filtered frame, starting from @code{0}.
3547
3548 @item X
3549 @item Y
3550 the coordinates of the current sample
3551
3552 @item W
3553 @item H
3554 the width and height of currently filtered plane
3555
3556 @item SW
3557 @item SH
3558 Width and height scale depending on the currently filtered plane. It is the
3559 ratio between the corresponding luma plane number of pixels and the current
3560 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
3561 @code{0.5,0.5} for chroma planes.
3562
3563 @item T
3564 Time of the current frame, expressed in seconds.
3565
3566 @item TOP, A
3567 Value of pixel component at current location for first video frame (top layer).
3568
3569 @item BOTTOM, B
3570 Value of pixel component at current location for second video frame (bottom layer).
3571 @end table
3572
3573 @item shortest
3574 Force termination when the shortest input terminates. Default is
3575 @code{0}. This option is only defined for the @code{blend} filter.
3576
3577 @item repeatlast
3578 Continue applying the last bottom frame after the end of the stream. A value of
3579 @code{0} disable the filter after the last frame of the bottom layer is reached.
3580 Default is @code{1}. This option is only defined for the @code{blend} filter.
3581 @end table
3582
3583 @subsection Examples
3584
3585 @itemize
3586 @item
3587 Apply transition from bottom layer to top layer in first 10 seconds:
3588 @example
3589 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
3590 @end example
3591
3592 @item
3593 Apply 1x1 checkerboard effect:
3594 @example
3595 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
3596 @end example
3597
3598 @item
3599 Apply uncover left effect:
3600 @example
3601 blend=all_expr='if(gte(N*SW+X,W),A,B)'
3602 @end example
3603
3604 @item
3605 Apply uncover down effect:
3606 @example
3607 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
3608 @end example
3609
3610 @item
3611 Apply uncover up-left effect:
3612 @example
3613 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
3614 @end example
3615
3616 @item
3617 Display differences between the current and the previous frame:
3618 @example
3619 tblend=all_mode=difference128
3620 @end example
3621 @end itemize
3622
3623 @section boxblur
3624
3625 Apply a boxblur algorithm to the input video.
3626
3627 It accepts the following parameters:
3628
3629 @table @option
3630
3631 @item luma_radius, lr
3632 @item luma_power, lp
3633 @item chroma_radius, cr
3634 @item chroma_power, cp
3635 @item alpha_radius, ar
3636 @item alpha_power, ap
3637
3638 @end table
3639
3640 A description of the accepted options follows.
3641
3642 @table @option
3643 @item luma_radius, lr
3644 @item chroma_radius, cr
3645 @item alpha_radius, ar
3646 Set an expression for the box radius in pixels used for blurring the
3647 corresponding input plane.
3648
3649 The radius value must be a non-negative number, and must not be
3650 greater than the value of the expression @code{min(w,h)/2} for the
3651 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
3652 planes.
3653
3654 Default value for @option{luma_radius} is "2". If not specified,
3655 @option{chroma_radius} and @option{alpha_radius} default to the
3656 corresponding value set for @option{luma_radius}.
3657
3658 The expressions can contain the following constants:
3659 @table @option
3660 @item w
3661 @item h
3662 The input width and height in pixels.
3663
3664 @item cw
3665 @item ch
3666 The input chroma image width and height in pixels.
3667
3668 @item hsub
3669 @item vsub
3670 The horizontal and vertical chroma subsample values. For example, for the
3671 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
3672 @end table
3673
3674 @item luma_power, lp
3675 @item chroma_power, cp
3676 @item alpha_power, ap
3677 Specify how many times the boxblur filter is applied to the
3678 corresponding plane.
3679
3680 Default value for @option{luma_power} is 2. If not specified,
3681 @option{chroma_power} and @option{alpha_power} default to the
3682 corresponding value set for @option{luma_power}.
3683
3684 A value of 0 will disable the effect.
3685 @end table
3686
3687 @subsection Examples
3688
3689 @itemize
3690 @item
3691 Apply a boxblur filter with the luma, chroma, and alpha radii
3692 set to 2:
3693 @example
3694 boxblur=luma_radius=2:luma_power=1
3695 boxblur=2:1
3696 @end example
3697
3698 @item
3699 Set the luma radius to 2, and alpha and chroma radius to 0:
3700 @example
3701 boxblur=2:1:cr=0:ar=0
3702 @end example
3703
3704 @item
3705 Set the luma and chroma radii to a fraction of the video dimension:
3706 @example
3707 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
3708 @end example
3709 @end itemize
3710
3711 @section chromakey
3712 YUV colorspace color/chroma keying.
3713
3714 The filter accepts the following options:
3715
3716 @table @option
3717 @item color
3718 The color which will be replaced with transparency.
3719
3720 @item similarity
3721 Similarity percentage with the key color.
3722
3723 0.01 matches only the exact key color, while 1.0 matches everything.
3724
3725 @item blend
3726 Blend percentage.
3727
3728 0.0 makes pixels either fully transparent, or not transparent at all.
3729
3730 Higher values result in semi-transparent pixels, with a higher transparency
3731 the more similar the pixels color is to the key color.
3732
3733 @item yuv
3734 Signals that the color passed is already in YUV instead of RGB.
3735
3736 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
3737 This can be used to pass exact YUV values as hexadecimal numbers.
3738 @end table
3739
3740 @subsection Examples
3741
3742 @itemize
3743 @item
3744 Make every green pixel in the input image transparent:
3745 @example
3746 ffmpeg -i input.png -vf chromakey=green out.png
3747 @end example
3748
3749 @item
3750 Overlay a greenscreen-video on top of a static black background.
3751 @example
3752 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
3753 @end example
3754 @end itemize
3755
3756 @section codecview
3757
3758 Visualize information exported by some codecs.
3759
3760 Some codecs can export information through frames using side-data or other
3761 means. For example, some MPEG based codecs export motion vectors through the
3762 @var{export_mvs} flag in the codec @option{flags2} option.
3763
3764 The filter accepts the following option:
3765
3766 @table @option
3767 @item mv
3768 Set motion vectors to visualize.
3769
3770 Available flags for @var{mv} are:
3771
3772 @table @samp
3773 @item pf
3774 forward predicted MVs of P-frames
3775 @item bf
3776 forward predicted MVs of B-frames
3777 @item bb
3778 backward predicted MVs of B-frames
3779 @end table
3780 @end table
3781
3782 @subsection Examples
3783
3784 @itemize
3785 @item
3786 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
3787 @example
3788 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
3789 @end example
3790 @end itemize
3791
3792 @section colorbalance
3793 Modify intensity of primary colors (red, green and blue) of input frames.
3794
3795 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
3796 regions for the red-cyan, green-magenta or blue-yellow balance.
3797
3798 A positive adjustment value shifts the balance towards the primary color, a negative
3799 value towards the complementary color.
3800
3801 The filter accepts the following options:
3802
3803 @table @option
3804 @item rs
3805 @item gs
3806 @item bs
3807 Adjust red, green and blue shadows (darkest pixels).
3808
3809 @item rm
3810 @item gm
3811 @item bm
3812 Adjust red, green and blue midtones (medium pixels).
3813
3814 @item rh
3815 @item gh
3816 @item bh
3817 Adjust red, green and blue highlights (brightest pixels).
3818
3819 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
3820 @end table
3821
3822 @subsection Examples
3823
3824 @itemize
3825 @item
3826 Add red color cast to shadows:
3827 @example
3828 colorbalance=rs=.3
3829 @end example
3830 @end itemize
3831
3832 @section colorkey
3833 RGB colorspace color keying.
3834
3835 The filter accepts the following options:
3836
3837 @table @option
3838 @item color
3839 The color which will be replaced with transparency.
3840
3841 @item similarity
3842 Similarity percentage with the key color.
3843
3844 0.01 matches only the exact key color, while 1.0 matches everything.
3845
3846 @item blend
3847 Blend percentage.
3848
3849 0.0 makes pixels either fully transparent, or not transparent at all.
3850
3851 Higher values result in semi-transparent pixels, with a higher transparency
3852 the more similar the pixels color is to the key color.
3853 @end table
3854
3855 @subsection Examples
3856
3857 @itemize
3858 @item
3859 Make every green pixel in the input image transparent:
3860 @example
3861 ffmpeg -i input.png -vf colorkey=green out.png
3862 @end example
3863
3864 @item
3865 Overlay a greenscreen-video on top of a static background image.
3866 @example
3867 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
3868 @end example
3869 @end itemize
3870
3871 @section colorlevels
3872
3873 Adjust video input frames using levels.
3874
3875 The filter accepts the following options:
3876
3877 @table @option
3878 @item rimin
3879 @item gimin
3880 @item bimin
3881 @item aimin
3882 Adjust red, green, blue and alpha input black point.
3883 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
3884
3885 @item rimax
3886 @item gimax
3887 @item bimax
3888 @item aimax
3889 Adjust red, green, blue and alpha input white point.
3890 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
3891
3892 Input levels are used to lighten highlights (bright tones), darken shadows
3893 (dark tones), change the balance of bright and dark tones.
3894
3895 @item romin
3896 @item gomin
3897 @item bomin
3898 @item aomin
3899 Adjust red, green, blue and alpha output black point.
3900 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
3901
3902 @item romax
3903 @item gomax
3904 @item bomax
3905 @item aomax
3906 Adjust red, green, blue and alpha output white point.
3907 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
3908
3909 Output levels allows manual selection of a constrained output level range.
3910 @end table
3911
3912 @subsection Examples
3913
3914 @itemize
3915 @item
3916 Make video output darker:
3917 @example
3918 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
3919 @end example
3920
3921 @item
3922 Increase contrast:
3923 @example
3924 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
3925 @end example
3926
3927 @item
3928 Make video output lighter:
3929 @example
3930 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
3931 @end example
3932
3933 @item
3934 Increase brightness:
3935 @example
3936 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
3937 @end example
3938 @end itemize
3939
3940 @section colorchannelmixer
3941
3942 Adjust video input frames by re-mixing color channels.
3943
3944 This filter modifies a color channel by adding the values associated to
3945 the other channels of the same pixels. For example if the value to
3946 modify is red, the output value will be:
3947 @example
3948 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
3949 @end example
3950
3951 The filter accepts the following options:
3952
3953 @table @option
3954 @item rr
3955 @item rg
3956 @item rb
3957 @item ra
3958 Adjust contribution of input red, green, blue and alpha channels for output red channel.
3959 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
3960
3961 @item gr
3962 @item gg
3963 @item gb
3964 @item ga
3965 Adjust contribution of input red, green, blue and alpha channels for output green channel.
3966 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
3967
3968 @item br
3969 @item bg
3970 @item bb
3971 @item ba
3972 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
3973 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
3974
3975 @item ar
3976 @item ag
3977 @item ab
3978 @item aa
3979 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
3980 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
3981
3982 Allowed ranges for options are @code{[-2.0, 2.0]}.
3983 @end table
3984
3985 @subsection Examples
3986
3987 @itemize
3988 @item
3989 Convert source to grayscale:
3990 @example
3991 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
3992 @end example
3993 @item
3994 Simulate sepia tones:
3995 @example
3996 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
3997 @end example
3998 @end itemize
3999
4000 @section colormatrix
4001
4002 Convert color matrix.
4003
4004 The filter accepts the following options:
4005
4006 @table @option
4007 @item src
4008 @item dst
4009 Specify the source and destination color matrix. Both values must be
4010 specified.
4011
4012 The accepted values are:
4013 @table @samp
4014 @item bt709
4015 BT.709
4016
4017 @item bt601
4018 BT.601
4019
4020 @item smpte240m
4021 SMPTE-240M
4022
4023 @item fcc
4024 FCC
4025 @end table
4026 @end table
4027
4028 For example to convert from BT.601 to SMPTE-240M, use the command:
4029 @example
4030 colormatrix=bt601:smpte240m
4031 @end example
4032
4033 @section copy
4034
4035 Copy the input source unchanged to the output. This is mainly useful for
4036 testing purposes.
4037
4038 @section crop
4039
4040 Crop the input video to given dimensions.
4041
4042 It accepts the following parameters:
4043
4044 @table @option
4045 @item w, out_w
4046 The width of the output video. It defaults to @code{iw}.
4047 This expression is evaluated only once during the filter
4048 configuration, or when the @samp{w} or @samp{out_w} command is sent.
4049
4050 @item h, out_h
4051 The height of the output video. It defaults to @code{ih}.
4052 This expression is evaluated only once during the filter
4053 configuration, or when the @samp{h} or @samp{out_h} command is sent.
4054
4055 @item x
4056 The horizontal position, in the input video, of the left edge of the output
4057 video. It defaults to @code{(in_w-out_w)/2}.
4058 This expression is evaluated per-frame.
4059
4060 @item y
4061 The vertical position, in the input video, of the top edge of the output video.
4062 It defaults to @code{(in_h-out_h)/2}.
4063 This expression is evaluated per-frame.
4064
4065 @item keep_aspect
4066 If set to 1 will force the output display aspect ratio
4067 to be the same of the input, by changing the output sample aspect
4068 ratio. It defaults to 0.
4069 @end table
4070
4071 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
4072 expressions containing the following constants:
4073
4074 @table @option
4075 @item x
4076 @item y
4077 The computed values for @var{x} and @var{y}. They are evaluated for
4078 each new frame.
4079
4080 @item in_w
4081 @item in_h
4082 The input width and height.
4083
4084 @item iw
4085 @item ih
4086 These are the same as @var{in_w} and @var{in_h}.
4087
4088 @item out_w
4089 @item out_h
4090 The output (cropped) width and height.
4091
4092 @item ow
4093 @item oh
4094 These are the same as @var{out_w} and @var{out_h}.
4095
4096 @item a
4097 same as @var{iw} / @var{ih}
4098
4099 @item sar
4100 input sample aspect ratio
4101
4102 @item dar
4103 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
4104
4105 @item hsub
4106 @item vsub
4107 horizontal and vertical chroma subsample values. For example for the
4108 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4109
4110 @item n
4111 The number of the input frame, starting from 0.
4112
4113 @item pos
4114 the position in the file of the input frame, NAN if unknown
4115
4116 @item t
4117 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
4118
4119 @end table
4120
4121 The expression for @var{out_w} may depend on the value of @var{out_h},
4122 and the expression for @var{out_h} may depend on @var{out_w}, but they
4123 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
4124 evaluated after @var{out_w} and @var{out_h}.
4125
4126 The @var{x} and @var{y} parameters specify the expressions for the
4127 position of the top-left corner of the output (non-cropped) area. They
4128 are evaluated for each frame. If the evaluated value is not valid, it
4129 is approximated to the nearest valid value.
4130
4131 The expression for @var{x} may depend on @var{y}, and the expression
4132 for @var{y} may depend on @var{x}.
4133
4134 @subsection Examples
4135
4136 @itemize
4137 @item
4138 Crop area with size 100x100 at position (12,34).
4139 @example
4140 crop=100:100:12:34
4141 @end example
4142
4143 Using named options, the example above becomes:
4144 @example
4145 crop=w=100:h=100:x=12:y=34
4146 @end example
4147
4148 @item
4149 Crop the central input area with size 100x100:
4150 @example
4151 crop=100:100
4152 @end example
4153
4154 @item
4155 Crop the central input area with size 2/3 of the input video:
4156 @example
4157 crop=2/3*in_w:2/3*in_h
4158 @end example
4159
4160 @item
4161 Crop the input video central square:
4162 @example
4163 crop=out_w=in_h
4164 crop=in_h
4165 @end example
4166
4167 @item
4168 Delimit the rectangle with the top-left corner placed at position
4169 100:100 and the right-bottom corner corresponding to the right-bottom
4170 corner of the input image.
4171 @example
4172 crop=in_w-100:in_h-100:100:100
4173 @end example
4174
4175 @item
4176 Crop 10 pixels from the left and right borders, and 20 pixels from
4177 the top and bottom borders
4178 @example
4179 crop=in_w-2*10:in_h-2*20
4180 @end example
4181
4182 @item
4183 Keep only the bottom right quarter of the input image:
4184 @example
4185 crop=in_w/2:in_h/2:in_w/2:in_h/2
4186 @end example
4187
4188 @item
4189 Crop height for getting Greek harmony:
4190 @example
4191 crop=in_w:1/PHI*in_w
4192 @end example
4193
4194 @item
4195 Apply trembling effect:
4196 @example
4197 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)
4198 @end example
4199
4200 @item
4201 Apply erratic camera effect depending on timestamp:
4202 @example
4203 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)"
4204 @end example
4205
4206 @item
4207 Set x depending on the value of y:
4208 @example
4209 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
4210 @end example
4211 @end itemize
4212
4213 @subsection Commands
4214
4215 This filter supports the following commands:
4216 @table @option
4217 @item w, out_w
4218 @item h, out_h
4219 @item x
4220 @item y
4221 Set width/height of the output video and the horizontal/vertical position
4222 in the input video.
4223 The command accepts the same syntax of the corresponding option.
4224
4225 If the specified expression is not valid, it is kept at its current
4226 value.
4227 @end table
4228
4229 @section cropdetect
4230
4231 Auto-detect the crop size.
4232
4233 It calculates the necessary cropping parameters and prints the
4234 recommended parameters via the logging system. The detected dimensions
4235 correspond to the non-black area of the input video.
4236
4237 It accepts the following parameters:
4238
4239 @table @option
4240
4241 @item limit
4242 Set higher black value threshold, which can be optionally specified
4243 from nothing (0) to everything (255 for 8bit based formats). An intensity
4244 value greater to the set value is considered non-black. It defaults to 24.
4245 You can also specify a value between 0.0 and 1.0 which will be scaled depending
4246 on the bitdepth of the pixel format.
4247
4248 @item round
4249 The value which the width/height should be divisible by. It defaults to
4250 16. The offset is automatically adjusted to center the video. Use 2 to
4251 get only even dimensions (needed for 4:2:2 video). 16 is best when
4252 encoding to most video codecs.
4253
4254 @item reset_count, reset
4255 Set the counter that determines after how many frames cropdetect will
4256 reset the previously detected largest video area and start over to
4257 detect the current optimal crop area. Default value is 0.
4258
4259 This can be useful when channel logos distort the video area. 0
4260 indicates 'never reset', and returns the largest area encountered during
4261 playback.
4262 @end table
4263
4264 @anchor{curves}
4265 @section curves
4266
4267 Apply color adjustments using curves.
4268
4269 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
4270 component (red, green and blue) has its values defined by @var{N} key points
4271 tied from each other using a smooth curve. The x-axis represents the pixel
4272 values from the input frame, and the y-axis the new pixel values to be set for
4273 the output frame.
4274
4275 By default, a component curve is defined by the two points @var{(0;0)} and
4276 @var{(1;1)}. This creates a straight line where each original pixel value is
4277 "adjusted" to its own value, which means no change to the image.
4278
4279 The filter allows you to redefine these two points and add some more. A new
4280 curve (using a natural cubic spline interpolation) will be define to pass
4281 smoothly through all these new coordinates. The new defined points needs to be
4282 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
4283 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
4284 the vector spaces, the values will be clipped accordingly.
4285
4286 If there is no key point defined in @code{x=0}, the filter will automatically
4287 insert a @var{(0;0)} point. In the same way, if there is no key point defined
4288 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
4289
4290 The filter accepts the following options:
4291
4292 @table @option
4293 @item preset
4294 Select one of the available color presets. This option can be used in addition
4295 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
4296 options takes priority on the preset values.
4297 Available presets are:
4298 @table @samp
4299 @item none
4300 @item color_negative
4301 @item cross_process
4302 @item darker
4303 @item increase_contrast
4304 @item lighter
4305 @item linear_contrast
4306 @item medium_contrast
4307 @item negative
4308 @item strong_contrast
4309 @item vintage
4310 @end table
4311 Default is @code{none}.
4312 @item master, m
4313 Set the master key points. These points will define a second pass mapping. It
4314 is sometimes called a "luminance" or "value" mapping. It can be used with
4315 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
4316 post-processing LUT.
4317 @item red, r
4318 Set the key points for the red component.
4319 @item green, g
4320 Set the key points for the green component.
4321 @item blue, b
4322 Set the key points for the blue component.
4323 @item all
4324 Set the key points for all components (not including master).
4325 Can be used in addition to the other key points component
4326 options. In this case, the unset component(s) will fallback on this
4327 @option{all} setting.
4328 @item psfile
4329 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
4330 @end table
4331
4332 To avoid some filtergraph syntax conflicts, each key points list need to be
4333 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
4334
4335 @subsection Examples
4336
4337 @itemize
4338 @item
4339 Increase slightly the middle level of blue:
4340 @example
4341 curves=blue='0.5/0.58'
4342 @end example
4343
4344 @item
4345 Vintage effect:
4346 @example
4347 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
4348 @end example
4349 Here we obtain the following coordinates for each components:
4350 @table @var
4351 @item red
4352 @code{(0;0.11) (0.42;0.51) (1;0.95)}
4353 @item green
4354 @code{(0;0) (0.50;0.48) (1;1)}
4355 @item blue
4356 @code{(0;0.22) (0.49;0.44) (1;0.80)}
4357 @end table
4358
4359 @item
4360 The previous example can also be achieved with the associated built-in preset:
4361 @example
4362 curves=preset=vintage
4363 @end example
4364
4365 @item
4366 Or simply:
4367 @example
4368 curves=vintage
4369 @end example
4370
4371 @item
4372 Use a Photoshop preset and redefine the points of the green component:
4373 @example
4374 curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
4375 @end example
4376 @end itemize
4377
4378 @section dctdnoiz
4379
4380 Denoise frames using 2D DCT (frequency domain filtering).
4381
4382 This filter is not designed for real time.
4383
4384 The filter accepts the following options:
4385
4386 @table @option
4387 @item sigma, s
4388 Set the noise sigma constant.
4389
4390 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
4391 coefficient (absolute value) below this threshold with be dropped.
4392
4393 If you need a more advanced filtering, see @option{expr}.
4394
4395 Default is @code{0}.
4396
4397 @item overlap
4398 Set number overlapping pixels for each block. Since the filter can be slow, you
4399 may want to reduce this value, at the cost of a less effective filter and the
4400 risk of various artefacts.
4401
4402 If the overlapping value doesn't permit processing the whole input width or
4403 height, a warning will be displayed and according borders won't be denoised.
4404
4405 Default value is @var{blocksize}-1, which is the best possible setting.
4406
4407 @item expr, e
4408 Set the coefficient factor expression.
4409
4410 For each coefficient of a DCT block, this expression will be evaluated as a
4411 multiplier value for the coefficient.
4412
4413 If this is option is set, the @option{sigma} option will be ignored.
4414
4415 The absolute value of the coefficient can be accessed through the @var{c}
4416 variable.
4417
4418 @item n
4419 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
4420 @var{blocksize}, which is the width and height of the processed blocks.
4421
4422 The default value is @var{3} (8x8) and can be raised to @var{4} for a
4423 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
4424 on the speed processing. Also, a larger block size does not necessarily means a
4425 better de-noising.
4426 @end table
4427
4428 @subsection Examples
4429
4430 Apply a denoise with a @option{sigma} of @code{4.5}:
4431 @example
4432 dctdnoiz=4.5
4433 @end example
4434
4435 The same operation can be achieved using the expression system:
4436 @example
4437 dctdnoiz=e='gte(c, 4.5*3)'
4438 @end example
4439
4440 Violent denoise using a block size of @code{16x16}:
4441 @example
4442 dctdnoiz=15:n=4
4443 @end example
4444
4445 @section deband
4446
4447 Remove banding artifacts from input video.
4448 It works by replacing banded pixels with average value of referenced pixels.
4449
4450 The filter accepts the following options:
4451
4452 @table @option
4453 @item 1thr
4454 @item 2thr
4455 @item 3thr
4456 @item 4thr
4457 Set banding detection threshold for each plane. Default is 0.02.
4458 Valid range is 0.00003 to 0.5.
4459 If difference between current pixel and reference pixel is less than threshold,
4460 it will be considered as banded.
4461
4462 @item range, r
4463 Banding detection range in pixels. Default is 16. If positive, random number
4464 in range 0 to set value will be used. If negative, exact absolute value
4465 will be used.
4466 The range defines square of four pixels around current pixel.
4467
4468 @item direction, d
4469 Set direction in radians from which four pixel will be compared. If positive,
4470 random direction from 0 to set direction will be picked. If negative, exact of
4471 absolute value will be picked. For example direction 0, -PI or -2*PI radians
4472 will pick only pixels on same row and -PI/2 will pick only pixels on same
4473 column.
4474
4475 @item blur
4476 If enabled, current pixel is compared with average value of all four
4477 surrounding pixels. The default is enabled. If disabled current pixel is
4478 compared with all four surrounding pixels. The pixel is considered banded
4479 if only all four differences with surrounding pixels are less than threshold.
4480 @end table
4481
4482 @anchor{decimate}
4483 @section decimate
4484
4485 Drop duplicated frames at regular intervals.
4486
4487 The filter accepts the following options:
4488
4489 @table @option
4490 @item cycle
4491 Set the number of frames from which one will be dropped. Setting this to
4492 @var{N} means one frame in every batch of @var{N} frames will be dropped.
4493 Default is @code{5}.
4494
4495 @item dupthresh
4496 Set the threshold for duplicate detection. If the difference metric for a frame
4497 is less than or equal to this value, then it is declared as duplicate. Default
4498 is @code{1.1}
4499
4500 @item scthresh
4501 Set scene change threshold. Default is @code{15}.
4502
4503 @item blockx
4504 @item blocky
4505 Set the size of the x and y-axis blocks used during metric calculations.
4506 Larger blocks give better noise suppression, but also give worse detection of
4507 small movements. Must be a power of two. Default is @code{32}.
4508
4509 @item ppsrc
4510 Mark main input as a pre-processed input and activate clean source input
4511 stream. This allows the input to be pre-processed with various filters to help
4512 the metrics calculation while keeping the frame selection lossless. When set to
4513 @code{1}, the first stream is for the pre-processed input, and the second
4514 stream is the clean source from where the kept frames are chosen. Default is
4515 @code{0}.
4516
4517 @item chroma
4518 Set whether or not chroma is considered in the metric calculations. Default is
4519 @code{1}.
4520 @end table
4521
4522 @section deflate
4523
4524 Apply deflate effect to the video.
4525
4526 This filter replaces the pixel by the local(3x3) average by taking into account
4527 only values lower than the pixel.
4528
4529 It accepts the following options:
4530
4531 @table @option
4532 @item threshold0
4533 @item threshold1
4534 @item threshold2
4535 @item threshold3
4536 Allows to limit the maximum change for each plane, default is 65535.
4537 If 0, plane will remain unchanged.
4538 @end table
4539
4540 @section dejudder
4541
4542 Remove judder produced by partially interlaced telecined content.
4543
4544 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
4545 source was partially telecined content then the output of @code{pullup,dejudder}
4546 will have a variable frame rate. May change the recorded frame rate of the
4547 container. Aside from that change, this filter will not affect constant frame
4548 rate video.
4549
4550 The option available in this filter is:
4551 @table @option
4552
4553 @item cycle
4554 Specify the length of the window over which the judder repeats.
4555
4556 Accepts any integer greater than 1. Useful values are:
4557 @table @samp
4558
4559 @item 4
4560 If the original was telecined from 24 to 30 fps (Film to NTSC).
4561
4562 @item 5
4563 If the original was telecined from 25 to 30 fps (PAL to NTSC).
4564
4565 @item 20
4566 If a mixture of the two.
4567 @end table
4568
4569 The default is @samp{4}.
4570 @end table
4571
4572 @section delogo
4573
4574 Suppress a TV station logo by a simple interpolation of the surrounding
4575 pixels. Just set a rectangle covering the logo and watch it disappear
4576 (and sometimes something even uglier appear - your mileage may vary).
4577
4578 It accepts the following parameters:
4579 @table @option
4580
4581 @item x
4582 @item y
4583 Specify the top left corner coordinates of the logo. They must be
4584 specified.
4585
4586 @item w
4587 @item h
4588 Specify the width and height of the logo to clear. They must be
4589 specified.
4590
4591 @item band, t
4592 Specify the thickness of the fuzzy edge of the rectangle (added to
4593 @var{w} and @var{h}). The default value is 4.
4594
4595 @item show
4596 When set to 1, a green rectangle is drawn on the screen to simplify
4597 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
4598 The default value is 0.
4599
4600 The rectangle is drawn on the outermost pixels which will be (partly)
4601 replaced with interpolated values. The values of the next pixels
4602 immediately outside this rectangle in each direction will be used to
4603 compute the interpolated pixel values inside the rectangle.
4604
4605 @end table
4606
4607 @subsection Examples
4608
4609 @itemize
4610 @item
4611 Set a rectangle covering the area with top left corner coordinates 0,0
4612 and size 100x77, and a band of size 10:
4613 @example
4614 delogo=x=0:y=0:w=100:h=77:band=10
4615 @end example
4616
4617 @end itemize
4618
4619 @section deshake
4620
4621 Attempt to fix small changes in horizontal and/or vertical shift. This
4622 filter helps remove camera shake from hand-holding a camera, bumping a
4623 tripod, moving on a vehicle, etc.
4624
4625 The filter accepts the following options:
4626
4627 @table @option
4628
4629 @item x
4630 @item y
4631 @item w
4632 @item h
4633 Specify a rectangular area where to limit the search for motion
4634 vectors.
4635 If desired the search for motion vectors can be limited to a
4636 rectangular area of the frame defined by its top left corner, width
4637 and height. These parameters have the same meaning as the drawbox
4638 filter which can be used to visualise the position of the bounding
4639 box.
4640
4641 This is useful when simultaneous movement of subjects within the frame
4642 might be confused for camera motion by the motion vector search.
4643
4644 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
4645 then the full frame is used. This allows later options to be set
4646 without specifying the bounding box for the motion vector search.
4647
4648 Default - search the whole frame.
4649
4650 @item rx
4651 @item ry
4652 Specify the maximum extent of movement in x and y directions in the
4653 range 0-64 pixels. Default 16.
4654
4655 @item edge
4656 Specify how to generate pixels to fill blanks at the edge of the
4657 frame. Available values are:
4658 @table @samp
4659 @item blank, 0
4660 Fill zeroes at blank locations
4661 @item original, 1
4662 Original image at blank locations
4663 @item clamp, 2
4664 Extruded edge value at blank locations
4665 @item mirror, 3
4666 Mirrored edge at blank locations
4667 @end table
4668 Default value is @samp{mirror}.
4669
4670 @item blocksize
4671 Specify the blocksize to use for motion search. Range 4-128 pixels,
4672 default 8.
4673
4674 @item contrast
4675 Specify the contrast threshold for blocks. Only blocks with more than
4676 the specified contrast (difference between darkest and lightest
4677 pixels) will be considered. Range 1-255, default 125.
4678
4679 @item search
4680 Specify the search strategy. Available values are:
4681 @table @samp
4682 @item exhaustive, 0
4683 Set exhaustive search
4684 @item less, 1
4685 Set less exhaustive search.
4686 @end table
4687 Default value is @samp{exhaustive}.
4688
4689 @item filename
4690 If set then a detailed log of the motion search is written to the
4691 specified file.
4692
4693 @item opencl
4694 If set to 1, specify using OpenCL capabilities, only available if
4695 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
4696
4697 @end table
4698
4699 @section detelecine
4700
4701 Apply an exact inverse of the telecine operation. It requires a predefined
4702 pattern specified using the pattern option which must be the same as that passed
4703 to the telecine filter.
4704
4705 This filter accepts the following options:
4706
4707 @table @option
4708 @item first_field
4709 @table @samp
4710 @item top, t
4711 top field first
4712 @item bottom, b
4713 bottom field first
4714 The default value is @code{top}.
4715 @end table
4716
4717 @item pattern
4718 A string of numbers representing the pulldown pattern you wish to apply.
4719 The default value is @code{23}.
4720
4721 @item start_frame
4722 A number representing position of the first frame with respect to the telecine
4723 pattern. This is to be used if the stream is cut. The default value is @code{0}.
4724 @end table
4725
4726 @section dilation
4727
4728 Apply dilation effect to the video.
4729
4730 This filter replaces the pixel by the local(3x3) maximum.
4731
4732 It accepts the following options:
4733
4734 @table @option
4735 @item threshold0
4736 @item threshold1
4737 @item threshold2
4738 @item threshold3
4739 Allows to limit the maximum change for each plane, default is 65535.
4740 If 0, plane will remain unchanged.
4741
4742 @item coordinates
4743 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
4744 pixels are used.
4745
4746 Flags to local 3x3 coordinates maps like this:
4747
4748     1 2 3
4749     4   5
4750     6 7 8
4751 @end table
4752
4753 @section displace
4754
4755 Displace pixels as indicated by second and third input stream.
4756
4757 It takes three input streams and outputs one stream, the first input is the
4758 source, and second and third input are displacement maps.
4759
4760 The second input specifies how much to displace pixels along the
4761 x-axis, while the third input specifies how much to displace pixels
4762 along the y-axis.
4763 If one of displacement map streams terminates, last frame from that
4764 displacement map will be used.
4765
4766 Note that once generated, displacements maps can be reused over and over again.
4767
4768 A description of the accepted options follows.
4769
4770 @table @option
4771 @item edge
4772 Set displace behavior for pixels that are out of range.
4773
4774 Available values are:
4775 @table @samp
4776 @item blank
4777 Missing pixels are replaced by black pixels.
4778
4779 @item smear
4780 Adjacent pixels will spread out to replace missing pixels.
4781
4782 @item wrap
4783 Out of range pixels are wrapped so they point to pixels of other side.
4784 @end table
4785 Default is @samp{smear}.
4786
4787 @end table
4788
4789 @subsection Examples
4790
4791 @itemize
4792 @item
4793 Add ripple effect to rgb input of video size hd720:
4794 @example
4795 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
4796 @end example
4797
4798 @item
4799 Add wave effect to rgb input of video size hd720:
4800 @example
4801 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
4802 @end example
4803 @end itemize
4804
4805 @section drawbox
4806
4807 Draw a colored box on the input image.
4808
4809 It accepts the following parameters:
4810
4811 @table @option
4812 @item x
4813 @item y
4814 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
4815
4816 @item width, w
4817 @item height, h
4818 The expressions which specify the width and height of the box; if 0 they are interpreted as
4819 the input width and height. It defaults to 0.
4820
4821 @item color, c
4822 Specify the color of the box to write. For the general syntax of this option,
4823 check the "Color" section in the ffmpeg-utils manual. If the special
4824 value @code{invert} is used, the box edge color is the same as the
4825 video with inverted luma.
4826
4827 @item thickness, t
4828 The expression which sets the thickness of the box edge. Default value is @code{3}.
4829
4830 See below for the list of accepted constants.
4831 @end table
4832
4833 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
4834 following constants:
4835
4836 @table @option
4837 @item dar
4838 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
4839
4840 @item hsub
4841 @item vsub
4842 horizontal and vertical chroma subsample values. For example for the
4843 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4844
4845 @item in_h, ih
4846 @item in_w, iw
4847 The input width and height.
4848
4849 @item sar
4850 The input sample aspect ratio.
4851
4852 @item x
4853 @item y
4854 The x and y offset coordinates where the box is drawn.
4855
4856 @item w
4857 @item h
4858 The width and height of the drawn box.
4859
4860 @item t
4861 The thickness of the drawn box.
4862
4863 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
4864 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
4865
4866 @end table
4867
4868 @subsection Examples
4869
4870 @itemize
4871 @item
4872 Draw a black box around the edge of the input image:
4873 @example
4874 drawbox
4875 @end example
4876
4877 @item
4878 Draw a box with color red and an opacity of 50%:
4879 @example
4880 drawbox=10:20:200:60:red@@0.5
4881 @end example
4882
4883 The previous example can be specified as:
4884 @example
4885 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
4886 @end example
4887
4888 @item
4889 Fill the box with pink color:
4890 @example
4891 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
4892 @end example
4893
4894 @item
4895 Draw a 2-pixel red 2.40:1 mask:
4896 @example
4897 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
4898 @end example
4899 @end itemize
4900
4901 @section drawgraph, adrawgraph
4902
4903 Draw a graph using input video or audio metadata.
4904
4905 It accepts the following parameters:
4906
4907 @table @option
4908 @item m1
4909 Set 1st frame metadata key from which metadata values will be used to draw a graph.
4910
4911 @item fg1
4912 Set 1st foreground color expression.
4913
4914 @item m2
4915 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
4916
4917 @item fg2
4918 Set 2nd foreground color expression.
4919
4920 @item m3
4921 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
4922
4923 @item fg3
4924 Set 3rd foreground color expression.
4925
4926 @item m4
4927 Set 4th frame metadata key from which metadata values will be used to draw a graph.
4928
4929 @item fg4
4930 Set 4th foreground color expression.
4931
4932 @item min
4933 Set minimal value of metadata value.
4934
4935 @item max
4936 Set maximal value of metadata value.
4937
4938 @item bg
4939 Set graph background color. Default is white.
4940
4941 @item mode
4942 Set graph mode.
4943
4944 Available values for mode is:
4945 @table @samp
4946 @item bar
4947 @item dot
4948 @item line
4949 @end table
4950
4951 Default is @code{line}.
4952
4953 @item slide
4954 Set slide mode.
4955
4956 Available values for slide is:
4957 @table @samp
4958 @item frame
4959 Draw new frame when right border is reached.
4960
4961 @item replace
4962 Replace old columns with new ones.
4963
4964 @item scroll
4965 Scroll from right to left.
4966
4967 @item rscroll
4968 Scroll from left to right.
4969 @end table
4970
4971 Default is @code{frame}.
4972
4973 @item size
4974 Set size of graph video. For the syntax of this option, check the
4975 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
4976 The default value is @code{900x256}.
4977
4978 The foreground color expressions can use the following variables:
4979 @table @option
4980 @item MIN
4981 Minimal value of metadata value.
4982
4983 @item MAX
4984 Maximal value of metadata value.
4985
4986 @item VAL
4987 Current metadata key value.
4988 @end table
4989
4990 The color is defined as 0xAABBGGRR.
4991 @end table
4992
4993 Example using metadata from @ref{signalstats} filter:
4994 @example
4995 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
4996 @end example
4997
4998 Example using metadata from @ref{ebur128} filter:
4999 @example
5000 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
5001 @end example
5002
5003 @section drawgrid
5004
5005 Draw a grid on the input image.
5006
5007 It accepts the following parameters:
5008
5009 @table @option
5010 @item x
5011 @item y
5012 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
5013
5014 @item width, w
5015 @item height, h
5016 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
5017 input width and height, respectively, minus @code{thickness}, so image gets
5018 framed. Default to 0.
5019
5020 @item color, c
5021 Specify the color of the grid. For the general syntax of this option,
5022 check the "Color" section in the ffmpeg-utils manual. If the special
5023 value @code{invert} is used, the grid color is the same as the
5024 video with inverted luma.
5025
5026 @item thickness, t
5027 The expression which sets the thickness of the grid line. Default value is @code{1}.
5028
5029 See below for the list of accepted constants.
5030 @end table
5031
5032 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
5033 following constants:
5034
5035 @table @option
5036 @item dar
5037 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
5038
5039 @item hsub
5040 @item vsub
5041 horizontal and vertical chroma subsample values. For example for the
5042 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5043
5044 @item in_h, ih
5045 @item in_w, iw
5046 The input grid cell width and height.
5047
5048 @item sar
5049 The input sample aspect ratio.
5050
5051 @item x
5052 @item y
5053 The x and y coordinates of some point of grid intersection (meant to configure offset).
5054
5055 @item w
5056 @item h
5057 The width and height of the drawn cell.
5058
5059 @item t
5060 The thickness of the drawn cell.
5061
5062 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
5063 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
5064
5065 @end table
5066
5067 @subsection Examples
5068
5069 @itemize
5070 @item
5071 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
5072 @example
5073 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
5074 @end example
5075
5076 @item
5077 Draw a white 3x3 grid with an opacity of 50%:
5078 @example
5079 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
5080 @end example
5081 @end itemize
5082
5083 @anchor{drawtext}
5084 @section drawtext
5085
5086 Draw a text string or text from a specified file on top of a video, using the
5087 libfreetype library.
5088
5089 To enable compilation of this filter, you need to configure FFmpeg with
5090 @code{--enable-libfreetype}.
5091 To enable default font fallback and the @var{font} option you need to
5092 configure FFmpeg with @code{--enable-libfontconfig}.
5093 To enable the @var{text_shaping} option, you need to configure FFmpeg with
5094 @code{--enable-libfribidi}.
5095
5096 @subsection Syntax
5097
5098 It accepts the following parameters:
5099
5100 @table @option
5101
5102 @item box
5103 Used to draw a box around text using the background color.
5104 The value must be either 1 (enable) or 0 (disable).
5105 The default value of @var{box} is 0.
5106
5107 @item boxborderw
5108 Set the width of the border to be drawn around the box using @var{boxcolor}.
5109 The default value of @var{boxborderw} is 0.
5110
5111 @item boxcolor
5112 The color to be used for drawing box around text. For the syntax of this
5113 option, check the "Color" section in the ffmpeg-utils manual.
5114
5115 The default value of @var{boxcolor} is "white".
5116
5117 @item borderw
5118 Set the width of the border to be drawn around the text using @var{bordercolor}.
5119 The default value of @var{borderw} is 0.
5120
5121 @item bordercolor
5122 Set the color to be used for drawing border around text. For the syntax of this
5123 option, check the "Color" section in the ffmpeg-utils manual.
5124
5125 The default value of @var{bordercolor} is "black".
5126
5127 @item expansion
5128 Select how the @var{text} is expanded. Can be either @code{none},
5129 @code{strftime} (deprecated) or
5130 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
5131 below for details.
5132
5133 @item fix_bounds
5134 If true, check and fix text coords to avoid clipping.
5135
5136 @item fontcolor
5137 The color to be used for drawing fonts. For the syntax of this option, check
5138 the "Color" section in the ffmpeg-utils manual.
5139
5140 The default value of @var{fontcolor} is "black".
5141
5142 @item fontcolor_expr
5143 String which is expanded the same way as @var{text} to obtain dynamic
5144 @var{fontcolor} value. By default this option has empty value and is not
5145 processed. When this option is set, it overrides @var{fontcolor} option.
5146
5147 @item font
5148 The font family to be used for drawing text. By default Sans.
5149
5150 @item fontfile
5151 The font file to be used for drawing text. The path must be included.
5152 This parameter is mandatory if the fontconfig support is disabled.
5153
5154 @item draw
5155 This option does not exist, please see the timeline system
5156
5157 @item alpha
5158 Draw the text applying alpha blending. The value can
5159 be either a number between 0.0 and 1.0
5160 The expression accepts the same variables @var{x, y} do.
5161 The default value is 1.
5162 Please see fontcolor_expr
5163
5164 @item fontsize
5165 The font size to be used for drawing text.
5166 The default value of @var{fontsize} is 16.
5167
5168 @item text_shaping
5169 If set to 1, attempt to shape the text (for example, reverse the order of
5170 right-to-left text and join Arabic characters) before drawing it.
5171 Otherwise, just draw the text exactly as given.
5172 By default 1 (if supported).
5173
5174 @item ft_load_flags
5175 The flags to be used for loading the fonts.
5176
5177 The flags map the corresponding flags supported by libfreetype, and are
5178 a combination of the following values:
5179 @table @var
5180 @item default
5181 @item no_scale
5182 @item no_hinting
5183 @item render
5184 @item no_bitmap
5185 @item vertical_layout
5186 @item force_autohint
5187 @item crop_bitmap
5188 @item pedantic
5189 @item ignore_global_advance_width
5190 @item no_recurse
5191 @item ignore_transform
5192 @item monochrome
5193 @item linear_design
5194 @item no_autohint
5195 @end table
5196
5197 Default value is "default".
5198
5199 For more information consult the documentation for the FT_LOAD_*
5200 libfreetype flags.
5201
5202 @item shadowcolor
5203 The color to be used for drawing a shadow behind the drawn text. For the
5204 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
5205
5206 The default value of @var{shadowcolor} is "black".
5207
5208 @item shadowx
5209 @item shadowy
5210 The x and y offsets for the text shadow position with respect to the
5211 position of the text. They can be either positive or negative
5212 values. The default value for both is "0".
5213
5214 @item start_number
5215 The starting frame number for the n/frame_num variable. The default value
5216 is "0".
5217
5218 @item tabsize
5219 The size in number of spaces to use for rendering the tab.
5220 Default value is 4.
5221
5222 @item timecode
5223 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
5224 format. It can be used with or without text parameter. @var{timecode_rate}
5225 option must be specified.
5226
5227 @item timecode_rate, rate, r
5228 Set the timecode frame rate (timecode only).
5229
5230 @item text
5231 The text string to be drawn. The text must be a sequence of UTF-8
5232 encoded characters.
5233 This parameter is mandatory if no file is specified with the parameter
5234 @var{textfile}.
5235
5236 @item textfile
5237 A text file containing text to be drawn. The text must be a sequence
5238 of UTF-8 encoded characters.
5239
5240 This parameter is mandatory if no text string is specified with the
5241 parameter @var{text}.
5242
5243 If both @var{text} and @var{textfile} are specified, an error is thrown.
5244
5245 @item reload
5246 If set to 1, the @var{textfile} will be reloaded before each frame.
5247 Be sure to update it atomically, or it may be read partially, or even fail.
5248
5249 @item x
5250 @item y
5251 The expressions which specify the offsets where text will be drawn
5252 within the video frame. They are relative to the top/left border of the
5253 output image.
5254
5255 The default value of @var{x} and @var{y} is "0".
5256
5257 See below for the list of accepted constants and functions.
5258 @end table
5259
5260 The parameters for @var{x} and @var{y} are expressions containing the
5261 following constants and functions:
5262
5263 @table @option
5264 @item dar
5265 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
5266
5267 @item hsub
5268 @item vsub
5269 horizontal and vertical chroma subsample values. For example for the
5270 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5271
5272 @item line_h, lh
5273 the height of each text line
5274
5275 @item main_h, h, H
5276 the input height
5277
5278 @item main_w, w, W
5279 the input width
5280
5281 @item max_glyph_a, ascent
5282 the maximum distance from the baseline to the highest/upper grid
5283 coordinate used to place a glyph outline point, for all the rendered
5284 glyphs.
5285 It is a positive value, due to the grid's orientation with the Y axis
5286 upwards.
5287
5288 @item max_glyph_d, descent
5289 the maximum distance from the baseline to the lowest grid coordinate
5290 used to place a glyph outline point, for all the rendered glyphs.
5291 This is a negative value, due to the grid's orientation, with the Y axis
5292 upwards.
5293
5294 @item max_glyph_h
5295 maximum glyph height, that is the maximum height for all the glyphs
5296 contained in the rendered text, it is equivalent to @var{ascent} -
5297 @var{descent}.
5298
5299 @item max_glyph_w
5300 maximum glyph width, that is the maximum width for all the glyphs
5301 contained in the rendered text
5302
5303 @item n
5304 the number of input frame, starting from 0
5305
5306 @item rand(min, max)
5307 return a random number included between @var{min} and @var{max}
5308
5309 @item sar
5310 The input sample aspect ratio.
5311
5312 @item t
5313 timestamp expressed in seconds, NAN if the input timestamp is unknown
5314
5315 @item text_h, th
5316 the height of the rendered text
5317
5318 @item text_w, tw
5319 the width of the rendered text
5320
5321 @item x
5322 @item y
5323 the x and y offset coordinates where the text is drawn.
5324
5325 These parameters allow the @var{x} and @var{y} expressions to refer
5326 each other, so you can for example specify @code{y=x/dar}.
5327 @end table
5328
5329 @anchor{drawtext_expansion}
5330 @subsection Text expansion
5331
5332 If @option{expansion} is set to @code{strftime},
5333 the filter recognizes strftime() sequences in the provided text and
5334 expands them accordingly. Check the documentation of strftime(). This
5335 feature is deprecated.
5336
5337 If @option{expansion} is set to @code{none}, the text is printed verbatim.
5338
5339 If @option{expansion} is set to @code{normal} (which is the default),
5340 the following expansion mechanism is used.
5341
5342 The backslash character @samp{\}, followed by any character, always expands to
5343 the second character.
5344
5345 Sequence of the form @code{%@{...@}} are expanded. The text between the
5346 braces is a function name, possibly followed by arguments separated by ':'.
5347 If the arguments contain special characters or delimiters (':' or '@}'),
5348 they should be escaped.
5349
5350 Note that they probably must also be escaped as the value for the
5351 @option{text} option in the filter argument string and as the filter
5352 argument in the filtergraph description, and possibly also for the shell,
5353 that makes up to four levels of escaping; using a text file avoids these
5354 problems.
5355
5356 The following functions are available:
5357
5358 @table @command
5359
5360 @item expr, e
5361 The expression evaluation result.
5362
5363 It must take one argument specifying the expression to be evaluated,
5364 which accepts the same constants and functions as the @var{x} and
5365 @var{y} values. Note that not all constants should be used, for
5366 example the text size is not known when evaluating the expression, so
5367 the constants @var{text_w} and @var{text_h} will have an undefined
5368 value.
5369
5370 @item expr_int_format, eif
5371 Evaluate the expression's value and output as formatted integer.
5372
5373 The first argument is the expression to be evaluated, just as for the @var{expr} function.
5374 The second argument specifies the output format. Allowed values are @samp{x},
5375 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
5376 @code{printf} function.
5377 The third parameter is optional and sets the number of positions taken by the output.
5378 It can be used to add padding with zeros from the left.
5379
5380 @item gmtime
5381 The time at which the filter is running, expressed in UTC.
5382 It can accept an argument: a strftime() format string.
5383
5384 @item localtime
5385 The time at which the filter is running, expressed in the local time zone.
5386 It can accept an argument: a strftime() format string.
5387
5388 @item metadata
5389 Frame metadata. It must take one argument specifying metadata key.
5390
5391 @item n, frame_num
5392 The frame number, starting from 0.
5393
5394 @item pict_type
5395 A 1 character description of the current picture type.
5396
5397 @item pts
5398 The timestamp of the current frame.
5399 It can take up to two arguments.
5400
5401 The first argument is the format of the timestamp; it defaults to @code{flt}
5402 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
5403 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
5404
5405 The second argument is an offset added to the timestamp.
5406
5407 @end table
5408
5409 @subsection Examples
5410
5411 @itemize
5412 @item
5413 Draw "Test Text" with font FreeSerif, using the default values for the
5414 optional parameters.
5415
5416 @example
5417 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
5418 @end example
5419
5420 @item
5421 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
5422 and y=50 (counting from the top-left corner of the screen), text is
5423 yellow with a red box around it. Both the text and the box have an
5424 opacity of 20%.
5425
5426 @example
5427 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
5428           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
5429 @end example
5430
5431 Note that the double quotes are not necessary if spaces are not used
5432 within the parameter list.
5433
5434 @item
5435 Show the text at the center of the video frame:
5436 @example
5437 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
5438 @end example
5439
5440 @item
5441 Show a text line sliding from right to left in the last row of the video
5442 frame. The file @file{LONG_LINE} is assumed to contain a single line
5443 with no newlines.
5444 @example
5445 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
5446 @end example
5447
5448 @item
5449 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
5450 @example
5451 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
5452 @end example
5453
5454 @item
5455 Draw a single green letter "g", at the center of the input video.
5456 The glyph baseline is placed at half screen height.
5457 @example
5458 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
5459 @end example
5460
5461 @item
5462 Show text for 1 second every 3 seconds:
5463 @example
5464 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
5465 @end example
5466
5467 @item
5468 Use fontconfig to set the font. Note that the colons need to be escaped.
5469 @example
5470 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
5471 @end example
5472
5473 @item
5474 Print the date of a real-time encoding (see strftime(3)):
5475 @example
5476 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
5477 @end example
5478
5479 @item
5480 Show text fading in and out (appearing/disappearing):
5481 @example
5482 #!/bin/sh
5483 DS=1.0 # display start
5484 DE=10.0 # display end
5485 FID=1.5 # fade in duration
5486 FOD=5 # fade out duration
5487 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 @}"
5488 @end example
5489
5490 @end itemize
5491
5492 For more information about libfreetype, check:
5493 @url{http://www.freetype.org/}.
5494
5495 For more information about fontconfig, check:
5496 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
5497
5498 For more information about libfribidi, check:
5499 @url{http://fribidi.org/}.
5500
5501 @section edgedetect
5502
5503 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
5504
5505 The filter accepts the following options:
5506
5507 @table @option
5508 @item low
5509 @item high
5510 Set low and high threshold values used by the Canny thresholding
5511 algorithm.
5512
5513 The high threshold selects the "strong" edge pixels, which are then
5514 connected through 8-connectivity with the "weak" edge pixels selected
5515 by the low threshold.
5516
5517 @var{low} and @var{high} threshold values must be chosen in the range
5518 [0,1], and @var{low} should be lesser or equal to @var{high}.
5519
5520 Default value for @var{low} is @code{20/255}, and default value for @var{high}
5521 is @code{50/255}.
5522
5523 @item mode
5524 Define the drawing mode.
5525
5526 @table @samp
5527 @item wires
5528 Draw white/gray wires on black background.
5529
5530 @item colormix
5531 Mix the colors to create a paint/cartoon effect.
5532 @end table
5533
5534 Default value is @var{wires}.
5535 @end table
5536
5537 @subsection Examples
5538
5539 @itemize
5540 @item
5541 Standard edge detection with custom values for the hysteresis thresholding:
5542 @example
5543 edgedetect=low=0.1:high=0.4
5544 @end example
5545
5546 @item
5547 Painting effect without thresholding:
5548 @example
5549 edgedetect=mode=colormix:high=0
5550 @end example
5551 @end itemize
5552
5553 @section eq
5554 Set brightness, contrast, saturation and approximate gamma adjustment.
5555
5556 The filter accepts the following options:
5557
5558 @table @option
5559 @item contrast
5560 Set the contrast expression. The value must be a float value in range
5561 @code{-2.0} to @code{2.0}. The default value is "1".
5562
5563 @item brightness
5564 Set the brightness expression. The value must be a float value in
5565 range @code{-1.0} to @code{1.0}. The default value is "0".
5566
5567 @item saturation
5568 Set the saturation expression. The value must be a float in
5569 range @code{0.0} to @code{3.0}. The default value is "1".
5570
5571 @item gamma
5572 Set the gamma expression. The value must be a float in range
5573 @code{0.1} to @code{10.0}.  The default value is "1".
5574
5575 @item gamma_r
5576 Set the gamma expression for red. The value must be a float in
5577 range @code{0.1} to @code{10.0}. The default value is "1".
5578
5579 @item gamma_g
5580 Set the gamma expression for green. The value must be a float in range
5581 @code{0.1} to @code{10.0}. The default value is "1".
5582
5583 @item gamma_b
5584 Set the gamma expression for blue. The value must be a float in range
5585 @code{0.1} to @code{10.0}. The default value is "1".
5586
5587 @item gamma_weight
5588 Set the gamma weight expression. It can be used to reduce the effect
5589 of a high gamma value on bright image areas, e.g. keep them from
5590 getting overamplified and just plain white. The value must be a float
5591 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
5592 gamma correction all the way down while @code{1.0} leaves it at its
5593 full strength. Default is "1".
5594
5595 @item eval
5596 Set when the expressions for brightness, contrast, saturation and
5597 gamma expressions are evaluated.
5598
5599 It accepts the following values:
5600 @table @samp
5601 @item init
5602 only evaluate expressions once during the filter initialization or
5603 when a command is processed
5604
5605 @item frame
5606 evaluate expressions for each incoming frame
5607 @end table
5608
5609 Default value is @samp{init}.
5610 @end table
5611
5612 The expressions accept the following parameters:
5613 @table @option
5614 @item n
5615 frame count of the input frame starting from 0
5616
5617 @item pos
5618 byte position of the corresponding packet in the input file, NAN if
5619 unspecified
5620
5621 @item r
5622 frame rate of the input video, NAN if the input frame rate is unknown
5623
5624 @item t
5625 timestamp expressed in seconds, NAN if the input timestamp is unknown
5626 @end table
5627
5628 @subsection Commands
5629 The filter supports the following commands:
5630
5631 @table @option
5632 @item contrast
5633 Set the contrast expression.
5634
5635 @item brightness
5636 Set the brightness expression.
5637
5638 @item saturation
5639 Set the saturation expression.
5640
5641 @item gamma
5642 Set the gamma expression.
5643
5644 @item gamma_r
5645 Set the gamma_r expression.
5646
5647 @item gamma_g
5648 Set gamma_g expression.
5649
5650 @item gamma_b
5651 Set gamma_b expression.
5652
5653 @item gamma_weight
5654 Set gamma_weight expression.
5655
5656 The command accepts the same syntax of the corresponding option.
5657
5658 If the specified expression is not valid, it is kept at its current
5659 value.
5660
5661 @end table
5662
5663 @section erosion
5664
5665 Apply erosion effect to the video.
5666
5667 This filter replaces the pixel by the local(3x3) minimum.
5668
5669 It accepts the following options:
5670
5671 @table @option
5672 @item threshold0
5673 @item threshold1
5674 @item threshold2
5675 @item threshold3
5676 Allows to limit the maximum change for each plane, default is 65535.
5677 If 0, plane will remain unchanged.
5678
5679 @item coordinates
5680 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
5681 pixels are used.
5682
5683 Flags to local 3x3 coordinates maps like this:
5684
5685     1 2 3
5686     4   5
5687     6 7 8
5688 @end table
5689
5690 @section extractplanes
5691
5692 Extract color channel components from input video stream into
5693 separate grayscale video streams.
5694
5695 The filter accepts the following option:
5696
5697 @table @option
5698 @item planes
5699 Set plane(s) to extract.
5700
5701 Available values for planes are:
5702 @table @samp
5703 @item y
5704 @item u
5705 @item v
5706 @item a
5707 @item r
5708 @item g
5709 @item b
5710 @end table
5711
5712 Choosing planes not available in the input will result in an error.
5713 That means you cannot select @code{r}, @code{g}, @code{b} planes
5714 with @code{y}, @code{u}, @code{v} planes at same time.
5715 @end table
5716
5717 @subsection Examples
5718
5719 @itemize
5720 @item
5721 Extract luma, u and v color channel component from input video frame
5722 into 3 grayscale outputs:
5723 @example
5724 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
5725 @end example
5726 @end itemize
5727
5728 @section elbg
5729
5730 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
5731
5732 For each input image, the filter will compute the optimal mapping from
5733 the input to the output given the codebook length, that is the number
5734 of distinct output colors.
5735
5736 This filter accepts the following options.
5737
5738 @table @option
5739 @item codebook_length, l
5740 Set codebook length. The value must be a positive integer, and
5741 represents the number of distinct output colors. Default value is 256.
5742
5743 @item nb_steps, n
5744 Set the maximum number of iterations to apply for computing the optimal
5745 mapping. The higher the value the better the result and the higher the
5746 computation time. Default value is 1.
5747
5748 @item seed, s
5749 Set a random seed, must be an integer included between 0 and
5750 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
5751 will try to use a good random seed on a best effort basis.
5752
5753 @item pal8
5754 Set pal8 output pixel format. This option does not work with codebook
5755 length greater than 256.
5756 @end table
5757
5758 @section fade
5759
5760 Apply a fade-in/out effect to the input video.
5761
5762 It accepts the following parameters:
5763
5764 @table @option
5765 @item type, t
5766 The effect type can be either "in" for a fade-in, or "out" for a fade-out
5767 effect.
5768 Default is @code{in}.
5769
5770 @item start_frame, s
5771 Specify the number of the frame to start applying the fade
5772 effect at. Default is 0.
5773
5774 @item nb_frames, n
5775 The number of frames that the fade effect lasts. At the end of the
5776 fade-in effect, the output video will have the same intensity as the input video.
5777 At the end of the fade-out transition, the output video will be filled with the
5778 selected @option{color}.
5779 Default is 25.
5780
5781 @item alpha
5782 If set to 1, fade only alpha channel, if one exists on the input.
5783 Default value is 0.
5784
5785 @item start_time, st
5786 Specify the timestamp (in seconds) of the frame to start to apply the fade
5787 effect. If both start_frame and start_time are specified, the fade will start at
5788 whichever comes last.  Default is 0.
5789
5790 @item duration, d
5791 The number of seconds for which the fade effect has to last. At the end of the
5792 fade-in effect the output video will have the same intensity as the input video,
5793 at the end of the fade-out transition the output video will be filled with the
5794 selected @option{color}.
5795 If both duration and nb_frames are specified, duration is used. Default is 0
5796 (nb_frames is used by default).
5797
5798 @item color, c
5799 Specify the color of the fade. Default is "black".
5800 @end table
5801
5802 @subsection Examples
5803
5804 @itemize
5805 @item
5806 Fade in the first 30 frames of video:
5807 @example
5808 fade=in:0:30
5809 @end example
5810
5811 The command above is equivalent to:
5812 @example
5813 fade=t=in:s=0:n=30
5814 @end example
5815
5816 @item
5817 Fade out the last 45 frames of a 200-frame video:
5818 @example
5819 fade=out:155:45
5820 fade=type=out:start_frame=155:nb_frames=45
5821 @end example
5822
5823 @item
5824 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
5825 @example
5826 fade=in:0:25, fade=out:975:25
5827 @end example
5828
5829 @item
5830 Make the first 5 frames yellow, then fade in from frame 5-24:
5831 @example
5832 fade=in:5:20:color=yellow
5833 @end example
5834
5835 @item
5836 Fade in alpha over first 25 frames of video:
5837 @example
5838 fade=in:0:25:alpha=1
5839 @end example
5840
5841 @item
5842 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
5843 @example
5844 fade=t=in:st=5.5:d=0.5
5845 @end example
5846
5847 @end itemize
5848
5849 @section fftfilt
5850 Apply arbitrary expressions to samples in frequency domain
5851
5852 @table @option
5853 @item dc_Y
5854 Adjust the dc value (gain) of the luma plane of the image. The filter
5855 accepts an integer value in range @code{0} to @code{1000}. The default
5856 value is set to @code{0}.
5857
5858 @item dc_U
5859 Adjust the dc value (gain) of the 1st chroma plane of the image. The
5860 filter accepts an integer value in range @code{0} to @code{1000}. The
5861 default value is set to @code{0}.
5862
5863 @item dc_V
5864 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
5865 filter accepts an integer value in range @code{0} to @code{1000}. The
5866 default value is set to @code{0}.
5867
5868 @item weight_Y
5869 Set the frequency domain weight expression for the luma plane.
5870
5871 @item weight_U
5872 Set the frequency domain weight expression for the 1st chroma plane.
5873
5874 @item weight_V
5875 Set the frequency domain weight expression for the 2nd chroma plane.
5876
5877 The filter accepts the following variables:
5878 @item X
5879 @item Y
5880 The coordinates of the current sample.
5881
5882 @item W
5883 @item H
5884 The width and height of the image.
5885 @end table
5886
5887 @subsection Examples
5888
5889 @itemize
5890 @item
5891 High-pass:
5892 @example
5893 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
5894 @end example
5895
5896 @item
5897 Low-pass:
5898 @example
5899 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
5900 @end example
5901
5902 @item
5903 Sharpen:
5904 @example
5905 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
5906 @end example
5907
5908 @end itemize
5909
5910 @section field
5911
5912 Extract a single field from an interlaced image using stride
5913 arithmetic to avoid wasting CPU time. The output frames are marked as
5914 non-interlaced.
5915
5916 The filter accepts the following options:
5917
5918 @table @option
5919 @item type
5920 Specify whether to extract the top (if the value is @code{0} or
5921 @code{top}) or the bottom field (if the value is @code{1} or
5922 @code{bottom}).
5923 @end table
5924
5925 @section fieldmatch
5926
5927 Field matching filter for inverse telecine. It is meant to reconstruct the
5928 progressive frames from a telecined stream. The filter does not drop duplicated
5929 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
5930 followed by a decimation filter such as @ref{decimate} in the filtergraph.
5931
5932 The separation of the field matching and the decimation is notably motivated by
5933 the possibility of inserting a de-interlacing filter fallback between the two.
5934 If the source has mixed telecined and real interlaced content,
5935 @code{fieldmatch} will not be able to match fields for the interlaced parts.
5936 But these remaining combed frames will be marked as interlaced, and thus can be
5937 de-interlaced by a later filter such as @ref{yadif} before decimation.
5938
5939 In addition to the various configuration options, @code{fieldmatch} can take an
5940 optional second stream, activated through the @option{ppsrc} option. If
5941 enabled, the frames reconstruction will be based on the fields and frames from
5942 this second stream. This allows the first input to be pre-processed in order to
5943 help the various algorithms of the filter, while keeping the output lossless
5944 (assuming the fields are matched properly). Typically, a field-aware denoiser,
5945 or brightness/contrast adjustments can help.
5946
5947 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
5948 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
5949 which @code{fieldmatch} is based on. While the semantic and usage are very
5950 close, some behaviour and options names can differ.
5951
5952 The @ref{decimate} filter currently only works for constant frame rate input.
5953 If your input has mixed telecined (30fps) and progressive content with a lower
5954 framerate like 24fps use the following filterchain to produce the necessary cfr
5955 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
5956
5957 The filter accepts the following options:
5958
5959 @table @option
5960 @item order
5961 Specify the assumed field order of the input stream. Available values are:
5962
5963 @table @samp
5964 @item auto
5965 Auto detect parity (use FFmpeg's internal parity value).
5966 @item bff
5967 Assume bottom field first.
5968 @item tff
5969 Assume top field first.
5970 @end table
5971
5972 Note that it is sometimes recommended not to trust the parity announced by the
5973 stream.
5974
5975 Default value is @var{auto}.
5976
5977 @item mode
5978 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
5979 sense that it won't risk creating jerkiness due to duplicate frames when
5980 possible, but if there are bad edits or blended fields it will end up
5981 outputting combed frames when a good match might actually exist. On the other
5982 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
5983 but will almost always find a good frame if there is one. The other values are
5984 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
5985 jerkiness and creating duplicate frames versus finding good matches in sections
5986 with bad edits, orphaned fields, blended fields, etc.
5987
5988 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
5989
5990 Available values are:
5991
5992 @table @samp
5993 @item pc
5994 2-way matching (p/c)
5995 @item pc_n
5996 2-way matching, and trying 3rd match if still combed (p/c + n)
5997 @item pc_u
5998 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
5999 @item pc_n_ub
6000 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
6001 still combed (p/c + n + u/b)
6002 @item pcn
6003 3-way matching (p/c/n)
6004 @item pcn_ub
6005 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
6006 detected as combed (p/c/n + u/b)
6007 @end table
6008
6009 The parenthesis at the end indicate the matches that would be used for that
6010 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
6011 @var{top}).
6012
6013 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
6014 the slowest.
6015
6016 Default value is @var{pc_n}.
6017
6018 @item ppsrc
6019 Mark the main input stream as a pre-processed input, and enable the secondary
6020 input stream as the clean source to pick the fields from. See the filter
6021 introduction for more details. It is similar to the @option{clip2} feature from
6022 VFM/TFM.
6023
6024 Default value is @code{0} (disabled).
6025
6026 @item field
6027 Set the field to match from. It is recommended to set this to the same value as
6028 @option{order} unless you experience matching failures with that setting. In
6029 certain circumstances changing the field that is used to match from can have a
6030 large impact on matching performance. Available values are:
6031
6032 @table @samp
6033 @item auto
6034 Automatic (same value as @option{order}).
6035 @item bottom
6036 Match from the bottom field.
6037 @item top
6038 Match from the top field.
6039 @end table
6040
6041 Default value is @var{auto}.
6042
6043 @item mchroma
6044 Set whether or not chroma is included during the match comparisons. In most
6045 cases it is recommended to leave this enabled. You should set this to @code{0}
6046 only if your clip has bad chroma problems such as heavy rainbowing or other
6047 artifacts. Setting this to @code{0} could also be used to speed things up at
6048 the cost of some accuracy.
6049
6050 Default value is @code{1}.
6051
6052 @item y0
6053 @item y1
6054 These define an exclusion band which excludes the lines between @option{y0} and
6055 @option{y1} from being included in the field matching decision. An exclusion
6056 band can be used to ignore subtitles, a logo, or other things that may
6057 interfere with the matching. @option{y0} sets the starting scan line and
6058 @option{y1} sets the ending line; all lines in between @option{y0} and
6059 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
6060 @option{y0} and @option{y1} to the same value will disable the feature.
6061 @option{y0} and @option{y1} defaults to @code{0}.
6062
6063 @item scthresh
6064 Set the scene change detection threshold as a percentage of maximum change on
6065 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
6066 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
6067 @option{scthresh} is @code{[0.0, 100.0]}.
6068
6069 Default value is @code{12.0}.
6070
6071 @item combmatch
6072 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
6073 account the combed scores of matches when deciding what match to use as the
6074 final match. Available values are:
6075
6076 @table @samp
6077 @item none
6078 No final matching based on combed scores.
6079 @item sc
6080 Combed scores are only used when a scene change is detected.
6081 @item full
6082 Use combed scores all the time.
6083 @end table
6084
6085 Default is @var{sc}.
6086
6087 @item combdbg
6088 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
6089 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
6090 Available values are:
6091
6092 @table @samp
6093 @item none
6094 No forced calculation.
6095 @item pcn
6096 Force p/c/n calculations.
6097 @item pcnub
6098 Force p/c/n/u/b calculations.
6099 @end table
6100
6101 Default value is @var{none}.
6102
6103 @item cthresh
6104 This is the area combing threshold used for combed frame detection. This
6105 essentially controls how "strong" or "visible" combing must be to be detected.
6106 Larger values mean combing must be more visible and smaller values mean combing
6107 can be less visible or strong and still be detected. Valid settings are from
6108 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
6109 be detected as combed). This is basically a pixel difference value. A good
6110 range is @code{[8, 12]}.
6111
6112 Default value is @code{9}.
6113
6114 @item chroma
6115 Sets whether or not chroma is considered in the combed frame decision.  Only
6116 disable this if your source has chroma problems (rainbowing, etc.) that are
6117 causing problems for the combed frame detection with chroma enabled. Actually,
6118 using @option{chroma}=@var{0} is usually more reliable, except for the case
6119 where there is chroma only combing in the source.
6120
6121 Default value is @code{0}.
6122
6123 @item blockx
6124 @item blocky
6125 Respectively set the x-axis and y-axis size of the window used during combed
6126 frame detection. This has to do with the size of the area in which
6127 @option{combpel} pixels are required to be detected as combed for a frame to be
6128 declared combed. See the @option{combpel} parameter description for more info.
6129 Possible values are any number that is a power of 2 starting at 4 and going up
6130 to 512.
6131
6132 Default value is @code{16}.
6133
6134 @item combpel
6135 The number of combed pixels inside any of the @option{blocky} by
6136 @option{blockx} size blocks on the frame for the frame to be detected as
6137 combed. While @option{cthresh} controls how "visible" the combing must be, this
6138 setting controls "how much" combing there must be in any localized area (a
6139 window defined by the @option{blockx} and @option{blocky} settings) on the
6140 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
6141 which point no frames will ever be detected as combed). This setting is known
6142 as @option{MI} in TFM/VFM vocabulary.
6143
6144 Default value is @code{80}.
6145 @end table
6146
6147 @anchor{p/c/n/u/b meaning}
6148 @subsection p/c/n/u/b meaning
6149
6150 @subsubsection p/c/n
6151
6152 We assume the following telecined stream:
6153
6154 @example
6155 Top fields:     1 2 2 3 4
6156 Bottom fields:  1 2 3 4 4
6157 @end example
6158
6159 The numbers correspond to the progressive frame the fields relate to. Here, the
6160 first two frames are progressive, the 3rd and 4th are combed, and so on.
6161
6162 When @code{fieldmatch} is configured to run a matching from bottom
6163 (@option{field}=@var{bottom}) this is how this input stream get transformed:
6164
6165 @example
6166 Input stream:
6167                 T     1 2 2 3 4
6168                 B     1 2 3 4 4   <-- matching reference
6169
6170 Matches:              c c n n c
6171
6172 Output stream:
6173                 T     1 2 3 4 4
6174                 B     1 2 3 4 4
6175 @end example
6176
6177 As a result of the field matching, we can see that some frames get duplicated.
6178 To perform a complete inverse telecine, you need to rely on a decimation filter
6179 after this operation. See for instance the @ref{decimate} filter.
6180
6181 The same operation now matching from top fields (@option{field}=@var{top})
6182 looks like this:
6183
6184 @example
6185 Input stream:
6186                 T     1 2 2 3 4   <-- matching reference
6187                 B     1 2 3 4 4
6188
6189 Matches:              c c p p c
6190
6191 Output stream:
6192                 T     1 2 2 3 4
6193                 B     1 2 2 3 4
6194 @end example
6195
6196 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
6197 basically, they refer to the frame and field of the opposite parity:
6198
6199 @itemize
6200 @item @var{p} matches the field of the opposite parity in the previous frame
6201 @item @var{c} matches the field of the opposite parity in the current frame
6202 @item @var{n} matches the field of the opposite parity in the next frame
6203 @end itemize
6204
6205 @subsubsection u/b
6206
6207 The @var{u} and @var{b} matching are a bit special in the sense that they match
6208 from the opposite parity flag. In the following examples, we assume that we are
6209 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
6210 'x' is placed above and below each matched fields.
6211
6212 With bottom matching (@option{field}=@var{bottom}):
6213 @example
6214 Match:           c         p           n          b          u
6215
6216                  x       x               x        x          x
6217   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6218   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6219                  x         x           x        x              x
6220
6221 Output frames:
6222                  2          1          2          2          2
6223                  2          2          2          1          3
6224 @end example
6225
6226 With top matching (@option{field}=@var{top}):
6227 @example
6228 Match:           c         p           n          b          u
6229
6230                  x         x           x        x              x
6231   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6232   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6233                  x       x               x        x          x
6234
6235 Output frames:
6236                  2          2          2          1          2
6237                  2          1          3          2          2
6238 @end example
6239
6240 @subsection Examples
6241
6242 Simple IVTC of a top field first telecined stream:
6243 @example
6244 fieldmatch=order=tff:combmatch=none, decimate
6245 @end example
6246
6247 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
6248 @example
6249 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
6250 @end example
6251
6252 @section fieldorder
6253
6254 Transform the field order of the input video.
6255
6256 It accepts the following parameters:
6257
6258 @table @option
6259
6260 @item order
6261 The output field order. Valid values are @var{tff} for top field first or @var{bff}
6262 for bottom field first.
6263 @end table
6264
6265 The default value is @samp{tff}.
6266
6267 The transformation is done by shifting the picture content up or down
6268 by one line, and filling the remaining line with appropriate picture content.
6269 This method is consistent with most broadcast field order converters.
6270
6271 If the input video is not flagged as being interlaced, or it is already
6272 flagged as being of the required output field order, then this filter does
6273 not alter the incoming video.
6274
6275 It is very useful when converting to or from PAL DV material,
6276 which is bottom field first.
6277
6278 For example:
6279 @example
6280 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
6281 @end example
6282
6283 @section fifo
6284
6285 Buffer input images and send them when they are requested.
6286
6287 It is mainly useful when auto-inserted by the libavfilter
6288 framework.
6289
6290 It does not take parameters.
6291
6292 @section find_rect
6293
6294 Find a rectangular object
6295
6296 It accepts the following options:
6297
6298 @table @option
6299 @item object
6300 Filepath of the object image, needs to be in gray8.
6301
6302 @item threshold
6303 Detection threshold, default is 0.5.
6304
6305 @item mipmaps
6306 Number of mipmaps, default is 3.
6307
6308 @item xmin, ymin, xmax, ymax
6309 Specifies the rectangle in which to search.
6310 @end table
6311
6312 @subsection Examples
6313
6314 @itemize
6315 @item
6316 Generate a representative palette of a given video using @command{ffmpeg}:
6317 @example
6318 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6319 @end example
6320 @end itemize
6321
6322 @section cover_rect
6323
6324 Cover a rectangular object
6325
6326 It accepts the following options:
6327
6328 @table @option
6329 @item cover
6330 Filepath of the optional cover image, needs to be in yuv420.
6331
6332 @item mode
6333 Set covering mode.
6334
6335 It accepts the following values:
6336 @table @samp
6337 @item cover
6338 cover it by the supplied image
6339 @item blur
6340 cover it by interpolating the surrounding pixels
6341 @end table
6342
6343 Default value is @var{blur}.
6344 @end table
6345
6346 @subsection Examples
6347
6348 @itemize
6349 @item
6350 Generate a representative palette of a given video using @command{ffmpeg}:
6351 @example
6352 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6353 @end example
6354 @end itemize
6355
6356 @anchor{format}
6357 @section format
6358
6359 Convert the input video to one of the specified pixel formats.
6360 Libavfilter will try to pick one that is suitable as input to
6361 the next filter.
6362
6363 It accepts the following parameters:
6364 @table @option
6365
6366 @item pix_fmts
6367 A '|'-separated list of pixel format names, such as
6368 "pix_fmts=yuv420p|monow|rgb24".
6369
6370 @end table
6371
6372 @subsection Examples
6373
6374 @itemize
6375 @item
6376 Convert the input video to the @var{yuv420p} format
6377 @example
6378 format=pix_fmts=yuv420p
6379 @end example
6380
6381 Convert the input video to any of the formats in the list
6382 @example
6383 format=pix_fmts=yuv420p|yuv444p|yuv410p
6384 @end example
6385 @end itemize
6386
6387 @anchor{fps}
6388 @section fps
6389
6390 Convert the video to specified constant frame rate by duplicating or dropping
6391 frames as necessary.
6392
6393 It accepts the following parameters:
6394 @table @option
6395
6396 @item fps
6397 The desired output frame rate. The default is @code{25}.
6398
6399 @item round
6400 Rounding method.
6401
6402 Possible values are:
6403 @table @option
6404 @item zero
6405 zero round towards 0
6406 @item inf
6407 round away from 0
6408 @item down
6409 round towards -infinity
6410 @item up
6411 round towards +infinity
6412 @item near
6413 round to nearest
6414 @end table
6415 The default is @code{near}.
6416
6417 @item start_time
6418 Assume the first PTS should be the given value, in seconds. This allows for
6419 padding/trimming at the start of stream. By default, no assumption is made
6420 about the first frame's expected PTS, so no padding or trimming is done.
6421 For example, this could be set to 0 to pad the beginning with duplicates of
6422 the first frame if a video stream starts after the audio stream or to trim any
6423 frames with a negative PTS.
6424
6425 @end table
6426
6427 Alternatively, the options can be specified as a flat string:
6428 @var{fps}[:@var{round}].
6429
6430 See also the @ref{setpts} filter.
6431
6432 @subsection Examples
6433
6434 @itemize
6435 @item
6436 A typical usage in order to set the fps to 25:
6437 @example
6438 fps=fps=25
6439 @end example
6440
6441 @item
6442 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
6443 @example
6444 fps=fps=film:round=near
6445 @end example
6446 @end itemize
6447
6448 @section framepack
6449
6450 Pack two different video streams into a stereoscopic video, setting proper
6451 metadata on supported codecs. The two views should have the same size and
6452 framerate and processing will stop when the shorter video ends. Please note
6453 that you may conveniently adjust view properties with the @ref{scale} and
6454 @ref{fps} filters.
6455
6456 It accepts the following parameters:
6457 @table @option
6458
6459 @item format
6460 The desired packing format. Supported values are:
6461
6462 @table @option
6463
6464 @item sbs
6465 The views are next to each other (default).
6466
6467 @item tab
6468 The views are on top of each other.
6469
6470 @item lines
6471 The views are packed by line.
6472
6473 @item columns
6474 The views are packed by column.
6475
6476 @item frameseq
6477 The views are temporally interleaved.
6478
6479 @end table
6480
6481 @end table
6482
6483 Some examples:
6484
6485 @example
6486 # Convert left and right views into a frame-sequential video
6487 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
6488
6489 # Convert views into a side-by-side video with the same output resolution as the input
6490 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
6491 @end example
6492
6493 @section framerate
6494
6495 Change the frame rate by interpolating new video output frames from the source
6496 frames.
6497
6498 This filter is not designed to function correctly with interlaced media. If
6499 you wish to change the frame rate of interlaced media then you are required
6500 to deinterlace before this filter and re-interlace after this filter.
6501
6502 A description of the accepted options follows.
6503
6504 @table @option
6505 @item fps
6506 Specify the output frames per second. This option can also be specified
6507 as a value alone. The default is @code{50}.
6508
6509 @item interp_start
6510 Specify the start of a range where the output frame will be created as a
6511 linear interpolation of two frames. The range is [@code{0}-@code{255}],
6512 the default is @code{15}.
6513
6514 @item interp_end
6515 Specify the end of a range where the output frame will be created as a
6516 linear interpolation of two frames. The range is [@code{0}-@code{255}],
6517 the default is @code{240}.
6518
6519 @item scene
6520 Specify the level at which a scene change is detected as a value between
6521 0 and 100 to indicate a new scene; a low value reflects a low
6522 probability for the current frame to introduce a new scene, while a higher
6523 value means the current frame is more likely to be one.
6524 The default is @code{7}.
6525
6526 @item flags
6527 Specify flags influencing the filter process.
6528
6529 Available value for @var{flags} is:
6530
6531 @table @option
6532 @item scene_change_detect, scd
6533 Enable scene change detection using the value of the option @var{scene}.
6534 This flag is enabled by default.
6535 @end table
6536 @end table
6537
6538 @section framestep
6539
6540 Select one frame every N-th frame.
6541
6542 This filter accepts the following option:
6543 @table @option
6544 @item step
6545 Select frame after every @code{step} frames.
6546 Allowed values are positive integers higher than 0. Default value is @code{1}.
6547 @end table
6548
6549 @anchor{frei0r}
6550 @section frei0r
6551
6552 Apply a frei0r effect to the input video.
6553
6554 To enable the compilation of this filter, you need to install the frei0r
6555 header and configure FFmpeg with @code{--enable-frei0r}.
6556
6557 It accepts the following parameters:
6558
6559 @table @option
6560
6561 @item filter_name
6562 The name of the frei0r effect to load. If the environment variable
6563 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
6564 directories specified by the colon-separated list in @env{FREIOR_PATH}.
6565 Otherwise, the standard frei0r paths are searched, in this order:
6566 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
6567 @file{/usr/lib/frei0r-1/}.
6568
6569 @item filter_params
6570 A '|'-separated list of parameters to pass to the frei0r effect.
6571
6572 @end table
6573
6574 A frei0r effect parameter can be a boolean (its value is either
6575 "y" or "n"), a double, a color (specified as
6576 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
6577 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
6578 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
6579 @var{X} and @var{Y} are floating point numbers) and/or a string.
6580
6581 The number and types of parameters depend on the loaded effect. If an
6582 effect parameter is not specified, the default value is set.
6583
6584 @subsection Examples
6585
6586 @itemize
6587 @item
6588 Apply the distort0r effect, setting the first two double parameters:
6589 @example
6590 frei0r=filter_name=distort0r:filter_params=0.5|0.01
6591 @end example
6592
6593 @item
6594 Apply the colordistance effect, taking a color as the first parameter:
6595 @example
6596 frei0r=colordistance:0.2/0.3/0.4
6597 frei0r=colordistance:violet
6598 frei0r=colordistance:0x112233
6599 @end example
6600
6601 @item
6602 Apply the perspective effect, specifying the top left and top right image
6603 positions:
6604 @example
6605 frei0r=perspective:0.2/0.2|0.8/0.2
6606 @end example
6607 @end itemize
6608
6609 For more information, see
6610 @url{http://frei0r.dyne.org}
6611
6612 @section fspp
6613
6614 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
6615
6616 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
6617 processing filter, one of them is performed once per block, not per pixel.
6618 This allows for much higher speed.
6619
6620 The filter accepts the following options:
6621
6622 @table @option
6623 @item quality
6624 Set quality. This option defines the number of levels for averaging. It accepts
6625 an integer in the range 4-5. Default value is @code{4}.
6626
6627 @item qp
6628 Force a constant quantization parameter. It accepts an integer in range 0-63.
6629 If not set, the filter will use the QP from the video stream (if available).
6630
6631 @item strength
6632 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
6633 more details but also more artifacts, while higher values make the image smoother
6634 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
6635
6636 @item use_bframe_qp
6637 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
6638 option may cause flicker since the B-Frames have often larger QP. Default is
6639 @code{0} (not enabled).
6640
6641 @end table
6642
6643 @section geq
6644
6645 The filter accepts the following options:
6646
6647 @table @option
6648 @item lum_expr, lum
6649 Set the luminance expression.
6650 @item cb_expr, cb
6651 Set the chrominance blue expression.
6652 @item cr_expr, cr
6653 Set the chrominance red expression.
6654 @item alpha_expr, a
6655 Set the alpha expression.
6656 @item red_expr, r
6657 Set the red expression.
6658 @item green_expr, g
6659 Set the green expression.
6660 @item blue_expr, b
6661 Set the blue expression.
6662 @end table
6663
6664 The colorspace is selected according to the specified options. If one
6665 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
6666 options is specified, the filter will automatically select a YCbCr
6667 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
6668 @option{blue_expr} options is specified, it will select an RGB
6669 colorspace.
6670
6671 If one of the chrominance expression is not defined, it falls back on the other
6672 one. If no alpha expression is specified it will evaluate to opaque value.
6673 If none of chrominance expressions are specified, they will evaluate
6674 to the luminance expression.
6675
6676 The expressions can use the following variables and functions:
6677
6678 @table @option
6679 @item N
6680 The sequential number of the filtered frame, starting from @code{0}.
6681
6682 @item X
6683 @item Y
6684 The coordinates of the current sample.
6685
6686 @item W
6687 @item H
6688 The width and height of the image.
6689
6690 @item SW
6691 @item SH
6692 Width and height scale depending on the currently filtered plane. It is the
6693 ratio between the corresponding luma plane number of pixels and the current
6694 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
6695 @code{0.5,0.5} for chroma planes.
6696
6697 @item T
6698 Time of the current frame, expressed in seconds.
6699
6700 @item p(x, y)
6701 Return the value of the pixel at location (@var{x},@var{y}) of the current
6702 plane.
6703
6704 @item lum(x, y)
6705 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
6706 plane.
6707
6708 @item cb(x, y)
6709 Return the value of the pixel at location (@var{x},@var{y}) of the
6710 blue-difference chroma plane. Return 0 if there is no such plane.
6711
6712 @item cr(x, y)
6713 Return the value of the pixel at location (@var{x},@var{y}) of the
6714 red-difference chroma plane. Return 0 if there is no such plane.
6715
6716 @item r(x, y)
6717 @item g(x, y)
6718 @item b(x, y)
6719 Return the value of the pixel at location (@var{x},@var{y}) of the
6720 red/green/blue component. Return 0 if there is no such component.
6721
6722 @item alpha(x, y)
6723 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
6724 plane. Return 0 if there is no such plane.
6725 @end table
6726
6727 For functions, if @var{x} and @var{y} are outside the area, the value will be
6728 automatically clipped to the closer edge.
6729
6730 @subsection Examples
6731
6732 @itemize
6733 @item
6734 Flip the image horizontally:
6735 @example
6736 geq=p(W-X\,Y)
6737 @end example
6738
6739 @item
6740 Generate a bidimensional sine wave, with angle @code{PI/3} and a
6741 wavelength of 100 pixels:
6742 @example
6743 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
6744 @end example
6745
6746 @item
6747 Generate a fancy enigmatic moving light:
6748 @example
6749 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
6750 @end example
6751
6752 @item
6753 Generate a quick emboss effect:
6754 @example
6755 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
6756 @end example
6757
6758 @item
6759 Modify RGB components depending on pixel position:
6760 @example
6761 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
6762 @end example
6763
6764 @item
6765 Create a radial gradient that is the same size as the input (also see
6766 the @ref{vignette} filter):
6767 @example
6768 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
6769 @end example
6770
6771 @item
6772 Create a linear gradient to use as a mask for another filter, then
6773 compose with @ref{overlay}. In this example the video will gradually
6774 become more blurry from the top to the bottom of the y-axis as defined
6775 by the linear gradient:
6776 @example
6777 ffmpeg -i input.mp4 -filter_complex "geq=lum=255*(Y/H),format=gray[grad];[0:v]boxblur=4[blur];[blur][grad]alphamerge[alpha];[0:v][alpha]overlay" output.mp4
6778 @end example
6779 @end itemize
6780
6781 @section gradfun
6782
6783 Fix the banding artifacts that are sometimes introduced into nearly flat
6784 regions by truncation to 8bit color depth.
6785 Interpolate the gradients that should go where the bands are, and
6786 dither them.
6787
6788 It is designed for playback only.  Do not use it prior to
6789 lossy compression, because compression tends to lose the dither and
6790 bring back the bands.
6791
6792 It accepts the following parameters:
6793
6794 @table @option
6795
6796 @item strength
6797 The maximum amount by which the filter will change any one pixel. This is also
6798 the threshold for detecting nearly flat regions. Acceptable values range from
6799 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
6800 valid range.
6801
6802 @item radius
6803 The neighborhood to fit the gradient to. A larger radius makes for smoother
6804 gradients, but also prevents the filter from modifying the pixels near detailed
6805 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
6806 values will be clipped to the valid range.
6807
6808 @end table
6809
6810 Alternatively, the options can be specified as a flat string:
6811 @var{strength}[:@var{radius}]
6812
6813 @subsection Examples
6814
6815 @itemize
6816 @item
6817 Apply the filter with a @code{3.5} strength and radius of @code{8}:
6818 @example
6819 gradfun=3.5:8
6820 @end example
6821
6822 @item
6823 Specify radius, omitting the strength (which will fall-back to the default
6824 value):
6825 @example
6826 gradfun=radius=8
6827 @end example
6828
6829 @end itemize
6830
6831 @anchor{haldclut}
6832 @section haldclut
6833
6834 Apply a Hald CLUT to a video stream.
6835
6836 First input is the video stream to process, and second one is the Hald CLUT.
6837 The Hald CLUT input can be a simple picture or a complete video stream.
6838
6839 The filter accepts the following options:
6840
6841 @table @option
6842 @item shortest
6843 Force termination when the shortest input terminates. Default is @code{0}.
6844 @item repeatlast
6845 Continue applying the last CLUT after the end of the stream. A value of
6846 @code{0} disable the filter after the last frame of the CLUT is reached.
6847 Default is @code{1}.
6848 @end table
6849
6850 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
6851 filters share the same internals).
6852
6853 More information about the Hald CLUT can be found on Eskil Steenberg's website
6854 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
6855
6856 @subsection Workflow examples
6857
6858 @subsubsection Hald CLUT video stream
6859
6860 Generate an identity Hald CLUT stream altered with various effects:
6861 @example
6862 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
6863 @end example
6864
6865 Note: make sure you use a lossless codec.
6866
6867 Then use it with @code{haldclut} to apply it on some random stream:
6868 @example
6869 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
6870 @end example
6871
6872 The Hald CLUT will be applied to the 10 first seconds (duration of
6873 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
6874 to the remaining frames of the @code{mandelbrot} stream.
6875
6876 @subsubsection Hald CLUT with preview
6877
6878 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
6879 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
6880 biggest possible square starting at the top left of the picture. The remaining
6881 padding pixels (bottom or right) will be ignored. This area can be used to add
6882 a preview of the Hald CLUT.
6883
6884 Typically, the following generated Hald CLUT will be supported by the
6885 @code{haldclut} filter:
6886
6887 @example
6888 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
6889    pad=iw+320 [padded_clut];
6890    smptebars=s=320x256, split [a][b];
6891    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
6892    [main][b] overlay=W-320" -frames:v 1 clut.png
6893 @end example
6894
6895 It contains the original and a preview of the effect of the CLUT: SMPTE color
6896 bars are displayed on the right-top, and below the same color bars processed by
6897 the color changes.
6898
6899 Then, the effect of this Hald CLUT can be visualized with:
6900 @example
6901 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
6902 @end example
6903
6904 @section hflip
6905
6906 Flip the input video horizontally.
6907
6908 For example, to horizontally flip the input video with @command{ffmpeg}:
6909 @example
6910 ffmpeg -i in.avi -vf "hflip" out.avi
6911 @end example
6912
6913 @section histeq
6914 This filter applies a global color histogram equalization on a
6915 per-frame basis.
6916
6917 It can be used to correct video that has a compressed range of pixel
6918 intensities.  The filter redistributes the pixel intensities to
6919 equalize their distribution across the intensity range. It may be
6920 viewed as an "automatically adjusting contrast filter". This filter is
6921 useful only for correcting degraded or poorly captured source
6922 video.
6923
6924 The filter accepts the following options:
6925
6926 @table @option
6927 @item strength
6928 Determine the amount of equalization to be applied.  As the strength
6929 is reduced, the distribution of pixel intensities more-and-more
6930 approaches that of the input frame. The value must be a float number
6931 in the range [0,1] and defaults to 0.200.
6932
6933 @item intensity
6934 Set the maximum intensity that can generated and scale the output
6935 values appropriately.  The strength should be set as desired and then
6936 the intensity can be limited if needed to avoid washing-out. The value
6937 must be a float number in the range [0,1] and defaults to 0.210.
6938
6939 @item antibanding
6940 Set the antibanding level. If enabled the filter will randomly vary
6941 the luminance of output pixels by a small amount to avoid banding of
6942 the histogram. Possible values are @code{none}, @code{weak} or
6943 @code{strong}. It defaults to @code{none}.
6944 @end table
6945
6946 @section histogram
6947
6948 Compute and draw a color distribution histogram for the input video.
6949
6950 The computed histogram is a representation of the color component
6951 distribution in an image.
6952
6953 The filter accepts the following options:
6954
6955 @table @option
6956 @item mode
6957 Set histogram mode.
6958
6959 It accepts the following values:
6960 @table @samp
6961 @item levels
6962 Standard histogram that displays the color components distribution in an
6963 image. Displays color graph for each color component. Shows distribution of
6964 the Y, U, V, A or R, G, B components, depending on input format, in the
6965 current frame. Below each graph a color component scale meter is shown.
6966
6967 @item color
6968 Displays chroma values (U/V color placement) in a two dimensional
6969 graph (which is called a vectorscope). The brighter a pixel in the
6970 vectorscope, the more pixels of the input frame correspond to that pixel
6971 (i.e., more pixels have this chroma value). The V component is displayed on
6972 the horizontal (X) axis, with the leftmost side being V = 0 and the rightmost
6973 side being V = 255. The U component is displayed on the vertical (Y) axis,
6974 with the top representing U = 0 and the bottom representing U = 255.
6975
6976 The position of a white pixel in the graph corresponds to the chroma value of
6977 a pixel of the input clip. The graph can therefore be used to read the hue
6978 (color flavor) and the saturation (the dominance of the hue in the color). As
6979 the hue of a color changes, it moves around the square. At the center of the
6980 square the saturation is zero, which means that the corresponding pixel has no
6981 color. If the amount of a specific color is increased (while leaving the other
6982 colors unchanged) the saturation increases, and the indicator moves towards
6983 the edge of the square.
6984
6985 @item color2
6986 Chroma values in vectorscope, similar as @code{color} but actual chroma values
6987 are displayed.
6988
6989 @item waveform
6990 Per row/column color component graph. In row mode, the graph on the left side
6991 represents color component value 0 and the right side represents value = 255.
6992 In column mode, the top side represents color component value = 0 and bottom
6993 side represents value = 255.
6994 @end table
6995 Default value is @code{levels}.
6996
6997 @item level_height
6998 Set height of level in @code{levels}. Default value is @code{200}.
6999 Allowed range is [50, 2048].
7000
7001 @item scale_height
7002 Set height of color scale in @code{levels}. Default value is @code{12}.
7003 Allowed range is [0, 40].
7004
7005 @item step
7006 Set step for @code{waveform} mode. Smaller values are useful to find out how
7007 many values of the same luminance are distributed across input rows/columns.
7008 Default value is @code{10}. Allowed range is [1, 255].
7009
7010 @item waveform_mode
7011 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
7012 Default is @code{row}.
7013
7014 @item waveform_mirror
7015 Set mirroring mode for @code{waveform}. @code{0} means unmirrored, @code{1}
7016 means mirrored. In mirrored mode, higher values will be represented on the left
7017 side for @code{row} mode and at the top for @code{column} mode. Default is
7018 @code{0} (unmirrored).
7019
7020 @item display_mode
7021 Set display mode for @code{waveform} and @code{levels}.
7022 It accepts the following values:
7023 @table @samp
7024 @item parade
7025 Display separate graph for the color components side by side in
7026 @code{row} waveform mode or one below the other in @code{column} waveform mode
7027 for @code{waveform} histogram mode. For @code{levels} histogram mode,
7028 per color component graphs are placed below each other.
7029
7030 Using this display mode in @code{waveform} histogram mode makes it easy to
7031 spot color casts in the highlights and shadows of an image, by comparing the
7032 contours of the top and the bottom graphs of each waveform. Since whites,
7033 grays, and blacks are characterized by exactly equal amounts of red, green,
7034 and blue, neutral areas of the picture should display three waveforms of
7035 roughly equal width/height. If not, the correction is easy to perform by
7036 making level adjustments the three waveforms.
7037
7038 @item overlay
7039 Presents information identical to that in the @code{parade}, except
7040 that the graphs representing color components are superimposed directly
7041 over one another.
7042
7043 This display mode in @code{waveform} histogram mode makes it easier to spot
7044 relative differences or similarities in overlapping areas of the color
7045 components that are supposed to be identical, such as neutral whites, grays,
7046 or blacks.
7047 @end table
7048 Default is @code{parade}.
7049
7050 @item levels_mode
7051 Set mode for @code{levels}. Can be either @code{linear}, or @code{logarithmic}.
7052 Default is @code{linear}.
7053
7054 @item components
7055 Set what color components to display for mode @code{levels}.
7056 Default is @code{7}.
7057 @end table
7058
7059 @subsection Examples
7060
7061 @itemize
7062
7063 @item
7064 Calculate and draw histogram:
7065 @example
7066 ffplay -i input -vf histogram
7067 @end example
7068
7069 @end itemize
7070
7071 @anchor{hqdn3d}
7072 @section hqdn3d
7073
7074 This is a high precision/quality 3d denoise filter. It aims to reduce
7075 image noise, producing smooth images and making still images really
7076 still. It should enhance compressibility.
7077
7078 It accepts the following optional parameters:
7079
7080 @table @option
7081 @item luma_spatial
7082 A non-negative floating point number which specifies spatial luma strength.
7083 It defaults to 4.0.
7084
7085 @item chroma_spatial
7086 A non-negative floating point number which specifies spatial chroma strength.
7087 It defaults to 3.0*@var{luma_spatial}/4.0.
7088
7089 @item luma_tmp
7090 A floating point number which specifies luma temporal strength. It defaults to
7091 6.0*@var{luma_spatial}/4.0.
7092
7093 @item chroma_tmp
7094 A floating point number which specifies chroma temporal strength. It defaults to
7095 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
7096 @end table
7097
7098 @section hqx
7099
7100 Apply a high-quality magnification filter designed for pixel art. This filter
7101 was originally created by Maxim Stepin.
7102
7103 It accepts the following option:
7104
7105 @table @option
7106 @item n
7107 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
7108 @code{hq3x} and @code{4} for @code{hq4x}.
7109 Default is @code{3}.
7110 @end table
7111
7112 @section hstack
7113 Stack input videos horizontally.
7114
7115 All streams must be of same pixel format and of same height.
7116
7117 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
7118 to create same output.
7119
7120 The filter accept the following option:
7121
7122 @table @option
7123 @item nb_inputs
7124 Set number of input streams. Default is 2.
7125 @end table
7126
7127 @section hue
7128
7129 Modify the hue and/or the saturation of the input.
7130
7131 It accepts the following parameters:
7132
7133 @table @option
7134 @item h
7135 Specify the hue angle as a number of degrees. It accepts an expression,
7136 and defaults to "0".
7137
7138 @item s
7139 Specify the saturation in the [-10,10] range. It accepts an expression and
7140 defaults to "1".
7141
7142 @item H
7143 Specify the hue angle as a number of radians. It accepts an
7144 expression, and defaults to "0".
7145
7146 @item b
7147 Specify the brightness in the [-10,10] range. It accepts an expression and
7148 defaults to "0".
7149 @end table
7150
7151 @option{h} and @option{H} are mutually exclusive, and can't be
7152 specified at the same time.
7153
7154 The @option{b}, @option{h}, @option{H} and @option{s} option values are
7155 expressions containing the following constants:
7156
7157 @table @option
7158 @item n
7159 frame count of the input frame starting from 0
7160
7161 @item pts
7162 presentation timestamp of the input frame expressed in time base units
7163
7164 @item r
7165 frame rate of the input video, NAN if the input frame rate is unknown
7166
7167 @item t
7168 timestamp expressed in seconds, NAN if the input timestamp is unknown
7169
7170 @item tb
7171 time base of the input video
7172 @end table
7173
7174 @subsection Examples
7175
7176 @itemize
7177 @item
7178 Set the hue to 90 degrees and the saturation to 1.0:
7179 @example
7180 hue=h=90:s=1
7181 @end example
7182
7183 @item
7184 Same command but expressing the hue in radians:
7185 @example
7186 hue=H=PI/2:s=1
7187 @end example
7188
7189 @item
7190 Rotate hue and make the saturation swing between 0
7191 and 2 over a period of 1 second:
7192 @example
7193 hue="H=2*PI*t: s=sin(2*PI*t)+1"
7194 @end example
7195
7196 @item
7197 Apply a 3 seconds saturation fade-in effect starting at 0:
7198 @example
7199 hue="s=min(t/3\,1)"
7200 @end example
7201
7202 The general fade-in expression can be written as:
7203 @example
7204 hue="s=min(0\, max((t-START)/DURATION\, 1))"
7205 @end example
7206
7207 @item
7208 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
7209 @example
7210 hue="s=max(0\, min(1\, (8-t)/3))"
7211 @end example
7212
7213 The general fade-out expression can be written as:
7214 @example
7215 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
7216 @end example
7217
7218 @end itemize
7219
7220 @subsection Commands
7221
7222 This filter supports the following commands:
7223 @table @option
7224 @item b
7225 @item s
7226 @item h
7227 @item H
7228 Modify the hue and/or the saturation and/or brightness of the input video.
7229 The command accepts the same syntax of the corresponding option.
7230
7231 If the specified expression is not valid, it is kept at its current
7232 value.
7233 @end table
7234
7235 @section idet
7236
7237 Detect video interlacing type.
7238
7239 This filter tries to detect if the input frames as interlaced, progressive,
7240 top or bottom field first. It will also try and detect fields that are
7241 repeated between adjacent frames (a sign of telecine).
7242
7243 Single frame detection considers only immediately adjacent frames when classifying each frame.
7244 Multiple frame detection incorporates the classification history of previous frames.
7245
7246 The filter will log these metadata values:
7247
7248 @table @option
7249 @item single.current_frame
7250 Detected type of current frame using single-frame detection. One of:
7251 ``tff'' (top field first), ``bff'' (bottom field first),
7252 ``progressive'', or ``undetermined''
7253
7254 @item single.tff
7255 Cumulative number of frames detected as top field first using single-frame detection.
7256
7257 @item multiple.tff
7258 Cumulative number of frames detected as top field first using multiple-frame detection.
7259
7260 @item single.bff
7261 Cumulative number of frames detected as bottom field first using single-frame detection.
7262
7263 @item multiple.current_frame
7264 Detected type of current frame using multiple-frame detection. One of:
7265 ``tff'' (top field first), ``bff'' (bottom field first),
7266 ``progressive'', or ``undetermined''
7267
7268 @item multiple.bff
7269 Cumulative number of frames detected as bottom field first using multiple-frame detection.
7270
7271 @item single.progressive
7272 Cumulative number of frames detected as progressive using single-frame detection.
7273
7274 @item multiple.progressive
7275 Cumulative number of frames detected as progressive using multiple-frame detection.
7276
7277 @item single.undetermined
7278 Cumulative number of frames that could not be classified using single-frame detection.
7279
7280 @item multiple.undetermined
7281 Cumulative number of frames that could not be classified using multiple-frame detection.
7282
7283 @item repeated.current_frame
7284 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
7285
7286 @item repeated.neither
7287 Cumulative number of frames with no repeated field.
7288
7289 @item repeated.top
7290 Cumulative number of frames with the top field repeated from the previous frame's top field.
7291
7292 @item repeated.bottom
7293 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
7294 @end table
7295
7296 The filter accepts the following options:
7297
7298 @table @option
7299 @item intl_thres
7300 Set interlacing threshold.
7301 @item prog_thres
7302 Set progressive threshold.
7303 @item repeat_thres
7304 Threshold for repeated field detection.
7305 @item half_life
7306 Number of frames after which a given frame's contribution to the
7307 statistics is halved (i.e., it contributes only 0.5 to it's
7308 classification). The default of 0 means that all frames seen are given
7309 full weight of 1.0 forever.
7310 @item analyze_interlaced_flag
7311 When this is not 0 then idet will use the specified number of frames to determine
7312 if the interlaced flag is accurate, it will not count undetermined frames.
7313 If the flag is found to be accurate it will be used without any further
7314 computations, if it is found to be inaccurate it will be cleared without any
7315 further computations. This allows inserting the idet filter as a low computational
7316 method to clean up the interlaced flag
7317 @end table
7318
7319 @section il
7320
7321 Deinterleave or interleave fields.
7322
7323 This filter allows one to process interlaced images fields without
7324 deinterlacing them. Deinterleaving splits the input frame into 2
7325 fields (so called half pictures). Odd lines are moved to the top
7326 half of the output image, even lines to the bottom half.
7327 You can process (filter) them independently and then re-interleave them.
7328
7329 The filter accepts the following options:
7330
7331 @table @option
7332 @item luma_mode, l
7333 @item chroma_mode, c
7334 @item alpha_mode, a
7335 Available values for @var{luma_mode}, @var{chroma_mode} and
7336 @var{alpha_mode} are:
7337
7338 @table @samp
7339 @item none
7340 Do nothing.
7341
7342 @item deinterleave, d
7343 Deinterleave fields, placing one above the other.
7344
7345 @item interleave, i
7346 Interleave fields. Reverse the effect of deinterleaving.
7347 @end table
7348 Default value is @code{none}.
7349
7350 @item luma_swap, ls
7351 @item chroma_swap, cs
7352 @item alpha_swap, as
7353 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
7354 @end table
7355
7356 @section inflate
7357
7358 Apply inflate effect to the video.
7359
7360 This filter replaces the pixel by the local(3x3) average by taking into account
7361 only values higher than the pixel.
7362
7363 It accepts the following options:
7364
7365 @table @option
7366 @item threshold0
7367 @item threshold1
7368 @item threshold2
7369 @item threshold3
7370 Allows to limit the maximum change for each plane, default is 65535.
7371 If 0, plane will remain unchanged.
7372 @end table
7373
7374 @section interlace
7375
7376 Simple interlacing filter from progressive contents. This interleaves upper (or
7377 lower) lines from odd frames with lower (or upper) lines from even frames,
7378 halving the frame rate and preserving image height.
7379
7380 @example
7381    Original        Original             New Frame
7382    Frame 'j'      Frame 'j+1'             (tff)
7383   ==========      ===========       ==================
7384     Line 0  -------------------->    Frame 'j' Line 0
7385     Line 1          Line 1  ---->   Frame 'j+1' Line 1
7386     Line 2 --------------------->    Frame 'j' Line 2
7387     Line 3          Line 3  ---->   Frame 'j+1' Line 3
7388      ...             ...                   ...
7389 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
7390 @end example
7391
7392 It accepts the following optional parameters:
7393
7394 @table @option
7395 @item scan
7396 This determines whether the interlaced frame is taken from the even
7397 (tff - default) or odd (bff) lines of the progressive frame.
7398
7399 @item lowpass
7400 Enable (default) or disable the vertical lowpass filter to avoid twitter
7401 interlacing and reduce moire patterns.
7402 @end table
7403
7404 @section kerndeint
7405
7406 Deinterlace input video by applying Donald Graft's adaptive kernel
7407 deinterling. Work on interlaced parts of a video to produce
7408 progressive frames.
7409
7410 The description of the accepted parameters follows.
7411
7412 @table @option
7413 @item thresh
7414 Set the threshold which affects the filter's tolerance when
7415 determining if a pixel line must be processed. It must be an integer
7416 in the range [0,255] and defaults to 10. A value of 0 will result in
7417 applying the process on every pixels.
7418
7419 @item map
7420 Paint pixels exceeding the threshold value to white if set to 1.
7421 Default is 0.
7422
7423 @item order
7424 Set the fields order. Swap fields if set to 1, leave fields alone if
7425 0. Default is 0.
7426
7427 @item sharp
7428 Enable additional sharpening if set to 1. Default is 0.
7429
7430 @item twoway
7431 Enable twoway sharpening if set to 1. Default is 0.
7432 @end table
7433
7434 @subsection Examples
7435
7436 @itemize
7437 @item
7438 Apply default values:
7439 @example
7440 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
7441 @end example
7442
7443 @item
7444 Enable additional sharpening:
7445 @example
7446 kerndeint=sharp=1
7447 @end example
7448
7449 @item
7450 Paint processed pixels in white:
7451 @example
7452 kerndeint=map=1
7453 @end example
7454 @end itemize
7455
7456 @section lenscorrection
7457
7458 Correct radial lens distortion
7459
7460 This filter can be used to correct for radial distortion as can result from the use
7461 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
7462 one can use tools available for example as part of opencv or simply trial-and-error.
7463 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
7464 and extract the k1 and k2 coefficients from the resulting matrix.
7465
7466 Note that effectively the same filter is available in the open-source tools Krita and
7467 Digikam from the KDE project.
7468
7469 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
7470 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
7471 brightness distribution, so you may want to use both filters together in certain
7472 cases, though you will have to take care of ordering, i.e. whether vignetting should
7473 be applied before or after lens correction.
7474
7475 @subsection Options
7476
7477 The filter accepts the following options:
7478
7479 @table @option
7480 @item cx
7481 Relative x-coordinate of the focal point of the image, and thereby the center of the
7482 distortion. This value has a range [0,1] and is expressed as fractions of the image
7483 width.
7484 @item cy
7485 Relative y-coordinate of the focal point of the image, and thereby the center of the
7486 distortion. This value has a range [0,1] and is expressed as fractions of the image
7487 height.
7488 @item k1
7489 Coefficient of the quadratic correction term. 0.5 means no correction.
7490 @item k2
7491 Coefficient of the double quadratic correction term. 0.5 means no correction.
7492 @end table
7493
7494 The formula that generates the correction is:
7495
7496 @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)
7497
7498 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
7499 distances from the focal point in the source and target images, respectively.
7500
7501 @anchor{lut3d}
7502 @section lut3d
7503
7504 Apply a 3D LUT to an input video.
7505
7506 The filter accepts the following options:
7507
7508 @table @option
7509 @item file
7510 Set the 3D LUT file name.
7511
7512 Currently supported formats:
7513 @table @samp
7514 @item 3dl
7515 AfterEffects
7516 @item cube
7517 Iridas
7518 @item dat
7519 DaVinci
7520 @item m3d
7521 Pandora
7522 @end table
7523 @item interp
7524 Select interpolation mode.
7525
7526 Available values are:
7527
7528 @table @samp
7529 @item nearest
7530 Use values from the nearest defined point.
7531 @item trilinear
7532 Interpolate values using the 8 points defining a cube.
7533 @item tetrahedral
7534 Interpolate values using a tetrahedron.
7535 @end table
7536 @end table
7537
7538 @section lut, lutrgb, lutyuv
7539
7540 Compute a look-up table for binding each pixel component input value
7541 to an output value, and apply it to the input video.
7542
7543 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
7544 to an RGB input video.
7545
7546 These filters accept the following parameters:
7547 @table @option
7548 @item c0
7549 set first pixel component expression
7550 @item c1
7551 set second pixel component expression
7552 @item c2
7553 set third pixel component expression
7554 @item c3
7555 set fourth pixel component expression, corresponds to the alpha component
7556
7557 @item r
7558 set red component expression
7559 @item g
7560 set green component expression
7561 @item b
7562 set blue component expression
7563 @item a
7564 alpha component expression
7565
7566 @item y
7567 set Y/luminance component expression
7568 @item u
7569 set U/Cb component expression
7570 @item v
7571 set V/Cr component expression
7572 @end table
7573
7574 Each of them specifies the expression to use for computing the lookup table for
7575 the corresponding pixel component values.
7576
7577 The exact component associated to each of the @var{c*} options depends on the
7578 format in input.
7579
7580 The @var{lut} filter requires either YUV or RGB pixel formats in input,
7581 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
7582
7583 The expressions can contain the following constants and functions:
7584
7585 @table @option
7586 @item w
7587 @item h
7588 The input width and height.
7589
7590 @item val
7591 The input value for the pixel component.
7592
7593 @item clipval
7594 The input value, clipped to the @var{minval}-@var{maxval} range.
7595
7596 @item maxval
7597 The maximum value for the pixel component.
7598
7599 @item minval
7600 The minimum value for the pixel component.
7601
7602 @item negval
7603 The negated value for the pixel component value, clipped to the
7604 @var{minval}-@var{maxval} range; it corresponds to the expression
7605 "maxval-clipval+minval".
7606
7607 @item clip(val)
7608 The computed value in @var{val}, clipped to the
7609 @var{minval}-@var{maxval} range.
7610
7611 @item gammaval(gamma)
7612 The computed gamma correction value of the pixel component value,
7613 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
7614 expression
7615 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
7616
7617 @end table
7618
7619 All expressions default to "val".
7620
7621 @subsection Examples
7622
7623 @itemize
7624 @item
7625 Negate input video:
7626 @example
7627 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
7628 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
7629 @end example
7630
7631 The above is the same as:
7632 @example
7633 lutrgb="r=negval:g=negval:b=negval"
7634 lutyuv="y=negval:u=negval:v=negval"
7635 @end example
7636
7637 @item
7638 Negate luminance:
7639 @example
7640 lutyuv=y=negval
7641 @end example
7642
7643 @item
7644 Remove chroma components, turning the video into a graytone image:
7645 @example
7646 lutyuv="u=128:v=128"
7647 @end example
7648
7649 @item
7650 Apply a luma burning effect:
7651 @example
7652 lutyuv="y=2*val"
7653 @end example
7654
7655 @item
7656 Remove green and blue components:
7657 @example
7658 lutrgb="g=0:b=0"
7659 @end example
7660
7661 @item
7662 Set a constant alpha channel value on input:
7663 @example
7664 format=rgba,lutrgb=a="maxval-minval/2"
7665 @end example
7666
7667 @item
7668 Correct luminance gamma by a factor of 0.5:
7669 @example
7670 lutyuv=y=gammaval(0.5)
7671 @end example
7672
7673 @item
7674 Discard least significant bits of luma:
7675 @example
7676 lutyuv=y='bitand(val, 128+64+32)'
7677 @end example
7678 @end itemize
7679
7680 @section maskedmerge
7681
7682 Merge the first input stream with the second input stream using per pixel
7683 weights in the third input stream.
7684
7685 A value of 0 in the third stream pixel component means that pixel component
7686 from first stream is returned unchanged, while maximum value (eg. 255 for
7687 8-bit videos) means that pixel component from second stream is returned
7688 unchanged. Intermediate values define the amount of merging between both
7689 input stream's pixel components.
7690
7691 This filter accepts the following options:
7692 @table @option
7693 @item planes
7694 Set which planes will be processed as bitmap, unprocessed planes will be
7695 copied from first stream.
7696 By default value 0xf, all planes will be processed.
7697 @end table
7698
7699 @section mcdeint
7700
7701 Apply motion-compensation deinterlacing.
7702
7703 It needs one field per frame as input and must thus be used together
7704 with yadif=1/3 or equivalent.
7705
7706 This filter accepts the following options:
7707 @table @option
7708 @item mode
7709 Set the deinterlacing mode.
7710
7711 It accepts one of the following values:
7712 @table @samp
7713 @item fast
7714 @item medium
7715 @item slow
7716 use iterative motion estimation
7717 @item extra_slow
7718 like @samp{slow}, but use multiple reference frames.
7719 @end table
7720 Default value is @samp{fast}.
7721
7722 @item parity
7723 Set the picture field parity assumed for the input video. It must be
7724 one of the following values:
7725
7726 @table @samp
7727 @item 0, tff
7728 assume top field first
7729 @item 1, bff
7730 assume bottom field first
7731 @end table
7732
7733 Default value is @samp{bff}.
7734
7735 @item qp
7736 Set per-block quantization parameter (QP) used by the internal
7737 encoder.
7738
7739 Higher values should result in a smoother motion vector field but less
7740 optimal individual vectors. Default value is 1.
7741 @end table
7742
7743 @section mergeplanes
7744
7745 Merge color channel components from several video streams.
7746
7747 The filter accepts up to 4 input streams, and merge selected input
7748 planes to the output video.
7749
7750 This filter accepts the following options:
7751 @table @option
7752 @item mapping
7753 Set input to output plane mapping. Default is @code{0}.
7754
7755 The mappings is specified as a bitmap. It should be specified as a
7756 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
7757 mapping for the first plane of the output stream. 'A' sets the number of
7758 the input stream to use (from 0 to 3), and 'a' the plane number of the
7759 corresponding input to use (from 0 to 3). The rest of the mappings is
7760 similar, 'Bb' describes the mapping for the output stream second
7761 plane, 'Cc' describes the mapping for the output stream third plane and
7762 'Dd' describes the mapping for the output stream fourth plane.
7763
7764 @item format
7765 Set output pixel format. Default is @code{yuva444p}.
7766 @end table
7767
7768 @subsection Examples
7769
7770 @itemize
7771 @item
7772 Merge three gray video streams of same width and height into single video stream:
7773 @example
7774 [a0][a1][a2]mergeplanes=0x001020:yuv444p
7775 @end example
7776
7777 @item
7778 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
7779 @example
7780 [a0][a1]mergeplanes=0x00010210:yuva444p
7781 @end example
7782
7783 @item
7784 Swap Y and A plane in yuva444p stream:
7785 @example
7786 format=yuva444p,mergeplanes=0x03010200:yuva444p
7787 @end example
7788
7789 @item
7790 Swap U and V plane in yuv420p stream:
7791 @example
7792 format=yuv420p,mergeplanes=0x000201:yuv420p
7793 @end example
7794
7795 @item
7796 Cast a rgb24 clip to yuv444p:
7797 @example
7798 format=rgb24,mergeplanes=0x000102:yuv444p
7799 @end example
7800 @end itemize
7801
7802 @section mpdecimate
7803
7804 Drop frames that do not differ greatly from the previous frame in
7805 order to reduce frame rate.
7806
7807 The main use of this filter is for very-low-bitrate encoding
7808 (e.g. streaming over dialup modem), but it could in theory be used for
7809 fixing movies that were inverse-telecined incorrectly.
7810
7811 A description of the accepted options follows.
7812
7813 @table @option
7814 @item max
7815 Set the maximum number of consecutive frames which can be dropped (if
7816 positive), or the minimum interval between dropped frames (if
7817 negative). If the value is 0, the frame is dropped unregarding the
7818 number of previous sequentially dropped frames.
7819
7820 Default value is 0.
7821
7822 @item hi
7823 @item lo
7824 @item frac
7825 Set the dropping threshold values.
7826
7827 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
7828 represent actual pixel value differences, so a threshold of 64
7829 corresponds to 1 unit of difference for each pixel, or the same spread
7830 out differently over the block.
7831
7832 A frame is a candidate for dropping if no 8x8 blocks differ by more
7833 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
7834 meaning the whole image) differ by more than a threshold of @option{lo}.
7835
7836 Default value for @option{hi} is 64*12, default value for @option{lo} is
7837 64*5, and default value for @option{frac} is 0.33.
7838 @end table
7839
7840
7841 @section negate
7842
7843 Negate input video.
7844
7845 It accepts an integer in input; if non-zero it negates the
7846 alpha component (if available). The default value in input is 0.
7847
7848 @section noformat
7849
7850 Force libavfilter not to use any of the specified pixel formats for the
7851 input to the next filter.
7852
7853 It accepts the following parameters:
7854 @table @option
7855
7856 @item pix_fmts
7857 A '|'-separated list of pixel format names, such as
7858 apix_fmts=yuv420p|monow|rgb24".
7859
7860 @end table
7861
7862 @subsection Examples
7863
7864 @itemize
7865 @item
7866 Force libavfilter to use a format different from @var{yuv420p} for the
7867 input to the vflip filter:
7868 @example
7869 noformat=pix_fmts=yuv420p,vflip
7870 @end example
7871
7872 @item
7873 Convert the input video to any of the formats not contained in the list:
7874 @example
7875 noformat=yuv420p|yuv444p|yuv410p
7876 @end example
7877 @end itemize
7878
7879 @section noise
7880
7881 Add noise on video input frame.
7882
7883 The filter accepts the following options:
7884
7885 @table @option
7886 @item all_seed
7887 @item c0_seed
7888 @item c1_seed
7889 @item c2_seed
7890 @item c3_seed
7891 Set noise seed for specific pixel component or all pixel components in case
7892 of @var{all_seed}. Default value is @code{123457}.
7893
7894 @item all_strength, alls
7895 @item c0_strength, c0s
7896 @item c1_strength, c1s
7897 @item c2_strength, c2s
7898 @item c3_strength, c3s
7899 Set noise strength for specific pixel component or all pixel components in case
7900 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
7901
7902 @item all_flags, allf
7903 @item c0_flags, c0f
7904 @item c1_flags, c1f
7905 @item c2_flags, c2f
7906 @item c3_flags, c3f
7907 Set pixel component flags or set flags for all components if @var{all_flags}.
7908 Available values for component flags are:
7909 @table @samp
7910 @item a
7911 averaged temporal noise (smoother)
7912 @item p
7913 mix random noise with a (semi)regular pattern
7914 @item t
7915 temporal noise (noise pattern changes between frames)
7916 @item u
7917 uniform noise (gaussian otherwise)
7918 @end table
7919 @end table
7920
7921 @subsection Examples
7922
7923 Add temporal and uniform noise to input video:
7924 @example
7925 noise=alls=20:allf=t+u
7926 @end example
7927
7928 @section null
7929
7930 Pass the video source unchanged to the output.
7931
7932 @section ocr
7933 Optical Character Recognition
7934
7935 This filter uses Tesseract for optical character recognition.
7936
7937 It accepts the following options:
7938
7939 @table @option
7940 @item datapath
7941 Set datapath to tesseract data. Default is to use whatever was
7942 set at installation.
7943
7944 @item language
7945 Set language, default is "eng".
7946
7947 @item whitelist
7948 Set character whitelist.
7949
7950 @item blacklist
7951 Set character blacklist.
7952 @end table
7953
7954 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
7955
7956 @section ocv
7957
7958 Apply a video transform using libopencv.
7959
7960 To enable this filter, install the libopencv library and headers and
7961 configure FFmpeg with @code{--enable-libopencv}.
7962
7963 It accepts the following parameters:
7964
7965 @table @option
7966
7967 @item filter_name
7968 The name of the libopencv filter to apply.
7969
7970 @item filter_params
7971 The parameters to pass to the libopencv filter. If not specified, the default
7972 values are assumed.
7973
7974 @end table
7975
7976 Refer to the official libopencv documentation for more precise
7977 information:
7978 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
7979
7980 Several libopencv filters are supported; see the following subsections.
7981
7982 @anchor{dilate}
7983 @subsection dilate
7984
7985 Dilate an image by using a specific structuring element.
7986 It corresponds to the libopencv function @code{cvDilate}.
7987
7988 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
7989
7990 @var{struct_el} represents a structuring element, and has the syntax:
7991 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
7992
7993 @var{cols} and @var{rows} represent the number of columns and rows of
7994 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
7995 point, and @var{shape} the shape for the structuring element. @var{shape}
7996 must be "rect", "cross", "ellipse", or "custom".
7997
7998 If the value for @var{shape} is "custom", it must be followed by a
7999 string of the form "=@var{filename}". The file with name
8000 @var{filename} is assumed to represent a binary image, with each
8001 printable character corresponding to a bright pixel. When a custom
8002 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
8003 or columns and rows of the read file are assumed instead.
8004
8005 The default value for @var{struct_el} is "3x3+0x0/rect".
8006
8007 @var{nb_iterations} specifies the number of times the transform is
8008 applied to the image, and defaults to 1.
8009
8010 Some examples:
8011 @example
8012 # Use the default values
8013 ocv=dilate
8014
8015 # Dilate using a structuring element with a 5x5 cross, iterating two times
8016 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
8017
8018 # Read the shape from the file diamond.shape, iterating two times.
8019 # The file diamond.shape may contain a pattern of characters like this
8020 #   *
8021 #  ***
8022 # *****
8023 #  ***
8024 #   *
8025 # The specified columns and rows are ignored
8026 # but the anchor point coordinates are not
8027 ocv=dilate:0x0+2x2/custom=diamond.shape|2
8028 @end example
8029
8030 @subsection erode
8031
8032 Erode an image by using a specific structuring element.
8033 It corresponds to the libopencv function @code{cvErode}.
8034
8035 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
8036 with the same syntax and semantics as the @ref{dilate} filter.
8037
8038 @subsection smooth
8039
8040 Smooth the input video.
8041
8042 The filter takes the following parameters:
8043 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
8044
8045 @var{type} is the type of smooth filter to apply, and must be one of
8046 the following values: "blur", "blur_no_scale", "median", "gaussian",
8047 or "bilateral". The default value is "gaussian".
8048
8049 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
8050 depend on the smooth type. @var{param1} and
8051 @var{param2} accept integer positive values or 0. @var{param3} and
8052 @var{param4} accept floating point values.
8053
8054 The default value for @var{param1} is 3. The default value for the
8055 other parameters is 0.
8056
8057 These parameters correspond to the parameters assigned to the
8058 libopencv function @code{cvSmooth}.
8059
8060 @anchor{overlay}
8061 @section overlay
8062
8063 Overlay one video on top of another.
8064
8065 It takes two inputs and has one output. The first input is the "main"
8066 video on which the second input is overlaid.
8067
8068 It accepts the following parameters:
8069
8070 A description of the accepted options follows.
8071
8072 @table @option
8073 @item x
8074 @item y
8075 Set the expression for the x and y coordinates of the overlaid video
8076 on the main video. Default value is "0" for both expressions. In case
8077 the expression is invalid, it is set to a huge value (meaning that the
8078 overlay will not be displayed within the output visible area).
8079
8080 @item eof_action
8081 The action to take when EOF is encountered on the secondary input; it accepts
8082 one of the following values:
8083
8084 @table @option
8085 @item repeat
8086 Repeat the last frame (the default).
8087 @item endall
8088 End both streams.
8089 @item pass
8090 Pass the main input through.
8091 @end table
8092
8093 @item eval
8094 Set when the expressions for @option{x}, and @option{y} are evaluated.
8095
8096 It accepts the following values:
8097 @table @samp
8098 @item init
8099 only evaluate expressions once during the filter initialization or
8100 when a command is processed
8101
8102 @item frame
8103 evaluate expressions for each incoming frame
8104 @end table
8105
8106 Default value is @samp{frame}.
8107
8108 @item shortest
8109 If set to 1, force the output to terminate when the shortest input
8110 terminates. Default value is 0.
8111
8112 @item format
8113 Set the format for the output video.
8114
8115 It accepts the following values:
8116 @table @samp
8117 @item yuv420
8118 force YUV420 output
8119
8120 @item yuv422
8121 force YUV422 output
8122
8123 @item yuv444
8124 force YUV444 output
8125
8126 @item rgb
8127 force RGB output
8128 @end table
8129
8130 Default value is @samp{yuv420}.
8131
8132 @item rgb @emph{(deprecated)}
8133 If set to 1, force the filter to accept inputs in the RGB
8134 color space. Default value is 0. This option is deprecated, use
8135 @option{format} instead.
8136
8137 @item repeatlast
8138 If set to 1, force the filter to draw the last overlay frame over the
8139 main input until the end of the stream. A value of 0 disables this
8140 behavior. Default value is 1.
8141 @end table
8142
8143 The @option{x}, and @option{y} expressions can contain the following
8144 parameters.
8145
8146 @table @option
8147 @item main_w, W
8148 @item main_h, H
8149 The main input width and height.
8150
8151 @item overlay_w, w
8152 @item overlay_h, h
8153 The overlay input width and height.
8154
8155 @item x
8156 @item y
8157 The computed values for @var{x} and @var{y}. They are evaluated for
8158 each new frame.
8159
8160 @item hsub
8161 @item vsub
8162 horizontal and vertical chroma subsample values of the output
8163 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
8164 @var{vsub} is 1.
8165
8166 @item n
8167 the number of input frame, starting from 0
8168
8169 @item pos
8170 the position in the file of the input frame, NAN if unknown
8171
8172 @item t
8173 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
8174
8175 @end table
8176
8177 Note that the @var{n}, @var{pos}, @var{t} variables are available only
8178 when evaluation is done @emph{per frame}, and will evaluate to NAN
8179 when @option{eval} is set to @samp{init}.
8180
8181 Be aware that frames are taken from each input video in timestamp
8182 order, hence, if their initial timestamps differ, it is a good idea
8183 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
8184 have them begin in the same zero timestamp, as the example for
8185 the @var{movie} filter does.
8186
8187 You can chain together more overlays but you should test the
8188 efficiency of such approach.
8189
8190 @subsection Commands
8191
8192 This filter supports the following commands:
8193 @table @option
8194 @item x
8195 @item y
8196 Modify the x and y of the overlay input.
8197 The command accepts the same syntax of the corresponding option.
8198
8199 If the specified expression is not valid, it is kept at its current
8200 value.
8201 @end table
8202
8203 @subsection Examples
8204
8205 @itemize
8206 @item
8207 Draw the overlay at 10 pixels from the bottom right corner of the main
8208 video:
8209 @example
8210 overlay=main_w-overlay_w-10:main_h-overlay_h-10
8211 @end example
8212
8213 Using named options the example above becomes:
8214 @example
8215 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
8216 @end example
8217
8218 @item
8219 Insert a transparent PNG logo in the bottom left corner of the input,
8220 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
8221 @example
8222 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
8223 @end example
8224
8225 @item
8226 Insert 2 different transparent PNG logos (second logo on bottom
8227 right corner) using the @command{ffmpeg} tool:
8228 @example
8229 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
8230 @end example
8231
8232 @item
8233 Add a transparent color layer on top of the main video; @code{WxH}
8234 must specify the size of the main input to the overlay filter:
8235 @example
8236 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
8237 @end example
8238
8239 @item
8240 Play an original video and a filtered version (here with the deshake
8241 filter) side by side using the @command{ffplay} tool:
8242 @example
8243 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
8244 @end example
8245
8246 The above command is the same as:
8247 @example
8248 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
8249 @end example
8250
8251 @item
8252 Make a sliding overlay appearing from the left to the right top part of the
8253 screen starting since time 2:
8254 @example
8255 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
8256 @end example
8257
8258 @item
8259 Compose output by putting two input videos side to side:
8260 @example
8261 ffmpeg -i left.avi -i right.avi -filter_complex "
8262 nullsrc=size=200x100 [background];
8263 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
8264 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
8265 [background][left]       overlay=shortest=1       [background+left];
8266 [background+left][right] overlay=shortest=1:x=100 [left+right]
8267 "
8268 @end example
8269
8270 @item
8271 Mask 10-20 seconds of a video by applying the delogo filter to a section
8272 @example
8273 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
8274 -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]'
8275 masked.avi
8276 @end example
8277
8278 @item
8279 Chain several overlays in cascade:
8280 @example
8281 nullsrc=s=200x200 [bg];
8282 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
8283 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
8284 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
8285 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
8286 [in3] null,       [mid2] overlay=100:100 [out0]
8287 @end example
8288
8289 @end itemize
8290
8291 @section owdenoise
8292
8293 Apply Overcomplete Wavelet denoiser.
8294
8295 The filter accepts the following options:
8296
8297 @table @option
8298 @item depth
8299 Set depth.
8300
8301 Larger depth values will denoise lower frequency components more, but
8302 slow down filtering.
8303
8304 Must be an int in the range 8-16, default is @code{8}.
8305
8306 @item luma_strength, ls
8307 Set luma strength.
8308
8309 Must be a double value in the range 0-1000, default is @code{1.0}.
8310
8311 @item chroma_strength, cs
8312 Set chroma strength.
8313
8314 Must be a double value in the range 0-1000, default is @code{1.0}.
8315 @end table
8316
8317 @anchor{pad}
8318 @section pad
8319
8320 Add paddings to the input image, and place the original input at the
8321 provided @var{x}, @var{y} coordinates.
8322
8323 It accepts the following parameters:
8324
8325 @table @option
8326 @item width, w
8327 @item height, h
8328 Specify an expression for the size of the output image with the
8329 paddings added. If the value for @var{width} or @var{height} is 0, the
8330 corresponding input size is used for the output.
8331
8332 The @var{width} expression can reference the value set by the
8333 @var{height} expression, and vice versa.
8334
8335 The default value of @var{width} and @var{height} is 0.
8336
8337 @item x
8338 @item y
8339 Specify the offsets to place the input image at within the padded area,
8340 with respect to the top/left border of the output image.
8341
8342 The @var{x} expression can reference the value set by the @var{y}
8343 expression, and vice versa.
8344
8345 The default value of @var{x} and @var{y} is 0.
8346
8347 @item color
8348 Specify the color of the padded area. For the syntax of this option,
8349 check the "Color" section in the ffmpeg-utils manual.
8350
8351 The default value of @var{color} is "black".
8352 @end table
8353
8354 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
8355 options are expressions containing the following constants:
8356
8357 @table @option
8358 @item in_w
8359 @item in_h
8360 The input video width and height.
8361
8362 @item iw
8363 @item ih
8364 These are the same as @var{in_w} and @var{in_h}.
8365
8366 @item out_w
8367 @item out_h
8368 The output width and height (the size of the padded area), as
8369 specified by the @var{width} and @var{height} expressions.
8370
8371 @item ow
8372 @item oh
8373 These are the same as @var{out_w} and @var{out_h}.
8374
8375 @item x
8376 @item y
8377 The x and y offsets as specified by the @var{x} and @var{y}
8378 expressions, or NAN if not yet specified.
8379
8380 @item a
8381 same as @var{iw} / @var{ih}
8382
8383 @item sar
8384 input sample aspect ratio
8385
8386 @item dar
8387 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8388
8389 @item hsub
8390 @item vsub
8391 The horizontal and vertical chroma subsample values. For example for the
8392 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8393 @end table
8394
8395 @subsection Examples
8396
8397 @itemize
8398 @item
8399 Add paddings with the color "violet" to the input video. The output video
8400 size is 640x480, and the top-left corner of the input video is placed at
8401 column 0, row 40
8402 @example
8403 pad=640:480:0:40:violet
8404 @end example
8405
8406 The example above is equivalent to the following command:
8407 @example
8408 pad=width=640:height=480:x=0:y=40:color=violet
8409 @end example
8410
8411 @item
8412 Pad the input to get an output with dimensions increased by 3/2,
8413 and put the input video at the center of the padded area:
8414 @example
8415 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
8416 @end example
8417
8418 @item
8419 Pad the input to get a squared output with size equal to the maximum
8420 value between the input width and height, and put the input video at
8421 the center of the padded area:
8422 @example
8423 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
8424 @end example
8425
8426 @item
8427 Pad the input to get a final w/h ratio of 16:9:
8428 @example
8429 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
8430 @end example
8431
8432 @item
8433 In case of anamorphic video, in order to set the output display aspect
8434 correctly, it is necessary to use @var{sar} in the expression,
8435 according to the relation:
8436 @example
8437 (ih * X / ih) * sar = output_dar
8438 X = output_dar / sar
8439 @end example
8440
8441 Thus the previous example needs to be modified to:
8442 @example
8443 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
8444 @end example
8445
8446 @item
8447 Double the output size and put the input video in the bottom-right
8448 corner of the output padded area:
8449 @example
8450 pad="2*iw:2*ih:ow-iw:oh-ih"
8451 @end example
8452 @end itemize
8453
8454 @anchor{palettegen}
8455 @section palettegen
8456
8457 Generate one palette for a whole video stream.
8458
8459 It accepts the following options:
8460
8461 @table @option
8462 @item max_colors
8463 Set the maximum number of colors to quantize in the palette.
8464 Note: the palette will still contain 256 colors; the unused palette entries
8465 will be black.
8466
8467 @item reserve_transparent
8468 Create a palette of 255 colors maximum and reserve the last one for
8469 transparency. Reserving the transparency color is useful for GIF optimization.
8470 If not set, the maximum of colors in the palette will be 256. You probably want
8471 to disable this option for a standalone image.
8472 Set by default.
8473
8474 @item stats_mode
8475 Set statistics mode.
8476
8477 It accepts the following values:
8478 @table @samp
8479 @item full
8480 Compute full frame histograms.
8481 @item diff
8482 Compute histograms only for the part that differs from previous frame. This
8483 might be relevant to give more importance to the moving part of your input if
8484 the background is static.
8485 @end table
8486
8487 Default value is @var{full}.
8488 @end table
8489
8490 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
8491 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
8492 color quantization of the palette. This information is also visible at
8493 @var{info} logging level.
8494
8495 @subsection Examples
8496
8497 @itemize
8498 @item
8499 Generate a representative palette of a given video using @command{ffmpeg}:
8500 @example
8501 ffmpeg -i input.mkv -vf palettegen palette.png
8502 @end example
8503 @end itemize
8504
8505 @section paletteuse
8506
8507 Use a palette to downsample an input video stream.
8508
8509 The filter takes two inputs: one video stream and a palette. The palette must
8510 be a 256 pixels image.
8511
8512 It accepts the following options:
8513
8514 @table @option
8515 @item dither
8516 Select dithering mode. Available algorithms are:
8517 @table @samp
8518 @item bayer
8519 Ordered 8x8 bayer dithering (deterministic)
8520 @item heckbert
8521 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
8522 Note: this dithering is sometimes considered "wrong" and is included as a
8523 reference.
8524 @item floyd_steinberg
8525 Floyd and Steingberg dithering (error diffusion)
8526 @item sierra2
8527 Frankie Sierra dithering v2 (error diffusion)
8528 @item sierra2_4a
8529 Frankie Sierra dithering v2 "Lite" (error diffusion)
8530 @end table
8531
8532 Default is @var{sierra2_4a}.
8533
8534 @item bayer_scale
8535 When @var{bayer} dithering is selected, this option defines the scale of the
8536 pattern (how much the crosshatch pattern is visible). A low value means more
8537 visible pattern for less banding, and higher value means less visible pattern
8538 at the cost of more banding.
8539
8540 The option must be an integer value in the range [0,5]. Default is @var{2}.
8541
8542 @item diff_mode
8543 If set, define the zone to process
8544
8545 @table @samp
8546 @item rectangle
8547 Only the changing rectangle will be reprocessed. This is similar to GIF
8548 cropping/offsetting compression mechanism. This option can be useful for speed
8549 if only a part of the image is changing, and has use cases such as limiting the
8550 scope of the error diffusal @option{dither} to the rectangle that bounds the
8551 moving scene (it leads to more deterministic output if the scene doesn't change
8552 much, and as a result less moving noise and better GIF compression).
8553 @end table
8554
8555 Default is @var{none}.
8556 @end table
8557
8558 @subsection Examples
8559
8560 @itemize
8561 @item
8562 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
8563 using @command{ffmpeg}:
8564 @example
8565 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
8566 @end example
8567 @end itemize
8568
8569 @section perspective
8570
8571 Correct perspective of video not recorded perpendicular to the screen.
8572
8573 A description of the accepted parameters follows.
8574
8575 @table @option
8576 @item x0
8577 @item y0
8578 @item x1
8579 @item y1
8580 @item x2
8581 @item y2
8582 @item x3
8583 @item y3
8584 Set coordinates expression for top left, top right, bottom left and bottom right corners.
8585 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
8586 If the @code{sense} option is set to @code{source}, then the specified points will be sent
8587 to the corners of the destination. If the @code{sense} option is set to @code{destination},
8588 then the corners of the source will be sent to the specified coordinates.
8589
8590 The expressions can use the following variables:
8591
8592 @table @option
8593 @item W
8594 @item H
8595 the width and height of video frame.
8596 @end table
8597
8598 @item interpolation
8599 Set interpolation for perspective correction.
8600
8601 It accepts the following values:
8602 @table @samp
8603 @item linear
8604 @item cubic
8605 @end table
8606
8607 Default value is @samp{linear}.
8608
8609 @item sense
8610 Set interpretation of coordinate options.
8611
8612 It accepts the following values:
8613 @table @samp
8614 @item 0, source
8615
8616 Send point in the source specified by the given coordinates to
8617 the corners of the destination.
8618
8619 @item 1, destination
8620
8621 Send the corners of the source to the point in the destination specified
8622 by the given coordinates.
8623
8624 Default value is @samp{source}.
8625 @end table
8626 @end table
8627
8628 @section phase
8629
8630 Delay interlaced video by one field time so that the field order changes.
8631
8632 The intended use is to fix PAL movies that have been captured with the
8633 opposite field order to the film-to-video transfer.
8634
8635 A description of the accepted parameters follows.
8636
8637 @table @option
8638 @item mode
8639 Set phase mode.
8640
8641 It accepts the following values:
8642 @table @samp
8643 @item t
8644 Capture field order top-first, transfer bottom-first.
8645 Filter will delay the bottom field.
8646
8647 @item b
8648 Capture field order bottom-first, transfer top-first.
8649 Filter will delay the top field.
8650
8651 @item p
8652 Capture and transfer with the same field order. This mode only exists
8653 for the documentation of the other options to refer to, but if you
8654 actually select it, the filter will faithfully do nothing.
8655
8656 @item a
8657 Capture field order determined automatically by field flags, transfer
8658 opposite.
8659 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
8660 basis using field flags. If no field information is available,
8661 then this works just like @samp{u}.
8662
8663 @item u
8664 Capture unknown or varying, transfer opposite.
8665 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
8666 analyzing the images and selecting the alternative that produces best
8667 match between the fields.
8668
8669 @item T
8670 Capture top-first, transfer unknown or varying.
8671 Filter selects among @samp{t} and @samp{p} using image analysis.
8672
8673 @item B
8674 Capture bottom-first, transfer unknown or varying.
8675 Filter selects among @samp{b} and @samp{p} using image analysis.
8676
8677 @item A
8678 Capture determined by field flags, transfer unknown or varying.
8679 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
8680 image analysis. If no field information is available, then this works just
8681 like @samp{U}. This is the default mode.
8682
8683 @item U
8684 Both capture and transfer unknown or varying.
8685 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
8686 @end table
8687 @end table
8688
8689 @section pixdesctest
8690
8691 Pixel format descriptor test filter, mainly useful for internal
8692 testing. The output video should be equal to the input video.
8693
8694 For example:
8695 @example
8696 format=monow, pixdesctest
8697 @end example
8698
8699 can be used to test the monowhite pixel format descriptor definition.
8700
8701 @section pp
8702
8703 Enable the specified chain of postprocessing subfilters using libpostproc. This
8704 library should be automatically selected with a GPL build (@code{--enable-gpl}).
8705 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
8706 Each subfilter and some options have a short and a long name that can be used
8707 interchangeably, i.e. dr/dering are the same.
8708
8709 The filters accept the following options:
8710
8711 @table @option
8712 @item subfilters
8713 Set postprocessing subfilters string.
8714 @end table
8715
8716 All subfilters share common options to determine their scope:
8717
8718 @table @option
8719 @item a/autoq
8720 Honor the quality commands for this subfilter.
8721
8722 @item c/chrom
8723 Do chrominance filtering, too (default).
8724
8725 @item y/nochrom
8726 Do luminance filtering only (no chrominance).
8727
8728 @item n/noluma
8729 Do chrominance filtering only (no luminance).
8730 @end table
8731
8732 These options can be appended after the subfilter name, separated by a '|'.
8733
8734 Available subfilters are:
8735
8736 @table @option
8737 @item hb/hdeblock[|difference[|flatness]]
8738 Horizontal deblocking filter
8739 @table @option
8740 @item difference
8741 Difference factor where higher values mean more deblocking (default: @code{32}).
8742 @item flatness
8743 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8744 @end table
8745
8746 @item vb/vdeblock[|difference[|flatness]]
8747 Vertical deblocking filter
8748 @table @option
8749 @item difference
8750 Difference factor where higher values mean more deblocking (default: @code{32}).
8751 @item flatness
8752 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8753 @end table
8754
8755 @item ha/hadeblock[|difference[|flatness]]
8756 Accurate horizontal deblocking filter
8757 @table @option
8758 @item difference
8759 Difference factor where higher values mean more deblocking (default: @code{32}).
8760 @item flatness
8761 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8762 @end table
8763
8764 @item va/vadeblock[|difference[|flatness]]
8765 Accurate vertical deblocking filter
8766 @table @option
8767 @item difference
8768 Difference factor where higher values mean more deblocking (default: @code{32}).
8769 @item flatness
8770 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8771 @end table
8772 @end table
8773
8774 The horizontal and vertical deblocking filters share the difference and
8775 flatness values so you cannot set different horizontal and vertical
8776 thresholds.
8777
8778 @table @option
8779 @item h1/x1hdeblock
8780 Experimental horizontal deblocking filter
8781
8782 @item v1/x1vdeblock
8783 Experimental vertical deblocking filter
8784
8785 @item dr/dering
8786 Deringing filter
8787
8788 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
8789 @table @option
8790 @item threshold1
8791 larger -> stronger filtering
8792 @item threshold2
8793 larger -> stronger filtering
8794 @item threshold3
8795 larger -> stronger filtering
8796 @end table
8797
8798 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
8799 @table @option
8800 @item f/fullyrange
8801 Stretch luminance to @code{0-255}.
8802 @end table
8803
8804 @item lb/linblenddeint
8805 Linear blend deinterlacing filter that deinterlaces the given block by
8806 filtering all lines with a @code{(1 2 1)} filter.
8807
8808 @item li/linipoldeint
8809 Linear interpolating deinterlacing filter that deinterlaces the given block by
8810 linearly interpolating every second line.
8811
8812 @item ci/cubicipoldeint
8813 Cubic interpolating deinterlacing filter deinterlaces the given block by
8814 cubically interpolating every second line.
8815
8816 @item md/mediandeint
8817 Median deinterlacing filter that deinterlaces the given block by applying a
8818 median filter to every second line.
8819
8820 @item fd/ffmpegdeint
8821 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
8822 second line with a @code{(-1 4 2 4 -1)} filter.
8823
8824 @item l5/lowpass5
8825 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
8826 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
8827
8828 @item fq/forceQuant[|quantizer]
8829 Overrides the quantizer table from the input with the constant quantizer you
8830 specify.
8831 @table @option
8832 @item quantizer
8833 Quantizer to use
8834 @end table
8835
8836 @item de/default
8837 Default pp filter combination (@code{hb|a,vb|a,dr|a})
8838
8839 @item fa/fast
8840 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
8841
8842 @item ac
8843 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
8844 @end table
8845
8846 @subsection Examples
8847
8848 @itemize
8849 @item
8850 Apply horizontal and vertical deblocking, deringing and automatic
8851 brightness/contrast:
8852 @example
8853 pp=hb/vb/dr/al
8854 @end example
8855
8856 @item
8857 Apply default filters without brightness/contrast correction:
8858 @example
8859 pp=de/-al
8860 @end example
8861
8862 @item
8863 Apply default filters and temporal denoiser:
8864 @example
8865 pp=default/tmpnoise|1|2|3
8866 @end example
8867
8868 @item
8869 Apply deblocking on luminance only, and switch vertical deblocking on or off
8870 automatically depending on available CPU time:
8871 @example
8872 pp=hb|y/vb|a
8873 @end example
8874 @end itemize
8875
8876 @section pp7
8877 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
8878 similar to spp = 6 with 7 point DCT, where only the center sample is
8879 used after IDCT.
8880
8881 The filter accepts the following options:
8882
8883 @table @option
8884 @item qp
8885 Force a constant quantization parameter. It accepts an integer in range
8886 0 to 63. If not set, the filter will use the QP from the video stream
8887 (if available).
8888
8889 @item mode
8890 Set thresholding mode. Available modes are:
8891
8892 @table @samp
8893 @item hard
8894 Set hard thresholding.
8895 @item soft
8896 Set soft thresholding (better de-ringing effect, but likely blurrier).
8897 @item medium
8898 Set medium thresholding (good results, default).
8899 @end table
8900 @end table
8901
8902 @section psnr
8903
8904 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
8905 Ratio) between two input videos.
8906
8907 This filter takes in input two input videos, the first input is
8908 considered the "main" source and is passed unchanged to the
8909 output. The second input is used as a "reference" video for computing
8910 the PSNR.
8911
8912 Both video inputs must have the same resolution and pixel format for
8913 this filter to work correctly. Also it assumes that both inputs
8914 have the same number of frames, which are compared one by one.
8915
8916 The obtained average PSNR is printed through the logging system.
8917
8918 The filter stores the accumulated MSE (mean squared error) of each
8919 frame, and at the end of the processing it is averaged across all frames
8920 equally, and the following formula is applied to obtain the PSNR:
8921
8922 @example
8923 PSNR = 10*log10(MAX^2/MSE)
8924 @end example
8925
8926 Where MAX is the average of the maximum values of each component of the
8927 image.
8928
8929 The description of the accepted parameters follows.
8930
8931 @table @option
8932 @item stats_file, f
8933 If specified the filter will use the named file to save the PSNR of
8934 each individual frame.
8935 @end table
8936
8937 The file printed if @var{stats_file} is selected, contains a sequence of
8938 key/value pairs of the form @var{key}:@var{value} for each compared
8939 couple of frames.
8940
8941 A description of each shown parameter follows:
8942
8943 @table @option
8944 @item n
8945 sequential number of the input frame, starting from 1
8946
8947 @item mse_avg
8948 Mean Square Error pixel-by-pixel average difference of the compared
8949 frames, averaged over all the image components.
8950
8951 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
8952 Mean Square Error pixel-by-pixel average difference of the compared
8953 frames for the component specified by the suffix.
8954
8955 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
8956 Peak Signal to Noise ratio of the compared frames for the component
8957 specified by the suffix.
8958 @end table
8959
8960 For example:
8961 @example
8962 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
8963 [main][ref] psnr="stats_file=stats.log" [out]
8964 @end example
8965
8966 On this example the input file being processed is compared with the
8967 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
8968 is stored in @file{stats.log}.
8969
8970 @anchor{pullup}
8971 @section pullup
8972
8973 Pulldown reversal (inverse telecine) filter, capable of handling mixed
8974 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
8975 content.
8976
8977 The pullup filter is designed to take advantage of future context in making
8978 its decisions. This filter is stateless in the sense that it does not lock
8979 onto a pattern to follow, but it instead looks forward to the following
8980 fields in order to identify matches and rebuild progressive frames.
8981
8982 To produce content with an even framerate, insert the fps filter after
8983 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
8984 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
8985
8986 The filter accepts the following options:
8987
8988 @table @option
8989 @item jl
8990 @item jr
8991 @item jt
8992 @item jb
8993 These options set the amount of "junk" to ignore at the left, right, top, and
8994 bottom of the image, respectively. Left and right are in units of 8 pixels,
8995 while top and bottom are in units of 2 lines.
8996 The default is 8 pixels on each side.
8997
8998 @item sb
8999 Set the strict breaks. Setting this option to 1 will reduce the chances of
9000 filter generating an occasional mismatched frame, but it may also cause an
9001 excessive number of frames to be dropped during high motion sequences.
9002 Conversely, setting it to -1 will make filter match fields more easily.
9003 This may help processing of video where there is slight blurring between
9004 the fields, but may also cause there to be interlaced frames in the output.
9005 Default value is @code{0}.
9006
9007 @item mp
9008 Set the metric plane to use. It accepts the following values:
9009 @table @samp
9010 @item l
9011 Use luma plane.
9012
9013 @item u
9014 Use chroma blue plane.
9015
9016 @item v
9017 Use chroma red plane.
9018 @end table
9019
9020 This option may be set to use chroma plane instead of the default luma plane
9021 for doing filter's computations. This may improve accuracy on very clean
9022 source material, but more likely will decrease accuracy, especially if there
9023 is chroma noise (rainbow effect) or any grayscale video.
9024 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
9025 load and make pullup usable in realtime on slow machines.
9026 @end table
9027
9028 For best results (without duplicated frames in the output file) it is
9029 necessary to change the output frame rate. For example, to inverse
9030 telecine NTSC input:
9031 @example
9032 ffmpeg -i input -vf pullup -r 24000/1001 ...
9033 @end example
9034
9035 @section qp
9036
9037 Change video quantization parameters (QP).
9038
9039 The filter accepts the following option:
9040
9041 @table @option
9042 @item qp
9043 Set expression for quantization parameter.
9044 @end table
9045
9046 The expression is evaluated through the eval API and can contain, among others,
9047 the following constants:
9048
9049 @table @var
9050 @item known
9051 1 if index is not 129, 0 otherwise.
9052
9053 @item qp
9054 Sequentional index starting from -129 to 128.
9055 @end table
9056
9057 @subsection Examples
9058
9059 @itemize
9060 @item
9061 Some equation like:
9062 @example
9063 qp=2+2*sin(PI*qp)
9064 @end example
9065 @end itemize
9066
9067 @section random
9068
9069 Flush video frames from internal cache of frames into a random order.
9070 No frame is discarded.
9071 Inspired by @ref{frei0r} nervous filter.
9072
9073 @table @option
9074 @item frames
9075 Set size in number of frames of internal cache, in range from @code{2} to
9076 @code{512}. Default is @code{30}.
9077
9078 @item seed
9079 Set seed for random number generator, must be an integer included between
9080 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
9081 less than @code{0}, the filter will try to use a good random seed on a
9082 best effort basis.
9083 @end table
9084
9085 @section removegrain
9086
9087 The removegrain filter is a spatial denoiser for progressive video.
9088
9089 @table @option
9090 @item m0
9091 Set mode for the first plane.
9092
9093 @item m1
9094 Set mode for the second plane.
9095
9096 @item m2
9097 Set mode for the third plane.
9098
9099 @item m3
9100 Set mode for the fourth plane.
9101 @end table
9102
9103 Range of mode is from 0 to 24. Description of each mode follows:
9104
9105 @table @var
9106 @item 0
9107 Leave input plane unchanged. Default.
9108
9109 @item 1
9110 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
9111
9112 @item 2
9113 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
9114
9115 @item 3
9116 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
9117
9118 @item 4
9119 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
9120 This is equivalent to a median filter.
9121
9122 @item 5
9123 Line-sensitive clipping giving the minimal change.
9124
9125 @item 6
9126 Line-sensitive clipping, intermediate.
9127
9128 @item 7
9129 Line-sensitive clipping, intermediate.
9130
9131 @item 8
9132 Line-sensitive clipping, intermediate.
9133
9134 @item 9
9135 Line-sensitive clipping on a line where the neighbours pixels are the closest.
9136
9137 @item 10
9138 Replaces the target pixel with the closest neighbour.
9139
9140 @item 11
9141 [1 2 1] horizontal and vertical kernel blur.
9142
9143 @item 12
9144 Same as mode 11.
9145
9146 @item 13
9147 Bob mode, interpolates top field from the line where the neighbours
9148 pixels are the closest.
9149
9150 @item 14
9151 Bob mode, interpolates bottom field from the line where the neighbours
9152 pixels are the closest.
9153
9154 @item 15
9155 Bob mode, interpolates top field. Same as 13 but with a more complicated
9156 interpolation formula.
9157
9158 @item 16
9159 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
9160 interpolation formula.
9161
9162 @item 17
9163 Clips the pixel with the minimum and maximum of respectively the maximum and
9164 minimum of each pair of opposite neighbour pixels.
9165
9166 @item 18
9167 Line-sensitive clipping using opposite neighbours whose greatest distance from
9168 the current pixel is minimal.
9169
9170 @item 19
9171 Replaces the pixel with the average of its 8 neighbours.
9172
9173 @item 20
9174 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
9175
9176 @item 21
9177 Clips pixels using the averages of opposite neighbour.
9178
9179 @item 22
9180 Same as mode 21 but simpler and faster.
9181
9182 @item 23
9183 Small edge and halo removal, but reputed useless.
9184
9185 @item 24
9186 Similar as 23.
9187 @end table
9188
9189 @section removelogo
9190
9191 Suppress a TV station logo, using an image file to determine which
9192 pixels comprise the logo. It works by filling in the pixels that
9193 comprise the logo with neighboring pixels.
9194
9195 The filter accepts the following options:
9196
9197 @table @option
9198 @item filename, f
9199 Set the filter bitmap file, which can be any image format supported by
9200 libavformat. The width and height of the image file must match those of the
9201 video stream being processed.
9202 @end table
9203
9204 Pixels in the provided bitmap image with a value of zero are not
9205 considered part of the logo, non-zero pixels are considered part of
9206 the logo. If you use white (255) for the logo and black (0) for the
9207 rest, you will be safe. For making the filter bitmap, it is
9208 recommended to take a screen capture of a black frame with the logo
9209 visible, and then using a threshold filter followed by the erode
9210 filter once or twice.
9211
9212 If needed, little splotches can be fixed manually. Remember that if
9213 logo pixels are not covered, the filter quality will be much
9214 reduced. Marking too many pixels as part of the logo does not hurt as
9215 much, but it will increase the amount of blurring needed to cover over
9216 the image and will destroy more information than necessary, and extra
9217 pixels will slow things down on a large logo.
9218
9219 @section repeatfields
9220
9221 This filter uses the repeat_field flag from the Video ES headers and hard repeats
9222 fields based on its value.
9223
9224 @section reverse, areverse
9225
9226 Reverse a clip.
9227
9228 Warning: This filter requires memory to buffer the entire clip, so trimming
9229 is suggested.
9230
9231 @subsection Examples
9232
9233 @itemize
9234 @item
9235 Take the first 5 seconds of a clip, and reverse it.
9236 @example
9237 trim=end=5,reverse
9238 @end example
9239 @end itemize
9240
9241 @section rotate
9242
9243 Rotate video by an arbitrary angle expressed in radians.
9244
9245 The filter accepts the following options:
9246
9247 A description of the optional parameters follows.
9248 @table @option
9249 @item angle, a
9250 Set an expression for the angle by which to rotate the input video
9251 clockwise, expressed as a number of radians. A negative value will
9252 result in a counter-clockwise rotation. By default it is set to "0".
9253
9254 This expression is evaluated for each frame.
9255
9256 @item out_w, ow
9257 Set the output width expression, default value is "iw".
9258 This expression is evaluated just once during configuration.
9259
9260 @item out_h, oh
9261 Set the output height expression, default value is "ih".
9262 This expression is evaluated just once during configuration.
9263
9264 @item bilinear
9265 Enable bilinear interpolation if set to 1, a value of 0 disables
9266 it. Default value is 1.
9267
9268 @item fillcolor, c
9269 Set the color used to fill the output area not covered by the rotated
9270 image. For the general syntax of this option, check the "Color" section in the
9271 ffmpeg-utils manual. If the special value "none" is selected then no
9272 background is printed (useful for example if the background is never shown).
9273
9274 Default value is "black".
9275 @end table
9276
9277 The expressions for the angle and the output size can contain the
9278 following constants and functions:
9279
9280 @table @option
9281 @item n
9282 sequential number of the input frame, starting from 0. It is always NAN
9283 before the first frame is filtered.
9284
9285 @item t
9286 time in seconds of the input frame, it is set to 0 when the filter is
9287 configured. It is always NAN before the first frame is filtered.
9288
9289 @item hsub
9290 @item vsub
9291 horizontal and vertical chroma subsample values. For example for the
9292 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9293
9294 @item in_w, iw
9295 @item in_h, ih
9296 the input video width and height
9297
9298 @item out_w, ow
9299 @item out_h, oh
9300 the output width and height, that is the size of the padded area as
9301 specified by the @var{width} and @var{height} expressions
9302
9303 @item rotw(a)
9304 @item roth(a)
9305 the minimal width/height required for completely containing the input
9306 video rotated by @var{a} radians.
9307
9308 These are only available when computing the @option{out_w} and
9309 @option{out_h} expressions.
9310 @end table
9311
9312 @subsection Examples
9313
9314 @itemize
9315 @item
9316 Rotate the input by PI/6 radians clockwise:
9317 @example
9318 rotate=PI/6
9319 @end example
9320
9321 @item
9322 Rotate the input by PI/6 radians counter-clockwise:
9323 @example
9324 rotate=-PI/6
9325 @end example
9326
9327 @item
9328 Rotate the input by 45 degrees clockwise:
9329 @example
9330 rotate=45*PI/180
9331 @end example
9332
9333 @item
9334 Apply a constant rotation with period T, starting from an angle of PI/3:
9335 @example
9336 rotate=PI/3+2*PI*t/T
9337 @end example
9338
9339 @item
9340 Make the input video rotation oscillating with a period of T
9341 seconds and an amplitude of A radians:
9342 @example
9343 rotate=A*sin(2*PI/T*t)
9344 @end example
9345
9346 @item
9347 Rotate the video, output size is chosen so that the whole rotating
9348 input video is always completely contained in the output:
9349 @example
9350 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
9351 @end example
9352
9353 @item
9354 Rotate the video, reduce the output size so that no background is ever
9355 shown:
9356 @example
9357 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
9358 @end example
9359 @end itemize
9360
9361 @subsection Commands
9362
9363 The filter supports the following commands:
9364
9365 @table @option
9366 @item a, angle
9367 Set the angle expression.
9368 The command accepts the same syntax of the corresponding option.
9369
9370 If the specified expression is not valid, it is kept at its current
9371 value.
9372 @end table
9373
9374 @section sab
9375
9376 Apply Shape Adaptive Blur.
9377
9378 The filter accepts the following options:
9379
9380 @table @option
9381 @item luma_radius, lr
9382 Set luma blur filter strength, must be a value in range 0.1-4.0, default
9383 value is 1.0. A greater value will result in a more blurred image, and
9384 in slower processing.
9385
9386 @item luma_pre_filter_radius, lpfr
9387 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
9388 value is 1.0.
9389
9390 @item luma_strength, ls
9391 Set luma maximum difference between pixels to still be considered, must
9392 be a value in the 0.1-100.0 range, default value is 1.0.
9393
9394 @item chroma_radius, cr
9395 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
9396 greater value will result in a more blurred image, and in slower
9397 processing.
9398
9399 @item chroma_pre_filter_radius, cpfr
9400 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
9401
9402 @item chroma_strength, cs
9403 Set chroma maximum difference between pixels to still be considered,
9404 must be a value in the 0.1-100.0 range.
9405 @end table
9406
9407 Each chroma option value, if not explicitly specified, is set to the
9408 corresponding luma option value.
9409
9410 @anchor{scale}
9411 @section scale
9412
9413 Scale (resize) the input video, using the libswscale library.
9414
9415 The scale filter forces the output display aspect ratio to be the same
9416 of the input, by changing the output sample aspect ratio.
9417
9418 If the input image format is different from the format requested by
9419 the next filter, the scale filter will convert the input to the
9420 requested format.
9421
9422 @subsection Options
9423 The filter accepts the following options, or any of the options
9424 supported by the libswscale scaler.
9425
9426 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
9427 the complete list of scaler options.
9428
9429 @table @option
9430 @item width, w
9431 @item height, h
9432 Set the output video dimension expression. Default value is the input
9433 dimension.
9434
9435 If the value is 0, the input width is used for the output.
9436
9437 If one of the values is -1, the scale filter will use a value that
9438 maintains the aspect ratio of the input image, calculated from the
9439 other specified dimension. If both of them are -1, the input size is
9440 used
9441
9442 If one of the values is -n with n > 1, the scale filter will also use a value
9443 that maintains the aspect ratio of the input image, calculated from the other
9444 specified dimension. After that it will, however, make sure that the calculated
9445 dimension is divisible by n and adjust the value if necessary.
9446
9447 See below for the list of accepted constants for use in the dimension
9448 expression.
9449
9450 @item interl
9451 Set the interlacing mode. It accepts the following values:
9452
9453 @table @samp
9454 @item 1
9455 Force interlaced aware scaling.
9456
9457 @item 0
9458 Do not apply interlaced scaling.
9459
9460 @item -1
9461 Select interlaced aware scaling depending on whether the source frames
9462 are flagged as interlaced or not.
9463 @end table
9464
9465 Default value is @samp{0}.
9466
9467 @item flags
9468 Set libswscale scaling flags. See
9469 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
9470 complete list of values. If not explicitly specified the filter applies
9471 the default flags.
9472
9473 @item size, s
9474 Set the video size. For the syntax of this option, check the
9475 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9476
9477 @item in_color_matrix
9478 @item out_color_matrix
9479 Set in/output YCbCr color space type.
9480
9481 This allows the autodetected value to be overridden as well as allows forcing
9482 a specific value used for the output and encoder.
9483
9484 If not specified, the color space type depends on the pixel format.
9485
9486 Possible values:
9487
9488 @table @samp
9489 @item auto
9490 Choose automatically.
9491
9492 @item bt709
9493 Format conforming to International Telecommunication Union (ITU)
9494 Recommendation BT.709.
9495
9496 @item fcc
9497 Set color space conforming to the United States Federal Communications
9498 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
9499
9500 @item bt601
9501 Set color space conforming to:
9502
9503 @itemize
9504 @item
9505 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
9506
9507 @item
9508 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
9509
9510 @item
9511 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
9512
9513 @end itemize
9514
9515 @item smpte240m
9516 Set color space conforming to SMPTE ST 240:1999.
9517 @end table
9518
9519 @item in_range
9520 @item out_range
9521 Set in/output YCbCr sample range.
9522
9523 This allows the autodetected value to be overridden as well as allows forcing
9524 a specific value used for the output and encoder. If not specified, the
9525 range depends on the pixel format. Possible values:
9526
9527 @table @samp
9528 @item auto
9529 Choose automatically.
9530
9531 @item jpeg/full/pc
9532 Set full range (0-255 in case of 8-bit luma).
9533
9534 @item mpeg/tv
9535 Set "MPEG" range (16-235 in case of 8-bit luma).
9536 @end table
9537
9538 @item force_original_aspect_ratio
9539 Enable decreasing or increasing output video width or height if necessary to
9540 keep the original aspect ratio. Possible values:
9541
9542 @table @samp
9543 @item disable
9544 Scale the video as specified and disable this feature.
9545
9546 @item decrease
9547 The output video dimensions will automatically be decreased if needed.
9548
9549 @item increase
9550 The output video dimensions will automatically be increased if needed.
9551
9552 @end table
9553
9554 One useful instance of this option is that when you know a specific device's
9555 maximum allowed resolution, you can use this to limit the output video to
9556 that, while retaining the aspect ratio. For example, device A allows
9557 1280x720 playback, and your video is 1920x800. Using this option (set it to
9558 decrease) and specifying 1280x720 to the command line makes the output
9559 1280x533.
9560
9561 Please note that this is a different thing than specifying -1 for @option{w}
9562 or @option{h}, you still need to specify the output resolution for this option
9563 to work.
9564
9565 @end table
9566
9567 The values of the @option{w} and @option{h} options are expressions
9568 containing the following constants:
9569
9570 @table @var
9571 @item in_w
9572 @item in_h
9573 The input width and height
9574
9575 @item iw
9576 @item ih
9577 These are the same as @var{in_w} and @var{in_h}.
9578
9579 @item out_w
9580 @item out_h
9581 The output (scaled) width and height
9582
9583 @item ow
9584 @item oh
9585 These are the same as @var{out_w} and @var{out_h}
9586
9587 @item a
9588 The same as @var{iw} / @var{ih}
9589
9590 @item sar
9591 input sample aspect ratio
9592
9593 @item dar
9594 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
9595
9596 @item hsub
9597 @item vsub
9598 horizontal and vertical input chroma subsample values. For example for the
9599 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9600
9601 @item ohsub
9602 @item ovsub
9603 horizontal and vertical output chroma subsample values. For example for the
9604 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9605 @end table
9606
9607 @subsection Examples
9608
9609 @itemize
9610 @item
9611 Scale the input video to a size of 200x100
9612 @example
9613 scale=w=200:h=100
9614 @end example
9615
9616 This is equivalent to:
9617 @example
9618 scale=200:100
9619 @end example
9620
9621 or:
9622 @example
9623 scale=200x100
9624 @end example
9625
9626 @item
9627 Specify a size abbreviation for the output size:
9628 @example
9629 scale=qcif
9630 @end example
9631
9632 which can also be written as:
9633 @example
9634 scale=size=qcif
9635 @end example
9636
9637 @item
9638 Scale the input to 2x:
9639 @example
9640 scale=w=2*iw:h=2*ih
9641 @end example
9642
9643 @item
9644 The above is the same as:
9645 @example
9646 scale=2*in_w:2*in_h
9647 @end example
9648
9649 @item
9650 Scale the input to 2x with forced interlaced scaling:
9651 @example
9652 scale=2*iw:2*ih:interl=1
9653 @end example
9654
9655 @item
9656 Scale the input to half size:
9657 @example
9658 scale=w=iw/2:h=ih/2
9659 @end example
9660
9661 @item
9662 Increase the width, and set the height to the same size:
9663 @example
9664 scale=3/2*iw:ow
9665 @end example
9666
9667 @item
9668 Seek Greek harmony:
9669 @example
9670 scale=iw:1/PHI*iw
9671 scale=ih*PHI:ih
9672 @end example
9673
9674 @item
9675 Increase the height, and set the width to 3/2 of the height:
9676 @example
9677 scale=w=3/2*oh:h=3/5*ih
9678 @end example
9679
9680 @item
9681 Increase the size, making the size a multiple of the chroma
9682 subsample values:
9683 @example
9684 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
9685 @end example
9686
9687 @item
9688 Increase the width to a maximum of 500 pixels,
9689 keeping the same aspect ratio as the input:
9690 @example
9691 scale=w='min(500\, iw*3/2):h=-1'
9692 @end example
9693 @end itemize
9694
9695 @subsection Commands
9696
9697 This filter supports the following commands:
9698 @table @option
9699 @item width, w
9700 @item height, h
9701 Set the output video dimension expression.
9702 The command accepts the same syntax of the corresponding option.
9703
9704 If the specified expression is not valid, it is kept at its current
9705 value.
9706 @end table
9707
9708 @section scale2ref
9709
9710 Scale (resize) the input video, based on a reference video.
9711
9712 See the scale filter for available options, scale2ref supports the same but
9713 uses the reference video instead of the main input as basis.
9714
9715 @subsection Examples
9716
9717 @itemize
9718 @item
9719 Scale a subtitle stream to match the main video in size before overlaying
9720 @example
9721 'scale2ref[b][a];[a][b]overlay'
9722 @end example
9723 @end itemize
9724
9725 @section separatefields
9726
9727 The @code{separatefields} takes a frame-based video input and splits
9728 each frame into its components fields, producing a new half height clip
9729 with twice the frame rate and twice the frame count.
9730
9731 This filter use field-dominance information in frame to decide which
9732 of each pair of fields to place first in the output.
9733 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
9734
9735 @section setdar, setsar
9736
9737 The @code{setdar} filter sets the Display Aspect Ratio for the filter
9738 output video.
9739
9740 This is done by changing the specified Sample (aka Pixel) Aspect
9741 Ratio, according to the following equation:
9742 @example
9743 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
9744 @end example
9745
9746 Keep in mind that the @code{setdar} filter does not modify the pixel
9747 dimensions of the video frame. Also, the display aspect ratio set by
9748 this filter may be changed by later filters in the filterchain,
9749 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
9750 applied.
9751
9752 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
9753 the filter output video.
9754
9755 Note that as a consequence of the application of this filter, the
9756 output display aspect ratio will change according to the equation
9757 above.
9758
9759 Keep in mind that the sample aspect ratio set by the @code{setsar}
9760 filter may be changed by later filters in the filterchain, e.g. if
9761 another "setsar" or a "setdar" filter is applied.
9762
9763 It accepts the following parameters:
9764
9765 @table @option
9766 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
9767 Set the aspect ratio used by the filter.
9768
9769 The parameter can be a floating point number string, an expression, or
9770 a string of the form @var{num}:@var{den}, where @var{num} and
9771 @var{den} are the numerator and denominator of the aspect ratio. If
9772 the parameter is not specified, it is assumed the value "0".
9773 In case the form "@var{num}:@var{den}" is used, the @code{:} character
9774 should be escaped.
9775
9776 @item max
9777 Set the maximum integer value to use for expressing numerator and
9778 denominator when reducing the expressed aspect ratio to a rational.
9779 Default value is @code{100}.
9780
9781 @end table
9782
9783 The parameter @var{sar} is an expression containing
9784 the following constants:
9785
9786 @table @option
9787 @item E, PI, PHI
9788 These are approximated values for the mathematical constants e
9789 (Euler's number), pi (Greek pi), and phi (the golden ratio).
9790
9791 @item w, h
9792 The input width and height.
9793
9794 @item a
9795 These are the same as @var{w} / @var{h}.
9796
9797 @item sar
9798 The input sample aspect ratio.
9799
9800 @item dar
9801 The input display aspect ratio. It is the same as
9802 (@var{w} / @var{h}) * @var{sar}.
9803
9804 @item hsub, vsub
9805 Horizontal and vertical chroma subsample values. For example, for the
9806 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9807 @end table
9808
9809 @subsection Examples
9810
9811 @itemize
9812
9813 @item
9814 To change the display aspect ratio to 16:9, specify one of the following:
9815 @example
9816 setdar=dar=1.77777
9817 setdar=dar=16/9
9818 setdar=dar=1.77777
9819 @end example
9820
9821 @item
9822 To change the sample aspect ratio to 10:11, specify:
9823 @example
9824 setsar=sar=10/11
9825 @end example
9826
9827 @item
9828 To set a display aspect ratio of 16:9, and specify a maximum integer value of
9829 1000 in the aspect ratio reduction, use the command:
9830 @example
9831 setdar=ratio=16/9:max=1000
9832 @end example
9833
9834 @end itemize
9835
9836 @anchor{setfield}
9837 @section setfield
9838
9839 Force field for the output video frame.
9840
9841 The @code{setfield} filter marks the interlace type field for the
9842 output frames. It does not change the input frame, but only sets the
9843 corresponding property, which affects how the frame is treated by
9844 following filters (e.g. @code{fieldorder} or @code{yadif}).
9845
9846 The filter accepts the following options:
9847
9848 @table @option
9849
9850 @item mode
9851 Available values are:
9852
9853 @table @samp
9854 @item auto
9855 Keep the same field property.
9856
9857 @item bff
9858 Mark the frame as bottom-field-first.
9859
9860 @item tff
9861 Mark the frame as top-field-first.
9862
9863 @item prog
9864 Mark the frame as progressive.
9865 @end table
9866 @end table
9867
9868 @section showinfo
9869
9870 Show a line containing various information for each input video frame.
9871 The input video is not modified.
9872
9873 The shown line contains a sequence of key/value pairs of the form
9874 @var{key}:@var{value}.
9875
9876 The following values are shown in the output:
9877
9878 @table @option
9879 @item n
9880 The (sequential) number of the input frame, starting from 0.
9881
9882 @item pts
9883 The Presentation TimeStamp of the input frame, expressed as a number of
9884 time base units. The time base unit depends on the filter input pad.
9885
9886 @item pts_time
9887 The Presentation TimeStamp of the input frame, expressed as a number of
9888 seconds.
9889
9890 @item pos
9891 The position of the frame in the input stream, or -1 if this information is
9892 unavailable and/or meaningless (for example in case of synthetic video).
9893
9894 @item fmt
9895 The pixel format name.
9896
9897 @item sar
9898 The sample aspect ratio of the input frame, expressed in the form
9899 @var{num}/@var{den}.
9900
9901 @item s
9902 The size of the input frame. For the syntax of this option, check the
9903 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9904
9905 @item i
9906 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
9907 for bottom field first).
9908
9909 @item iskey
9910 This is 1 if the frame is a key frame, 0 otherwise.
9911
9912 @item type
9913 The picture type of the input frame ("I" for an I-frame, "P" for a
9914 P-frame, "B" for a B-frame, or "?" for an unknown type).
9915 Also refer to the documentation of the @code{AVPictureType} enum and of
9916 the @code{av_get_picture_type_char} function defined in
9917 @file{libavutil/avutil.h}.
9918
9919 @item checksum
9920 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
9921
9922 @item plane_checksum
9923 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
9924 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
9925 @end table
9926
9927 @section showpalette
9928
9929 Displays the 256 colors palette of each frame. This filter is only relevant for
9930 @var{pal8} pixel format frames.
9931
9932 It accepts the following option:
9933
9934 @table @option
9935 @item s
9936 Set the size of the box used to represent one palette color entry. Default is
9937 @code{30} (for a @code{30x30} pixel box).
9938 @end table
9939
9940 @section shuffleplanes
9941
9942 Reorder and/or duplicate video planes.
9943
9944 It accepts the following parameters:
9945
9946 @table @option
9947
9948 @item map0
9949 The index of the input plane to be used as the first output plane.
9950
9951 @item map1
9952 The index of the input plane to be used as the second output plane.
9953
9954 @item map2
9955 The index of the input plane to be used as the third output plane.
9956
9957 @item map3
9958 The index of the input plane to be used as the fourth output plane.
9959
9960 @end table
9961
9962 The first plane has the index 0. The default is to keep the input unchanged.
9963
9964 Swap the second and third planes of the input:
9965 @example
9966 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
9967 @end example
9968
9969 @anchor{signalstats}
9970 @section signalstats
9971 Evaluate various visual metrics that assist in determining issues associated
9972 with the digitization of analog video media.
9973
9974 By default the filter will log these metadata values:
9975
9976 @table @option
9977 @item YMIN
9978 Display the minimal Y value contained within the input frame. Expressed in
9979 range of [0-255].
9980
9981 @item YLOW
9982 Display the Y value at the 10% percentile within the input frame. Expressed in
9983 range of [0-255].
9984
9985 @item YAVG
9986 Display the average Y value within the input frame. Expressed in range of
9987 [0-255].
9988
9989 @item YHIGH
9990 Display the Y value at the 90% percentile within the input frame. Expressed in
9991 range of [0-255].
9992
9993 @item YMAX
9994 Display the maximum Y value contained within the input frame. Expressed in
9995 range of [0-255].
9996
9997 @item UMIN
9998 Display the minimal U value contained within the input frame. Expressed in
9999 range of [0-255].
10000
10001 @item ULOW
10002 Display the U value at the 10% percentile within the input frame. Expressed in
10003 range of [0-255].
10004
10005 @item UAVG
10006 Display the average U value within the input frame. Expressed in range of
10007 [0-255].
10008
10009 @item UHIGH
10010 Display the U value at the 90% percentile within the input frame. Expressed in
10011 range of [0-255].
10012
10013 @item UMAX
10014 Display the maximum U value contained within the input frame. Expressed in
10015 range of [0-255].
10016
10017 @item VMIN
10018 Display the minimal V value contained within the input frame. Expressed in
10019 range of [0-255].
10020
10021 @item VLOW
10022 Display the V value at the 10% percentile within the input frame. Expressed in
10023 range of [0-255].
10024
10025 @item VAVG
10026 Display the average V value within the input frame. Expressed in range of
10027 [0-255].
10028
10029 @item VHIGH
10030 Display the V value at the 90% percentile within the input frame. Expressed in
10031 range of [0-255].
10032
10033 @item VMAX
10034 Display the maximum V value contained within the input frame. Expressed in
10035 range of [0-255].
10036
10037 @item SATMIN
10038 Display the minimal saturation value contained within the input frame.
10039 Expressed in range of [0-~181.02].
10040
10041 @item SATLOW
10042 Display the saturation value at the 10% percentile within the input frame.
10043 Expressed in range of [0-~181.02].
10044
10045 @item SATAVG
10046 Display the average saturation value within the input frame. Expressed in range
10047 of [0-~181.02].
10048
10049 @item SATHIGH
10050 Display the saturation value at the 90% percentile within the input frame.
10051 Expressed in range of [0-~181.02].
10052
10053 @item SATMAX
10054 Display the maximum saturation value contained within the input frame.
10055 Expressed in range of [0-~181.02].
10056
10057 @item HUEMED
10058 Display the median value for hue within the input frame. Expressed in range of
10059 [0-360].
10060
10061 @item HUEAVG
10062 Display the average value for hue within the input frame. Expressed in range of
10063 [0-360].
10064
10065 @item YDIF
10066 Display the average of sample value difference between all values of the Y
10067 plane in the current frame and corresponding values of the previous input frame.
10068 Expressed in range of [0-255].
10069
10070 @item UDIF
10071 Display the average of sample value difference between all values of the U
10072 plane in the current frame and corresponding values of the previous input frame.
10073 Expressed in range of [0-255].
10074
10075 @item VDIF
10076 Display the average of sample value difference between all values of the V
10077 plane in the current frame and corresponding values of the previous input frame.
10078 Expressed in range of [0-255].
10079 @end table
10080
10081 The filter accepts the following options:
10082
10083 @table @option
10084 @item stat
10085 @item out
10086
10087 @option{stat} specify an additional form of image analysis.
10088 @option{out} output video with the specified type of pixel highlighted.
10089
10090 Both options accept the following values:
10091
10092 @table @samp
10093 @item tout
10094 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
10095 unlike the neighboring pixels of the same field. Examples of temporal outliers
10096 include the results of video dropouts, head clogs, or tape tracking issues.
10097
10098 @item vrep
10099 Identify @var{vertical line repetition}. Vertical line repetition includes
10100 similar rows of pixels within a frame. In born-digital video vertical line
10101 repetition is common, but this pattern is uncommon in video digitized from an
10102 analog source. When it occurs in video that results from the digitization of an
10103 analog source it can indicate concealment from a dropout compensator.
10104
10105 @item brng
10106 Identify pixels that fall outside of legal broadcast range.
10107 @end table
10108
10109 @item color, c
10110 Set the highlight color for the @option{out} option. The default color is
10111 yellow.
10112 @end table
10113
10114 @subsection Examples
10115
10116 @itemize
10117 @item
10118 Output data of various video metrics:
10119 @example
10120 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
10121 @end example
10122
10123 @item
10124 Output specific data about the minimum and maximum values of the Y plane per frame:
10125 @example
10126 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
10127 @end example
10128
10129 @item
10130 Playback video while highlighting pixels that are outside of broadcast range in red.
10131 @example
10132 ffplay example.mov -vf signalstats="out=brng:color=red"
10133 @end example
10134
10135 @item
10136 Playback video with signalstats metadata drawn over the frame.
10137 @example
10138 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
10139 @end example
10140
10141 The contents of signalstat_drawtext.txt used in the command are:
10142 @example
10143 time %@{pts:hms@}
10144 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
10145 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
10146 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
10147 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
10148
10149 @end example
10150 @end itemize
10151
10152 @anchor{smartblur}
10153 @section smartblur
10154
10155 Blur the input video without impacting the outlines.
10156
10157 It accepts the following options:
10158
10159 @table @option
10160 @item luma_radius, lr
10161 Set the luma radius. The option value must be a float number in
10162 the range [0.1,5.0] that specifies the variance of the gaussian filter
10163 used to blur the image (slower if larger). Default value is 1.0.
10164
10165 @item luma_strength, ls
10166 Set the luma strength. The option value must be a float number
10167 in the range [-1.0,1.0] that configures the blurring. A value included
10168 in [0.0,1.0] will blur the image whereas a value included in
10169 [-1.0,0.0] will sharpen the image. Default value is 1.0.
10170
10171 @item luma_threshold, lt
10172 Set the luma threshold used as a coefficient to determine
10173 whether a pixel should be blurred or not. The option value must be an
10174 integer in the range [-30,30]. A value of 0 will filter all the image,
10175 a value included in [0,30] will filter flat areas and a value included
10176 in [-30,0] will filter edges. Default value is 0.
10177
10178 @item chroma_radius, cr
10179 Set the chroma radius. The option value must be a float number in
10180 the range [0.1,5.0] that specifies the variance of the gaussian filter
10181 used to blur the image (slower if larger). Default value is 1.0.
10182
10183 @item chroma_strength, cs
10184 Set the chroma strength. The option value must be a float number
10185 in the range [-1.0,1.0] that configures the blurring. A value included
10186 in [0.0,1.0] will blur the image whereas a value included in
10187 [-1.0,0.0] will sharpen the image. Default value is 1.0.
10188
10189 @item chroma_threshold, ct
10190 Set the chroma threshold used as a coefficient to determine
10191 whether a pixel should be blurred or not. The option value must be an
10192 integer in the range [-30,30]. A value of 0 will filter all the image,
10193 a value included in [0,30] will filter flat areas and a value included
10194 in [-30,0] will filter edges. Default value is 0.
10195 @end table
10196
10197 If a chroma option is not explicitly set, the corresponding luma value
10198 is set.
10199
10200 @section ssim
10201
10202 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
10203
10204 This filter takes in input two input videos, the first input is
10205 considered the "main" source and is passed unchanged to the
10206 output. The second input is used as a "reference" video for computing
10207 the SSIM.
10208
10209 Both video inputs must have the same resolution and pixel format for
10210 this filter to work correctly. Also it assumes that both inputs
10211 have the same number of frames, which are compared one by one.
10212
10213 The filter stores the calculated SSIM of each frame.
10214
10215 The description of the accepted parameters follows.
10216
10217 @table @option
10218 @item stats_file, f
10219 If specified the filter will use the named file to save the SSIM of
10220 each individual frame.
10221 @end table
10222
10223 The file printed if @var{stats_file} is selected, contains a sequence of
10224 key/value pairs of the form @var{key}:@var{value} for each compared
10225 couple of frames.
10226
10227 A description of each shown parameter follows:
10228
10229 @table @option
10230 @item n
10231 sequential number of the input frame, starting from 1
10232
10233 @item Y, U, V, R, G, B
10234 SSIM of the compared frames for the component specified by the suffix.
10235
10236 @item All
10237 SSIM of the compared frames for the whole frame.
10238
10239 @item dB
10240 Same as above but in dB representation.
10241 @end table
10242
10243 For example:
10244 @example
10245 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10246 [main][ref] ssim="stats_file=stats.log" [out]
10247 @end example
10248
10249 On this example the input file being processed is compared with the
10250 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
10251 is stored in @file{stats.log}.
10252
10253 Another example with both psnr and ssim at same time:
10254 @example
10255 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
10256 @end example
10257
10258 @section stereo3d
10259
10260 Convert between different stereoscopic image formats.
10261
10262 The filters accept the following options:
10263
10264 @table @option
10265 @item in
10266 Set stereoscopic image format of input.
10267
10268 Available values for input image formats are:
10269 @table @samp
10270 @item sbsl
10271 side by side parallel (left eye left, right eye right)
10272
10273 @item sbsr
10274 side by side crosseye (right eye left, left eye right)
10275
10276 @item sbs2l
10277 side by side parallel with half width resolution
10278 (left eye left, right eye right)
10279
10280 @item sbs2r
10281 side by side crosseye with half width resolution
10282 (right eye left, left eye right)
10283
10284 @item abl
10285 above-below (left eye above, right eye below)
10286
10287 @item abr
10288 above-below (right eye above, left eye below)
10289
10290 @item ab2l
10291 above-below with half height resolution
10292 (left eye above, right eye below)
10293
10294 @item ab2r
10295 above-below with half height resolution
10296 (right eye above, left eye below)
10297
10298 @item al
10299 alternating frames (left eye first, right eye second)
10300
10301 @item ar
10302 alternating frames (right eye first, left eye second)
10303
10304 @item irl
10305 interleaved rows (left eye has top row, right eye starts on next row)
10306
10307 @item irr
10308 interleaved rows (right eye has top row, left eye starts on next row)
10309
10310 Default value is @samp{sbsl}.
10311 @end table
10312
10313 @item out
10314 Set stereoscopic image format of output.
10315
10316 Available values for output image formats are all the input formats as well as:
10317 @table @samp
10318 @item arbg
10319 anaglyph red/blue gray
10320 (red filter on left eye, blue filter on right eye)
10321
10322 @item argg
10323 anaglyph red/green gray
10324 (red filter on left eye, green filter on right eye)
10325
10326 @item arcg
10327 anaglyph red/cyan gray
10328 (red filter on left eye, cyan filter on right eye)
10329
10330 @item arch
10331 anaglyph red/cyan half colored
10332 (red filter on left eye, cyan filter on right eye)
10333
10334 @item arcc
10335 anaglyph red/cyan color
10336 (red filter on left eye, cyan filter on right eye)
10337
10338 @item arcd
10339 anaglyph red/cyan color optimized with the least squares projection of dubois
10340 (red filter on left eye, cyan filter on right eye)
10341
10342 @item agmg
10343 anaglyph green/magenta gray
10344 (green filter on left eye, magenta filter on right eye)
10345
10346 @item agmh
10347 anaglyph green/magenta half colored
10348 (green filter on left eye, magenta filter on right eye)
10349
10350 @item agmc
10351 anaglyph green/magenta colored
10352 (green filter on left eye, magenta filter on right eye)
10353
10354 @item agmd
10355 anaglyph green/magenta color optimized with the least squares projection of dubois
10356 (green filter on left eye, magenta filter on right eye)
10357
10358 @item aybg
10359 anaglyph yellow/blue gray
10360 (yellow filter on left eye, blue filter on right eye)
10361
10362 @item aybh
10363 anaglyph yellow/blue half colored
10364 (yellow filter on left eye, blue filter on right eye)
10365
10366 @item aybc
10367 anaglyph yellow/blue colored
10368 (yellow filter on left eye, blue filter on right eye)
10369
10370 @item aybd
10371 anaglyph yellow/blue color optimized with the least squares projection of dubois
10372 (yellow filter on left eye, blue filter on right eye)
10373
10374 @item ml
10375 mono output (left eye only)
10376
10377 @item mr
10378 mono output (right eye only)
10379
10380 @item chl
10381 checkerboard, left eye first
10382
10383 @item chr
10384 checkerboard, right eye first
10385
10386 @item icl
10387 interleaved columns, left eye first
10388
10389 @item icr
10390 interleaved columns, right eye first
10391 @end table
10392
10393 Default value is @samp{arcd}.
10394 @end table
10395
10396 @subsection Examples
10397
10398 @itemize
10399 @item
10400 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
10401 @example
10402 stereo3d=sbsl:aybd
10403 @end example
10404
10405 @item
10406 Convert input video from above bellow (left eye above, right eye below) to side by side crosseye.
10407 @example
10408 stereo3d=abl:sbsr
10409 @end example
10410 @end itemize
10411
10412 @anchor{spp}
10413 @section spp
10414
10415 Apply a simple postprocessing filter that compresses and decompresses the image
10416 at several (or - in the case of @option{quality} level @code{6} - all) shifts
10417 and average the results.
10418
10419 The filter accepts the following options:
10420
10421 @table @option
10422 @item quality
10423 Set quality. This option defines the number of levels for averaging. It accepts
10424 an integer in the range 0-6. If set to @code{0}, the filter will have no
10425 effect. A value of @code{6} means the higher quality. For each increment of
10426 that value the speed drops by a factor of approximately 2.  Default value is
10427 @code{3}.
10428
10429 @item qp
10430 Force a constant quantization parameter. If not set, the filter will use the QP
10431 from the video stream (if available).
10432
10433 @item mode
10434 Set thresholding mode. Available modes are:
10435
10436 @table @samp
10437 @item hard
10438 Set hard thresholding (default).
10439 @item soft
10440 Set soft thresholding (better de-ringing effect, but likely blurrier).
10441 @end table
10442
10443 @item use_bframe_qp
10444 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
10445 option may cause flicker since the B-Frames have often larger QP. Default is
10446 @code{0} (not enabled).
10447 @end table
10448
10449 @anchor{subtitles}
10450 @section subtitles
10451
10452 Draw subtitles on top of input video using the libass library.
10453
10454 To enable compilation of this filter you need to configure FFmpeg with
10455 @code{--enable-libass}. This filter also requires a build with libavcodec and
10456 libavformat to convert the passed subtitles file to ASS (Advanced Substation
10457 Alpha) subtitles format.
10458
10459 The filter accepts the following options:
10460
10461 @table @option
10462 @item filename, f
10463 Set the filename of the subtitle file to read. It must be specified.
10464
10465 @item original_size
10466 Specify the size of the original video, the video for which the ASS file
10467 was composed. For the syntax of this option, check the
10468 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10469 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
10470 correctly scale the fonts if the aspect ratio has been changed.
10471
10472 @item fontsdir
10473 Set a directory path containing fonts that can be used by the filter.
10474 These fonts will be used in addition to whatever the font provider uses.
10475
10476 @item charenc
10477 Set subtitles input character encoding. @code{subtitles} filter only. Only
10478 useful if not UTF-8.
10479
10480 @item stream_index, si
10481 Set subtitles stream index. @code{subtitles} filter only.
10482
10483 @item force_style
10484 Override default style or script info parameters of the subtitles. It accepts a
10485 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
10486 @end table
10487
10488 If the first key is not specified, it is assumed that the first value
10489 specifies the @option{filename}.
10490
10491 For example, to render the file @file{sub.srt} on top of the input
10492 video, use the command:
10493 @example
10494 subtitles=sub.srt
10495 @end example
10496
10497 which is equivalent to:
10498 @example
10499 subtitles=filename=sub.srt
10500 @end example
10501
10502 To render the default subtitles stream from file @file{video.mkv}, use:
10503 @example
10504 subtitles=video.mkv
10505 @end example
10506
10507 To render the second subtitles stream from that file, use:
10508 @example
10509 subtitles=video.mkv:si=1
10510 @end example
10511
10512 To make the subtitles stream from @file{sub.srt} appear in transparent green
10513 @code{DejaVu Serif}, use:
10514 @example
10515 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
10516 @end example
10517
10518 @section super2xsai
10519
10520 Scale the input by 2x and smooth using the Super2xSaI (Scale and
10521 Interpolate) pixel art scaling algorithm.
10522
10523 Useful for enlarging pixel art images without reducing sharpness.
10524
10525 @section swapuv
10526 Swap U & V plane.
10527
10528 @section telecine
10529
10530 Apply telecine process to the video.
10531
10532 This filter accepts the following options:
10533
10534 @table @option
10535 @item first_field
10536 @table @samp
10537 @item top, t
10538 top field first
10539 @item bottom, b
10540 bottom field first
10541 The default value is @code{top}.
10542 @end table
10543
10544 @item pattern
10545 A string of numbers representing the pulldown pattern you wish to apply.
10546 The default value is @code{23}.
10547 @end table
10548
10549 @example
10550 Some typical patterns:
10551
10552 NTSC output (30i):
10553 27.5p: 32222
10554 24p: 23 (classic)
10555 24p: 2332 (preferred)
10556 20p: 33
10557 18p: 334
10558 16p: 3444
10559
10560 PAL output (25i):
10561 27.5p: 12222
10562 24p: 222222222223 ("Euro pulldown")
10563 16.67p: 33
10564 16p: 33333334
10565 @end example
10566
10567 @section thumbnail
10568 Select the most representative frame in a given sequence of consecutive frames.
10569
10570 The filter accepts the following options:
10571
10572 @table @option
10573 @item n
10574 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
10575 will pick one of them, and then handle the next batch of @var{n} frames until
10576 the end. Default is @code{100}.
10577 @end table
10578
10579 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
10580 value will result in a higher memory usage, so a high value is not recommended.
10581
10582 @subsection Examples
10583
10584 @itemize
10585 @item
10586 Extract one picture each 50 frames:
10587 @example
10588 thumbnail=50
10589 @end example
10590
10591 @item
10592 Complete example of a thumbnail creation with @command{ffmpeg}:
10593 @example
10594 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
10595 @end example
10596 @end itemize
10597
10598 @section tile
10599
10600 Tile several successive frames together.
10601
10602 The filter accepts the following options:
10603
10604 @table @option
10605
10606 @item layout
10607 Set the grid size (i.e. the number of lines and columns). For the syntax of
10608 this option, check the
10609 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10610
10611 @item nb_frames
10612 Set the maximum number of frames to render in the given area. It must be less
10613 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
10614 the area will be used.
10615
10616 @item margin
10617 Set the outer border margin in pixels.
10618
10619 @item padding
10620 Set the inner border thickness (i.e. the number of pixels between frames). For
10621 more advanced padding options (such as having different values for the edges),
10622 refer to the pad video filter.
10623
10624 @item color
10625 Specify the color of the unused area. For the syntax of this option, check the
10626 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
10627 is "black".
10628 @end table
10629
10630 @subsection Examples
10631
10632 @itemize
10633 @item
10634 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
10635 @example
10636 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
10637 @end example
10638 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
10639 duplicating each output frame to accommodate the originally detected frame
10640 rate.
10641
10642 @item
10643 Display @code{5} pictures in an area of @code{3x2} frames,
10644 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
10645 mixed flat and named options:
10646 @example
10647 tile=3x2:nb_frames=5:padding=7:margin=2
10648 @end example
10649 @end itemize
10650
10651 @section tinterlace
10652
10653 Perform various types of temporal field interlacing.
10654
10655 Frames are counted starting from 1, so the first input frame is
10656 considered odd.
10657
10658 The filter accepts the following options:
10659
10660 @table @option
10661
10662 @item mode
10663 Specify the mode of the interlacing. This option can also be specified
10664 as a value alone. See below for a list of values for this option.
10665
10666 Available values are:
10667
10668 @table @samp
10669 @item merge, 0
10670 Move odd frames into the upper field, even into the lower field,
10671 generating a double height frame at half frame rate.
10672 @example
10673  ------> time
10674 Input:
10675 Frame 1         Frame 2         Frame 3         Frame 4
10676
10677 11111           22222           33333           44444
10678 11111           22222           33333           44444
10679 11111           22222           33333           44444
10680 11111           22222           33333           44444
10681
10682 Output:
10683 11111                           33333
10684 22222                           44444
10685 11111                           33333
10686 22222                           44444
10687 11111                           33333
10688 22222                           44444
10689 11111                           33333
10690 22222                           44444
10691 @end example
10692
10693 @item drop_odd, 1
10694 Only output even frames, odd frames are dropped, generating a frame with
10695 unchanged height at half frame rate.
10696
10697 @example
10698  ------> time
10699 Input:
10700 Frame 1         Frame 2         Frame 3         Frame 4
10701
10702 11111           22222           33333           44444
10703 11111           22222           33333           44444
10704 11111           22222           33333           44444
10705 11111           22222           33333           44444
10706
10707 Output:
10708                 22222                           44444
10709                 22222                           44444
10710                 22222                           44444
10711                 22222                           44444
10712 @end example
10713
10714 @item drop_even, 2
10715 Only output odd frames, even frames are dropped, generating a frame with
10716 unchanged height at half frame rate.
10717
10718 @example
10719  ------> time
10720 Input:
10721 Frame 1         Frame 2         Frame 3         Frame 4
10722
10723 11111           22222           33333           44444
10724 11111           22222           33333           44444
10725 11111           22222           33333           44444
10726 11111           22222           33333           44444
10727
10728 Output:
10729 11111                           33333
10730 11111                           33333
10731 11111                           33333
10732 11111                           33333
10733 @end example
10734
10735 @item pad, 3
10736 Expand each frame to full height, but pad alternate lines with black,
10737 generating a frame with double height at the same input frame rate.
10738
10739 @example
10740  ------> time
10741 Input:
10742 Frame 1         Frame 2         Frame 3         Frame 4
10743
10744 11111           22222           33333           44444
10745 11111           22222           33333           44444
10746 11111           22222           33333           44444
10747 11111           22222           33333           44444
10748
10749 Output:
10750 11111           .....           33333           .....
10751 .....           22222           .....           44444
10752 11111           .....           33333           .....
10753 .....           22222           .....           44444
10754 11111           .....           33333           .....
10755 .....           22222           .....           44444
10756 11111           .....           33333           .....
10757 .....           22222           .....           44444
10758 @end example
10759
10760
10761 @item interleave_top, 4
10762 Interleave the upper field from odd frames with the lower field from
10763 even frames, generating a frame with unchanged height at half frame rate.
10764
10765 @example
10766  ------> time
10767 Input:
10768 Frame 1         Frame 2         Frame 3         Frame 4
10769
10770 11111<-         22222           33333<-         44444
10771 11111           22222<-         33333           44444<-
10772 11111<-         22222           33333<-         44444
10773 11111           22222<-         33333           44444<-
10774
10775 Output:
10776 11111                           33333
10777 22222                           44444
10778 11111                           33333
10779 22222                           44444
10780 @end example
10781
10782
10783 @item interleave_bottom, 5
10784 Interleave the lower field from odd frames with the upper field from
10785 even frames, generating a frame with unchanged height at half frame rate.
10786
10787 @example
10788  ------> time
10789 Input:
10790 Frame 1         Frame 2         Frame 3         Frame 4
10791
10792 11111           22222<-         33333           44444<-
10793 11111<-         22222           33333<-         44444
10794 11111           22222<-         33333           44444<-
10795 11111<-         22222           33333<-         44444
10796
10797 Output:
10798 22222                           44444
10799 11111                           33333
10800 22222                           44444
10801 11111                           33333
10802 @end example
10803
10804
10805 @item interlacex2, 6
10806 Double frame rate with unchanged height. Frames are inserted each
10807 containing the second temporal field from the previous input frame and
10808 the first temporal field from the next input frame. This mode relies on
10809 the top_field_first flag. Useful for interlaced video displays with no
10810 field synchronisation.
10811
10812 @example
10813  ------> time
10814 Input:
10815 Frame 1         Frame 2         Frame 3         Frame 4
10816
10817 11111           22222           33333           44444
10818  11111           22222           33333           44444
10819 11111           22222           33333           44444
10820  11111           22222           33333           44444
10821
10822 Output:
10823 11111   22222   22222   33333   33333   44444   44444
10824  11111   11111   22222   22222   33333   33333   44444
10825 11111   22222   22222   33333   33333   44444   44444
10826  11111   11111   22222   22222   33333   33333   44444
10827 @end example
10828
10829 @item mergex2, 7
10830 Move odd frames into the upper field, even into the lower field,
10831 generating a double height frame at same frame rate.
10832 @example
10833  ------> time
10834 Input:
10835 Frame 1         Frame 2         Frame 3         Frame 4
10836
10837 11111           22222           33333           44444
10838 11111           22222           33333           44444
10839 11111           22222           33333           44444
10840 11111           22222           33333           44444
10841
10842 Output:
10843 11111           33333           33333           55555
10844 22222           22222           44444           44444
10845 11111           33333           33333           55555
10846 22222           22222           44444           44444
10847 11111           33333           33333           55555
10848 22222           22222           44444           44444
10849 11111           33333           33333           55555
10850 22222           22222           44444           44444
10851 @end example
10852
10853 @end table
10854
10855 Numeric values are deprecated but are accepted for backward
10856 compatibility reasons.
10857
10858 Default mode is @code{merge}.
10859
10860 @item flags
10861 Specify flags influencing the filter process.
10862
10863 Available value for @var{flags} is:
10864
10865 @table @option
10866 @item low_pass_filter, vlfp
10867 Enable vertical low-pass filtering in the filter.
10868 Vertical low-pass filtering is required when creating an interlaced
10869 destination from a progressive source which contains high-frequency
10870 vertical detail. Filtering will reduce interlace 'twitter' and Moire
10871 patterning.
10872
10873 Vertical low-pass filtering can only be enabled for @option{mode}
10874 @var{interleave_top} and @var{interleave_bottom}.
10875
10876 @end table
10877 @end table
10878
10879 @section transpose
10880
10881 Transpose rows with columns in the input video and optionally flip it.
10882
10883 It accepts the following parameters:
10884
10885 @table @option
10886
10887 @item dir
10888 Specify the transposition direction.
10889
10890 Can assume the following values:
10891 @table @samp
10892 @item 0, 4, cclock_flip
10893 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
10894 @example
10895 L.R     L.l
10896 . . ->  . .
10897 l.r     R.r
10898 @end example
10899
10900 @item 1, 5, clock
10901 Rotate by 90 degrees clockwise, that is:
10902 @example
10903 L.R     l.L
10904 . . ->  . .
10905 l.r     r.R
10906 @end example
10907
10908 @item 2, 6, cclock
10909 Rotate by 90 degrees counterclockwise, that is:
10910 @example
10911 L.R     R.r
10912 . . ->  . .
10913 l.r     L.l
10914 @end example
10915
10916 @item 3, 7, clock_flip
10917 Rotate by 90 degrees clockwise and vertically flip, that is:
10918 @example
10919 L.R     r.R
10920 . . ->  . .
10921 l.r     l.L
10922 @end example
10923 @end table
10924
10925 For values between 4-7, the transposition is only done if the input
10926 video geometry is portrait and not landscape. These values are
10927 deprecated, the @code{passthrough} option should be used instead.
10928
10929 Numerical values are deprecated, and should be dropped in favor of
10930 symbolic constants.
10931
10932 @item passthrough
10933 Do not apply the transposition if the input geometry matches the one
10934 specified by the specified value. It accepts the following values:
10935 @table @samp
10936 @item none
10937 Always apply transposition.
10938 @item portrait
10939 Preserve portrait geometry (when @var{height} >= @var{width}).
10940 @item landscape
10941 Preserve landscape geometry (when @var{width} >= @var{height}).
10942 @end table
10943
10944 Default value is @code{none}.
10945 @end table
10946
10947 For example to rotate by 90 degrees clockwise and preserve portrait
10948 layout:
10949 @example
10950 transpose=dir=1:passthrough=portrait
10951 @end example
10952
10953 The command above can also be specified as:
10954 @example
10955 transpose=1:portrait
10956 @end example
10957
10958 @section trim
10959 Trim the input so that the output contains one continuous subpart of the input.
10960
10961 It accepts the following parameters:
10962 @table @option
10963 @item start
10964 Specify the time of the start of the kept section, i.e. the frame with the
10965 timestamp @var{start} will be the first frame in the output.
10966
10967 @item end
10968 Specify the time of the first frame that will be dropped, i.e. the frame
10969 immediately preceding the one with the timestamp @var{end} will be the last
10970 frame in the output.
10971
10972 @item start_pts
10973 This is the same as @var{start}, except this option sets the start timestamp
10974 in timebase units instead of seconds.
10975
10976 @item end_pts
10977 This is the same as @var{end}, except this option sets the end timestamp
10978 in timebase units instead of seconds.
10979
10980 @item duration
10981 The maximum duration of the output in seconds.
10982
10983 @item start_frame
10984 The number of the first frame that should be passed to the output.
10985
10986 @item end_frame
10987 The number of the first frame that should be dropped.
10988 @end table
10989
10990 @option{start}, @option{end}, and @option{duration} are expressed as time
10991 duration specifications; see
10992 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
10993 for the accepted syntax.
10994
10995 Note that the first two sets of the start/end options and the @option{duration}
10996 option look at the frame timestamp, while the _frame variants simply count the
10997 frames that pass through the filter. Also note that this filter does not modify
10998 the timestamps. If you wish for the output timestamps to start at zero, insert a
10999 setpts filter after the trim filter.
11000
11001 If multiple start or end options are set, this filter tries to be greedy and
11002 keep all the frames that match at least one of the specified constraints. To keep
11003 only the part that matches all the constraints at once, chain multiple trim
11004 filters.
11005
11006 The defaults are such that all the input is kept. So it is possible to set e.g.
11007 just the end values to keep everything before the specified time.
11008
11009 Examples:
11010 @itemize
11011 @item
11012 Drop everything except the second minute of input:
11013 @example
11014 ffmpeg -i INPUT -vf trim=60:120
11015 @end example
11016
11017 @item
11018 Keep only the first second:
11019 @example
11020 ffmpeg -i INPUT -vf trim=duration=1
11021 @end example
11022
11023 @end itemize
11024
11025
11026 @anchor{unsharp}
11027 @section unsharp
11028
11029 Sharpen or blur the input video.
11030
11031 It accepts the following parameters:
11032
11033 @table @option
11034 @item luma_msize_x, lx
11035 Set the luma matrix horizontal size. It must be an odd integer between
11036 3 and 63. The default value is 5.
11037
11038 @item luma_msize_y, ly
11039 Set the luma matrix vertical size. It must be an odd integer between 3
11040 and 63. The default value is 5.
11041
11042 @item luma_amount, la
11043 Set the luma effect strength. It must be a floating point number, reasonable
11044 values lay between -1.5 and 1.5.
11045
11046 Negative values will blur the input video, while positive values will
11047 sharpen it, a value of zero will disable the effect.
11048
11049 Default value is 1.0.
11050
11051 @item chroma_msize_x, cx
11052 Set the chroma matrix horizontal size. It must be an odd integer
11053 between 3 and 63. The default value is 5.
11054
11055 @item chroma_msize_y, cy
11056 Set the chroma matrix vertical size. It must be an odd integer
11057 between 3 and 63. The default value is 5.
11058
11059 @item chroma_amount, ca
11060 Set the chroma effect strength. It must be a floating point number, reasonable
11061 values lay between -1.5 and 1.5.
11062
11063 Negative values will blur the input video, while positive values will
11064 sharpen it, a value of zero will disable the effect.
11065
11066 Default value is 0.0.
11067
11068 @item opencl
11069 If set to 1, specify using OpenCL capabilities, only available if
11070 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
11071
11072 @end table
11073
11074 All parameters are optional and default to the equivalent of the
11075 string '5:5:1.0:5:5:0.0'.
11076
11077 @subsection Examples
11078
11079 @itemize
11080 @item
11081 Apply strong luma sharpen effect:
11082 @example
11083 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
11084 @end example
11085
11086 @item
11087 Apply a strong blur of both luma and chroma parameters:
11088 @example
11089 unsharp=7:7:-2:7:7:-2
11090 @end example
11091 @end itemize
11092
11093 @section uspp
11094
11095 Apply ultra slow/simple postprocessing filter that compresses and decompresses
11096 the image at several (or - in the case of @option{quality} level @code{8} - all)
11097 shifts and average the results.
11098
11099 The way this differs from the behavior of spp is that uspp actually encodes &
11100 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
11101 DCT similar to MJPEG.
11102
11103 The filter accepts the following options:
11104
11105 @table @option
11106 @item quality
11107 Set quality. This option defines the number of levels for averaging. It accepts
11108 an integer in the range 0-8. If set to @code{0}, the filter will have no
11109 effect. A value of @code{8} means the higher quality. For each increment of
11110 that value the speed drops by a factor of approximately 2.  Default value is
11111 @code{3}.
11112
11113 @item qp
11114 Force a constant quantization parameter. If not set, the filter will use the QP
11115 from the video stream (if available).
11116 @end table
11117
11118 @section vectorscope
11119
11120 Display 2 color component values in the two dimensional graph (which is called
11121 a vectorscope).
11122
11123 This filter accepts the following options:
11124
11125 @table @option
11126 @item mode, m
11127 Set vectorscope mode.
11128
11129 It accepts the following values:
11130 @table @samp
11131 @item gray
11132 Gray values are displayed on graph, higher brightness means more pixels have
11133 same component color value on location in graph. This is the default mode.
11134
11135 @item color
11136 Gray values are displayed on graph. Surrounding pixels values which are not
11137 present in video frame are drawn in gradient of 2 color components which are
11138 set by option @code{x} and @code{y}.
11139
11140 @item color2
11141 Actual color components values present in video frame are displayed on graph.
11142
11143 @item color3
11144 Similar as color2 but higher frequency of same values @code{x} and @code{y}
11145 on graph increases value of another color component, which is luminance by
11146 default values of @code{x} and @code{y}.
11147
11148 @item color4
11149 Actual colors present in video frame are displayed on graph. If two different
11150 colors map to same position on graph then color with higher value of component
11151 not present in graph is picked.
11152 @end table
11153
11154 @item x
11155 Set which color component will be represented on X-axis. Default is @code{1}.
11156
11157 @item y
11158 Set which color component will be represented on Y-axis. Default is @code{2}.
11159
11160 @item intensity, i
11161 Set intensity, used by modes: gray, color and color3 for increasing brightness
11162 of color component which represents frequency of (X, Y) location in graph.
11163
11164 @item envelope, e
11165 @table @samp
11166 @item none
11167 No envelope, this is default.
11168
11169 @item instant
11170 Instant envelope, even darkest single pixel will be clearly highlighted.
11171
11172 @item peak
11173 Hold maximum and minimum values presented in graph over time. This way you
11174 can still spot out of range values without constantly looking at vectorscope.
11175
11176 @item peak+instant
11177 Peak and instant envelope combined together.
11178 @end table
11179 @end table
11180
11181 @anchor{vidstabdetect}
11182 @section vidstabdetect
11183
11184 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
11185 @ref{vidstabtransform} for pass 2.
11186
11187 This filter generates a file with relative translation and rotation
11188 transform information about subsequent frames, which is then used by
11189 the @ref{vidstabtransform} filter.
11190
11191 To enable compilation of this filter you need to configure FFmpeg with
11192 @code{--enable-libvidstab}.
11193
11194 This filter accepts the following options:
11195
11196 @table @option
11197 @item result
11198 Set the path to the file used to write the transforms information.
11199 Default value is @file{transforms.trf}.
11200
11201 @item shakiness
11202 Set how shaky the video is and how quick the camera is. It accepts an
11203 integer in the range 1-10, a value of 1 means little shakiness, a
11204 value of 10 means strong shakiness. Default value is 5.
11205
11206 @item accuracy
11207 Set the accuracy of the detection process. It must be a value in the
11208 range 1-15. A value of 1 means low accuracy, a value of 15 means high
11209 accuracy. Default value is 15.
11210
11211 @item stepsize
11212 Set stepsize of the search process. The region around minimum is
11213 scanned with 1 pixel resolution. Default value is 6.
11214
11215 @item mincontrast
11216 Set minimum contrast. Below this value a local measurement field is
11217 discarded. Must be a floating point value in the range 0-1. Default
11218 value is 0.3.
11219
11220 @item tripod
11221 Set reference frame number for tripod mode.
11222
11223 If enabled, the motion of the frames is compared to a reference frame
11224 in the filtered stream, identified by the specified number. The idea
11225 is to compensate all movements in a more-or-less static scene and keep
11226 the camera view absolutely still.
11227
11228 If set to 0, it is disabled. The frames are counted starting from 1.
11229
11230 @item show
11231 Show fields and transforms in the resulting frames. It accepts an
11232 integer in the range 0-2. Default value is 0, which disables any
11233 visualization.
11234 @end table
11235
11236 @subsection Examples
11237
11238 @itemize
11239 @item
11240 Use default values:
11241 @example
11242 vidstabdetect
11243 @end example
11244
11245 @item
11246 Analyze strongly shaky movie and put the results in file
11247 @file{mytransforms.trf}:
11248 @example
11249 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
11250 @end example
11251
11252 @item
11253 Visualize the result of internal transformations in the resulting
11254 video:
11255 @example
11256 vidstabdetect=show=1
11257 @end example
11258
11259 @item
11260 Analyze a video with medium shakiness using @command{ffmpeg}:
11261 @example
11262 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
11263 @end example
11264 @end itemize
11265
11266 @anchor{vidstabtransform}
11267 @section vidstabtransform
11268
11269 Video stabilization/deshaking: pass 2 of 2,
11270 see @ref{vidstabdetect} for pass 1.
11271
11272 Read a file with transform information for each frame and
11273 apply/compensate them. Together with the @ref{vidstabdetect}
11274 filter this can be used to deshake videos. See also
11275 @url{http://public.hronopik.de/vid.stab}. It is important to also use
11276 the @ref{unsharp} filter, see below.
11277
11278 To enable compilation of this filter you need to configure FFmpeg with
11279 @code{--enable-libvidstab}.
11280
11281 @subsection Options
11282
11283 @table @option
11284 @item input
11285 Set path to the file used to read the transforms. Default value is
11286 @file{transforms.trf}.
11287
11288 @item smoothing
11289 Set the number of frames (value*2 + 1) used for lowpass filtering the
11290 camera movements. Default value is 10.
11291
11292 For example a number of 10 means that 21 frames are used (10 in the
11293 past and 10 in the future) to smoothen the motion in the video. A
11294 larger value leads to a smoother video, but limits the acceleration of
11295 the camera (pan/tilt movements). 0 is a special case where a static
11296 camera is simulated.
11297
11298 @item optalgo
11299 Set the camera path optimization algorithm.
11300
11301 Accepted values are:
11302 @table @samp
11303 @item gauss
11304 gaussian kernel low-pass filter on camera motion (default)
11305 @item avg
11306 averaging on transformations
11307 @end table
11308
11309 @item maxshift
11310 Set maximal number of pixels to translate frames. Default value is -1,
11311 meaning no limit.
11312
11313 @item maxangle
11314 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
11315 value is -1, meaning no limit.
11316
11317 @item crop
11318 Specify how to deal with borders that may be visible due to movement
11319 compensation.
11320
11321 Available values are:
11322 @table @samp
11323 @item keep
11324 keep image information from previous frame (default)
11325 @item black
11326 fill the border black
11327 @end table
11328
11329 @item invert
11330 Invert transforms if set to 1. Default value is 0.
11331
11332 @item relative
11333 Consider transforms as relative to previous frame if set to 1,
11334 absolute if set to 0. Default value is 0.
11335
11336 @item zoom
11337 Set percentage to zoom. A positive value will result in a zoom-in
11338 effect, a negative value in a zoom-out effect. Default value is 0 (no
11339 zoom).
11340
11341 @item optzoom
11342 Set optimal zooming to avoid borders.
11343
11344 Accepted values are:
11345 @table @samp
11346 @item 0
11347 disabled
11348 @item 1
11349 optimal static zoom value is determined (only very strong movements
11350 will lead to visible borders) (default)
11351 @item 2
11352 optimal adaptive zoom value is determined (no borders will be
11353 visible), see @option{zoomspeed}
11354 @end table
11355
11356 Note that the value given at zoom is added to the one calculated here.
11357
11358 @item zoomspeed
11359 Set percent to zoom maximally each frame (enabled when
11360 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
11361 0.25.
11362
11363 @item interpol
11364 Specify type of interpolation.
11365
11366 Available values are:
11367 @table @samp
11368 @item no
11369 no interpolation
11370 @item linear
11371 linear only horizontal
11372 @item bilinear
11373 linear in both directions (default)
11374 @item bicubic
11375 cubic in both directions (slow)
11376 @end table
11377
11378 @item tripod
11379 Enable virtual tripod mode if set to 1, which is equivalent to
11380 @code{relative=0:smoothing=0}. Default value is 0.
11381
11382 Use also @code{tripod} option of @ref{vidstabdetect}.
11383
11384 @item debug
11385 Increase log verbosity if set to 1. Also the detected global motions
11386 are written to the temporary file @file{global_motions.trf}. Default
11387 value is 0.
11388 @end table
11389
11390 @subsection Examples
11391
11392 @itemize
11393 @item
11394 Use @command{ffmpeg} for a typical stabilization with default values:
11395 @example
11396 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
11397 @end example
11398
11399 Note the use of the @ref{unsharp} filter which is always recommended.
11400
11401 @item
11402 Zoom in a bit more and load transform data from a given file:
11403 @example
11404 vidstabtransform=zoom=5:input="mytransforms.trf"
11405 @end example
11406
11407 @item
11408 Smoothen the video even more:
11409 @example
11410 vidstabtransform=smoothing=30
11411 @end example
11412 @end itemize
11413
11414 @section vflip
11415
11416 Flip the input video vertically.
11417
11418 For example, to vertically flip a video with @command{ffmpeg}:
11419 @example
11420 ffmpeg -i in.avi -vf "vflip" out.avi
11421 @end example
11422
11423 @anchor{vignette}
11424 @section vignette
11425
11426 Make or reverse a natural vignetting effect.
11427
11428 The filter accepts the following options:
11429
11430 @table @option
11431 @item angle, a
11432 Set lens angle expression as a number of radians.
11433
11434 The value is clipped in the @code{[0,PI/2]} range.
11435
11436 Default value: @code{"PI/5"}
11437
11438 @item x0
11439 @item y0
11440 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
11441 by default.
11442
11443 @item mode
11444 Set forward/backward mode.
11445
11446 Available modes are:
11447 @table @samp
11448 @item forward
11449 The larger the distance from the central point, the darker the image becomes.
11450
11451 @item backward
11452 The larger the distance from the central point, the brighter the image becomes.
11453 This can be used to reverse a vignette effect, though there is no automatic
11454 detection to extract the lens @option{angle} and other settings (yet). It can
11455 also be used to create a burning effect.
11456 @end table
11457
11458 Default value is @samp{forward}.
11459
11460 @item eval
11461 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
11462
11463 It accepts the following values:
11464 @table @samp
11465 @item init
11466 Evaluate expressions only once during the filter initialization.
11467
11468 @item frame
11469 Evaluate expressions for each incoming frame. This is way slower than the
11470 @samp{init} mode since it requires all the scalers to be re-computed, but it
11471 allows advanced dynamic expressions.
11472 @end table
11473
11474 Default value is @samp{init}.
11475
11476 @item dither
11477 Set dithering to reduce the circular banding effects. Default is @code{1}
11478 (enabled).
11479
11480 @item aspect
11481 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
11482 Setting this value to the SAR of the input will make a rectangular vignetting
11483 following the dimensions of the video.
11484
11485 Default is @code{1/1}.
11486 @end table
11487
11488 @subsection Expressions
11489
11490 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
11491 following parameters.
11492
11493 @table @option
11494 @item w
11495 @item h
11496 input width and height
11497
11498 @item n
11499 the number of input frame, starting from 0
11500
11501 @item pts
11502 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
11503 @var{TB} units, NAN if undefined
11504
11505 @item r
11506 frame rate of the input video, NAN if the input frame rate is unknown
11507
11508 @item t
11509 the PTS (Presentation TimeStamp) of the filtered video frame,
11510 expressed in seconds, NAN if undefined
11511
11512 @item tb
11513 time base of the input video
11514 @end table
11515
11516
11517 @subsection Examples
11518
11519 @itemize
11520 @item
11521 Apply simple strong vignetting effect:
11522 @example
11523 vignette=PI/4
11524 @end example
11525
11526 @item
11527 Make a flickering vignetting:
11528 @example
11529 vignette='PI/4+random(1)*PI/50':eval=frame
11530 @end example
11531
11532 @end itemize
11533
11534 @section vstack
11535 Stack input videos vertically.
11536
11537 All streams must be of same pixel format and of same width.
11538
11539 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
11540 to create same output.
11541
11542 The filter accept the following option:
11543
11544 @table @option
11545 @item nb_inputs
11546 Set number of input streams. Default is 2.
11547 @end table
11548
11549 @section w3fdif
11550
11551 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
11552 Deinterlacing Filter").
11553
11554 Based on the process described by Martin Weston for BBC R&D, and
11555 implemented based on the de-interlace algorithm written by Jim
11556 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
11557 uses filter coefficients calculated by BBC R&D.
11558
11559 There are two sets of filter coefficients, so called "simple":
11560 and "complex". Which set of filter coefficients is used can
11561 be set by passing an optional parameter:
11562
11563 @table @option
11564 @item filter
11565 Set the interlacing filter coefficients. Accepts one of the following values:
11566
11567 @table @samp
11568 @item simple
11569 Simple filter coefficient set.
11570 @item complex
11571 More-complex filter coefficient set.
11572 @end table
11573 Default value is @samp{complex}.
11574
11575 @item deint
11576 Specify which frames to deinterlace. Accept one of the following values:
11577
11578 @table @samp
11579 @item all
11580 Deinterlace all frames,
11581 @item interlaced
11582 Only deinterlace frames marked as interlaced.
11583 @end table
11584
11585 Default value is @samp{all}.
11586 @end table
11587
11588 @section waveform
11589 Video waveform monitor.
11590
11591 The waveform monitor plots color component intensity. By default luminance
11592 only. Each column of the waveform corresponds to a column of pixels in the
11593 source video.
11594
11595 It accepts the following options:
11596
11597 @table @option
11598 @item mode, m
11599 Can be either @code{row}, or @code{column}. Default is @code{column}.
11600 In row mode, the graph on the left side represents color component value 0 and
11601 the right side represents value = 255. In column mode, the top side represents
11602 color component value = 0 and bottom side represents value = 255.
11603
11604 @item intensity, i
11605 Set intensity. Smaller values are useful to find out how many values of the same
11606 luminance are distributed across input rows/columns.
11607 Default value is @code{0.04}. Allowed range is [0, 1].
11608
11609 @item mirror, r
11610 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
11611 In mirrored mode, higher values will be represented on the left
11612 side for @code{row} mode and at the top for @code{column} mode. Default is
11613 @code{1} (mirrored).
11614
11615 @item display, d
11616 Set display mode.
11617 It accepts the following values:
11618 @table @samp
11619 @item overlay
11620 Presents information identical to that in the @code{parade}, except
11621 that the graphs representing color components are superimposed directly
11622 over one another.
11623
11624 This display mode makes it easier to spot relative differences or similarities
11625 in overlapping areas of the color components that are supposed to be identical,
11626 such as neutral whites, grays, or blacks.
11627
11628 @item parade
11629 Display separate graph for the color components side by side in
11630 @code{row} mode or one below the other in @code{column} mode.
11631
11632 Using this display mode makes it easy to spot color casts in the highlights
11633 and shadows of an image, by comparing the contours of the top and the bottom
11634 graphs of each waveform. Since whites, grays, and blacks are characterized
11635 by exactly equal amounts of red, green, and blue, neutral areas of the picture
11636 should display three waveforms of roughly equal width/height. If not, the
11637 correction is easy to perform by making level adjustments the three waveforms.
11638 @end table
11639 Default is @code{parade}.
11640
11641 @item components, c
11642 Set which color components to display. Default is 1, which means only luminance
11643 or red color component if input is in RGB colorspace. If is set for example to
11644 7 it will display all 3 (if) available color components.
11645
11646 @item envelope, e
11647 @table @samp
11648 @item none
11649 No envelope, this is default.
11650
11651 @item instant
11652 Instant envelope, minimum and maximum values presented in graph will be easily
11653 visible even with small @code{step} value.
11654
11655 @item peak
11656 Hold minimum and maximum values presented in graph across time. This way you
11657 can still spot out of range values without constantly looking at waveforms.
11658
11659 @item peak+instant
11660 Peak and instant envelope combined together.
11661 @end table
11662
11663 @item filter, f
11664 @table @samp
11665 @item lowpass
11666 No filtering, this is default.
11667
11668 @item flat
11669 Luma and chroma combined together.
11670
11671 @item aflat
11672 Similar as above, but shows difference between blue and red chroma.
11673
11674 @item chroma
11675 Displays only chroma.
11676
11677 @item achroma
11678 Similar as above, but shows difference between blue and red chroma.
11679
11680 @item color
11681 Displays actual color value on waveform.
11682 @end table
11683 @end table
11684
11685 @section xbr
11686 Apply the xBR high-quality magnification filter which is designed for pixel
11687 art. It follows a set of edge-detection rules, see
11688 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
11689
11690 It accepts the following option:
11691
11692 @table @option
11693 @item n
11694 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
11695 @code{3xBR} and @code{4} for @code{4xBR}.
11696 Default is @code{3}.
11697 @end table
11698
11699 @anchor{yadif}
11700 @section yadif
11701
11702 Deinterlace the input video ("yadif" means "yet another deinterlacing
11703 filter").
11704
11705 It accepts the following parameters:
11706
11707
11708 @table @option
11709
11710 @item mode
11711 The interlacing mode to adopt. It accepts one of the following values:
11712
11713 @table @option
11714 @item 0, send_frame
11715 Output one frame for each frame.
11716 @item 1, send_field
11717 Output one frame for each field.
11718 @item 2, send_frame_nospatial
11719 Like @code{send_frame}, but it skips the spatial interlacing check.
11720 @item 3, send_field_nospatial
11721 Like @code{send_field}, but it skips the spatial interlacing check.
11722 @end table
11723
11724 The default value is @code{send_frame}.
11725
11726 @item parity
11727 The picture field parity assumed for the input interlaced video. It accepts one
11728 of the following values:
11729
11730 @table @option
11731 @item 0, tff
11732 Assume the top field is first.
11733 @item 1, bff
11734 Assume the bottom field is first.
11735 @item -1, auto
11736 Enable automatic detection of field parity.
11737 @end table
11738
11739 The default value is @code{auto}.
11740 If the interlacing is unknown or the decoder does not export this information,
11741 top field first will be assumed.
11742
11743 @item deint
11744 Specify which frames to deinterlace. Accept one of the following
11745 values:
11746
11747 @table @option
11748 @item 0, all
11749 Deinterlace all frames.
11750 @item 1, interlaced
11751 Only deinterlace frames marked as interlaced.
11752 @end table
11753
11754 The default value is @code{all}.
11755 @end table
11756
11757 @section zoompan
11758
11759 Apply Zoom & Pan effect.
11760
11761 This filter accepts the following options:
11762
11763 @table @option
11764 @item zoom, z
11765 Set the zoom expression. Default is 1.
11766
11767 @item x
11768 @item y
11769 Set the x and y expression. Default is 0.
11770
11771 @item d
11772 Set the duration expression in number of frames.
11773 This sets for how many number of frames effect will last for
11774 single input image.
11775
11776 @item s
11777 Set the output image size, default is 'hd720'.
11778 @end table
11779
11780 Each expression can contain the following constants:
11781
11782 @table @option
11783 @item in_w, iw
11784 Input width.
11785
11786 @item in_h, ih
11787 Input height.
11788
11789 @item out_w, ow
11790 Output width.
11791
11792 @item out_h, oh
11793 Output height.
11794
11795 @item in
11796 Input frame count.
11797
11798 @item on
11799 Output frame count.
11800
11801 @item x
11802 @item y
11803 Last calculated 'x' and 'y' position from 'x' and 'y' expression
11804 for current input frame.
11805
11806 @item px
11807 @item py
11808 'x' and 'y' of last output frame of previous input frame or 0 when there was
11809 not yet such frame (first input frame).
11810
11811 @item zoom
11812 Last calculated zoom from 'z' expression for current input frame.
11813
11814 @item pzoom
11815 Last calculated zoom of last output frame of previous input frame.
11816
11817 @item duration
11818 Number of output frames for current input frame. Calculated from 'd' expression
11819 for each input frame.
11820
11821 @item pduration
11822 number of output frames created for previous input frame
11823
11824 @item a
11825 Rational number: input width / input height
11826
11827 @item sar
11828 sample aspect ratio
11829
11830 @item dar
11831 display aspect ratio
11832
11833 @end table
11834
11835 @subsection Examples
11836
11837 @itemize
11838 @item
11839 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
11840 @example
11841 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
11842 @end example
11843
11844 @item
11845 Zoom-in up to 1.5 and pan always at center of picture:
11846 @example
11847 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
11848 @end example
11849 @end itemize
11850
11851 @c man end VIDEO FILTERS
11852
11853 @chapter Video Sources
11854 @c man begin VIDEO SOURCES
11855
11856 Below is a description of the currently available video sources.
11857
11858 @section buffer
11859
11860 Buffer video frames, and make them available to the filter chain.
11861
11862 This source is mainly intended for a programmatic use, in particular
11863 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
11864
11865 It accepts the following parameters:
11866
11867 @table @option
11868
11869 @item video_size
11870 Specify the size (width and height) of the buffered video frames. For the
11871 syntax of this option, check the
11872 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11873
11874 @item width
11875 The input video width.
11876
11877 @item height
11878 The input video height.
11879
11880 @item pix_fmt
11881 A string representing the pixel format of the buffered video frames.
11882 It may be a number corresponding to a pixel format, or a pixel format
11883 name.
11884
11885 @item time_base
11886 Specify the timebase assumed by the timestamps of the buffered frames.
11887
11888 @item frame_rate
11889 Specify the frame rate expected for the video stream.
11890
11891 @item pixel_aspect, sar
11892 The sample (pixel) aspect ratio of the input video.
11893
11894 @item sws_param
11895 Specify the optional parameters to be used for the scale filter which
11896 is automatically inserted when an input change is detected in the
11897 input size or format.
11898 @end table
11899
11900 For example:
11901 @example
11902 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
11903 @end example
11904
11905 will instruct the source to accept video frames with size 320x240 and
11906 with format "yuv410p", assuming 1/24 as the timestamps timebase and
11907 square pixels (1:1 sample aspect ratio).
11908 Since the pixel format with name "yuv410p" corresponds to the number 6
11909 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
11910 this example corresponds to:
11911 @example
11912 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
11913 @end example
11914
11915 Alternatively, the options can be specified as a flat string, but this
11916 syntax is deprecated:
11917
11918 @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}]
11919
11920 @section cellauto
11921
11922 Create a pattern generated by an elementary cellular automaton.
11923
11924 The initial state of the cellular automaton can be defined through the
11925 @option{filename}, and @option{pattern} options. If such options are
11926 not specified an initial state is created randomly.
11927
11928 At each new frame a new row in the video is filled with the result of
11929 the cellular automaton next generation. The behavior when the whole
11930 frame is filled is defined by the @option{scroll} option.
11931
11932 This source accepts the following options:
11933
11934 @table @option
11935 @item filename, f
11936 Read the initial cellular automaton state, i.e. the starting row, from
11937 the specified file.
11938 In the file, each non-whitespace character is considered an alive
11939 cell, a newline will terminate the row, and further characters in the
11940 file will be ignored.
11941
11942 @item pattern, p
11943 Read the initial cellular automaton state, i.e. the starting row, from
11944 the specified string.
11945
11946 Each non-whitespace character in the string is considered an alive
11947 cell, a newline will terminate the row, and further characters in the
11948 string will be ignored.
11949
11950 @item rate, r
11951 Set the video rate, that is the number of frames generated per second.
11952 Default is 25.
11953
11954 @item random_fill_ratio, ratio
11955 Set the random fill ratio for the initial cellular automaton row. It
11956 is a floating point number value ranging from 0 to 1, defaults to
11957 1/PHI.
11958
11959 This option is ignored when a file or a pattern is specified.
11960
11961 @item random_seed, seed
11962 Set the seed for filling randomly the initial row, must be an integer
11963 included between 0 and UINT32_MAX. If not specified, or if explicitly
11964 set to -1, the filter will try to use a good random seed on a best
11965 effort basis.
11966
11967 @item rule
11968 Set the cellular automaton rule, it is a number ranging from 0 to 255.
11969 Default value is 110.
11970
11971 @item size, s
11972 Set the size of the output video. For the syntax of this option, check the
11973 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11974
11975 If @option{filename} or @option{pattern} is specified, the size is set
11976 by default to the width of the specified initial state row, and the
11977 height is set to @var{width} * PHI.
11978
11979 If @option{size} is set, it must contain the width of the specified
11980 pattern string, and the specified pattern will be centered in the
11981 larger row.
11982
11983 If a filename or a pattern string is not specified, the size value
11984 defaults to "320x518" (used for a randomly generated initial state).
11985
11986 @item scroll
11987 If set to 1, scroll the output upward when all the rows in the output
11988 have been already filled. If set to 0, the new generated row will be
11989 written over the top row just after the bottom row is filled.
11990 Defaults to 1.
11991
11992 @item start_full, full
11993 If set to 1, completely fill the output with generated rows before
11994 outputting the first frame.
11995 This is the default behavior, for disabling set the value to 0.
11996
11997 @item stitch
11998 If set to 1, stitch the left and right row edges together.
11999 This is the default behavior, for disabling set the value to 0.
12000 @end table
12001
12002 @subsection Examples
12003
12004 @itemize
12005 @item
12006 Read the initial state from @file{pattern}, and specify an output of
12007 size 200x400.
12008 @example
12009 cellauto=f=pattern:s=200x400
12010 @end example
12011
12012 @item
12013 Generate a random initial row with a width of 200 cells, with a fill
12014 ratio of 2/3:
12015 @example
12016 cellauto=ratio=2/3:s=200x200
12017 @end example
12018
12019 @item
12020 Create a pattern generated by rule 18 starting by a single alive cell
12021 centered on an initial row with width 100:
12022 @example
12023 cellauto=p=@@:s=100x400:full=0:rule=18
12024 @end example
12025
12026 @item
12027 Specify a more elaborated initial pattern:
12028 @example
12029 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
12030 @end example
12031
12032 @end itemize
12033
12034 @section mandelbrot
12035
12036 Generate a Mandelbrot set fractal, and progressively zoom towards the
12037 point specified with @var{start_x} and @var{start_y}.
12038
12039 This source accepts the following options:
12040
12041 @table @option
12042
12043 @item end_pts
12044 Set the terminal pts value. Default value is 400.
12045
12046 @item end_scale
12047 Set the terminal scale value.
12048 Must be a floating point value. Default value is 0.3.
12049
12050 @item inner
12051 Set the inner coloring mode, that is the algorithm used to draw the
12052 Mandelbrot fractal internal region.
12053
12054 It shall assume one of the following values:
12055 @table @option
12056 @item black
12057 Set black mode.
12058 @item convergence
12059 Show time until convergence.
12060 @item mincol
12061 Set color based on point closest to the origin of the iterations.
12062 @item period
12063 Set period mode.
12064 @end table
12065
12066 Default value is @var{mincol}.
12067
12068 @item bailout
12069 Set the bailout value. Default value is 10.0.
12070
12071 @item maxiter
12072 Set the maximum of iterations performed by the rendering
12073 algorithm. Default value is 7189.
12074
12075 @item outer
12076 Set outer coloring mode.
12077 It shall assume one of following values:
12078 @table @option
12079 @item iteration_count
12080 Set iteration cound mode.
12081 @item normalized_iteration_count
12082 set normalized iteration count mode.
12083 @end table
12084 Default value is @var{normalized_iteration_count}.
12085
12086 @item rate, r
12087 Set frame rate, expressed as number of frames per second. Default
12088 value is "25".
12089
12090 @item size, s
12091 Set frame size. For the syntax of this option, check the "Video
12092 size" section in the ffmpeg-utils manual. Default value is "640x480".
12093
12094 @item start_scale
12095 Set the initial scale value. Default value is 3.0.
12096
12097 @item start_x
12098 Set the initial x position. Must be a floating point value between
12099 -100 and 100. Default value is -0.743643887037158704752191506114774.
12100
12101 @item start_y
12102 Set the initial y position. Must be a floating point value between
12103 -100 and 100. Default value is -0.131825904205311970493132056385139.
12104 @end table
12105
12106 @section mptestsrc
12107
12108 Generate various test patterns, as generated by the MPlayer test filter.
12109
12110 The size of the generated video is fixed, and is 256x256.
12111 This source is useful in particular for testing encoding features.
12112
12113 This source accepts the following options:
12114
12115 @table @option
12116
12117 @item rate, r
12118 Specify the frame rate of the sourced video, as the number of frames
12119 generated per second. It has to be a string in the format
12120 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
12121 number or a valid video frame rate abbreviation. The default value is
12122 "25".
12123
12124 @item duration, d
12125 Set the duration of the sourced video. See
12126 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12127 for the accepted syntax.
12128
12129 If not specified, or the expressed duration is negative, the video is
12130 supposed to be generated forever.
12131
12132 @item test, t
12133
12134 Set the number or the name of the test to perform. Supported tests are:
12135 @table @option
12136 @item dc_luma
12137 @item dc_chroma
12138 @item freq_luma
12139 @item freq_chroma
12140 @item amp_luma
12141 @item amp_chroma
12142 @item cbp
12143 @item mv
12144 @item ring1
12145 @item ring2
12146 @item all
12147
12148 @end table
12149
12150 Default value is "all", which will cycle through the list of all tests.
12151 @end table
12152
12153 Some examples:
12154 @example
12155 mptestsrc=t=dc_luma
12156 @end example
12157
12158 will generate a "dc_luma" test pattern.
12159
12160 @section frei0r_src
12161
12162 Provide a frei0r source.
12163
12164 To enable compilation of this filter you need to install the frei0r
12165 header and configure FFmpeg with @code{--enable-frei0r}.
12166
12167 This source accepts the following parameters:
12168
12169 @table @option
12170
12171 @item size
12172 The size of the video to generate. For the syntax of this option, check the
12173 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12174
12175 @item framerate
12176 The framerate of the generated video. It may be a string of the form
12177 @var{num}/@var{den} or a frame rate abbreviation.
12178
12179 @item filter_name
12180 The name to the frei0r source to load. For more information regarding frei0r and
12181 how to set the parameters, read the @ref{frei0r} section in the video filters
12182 documentation.
12183
12184 @item filter_params
12185 A '|'-separated list of parameters to pass to the frei0r source.
12186
12187 @end table
12188
12189 For example, to generate a frei0r partik0l source with size 200x200
12190 and frame rate 10 which is overlaid on the overlay filter main input:
12191 @example
12192 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
12193 @end example
12194
12195 @section life
12196
12197 Generate a life pattern.
12198
12199 This source is based on a generalization of John Conway's life game.
12200
12201 The sourced input represents a life grid, each pixel represents a cell
12202 which can be in one of two possible states, alive or dead. Every cell
12203 interacts with its eight neighbours, which are the cells that are
12204 horizontally, vertically, or diagonally adjacent.
12205
12206 At each interaction the grid evolves according to the adopted rule,
12207 which specifies the number of neighbor alive cells which will make a
12208 cell stay alive or born. The @option{rule} option allows one to specify
12209 the rule to adopt.
12210
12211 This source accepts the following options:
12212
12213 @table @option
12214 @item filename, f
12215 Set the file from which to read the initial grid state. In the file,
12216 each non-whitespace character is considered an alive cell, and newline
12217 is used to delimit the end of each row.
12218
12219 If this option is not specified, the initial grid is generated
12220 randomly.
12221
12222 @item rate, r
12223 Set the video rate, that is the number of frames generated per second.
12224 Default is 25.
12225
12226 @item random_fill_ratio, ratio
12227 Set the random fill ratio for the initial random grid. It is a
12228 floating point number value ranging from 0 to 1, defaults to 1/PHI.
12229 It is ignored when a file is specified.
12230
12231 @item random_seed, seed
12232 Set the seed for filling the initial random grid, must be an integer
12233 included between 0 and UINT32_MAX. If not specified, or if explicitly
12234 set to -1, the filter will try to use a good random seed on a best
12235 effort basis.
12236
12237 @item rule
12238 Set the life rule.
12239
12240 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
12241 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
12242 @var{NS} specifies the number of alive neighbor cells which make a
12243 live cell stay alive, and @var{NB} the number of alive neighbor cells
12244 which make a dead cell to become alive (i.e. to "born").
12245 "s" and "b" can be used in place of "S" and "B", respectively.
12246
12247 Alternatively a rule can be specified by an 18-bits integer. The 9
12248 high order bits are used to encode the next cell state if it is alive
12249 for each number of neighbor alive cells, the low order bits specify
12250 the rule for "borning" new cells. Higher order bits encode for an
12251 higher number of neighbor cells.
12252 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
12253 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
12254
12255 Default value is "S23/B3", which is the original Conway's game of life
12256 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
12257 cells, and will born a new cell if there are three alive cells around
12258 a dead cell.
12259
12260 @item size, s
12261 Set the size of the output video. For the syntax of this option, check the
12262 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12263
12264 If @option{filename} is specified, the size is set by default to the
12265 same size of the input file. If @option{size} is set, it must contain
12266 the size specified in the input file, and the initial grid defined in
12267 that file is centered in the larger resulting area.
12268
12269 If a filename is not specified, the size value defaults to "320x240"
12270 (used for a randomly generated initial grid).
12271
12272 @item stitch
12273 If set to 1, stitch the left and right grid edges together, and the
12274 top and bottom edges also. Defaults to 1.
12275
12276 @item mold
12277 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
12278 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
12279 value from 0 to 255.
12280
12281 @item life_color
12282 Set the color of living (or new born) cells.
12283
12284 @item death_color
12285 Set the color of dead cells. If @option{mold} is set, this is the first color
12286 used to represent a dead cell.
12287
12288 @item mold_color
12289 Set mold color, for definitely dead and moldy cells.
12290
12291 For the syntax of these 3 color options, check the "Color" section in the
12292 ffmpeg-utils manual.
12293 @end table
12294
12295 @subsection Examples
12296
12297 @itemize
12298 @item
12299 Read a grid from @file{pattern}, and center it on a grid of size
12300 300x300 pixels:
12301 @example
12302 life=f=pattern:s=300x300
12303 @end example
12304
12305 @item
12306 Generate a random grid of size 200x200, with a fill ratio of 2/3:
12307 @example
12308 life=ratio=2/3:s=200x200
12309 @end example
12310
12311 @item
12312 Specify a custom rule for evolving a randomly generated grid:
12313 @example
12314 life=rule=S14/B34
12315 @end example
12316
12317 @item
12318 Full example with slow death effect (mold) using @command{ffplay}:
12319 @example
12320 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
12321 @end example
12322 @end itemize
12323
12324 @anchor{allrgb}
12325 @anchor{allyuv}
12326 @anchor{color}
12327 @anchor{haldclutsrc}
12328 @anchor{nullsrc}
12329 @anchor{rgbtestsrc}
12330 @anchor{smptebars}
12331 @anchor{smptehdbars}
12332 @anchor{testsrc}
12333 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
12334
12335 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
12336
12337 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
12338
12339 The @code{color} source provides an uniformly colored input.
12340
12341 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
12342 @ref{haldclut} filter.
12343
12344 The @code{nullsrc} source returns unprocessed video frames. It is
12345 mainly useful to be employed in analysis / debugging tools, or as the
12346 source for filters which ignore the input data.
12347
12348 The @code{rgbtestsrc} source generates an RGB test pattern useful for
12349 detecting RGB vs BGR issues. You should see a red, green and blue
12350 stripe from top to bottom.
12351
12352 The @code{smptebars} source generates a color bars pattern, based on
12353 the SMPTE Engineering Guideline EG 1-1990.
12354
12355 The @code{smptehdbars} source generates a color bars pattern, based on
12356 the SMPTE RP 219-2002.
12357
12358 The @code{testsrc} source generates a test video pattern, showing a
12359 color pattern, a scrolling gradient and a timestamp. This is mainly
12360 intended for testing purposes.
12361
12362 The sources accept the following parameters:
12363
12364 @table @option
12365
12366 @item color, c
12367 Specify the color of the source, only available in the @code{color}
12368 source. For the syntax of this option, check the "Color" section in the
12369 ffmpeg-utils manual.
12370
12371 @item level
12372 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
12373 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
12374 pixels to be used as identity matrix for 3D lookup tables. Each component is
12375 coded on a @code{1/(N*N)} scale.
12376
12377 @item size, s
12378 Specify the size of the sourced video. For the syntax of this option, check the
12379 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12380 The default value is @code{320x240}.
12381
12382 This option is not available with the @code{haldclutsrc} filter.
12383
12384 @item rate, r
12385 Specify the frame rate of the sourced video, as the number of frames
12386 generated per second. It has to be a string in the format
12387 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
12388 number or a valid video frame rate abbreviation. The default value is
12389 "25".
12390
12391 @item sar
12392 Set the sample aspect ratio of the sourced video.
12393
12394 @item duration, d
12395 Set the duration of the sourced video. See
12396 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12397 for the accepted syntax.
12398
12399 If not specified, or the expressed duration is negative, the video is
12400 supposed to be generated forever.
12401
12402 @item decimals, n
12403 Set the number of decimals to show in the timestamp, only available in the
12404 @code{testsrc} source.
12405
12406 The displayed timestamp value will correspond to the original
12407 timestamp value multiplied by the power of 10 of the specified
12408 value. Default value is 0.
12409 @end table
12410
12411 For example the following:
12412 @example
12413 testsrc=duration=5.3:size=qcif:rate=10
12414 @end example
12415
12416 will generate a video with a duration of 5.3 seconds, with size
12417 176x144 and a frame rate of 10 frames per second.
12418
12419 The following graph description will generate a red source
12420 with an opacity of 0.2, with size "qcif" and a frame rate of 10
12421 frames per second.
12422 @example
12423 color=c=red@@0.2:s=qcif:r=10
12424 @end example
12425
12426 If the input content is to be ignored, @code{nullsrc} can be used. The
12427 following command generates noise in the luminance plane by employing
12428 the @code{geq} filter:
12429 @example
12430 nullsrc=s=256x256, geq=random(1)*255:128:128
12431 @end example
12432
12433 @subsection Commands
12434
12435 The @code{color} source supports the following commands:
12436
12437 @table @option
12438 @item c, color
12439 Set the color of the created image. Accepts the same syntax of the
12440 corresponding @option{color} option.
12441 @end table
12442
12443 @c man end VIDEO SOURCES
12444
12445 @chapter Video Sinks
12446 @c man begin VIDEO SINKS
12447
12448 Below is a description of the currently available video sinks.
12449
12450 @section buffersink
12451
12452 Buffer video frames, and make them available to the end of the filter
12453 graph.
12454
12455 This sink is mainly intended for programmatic use, in particular
12456 through the interface defined in @file{libavfilter/buffersink.h}
12457 or the options system.
12458
12459 It accepts a pointer to an AVBufferSinkContext structure, which
12460 defines the incoming buffers' formats, to be passed as the opaque
12461 parameter to @code{avfilter_init_filter} for initialization.
12462
12463 @section nullsink
12464
12465 Null video sink: do absolutely nothing with the input video. It is
12466 mainly useful as a template and for use in analysis / debugging
12467 tools.
12468
12469 @c man end VIDEO SINKS
12470
12471 @chapter Multimedia Filters
12472 @c man begin MULTIMEDIA FILTERS
12473
12474 Below is a description of the currently available multimedia filters.
12475
12476 @section aphasemeter
12477
12478 Convert input audio to a video output, displaying the audio phase.
12479
12480 The filter accepts the following options:
12481
12482 @table @option
12483 @item rate, r
12484 Set the output frame rate. Default value is @code{25}.
12485
12486 @item size, s
12487 Set the video size for the output. For the syntax of this option, check the
12488 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12489 Default value is @code{800x400}.
12490
12491 @item rc
12492 @item gc
12493 @item bc
12494 Specify the red, green, blue contrast. Default values are @code{2},
12495 @code{7} and @code{1}.
12496 Allowed range is @code{[0, 255]}.
12497
12498 @item mpc
12499 Set color which will be used for drawing median phase. If color is
12500 @code{none} which is default, no median phase value will be drawn.
12501 @end table
12502
12503 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
12504 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
12505 The @code{-1} means left and right channels are completely out of phase and
12506 @code{1} means channels are in phase.
12507
12508 @section avectorscope
12509
12510 Convert input audio to a video output, representing the audio vector
12511 scope.
12512
12513 The filter is used to measure the difference between channels of stereo
12514 audio stream. A monoaural signal, consisting of identical left and right
12515 signal, results in straight vertical line. Any stereo separation is visible
12516 as a deviation from this line, creating a Lissajous figure.
12517 If the straight (or deviation from it) but horizontal line appears this
12518 indicates that the left and right channels are out of phase.
12519
12520 The filter accepts the following options:
12521
12522 @table @option
12523 @item mode, m
12524 Set the vectorscope mode.
12525
12526 Available values are:
12527 @table @samp
12528 @item lissajous
12529 Lissajous rotated by 45 degrees.
12530
12531 @item lissajous_xy
12532 Same as above but not rotated.
12533
12534 @item polar
12535 Shape resembling half of circle.
12536 @end table
12537
12538 Default value is @samp{lissajous}.
12539
12540 @item size, s
12541 Set the video size for the output. For the syntax of this option, check the
12542 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12543 Default value is @code{400x400}.
12544
12545 @item rate, r
12546 Set the output frame rate. Default value is @code{25}.
12547
12548 @item rc
12549 @item gc
12550 @item bc
12551 @item ac
12552 Specify the red, green, blue and alpha contrast. Default values are @code{40},
12553 @code{160}, @code{80} and @code{255}.
12554 Allowed range is @code{[0, 255]}.
12555
12556 @item rf
12557 @item gf
12558 @item bf
12559 @item af
12560 Specify the red, green, blue and alpha fade. Default values are @code{15},
12561 @code{10}, @code{5} and @code{5}.
12562 Allowed range is @code{[0, 255]}.
12563
12564 @item zoom
12565 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
12566 @end table
12567
12568 @subsection Examples
12569
12570 @itemize
12571 @item
12572 Complete example using @command{ffplay}:
12573 @example
12574 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
12575              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
12576 @end example
12577 @end itemize
12578
12579 @section concat
12580
12581 Concatenate audio and video streams, joining them together one after the
12582 other.
12583
12584 The filter works on segments of synchronized video and audio streams. All
12585 segments must have the same number of streams of each type, and that will
12586 also be the number of streams at output.
12587
12588 The filter accepts the following options:
12589
12590 @table @option
12591
12592 @item n
12593 Set the number of segments. Default is 2.
12594
12595 @item v
12596 Set the number of output video streams, that is also the number of video
12597 streams in each segment. Default is 1.
12598
12599 @item a
12600 Set the number of output audio streams, that is also the number of audio
12601 streams in each segment. Default is 0.
12602
12603 @item unsafe
12604 Activate unsafe mode: do not fail if segments have a different format.
12605
12606 @end table
12607
12608 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
12609 @var{a} audio outputs.
12610
12611 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
12612 segment, in the same order as the outputs, then the inputs for the second
12613 segment, etc.
12614
12615 Related streams do not always have exactly the same duration, for various
12616 reasons including codec frame size or sloppy authoring. For that reason,
12617 related synchronized streams (e.g. a video and its audio track) should be
12618 concatenated at once. The concat filter will use the duration of the longest
12619 stream in each segment (except the last one), and if necessary pad shorter
12620 audio streams with silence.
12621
12622 For this filter to work correctly, all segments must start at timestamp 0.
12623
12624 All corresponding streams must have the same parameters in all segments; the
12625 filtering system will automatically select a common pixel format for video
12626 streams, and a common sample format, sample rate and channel layout for
12627 audio streams, but other settings, such as resolution, must be converted
12628 explicitly by the user.
12629
12630 Different frame rates are acceptable but will result in variable frame rate
12631 at output; be sure to configure the output file to handle it.
12632
12633 @subsection Examples
12634
12635 @itemize
12636 @item
12637 Concatenate an opening, an episode and an ending, all in bilingual version
12638 (video in stream 0, audio in streams 1 and 2):
12639 @example
12640 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
12641   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
12642    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
12643   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
12644 @end example
12645
12646 @item
12647 Concatenate two parts, handling audio and video separately, using the
12648 (a)movie sources, and adjusting the resolution:
12649 @example
12650 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
12651 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
12652 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
12653 @end example
12654 Note that a desync will happen at the stitch if the audio and video streams
12655 do not have exactly the same duration in the first file.
12656
12657 @end itemize
12658
12659 @anchor{ebur128}
12660 @section ebur128
12661
12662 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
12663 it unchanged. By default, it logs a message at a frequency of 10Hz with the
12664 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
12665 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
12666
12667 The filter also has a video output (see the @var{video} option) with a real
12668 time graph to observe the loudness evolution. The graphic contains the logged
12669 message mentioned above, so it is not printed anymore when this option is set,
12670 unless the verbose logging is set. The main graphing area contains the
12671 short-term loudness (3 seconds of analysis), and the gauge on the right is for
12672 the momentary loudness (400 milliseconds).
12673
12674 More information about the Loudness Recommendation EBU R128 on
12675 @url{http://tech.ebu.ch/loudness}.
12676
12677 The filter accepts the following options:
12678
12679 @table @option
12680
12681 @item video
12682 Activate the video output. The audio stream is passed unchanged whether this
12683 option is set or no. The video stream will be the first output stream if
12684 activated. Default is @code{0}.
12685
12686 @item size
12687 Set the video size. This option is for video only. For the syntax of this
12688 option, check the
12689 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12690 Default and minimum resolution is @code{640x480}.
12691
12692 @item meter
12693 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
12694 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
12695 other integer value between this range is allowed.
12696
12697 @item metadata
12698 Set metadata injection. If set to @code{1}, the audio input will be segmented
12699 into 100ms output frames, each of them containing various loudness information
12700 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
12701
12702 Default is @code{0}.
12703
12704 @item framelog
12705 Force the frame logging level.
12706
12707 Available values are:
12708 @table @samp
12709 @item info
12710 information logging level
12711 @item verbose
12712 verbose logging level
12713 @end table
12714
12715 By default, the logging level is set to @var{info}. If the @option{video} or
12716 the @option{metadata} options are set, it switches to @var{verbose}.
12717
12718 @item peak
12719 Set peak mode(s).
12720
12721 Available modes can be cumulated (the option is a @code{flag} type). Possible
12722 values are:
12723 @table @samp
12724 @item none
12725 Disable any peak mode (default).
12726 @item sample
12727 Enable sample-peak mode.
12728
12729 Simple peak mode looking for the higher sample value. It logs a message
12730 for sample-peak (identified by @code{SPK}).
12731 @item true
12732 Enable true-peak mode.
12733
12734 If enabled, the peak lookup is done on an over-sampled version of the input
12735 stream for better peak accuracy. It logs a message for true-peak.
12736 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
12737 This mode requires a build with @code{libswresample}.
12738 @end table
12739
12740 @item dualmono
12741 Treat mono input files as "dual mono". If a mono file is intended for playback
12742 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
12743 If set to @code{true}, this option will compensate for this effect.
12744 Multi-channel input files are not effected by this option.
12745
12746 @item panlaw
12747 Set a specific pan law to be used for the measurement of dual mono files.
12748 This parameter is optional, and has a default value of -3.01dB.
12749 @end table
12750
12751 @subsection Examples
12752
12753 @itemize
12754 @item
12755 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
12756 @example
12757 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
12758 @end example
12759
12760 @item
12761 Run an analysis with @command{ffmpeg}:
12762 @example
12763 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
12764 @end example
12765 @end itemize
12766
12767 @section interleave, ainterleave
12768
12769 Temporally interleave frames from several inputs.
12770
12771 @code{interleave} works with video inputs, @code{ainterleave} with audio.
12772
12773 These filters read frames from several inputs and send the oldest
12774 queued frame to the output.
12775
12776 Input streams must have a well defined, monotonically increasing frame
12777 timestamp values.
12778
12779 In order to submit one frame to output, these filters need to enqueue
12780 at least one frame for each input, so they cannot work in case one
12781 input is not yet terminated and will not receive incoming frames.
12782
12783 For example consider the case when one input is a @code{select} filter
12784 which always drop input frames. The @code{interleave} filter will keep
12785 reading from that input, but it will never be able to send new frames
12786 to output until the input will send an end-of-stream signal.
12787
12788 Also, depending on inputs synchronization, the filters will drop
12789 frames in case one input receives more frames than the other ones, and
12790 the queue is already filled.
12791
12792 These filters accept the following options:
12793
12794 @table @option
12795 @item nb_inputs, n
12796 Set the number of different inputs, it is 2 by default.
12797 @end table
12798
12799 @subsection Examples
12800
12801 @itemize
12802 @item
12803 Interleave frames belonging to different streams using @command{ffmpeg}:
12804 @example
12805 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
12806 @end example
12807
12808 @item
12809 Add flickering blur effect:
12810 @example
12811 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
12812 @end example
12813 @end itemize
12814
12815 @section perms, aperms
12816
12817 Set read/write permissions for the output frames.
12818
12819 These filters are mainly aimed at developers to test direct path in the
12820 following filter in the filtergraph.
12821
12822 The filters accept the following options:
12823
12824 @table @option
12825 @item mode
12826 Select the permissions mode.
12827
12828 It accepts the following values:
12829 @table @samp
12830 @item none
12831 Do nothing. This is the default.
12832 @item ro
12833 Set all the output frames read-only.
12834 @item rw
12835 Set all the output frames directly writable.
12836 @item toggle
12837 Make the frame read-only if writable, and writable if read-only.
12838 @item random
12839 Set each output frame read-only or writable randomly.
12840 @end table
12841
12842 @item seed
12843 Set the seed for the @var{random} mode, must be an integer included between
12844 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
12845 @code{-1}, the filter will try to use a good random seed on a best effort
12846 basis.
12847 @end table
12848
12849 Note: in case of auto-inserted filter between the permission filter and the
12850 following one, the permission might not be received as expected in that
12851 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
12852 perms/aperms filter can avoid this problem.
12853
12854 @section select, aselect
12855
12856 Select frames to pass in output.
12857
12858 This filter accepts the following options:
12859
12860 @table @option
12861
12862 @item expr, e
12863 Set expression, which is evaluated for each input frame.
12864
12865 If the expression is evaluated to zero, the frame is discarded.
12866
12867 If the evaluation result is negative or NaN, the frame is sent to the
12868 first output; otherwise it is sent to the output with index
12869 @code{ceil(val)-1}, assuming that the input index starts from 0.
12870
12871 For example a value of @code{1.2} corresponds to the output with index
12872 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
12873
12874 @item outputs, n
12875 Set the number of outputs. The output to which to send the selected
12876 frame is based on the result of the evaluation. Default value is 1.
12877 @end table
12878
12879 The expression can contain the following constants:
12880
12881 @table @option
12882 @item n
12883 The (sequential) number of the filtered frame, starting from 0.
12884
12885 @item selected_n
12886 The (sequential) number of the selected frame, starting from 0.
12887
12888 @item prev_selected_n
12889 The sequential number of the last selected frame. It's NAN if undefined.
12890
12891 @item TB
12892 The timebase of the input timestamps.
12893
12894 @item pts
12895 The PTS (Presentation TimeStamp) of the filtered video frame,
12896 expressed in @var{TB} units. It's NAN if undefined.
12897
12898 @item t
12899 The PTS of the filtered video frame,
12900 expressed in seconds. It's NAN if undefined.
12901
12902 @item prev_pts
12903 The PTS of the previously filtered video frame. It's NAN if undefined.
12904
12905 @item prev_selected_pts
12906 The PTS of the last previously filtered video frame. It's NAN if undefined.
12907
12908 @item prev_selected_t
12909 The PTS of the last previously selected video frame. It's NAN if undefined.
12910
12911 @item start_pts
12912 The PTS of the first video frame in the video. It's NAN if undefined.
12913
12914 @item start_t
12915 The time of the first video frame in the video. It's NAN if undefined.
12916
12917 @item pict_type @emph{(video only)}
12918 The type of the filtered frame. It can assume one of the following
12919 values:
12920 @table @option
12921 @item I
12922 @item P
12923 @item B
12924 @item S
12925 @item SI
12926 @item SP
12927 @item BI
12928 @end table
12929
12930 @item interlace_type @emph{(video only)}
12931 The frame interlace type. It can assume one of the following values:
12932 @table @option
12933 @item PROGRESSIVE
12934 The frame is progressive (not interlaced).
12935 @item TOPFIRST
12936 The frame is top-field-first.
12937 @item BOTTOMFIRST
12938 The frame is bottom-field-first.
12939 @end table
12940
12941 @item consumed_sample_n @emph{(audio only)}
12942 the number of selected samples before the current frame
12943
12944 @item samples_n @emph{(audio only)}
12945 the number of samples in the current frame
12946
12947 @item sample_rate @emph{(audio only)}
12948 the input sample rate
12949
12950 @item key
12951 This is 1 if the filtered frame is a key-frame, 0 otherwise.
12952
12953 @item pos
12954 the position in the file of the filtered frame, -1 if the information
12955 is not available (e.g. for synthetic video)
12956
12957 @item scene @emph{(video only)}
12958 value between 0 and 1 to indicate a new scene; a low value reflects a low
12959 probability for the current frame to introduce a new scene, while a higher
12960 value means the current frame is more likely to be one (see the example below)
12961
12962 @end table
12963
12964 The default value of the select expression is "1".
12965
12966 @subsection Examples
12967
12968 @itemize
12969 @item
12970 Select all frames in input:
12971 @example
12972 select
12973 @end example
12974
12975 The example above is the same as:
12976 @example
12977 select=1
12978 @end example
12979
12980 @item
12981 Skip all frames:
12982 @example
12983 select=0
12984 @end example
12985
12986 @item
12987 Select only I-frames:
12988 @example
12989 select='eq(pict_type\,I)'
12990 @end example
12991
12992 @item
12993 Select one frame every 100:
12994 @example
12995 select='not(mod(n\,100))'
12996 @end example
12997
12998 @item
12999 Select only frames contained in the 10-20 time interval:
13000 @example
13001 select=between(t\,10\,20)
13002 @end example
13003
13004 @item
13005 Select only I frames contained in the 10-20 time interval:
13006 @example
13007 select=between(t\,10\,20)*eq(pict_type\,I)
13008 @end example
13009
13010 @item
13011 Select frames with a minimum distance of 10 seconds:
13012 @example
13013 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
13014 @end example
13015
13016 @item
13017 Use aselect to select only audio frames with samples number > 100:
13018 @example
13019 aselect='gt(samples_n\,100)'
13020 @end example
13021
13022 @item
13023 Create a mosaic of the first scenes:
13024 @example
13025 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
13026 @end example
13027
13028 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
13029 choice.
13030
13031 @item
13032 Send even and odd frames to separate outputs, and compose them:
13033 @example
13034 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
13035 @end example
13036 @end itemize
13037
13038 @section sendcmd, asendcmd
13039
13040 Send commands to filters in the filtergraph.
13041
13042 These filters read commands to be sent to other filters in the
13043 filtergraph.
13044
13045 @code{sendcmd} must be inserted between two video filters,
13046 @code{asendcmd} must be inserted between two audio filters, but apart
13047 from that they act the same way.
13048
13049 The specification of commands can be provided in the filter arguments
13050 with the @var{commands} option, or in a file specified by the
13051 @var{filename} option.
13052
13053 These filters accept the following options:
13054 @table @option
13055 @item commands, c
13056 Set the commands to be read and sent to the other filters.
13057 @item filename, f
13058 Set the filename of the commands to be read and sent to the other
13059 filters.
13060 @end table
13061
13062 @subsection Commands syntax
13063
13064 A commands description consists of a sequence of interval
13065 specifications, comprising a list of commands to be executed when a
13066 particular event related to that interval occurs. The occurring event
13067 is typically the current frame time entering or leaving a given time
13068 interval.
13069
13070 An interval is specified by the following syntax:
13071 @example
13072 @var{START}[-@var{END}] @var{COMMANDS};
13073 @end example
13074
13075 The time interval is specified by the @var{START} and @var{END} times.
13076 @var{END} is optional and defaults to the maximum time.
13077
13078 The current frame time is considered within the specified interval if
13079 it is included in the interval [@var{START}, @var{END}), that is when
13080 the time is greater or equal to @var{START} and is lesser than
13081 @var{END}.
13082
13083 @var{COMMANDS} consists of a sequence of one or more command
13084 specifications, separated by ",", relating to that interval.  The
13085 syntax of a command specification is given by:
13086 @example
13087 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
13088 @end example
13089
13090 @var{FLAGS} is optional and specifies the type of events relating to
13091 the time interval which enable sending the specified command, and must
13092 be a non-null sequence of identifier flags separated by "+" or "|" and
13093 enclosed between "[" and "]".
13094
13095 The following flags are recognized:
13096 @table @option
13097 @item enter
13098 The command is sent when the current frame timestamp enters the
13099 specified interval. In other words, the command is sent when the
13100 previous frame timestamp was not in the given interval, and the
13101 current is.
13102
13103 @item leave
13104 The command is sent when the current frame timestamp leaves the
13105 specified interval. In other words, the command is sent when the
13106 previous frame timestamp was in the given interval, and the
13107 current is not.
13108 @end table
13109
13110 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
13111 assumed.
13112
13113 @var{TARGET} specifies the target of the command, usually the name of
13114 the filter class or a specific filter instance name.
13115
13116 @var{COMMAND} specifies the name of the command for the target filter.
13117
13118 @var{ARG} is optional and specifies the optional list of argument for
13119 the given @var{COMMAND}.
13120
13121 Between one interval specification and another, whitespaces, or
13122 sequences of characters starting with @code{#} until the end of line,
13123 are ignored and can be used to annotate comments.
13124
13125 A simplified BNF description of the commands specification syntax
13126 follows:
13127 @example
13128 @var{COMMAND_FLAG}  ::= "enter" | "leave"
13129 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
13130 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
13131 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
13132 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
13133 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
13134 @end example
13135
13136 @subsection Examples
13137
13138 @itemize
13139 @item
13140 Specify audio tempo change at second 4:
13141 @example
13142 asendcmd=c='4.0 atempo tempo 1.5',atempo
13143 @end example
13144
13145 @item
13146 Specify a list of drawtext and hue commands in a file.
13147 @example
13148 # show text in the interval 5-10
13149 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
13150          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
13151
13152 # desaturate the image in the interval 15-20
13153 15.0-20.0 [enter] hue s 0,
13154           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
13155           [leave] hue s 1,
13156           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
13157
13158 # apply an exponential saturation fade-out effect, starting from time 25
13159 25 [enter] hue s exp(25-t)
13160 @end example
13161
13162 A filtergraph allowing to read and process the above command list
13163 stored in a file @file{test.cmd}, can be specified with:
13164 @example
13165 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
13166 @end example
13167 @end itemize
13168
13169 @anchor{setpts}
13170 @section setpts, asetpts
13171
13172 Change the PTS (presentation timestamp) of the input frames.
13173
13174 @code{setpts} works on video frames, @code{asetpts} on audio frames.
13175
13176 This filter accepts the following options:
13177
13178 @table @option
13179
13180 @item expr
13181 The expression which is evaluated for each frame to construct its timestamp.
13182
13183 @end table
13184
13185 The expression is evaluated through the eval API and can contain the following
13186 constants:
13187
13188 @table @option
13189 @item FRAME_RATE
13190 frame rate, only defined for constant frame-rate video
13191
13192 @item PTS
13193 The presentation timestamp in input
13194
13195 @item N
13196 The count of the input frame for video or the number of consumed samples,
13197 not including the current frame for audio, starting from 0.
13198
13199 @item NB_CONSUMED_SAMPLES
13200 The number of consumed samples, not including the current frame (only
13201 audio)
13202
13203 @item NB_SAMPLES, S
13204 The number of samples in the current frame (only audio)
13205
13206 @item SAMPLE_RATE, SR
13207 The audio sample rate.
13208
13209 @item STARTPTS
13210 The PTS of the first frame.
13211
13212 @item STARTT
13213 the time in seconds of the first frame
13214
13215 @item INTERLACED
13216 State whether the current frame is interlaced.
13217
13218 @item T
13219 the time in seconds of the current frame
13220
13221 @item POS
13222 original position in the file of the frame, or undefined if undefined
13223 for the current frame
13224
13225 @item PREV_INPTS
13226 The previous input PTS.
13227
13228 @item PREV_INT
13229 previous input time in seconds
13230
13231 @item PREV_OUTPTS
13232 The previous output PTS.
13233
13234 @item PREV_OUTT
13235 previous output time in seconds
13236
13237 @item RTCTIME
13238 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
13239 instead.
13240
13241 @item RTCSTART
13242 The wallclock (RTC) time at the start of the movie in microseconds.
13243
13244 @item TB
13245 The timebase of the input timestamps.
13246
13247 @end table
13248
13249 @subsection Examples
13250
13251 @itemize
13252 @item
13253 Start counting PTS from zero
13254 @example
13255 setpts=PTS-STARTPTS
13256 @end example
13257
13258 @item
13259 Apply fast motion effect:
13260 @example
13261 setpts=0.5*PTS
13262 @end example
13263
13264 @item
13265 Apply slow motion effect:
13266 @example
13267 setpts=2.0*PTS
13268 @end example
13269
13270 @item
13271 Set fixed rate of 25 frames per second:
13272 @example
13273 setpts=N/(25*TB)
13274 @end example
13275
13276 @item
13277 Set fixed rate 25 fps with some jitter:
13278 @example
13279 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
13280 @end example
13281
13282 @item
13283 Apply an offset of 10 seconds to the input PTS:
13284 @example
13285 setpts=PTS+10/TB
13286 @end example
13287
13288 @item
13289 Generate timestamps from a "live source" and rebase onto the current timebase:
13290 @example
13291 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
13292 @end example
13293
13294 @item
13295 Generate timestamps by counting samples:
13296 @example
13297 asetpts=N/SR/TB
13298 @end example
13299
13300 @end itemize
13301
13302 @section settb, asettb
13303
13304 Set the timebase to use for the output frames timestamps.
13305 It is mainly useful for testing timebase configuration.
13306
13307 It accepts the following parameters:
13308
13309 @table @option
13310
13311 @item expr, tb
13312 The expression which is evaluated into the output timebase.
13313
13314 @end table
13315
13316 The value for @option{tb} is an arithmetic expression representing a
13317 rational. The expression can contain the constants "AVTB" (the default
13318 timebase), "intb" (the input timebase) and "sr" (the sample rate,
13319 audio only). Default value is "intb".
13320
13321 @subsection Examples
13322
13323 @itemize
13324 @item
13325 Set the timebase to 1/25:
13326 @example
13327 settb=expr=1/25
13328 @end example
13329
13330 @item
13331 Set the timebase to 1/10:
13332 @example
13333 settb=expr=0.1
13334 @end example
13335
13336 @item
13337 Set the timebase to 1001/1000:
13338 @example
13339 settb=1+0.001
13340 @end example
13341
13342 @item
13343 Set the timebase to 2*intb:
13344 @example
13345 settb=2*intb
13346 @end example
13347
13348 @item
13349 Set the default timebase value:
13350 @example
13351 settb=AVTB
13352 @end example
13353 @end itemize
13354
13355 @section showcqt
13356 Convert input audio to a video output representing
13357 frequency spectrum logarithmically (using constant Q transform with
13358 Brown-Puckette algorithm), with musical tone scale, from E0 to D#10 (10 octaves).
13359
13360 The filter accepts the following options:
13361
13362 @table @option
13363 @item volume
13364 Specify transform volume (multiplier) expression. The expression can contain
13365 variables:
13366 @table @option
13367 @item frequency, freq, f
13368 the frequency where transform is evaluated
13369 @item timeclamp, tc
13370 value of timeclamp option
13371 @end table
13372 and functions:
13373 @table @option
13374 @item a_weighting(f)
13375 A-weighting of equal loudness
13376 @item b_weighting(f)
13377 B-weighting of equal loudness
13378 @item c_weighting(f)
13379 C-weighting of equal loudness
13380 @end table
13381 Default value is @code{16}.
13382
13383 @item tlength
13384 Specify transform length expression. The expression can contain variables:
13385 @table @option
13386 @item frequency, freq, f
13387 the frequency where transform is evaluated
13388 @item timeclamp, tc
13389 value of timeclamp option
13390 @end table
13391 Default value is @code{384/f*tc/(384/f+tc)}.
13392
13393 @item timeclamp
13394 Specify the transform timeclamp. At low frequency, there is trade-off between
13395 accuracy in time domain and frequency domain. If timeclamp is lower,
13396 event in time domain is represented more accurately (such as fast bass drum),
13397 otherwise event in frequency domain is represented more accurately
13398 (such as bass guitar). Acceptable value is [0.1, 1.0]. Default value is @code{0.17}.
13399
13400 @item coeffclamp
13401 Specify the transform coeffclamp. If coeffclamp is lower, transform is
13402 more accurate, otherwise transform is faster. Acceptable value is [0.1, 10.0].
13403 Default value is @code{1.0}.
13404
13405 @item gamma
13406 Specify gamma. Lower gamma makes the spectrum more contrast, higher gamma
13407 makes the spectrum having more range. Acceptable value is [1.0, 7.0].
13408 Default value is @code{3.0}.
13409
13410 @item gamma2
13411 Specify gamma of bargraph. Acceptable value is [1.0, 7.0].
13412 Default value is @code{1.0}.
13413
13414 @item fontfile
13415 Specify font file for use with freetype. If not specified, use embedded font.
13416
13417 @item fontcolor
13418 Specify font color expression. This is arithmetic expression that should return
13419 integer value 0xRRGGBB. The expression can contain variables:
13420 @table @option
13421 @item frequency, freq, f
13422 the frequency where transform is evaluated
13423 @item timeclamp, tc
13424 value of timeclamp option
13425 @end table
13426 and functions:
13427 @table @option
13428 @item midi(f)
13429 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
13430 @item r(x), g(x), b(x)
13431 red, green, and blue value of intensity x
13432 @end table
13433 Default value is @code{st(0, (midi(f)-59.5)/12);
13434 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
13435 r(1-ld(1)) + b(ld(1))}
13436
13437 @item fullhd
13438 If set to 1 (the default), the video size is 1920x1080 (full HD),
13439 if set to 0, the video size is 960x540. Use this option to make CPU usage lower.
13440
13441 @item fps
13442 Specify video fps. Default value is @code{25}.
13443
13444 @item count
13445 Specify number of transform per frame, so there are fps*count transforms
13446 per second. Note that audio data rate must be divisible by fps*count.
13447 Default value is @code{6}.
13448
13449 @end table
13450
13451 @subsection Examples
13452
13453 @itemize
13454 @item
13455 Playing audio while showing the spectrum:
13456 @example
13457 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
13458 @end example
13459
13460 @item
13461 Same as above, but with frame rate 30 fps:
13462 @example
13463 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
13464 @end example
13465
13466 @item
13467 Playing at 960x540 and lower CPU usage:
13468 @example
13469 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fullhd=0:count=3 [out0]'
13470 @end example
13471
13472 @item
13473 A1 and its harmonics: A1, A2, (near)E3, A3:
13474 @example
13475 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),
13476                  asplit[a][out1]; [a] showcqt [out0]'
13477 @end example
13478
13479 @item
13480 Same as above, but with more accuracy in frequency domain (and slower):
13481 @example
13482 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),
13483                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
13484 @end example
13485
13486 @item
13487 B-weighting of equal loudness
13488 @example
13489 volume=16*b_weighting(f)
13490 @end example
13491
13492 @item
13493 Lower Q factor
13494 @example
13495 tlength=100/f*tc/(100/f+tc)
13496 @end example
13497
13498 @item
13499 Custom fontcolor, C-note is colored green, others are colored blue
13500 @example
13501 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))'
13502 @end example
13503
13504 @item
13505 Custom gamma, now spectrum is linear to the amplitude.
13506 @example
13507 gamma=2:gamma2=2
13508 @end example
13509
13510 @end itemize
13511
13512 @section showfreqs
13513
13514 Convert input audio to video output representing the audio power spectrum.
13515 Audio amplitude is on Y-axis while frequency is on X-axis.
13516
13517 The filter accepts the following options:
13518
13519 @table @option
13520 @item size, s
13521 Specify size of video. For the syntax of this option, check the
13522 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13523 Default is @code{1024x512}.
13524
13525 @item mode
13526 Set display mode.
13527 This set how each frequency bin will be represented.
13528
13529 It accepts the following values:
13530 @table @samp
13531 @item line
13532 @item bar
13533 @item dot
13534 @end table
13535 Default is @code{bar}.
13536
13537 @item ascale
13538 Set amplitude scale.
13539
13540 It accepts the following values:
13541 @table @samp
13542 @item lin
13543 Linear scale.
13544
13545 @item sqrt
13546 Square root scale.
13547
13548 @item cbrt
13549 Cubic root scale.
13550
13551 @item log
13552 Logarithmic scale.
13553 @end table
13554 Default is @code{log}.
13555
13556 @item fscale
13557 Set frequency scale.
13558
13559 It accepts the following values:
13560 @table @samp
13561 @item lin
13562 Linear scale.
13563
13564 @item log
13565 Logarithmic scale.
13566
13567 @item rlog
13568 Reverse logarithmic scale.
13569 @end table
13570 Default is @code{lin}.
13571
13572 @item win_size
13573 Set window size.
13574
13575 It accepts the following values:
13576 @table @samp
13577 @item w16
13578 @item w32
13579 @item w64
13580 @item w128
13581 @item w256
13582 @item w512
13583 @item w1024
13584 @item w2048
13585 @item w4096
13586 @item w8192
13587 @item w16384
13588 @item w32768
13589 @item w65536
13590 @end table
13591 Default is @code{w2048}
13592
13593 @item win_func
13594 Set windowing function.
13595
13596 It accepts the following values:
13597 @table @samp
13598 @item rect
13599 @item bartlett
13600 @item hanning
13601 @item hamming
13602 @item blackman
13603 @item welch
13604 @item flattop
13605 @item bharris
13606 @item bnuttall
13607 @item bhann
13608 @item sine
13609 @item nuttall
13610 @item lanczos
13611 @item gauss
13612 @end table
13613 Default is @code{hanning}.
13614
13615 @item overlap
13616 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
13617 which means optimal overlap for selected window function will be picked.
13618
13619 @item averaging
13620 Set time averaging. Setting this to 0 will display current maximal peaks.
13621 Default is @code{1}, which means time averaging is disabled.
13622
13623 @item colors
13624 Specify list of colors separated by space or by '|' which will be used to
13625 draw channel frequencies. Unrecognized or missing colors will be replaced
13626 by white color.
13627 @end table
13628
13629 @section showspectrum
13630
13631 Convert input audio to a video output, representing the audio frequency
13632 spectrum.
13633
13634 The filter accepts the following options:
13635
13636 @table @option
13637 @item size, s
13638 Specify the video size for the output. For the syntax of this option, check the
13639 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13640 Default value is @code{640x512}.
13641
13642 @item slide
13643 Specify how the spectrum should slide along the window.
13644
13645 It accepts the following values:
13646 @table @samp
13647 @item replace
13648 the samples start again on the left when they reach the right
13649 @item scroll
13650 the samples scroll from right to left
13651 @item fullframe
13652 frames are only produced when the samples reach the right
13653 @end table
13654
13655 Default value is @code{replace}.
13656
13657 @item mode
13658 Specify display mode.
13659
13660 It accepts the following values:
13661 @table @samp
13662 @item combined
13663 all channels are displayed in the same row
13664 @item separate
13665 all channels are displayed in separate rows
13666 @end table
13667
13668 Default value is @samp{combined}.
13669
13670 @item color
13671 Specify display color mode.
13672
13673 It accepts the following values:
13674 @table @samp
13675 @item channel
13676 each channel is displayed in a separate color
13677 @item intensity
13678 each channel is is displayed using the same color scheme
13679 @end table
13680
13681 Default value is @samp{channel}.
13682
13683 @item scale
13684 Specify scale used for calculating intensity color values.
13685
13686 It accepts the following values:
13687 @table @samp
13688 @item lin
13689 linear
13690 @item sqrt
13691 square root, default
13692 @item cbrt
13693 cubic root
13694 @item log
13695 logarithmic
13696 @end table
13697
13698 Default value is @samp{sqrt}.
13699
13700 @item saturation
13701 Set saturation modifier for displayed colors. Negative values provide
13702 alternative color scheme. @code{0} is no saturation at all.
13703 Saturation must be in [-10.0, 10.0] range.
13704 Default value is @code{1}.
13705
13706 @item win_func
13707 Set window function.
13708
13709 It accepts the following values:
13710 @table @samp
13711 @item none
13712 No samples pre-processing (do not expect this to be faster)
13713 @item hann
13714 Hann window
13715 @item hamming
13716 Hamming window
13717 @item blackman
13718 Blackman window
13719 @end table
13720
13721 Default value is @code{hann}.
13722 @end table
13723
13724 The usage is very similar to the showwaves filter; see the examples in that
13725 section.
13726
13727 @subsection Examples
13728
13729 @itemize
13730 @item
13731 Large window with logarithmic color scaling:
13732 @example
13733 showspectrum=s=1280x480:scale=log
13734 @end example
13735
13736 @item
13737 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
13738 @example
13739 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
13740              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
13741 @end example
13742 @end itemize
13743
13744 @section showvolume
13745
13746 Convert input audio volume to a video output.
13747
13748 The filter accepts the following options:
13749
13750 @table @option
13751 @item rate, r
13752 Set video rate.
13753
13754 @item b
13755 Set border width, allowed range is [0, 5]. Default is 1.
13756
13757 @item w
13758 Set channel width, allowed range is [40, 1080]. Default is 400.
13759
13760 @item h
13761 Set channel height, allowed range is [1, 100]. Default is 20.
13762
13763 @item f
13764 Set fade, allowed range is [1, 255]. Default is 20.
13765
13766 @item c
13767 Set volume color expression.
13768
13769 The expression can use the following variables:
13770
13771 @table @option
13772 @item VOLUME
13773 Current max volume of channel in dB.
13774
13775 @item CHANNEL
13776 Current channel number, starting from 0.
13777 @end table
13778
13779 @item t
13780 If set, displays channel names. Default is enabled.
13781 @end table
13782
13783 @section showwaves
13784
13785 Convert input audio to a video output, representing the samples waves.
13786
13787 The filter accepts the following options:
13788
13789 @table @option
13790 @item size, s
13791 Specify the video size for the output. For the syntax of this option, check the
13792 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13793 Default value is @code{600x240}.
13794
13795 @item mode
13796 Set display mode.
13797
13798 Available values are:
13799 @table @samp
13800 @item point
13801 Draw a point for each sample.
13802
13803 @item line
13804 Draw a vertical line for each sample.
13805
13806 @item p2p
13807 Draw a point for each sample and a line between them.
13808
13809 @item cline
13810 Draw a centered vertical line for each sample.
13811 @end table
13812
13813 Default value is @code{point}.
13814
13815 @item n
13816 Set the number of samples which are printed on the same column. A
13817 larger value will decrease the frame rate. Must be a positive
13818 integer. This option can be set only if the value for @var{rate}
13819 is not explicitly specified.
13820
13821 @item rate, r
13822 Set the (approximate) output frame rate. This is done by setting the
13823 option @var{n}. Default value is "25".
13824
13825 @item split_channels
13826 Set if channels should be drawn separately or overlap. Default value is 0.
13827
13828 @end table
13829
13830 @subsection Examples
13831
13832 @itemize
13833 @item
13834 Output the input file audio and the corresponding video representation
13835 at the same time:
13836 @example
13837 amovie=a.mp3,asplit[out0],showwaves[out1]
13838 @end example
13839
13840 @item
13841 Create a synthetic signal and show it with showwaves, forcing a
13842 frame rate of 30 frames per second:
13843 @example
13844 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
13845 @end example
13846 @end itemize
13847
13848 @section showwavespic
13849
13850 Convert input audio to a single video frame, representing the samples waves.
13851
13852 The filter accepts the following options:
13853
13854 @table @option
13855 @item size, s
13856 Specify the video size for the output. For the syntax of this option, check the
13857 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13858 Default value is @code{600x240}.
13859
13860 @item split_channels
13861 Set if channels should be drawn separately or overlap. Default value is 0.
13862 @end table
13863
13864 @subsection Examples
13865
13866 @itemize
13867 @item
13868 Extract a channel split representation of the wave form of a whole audio track
13869 in a 1024x800 picture using @command{ffmpeg}:
13870 @example
13871 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
13872 @end example
13873 @end itemize
13874
13875 @section split, asplit
13876
13877 Split input into several identical outputs.
13878
13879 @code{asplit} works with audio input, @code{split} with video.
13880
13881 The filter accepts a single parameter which specifies the number of outputs. If
13882 unspecified, it defaults to 2.
13883
13884 @subsection Examples
13885
13886 @itemize
13887 @item
13888 Create two separate outputs from the same input:
13889 @example
13890 [in] split [out0][out1]
13891 @end example
13892
13893 @item
13894 To create 3 or more outputs, you need to specify the number of
13895 outputs, like in:
13896 @example
13897 [in] asplit=3 [out0][out1][out2]
13898 @end example
13899
13900 @item
13901 Create two separate outputs from the same input, one cropped and
13902 one padded:
13903 @example
13904 [in] split [splitout1][splitout2];
13905 [splitout1] crop=100:100:0:0    [cropout];
13906 [splitout2] pad=200:200:100:100 [padout];
13907 @end example
13908
13909 @item
13910 Create 5 copies of the input audio with @command{ffmpeg}:
13911 @example
13912 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
13913 @end example
13914 @end itemize
13915
13916 @section zmq, azmq
13917
13918 Receive commands sent through a libzmq client, and forward them to
13919 filters in the filtergraph.
13920
13921 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
13922 must be inserted between two video filters, @code{azmq} between two
13923 audio filters.
13924
13925 To enable these filters you need to install the libzmq library and
13926 headers and configure FFmpeg with @code{--enable-libzmq}.
13927
13928 For more information about libzmq see:
13929 @url{http://www.zeromq.org/}
13930
13931 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
13932 receives messages sent through a network interface defined by the
13933 @option{bind_address} option.
13934
13935 The received message must be in the form:
13936 @example
13937 @var{TARGET} @var{COMMAND} [@var{ARG}]
13938 @end example
13939
13940 @var{TARGET} specifies the target of the command, usually the name of
13941 the filter class or a specific filter instance name.
13942
13943 @var{COMMAND} specifies the name of the command for the target filter.
13944
13945 @var{ARG} is optional and specifies the optional argument list for the
13946 given @var{COMMAND}.
13947
13948 Upon reception, the message is processed and the corresponding command
13949 is injected into the filtergraph. Depending on the result, the filter
13950 will send a reply to the client, adopting the format:
13951 @example
13952 @var{ERROR_CODE} @var{ERROR_REASON}
13953 @var{MESSAGE}
13954 @end example
13955
13956 @var{MESSAGE} is optional.
13957
13958 @subsection Examples
13959
13960 Look at @file{tools/zmqsend} for an example of a zmq client which can
13961 be used to send commands processed by these filters.
13962
13963 Consider the following filtergraph generated by @command{ffplay}
13964 @example
13965 ffplay -dumpgraph 1 -f lavfi "
13966 color=s=100x100:c=red  [l];
13967 color=s=100x100:c=blue [r];
13968 nullsrc=s=200x100, zmq [bg];
13969 [bg][l]   overlay      [bg+l];
13970 [bg+l][r] overlay=x=100 "
13971 @end example
13972
13973 To change the color of the left side of the video, the following
13974 command can be used:
13975 @example
13976 echo Parsed_color_0 c yellow | tools/zmqsend
13977 @end example
13978
13979 To change the right side:
13980 @example
13981 echo Parsed_color_1 c pink | tools/zmqsend
13982 @end example
13983
13984 @c man end MULTIMEDIA FILTERS
13985
13986 @chapter Multimedia Sources
13987 @c man begin MULTIMEDIA SOURCES
13988
13989 Below is a description of the currently available multimedia sources.
13990
13991 @section amovie
13992
13993 This is the same as @ref{movie} source, except it selects an audio
13994 stream by default.
13995
13996 @anchor{movie}
13997 @section movie
13998
13999 Read audio and/or video stream(s) from a movie container.
14000
14001 It accepts the following parameters:
14002
14003 @table @option
14004 @item filename
14005 The name of the resource to read (not necessarily a file; it can also be a
14006 device or a stream accessed through some protocol).
14007
14008 @item format_name, f
14009 Specifies the format assumed for the movie to read, and can be either
14010 the name of a container or an input device. If not specified, the
14011 format is guessed from @var{movie_name} or by probing.
14012
14013 @item seek_point, sp
14014 Specifies the seek point in seconds. The frames will be output
14015 starting from this seek point. The parameter is evaluated with
14016 @code{av_strtod}, so the numerical value may be suffixed by an IS
14017 postfix. The default value is "0".
14018
14019 @item streams, s
14020 Specifies the streams to read. Several streams can be specified,
14021 separated by "+". The source will then have as many outputs, in the
14022 same order. The syntax is explained in the ``Stream specifiers''
14023 section in the ffmpeg manual. Two special names, "dv" and "da" specify
14024 respectively the default (best suited) video and audio stream. Default
14025 is "dv", or "da" if the filter is called as "amovie".
14026
14027 @item stream_index, si
14028 Specifies the index of the video stream to read. If the value is -1,
14029 the most suitable video stream will be automatically selected. The default
14030 value is "-1". Deprecated. If the filter is called "amovie", it will select
14031 audio instead of video.
14032
14033 @item loop
14034 Specifies how many times to read the stream in sequence.
14035 If the value is less than 1, the stream will be read again and again.
14036 Default value is "1".
14037
14038 Note that when the movie is looped the source timestamps are not
14039 changed, so it will generate non monotonically increasing timestamps.
14040 @end table
14041
14042 It allows overlaying a second video on top of the main input of
14043 a filtergraph, as shown in this graph:
14044 @example
14045 input -----------> deltapts0 --> overlay --> output
14046                                     ^
14047                                     |
14048 movie --> scale--> deltapts1 -------+
14049 @end example
14050 @subsection Examples
14051
14052 @itemize
14053 @item
14054 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
14055 on top of the input labelled "in":
14056 @example
14057 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
14058 [in] setpts=PTS-STARTPTS [main];
14059 [main][over] overlay=16:16 [out]
14060 @end example
14061
14062 @item
14063 Read from a video4linux2 device, and overlay it on top of the input
14064 labelled "in":
14065 @example
14066 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
14067 [in] setpts=PTS-STARTPTS [main];
14068 [main][over] overlay=16:16 [out]
14069 @end example
14070
14071 @item
14072 Read the first video stream and the audio stream with id 0x81 from
14073 dvd.vob; the video is connected to the pad named "video" and the audio is
14074 connected to the pad named "audio":
14075 @example
14076 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
14077 @end example
14078 @end itemize
14079
14080 @c man end MULTIMEDIA SOURCES