]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge remote-tracking branch 'qatar/master'
[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 @example
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end example
18
19 This filtergraph splits the input stream in two streams, 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 in output the top half of the video is mirrored
29 onto the bottom half.
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 the 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", a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph can be represented using a textual representation, which is
118 recognized by the @option{-filter}/@option{-vf} and @option{-filter_complex}
119 options in @command{ffmpeg} and @option{-vf} in @command{ffplay}, and by the
120 @code{avfilter_graph_parse()}/@code{avfilter_graph_parse2()} function defined in
121 @file{libavfilter/avfilter.h}.
122
123 A filterchain consists of a sequence of connected filters, each one
124 connected to the previous one in the sequence. A filterchain is
125 represented by a list of ","-separated filter descriptions.
126
127 A filtergraph consists of a sequence of filterchains. A sequence of
128 filterchains is represented by a list of ";"-separated filterchain
129 descriptions.
130
131 A filter is represented by a string of the form:
132 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
133
134 @var{filter_name} is the name of the filter class of which the
135 described filter is an instance of, and has to be the name of one of
136 the filter classes registered in the program.
137 The name of the filter class is optionally followed by a string
138 "=@var{arguments}".
139
140 @var{arguments} is a string which contains the parameters used to
141 initialize the filter instance. It may have one of the following forms:
142 @itemize
143
144 @item
145 A ':'-separated list of @var{key=value} pairs.
146
147 @item
148 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
149 the option names in the order they are declared. E.g. the @code{fade} filter
150 declares three options in this order -- @option{type}, @option{start_frame} and
151 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
152 @var{in} is assigned to the option @option{type}, @var{0} to
153 @option{start_frame} and @var{30} to @option{nb_frames}.
154
155 @item
156 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
157 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
158 follow the same constraints order of the previous point. The following
159 @var{key=value} pairs can be set in any preferred order.
160
161 @end itemize
162
163 If the option value itself is a list of items (e.g. the @code{format} filter
164 takes a list of pixel formats), the items in the list are usually separated by
165 '|'.
166
167 The list of arguments can be quoted using the character "'" as initial
168 and ending mark, and the character '\' for escaping the characters
169 within the quoted text; otherwise the argument string is considered
170 terminated when the next special character (belonging to the set
171 "[]=;,") is encountered.
172
173 The name and arguments of the filter are optionally preceded and
174 followed by a list of link labels.
175 A link label allows to name a link and associate it to a filter output
176 or input pad. The preceding labels @var{in_link_1}
177 ... @var{in_link_N}, are associated to the filter input pads,
178 the following labels @var{out_link_1} ... @var{out_link_M}, are
179 associated to the output pads.
180
181 When two link labels with the same name are found in the
182 filtergraph, a link between the corresponding input and output pad is
183 created.
184
185 If an output pad is not labelled, it is linked by default to the first
186 unlabelled input pad of the next filter in the filterchain.
187 For example in the filterchain:
188 @example
189 nullsrc, split[L1], [L2]overlay, nullsink
190 @end example
191 the split filter instance has two output pads, and the overlay filter
192 instance two input pads. The first output pad of split is labelled
193 "L1", the first input pad of overlay is labelled "L2", and the second
194 output pad of split is linked to the second input pad of overlay,
195 which are both unlabelled.
196
197 In a complete filterchain all the unlabelled filter input and output
198 pads must be connected. A filtergraph is considered valid if all the
199 filter input and output pads of all the filterchains are connected.
200
201 Libavfilter will automatically insert @ref{scale} filters where format
202 conversion is required. It is possible to specify swscale flags
203 for those automatically inserted scalers by prepending
204 @code{sws_flags=@var{flags};}
205 to the filtergraph description.
206
207 Follows a BNF description for the filtergraph syntax:
208 @example
209 @var{NAME}             ::= sequence of alphanumeric characters and '_'
210 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
211 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
212 @var{FILTER_ARGUMENTS} ::= sequence of chars (eventually quoted)
213 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
214 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
215 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
216 @end example
217
218 @section Notes on filtergraph escaping
219
220 Some filter arguments require the use of special characters, typically
221 @code{:} to separate key=value pairs in a named options list. In this
222 case the user should perform a first level escaping when specifying
223 the filter arguments. For example, consider the following literal
224 string to be embedded in the @ref{drawtext} filter arguments:
225 @example
226 this is a 'string': may contain one, or more, special characters
227 @end example
228
229 Since @code{:} is special for the filter arguments syntax, it needs to
230 be escaped, so you get:
231 @example
232 text=this is a \'string\'\: may contain one, or more, special characters
233 @end example
234
235 A second level of escaping is required when embedding the filter
236 arguments in a filtergraph description, in order to escape all the
237 filtergraph special characters. Thus the example above becomes:
238 @example
239 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
240 @end example
241
242 Finally an additional level of escaping may be needed when writing the
243 filtergraph description in a shell command, which depends on the
244 escaping rules of the adopted shell. For example, assuming that
245 @code{\} is special and needs to be escaped with another @code{\}, the
246 previous string will finally result in:
247 @example
248 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
249 @end example
250
251 Sometimes, it might be more convenient to employ quoting in place of
252 escaping. For example the string:
253 @example
254 Caesar: tu quoque, Brute, fili mi
255 @end example
256
257 Can be quoted in the filter arguments as:
258 @example
259 text='Caesar: tu quoque, Brute, fili mi'
260 @end example
261
262 And finally inserted in a filtergraph like:
263 @example
264 drawtext=text=\'Caesar: tu quoque\, Brute\, fili mi\'
265 @end example
266
267 See the ``Quoting and escaping'' section in the ffmpeg-utils manual
268 for more information about the escaping and quoting rules adopted by
269 FFmpeg.
270
271 @chapter Timeline editing
272
273 Some filters support a generic @option{enable} option. For the filters
274 supporting timeline editing, this option can be set to an expression which is
275 evaluated before sending a frame to the filter. If the evaluation is non-zero,
276 the filter will be enabled, otherwise the frame will be sent unchanged to the
277 next filter in the filtergraph.
278
279 The expression accepts the following values:
280 @table @samp
281 @item t
282 timestamp expressed in seconds, NAN if the input timestamp is unknown
283
284 @item n
285 sequential number of the input frame, starting from 0
286
287 @item pos
288 the position in the file of the input frame, NAN if unknown
289 @end table
290
291 Additionally, these filters support an @option{enable} command that can be used
292 to re-define the expression.
293
294 Like any other filtering option, the @option{enable} option follows the same
295 rules.
296
297 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
298 minutes, and a @ref{curves} filter starting at 3 seconds:
299 @example
300 smartblur = enable='between(t,10,3*60)',
301 curves    = enable='gte(t,3)' : preset=cross_process
302 @end example
303
304 @c man end FILTERGRAPH DESCRIPTION
305
306 @chapter Audio Filters
307 @c man begin AUDIO FILTERS
308
309 When you configure your FFmpeg build, you can disable any of the
310 existing filters using @code{--disable-filters}.
311 The configure output will show the audio filters included in your
312 build.
313
314 Below is a description of the currently available audio filters.
315
316 @section aconvert
317
318 Convert the input audio format to the specified formats.
319
320 @emph{This filter is deprecated. Use @ref{aformat} instead.}
321
322 The filter accepts a string of the form:
323 "@var{sample_format}:@var{channel_layout}".
324
325 @var{sample_format} specifies the sample format, and can be a string or the
326 corresponding numeric value defined in @file{libavutil/samplefmt.h}. Use 'p'
327 suffix for a planar sample format.
328
329 @var{channel_layout} specifies the channel layout, and can be a string
330 or the corresponding number value defined in @file{libavutil/channel_layout.h}.
331
332 The special parameter "auto", signifies that the filter will
333 automatically select the output format depending on the output filter.
334
335 @subsection Examples
336
337 @itemize
338 @item
339 Convert input to float, planar, stereo:
340 @example
341 aconvert=fltp:stereo
342 @end example
343
344 @item
345 Convert input to unsigned 8-bit, automatically select out channel layout:
346 @example
347 aconvert=u8:auto
348 @end example
349 @end itemize
350
351 @section adelay
352
353 Delay one or more audio channels.
354
355 Samples in delayed channel are filled with silence.
356
357 The filter accepts the following option:
358
359 @table @option
360 @item delays
361 Set list of delays in milliseconds for each channel separated by '|'.
362 At least one delay greater than 0 should be provided.
363 Unused delays will be silently ignored. If number of given delays is
364 smaller than number of channels all remaining channels will not be delayed.
365 @end table
366
367 @subsection Examples
368
369 @itemize
370 @item
371 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
372 the second channel (and any other channels that may be present) unchanged.
373 @example
374 adelay=1500|0|500
375 @end example
376 @end itemize
377
378 @section aecho
379
380 Apply echoing to the input audio.
381
382 Echoes are reflected sound and can occur naturally amongst mountains
383 (and sometimes large buildings) when talking or shouting; digital echo
384 effects emulate this behaviour and are often used to help fill out the
385 sound of a single instrument or vocal. The time difference between the
386 original signal and the reflection is the @code{delay}, and the
387 loudness of the reflected signal is the @code{decay}.
388 Multiple echoes can have different delays and decays.
389
390 A description of the accepted parameters follows.
391
392 @table @option
393 @item in_gain
394 Set input gain of reflected signal. Default is @code{0.6}.
395
396 @item out_gain
397 Set output gain of reflected signal. Default is @code{0.3}.
398
399 @item delays
400 Set list of time intervals in milliseconds between original signal and reflections
401 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
402 Default is @code{1000}.
403
404 @item decays
405 Set list of loudnesses of reflected signals separated by '|'.
406 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
407 Default is @code{0.5}.
408 @end table
409
410 @subsection Examples
411
412 @itemize
413 @item
414 Make it sound as if there are twice as many instruments as are actually playing:
415 @example
416 aecho=0.8:0.88:60:0.4
417 @end example
418
419 @item
420 If delay is very short, then it sound like a (metallic) robot playing music:
421 @example
422 aecho=0.8:0.88:6:0.4
423 @end example
424
425 @item
426 A longer delay will sound like an open air concert in the mountains:
427 @example
428 aecho=0.8:0.9:1000:0.3
429 @end example
430
431 @item
432 Same as above but with one more mountain:
433 @example
434 aecho=0.8:0.9:1000|1800:0.3|0.25
435 @end example
436 @end itemize
437
438 @section aeval
439
440 Modify an audio signal according to the specified expressions.
441
442 This filter accepts one or more expressions (one for each channel),
443 which are evaluated and used to modify a corresponding audio signal.
444
445 This filter accepts the following options:
446
447 @table @option
448 @item exprs
449 Set the '|'-separated expressions list for each separate channel. If
450 the number of input channels is greater than the number of
451 expressions, the last specified expression is used for the remaining
452 output channels.
453
454 @item channel_layout, c
455 Set output channel layout. If not specified, the channel layout is
456 specified by the number of expressions. If set to @samp{same}, it will
457 use by default the same input channel layout.
458 @end table
459
460 Each expression in @var{exprs} can contain the following constants and functions:
461
462 @table @option
463 @item ch
464 channel number of the current expression
465
466 @item n
467 number of the evaluated sample, starting from 0
468
469 @item s
470 sample rate
471
472 @item t
473 time of the evaluated sample expressed in seconds
474
475 @item nb_in_channels
476 @item nb_out_channels
477 input and output number of channels
478
479 @item val(CH)
480 the value of input channel with number @var{CH}
481 @end table
482
483 Note: this filter is slow. For faster processing you should use a
484 dedicated filter.
485
486 @subsection Examples
487
488 @itemize
489 @item
490 Half volume:
491 @example
492 aeval=val(ch)/2:c=same
493 @end example
494
495 @item
496 Invert phase of the second channel:
497 @example
498 eval=val(0)|-val(1)
499 @end example
500 @end itemize
501
502 @section afade
503
504 Apply fade-in/out effect to input audio.
505
506 A description of the accepted parameters follows.
507
508 @table @option
509 @item type, t
510 Specify the effect type, can be either @code{in} for fade-in, or
511 @code{out} for a fade-out effect. Default is @code{in}.
512
513 @item start_sample, ss
514 Specify the number of the start sample for starting to apply the fade
515 effect. Default is 0.
516
517 @item nb_samples, ns
518 Specify the number of samples for which the fade effect has to last. At
519 the end of the fade-in effect the output audio will have the same
520 volume as the input audio, at the end of the fade-out transition
521 the output audio will be silence. Default is 44100.
522
523 @item start_time, st
524 Specify time for starting to apply the fade effect. Default is 0.
525 The accepted syntax is:
526 @example
527 [-]HH[:MM[:SS[.m...]]]
528 [-]S+[.m...]
529 @end example
530 See also the function @code{av_parse_time()}.
531 If set this option is used instead of @var{start_sample} one.
532
533 @item duration, d
534 Specify the duration for which the fade effect has to last. Default is 0.
535 The accepted syntax is:
536 @example
537 [-]HH[:MM[:SS[.m...]]]
538 [-]S+[.m...]
539 @end example
540 See also the function @code{av_parse_time()}.
541 At the end of the fade-in effect the output audio will have the same
542 volume as the input audio, at the end of the fade-out transition
543 the output audio will be silence.
544 If set this option is used instead of @var{nb_samples} one.
545
546 @item curve
547 Set curve for fade transition.
548
549 It accepts the following values:
550 @table @option
551 @item tri
552 select triangular, linear slope (default)
553 @item qsin
554 select quarter of sine wave
555 @item hsin
556 select half of sine wave
557 @item esin
558 select exponential sine wave
559 @item log
560 select logarithmic
561 @item par
562 select inverted parabola
563 @item qua
564 select quadratic
565 @item cub
566 select cubic
567 @item squ
568 select square root
569 @item cbr
570 select cubic root
571 @end table
572 @end table
573
574 @subsection Examples
575
576 @itemize
577 @item
578 Fade in first 15 seconds of audio:
579 @example
580 afade=t=in:ss=0:d=15
581 @end example
582
583 @item
584 Fade out last 25 seconds of a 900 seconds audio:
585 @example
586 afade=t=out:st=875:d=25
587 @end example
588 @end itemize
589
590 @anchor{aformat}
591 @section aformat
592
593 Set output format constraints for the input audio. The framework will
594 negotiate the most appropriate format to minimize conversions.
595
596 The filter accepts the following named parameters:
597 @table @option
598
599 @item sample_fmts
600 A '|'-separated list of requested sample formats.
601
602 @item sample_rates
603 A '|'-separated list of requested sample rates.
604
605 @item channel_layouts
606 A '|'-separated list of requested channel layouts.
607
608 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
609 for the required syntax.
610 @end table
611
612 If a parameter is omitted, all values are allowed.
613
614 For example to force the output to either unsigned 8-bit or signed 16-bit stereo:
615 @example
616 aformat=sample_fmts=u8|s16:channel_layouts=stereo
617 @end example
618
619 @section allpass
620
621 Apply a two-pole all-pass filter with central frequency (in Hz)
622 @var{frequency}, and filter-width @var{width}.
623 An all-pass filter changes the audio's frequency to phase relationship
624 without changing its frequency to amplitude relationship.
625
626 The filter accepts the following options:
627
628 @table @option
629 @item frequency, f
630 Set frequency in Hz.
631
632 @item width_type
633 Set method to specify band-width of filter.
634 @table @option
635 @item h
636 Hz
637 @item q
638 Q-Factor
639 @item o
640 octave
641 @item s
642 slope
643 @end table
644
645 @item width, w
646 Specify the band-width of a filter in width_type units.
647 @end table
648
649 @section amerge
650
651 Merge two or more audio streams into a single multi-channel stream.
652
653 The filter accepts the following options:
654
655 @table @option
656
657 @item inputs
658 Set the number of inputs. Default is 2.
659
660 @end table
661
662 If the channel layouts of the inputs are disjoint, and therefore compatible,
663 the channel layout of the output will be set accordingly and the channels
664 will be reordered as necessary. If the channel layouts of the inputs are not
665 disjoint, the output will have all the channels of the first input then all
666 the channels of the second input, in that order, and the channel layout of
667 the output will be the default value corresponding to the total number of
668 channels.
669
670 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
671 is FC+BL+BR, then the output will be in 5.1, with the channels in the
672 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
673 first input, b1 is the first channel of the second input).
674
675 On the other hand, if both input are in stereo, the output channels will be
676 in the default order: a1, a2, b1, b2, and the channel layout will be
677 arbitrarily set to 4.0, which may or may not be the expected value.
678
679 All inputs must have the same sample rate, and format.
680
681 If inputs do not have the same duration, the output will stop with the
682 shortest.
683
684 @subsection Examples
685
686 @itemize
687 @item
688 Merge two mono files into a stereo stream:
689 @example
690 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
691 @end example
692
693 @item
694 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
695 @example
696 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
697 @end example
698 @end itemize
699
700 @section amix
701
702 Mixes multiple audio inputs into a single output.
703
704 For example
705 @example
706 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
707 @end example
708 will mix 3 input audio streams to a single output with the same duration as the
709 first input and a dropout transition time of 3 seconds.
710
711 The filter accepts the following named parameters:
712 @table @option
713
714 @item inputs
715 Number of inputs. If unspecified, it defaults to 2.
716
717 @item duration
718 How to determine the end-of-stream.
719 @table @option
720
721 @item longest
722 Duration of longest input. (default)
723
724 @item shortest
725 Duration of shortest input.
726
727 @item first
728 Duration of first input.
729
730 @end table
731
732 @item dropout_transition
733 Transition time, in seconds, for volume renormalization when an input
734 stream ends. The default value is 2 seconds.
735
736 @end table
737
738 @section anull
739
740 Pass the audio source unchanged to the output.
741
742 @section apad
743
744 Pad the end of a audio stream with silence, this can be used together with
745 -shortest to extend audio streams to the same length as the video stream.
746
747 @section aphaser
748 Add a phasing effect to the input audio.
749
750 A phaser filter creates series of peaks and troughs in the frequency spectrum.
751 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
752
753 A description of the accepted parameters follows.
754
755 @table @option
756 @item in_gain
757 Set input gain. Default is 0.4.
758
759 @item out_gain
760 Set output gain. Default is 0.74
761
762 @item delay
763 Set delay in milliseconds. Default is 3.0.
764
765 @item decay
766 Set decay. Default is 0.4.
767
768 @item speed
769 Set modulation speed in Hz. Default is 0.5.
770
771 @item type
772 Set modulation type. Default is triangular.
773
774 It accepts the following values:
775 @table @samp
776 @item triangular, t
777 @item sinusoidal, s
778 @end table
779 @end table
780
781 @anchor{aresample}
782 @section aresample
783
784 Resample the input audio to the specified parameters, using the
785 libswresample library. If none are specified then the filter will
786 automatically convert between its input and output.
787
788 This filter is also able to stretch/squeeze the audio data to make it match
789 the timestamps or to inject silence / cut out audio to make it match the
790 timestamps, do a combination of both or do neither.
791
792 The filter accepts the syntax
793 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
794 expresses a sample rate and @var{resampler_options} is a list of
795 @var{key}=@var{value} pairs, separated by ":". See the
796 ffmpeg-resampler manual for the complete list of supported options.
797
798 @subsection Examples
799
800 @itemize
801 @item
802 Resample the input audio to 44100Hz:
803 @example
804 aresample=44100
805 @end example
806
807 @item
808 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
809 samples per second compensation:
810 @example
811 aresample=async=1000
812 @end example
813 @end itemize
814
815 @section asetnsamples
816
817 Set the number of samples per each output audio frame.
818
819 The last output packet may contain a different number of samples, as
820 the filter will flush all the remaining samples when the input audio
821 signal its end.
822
823 The filter accepts the following options:
824
825 @table @option
826
827 @item nb_out_samples, n
828 Set the number of frames per each output audio frame. The number is
829 intended as the number of samples @emph{per each channel}.
830 Default value is 1024.
831
832 @item pad, p
833 If set to 1, the filter will pad the last audio frame with zeroes, so
834 that the last frame will contain the same number of samples as the
835 previous ones. Default value is 1.
836 @end table
837
838 For example, to set the number of per-frame samples to 1234 and
839 disable padding for the last frame, use:
840 @example
841 asetnsamples=n=1234:p=0
842 @end example
843
844 @section asetrate
845
846 Set the sample rate without altering the PCM data.
847 This will result in a change of speed and pitch.
848
849 The filter accepts the following options:
850
851 @table @option
852 @item sample_rate, r
853 Set the output sample rate. Default is 44100 Hz.
854 @end table
855
856 @section ashowinfo
857
858 Show a line containing various information for each input audio frame.
859 The input audio is not modified.
860
861 The shown line contains a sequence of key/value pairs of the form
862 @var{key}:@var{value}.
863
864 A description of each shown parameter follows:
865
866 @table @option
867 @item n
868 sequential number of the input frame, starting from 0
869
870 @item pts
871 Presentation timestamp of the input frame, in time base units; the time base
872 depends on the filter input pad, and is usually 1/@var{sample_rate}.
873
874 @item pts_time
875 presentation timestamp of the input frame in seconds
876
877 @item pos
878 position of the frame in the input stream, -1 if this information in
879 unavailable and/or meaningless (for example in case of synthetic audio)
880
881 @item fmt
882 sample format
883
884 @item chlayout
885 channel layout
886
887 @item rate
888 sample rate for the audio frame
889
890 @item nb_samples
891 number of samples (per channel) in the frame
892
893 @item checksum
894 Adler-32 checksum (printed in hexadecimal) of the audio data. For planar audio
895 the data is treated as if all the planes were concatenated.
896
897 @item plane_checksums
898 A list of Adler-32 checksums for each data plane.
899 @end table
900
901 @section astats
902
903 Display time domain statistical information about the audio channels.
904 Statistics are calculated and displayed for each audio channel and,
905 where applicable, an overall figure is also given.
906
907 The filter accepts the following option:
908 @table @option
909 @item length
910 Short window length in seconds, used for peak and trough RMS measurement.
911 Default is @code{0.05} (50 miliseconds). Allowed range is @code{[0.1 - 10]}.
912 @end table
913
914 A description of each shown parameter follows:
915
916 @table @option
917 @item DC offset
918 Mean amplitude displacement from zero.
919
920 @item Min level
921 Minimal sample level.
922
923 @item Max level
924 Maximal sample level.
925
926 @item Peak level dB
927 @item RMS level dB
928 Standard peak and RMS level measured in dBFS.
929
930 @item RMS peak dB
931 @item RMS trough dB
932 Peak and trough values for RMS level measured over a short window.
933
934 @item Crest factor
935 Standard ratio of peak to RMS level (note: not in dB).
936
937 @item Flat factor
938 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
939 (i.e. either @var{Min level} or @var{Max level}).
940
941 @item Peak count
942 Number of occasions (not the number of samples) that the signal attained either
943 @var{Min level} or @var{Max level}.
944 @end table
945
946 @section astreamsync
947
948 Forward two audio streams and control the order the buffers are forwarded.
949
950 The filter accepts the following options:
951
952 @table @option
953 @item expr, e
954 Set the expression deciding which stream should be
955 forwarded next: if the result is negative, the first stream is forwarded; if
956 the result is positive or zero, the second stream is forwarded. It can use
957 the following variables:
958
959 @table @var
960 @item b1 b2
961 number of buffers forwarded so far on each stream
962 @item s1 s2
963 number of samples forwarded so far on each stream
964 @item t1 t2
965 current timestamp of each stream
966 @end table
967
968 The default value is @code{t1-t2}, which means to always forward the stream
969 that has a smaller timestamp.
970 @end table
971
972 @subsection Examples
973
974 Stress-test @code{amerge} by randomly sending buffers on the wrong
975 input, while avoiding too much of a desynchronization:
976 @example
977 amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
978 [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
979 [a2] [b2] amerge
980 @end example
981
982 @section asyncts
983
984 Synchronize audio data with timestamps by squeezing/stretching it and/or
985 dropping samples/adding silence when needed.
986
987 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
988
989 The filter accepts the following named parameters:
990 @table @option
991
992 @item compensate
993 Enable stretching/squeezing the data to make it match the timestamps. Disabled
994 by default. When disabled, time gaps are covered with silence.
995
996 @item min_delta
997 Minimum difference between timestamps and audio data (in seconds) to trigger
998 adding/dropping samples. Default value is 0.1. If you get non-perfect sync with
999 this filter, try setting this parameter to 0.
1000
1001 @item max_comp
1002 Maximum compensation in samples per second. Relevant only with compensate=1.
1003 Default value 500.
1004
1005 @item first_pts
1006 Assume the first pts should be this value. The time base is 1 / sample rate.
1007 This allows for padding/trimming at the start of stream. By default, no
1008 assumption is made about the first frame's expected pts, so no padding or
1009 trimming is done. For example, this could be set to 0 to pad the beginning with
1010 silence if an audio stream starts after the video stream or to trim any samples
1011 with a negative pts due to encoder delay.
1012
1013 @end table
1014
1015 @section atempo
1016
1017 Adjust audio tempo.
1018
1019 The filter accepts exactly one parameter, the audio tempo. If not
1020 specified then the filter will assume nominal 1.0 tempo. Tempo must
1021 be in the [0.5, 2.0] range.
1022
1023 @subsection Examples
1024
1025 @itemize
1026 @item
1027 Slow down audio to 80% tempo:
1028 @example
1029 atempo=0.8
1030 @end example
1031
1032 @item
1033 To speed up audio to 125% tempo:
1034 @example
1035 atempo=1.25
1036 @end example
1037 @end itemize
1038
1039 @section atrim
1040
1041 Trim the input so that the output contains one continuous subpart of the input.
1042
1043 This filter accepts the following options:
1044 @table @option
1045 @item start
1046 Specify time of the start of the kept section, i.e. the audio sample
1047 with the timestamp @var{start} will be the first sample in the output.
1048
1049 @item end
1050 Specify time of the first audio sample that will be dropped, i.e. the
1051 audio sample immediately preceding the one with the timestamp @var{end} will be
1052 the last sample in the output.
1053
1054 @item start_pts
1055 Same as @var{start}, except this option sets the start timestamp in samples
1056 instead of seconds.
1057
1058 @item end_pts
1059 Same as @var{end}, except this option sets the end timestamp in samples instead
1060 of seconds.
1061
1062 @item duration
1063 Specify maximum duration of the output.
1064
1065 @item start_sample
1066 Number of the first sample that should be passed to output.
1067
1068 @item end_sample
1069 Number of the first sample that should be dropped.
1070 @end table
1071
1072 @option{start}, @option{end}, @option{duration} are expressed as time
1073 duration specifications, check the "Time duration" section in the
1074 ffmpeg-utils manual.
1075
1076 Note that the first two sets of the start/end options and the @option{duration}
1077 option look at the frame timestamp, while the _sample options simply count the
1078 samples that pass through the filter. So start/end_pts and start/end_sample will
1079 give different results when the timestamps are wrong, inexact or do not start at
1080 zero. Also note that this filter does not modify the timestamps. If you wish
1081 that the output timestamps start at zero, insert the asetpts filter after the
1082 atrim filter.
1083
1084 If multiple start or end options are set, this filter tries to be greedy and
1085 keep all samples that match at least one of the specified constraints. To keep
1086 only the part that matches all the constraints at once, chain multiple atrim
1087 filters.
1088
1089 The defaults are such that all the input is kept. So it is possible to set e.g.
1090 just the end values to keep everything before the specified time.
1091
1092 Examples:
1093 @itemize
1094 @item
1095 drop everything except the second minute of input
1096 @example
1097 ffmpeg -i INPUT -af atrim=60:120
1098 @end example
1099
1100 @item
1101 keep only the first 1000 samples
1102 @example
1103 ffmpeg -i INPUT -af atrim=end_sample=1000
1104 @end example
1105
1106 @end itemize
1107
1108 @section bandpass
1109
1110 Apply a two-pole Butterworth band-pass filter with central
1111 frequency @var{frequency}, and (3dB-point) band-width width.
1112 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1113 instead of the default: constant 0dB peak gain.
1114 The filter roll off at 6dB per octave (20dB per decade).
1115
1116 The filter accepts the following options:
1117
1118 @table @option
1119 @item frequency, f
1120 Set the filter's central frequency. Default is @code{3000}.
1121
1122 @item csg
1123 Constant skirt gain if set to 1. Defaults to 0.
1124
1125 @item width_type
1126 Set method to specify band-width of filter.
1127 @table @option
1128 @item h
1129 Hz
1130 @item q
1131 Q-Factor
1132 @item o
1133 octave
1134 @item s
1135 slope
1136 @end table
1137
1138 @item width, w
1139 Specify the band-width of a filter in width_type units.
1140 @end table
1141
1142 @section bandreject
1143
1144 Apply a two-pole Butterworth band-reject filter with central
1145 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1146 The filter roll off at 6dB per octave (20dB per decade).
1147
1148 The filter accepts the following options:
1149
1150 @table @option
1151 @item frequency, f
1152 Set the filter's central frequency. Default is @code{3000}.
1153
1154 @item width_type
1155 Set method to specify band-width of filter.
1156 @table @option
1157 @item h
1158 Hz
1159 @item q
1160 Q-Factor
1161 @item o
1162 octave
1163 @item s
1164 slope
1165 @end table
1166
1167 @item width, w
1168 Specify the band-width of a filter in width_type units.
1169 @end table
1170
1171 @section bass
1172
1173 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1174 shelving filter with a response similar to that of a standard
1175 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1176
1177 The filter accepts the following options:
1178
1179 @table @option
1180 @item gain, g
1181 Give the gain at 0 Hz. Its useful range is about -20
1182 (for a large cut) to +20 (for a large boost).
1183 Beware of clipping when using a positive gain.
1184
1185 @item frequency, f
1186 Set the filter's central frequency and so can be used
1187 to extend or reduce the frequency range to be boosted or cut.
1188 The default value is @code{100} Hz.
1189
1190 @item width_type
1191 Set method to specify band-width of filter.
1192 @table @option
1193 @item h
1194 Hz
1195 @item q
1196 Q-Factor
1197 @item o
1198 octave
1199 @item s
1200 slope
1201 @end table
1202
1203 @item width, w
1204 Determine how steep is the filter's shelf transition.
1205 @end table
1206
1207 @section biquad
1208
1209 Apply a biquad IIR filter with the given coefficients.
1210 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1211 are the numerator and denominator coefficients respectively.
1212
1213 @section channelmap
1214
1215 Remap input channels to new locations.
1216
1217 This filter accepts the following named parameters:
1218 @table @option
1219 @item channel_layout
1220 Channel layout of the output stream.
1221
1222 @item map
1223 Map channels from input to output. The argument is a '|'-separated list of
1224 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1225 @var{in_channel} form. @var{in_channel} can be either the name of the input
1226 channel (e.g. FL for front left) or its index in the input channel layout.
1227 @var{out_channel} is the name of the output channel or its index in the output
1228 channel layout. If @var{out_channel} is not given then it is implicitly an
1229 index, starting with zero and increasing by one for each mapping.
1230 @end table
1231
1232 If no mapping is present, the filter will implicitly map input channels to
1233 output channels preserving index.
1234
1235 For example, assuming a 5.1+downmix input MOV file
1236 @example
1237 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1238 @end example
1239 will create an output WAV file tagged as stereo from the downmix channels of
1240 the input.
1241
1242 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1243 @example
1244 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:channel_layout=5.1' out.wav
1245 @end example
1246
1247 @section channelsplit
1248
1249 Split each channel in input audio stream into a separate output stream.
1250
1251 This filter accepts the following named parameters:
1252 @table @option
1253 @item channel_layout
1254 Channel layout of the input stream. Default is "stereo".
1255 @end table
1256
1257 For example, assuming a stereo input MP3 file
1258 @example
1259 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1260 @end example
1261 will create an output Matroska file with two audio streams, one containing only
1262 the left channel and the other the right channel.
1263
1264 To split a 5.1 WAV file into per-channel files
1265 @example
1266 ffmpeg -i in.wav -filter_complex
1267 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1268 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1269 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1270 side_right.wav
1271 @end example
1272
1273 @section compand
1274
1275 Compress or expand audio dynamic range.
1276
1277 A description of the accepted options follows.
1278
1279 @table @option
1280 @item attacks
1281 @item decays
1282 Set list of times in seconds for each channel over which the instantaneous
1283 level of the input signal is averaged to determine its volume.
1284 @option{attacks} refers to increase of volume and @option{decays} refers
1285 to decrease of volume.
1286 For most situations, the attack time (response to the audio getting louder)
1287 should be shorter than the decay time because the human ear is more sensitive
1288 to sudden loud audio than sudden soft audio.
1289 Typical value for attack is @code{0.3} seconds and for decay @code{0.8}
1290 seconds.
1291
1292 @item points
1293 Set list of points for transfer function, specified in dB relative to maximum
1294 possible signal amplitude.
1295 Each key points list need to be defined using the following syntax:
1296 @code{x0/y0 x1/y1 x2/y2 ...}.
1297
1298 The input values must be in strictly increasing order but the transfer
1299 function does not have to be monotonically rising.
1300 The point @code{0/0} is assumed but may be overridden (by @code{0/out-dBn}).
1301 Typical values for the transfer function are @code{-70/-70 -60/-20}.
1302
1303 @item soft-knee
1304 Set amount for which the points at where adjacent line segments on the
1305 transfer function meet will be rounded. Defaults is @code{0.01}.
1306
1307 @item gain
1308 Set additional gain in dB to be applied at all points on the transfer function
1309 and allows easy adjustment of the overall gain.
1310 Default is @code{0}.
1311
1312 @item volume
1313 Set initial volume in dB to be assumed for each channel when filtering starts.
1314 This permits the user to supply a nominal level initially, so that,
1315 for example, a very large gain is not applied to initial signal levels before
1316 the companding has begun to operate. A typical value for audio which is
1317 initially quiet is -90 dB. Default is @code{0}.
1318
1319 @item delay
1320 Set delay in seconds. Default is @code{0}. The input audio
1321 is analysed immediately, but audio is delayed before being fed to the
1322 volume adjuster. Specifying a delay approximately equal to the attack/decay
1323 times allows the filter to effectively operate in predictive rather than
1324 reactive mode.
1325 @end table
1326
1327 @subsection Examples
1328 @itemize
1329 @item
1330 Make music with both quiet and loud passages suitable for listening
1331 in a noisy environment:
1332 @example
1333 compand=.3 .3:1 1:-90/-60 -60/-40 -40/-30 -20/-20:6:0:-90:0.2
1334 @end example
1335
1336 @item
1337 Noise-gate for when the noise is at a lower level than the signal:
1338 @example
1339 compand=.1 .1:.2 .2:-900/-900 -50.1/-900 -50/-50:.01:0:-90:.1
1340 @end example
1341
1342 @item
1343 Here is another noise-gate, this time for when the noise is at a higher level
1344 than the signal (making it, in some ways, similar to squelch):
1345 @example
1346 compand=.1 .1:.1 .1:-45.1/-45.1 -45/-900 0/-900:.01:45:-90:.1
1347 @end example
1348 @end itemize
1349
1350 @section earwax
1351
1352 Make audio easier to listen to on headphones.
1353
1354 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
1355 so that when listened to on headphones the stereo image is moved from
1356 inside your head (standard for headphones) to outside and in front of
1357 the listener (standard for speakers).
1358
1359 Ported from SoX.
1360
1361 @section equalizer
1362
1363 Apply a two-pole peaking equalisation (EQ) filter. With this
1364 filter, the signal-level at and around a selected frequency can
1365 be increased or decreased, whilst (unlike bandpass and bandreject
1366 filters) that at all other frequencies is unchanged.
1367
1368 In order to produce complex equalisation curves, this filter can
1369 be given several times, each with a different central frequency.
1370
1371 The filter accepts the following options:
1372
1373 @table @option
1374 @item frequency, f
1375 Set the filter's central frequency in Hz.
1376
1377 @item width_type
1378 Set method to specify band-width of filter.
1379 @table @option
1380 @item h
1381 Hz
1382 @item q
1383 Q-Factor
1384 @item o
1385 octave
1386 @item s
1387 slope
1388 @end table
1389
1390 @item width, w
1391 Specify the band-width of a filter in width_type units.
1392
1393 @item gain, g
1394 Set the required gain or attenuation in dB.
1395 Beware of clipping when using a positive gain.
1396 @end table
1397
1398 @section highpass
1399
1400 Apply a high-pass filter with 3dB point frequency.
1401 The filter can be either single-pole, or double-pole (the default).
1402 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
1403
1404 The filter accepts the following options:
1405
1406 @table @option
1407 @item frequency, f
1408 Set frequency in Hz. Default is 3000.
1409
1410 @item poles, p
1411 Set number of poles. Default is 2.
1412
1413 @item width_type
1414 Set method to specify band-width of filter.
1415 @table @option
1416 @item h
1417 Hz
1418 @item q
1419 Q-Factor
1420 @item o
1421 octave
1422 @item s
1423 slope
1424 @end table
1425
1426 @item width, w
1427 Specify the band-width of a filter in width_type units.
1428 Applies only to double-pole filter.
1429 The default is 0.707q and gives a Butterworth response.
1430 @end table
1431
1432 @section join
1433
1434 Join multiple input streams into one multi-channel stream.
1435
1436 The filter accepts the following named parameters:
1437 @table @option
1438
1439 @item inputs
1440 Number of input streams. Defaults to 2.
1441
1442 @item channel_layout
1443 Desired output channel layout. Defaults to stereo.
1444
1445 @item map
1446 Map channels from inputs to output. The argument is a '|'-separated list of
1447 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
1448 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
1449 can be either the name of the input channel (e.g. FL for front left) or its
1450 index in the specified input stream. @var{out_channel} is the name of the output
1451 channel.
1452 @end table
1453
1454 The filter will attempt to guess the mappings when those are not specified
1455 explicitly. It does so by first trying to find an unused matching input channel
1456 and if that fails it picks the first unused input channel.
1457
1458 E.g. to join 3 inputs (with properly set channel layouts)
1459 @example
1460 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
1461 @end example
1462
1463 To build a 5.1 output from 6 single-channel streams:
1464 @example
1465 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
1466 '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'
1467 out
1468 @end example
1469
1470 @section ladspa
1471
1472 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
1473
1474 To enable compilation of this filter you need to configure FFmpeg with
1475 @code{--enable-ladspa}.
1476
1477 @table @option
1478 @item file, f
1479 Specifies the name of LADSPA plugin library to load. If the environment
1480 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
1481 each one of the directories specified by the colon separated list in
1482 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
1483 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
1484 @file{/usr/lib/ladspa/}.
1485
1486 @item plugin, p
1487 Specifies the plugin within the library. Some libraries contain only
1488 one plugin, but others contain many of them. If this is not set filter
1489 will list all available plugins within the specified library.
1490
1491 @item controls, c
1492 Set the '|' separated list of controls which are zero or more floating point
1493 values that determine the behavior of the loaded plugin (for example delay,
1494 threshold or gain).
1495 Controls need to be defined using the following syntax:
1496 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
1497 @var{valuei} is the value set on the @var{i}-th control.
1498 If @option{controls} is set to @code{help}, all available controls and
1499 their valid ranges are printed.
1500
1501 @item sample_rate, s
1502 Specify the sample rate, default to 44100. Only used if plugin have
1503 zero inputs.
1504
1505 @item nb_samples, n
1506 Set the number of samples per channel per each output frame, default
1507 is 1024. Only used if plugin have zero inputs.
1508
1509 @item duration, d
1510 Set the minimum duration of the sourced audio. See the function
1511 @code{av_parse_time()} for the accepted format, also check the "Time duration"
1512 section in the ffmpeg-utils manual.
1513 Note that the resulting duration may be greater than the specified duration,
1514 as the generated audio is always cut at the end of a complete frame.
1515 If not specified, or the expressed duration is negative, the audio is
1516 supposed to be generated forever.
1517 Only used if plugin have zero inputs.
1518
1519 @end table
1520
1521 @subsection Examples
1522
1523 @itemize
1524 @item
1525 List all available plugins within amp (LADSPA example plugin) library:
1526 @example
1527 ladspa=file=amp
1528 @end example
1529
1530 @item
1531 List all available controls and their valid ranges for @code{vcf_notch}
1532 plugin from @code{VCF} library:
1533 @example
1534 ladspa=f=vcf:p=vcf_notch:c=help
1535 @end example
1536
1537 @item
1538 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
1539 plugin library:
1540 @example
1541 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
1542 @end example
1543
1544 @item
1545 Add reverberation to the audio using TAP-plugins
1546 (Tom's Audio Processing plugins):
1547 @example
1548 ladspa=file=tap_reverb:tap_reverb
1549 @end example
1550
1551 @item
1552 Generate white noise, with 0.2 amplitude:
1553 @example
1554 ladspa=file=cmt:noise_source_white:c=c0=.2
1555 @end example
1556
1557 @item
1558 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
1559 @code{C* Audio Plugin Suite} (CAPS) library:
1560 @example
1561 ladspa=file=caps:Click:c=c1=20'
1562 @end example
1563
1564 @item
1565 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
1566 @example
1567 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
1568 @end example
1569 @end itemize
1570
1571 @subsection Commands
1572
1573 This filter supports the following commands:
1574 @table @option
1575 @item cN
1576 Modify the @var{N}-th control value.
1577
1578 If the specified value is not valid, it is ignored and prior one is kept.
1579 @end table
1580
1581 @section lowpass
1582
1583 Apply a low-pass filter with 3dB point frequency.
1584 The filter can be either single-pole or double-pole (the default).
1585 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
1586
1587 The filter accepts the following options:
1588
1589 @table @option
1590 @item frequency, f
1591 Set frequency in Hz. Default is 500.
1592
1593 @item poles, p
1594 Set number of poles. Default is 2.
1595
1596 @item width_type
1597 Set method to specify band-width of filter.
1598 @table @option
1599 @item h
1600 Hz
1601 @item q
1602 Q-Factor
1603 @item o
1604 octave
1605 @item s
1606 slope
1607 @end table
1608
1609 @item width, w
1610 Specify the band-width of a filter in width_type units.
1611 Applies only to double-pole filter.
1612 The default is 0.707q and gives a Butterworth response.
1613 @end table
1614
1615 @section pan
1616
1617 Mix channels with specific gain levels. The filter accepts the output
1618 channel layout followed by a set of channels definitions.
1619
1620 This filter is also designed to remap efficiently the channels of an audio
1621 stream.
1622
1623 The filter accepts parameters of the form:
1624 "@var{l}:@var{outdef}:@var{outdef}:..."
1625
1626 @table @option
1627 @item l
1628 output channel layout or number of channels
1629
1630 @item outdef
1631 output channel specification, of the form:
1632 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
1633
1634 @item out_name
1635 output channel to define, either a channel name (FL, FR, etc.) or a channel
1636 number (c0, c1, etc.)
1637
1638 @item gain
1639 multiplicative coefficient for the channel, 1 leaving the volume unchanged
1640
1641 @item in_name
1642 input channel to use, see out_name for details; it is not possible to mix
1643 named and numbered input channels
1644 @end table
1645
1646 If the `=' in a channel specification is replaced by `<', then the gains for
1647 that specification will be renormalized so that the total is 1, thus
1648 avoiding clipping noise.
1649
1650 @subsection Mixing examples
1651
1652 For example, if you want to down-mix from stereo to mono, but with a bigger
1653 factor for the left channel:
1654 @example
1655 pan=1:c0=0.9*c0+0.1*c1
1656 @end example
1657
1658 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
1659 7-channels surround:
1660 @example
1661 pan=stereo: FL < FL + 0.5*FC + 0.6*BL + 0.6*SL : FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
1662 @end example
1663
1664 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
1665 that should be preferred (see "-ac" option) unless you have very specific
1666 needs.
1667
1668 @subsection Remapping examples
1669
1670 The channel remapping will be effective if, and only if:
1671
1672 @itemize
1673 @item gain coefficients are zeroes or ones,
1674 @item only one input per channel output,
1675 @end itemize
1676
1677 If all these conditions are satisfied, the filter will notify the user ("Pure
1678 channel mapping detected"), and use an optimized and lossless method to do the
1679 remapping.
1680
1681 For example, if you have a 5.1 source and want a stereo audio stream by
1682 dropping the extra channels:
1683 @example
1684 pan="stereo: c0=FL : c1=FR"
1685 @end example
1686
1687 Given the same source, you can also switch front left and front right channels
1688 and keep the input channel layout:
1689 @example
1690 pan="5.1: c0=c1 : c1=c0 : c2=c2 : c3=c3 : c4=c4 : c5=c5"
1691 @end example
1692
1693 If the input is a stereo audio stream, you can mute the front left channel (and
1694 still keep the stereo channel layout) with:
1695 @example
1696 pan="stereo:c1=c1"
1697 @end example
1698
1699 Still with a stereo audio stream input, you can copy the right channel in both
1700 front left and right:
1701 @example
1702 pan="stereo: c0=FR : c1=FR"
1703 @end example
1704
1705 @section replaygain
1706
1707 ReplayGain scanner filter. This filter takes an audio stream as an input and
1708 outputs it unchanged.
1709 At end of filtering it displays @code{track_gain} and @code{track_peak}.
1710
1711 @section resample
1712
1713 Convert the audio sample format, sample rate and channel layout. This filter is
1714 not meant to be used directly.
1715
1716 @section silencedetect
1717
1718 Detect silence in an audio stream.
1719
1720 This filter logs a message when it detects that the input audio volume is less
1721 or equal to a noise tolerance value for a duration greater or equal to the
1722 minimum detected noise duration.
1723
1724 The printed times and duration are expressed in seconds.
1725
1726 The filter accepts the following options:
1727
1728 @table @option
1729 @item duration, d
1730 Set silence duration until notification (default is 2 seconds).
1731
1732 @item noise, n
1733 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
1734 specified value) or amplitude ratio. Default is -60dB, or 0.001.
1735 @end table
1736
1737 @subsection Examples
1738
1739 @itemize
1740 @item
1741 Detect 5 seconds of silence with -50dB noise tolerance:
1742 @example
1743 silencedetect=n=-50dB:d=5
1744 @end example
1745
1746 @item
1747 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
1748 tolerance in @file{silence.mp3}:
1749 @example
1750 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
1751 @end example
1752 @end itemize
1753
1754 @section treble
1755
1756 Boost or cut treble (upper) frequencies of the audio using a two-pole
1757 shelving filter with a response similar to that of a standard
1758 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1759
1760 The filter accepts the following options:
1761
1762 @table @option
1763 @item gain, g
1764 Give the gain at whichever is the lower of ~22 kHz and the
1765 Nyquist frequency. Its useful range is about -20 (for a large cut)
1766 to +20 (for a large boost). Beware of clipping when using a positive gain.
1767
1768 @item frequency, f
1769 Set the filter's central frequency and so can be used
1770 to extend or reduce the frequency range to be boosted or cut.
1771 The default value is @code{3000} Hz.
1772
1773 @item width_type
1774 Set method to specify band-width of filter.
1775 @table @option
1776 @item h
1777 Hz
1778 @item q
1779 Q-Factor
1780 @item o
1781 octave
1782 @item s
1783 slope
1784 @end table
1785
1786 @item width, w
1787 Determine how steep is the filter's shelf transition.
1788 @end table
1789
1790 @section volume
1791
1792 Adjust the input audio volume.
1793
1794 The filter accepts the following options:
1795
1796 @table @option
1797
1798 @item volume
1799 Expresses how the audio volume will be increased or decreased.
1800
1801 Output values are clipped to the maximum value.
1802
1803 The output audio volume is given by the relation:
1804 @example
1805 @var{output_volume} = @var{volume} * @var{input_volume}
1806 @end example
1807
1808 Default value for @var{volume} is 1.0.
1809
1810 @item precision
1811 Set the mathematical precision.
1812
1813 This determines which input sample formats will be allowed, which affects the
1814 precision of the volume scaling.
1815
1816 @table @option
1817 @item fixed
1818 8-bit fixed-point; limits input sample format to U8, S16, and S32.
1819 @item float
1820 32-bit floating-point; limits input sample format to FLT. (default)
1821 @item double
1822 64-bit floating-point; limits input sample format to DBL.
1823 @end table
1824 @end table
1825
1826 @subsection Examples
1827
1828 @itemize
1829 @item
1830 Halve the input audio volume:
1831 @example
1832 volume=volume=0.5
1833 volume=volume=1/2
1834 volume=volume=-6.0206dB
1835 @end example
1836
1837 In all the above example the named key for @option{volume} can be
1838 omitted, for example like in:
1839 @example
1840 volume=0.5
1841 @end example
1842
1843 @item
1844 Increase input audio power by 6 decibels using fixed-point precision:
1845 @example
1846 volume=volume=6dB:precision=fixed
1847 @end example
1848 @end itemize
1849
1850 @section volumedetect
1851
1852 Detect the volume of the input video.
1853
1854 The filter has no parameters. The input is not modified. Statistics about
1855 the volume will be printed in the log when the input stream end is reached.
1856
1857 In particular it will show the mean volume (root mean square), maximum
1858 volume (on a per-sample basis), and the beginning of a histogram of the
1859 registered volume values (from the maximum value to a cumulated 1/1000 of
1860 the samples).
1861
1862 All volumes are in decibels relative to the maximum PCM value.
1863
1864 @subsection Examples
1865
1866 Here is an excerpt of the output:
1867 @example
1868 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
1869 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
1870 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
1871 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
1872 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
1873 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
1874 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
1875 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
1876 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
1877 @end example
1878
1879 It means that:
1880 @itemize
1881 @item
1882 The mean square energy is approximately -27 dB, or 10^-2.7.
1883 @item
1884 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
1885 @item
1886 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
1887 @end itemize
1888
1889 In other words, raising the volume by +4 dB does not cause any clipping,
1890 raising it by +5 dB causes clipping for 6 samples, etc.
1891
1892 @c man end AUDIO FILTERS
1893
1894 @chapter Audio Sources
1895 @c man begin AUDIO SOURCES
1896
1897 Below is a description of the currently available audio sources.
1898
1899 @section abuffer
1900
1901 Buffer audio frames, and make them available to the filter chain.
1902
1903 This source is mainly intended for a programmatic use, in particular
1904 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
1905
1906 It accepts the following named parameters:
1907
1908 @table @option
1909
1910 @item time_base
1911 Timebase which will be used for timestamps of submitted frames. It must be
1912 either a floating-point number or in @var{numerator}/@var{denominator} form.
1913
1914 @item sample_rate
1915 The sample rate of the incoming audio buffers.
1916
1917 @item sample_fmt
1918 The sample format of the incoming audio buffers.
1919 Either a sample format name or its corresponging integer representation from
1920 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
1921
1922 @item channel_layout
1923 The channel layout of the incoming audio buffers.
1924 Either a channel layout name from channel_layout_map in
1925 @file{libavutil/channel_layout.c} or its corresponding integer representation
1926 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
1927
1928 @item channels
1929 The number of channels of the incoming audio buffers.
1930 If both @var{channels} and @var{channel_layout} are specified, then they
1931 must be consistent.
1932
1933 @end table
1934
1935 @subsection Examples
1936
1937 @example
1938 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
1939 @end example
1940
1941 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
1942 Since the sample format with name "s16p" corresponds to the number
1943 6 and the "stereo" channel layout corresponds to the value 0x3, this is
1944 equivalent to:
1945 @example
1946 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
1947 @end example
1948
1949 @section aevalsrc
1950
1951 Generate an audio signal specified by an expression.
1952
1953 This source accepts in input one or more expressions (one for each
1954 channel), which are evaluated and used to generate a corresponding
1955 audio signal.
1956
1957 This source accepts the following options:
1958
1959 @table @option
1960 @item exprs
1961 Set the '|'-separated expressions list for each separate channel. In case the
1962 @option{channel_layout} option is not specified, the selected channel layout
1963 depends on the number of provided expressions. Otherwise the last
1964 specified expression is applied to the remaining output channels.
1965
1966 @item channel_layout, c
1967 Set the channel layout. The number of channels in the specified layout
1968 must be equal to the number of specified expressions.
1969
1970 @item duration, d
1971 Set the minimum duration of the sourced audio. See the function
1972 @code{av_parse_time()} for the accepted format.
1973 Note that the resulting duration may be greater than the specified
1974 duration, as the generated audio is always cut at the end of a
1975 complete frame.
1976
1977 If not specified, or the expressed duration is negative, the audio is
1978 supposed to be generated forever.
1979
1980 @item nb_samples, n
1981 Set the number of samples per channel per each output frame,
1982 default to 1024.
1983
1984 @item sample_rate, s
1985 Specify the sample rate, default to 44100.
1986 @end table
1987
1988 Each expression in @var{exprs} can contain the following constants:
1989
1990 @table @option
1991 @item n
1992 number of the evaluated sample, starting from 0
1993
1994 @item t
1995 time of the evaluated sample expressed in seconds, starting from 0
1996
1997 @item s
1998 sample rate
1999
2000 @end table
2001
2002 @subsection Examples
2003
2004 @itemize
2005 @item
2006 Generate silence:
2007 @example
2008 aevalsrc=0
2009 @end example
2010
2011 @item
2012 Generate a sin signal with frequency of 440 Hz, set sample rate to
2013 8000 Hz:
2014 @example
2015 aevalsrc="sin(440*2*PI*t):s=8000"
2016 @end example
2017
2018 @item
2019 Generate a two channels signal, specify the channel layout (Front
2020 Center + Back Center) explicitly:
2021 @example
2022 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
2023 @end example
2024
2025 @item
2026 Generate white noise:
2027 @example
2028 aevalsrc="-2+random(0)"
2029 @end example
2030
2031 @item
2032 Generate an amplitude modulated signal:
2033 @example
2034 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
2035 @end example
2036
2037 @item
2038 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
2039 @example
2040 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
2041 @end example
2042
2043 @end itemize
2044
2045 @section anullsrc
2046
2047 Null audio source, return unprocessed audio frames. It is mainly useful
2048 as a template and to be employed in analysis / debugging tools, or as
2049 the source for filters which ignore the input data (for example the sox
2050 synth filter).
2051
2052 This source accepts the following options:
2053
2054 @table @option
2055
2056 @item channel_layout, cl
2057
2058 Specify the channel layout, and can be either an integer or a string
2059 representing a channel layout. The default value of @var{channel_layout}
2060 is "stereo".
2061
2062 Check the channel_layout_map definition in
2063 @file{libavutil/channel_layout.c} for the mapping between strings and
2064 channel layout values.
2065
2066 @item sample_rate, r
2067 Specify the sample rate, and defaults to 44100.
2068
2069 @item nb_samples, n
2070 Set the number of samples per requested frames.
2071
2072 @end table
2073
2074 @subsection Examples
2075
2076 @itemize
2077 @item
2078 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
2079 @example
2080 anullsrc=r=48000:cl=4
2081 @end example
2082
2083 @item
2084 Do the same operation with a more obvious syntax:
2085 @example
2086 anullsrc=r=48000:cl=mono
2087 @end example
2088 @end itemize
2089
2090 All the parameters need to be explicitly defined.
2091
2092 @section flite
2093
2094 Synthesize a voice utterance using the libflite library.
2095
2096 To enable compilation of this filter you need to configure FFmpeg with
2097 @code{--enable-libflite}.
2098
2099 Note that the flite library is not thread-safe.
2100
2101 The filter accepts the following options:
2102
2103 @table @option
2104
2105 @item list_voices
2106 If set to 1, list the names of the available voices and exit
2107 immediately. Default value is 0.
2108
2109 @item nb_samples, n
2110 Set the maximum number of samples per frame. Default value is 512.
2111
2112 @item textfile
2113 Set the filename containing the text to speak.
2114
2115 @item text
2116 Set the text to speak.
2117
2118 @item voice, v
2119 Set the voice to use for the speech synthesis. Default value is
2120 @code{kal}. See also the @var{list_voices} option.
2121 @end table
2122
2123 @subsection Examples
2124
2125 @itemize
2126 @item
2127 Read from file @file{speech.txt}, and synthetize the text using the
2128 standard flite voice:
2129 @example
2130 flite=textfile=speech.txt
2131 @end example
2132
2133 @item
2134 Read the specified text selecting the @code{slt} voice:
2135 @example
2136 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
2137 @end example
2138
2139 @item
2140 Input text to ffmpeg:
2141 @example
2142 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
2143 @end example
2144
2145 @item
2146 Make @file{ffplay} speak the specified text, using @code{flite} and
2147 the @code{lavfi} device:
2148 @example
2149 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
2150 @end example
2151 @end itemize
2152
2153 For more information about libflite, check:
2154 @url{http://www.speech.cs.cmu.edu/flite/}
2155
2156 @section sine
2157
2158 Generate an audio signal made of a sine wave with amplitude 1/8.
2159
2160 The audio signal is bit-exact.
2161
2162 The filter accepts the following options:
2163
2164 @table @option
2165
2166 @item frequency, f
2167 Set the carrier frequency. Default is 440 Hz.
2168
2169 @item beep_factor, b
2170 Enable a periodic beep every second with frequency @var{beep_factor} times
2171 the carrier frequency. Default is 0, meaning the beep is disabled.
2172
2173 @item sample_rate, r
2174 Specify the sample rate, default is 44100.
2175
2176 @item duration, d
2177 Specify the duration of the generated audio stream.
2178
2179 @item samples_per_frame
2180 Set the number of samples per output frame, default is 1024.
2181 @end table
2182
2183 @subsection Examples
2184
2185 @itemize
2186
2187 @item
2188 Generate a simple 440 Hz sine wave:
2189 @example
2190 sine
2191 @end example
2192
2193 @item
2194 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
2195 @example
2196 sine=220:4:d=5
2197 sine=f=220:b=4:d=5
2198 sine=frequency=220:beep_factor=4:duration=5
2199 @end example
2200
2201 @end itemize
2202
2203 @c man end AUDIO SOURCES
2204
2205 @chapter Audio Sinks
2206 @c man begin AUDIO SINKS
2207
2208 Below is a description of the currently available audio sinks.
2209
2210 @section abuffersink
2211
2212 Buffer audio frames, and make them available to the end of filter chain.
2213
2214 This sink is mainly intended for programmatic use, in particular
2215 through the interface defined in @file{libavfilter/buffersink.h}
2216 or the options system.
2217
2218 It accepts a pointer to an AVABufferSinkContext structure, which
2219 defines the incoming buffers' formats, to be passed as the opaque
2220 parameter to @code{avfilter_init_filter} for initialization.
2221
2222 @section anullsink
2223
2224 Null audio sink, do absolutely nothing with the input audio. It is
2225 mainly useful as a template and to be employed in analysis / debugging
2226 tools.
2227
2228 @c man end AUDIO SINKS
2229
2230 @chapter Video Filters
2231 @c man begin VIDEO FILTERS
2232
2233 When you configure your FFmpeg build, you can disable any of the
2234 existing filters using @code{--disable-filters}.
2235 The configure output will show the video filters included in your
2236 build.
2237
2238 Below is a description of the currently available video filters.
2239
2240 @section alphaextract
2241
2242 Extract the alpha component from the input as a grayscale video. This
2243 is especially useful with the @var{alphamerge} filter.
2244
2245 @section alphamerge
2246
2247 Add or replace the alpha component of the primary input with the
2248 grayscale value of a second input. This is intended for use with
2249 @var{alphaextract} to allow the transmission or storage of frame
2250 sequences that have alpha in a format that doesn't support an alpha
2251 channel.
2252
2253 For example, to reconstruct full frames from a normal YUV-encoded video
2254 and a separate video created with @var{alphaextract}, you might use:
2255 @example
2256 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
2257 @end example
2258
2259 Since this filter is designed for reconstruction, it operates on frame
2260 sequences without considering timestamps, and terminates when either
2261 input reaches end of stream. This will cause problems if your encoding
2262 pipeline drops frames. If you're trying to apply an image as an
2263 overlay to a video stream, consider the @var{overlay} filter instead.
2264
2265 @section ass
2266
2267 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
2268 and libavformat to work. On the other hand, it is limited to ASS (Advanced
2269 Substation Alpha) subtitles files.
2270
2271 @section bbox
2272
2273 Compute the bounding box for the non-black pixels in the input frame
2274 luminance plane.
2275
2276 This filter computes the bounding box containing all the pixels with a
2277 luminance value greater than the minimum allowed value.
2278 The parameters describing the bounding box are printed on the filter
2279 log.
2280
2281 The filter accepts the following option:
2282
2283 @table @option
2284 @item min_val
2285 Set the minimal luminance value. Default is @code{16}.
2286 @end table
2287
2288 @section blackdetect
2289
2290 Detect video intervals that are (almost) completely black. Can be
2291 useful to detect chapter transitions, commercials, or invalid
2292 recordings. Output lines contains the time for the start, end and
2293 duration of the detected black interval expressed in seconds.
2294
2295 In order to display the output lines, you need to set the loglevel at
2296 least to the AV_LOG_INFO value.
2297
2298 The filter accepts the following options:
2299
2300 @table @option
2301 @item black_min_duration, d
2302 Set the minimum detected black duration expressed in seconds. It must
2303 be a non-negative floating point number.
2304
2305 Default value is 2.0.
2306
2307 @item picture_black_ratio_th, pic_th
2308 Set the threshold for considering a picture "black".
2309 Express the minimum value for the ratio:
2310 @example
2311 @var{nb_black_pixels} / @var{nb_pixels}
2312 @end example
2313
2314 for which a picture is considered black.
2315 Default value is 0.98.
2316
2317 @item pixel_black_th, pix_th
2318 Set the threshold for considering a pixel "black".
2319
2320 The threshold expresses the maximum pixel luminance value for which a
2321 pixel is considered "black". The provided value is scaled according to
2322 the following equation:
2323 @example
2324 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
2325 @end example
2326
2327 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
2328 the input video format, the range is [0-255] for YUV full-range
2329 formats and [16-235] for YUV non full-range formats.
2330
2331 Default value is 0.10.
2332 @end table
2333
2334 The following example sets the maximum pixel threshold to the minimum
2335 value, and detects only black intervals of 2 or more seconds:
2336 @example
2337 blackdetect=d=2:pix_th=0.00
2338 @end example
2339
2340 @section blackframe
2341
2342 Detect frames that are (almost) completely black. Can be useful to
2343 detect chapter transitions or commercials. Output lines consist of
2344 the frame number of the detected frame, the percentage of blackness,
2345 the position in the file if known or -1 and the timestamp in seconds.
2346
2347 In order to display the output lines, you need to set the loglevel at
2348 least to the AV_LOG_INFO value.
2349
2350 The filter accepts the following options:
2351
2352 @table @option
2353
2354 @item amount
2355 Set the percentage of the pixels that have to be below the threshold, defaults
2356 to @code{98}.
2357
2358 @item threshold, thresh
2359 Set the threshold below which a pixel value is considered black, defaults to
2360 @code{32}.
2361
2362 @end table
2363
2364 @section blend
2365
2366 Blend two video frames into each other.
2367
2368 It takes two input streams and outputs one stream, the first input is the
2369 "top" layer and second input is "bottom" layer.
2370 Output terminates when shortest input terminates.
2371
2372 A description of the accepted options follows.
2373
2374 @table @option
2375 @item c0_mode
2376 @item c1_mode
2377 @item c2_mode
2378 @item c3_mode
2379 @item all_mode
2380 Set blend mode for specific pixel component or all pixel components in case
2381 of @var{all_mode}. Default value is @code{normal}.
2382
2383 Available values for component modes are:
2384 @table @samp
2385 @item addition
2386 @item and
2387 @item average
2388 @item burn
2389 @item darken
2390 @item difference
2391 @item divide
2392 @item dodge
2393 @item exclusion
2394 @item hardlight
2395 @item lighten
2396 @item multiply
2397 @item negation
2398 @item normal
2399 @item or
2400 @item overlay
2401 @item phoenix
2402 @item pinlight
2403 @item reflect
2404 @item screen
2405 @item softlight
2406 @item subtract
2407 @item vividlight
2408 @item xor
2409 @end table
2410
2411 @item c0_opacity
2412 @item c1_opacity
2413 @item c2_opacity
2414 @item c3_opacity
2415 @item all_opacity
2416 Set blend opacity for specific pixel component or all pixel components in case
2417 of @var{all_opacity}. Only used in combination with pixel component blend modes.
2418
2419 @item c0_expr
2420 @item c1_expr
2421 @item c2_expr
2422 @item c3_expr
2423 @item all_expr
2424 Set blend expression for specific pixel component or all pixel components in case
2425 of @var{all_expr}. Note that related mode options will be ignored if those are set.
2426
2427 The expressions can use the following variables:
2428
2429 @table @option
2430 @item N
2431 The sequential number of the filtered frame, starting from @code{0}.
2432
2433 @item X
2434 @item Y
2435 the coordinates of the current sample
2436
2437 @item W
2438 @item H
2439 the width and height of currently filtered plane
2440
2441 @item SW
2442 @item SH
2443 Width and height scale depending on the currently filtered plane. It is the
2444 ratio between the corresponding luma plane number of pixels and the current
2445 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
2446 @code{0.5,0.5} for chroma planes.
2447
2448 @item T
2449 Time of the current frame, expressed in seconds.
2450
2451 @item TOP, A
2452 Value of pixel component at current location for first video frame (top layer).
2453
2454 @item BOTTOM, B
2455 Value of pixel component at current location for second video frame (bottom layer).
2456 @end table
2457
2458 @item shortest
2459 Force termination when the shortest input terminates. Default is @code{0}.
2460 @item repeatlast
2461 Continue applying the last bottom frame after the end of the stream. A value of
2462 @code{0} disable the filter after the last frame of the bottom layer is reached.
2463 Default is @code{1}.
2464 @end table
2465
2466 @subsection Examples
2467
2468 @itemize
2469 @item
2470 Apply transition from bottom layer to top layer in first 10 seconds:
2471 @example
2472 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
2473 @end example
2474
2475 @item
2476 Apply 1x1 checkerboard effect:
2477 @example
2478 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
2479 @end example
2480
2481 @item
2482 Apply uncover left effect:
2483 @example
2484 blend=all_expr='if(gte(N*SW+X,W),A,B)'
2485 @end example
2486
2487 @item
2488 Apply uncover down effect:
2489 @example
2490 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
2491 @end example
2492
2493 @item
2494 Apply uncover up-left effect:
2495 @example
2496 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
2497 @end example
2498 @end itemize
2499
2500 @section boxblur
2501
2502 Apply boxblur algorithm to the input video.
2503
2504 The filter accepts the following options:
2505
2506 @table @option
2507
2508 @item luma_radius, lr
2509 @item luma_power, lp
2510 @item chroma_radius, cr
2511 @item chroma_power, cp
2512 @item alpha_radius, ar
2513 @item alpha_power, ap
2514
2515 @end table
2516
2517 A description of the accepted options follows.
2518
2519 @table @option
2520 @item luma_radius, lr
2521 @item chroma_radius, cr
2522 @item alpha_radius, ar
2523 Set an expression for the box radius in pixels used for blurring the
2524 corresponding input plane.
2525
2526 The radius value must be a non-negative number, and must not be
2527 greater than the value of the expression @code{min(w,h)/2} for the
2528 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
2529 planes.
2530
2531 Default value for @option{luma_radius} is "2". If not specified,
2532 @option{chroma_radius} and @option{alpha_radius} default to the
2533 corresponding value set for @option{luma_radius}.
2534
2535 The expressions can contain the following constants:
2536 @table @option
2537 @item w
2538 @item h
2539 the input width and height in pixels
2540
2541 @item cw
2542 @item ch
2543 the input chroma image width and height in pixels
2544
2545 @item hsub
2546 @item vsub
2547 horizontal and vertical chroma subsample values. For example for the
2548 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2549 @end table
2550
2551 @item luma_power, lp
2552 @item chroma_power, cp
2553 @item alpha_power, ap
2554 Specify how many times the boxblur filter is applied to the
2555 corresponding plane.
2556
2557 Default value for @option{luma_power} is 2. If not specified,
2558 @option{chroma_power} and @option{alpha_power} default to the
2559 corresponding value set for @option{luma_power}.
2560
2561 A value of 0 will disable the effect.
2562 @end table
2563
2564 @subsection Examples
2565
2566 @itemize
2567 @item
2568 Apply a boxblur filter with luma, chroma, and alpha radius
2569 set to 2:
2570 @example
2571 boxblur=luma_radius=2:luma_power=1
2572 boxblur=2:1
2573 @end example
2574
2575 @item
2576 Set luma radius to 2, alpha and chroma radius to 0:
2577 @example
2578 boxblur=2:1:cr=0:ar=0
2579 @end example
2580
2581 @item
2582 Set luma and chroma radius to a fraction of the video dimension:
2583 @example
2584 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
2585 @end example
2586 @end itemize
2587
2588 @section colorbalance
2589 Modify intensity of primary colors (red, green and blue) of input frames.
2590
2591 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
2592 regions for the red-cyan, green-magenta or blue-yellow balance.
2593
2594 A positive adjustment value shifts the balance towards the primary color, a negative
2595 value towards the complementary color.
2596
2597 The filter accepts the following options:
2598
2599 @table @option
2600 @item rs
2601 @item gs
2602 @item bs
2603 Adjust red, green and blue shadows (darkest pixels).
2604
2605 @item rm
2606 @item gm
2607 @item bm
2608 Adjust red, green and blue midtones (medium pixels).
2609
2610 @item rh
2611 @item gh
2612 @item bh
2613 Adjust red, green and blue highlights (brightest pixels).
2614
2615 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
2616 @end table
2617
2618 @subsection Examples
2619
2620 @itemize
2621 @item
2622 Add red color cast to shadows:
2623 @example
2624 colorbalance=rs=.3
2625 @end example
2626 @end itemize
2627
2628 @section colorchannelmixer
2629
2630 Adjust video input frames by re-mixing color channels.
2631
2632 This filter modifies a color channel by adding the values associated to
2633 the other channels of the same pixels. For example if the value to
2634 modify is red, the output value will be:
2635 @example
2636 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
2637 @end example
2638
2639 The filter accepts the following options:
2640
2641 @table @option
2642 @item rr
2643 @item rg
2644 @item rb
2645 @item ra
2646 Adjust contribution of input red, green, blue and alpha channels for output red channel.
2647 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
2648
2649 @item gr
2650 @item gg
2651 @item gb
2652 @item ga
2653 Adjust contribution of input red, green, blue and alpha channels for output green channel.
2654 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
2655
2656 @item br
2657 @item bg
2658 @item bb
2659 @item ba
2660 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
2661 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
2662
2663 @item ar
2664 @item ag
2665 @item ab
2666 @item aa
2667 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
2668 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
2669
2670 Allowed ranges for options are @code{[-2.0, 2.0]}.
2671 @end table
2672
2673 @subsection Examples
2674
2675 @itemize
2676 @item
2677 Convert source to grayscale:
2678 @example
2679 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
2680 @end example
2681 @item
2682 Simulate sepia tones:
2683 @example
2684 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
2685 @end example
2686 @end itemize
2687
2688 @section colormatrix
2689
2690 Convert color matrix.
2691
2692 The filter accepts the following options:
2693
2694 @table @option
2695 @item src
2696 @item dst
2697 Specify the source and destination color matrix. Both values must be
2698 specified.
2699
2700 The accepted values are:
2701 @table @samp
2702 @item bt709
2703 BT.709
2704
2705 @item bt601
2706 BT.601
2707
2708 @item smpte240m
2709 SMPTE-240M
2710
2711 @item fcc
2712 FCC
2713 @end table
2714 @end table
2715
2716 For example to convert from BT.601 to SMPTE-240M, use the command:
2717 @example
2718 colormatrix=bt601:smpte240m
2719 @end example
2720
2721 @section copy
2722
2723 Copy the input source unchanged to the output. Mainly useful for
2724 testing purposes.
2725
2726 @section crop
2727
2728 Crop the input video to given dimensions.
2729
2730 The filter accepts the following options:
2731
2732 @table @option
2733 @item w, out_w
2734 Width of the output video. It defaults to @code{iw}.
2735 This expression is evaluated only once during the filter
2736 configuration.
2737
2738 @item h, out_h
2739 Height of the output video. It defaults to @code{ih}.
2740 This expression is evaluated only once during the filter
2741 configuration.
2742
2743 @item x
2744 Horizontal position, in the input video, of the left edge of the output video.
2745 It defaults to @code{(in_w-out_w)/2}.
2746 This expression is evaluated per-frame.
2747
2748 @item y
2749 Vertical position, in the input video, of the top edge of the output video.
2750 It defaults to @code{(in_h-out_h)/2}.
2751 This expression is evaluated per-frame.
2752
2753 @item keep_aspect
2754 If set to 1 will force the output display aspect ratio
2755 to be the same of the input, by changing the output sample aspect
2756 ratio. It defaults to 0.
2757 @end table
2758
2759 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
2760 expressions containing the following constants:
2761
2762 @table @option
2763 @item x
2764 @item y
2765 the computed values for @var{x} and @var{y}. They are evaluated for
2766 each new frame.
2767
2768 @item in_w
2769 @item in_h
2770 the input width and height
2771
2772 @item iw
2773 @item ih
2774 same as @var{in_w} and @var{in_h}
2775
2776 @item out_w
2777 @item out_h
2778 the output (cropped) width and height
2779
2780 @item ow
2781 @item oh
2782 same as @var{out_w} and @var{out_h}
2783
2784 @item a
2785 same as @var{iw} / @var{ih}
2786
2787 @item sar
2788 input sample aspect ratio
2789
2790 @item dar
2791 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
2792
2793 @item hsub
2794 @item vsub
2795 horizontal and vertical chroma subsample values. For example for the
2796 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2797
2798 @item n
2799 the number of input frame, starting from 0
2800
2801 @item pos
2802 the position in the file of the input frame, NAN if unknown
2803
2804 @item t
2805 timestamp expressed in seconds, NAN if the input timestamp is unknown
2806
2807 @end table
2808
2809 The expression for @var{out_w} may depend on the value of @var{out_h},
2810 and the expression for @var{out_h} may depend on @var{out_w}, but they
2811 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
2812 evaluated after @var{out_w} and @var{out_h}.
2813
2814 The @var{x} and @var{y} parameters specify the expressions for the
2815 position of the top-left corner of the output (non-cropped) area. They
2816 are evaluated for each frame. If the evaluated value is not valid, it
2817 is approximated to the nearest valid value.
2818
2819 The expression for @var{x} may depend on @var{y}, and the expression
2820 for @var{y} may depend on @var{x}.
2821
2822 @subsection Examples
2823
2824 @itemize
2825 @item
2826 Crop area with size 100x100 at position (12,34).
2827 @example
2828 crop=100:100:12:34
2829 @end example
2830
2831 Using named options, the example above becomes:
2832 @example
2833 crop=w=100:h=100:x=12:y=34
2834 @end example
2835
2836 @item
2837 Crop the central input area with size 100x100:
2838 @example
2839 crop=100:100
2840 @end example
2841
2842 @item
2843 Crop the central input area with size 2/3 of the input video:
2844 @example
2845 crop=2/3*in_w:2/3*in_h
2846 @end example
2847
2848 @item
2849 Crop the input video central square:
2850 @example
2851 crop=out_w=in_h
2852 crop=in_h
2853 @end example
2854
2855 @item
2856 Delimit the rectangle with the top-left corner placed at position
2857 100:100 and the right-bottom corner corresponding to the right-bottom
2858 corner of the input image:
2859 @example
2860 crop=in_w-100:in_h-100:100:100
2861 @end example
2862
2863 @item
2864 Crop 10 pixels from the left and right borders, and 20 pixels from
2865 the top and bottom borders
2866 @example
2867 crop=in_w-2*10:in_h-2*20
2868 @end example
2869
2870 @item
2871 Keep only the bottom right quarter of the input image:
2872 @example
2873 crop=in_w/2:in_h/2:in_w/2:in_h/2
2874 @end example
2875
2876 @item
2877 Crop height for getting Greek harmony:
2878 @example
2879 crop=in_w:1/PHI*in_w
2880 @end example
2881
2882 @item
2883 Appply trembling effect:
2884 @example
2885 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)
2886 @end example
2887
2888 @item
2889 Apply erratic camera effect depending on timestamp:
2890 @example
2891 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)"
2892 @end example
2893
2894 @item
2895 Set x depending on the value of y:
2896 @example
2897 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
2898 @end example
2899 @end itemize
2900
2901 @section cropdetect
2902
2903 Auto-detect crop size.
2904
2905 Calculate necessary cropping parameters and prints the recommended
2906 parameters through the logging system. The detected dimensions
2907 correspond to the non-black area of the input video.
2908
2909 The filter accepts the following options:
2910
2911 @table @option
2912
2913 @item limit
2914 Set higher black value threshold, which can be optionally specified
2915 from nothing (0) to everything (255). An intensity value greater
2916 to the set value is considered non-black. Default value is 24.
2917
2918 @item round
2919 Set the value for which the width/height should be divisible by. The
2920 offset is automatically adjusted to center the video. Use 2 to get
2921 only even dimensions (needed for 4:2:2 video). 16 is best when
2922 encoding to most video codecs. Default value is 16.
2923
2924 @item reset_count, reset
2925 Set the counter that determines after how many frames cropdetect will
2926 reset the previously detected largest video area and start over to
2927 detect the current optimal crop area. Default value is 0.
2928
2929 This can be useful when channel logos distort the video area. 0
2930 indicates never reset and return the largest area encountered during
2931 playback.
2932 @end table
2933
2934 @anchor{curves}
2935 @section curves
2936
2937 Apply color adjustments using curves.
2938
2939 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
2940 component (red, green and blue) has its values defined by @var{N} key points
2941 tied from each other using a smooth curve. The x-axis represents the pixel
2942 values from the input frame, and the y-axis the new pixel values to be set for
2943 the output frame.
2944
2945 By default, a component curve is defined by the two points @var{(0;0)} and
2946 @var{(1;1)}. This creates a straight line where each original pixel value is
2947 "adjusted" to its own value, which means no change to the image.
2948
2949 The filter allows you to redefine these two points and add some more. A new
2950 curve (using a natural cubic spline interpolation) will be define to pass
2951 smoothly through all these new coordinates. The new defined points needs to be
2952 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
2953 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
2954 the vector spaces, the values will be clipped accordingly.
2955
2956 If there is no key point defined in @code{x=0}, the filter will automatically
2957 insert a @var{(0;0)} point. In the same way, if there is no key point defined
2958 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
2959
2960 The filter accepts the following options:
2961
2962 @table @option
2963 @item preset
2964 Select one of the available color presets. This option can be used in addition
2965 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
2966 options takes priority on the preset values.
2967 Available presets are:
2968 @table @samp
2969 @item none
2970 @item color_negative
2971 @item cross_process
2972 @item darker
2973 @item increase_contrast
2974 @item lighter
2975 @item linear_contrast
2976 @item medium_contrast
2977 @item negative
2978 @item strong_contrast
2979 @item vintage
2980 @end table
2981 Default is @code{none}.
2982 @item master, m
2983 Set the master key points. These points will define a second pass mapping. It
2984 is sometimes called a "luminance" or "value" mapping. It can be used with
2985 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
2986 post-processing LUT.
2987 @item red, r
2988 Set the key points for the red component.
2989 @item green, g
2990 Set the key points for the green component.
2991 @item blue, b
2992 Set the key points for the blue component.
2993 @item all
2994 Set the key points for all components (not including master).
2995 Can be used in addition to the other key points component
2996 options. In this case, the unset component(s) will fallback on this
2997 @option{all} setting.
2998 @item psfile
2999 Specify a Photoshop curves file (@code{.asv}) to import the settings from.
3000 @end table
3001
3002 To avoid some filtergraph syntax conflicts, each key points list need to be
3003 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
3004
3005 @subsection Examples
3006
3007 @itemize
3008 @item
3009 Increase slightly the middle level of blue:
3010 @example
3011 curves=blue='0.5/0.58'
3012 @end example
3013
3014 @item
3015 Vintage effect:
3016 @example
3017 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
3018 @end example
3019 Here we obtain the following coordinates for each components:
3020 @table @var
3021 @item red
3022 @code{(0;0.11) (0.42;0.51) (1;0.95)}
3023 @item green
3024 @code{(0;0) (0.50;0.48) (1;1)}
3025 @item blue
3026 @code{(0;0.22) (0.49;0.44) (1;0.80)}
3027 @end table
3028
3029 @item
3030 The previous example can also be achieved with the associated built-in preset:
3031 @example
3032 curves=preset=vintage
3033 @end example
3034
3035 @item
3036 Or simply:
3037 @example
3038 curves=vintage
3039 @end example
3040
3041 @item
3042 Use a Photoshop preset and redefine the points of the green component:
3043 @example
3044 curves=psfile='MyCurvesPresets/purple.asv':green='0.45/0.53'
3045 @end example
3046 @end itemize
3047
3048 @section dctdnoiz
3049
3050 Denoise frames using 2D DCT (frequency domain filtering).
3051
3052 This filter is not designed for real time and can be extremely slow.
3053
3054 The filter accepts the following options:
3055
3056 @table @option
3057 @item sigma, s
3058 Set the noise sigma constant.
3059
3060 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
3061 coefficient (absolute value) below this threshold with be dropped.
3062
3063 If you need a more advanced filtering, see @option{expr}.
3064
3065 Default is @code{0}.
3066
3067 @item overlap
3068 Set number overlapping pixels for each block. Each block is of size
3069 @code{16x16}. Since the filter can be slow, you may want to reduce this value,
3070 at the cost of a less effective filter and the risk of various artefacts.
3071
3072 If the overlapping value doesn't allow to process the whole input width or
3073 height, a warning will be displayed and according borders won't be denoised.
3074
3075 Default value is @code{15}.
3076
3077 @item expr, e
3078 Set the coefficient factor expression.
3079
3080 For each coefficient of a DCT block, this expression will be evaluated as a
3081 multiplier value for the coefficient.
3082
3083 If this is option is set, the @option{sigma} option will be ignored.
3084
3085 The absolute value of the coefficient can be accessed through the @var{c}
3086 variable.
3087 @end table
3088
3089 @subsection Examples
3090
3091 Apply a denoise with a @option{sigma} of @code{4.5}:
3092 @example
3093 dctdnoiz=4.5
3094 @end example
3095
3096 The same operation can be achieved using the expression system:
3097 @example
3098 dctdnoiz=e='gte(c, 4.5*3)'
3099 @end example
3100
3101 @anchor{decimate}
3102 @section decimate
3103
3104 Drop duplicated frames at regular intervals.
3105
3106 The filter accepts the following options:
3107
3108 @table @option
3109 @item cycle
3110 Set the number of frames from which one will be dropped. Setting this to
3111 @var{N} means one frame in every batch of @var{N} frames will be dropped.
3112 Default is @code{5}.
3113
3114 @item dupthresh
3115 Set the threshold for duplicate detection. If the difference metric for a frame
3116 is less than or equal to this value, then it is declared as duplicate. Default
3117 is @code{1.1}
3118
3119 @item scthresh
3120 Set scene change threshold. Default is @code{15}.
3121
3122 @item blockx
3123 @item blocky
3124 Set the size of the x and y-axis blocks used during metric calculations.
3125 Larger blocks give better noise suppression, but also give worse detection of
3126 small movements. Must be a power of two. Default is @code{32}.
3127
3128 @item ppsrc
3129 Mark main input as a pre-processed input and activate clean source input
3130 stream. This allows the input to be pre-processed with various filters to help
3131 the metrics calculation while keeping the frame selection lossless. When set to
3132 @code{1}, the first stream is for the pre-processed input, and the second
3133 stream is the clean source from where the kept frames are chosen. Default is
3134 @code{0}.
3135
3136 @item chroma
3137 Set whether or not chroma is considered in the metric calculations. Default is
3138 @code{1}.
3139 @end table
3140
3141 @section delogo
3142
3143 Suppress a TV station logo by a simple interpolation of the surrounding
3144 pixels. Just set a rectangle covering the logo and watch it disappear
3145 (and sometimes something even uglier appear - your mileage may vary).
3146
3147 This filter accepts the following options:
3148 @table @option
3149
3150 @item x
3151 @item y
3152 Specify the top left corner coordinates of the logo. They must be
3153 specified.
3154
3155 @item w
3156 @item h
3157 Specify the width and height of the logo to clear. They must be
3158 specified.
3159
3160 @item band, t
3161 Specify the thickness of the fuzzy edge of the rectangle (added to
3162 @var{w} and @var{h}). The default value is 4.
3163
3164 @item show
3165 When set to 1, a green rectangle is drawn on the screen to simplify
3166 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
3167 The default value is 0.
3168
3169 The rectangle is drawn on the outermost pixels which will be (partly)
3170 replaced with interpolated values. The values of the next pixels
3171 immediately outside this rectangle in each direction will be used to
3172 compute the interpolated pixel values inside the rectangle.
3173
3174 @end table
3175
3176 @subsection Examples
3177
3178 @itemize
3179 @item
3180 Set a rectangle covering the area with top left corner coordinates 0,0
3181 and size 100x77, setting a band of size 10:
3182 @example
3183 delogo=x=0:y=0:w=100:h=77:band=10
3184 @end example
3185
3186 @end itemize
3187
3188 @section deshake
3189
3190 Attempt to fix small changes in horizontal and/or vertical shift. This
3191 filter helps remove camera shake from hand-holding a camera, bumping a
3192 tripod, moving on a vehicle, etc.
3193
3194 The filter accepts the following options:
3195
3196 @table @option
3197
3198 @item x
3199 @item y
3200 @item w
3201 @item h
3202 Specify a rectangular area where to limit the search for motion
3203 vectors.
3204 If desired the search for motion vectors can be limited to a
3205 rectangular area of the frame defined by its top left corner, width
3206 and height. These parameters have the same meaning as the drawbox
3207 filter which can be used to visualise the position of the bounding
3208 box.
3209
3210 This is useful when simultaneous movement of subjects within the frame
3211 might be confused for camera motion by the motion vector search.
3212
3213 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
3214 then the full frame is used. This allows later options to be set
3215 without specifying the bounding box for the motion vector search.
3216
3217 Default - search the whole frame.
3218
3219 @item rx
3220 @item ry
3221 Specify the maximum extent of movement in x and y directions in the
3222 range 0-64 pixels. Default 16.
3223
3224 @item edge
3225 Specify how to generate pixels to fill blanks at the edge of the
3226 frame. Available values are:
3227 @table @samp
3228 @item blank, 0
3229 Fill zeroes at blank locations
3230 @item original, 1
3231 Original image at blank locations
3232 @item clamp, 2
3233 Extruded edge value at blank locations
3234 @item mirror, 3
3235 Mirrored edge at blank locations
3236 @end table
3237 Default value is @samp{mirror}.
3238
3239 @item blocksize
3240 Specify the blocksize to use for motion search. Range 4-128 pixels,
3241 default 8.
3242
3243 @item contrast
3244 Specify the contrast threshold for blocks. Only blocks with more than
3245 the specified contrast (difference between darkest and lightest
3246 pixels) will be considered. Range 1-255, default 125.
3247
3248 @item search
3249 Specify the search strategy. Available values are:
3250 @table @samp
3251 @item exhaustive, 0
3252 Set exhaustive search
3253 @item less, 1
3254 Set less exhaustive search.
3255 @end table
3256 Default value is @samp{exhaustive}.
3257
3258 @item filename
3259 If set then a detailed log of the motion search is written to the
3260 specified file.
3261
3262 @item opencl
3263 If set to 1, specify using OpenCL capabilities, only available if
3264 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
3265
3266 @end table
3267
3268 @section drawbox
3269
3270 Draw a colored box on the input image.
3271
3272 This filter accepts the following options:
3273
3274 @table @option
3275 @item x
3276 @item y
3277 The expressions which specify the top left corner coordinates of the box. Default to 0.
3278
3279 @item width, w
3280 @item height, h
3281 The expressions which specify the width and height of the box, if 0 they are interpreted as
3282 the input width and height. Default to 0.
3283
3284 @item color, c
3285 Specify the color of the box to write. For the general syntax of this option,
3286 check the "Color" section in the ffmpeg-utils manual. If the special
3287 value @code{invert} is used, the box edge color is the same as the
3288 video with inverted luma.
3289
3290 @item thickness, t
3291 The expression which sets the thickness of the box edge. Default value is @code{3}.
3292
3293 See below for the list of accepted constants.
3294 @end table
3295
3296 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
3297 following constants:
3298
3299 @table @option
3300 @item dar
3301 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
3302
3303 @item hsub
3304 @item vsub
3305 horizontal and vertical chroma subsample values. For example for the
3306 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3307
3308 @item in_h, ih
3309 @item in_w, iw
3310 The input width and height.
3311
3312 @item sar
3313 The input sample aspect ratio.
3314
3315 @item x
3316 @item y
3317 The x and y offset coordinates where the box is drawn.
3318
3319 @item w
3320 @item h
3321 The width and height of the drawn box.
3322
3323 @item t
3324 The thickness of the drawn box.
3325
3326 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
3327 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
3328
3329 @end table
3330
3331 @subsection Examples
3332
3333 @itemize
3334 @item
3335 Draw a black box around the edge of the input image:
3336 @example
3337 drawbox
3338 @end example
3339
3340 @item
3341 Draw a box with color red and an opacity of 50%:
3342 @example
3343 drawbox=10:20:200:60:red@@0.5
3344 @end example
3345
3346 The previous example can be specified as:
3347 @example
3348 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
3349 @end example
3350
3351 @item
3352 Fill the box with pink color:
3353 @example
3354 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
3355 @end example
3356
3357 @item
3358 Draw a 2-pixel red 2.40:1 mask:
3359 @example
3360 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
3361 @end example
3362 @end itemize
3363
3364 @section drawgrid
3365
3366 Draw a grid on the input image.
3367
3368 This filter accepts the following options:
3369
3370 @table @option
3371 @item x
3372 @item y
3373 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
3374
3375 @item width, w
3376 @item height, h
3377 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
3378 input width and height, respectively, minus @code{thickness}, so image gets
3379 framed. Default to 0.
3380
3381 @item color, c
3382 Specify the color of the grid. For the general syntax of this option,
3383 check the "Color" section in the ffmpeg-utils manual. If the special
3384 value @code{invert} is used, the grid color is the same as the
3385 video with inverted luma.
3386
3387 @item thickness, t
3388 The expression which sets the thickness of the grid line. Default value is @code{1}.
3389
3390 See below for the list of accepted constants.
3391 @end table
3392
3393 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
3394 following constants:
3395
3396 @table @option
3397 @item dar
3398 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
3399
3400 @item hsub
3401 @item vsub
3402 horizontal and vertical chroma subsample values. For example for the
3403 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3404
3405 @item in_h, ih
3406 @item in_w, iw
3407 The input grid cell width and height.
3408
3409 @item sar
3410 The input sample aspect ratio.
3411
3412 @item x
3413 @item y
3414 The x and y coordinates of some point of grid intersection (meant to configure offset).
3415
3416 @item w
3417 @item h
3418 The width and height of the drawn cell.
3419
3420 @item t
3421 The thickness of the drawn cell.
3422
3423 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
3424 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
3425
3426 @end table
3427
3428 @subsection Examples
3429
3430 @itemize
3431 @item
3432 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
3433 @example
3434 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
3435 @end example
3436
3437 @item
3438 Draw a white 3x3 grid with an opacity of 50%:
3439 @example
3440 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
3441 @end example
3442 @end itemize
3443
3444 @anchor{drawtext}
3445 @section drawtext
3446
3447 Draw text string or text from specified file on top of video using the
3448 libfreetype library.
3449
3450 To enable compilation of this filter you need to configure FFmpeg with
3451 @code{--enable-libfreetype}.
3452
3453 @subsection Syntax
3454
3455 The description of the accepted parameters follows.
3456
3457 @table @option
3458
3459 @item box
3460 Used to draw a box around text using background color.
3461 Value should be either 1 (enable) or 0 (disable).
3462 The default value of @var{box} is 0.
3463
3464 @item boxcolor
3465 The color to be used for drawing box around text. For the syntax of this
3466 option, check the "Color" section in the ffmpeg-utils manual.
3467
3468 The default value of @var{boxcolor} is "white".
3469
3470 @item expansion
3471 Select how the @var{text} is expanded. Can be either @code{none},
3472 @code{strftime} (deprecated) or
3473 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
3474 below for details.
3475
3476 @item fix_bounds
3477 If true, check and fix text coords to avoid clipping.
3478
3479 @item fontcolor
3480 The color to be used for drawing fonts. For the syntax of this option, check
3481 the "Color" section in the ffmpeg-utils manual.
3482
3483 The default value of @var{fontcolor} is "black".
3484
3485 @item fontfile
3486 The font file to be used for drawing text. Path must be included.
3487 This parameter is mandatory.
3488
3489 @item fontsize
3490 The font size to be used for drawing text.
3491 The default value of @var{fontsize} is 16.
3492
3493 @item ft_load_flags
3494 Flags to be used for loading the fonts.
3495
3496 The flags map the corresponding flags supported by libfreetype, and are
3497 a combination of the following values:
3498 @table @var
3499 @item default
3500 @item no_scale
3501 @item no_hinting
3502 @item render
3503 @item no_bitmap
3504 @item vertical_layout
3505 @item force_autohint
3506 @item crop_bitmap
3507 @item pedantic
3508 @item ignore_global_advance_width
3509 @item no_recurse
3510 @item ignore_transform
3511 @item monochrome
3512 @item linear_design
3513 @item no_autohint
3514 @end table
3515
3516 Default value is "render".
3517
3518 For more information consult the documentation for the FT_LOAD_*
3519 libfreetype flags.
3520
3521 @item shadowcolor
3522 The color to be used for drawing a shadow behind the drawn text. For the
3523 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
3524
3525 The default value of @var{shadowcolor} is "black".
3526
3527 @item shadowx
3528 @item shadowy
3529 The x and y offsets for the text shadow position with respect to the
3530 position of the text. They can be either positive or negative
3531 values. Default value for both is "0".
3532
3533 @item start_number
3534 The starting frame number for the n/frame_num variable. The default value
3535 is "0".
3536
3537 @item tabsize
3538 The size in number of spaces to use for rendering the tab.
3539 Default value is 4.
3540
3541 @item timecode
3542 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
3543 format. It can be used with or without text parameter. @var{timecode_rate}
3544 option must be specified.
3545
3546 @item timecode_rate, rate, r
3547 Set the timecode frame rate (timecode only).
3548
3549 @item text
3550 The text string to be drawn. The text must be a sequence of UTF-8
3551 encoded characters.
3552 This parameter is mandatory if no file is specified with the parameter
3553 @var{textfile}.
3554
3555 @item textfile
3556 A text file containing text to be drawn. The text must be a sequence
3557 of UTF-8 encoded characters.
3558
3559 This parameter is mandatory if no text string is specified with the
3560 parameter @var{text}.
3561
3562 If both @var{text} and @var{textfile} are specified, an error is thrown.
3563
3564 @item reload
3565 If set to 1, the @var{textfile} will be reloaded before each frame.
3566 Be sure to update it atomically, or it may be read partially, or even fail.
3567
3568 @item x
3569 @item y
3570 The expressions which specify the offsets where text will be drawn
3571 within the video frame. They are relative to the top/left border of the
3572 output image.
3573
3574 The default value of @var{x} and @var{y} is "0".
3575
3576 See below for the list of accepted constants and functions.
3577 @end table
3578
3579 The parameters for @var{x} and @var{y} are expressions containing the
3580 following constants and functions:
3581
3582 @table @option
3583 @item dar
3584 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
3585
3586 @item hsub
3587 @item vsub
3588 horizontal and vertical chroma subsample values. For example for the
3589 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3590
3591 @item line_h, lh
3592 the height of each text line
3593
3594 @item main_h, h, H
3595 the input height
3596
3597 @item main_w, w, W
3598 the input width
3599
3600 @item max_glyph_a, ascent
3601 the maximum distance from the baseline to the highest/upper grid
3602 coordinate used to place a glyph outline point, for all the rendered
3603 glyphs.
3604 It is a positive value, due to the grid's orientation with the Y axis
3605 upwards.
3606
3607 @item max_glyph_d, descent
3608 the maximum distance from the baseline to the lowest grid coordinate
3609 used to place a glyph outline point, for all the rendered glyphs.
3610 This is a negative value, due to the grid's orientation, with the Y axis
3611 upwards.
3612
3613 @item max_glyph_h
3614 maximum glyph height, that is the maximum height for all the glyphs
3615 contained in the rendered text, it is equivalent to @var{ascent} -
3616 @var{descent}.
3617
3618 @item max_glyph_w
3619 maximum glyph width, that is the maximum width for all the glyphs
3620 contained in the rendered text
3621
3622 @item n
3623 the number of input frame, starting from 0
3624
3625 @item rand(min, max)
3626 return a random number included between @var{min} and @var{max}
3627
3628 @item sar
3629 input sample aspect ratio
3630
3631 @item t
3632 timestamp expressed in seconds, NAN if the input timestamp is unknown
3633
3634 @item text_h, th
3635 the height of the rendered text
3636
3637 @item text_w, tw
3638 the width of the rendered text
3639
3640 @item x
3641 @item y
3642 the x and y offset coordinates where the text is drawn.
3643
3644 These parameters allow the @var{x} and @var{y} expressions to refer
3645 each other, so you can for example specify @code{y=x/dar}.
3646 @end table
3647
3648 If libavfilter was built with @code{--enable-fontconfig}, then
3649 @option{fontfile} can be a fontconfig pattern or omitted.
3650
3651 @anchor{drawtext_expansion}
3652 @subsection Text expansion
3653
3654 If @option{expansion} is set to @code{strftime},
3655 the filter recognizes strftime() sequences in the provided text and
3656 expands them accordingly. Check the documentation of strftime(). This
3657 feature is deprecated.
3658
3659 If @option{expansion} is set to @code{none}, the text is printed verbatim.
3660
3661 If @option{expansion} is set to @code{normal} (which is the default),
3662 the following expansion mechanism is used.
3663
3664 The backslash character '\', followed by any character, always expands to
3665 the second character.
3666
3667 Sequence of the form @code{%@{...@}} are expanded. The text between the
3668 braces is a function name, possibly followed by arguments separated by ':'.
3669 If the arguments contain special characters or delimiters (':' or '@}'),
3670 they should be escaped.
3671
3672 Note that they probably must also be escaped as the value for the
3673 @option{text} option in the filter argument string and as the filter
3674 argument in the filtergraph description, and possibly also for the shell,
3675 that makes up to four levels of escaping; using a text file avoids these
3676 problems.
3677
3678 The following functions are available:
3679
3680 @table @command
3681
3682 @item expr, e
3683 The expression evaluation result.
3684
3685 It must take one argument specifying the expression to be evaluated,
3686 which accepts the same constants and functions as the @var{x} and
3687 @var{y} values. Note that not all constants should be used, for
3688 example the text size is not known when evaluating the expression, so
3689 the constants @var{text_w} and @var{text_h} will have an undefined
3690 value.
3691
3692 @item gmtime
3693 The time at which the filter is running, expressed in UTC.
3694 It can accept an argument: a strftime() format string.
3695
3696 @item localtime
3697 The time at which the filter is running, expressed in the local time zone.
3698 It can accept an argument: a strftime() format string.
3699
3700 @item metadata
3701 Frame metadata. It must take one argument specifying metadata key.
3702
3703 @item n, frame_num
3704 The frame number, starting from 0.
3705
3706 @item pict_type
3707 A 1 character description of the current picture type.
3708
3709 @item pts
3710 The timestamp of the current frame, in seconds, with microsecond accuracy.
3711
3712 @end table
3713
3714 @subsection Examples
3715
3716 @itemize
3717 @item
3718 Draw "Test Text" with font FreeSerif, using the default values for the
3719 optional parameters.
3720
3721 @example
3722 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
3723 @end example
3724
3725 @item
3726 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
3727 and y=50 (counting from the top-left corner of the screen), text is
3728 yellow with a red box around it. Both the text and the box have an
3729 opacity of 20%.
3730
3731 @example
3732 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
3733           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
3734 @end example
3735
3736 Note that the double quotes are not necessary if spaces are not used
3737 within the parameter list.
3738
3739 @item
3740 Show the text at the center of the video frame:
3741 @example
3742 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
3743 @end example
3744
3745 @item
3746 Show a text line sliding from right to left in the last row of the video
3747 frame. The file @file{LONG_LINE} is assumed to contain a single line
3748 with no newlines.
3749 @example
3750 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
3751 @end example
3752
3753 @item
3754 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
3755 @example
3756 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
3757 @end example
3758
3759 @item
3760 Draw a single green letter "g", at the center of the input video.
3761 The glyph baseline is placed at half screen height.
3762 @example
3763 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
3764 @end example
3765
3766 @item
3767 Show text for 1 second every 3 seconds:
3768 @example
3769 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
3770 @end example
3771
3772 @item
3773 Use fontconfig to set the font. Note that the colons need to be escaped.
3774 @example
3775 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
3776 @end example
3777
3778 @item
3779 Print the date of a real-time encoding (see strftime(3)):
3780 @example
3781 drawtext='fontfile=FreeSans.ttf:text=%@{localtime:%a %b %d %Y@}'
3782 @end example
3783
3784 @end itemize
3785
3786 For more information about libfreetype, check:
3787 @url{http://www.freetype.org/}.
3788
3789 For more information about fontconfig, check:
3790 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
3791
3792 @section edgedetect
3793
3794 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
3795
3796 The filter accepts the following options:
3797
3798 @table @option
3799 @item low
3800 @item high
3801 Set low and high threshold values used by the Canny thresholding
3802 algorithm.
3803
3804 The high threshold selects the "strong" edge pixels, which are then
3805 connected through 8-connectivity with the "weak" edge pixels selected
3806 by the low threshold.
3807
3808 @var{low} and @var{high} threshold values must be choosen in the range
3809 [0,1], and @var{low} should be lesser or equal to @var{high}.
3810
3811 Default value for @var{low} is @code{20/255}, and default value for @var{high}
3812 is @code{50/255}.
3813 @end table
3814
3815 Example:
3816 @example
3817 edgedetect=low=0.1:high=0.4
3818 @end example
3819
3820 @section extractplanes
3821
3822 Extract color channel components from input video stream into
3823 separate grayscale video streams.
3824
3825 The filter accepts the following option:
3826
3827 @table @option
3828 @item planes
3829 Set plane(s) to extract.
3830
3831 Available values for planes are:
3832 @table @samp
3833 @item y
3834 @item u
3835 @item v
3836 @item a
3837 @item r
3838 @item g
3839 @item b
3840 @end table
3841
3842 Choosing planes not available in the input will result in an error.
3843 That means you cannot select @code{r}, @code{g}, @code{b} planes
3844 with @code{y}, @code{u}, @code{v} planes at same time.
3845 @end table
3846
3847 @subsection Examples
3848
3849 @itemize
3850 @item
3851 Extract luma, u and v color channel component from input video frame
3852 into 3 grayscale outputs:
3853 @example
3854 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
3855 @end example
3856 @end itemize
3857
3858 @section elbg
3859
3860 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
3861
3862 For each input image, the filter will compute the optimal mapping from
3863 the input to the output given the codebook length, that is the number
3864 of distinct output colors.
3865
3866 This filter accepts the following options.
3867
3868 @table @option
3869 @item codebook_length, l
3870 Set codebook length. The value must be a positive integer, and
3871 represents the number of distinct output colors. Default value is 256.
3872
3873 @item nb_steps, n
3874 Set the maximum number of iterations to apply for computing the optimal
3875 mapping. The higher the value the better the result and the higher the
3876 computation time. Default value is 1.
3877
3878 @item seed, s
3879 Set a random seed, must be an integer included between 0 and
3880 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
3881 will try to use a good random seed on a best effort basis.
3882 @end table
3883
3884 @section fade
3885
3886 Apply fade-in/out effect to input video.
3887
3888 This filter accepts the following options:
3889
3890 @table @option
3891 @item type, t
3892 The effect type -- can be either "in" for fade-in, or "out" for a fade-out
3893 effect.
3894 Default is @code{in}.
3895
3896 @item start_frame, s
3897 Specify the number of the start frame for starting to apply the fade
3898 effect. Default is 0.
3899
3900 @item nb_frames, n
3901 The number of frames for which the fade effect has to last. At the end of the
3902 fade-in effect the output video will have the same intensity as the input video,
3903 at the end of the fade-out transition the output video will be filled with the
3904 selected @option{color}.
3905 Default is 25.
3906
3907 @item alpha
3908 If set to 1, fade only alpha channel, if one exists on the input.
3909 Default value is 0.
3910
3911 @item start_time, st
3912 Specify the timestamp (in seconds) of the frame to start to apply the fade
3913 effect. If both start_frame and start_time are specified, the fade will start at
3914 whichever comes last.  Default is 0.
3915
3916 @item duration, d
3917 The number of seconds for which the fade effect has to last. At the end of the
3918 fade-in effect the output video will have the same intensity as the input video,
3919 at the end of the fade-out transition the output video will be filled with the
3920 selected @option{color}.
3921 If both duration and nb_frames are specified, duration is used. Default is 0.
3922
3923 @item color, c
3924 Specify the color of the fade. Default is "black".
3925 @end table
3926
3927 @subsection Examples
3928
3929 @itemize
3930 @item
3931 Fade in first 30 frames of video:
3932 @example
3933 fade=in:0:30
3934 @end example
3935
3936 The command above is equivalent to:
3937 @example
3938 fade=t=in:s=0:n=30
3939 @end example
3940
3941 @item
3942 Fade out last 45 frames of a 200-frame video:
3943 @example
3944 fade=out:155:45
3945 fade=type=out:start_frame=155:nb_frames=45
3946 @end example
3947
3948 @item
3949 Fade in first 25 frames and fade out last 25 frames of a 1000-frame video:
3950 @example
3951 fade=in:0:25, fade=out:975:25
3952 @end example
3953
3954 @item
3955 Make first 5 frames yellow, then fade in from frame 5-24:
3956 @example
3957 fade=in:5:20:color=yellow
3958 @end example
3959
3960 @item
3961 Fade in alpha over first 25 frames of video:
3962 @example
3963 fade=in:0:25:alpha=1
3964 @end example
3965
3966 @item
3967 Make first 5.5 seconds black, then fade in for 0.5 seconds:
3968 @example
3969 fade=t=in:st=5.5:d=0.5
3970 @end example
3971
3972 @end itemize
3973
3974 @section field
3975
3976 Extract a single field from an interlaced image using stride
3977 arithmetic to avoid wasting CPU time. The output frames are marked as
3978 non-interlaced.
3979
3980 The filter accepts the following options:
3981
3982 @table @option
3983 @item type
3984 Specify whether to extract the top (if the value is @code{0} or
3985 @code{top}) or the bottom field (if the value is @code{1} or
3986 @code{bottom}).
3987 @end table
3988
3989 @section fieldmatch
3990
3991 Field matching filter for inverse telecine. It is meant to reconstruct the
3992 progressive frames from a telecined stream. The filter does not drop duplicated
3993 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
3994 followed by a decimation filter such as @ref{decimate} in the filtergraph.
3995
3996 The separation of the field matching and the decimation is notably motivated by
3997 the possibility of inserting a de-interlacing filter fallback between the two.
3998 If the source has mixed telecined and real interlaced content,
3999 @code{fieldmatch} will not be able to match fields for the interlaced parts.
4000 But these remaining combed frames will be marked as interlaced, and thus can be
4001 de-interlaced by a later filter such as @ref{yadif} before decimation.
4002
4003 In addition to the various configuration options, @code{fieldmatch} can take an
4004 optional second stream, activated through the @option{ppsrc} option. If
4005 enabled, the frames reconstruction will be based on the fields and frames from
4006 this second stream. This allows the first input to be pre-processed in order to
4007 help the various algorithms of the filter, while keeping the output lossless
4008 (assuming the fields are matched properly). Typically, a field-aware denoiser,
4009 or brightness/contrast adjustments can help.
4010
4011 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
4012 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
4013 which @code{fieldmatch} is based on. While the semantic and usage are very
4014 close, some behaviour and options names can differ.
4015
4016 The filter accepts the following options:
4017
4018 @table @option
4019 @item order
4020 Specify the assumed field order of the input stream. Available values are:
4021
4022 @table @samp
4023 @item auto
4024 Auto detect parity (use FFmpeg's internal parity value).
4025 @item bff
4026 Assume bottom field first.
4027 @item tff
4028 Assume top field first.
4029 @end table
4030
4031 Note that it is sometimes recommended not to trust the parity announced by the
4032 stream.
4033
4034 Default value is @var{auto}.
4035
4036 @item mode
4037 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
4038 sense that it won't risk creating jerkiness due to duplicate frames when
4039 possible, but if there are bad edits or blended fields it will end up
4040 outputting combed frames when a good match might actually exist. On the other
4041 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
4042 but will almost always find a good frame if there is one. The other values are
4043 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
4044 jerkiness and creating duplicate frames versus finding good matches in sections
4045 with bad edits, orphaned fields, blended fields, etc.
4046
4047 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
4048
4049 Available values are:
4050
4051 @table @samp
4052 @item pc
4053 2-way matching (p/c)
4054 @item pc_n
4055 2-way matching, and trying 3rd match if still combed (p/c + n)
4056 @item pc_u
4057 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
4058 @item pc_n_ub
4059 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
4060 still combed (p/c + n + u/b)
4061 @item pcn
4062 3-way matching (p/c/n)
4063 @item pcn_ub
4064 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
4065 detected as combed (p/c/n + u/b)
4066 @end table
4067
4068 The parenthesis at the end indicate the matches that would be used for that
4069 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
4070 @var{top}).
4071
4072 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
4073 the slowest.
4074
4075 Default value is @var{pc_n}.
4076
4077 @item ppsrc
4078 Mark the main input stream as a pre-processed input, and enable the secondary
4079 input stream as the clean source to pick the fields from. See the filter
4080 introduction for more details. It is similar to the @option{clip2} feature from
4081 VFM/TFM.
4082
4083 Default value is @code{0} (disabled).
4084
4085 @item field
4086 Set the field to match from. It is recommended to set this to the same value as
4087 @option{order} unless you experience matching failures with that setting. In
4088 certain circumstances changing the field that is used to match from can have a
4089 large impact on matching performance. Available values are:
4090
4091 @table @samp
4092 @item auto
4093 Automatic (same value as @option{order}).
4094 @item bottom
4095 Match from the bottom field.
4096 @item top
4097 Match from the top field.
4098 @end table
4099
4100 Default value is @var{auto}.
4101
4102 @item mchroma
4103 Set whether or not chroma is included during the match comparisons. In most
4104 cases it is recommended to leave this enabled. You should set this to @code{0}
4105 only if your clip has bad chroma problems such as heavy rainbowing or other
4106 artifacts. Setting this to @code{0} could also be used to speed things up at
4107 the cost of some accuracy.
4108
4109 Default value is @code{1}.
4110
4111 @item y0
4112 @item y1
4113 These define an exclusion band which excludes the lines between @option{y0} and
4114 @option{y1} from being included in the field matching decision. An exclusion
4115 band can be used to ignore subtitles, a logo, or other things that may
4116 interfere with the matching. @option{y0} sets the starting scan line and
4117 @option{y1} sets the ending line; all lines in between @option{y0} and
4118 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
4119 @option{y0} and @option{y1} to the same value will disable the feature.
4120 @option{y0} and @option{y1} defaults to @code{0}.
4121
4122 @item scthresh
4123 Set the scene change detection threshold as a percentage of maximum change on
4124 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
4125 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
4126 @option{scthresh} is @code{[0.0, 100.0]}.
4127
4128 Default value is @code{12.0}.
4129
4130 @item combmatch
4131 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
4132 account the combed scores of matches when deciding what match to use as the
4133 final match. Available values are:
4134
4135 @table @samp
4136 @item none
4137 No final matching based on combed scores.
4138 @item sc
4139 Combed scores are only used when a scene change is detected.
4140 @item full
4141 Use combed scores all the time.
4142 @end table
4143
4144 Default is @var{sc}.
4145
4146 @item combdbg
4147 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
4148 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
4149 Available values are:
4150
4151 @table @samp
4152 @item none
4153 No forced calculation.
4154 @item pcn
4155 Force p/c/n calculations.
4156 @item pcnub
4157 Force p/c/n/u/b calculations.
4158 @end table
4159
4160 Default value is @var{none}.
4161
4162 @item cthresh
4163 This is the area combing threshold used for combed frame detection. This
4164 essentially controls how "strong" or "visible" combing must be to be detected.
4165 Larger values mean combing must be more visible and smaller values mean combing
4166 can be less visible or strong and still be detected. Valid settings are from
4167 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
4168 be detected as combed). This is basically a pixel difference value. A good
4169 range is @code{[8, 12]}.
4170
4171 Default value is @code{9}.
4172
4173 @item chroma
4174 Sets whether or not chroma is considered in the combed frame decision.  Only
4175 disable this if your source has chroma problems (rainbowing, etc.) that are
4176 causing problems for the combed frame detection with chroma enabled. Actually,
4177 using @option{chroma}=@var{0} is usually more reliable, except for the case
4178 where there is chroma only combing in the source.
4179
4180 Default value is @code{0}.
4181
4182 @item blockx
4183 @item blocky
4184 Respectively set the x-axis and y-axis size of the window used during combed
4185 frame detection. This has to do with the size of the area in which
4186 @option{combpel} pixels are required to be detected as combed for a frame to be
4187 declared combed. See the @option{combpel} parameter description for more info.
4188 Possible values are any number that is a power of 2 starting at 4 and going up
4189 to 512.
4190
4191 Default value is @code{16}.
4192
4193 @item combpel
4194 The number of combed pixels inside any of the @option{blocky} by
4195 @option{blockx} size blocks on the frame for the frame to be detected as
4196 combed. While @option{cthresh} controls how "visible" the combing must be, this
4197 setting controls "how much" combing there must be in any localized area (a
4198 window defined by the @option{blockx} and @option{blocky} settings) on the
4199 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
4200 which point no frames will ever be detected as combed). This setting is known
4201 as @option{MI} in TFM/VFM vocabulary.
4202
4203 Default value is @code{80}.
4204 @end table
4205
4206 @anchor{p/c/n/u/b meaning}
4207 @subsection p/c/n/u/b meaning
4208
4209 @subsubsection p/c/n
4210
4211 We assume the following telecined stream:
4212
4213 @example
4214 Top fields:     1 2 2 3 4
4215 Bottom fields:  1 2 3 4 4
4216 @end example
4217
4218 The numbers correspond to the progressive frame the fields relate to. Here, the
4219 first two frames are progressive, the 3rd and 4th are combed, and so on.
4220
4221 When @code{fieldmatch} is configured to run a matching from bottom
4222 (@option{field}=@var{bottom}) this is how this input stream get transformed:
4223
4224 @example
4225 Input stream:
4226                 T     1 2 2 3 4
4227                 B     1 2 3 4 4   <-- matching reference
4228
4229 Matches:              c c n n c
4230
4231 Output stream:
4232                 T     1 2 3 4 4
4233                 B     1 2 3 4 4
4234 @end example
4235
4236 As a result of the field matching, we can see that some frames get duplicated.
4237 To perform a complete inverse telecine, you need to rely on a decimation filter
4238 after this operation. See for instance the @ref{decimate} filter.
4239
4240 The same operation now matching from top fields (@option{field}=@var{top})
4241 looks like this:
4242
4243 @example
4244 Input stream:
4245                 T     1 2 2 3 4   <-- matching reference
4246                 B     1 2 3 4 4
4247
4248 Matches:              c c p p c
4249
4250 Output stream:
4251                 T     1 2 2 3 4
4252                 B     1 2 2 3 4
4253 @end example
4254
4255 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
4256 basically, they refer to the frame and field of the opposite parity:
4257
4258 @itemize
4259 @item @var{p} matches the field of the opposite parity in the previous frame
4260 @item @var{c} matches the field of the opposite parity in the current frame
4261 @item @var{n} matches the field of the opposite parity in the next frame
4262 @end itemize
4263
4264 @subsubsection u/b
4265
4266 The @var{u} and @var{b} matching are a bit special in the sense that they match
4267 from the opposite parity flag. In the following examples, we assume that we are
4268 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
4269 'x' is placed above and below each matched fields.
4270
4271 With bottom matching (@option{field}=@var{bottom}):
4272 @example
4273 Match:           c         p           n          b          u
4274
4275                  x       x               x        x          x
4276   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
4277   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
4278                  x         x           x        x              x
4279
4280 Output frames:
4281                  2          1          2          2          2
4282                  2          2          2          1          3
4283 @end example
4284
4285 With top matching (@option{field}=@var{top}):
4286 @example
4287 Match:           c         p           n          b          u
4288
4289                  x         x           x        x              x
4290   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
4291   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
4292                  x       x               x        x          x
4293
4294 Output frames:
4295                  2          2          2          1          2
4296                  2          1          3          2          2
4297 @end example
4298
4299 @subsection Examples
4300
4301 Simple IVTC of a top field first telecined stream:
4302 @example
4303 fieldmatch=order=tff:combmatch=none, decimate
4304 @end example
4305
4306 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
4307 @example
4308 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
4309 @end example
4310
4311 @section fieldorder
4312
4313 Transform the field order of the input video.
4314
4315 This filter accepts the following options:
4316
4317 @table @option
4318
4319 @item order
4320 Output field order. Valid values are @var{tff} for top field first or @var{bff}
4321 for bottom field first.
4322 @end table
4323
4324 Default value is @samp{tff}.
4325
4326 Transformation is achieved by shifting the picture content up or down
4327 by one line, and filling the remaining line with appropriate picture content.
4328 This method is consistent with most broadcast field order converters.
4329
4330 If the input video is not flagged as being interlaced, or it is already
4331 flagged as being of the required output field order then this filter does
4332 not alter the incoming video.
4333
4334 This filter is very useful when converting to or from PAL DV material,
4335 which is bottom field first.
4336
4337 For example:
4338 @example
4339 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
4340 @end example
4341
4342 @section fifo
4343
4344 Buffer input images and send them when they are requested.
4345
4346 This filter is mainly useful when auto-inserted by the libavfilter
4347 framework.
4348
4349 The filter does not take parameters.
4350
4351 @anchor{format}
4352 @section format
4353
4354 Convert the input video to one of the specified pixel formats.
4355 Libavfilter will try to pick one that is supported for the input to
4356 the next filter.
4357
4358 This filter accepts the following parameters:
4359 @table @option
4360
4361 @item pix_fmts
4362 A '|'-separated list of pixel format names, for example
4363 "pix_fmts=yuv420p|monow|rgb24".
4364
4365 @end table
4366
4367 @subsection Examples
4368
4369 @itemize
4370 @item
4371 Convert the input video to the format @var{yuv420p}
4372 @example
4373 format=pix_fmts=yuv420p
4374 @end example
4375
4376 Convert the input video to any of the formats in the list
4377 @example
4378 format=pix_fmts=yuv420p|yuv444p|yuv410p
4379 @end example
4380 @end itemize
4381
4382 @anchor{fps}
4383 @section fps
4384
4385 Convert the video to specified constant frame rate by duplicating or dropping
4386 frames as necessary.
4387
4388 This filter accepts the following named parameters:
4389 @table @option
4390
4391 @item fps
4392 Desired output frame rate. The default is @code{25}.
4393
4394 @item round
4395 Rounding method.
4396
4397 Possible values are:
4398 @table @option
4399 @item zero
4400 zero round towards 0
4401 @item inf
4402 round away from 0
4403 @item down
4404 round towards -infinity
4405 @item up
4406 round towards +infinity
4407 @item near
4408 round to nearest
4409 @end table
4410 The default is @code{near}.
4411
4412 @item start_time
4413 Assume the first PTS should be the given value, in seconds. This allows for
4414 padding/trimming at the start of stream. By default, no assumption is made
4415 about the first frame's expected PTS, so no padding or trimming is done.
4416 For example, this could be set to 0 to pad the beginning with duplicates of
4417 the first frame if a video stream starts after the audio stream or to trim any
4418 frames with a negative PTS.
4419
4420 @end table
4421
4422 Alternatively, the options can be specified as a flat string:
4423 @var{fps}[:@var{round}].
4424
4425 See also the @ref{setpts} filter.
4426
4427 @subsection Examples
4428
4429 @itemize
4430 @item
4431 A typical usage in order to set the fps to 25:
4432 @example
4433 fps=fps=25
4434 @end example
4435
4436 @item
4437 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
4438 @example
4439 fps=fps=film:round=near
4440 @end example
4441 @end itemize
4442
4443 @section framestep
4444
4445 Select one frame every N-th frame.
4446
4447 This filter accepts the following option:
4448 @table @option
4449 @item step
4450 Select frame after every @code{step} frames.
4451 Allowed values are positive integers higher than 0. Default value is @code{1}.
4452 @end table
4453
4454 @anchor{frei0r}
4455 @section frei0r
4456
4457 Apply a frei0r effect to the input video.
4458
4459 To enable compilation of this filter you need to install the frei0r
4460 header and configure FFmpeg with @code{--enable-frei0r}.
4461
4462 This filter accepts the following options:
4463
4464 @table @option
4465
4466 @item filter_name
4467 The name to the frei0r effect to load. If the environment variable
4468 @env{FREI0R_PATH} is defined, the frei0r effect is searched in each one of the
4469 directories specified by the colon separated list in @env{FREIOR_PATH},
4470 otherwise in the standard frei0r paths, which are in this order:
4471 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
4472 @file{/usr/lib/frei0r-1/}.
4473
4474 @item filter_params
4475 A '|'-separated list of parameters to pass to the frei0r effect.
4476
4477 @end table
4478
4479 A frei0r effect parameter can be a boolean (whose values are specified
4480 with "y" and "n"), a double, a color (specified by the syntax
4481 @var{R}/@var{G}/@var{B}, (@var{R}, @var{G}, and @var{B} being float
4482 numbers from 0.0 to 1.0) or by a color description specified in the "Color"
4483 section in the ffmpeg-utils manual), a position (specified by the syntax @var{X}/@var{Y},
4484 @var{X} and @var{Y} being float numbers) and a string.
4485
4486 The number and kind of parameters depend on the loaded effect. If an
4487 effect parameter is not specified the default value is set.
4488
4489 @subsection Examples
4490
4491 @itemize
4492 @item
4493 Apply the distort0r effect, set the first two double parameters:
4494 @example
4495 frei0r=filter_name=distort0r:filter_params=0.5|0.01
4496 @end example
4497
4498 @item
4499 Apply the colordistance effect, take a color as first parameter:
4500 @example
4501 frei0r=colordistance:0.2/0.3/0.4
4502 frei0r=colordistance:violet
4503 frei0r=colordistance:0x112233
4504 @end example
4505
4506 @item
4507 Apply the perspective effect, specify the top left and top right image
4508 positions:
4509 @example
4510 frei0r=perspective:0.2/0.2|0.8/0.2
4511 @end example
4512 @end itemize
4513
4514 For more information see:
4515 @url{http://frei0r.dyne.org}
4516
4517 @section geq
4518
4519 The filter accepts the following options:
4520
4521 @table @option
4522 @item lum_expr, lum
4523 Set the luminance expression.
4524 @item cb_expr, cb
4525 Set the chrominance blue expression.
4526 @item cr_expr, cr
4527 Set the chrominance red expression.
4528 @item alpha_expr, a
4529 Set the alpha expression.
4530 @item red_expr, r
4531 Set the red expression.
4532 @item green_expr, g
4533 Set the green expression.
4534 @item blue_expr, b
4535 Set the blue expression.
4536 @end table
4537
4538 The colorspace is selected according to the specified options. If one
4539 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
4540 options is specified, the filter will automatically select a YCbCr
4541 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
4542 @option{blue_expr} options is specified, it will select an RGB
4543 colorspace.
4544
4545 If one of the chrominance expression is not defined, it falls back on the other
4546 one. If no alpha expression is specified it will evaluate to opaque value.
4547 If none of chrominance expressions are specified, they will evaluate
4548 to the luminance expression.
4549
4550 The expressions can use the following variables and functions:
4551
4552 @table @option
4553 @item N
4554 The sequential number of the filtered frame, starting from @code{0}.
4555
4556 @item X
4557 @item Y
4558 The coordinates of the current sample.
4559
4560 @item W
4561 @item H
4562 The width and height of the image.
4563
4564 @item SW
4565 @item SH
4566 Width and height scale depending on the currently filtered plane. It is the
4567 ratio between the corresponding luma plane number of pixels and the current
4568 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4569 @code{0.5,0.5} for chroma planes.
4570
4571 @item T
4572 Time of the current frame, expressed in seconds.
4573
4574 @item p(x, y)
4575 Return the value of the pixel at location (@var{x},@var{y}) of the current
4576 plane.
4577
4578 @item lum(x, y)
4579 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
4580 plane.
4581
4582 @item cb(x, y)
4583 Return the value of the pixel at location (@var{x},@var{y}) of the
4584 blue-difference chroma plane. Return 0 if there is no such plane.
4585
4586 @item cr(x, y)
4587 Return the value of the pixel at location (@var{x},@var{y}) of the
4588 red-difference chroma plane. Return 0 if there is no such plane.
4589
4590 @item r(x, y)
4591 @item g(x, y)
4592 @item b(x, y)
4593 Return the value of the pixel at location (@var{x},@var{y}) of the
4594 red/green/blue component. Return 0 if there is no such component.
4595
4596 @item alpha(x, y)
4597 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
4598 plane. Return 0 if there is no such plane.
4599 @end table
4600
4601 For functions, if @var{x} and @var{y} are outside the area, the value will be
4602 automatically clipped to the closer edge.
4603
4604 @subsection Examples
4605
4606 @itemize
4607 @item
4608 Flip the image horizontally:
4609 @example
4610 geq=p(W-X\,Y)
4611 @end example
4612
4613 @item
4614 Generate a bidimensional sine wave, with angle @code{PI/3} and a
4615 wavelength of 100 pixels:
4616 @example
4617 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
4618 @end example
4619
4620 @item
4621 Generate a fancy enigmatic moving light:
4622 @example
4623 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
4624 @end example
4625
4626 @item
4627 Generate a quick emboss effect:
4628 @example
4629 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
4630 @end example
4631
4632 @item
4633 Modify RGB components depending on pixel position:
4634 @example
4635 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
4636 @end example
4637 @end itemize
4638
4639 @section gradfun
4640
4641 Fix the banding artifacts that are sometimes introduced into nearly flat
4642 regions by truncation to 8bit color depth.
4643 Interpolate the gradients that should go where the bands are, and
4644 dither them.
4645
4646 This filter is designed for playback only.  Do not use it prior to
4647 lossy compression, because compression tends to lose the dither and
4648 bring back the bands.
4649
4650 This filter accepts the following options:
4651
4652 @table @option
4653
4654 @item strength
4655 The maximum amount by which the filter will change any one pixel. Also the
4656 threshold for detecting nearly flat regions. Acceptable values range from .51 to
4657 64, default value is 1.2, out-of-range values will be clipped to the valid
4658 range.
4659
4660 @item radius
4661 The neighborhood to fit the gradient to. A larger radius makes for smoother
4662 gradients, but also prevents the filter from modifying the pixels near detailed
4663 regions. Acceptable values are 8-32, default value is 16, out-of-range values
4664 will be clipped to the valid range.
4665
4666 @end table
4667
4668 Alternatively, the options can be specified as a flat string:
4669 @var{strength}[:@var{radius}]
4670
4671 @subsection Examples
4672
4673 @itemize
4674 @item
4675 Apply the filter with a @code{3.5} strength and radius of @code{8}:
4676 @example
4677 gradfun=3.5:8
4678 @end example
4679
4680 @item
4681 Specify radius, omitting the strength (which will fall-back to the default
4682 value):
4683 @example
4684 gradfun=radius=8
4685 @end example
4686
4687 @end itemize
4688
4689 @anchor{haldclut}
4690 @section haldclut
4691
4692 Apply a Hald CLUT to a video stream.
4693
4694 First input is the video stream to process, and second one is the Hald CLUT.
4695 The Hald CLUT input can be a simple picture or a complete video stream.
4696
4697 The filter accepts the following options:
4698
4699 @table @option
4700 @item shortest
4701 Force termination when the shortest input terminates. Default is @code{0}.
4702 @item repeatlast
4703 Continue applying the last CLUT after the end of the stream. A value of
4704 @code{0} disable the filter after the last frame of the CLUT is reached.
4705 Default is @code{1}.
4706 @end table
4707
4708 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
4709 filters share the same internals).
4710
4711 More information about the Hald CLUT can be found on Eskil Steenberg's website
4712 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
4713
4714 @subsection Workflow examples
4715
4716 @subsubsection Hald CLUT video stream
4717
4718 Generate an identity Hald CLUT stream altered with various effects:
4719 @example
4720 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
4721 @end example
4722
4723 Note: make sure you use a lossless codec.
4724
4725 Then use it with @code{haldclut} to apply it on some random stream:
4726 @example
4727 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
4728 @end example
4729
4730 The Hald CLUT will be applied to the 10 first seconds (duration of
4731 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
4732 to the remaining frames of the @code{mandelbrot} stream.
4733
4734 @subsubsection Hald CLUT with preview
4735
4736 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
4737 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
4738 biggest possible square starting at the top left of the picture. The remaining
4739 padding pixels (bottom or right) will be ignored. This area can be used to add
4740 a preview of the Hald CLUT.
4741
4742 Typically, the following generated Hald CLUT will be supported by the
4743 @code{haldclut} filter:
4744
4745 @example
4746 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
4747    pad=iw+320 [padded_clut];
4748    smptebars=s=320x256, split [a][b];
4749    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
4750    [main][b] overlay=W-320" -frames:v 1 clut.png
4751 @end example
4752
4753 It contains the original and a preview of the effect of the CLUT: SMPTE color
4754 bars are displayed on the right-top, and below the same color bars processed by
4755 the color changes.
4756
4757 Then, the effect of this Hald CLUT can be visualized with:
4758 @example
4759 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
4760 @end example
4761
4762 @section hflip
4763
4764 Flip the input video horizontally.
4765
4766 For example to horizontally flip the input video with @command{ffmpeg}:
4767 @example
4768 ffmpeg -i in.avi -vf "hflip" out.avi
4769 @end example
4770
4771 @section histeq
4772 This filter applies a global color histogram equalization on a
4773 per-frame basis.
4774
4775 It can be used to correct video that has a compressed range of pixel
4776 intensities.  The filter redistributes the pixel intensities to
4777 equalize their distribution across the intensity range. It may be
4778 viewed as an "automatically adjusting contrast filter". This filter is
4779 useful only for correcting degraded or poorly captured source
4780 video.
4781
4782 The filter accepts the following options:
4783
4784 @table @option
4785 @item strength
4786 Determine the amount of equalization to be applied.  As the strength
4787 is reduced, the distribution of pixel intensities more-and-more
4788 approaches that of the input frame. The value must be a float number
4789 in the range [0,1] and defaults to 0.200.
4790
4791 @item intensity
4792 Set the maximum intensity that can generated and scale the output
4793 values appropriately.  The strength should be set as desired and then
4794 the intensity can be limited if needed to avoid washing-out. The value
4795 must be a float number in the range [0,1] and defaults to 0.210.
4796
4797 @item antibanding
4798 Set the antibanding level. If enabled the filter will randomly vary
4799 the luminance of output pixels by a small amount to avoid banding of
4800 the histogram. Possible values are @code{none}, @code{weak} or
4801 @code{strong}. It defaults to @code{none}.
4802 @end table
4803
4804 @section histogram
4805
4806 Compute and draw a color distribution histogram for the input video.
4807
4808 The computed histogram is a representation of distribution of color components
4809 in an image.
4810
4811 The filter accepts the following options:
4812
4813 @table @option
4814 @item mode
4815 Set histogram mode.
4816
4817 It accepts the following values:
4818 @table @samp
4819 @item levels
4820 standard histogram that display color components distribution in an image.
4821 Displays color graph for each color component. Shows distribution
4822 of the Y, U, V, A or R, G, B components, depending on input format,
4823 in current frame. Bellow each graph is color component scale meter.
4824
4825 @item color
4826 chroma values in vectorscope, if brighter more such chroma values are
4827 distributed in an image.
4828 Displays chroma values (U/V color placement) in two dimensional graph
4829 (which is called a vectorscope). It can be used to read of the hue and
4830 saturation of the current frame. At a same time it is a histogram.
4831 The whiter a pixel in the vectorscope, the more pixels of the input frame
4832 correspond to that pixel (that is the more pixels have this chroma value).
4833 The V component is displayed on the horizontal (X) axis, with the leftmost
4834 side being V = 0 and the rightmost side being V = 255.
4835 The U component is displayed on the vertical (Y) axis, with the top
4836 representing U = 0 and the bottom representing U = 255.
4837
4838 The position of a white pixel in the graph corresponds to the chroma value
4839 of a pixel of the input clip. So the graph can be used to read of the
4840 hue (color flavor) and the saturation (the dominance of the hue in the color).
4841 As the hue of a color changes, it moves around the square. At the center of
4842 the square, the saturation is zero, which means that the corresponding pixel
4843 has no color. If you increase the amount of a specific color, while leaving
4844 the other colors unchanged, the saturation increases, and you move towards
4845 the edge of the square.
4846
4847 @item color2
4848 chroma values in vectorscope, similar as @code{color} but actual chroma values
4849 are displayed.
4850
4851 @item waveform
4852 per row/column color component graph. In row mode graph in the left side represents
4853 color component value 0 and right side represents value = 255. In column mode top
4854 side represents color component value = 0 and bottom side represents value = 255.
4855 @end table
4856 Default value is @code{levels}.
4857
4858 @item level_height
4859 Set height of level in @code{levels}. Default value is @code{200}.
4860 Allowed range is [50, 2048].
4861
4862 @item scale_height
4863 Set height of color scale in @code{levels}. Default value is @code{12}.
4864 Allowed range is [0, 40].
4865
4866 @item step
4867 Set step for @code{waveform} mode. Smaller values are useful to find out how much
4868 of same luminance values across input rows/columns are distributed.
4869 Default value is @code{10}. Allowed range is [1, 255].
4870
4871 @item waveform_mode
4872 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
4873 Default is @code{row}.
4874
4875 @item waveform_mirror
4876 Set mirroring mode for @code{waveform}. @code{0} means unmirrored, @code{1}
4877 means mirrored. In mirrored mode, higher values will be represented on the left
4878 side for @code{row} mode and at the top for @code{column} mode. Default is
4879 @code{0} (unmirrored).
4880
4881 @item display_mode
4882 Set display mode for @code{waveform} and @code{levels}.
4883 It accepts the following values:
4884 @table @samp
4885 @item parade
4886 Display separate graph for the color components side by side in
4887 @code{row} waveform mode or one below other in @code{column} waveform mode
4888 for @code{waveform} histogram mode. For @code{levels} histogram mode
4889 per color component graphs are placed one bellow other.
4890
4891 This display mode in @code{waveform} histogram mode makes it easy to spot
4892 color casts in the highlights and shadows of an image, by comparing the
4893 contours of the top and the bottom of each waveform.
4894 Since whites, grays, and blacks are characterized by
4895 exactly equal amounts of red, green, and blue, neutral areas of the
4896 picture should display three waveforms of roughly equal width/height.
4897 If not, the correction is easy to make by making adjustments to level the
4898 three waveforms.
4899
4900 @item overlay
4901 Presents information that's identical to that in the @code{parade}, except
4902 that the graphs representing color components are superimposed directly
4903 over one another.
4904
4905 This display mode in @code{waveform} histogram mode can make it easier to spot
4906 the relative differences or similarities in overlapping areas of the color
4907 components that are supposed to be identical, such as neutral whites, grays,
4908 or blacks.
4909 @end table
4910 Default is @code{parade}.
4911
4912 @item levels_mode
4913 Set mode for @code{levels}. Can be either @code{linear}, or @code{logarithmic}.
4914 Default is @code{linear}.
4915 @end table
4916
4917 @subsection Examples
4918
4919 @itemize
4920
4921 @item
4922 Calculate and draw histogram:
4923 @example
4924 ffplay -i input -vf histogram
4925 @end example
4926
4927 @end itemize
4928
4929 @anchor{hqdn3d}
4930 @section hqdn3d
4931
4932 High precision/quality 3d denoise filter. This filter aims to reduce
4933 image noise producing smooth images and making still images really
4934 still. It should enhance compressibility.
4935
4936 It accepts the following optional parameters:
4937
4938 @table @option
4939 @item luma_spatial
4940 a non-negative float number which specifies spatial luma strength,
4941 defaults to 4.0
4942
4943 @item chroma_spatial
4944 a non-negative float number which specifies spatial chroma strength,
4945 defaults to 3.0*@var{luma_spatial}/4.0
4946
4947 @item luma_tmp
4948 a float number which specifies luma temporal strength, defaults to
4949 6.0*@var{luma_spatial}/4.0
4950
4951 @item chroma_tmp
4952 a float number which specifies chroma temporal strength, defaults to
4953 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
4954 @end table
4955
4956 @section hue
4957
4958 Modify the hue and/or the saturation of the input.
4959
4960 This filter accepts the following options:
4961
4962 @table @option
4963 @item h
4964 Specify the hue angle as a number of degrees. It accepts an expression,
4965 and defaults to "0".
4966
4967 @item s
4968 Specify the saturation in the [-10,10] range. It accepts an expression and
4969 defaults to "1".
4970
4971 @item H
4972 Specify the hue angle as a number of radians. It accepts an
4973 expression, and defaults to "0".
4974
4975 @item b
4976 Specify the brightness in the [-10,10] range. It accepts an expression and
4977 defaults to "0".
4978 @end table
4979
4980 @option{h} and @option{H} are mutually exclusive, and can't be
4981 specified at the same time.
4982
4983 The @option{b}, @option{h}, @option{H} and @option{s} option values are
4984 expressions containing the following constants:
4985
4986 @table @option
4987 @item n
4988 frame count of the input frame starting from 0
4989
4990 @item pts
4991 presentation timestamp of the input frame expressed in time base units
4992
4993 @item r
4994 frame rate of the input video, NAN if the input frame rate is unknown
4995
4996 @item t
4997 timestamp expressed in seconds, NAN if the input timestamp is unknown
4998
4999 @item tb
5000 time base of the input video
5001 @end table
5002
5003 @subsection Examples
5004
5005 @itemize
5006 @item
5007 Set the hue to 90 degrees and the saturation to 1.0:
5008 @example
5009 hue=h=90:s=1
5010 @end example
5011
5012 @item
5013 Same command but expressing the hue in radians:
5014 @example
5015 hue=H=PI/2:s=1
5016 @end example
5017
5018 @item
5019 Rotate hue and make the saturation swing between 0
5020 and 2 over a period of 1 second:
5021 @example
5022 hue="H=2*PI*t: s=sin(2*PI*t)+1"
5023 @end example
5024
5025 @item
5026 Apply a 3 seconds saturation fade-in effect starting at 0:
5027 @example
5028 hue="s=min(t/3\,1)"
5029 @end example
5030
5031 The general fade-in expression can be written as:
5032 @example
5033 hue="s=min(0\, max((t-START)/DURATION\, 1))"
5034 @end example
5035
5036 @item
5037 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
5038 @example
5039 hue="s=max(0\, min(1\, (8-t)/3))"
5040 @end example
5041
5042 The general fade-out expression can be written as:
5043 @example
5044 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
5045 @end example
5046
5047 @end itemize
5048
5049 @subsection Commands
5050
5051 This filter supports the following commands:
5052 @table @option
5053 @item b
5054 @item s
5055 @item h
5056 @item H
5057 Modify the hue and/or the saturation and/or brightness of the input video.
5058 The command accepts the same syntax of the corresponding option.
5059
5060 If the specified expression is not valid, it is kept at its current
5061 value.
5062 @end table
5063
5064 @section idet
5065
5066 Detect video interlacing type.
5067
5068 This filter tries to detect if the input is interlaced or progressive,
5069 top or bottom field first.
5070
5071 The filter accepts the following options:
5072
5073 @table @option
5074 @item intl_thres
5075 Set interlacing threshold.
5076 @item prog_thres
5077 Set progressive threshold.
5078 @end table
5079
5080 @section il
5081
5082 Deinterleave or interleave fields.
5083
5084 This filter allows to process interlaced images fields without
5085 deinterlacing them. Deinterleaving splits the input frame into 2
5086 fields (so called half pictures). Odd lines are moved to the top
5087 half of the output image, even lines to the bottom half.
5088 You can process (filter) them independently and then re-interleave them.
5089
5090 The filter accepts the following options:
5091
5092 @table @option
5093 @item luma_mode, l
5094 @item chroma_mode, c
5095 @item alpha_mode, a
5096 Available values for @var{luma_mode}, @var{chroma_mode} and
5097 @var{alpha_mode} are:
5098
5099 @table @samp
5100 @item none
5101 Do nothing.
5102
5103 @item deinterleave, d
5104 Deinterleave fields, placing one above the other.
5105
5106 @item interleave, i
5107 Interleave fields. Reverse the effect of deinterleaving.
5108 @end table
5109 Default value is @code{none}.
5110
5111 @item luma_swap, ls
5112 @item chroma_swap, cs
5113 @item alpha_swap, as
5114 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
5115 @end table
5116
5117 @section interlace
5118
5119 Simple interlacing filter from progressive contents. This interleaves upper (or
5120 lower) lines from odd frames with lower (or upper) lines from even frames,
5121 halving the frame rate and preserving image height.
5122
5123 @example
5124    Original        Original             New Frame
5125    Frame 'j'      Frame 'j+1'             (tff)
5126   ==========      ===========       ==================
5127     Line 0  -------------------->    Frame 'j' Line 0
5128     Line 1          Line 1  ---->   Frame 'j+1' Line 1
5129     Line 2 --------------------->    Frame 'j' Line 2
5130     Line 3          Line 3  ---->   Frame 'j+1' Line 3
5131      ...             ...                   ...
5132 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
5133 @end example
5134
5135 It accepts the following optional parameters:
5136
5137 @table @option
5138 @item scan
5139 determines whether the interlaced frame is taken from the even (tff - default)
5140 or odd (bff) lines of the progressive frame.
5141
5142 @item lowpass
5143 Enable (default) or disable the vertical lowpass filter to avoid twitter
5144 interlacing and reduce moire patterns.
5145 @end table
5146
5147 @section kerndeint
5148
5149 Deinterlace input video by applying Donald Graft's adaptive kernel
5150 deinterling. Work on interlaced parts of a video to produce
5151 progressive frames.
5152
5153 The description of the accepted parameters follows.
5154
5155 @table @option
5156 @item thresh
5157 Set the threshold which affects the filter's tolerance when
5158 determining if a pixel line must be processed. It must be an integer
5159 in the range [0,255] and defaults to 10. A value of 0 will result in
5160 applying the process on every pixels.
5161
5162 @item map
5163 Paint pixels exceeding the threshold value to white if set to 1.
5164 Default is 0.
5165
5166 @item order
5167 Set the fields order. Swap fields if set to 1, leave fields alone if
5168 0. Default is 0.
5169
5170 @item sharp
5171 Enable additional sharpening if set to 1. Default is 0.
5172
5173 @item twoway
5174 Enable twoway sharpening if set to 1. Default is 0.
5175 @end table
5176
5177 @subsection Examples
5178
5179 @itemize
5180 @item
5181 Apply default values:
5182 @example
5183 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
5184 @end example
5185
5186 @item
5187 Enable additional sharpening:
5188 @example
5189 kerndeint=sharp=1
5190 @end example
5191
5192 @item
5193 Paint processed pixels in white:
5194 @example
5195 kerndeint=map=1
5196 @end example
5197 @end itemize
5198
5199 @anchor{lut3d}
5200 @section lut3d
5201
5202 Apply a 3D LUT to an input video.
5203
5204 The filter accepts the following options:
5205
5206 @table @option
5207 @item file
5208 Set the 3D LUT file name.
5209
5210 Currently supported formats:
5211 @table @samp
5212 @item 3dl
5213 AfterEffects
5214 @item cube
5215 Iridas
5216 @item dat
5217 DaVinci
5218 @item m3d
5219 Pandora
5220 @end table
5221 @item interp
5222 Select interpolation mode.
5223
5224 Available values are:
5225
5226 @table @samp
5227 @item nearest
5228 Use values from the nearest defined point.
5229 @item trilinear
5230 Interpolate values using the 8 points defining a cube.
5231 @item tetrahedral
5232 Interpolate values using a tetrahedron.
5233 @end table
5234 @end table
5235
5236 @section lut, lutrgb, lutyuv
5237
5238 Compute a look-up table for binding each pixel component input value
5239 to an output value, and apply it to input video.
5240
5241 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
5242 to an RGB input video.
5243
5244 These filters accept the following options:
5245 @table @option
5246 @item c0
5247 set first pixel component expression
5248 @item c1
5249 set second pixel component expression
5250 @item c2
5251 set third pixel component expression
5252 @item c3
5253 set fourth pixel component expression, corresponds to the alpha component
5254
5255 @item r
5256 set red component expression
5257 @item g
5258 set green component expression
5259 @item b
5260 set blue component expression
5261 @item a
5262 alpha component expression
5263
5264 @item y
5265 set Y/luminance component expression
5266 @item u
5267 set U/Cb component expression
5268 @item v
5269 set V/Cr component expression
5270 @end table
5271
5272 Each of them specifies the expression to use for computing the lookup table for
5273 the corresponding pixel component values.
5274
5275 The exact component associated to each of the @var{c*} options depends on the
5276 format in input.
5277
5278 The @var{lut} filter requires either YUV or RGB pixel formats in input,
5279 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
5280
5281 The expressions can contain the following constants and functions:
5282
5283 @table @option
5284 @item w
5285 @item h
5286 the input width and height
5287
5288 @item val
5289 input value for the pixel component
5290
5291 @item clipval
5292 the input value clipped in the @var{minval}-@var{maxval} range
5293
5294 @item maxval
5295 maximum value for the pixel component
5296
5297 @item minval
5298 minimum value for the pixel component
5299
5300 @item negval
5301 the negated value for the pixel component value clipped in the
5302 @var{minval}-@var{maxval} range , it corresponds to the expression
5303 "maxval-clipval+minval"
5304
5305 @item clip(val)
5306 the computed value in @var{val} clipped in the
5307 @var{minval}-@var{maxval} range
5308
5309 @item gammaval(gamma)
5310 the computed gamma correction value of the pixel component value
5311 clipped in the @var{minval}-@var{maxval} range, corresponds to the
5312 expression
5313 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
5314
5315 @end table
5316
5317 All expressions default to "val".
5318
5319 @subsection Examples
5320
5321 @itemize
5322 @item
5323 Negate input video:
5324 @example
5325 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
5326 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
5327 @end example
5328
5329 The above is the same as:
5330 @example
5331 lutrgb="r=negval:g=negval:b=negval"
5332 lutyuv="y=negval:u=negval:v=negval"
5333 @end example
5334
5335 @item
5336 Negate luminance:
5337 @example
5338 lutyuv=y=negval
5339 @end example
5340
5341 @item
5342 Remove chroma components, turns the video into a graytone image:
5343 @example
5344 lutyuv="u=128:v=128"
5345 @end example
5346
5347 @item
5348 Apply a luma burning effect:
5349 @example
5350 lutyuv="y=2*val"
5351 @end example
5352
5353 @item
5354 Remove green and blue components:
5355 @example
5356 lutrgb="g=0:b=0"
5357 @end example
5358
5359 @item
5360 Set a constant alpha channel value on input:
5361 @example
5362 format=rgba,lutrgb=a="maxval-minval/2"
5363 @end example
5364
5365 @item
5366 Correct luminance gamma by a 0.5 factor:
5367 @example
5368 lutyuv=y=gammaval(0.5)
5369 @end example
5370
5371 @item
5372 Discard least significant bits of luma:
5373 @example
5374 lutyuv=y='bitand(val, 128+64+32)'
5375 @end example
5376 @end itemize
5377
5378 @section mergeplanes
5379
5380 Merge color channel components from several video streams.
5381
5382 The filter accepts up to 4 input streams, and merge selected input
5383 planes to the output video.
5384
5385 This filter accepts the following options:
5386 @table @option
5387 @item mapping
5388 Set input to output plane mapping. Default is @code{0}.
5389
5390 The mappings is specified as a bitmap. It should be specified as a
5391 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
5392 mapping for the first plane of the output stream. 'A' sets the number of
5393 the input stream to use (from 0 to 3), and 'a' the plane number of the
5394 corresponding input to use (from 0 to 3). The rest of the mappings is
5395 similar, 'Bb' describes the mapping for the output stream second
5396 plane, 'Cc' describes the mapping for the output stream third plane and
5397 'Dd' describes the mapping for the output stream fourth plane.
5398
5399 @item format
5400 Set output pixel format. Default is @code{yuva444p}.
5401 @end table
5402
5403 @subsection Examples
5404
5405 @itemize
5406 @item
5407 Merge three gray video streams of same width and height into single video stream:
5408 @example
5409 [a0][a1][a2]mergeplanes=0x001020:yuv444p
5410 @end example
5411
5412 @item
5413 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
5414 @example
5415 [a0][a1]mergeplanes=0x00010210:yuva444p
5416 @end example
5417
5418 @item
5419 Swap Y and A plane in yuva444p stream:
5420 @example
5421 format=yuva444p,mergeplanes=0x03010200:yuva444p
5422 @end example
5423
5424 @item
5425 Swap U and V plane in yuv420p stream:
5426 @example
5427 format=yuv420p,mergeplanes=0x000201:yuv420p
5428 @end example
5429
5430 @item
5431 Cast a rgb24 clip to yuv444p:
5432 @example
5433 format=rgb24,mergeplanes=0x000102:yuv444p
5434 @end example
5435 @end itemize
5436
5437 @section mcdeint
5438
5439 Apply motion-compensation deinterlacing.
5440
5441 It needs one field per frame as input and must thus be used together
5442 with yadif=1/3 or equivalent.
5443
5444 This filter accepts the following options:
5445 @table @option
5446 @item mode
5447 Set the deinterlacing mode.
5448
5449 It accepts one of the following values:
5450 @table @samp
5451 @item fast
5452 @item medium
5453 @item slow
5454 use iterative motion estimation
5455 @item extra_slow
5456 like @samp{slow}, but use multiple reference frames.
5457 @end table
5458 Default value is @samp{fast}.
5459
5460 @item parity
5461 Set the picture field parity assumed for the input video. It must be
5462 one of the following values:
5463
5464 @table @samp
5465 @item 0, tff
5466 assume top field first
5467 @item 1, bff
5468 assume bottom field first
5469 @end table
5470
5471 Default value is @samp{bff}.
5472
5473 @item qp
5474 Set per-block quantization parameter (QP) used by the internal
5475 encoder.
5476
5477 Higher values should result in a smoother motion vector field but less
5478 optimal individual vectors. Default value is 1.
5479 @end table
5480
5481 @section mp
5482
5483 Apply an MPlayer filter to the input video.
5484
5485 This filter provides a wrapper around some of the filters of
5486 MPlayer/MEncoder.
5487
5488 This wrapper is considered experimental. Some of the wrapped filters
5489 may not work properly and we may drop support for them, as they will
5490 be implemented natively into FFmpeg. Thus you should avoid
5491 depending on them when writing portable scripts.
5492
5493 The filter accepts the parameters:
5494 @var{filter_name}[:=]@var{filter_params}
5495
5496 @var{filter_name} is the name of a supported MPlayer filter,
5497 @var{filter_params} is a string containing the parameters accepted by
5498 the named filter.
5499
5500 The list of the currently supported filters follows:
5501 @table @var
5502 @item eq2
5503 @item eq
5504 @item fspp
5505 @item ilpack
5506 @item pp7
5507 @item softpulldown
5508 @item uspp
5509 @end table
5510
5511 The parameter syntax and behavior for the listed filters are the same
5512 of the corresponding MPlayer filters. For detailed instructions check
5513 the "VIDEO FILTERS" section in the MPlayer manual.
5514
5515 @subsection Examples
5516
5517 @itemize
5518 @item
5519 Adjust gamma, brightness, contrast:
5520 @example
5521 mp=eq2=1.0:2:0.5
5522 @end example
5523 @end itemize
5524
5525 See also mplayer(1), @url{http://www.mplayerhq.hu/}.
5526
5527 @section mpdecimate
5528
5529 Drop frames that do not differ greatly from the previous frame in
5530 order to reduce frame rate.
5531
5532 The main use of this filter is for very-low-bitrate encoding
5533 (e.g. streaming over dialup modem), but it could in theory be used for
5534 fixing movies that were inverse-telecined incorrectly.
5535
5536 A description of the accepted options follows.
5537
5538 @table @option
5539 @item max
5540 Set the maximum number of consecutive frames which can be dropped (if
5541 positive), or the minimum interval between dropped frames (if
5542 negative). If the value is 0, the frame is dropped unregarding the
5543 number of previous sequentially dropped frames.
5544
5545 Default value is 0.
5546
5547 @item hi
5548 @item lo
5549 @item frac
5550 Set the dropping threshold values.
5551
5552 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
5553 represent actual pixel value differences, so a threshold of 64
5554 corresponds to 1 unit of difference for each pixel, or the same spread
5555 out differently over the block.
5556
5557 A frame is a candidate for dropping if no 8x8 blocks differ by more
5558 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
5559 meaning the whole image) differ by more than a threshold of @option{lo}.
5560
5561 Default value for @option{hi} is 64*12, default value for @option{lo} is
5562 64*5, and default value for @option{frac} is 0.33.
5563 @end table
5564
5565
5566 @section negate
5567
5568 Negate input video.
5569
5570 This filter accepts an integer in input, if non-zero it negates the
5571 alpha component (if available). The default value in input is 0.
5572
5573 @section noformat
5574
5575 Force libavfilter not to use any of the specified pixel formats for the
5576 input to the next filter.
5577
5578 This filter accepts the following parameters:
5579 @table @option
5580
5581 @item pix_fmts
5582 A '|'-separated list of pixel format names, for example
5583 "pix_fmts=yuv420p|monow|rgb24".
5584
5585 @end table
5586
5587 @subsection Examples
5588
5589 @itemize
5590 @item
5591 Force libavfilter to use a format different from @var{yuv420p} for the
5592 input to the vflip filter:
5593 @example
5594 noformat=pix_fmts=yuv420p,vflip
5595 @end example
5596
5597 @item
5598 Convert the input video to any of the formats not contained in the list:
5599 @example
5600 noformat=yuv420p|yuv444p|yuv410p
5601 @end example
5602 @end itemize
5603
5604 @section noise
5605
5606 Add noise on video input frame.
5607
5608 The filter accepts the following options:
5609
5610 @table @option
5611 @item all_seed
5612 @item c0_seed
5613 @item c1_seed
5614 @item c2_seed
5615 @item c3_seed
5616 Set noise seed for specific pixel component or all pixel components in case
5617 of @var{all_seed}. Default value is @code{123457}.
5618
5619 @item all_strength, alls
5620 @item c0_strength, c0s
5621 @item c1_strength, c1s
5622 @item c2_strength, c2s
5623 @item c3_strength, c3s
5624 Set noise strength for specific pixel component or all pixel components in case
5625 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
5626
5627 @item all_flags, allf
5628 @item c0_flags, c0f
5629 @item c1_flags, c1f
5630 @item c2_flags, c2f
5631 @item c3_flags, c3f
5632 Set pixel component flags or set flags for all components if @var{all_flags}.
5633 Available values for component flags are:
5634 @table @samp
5635 @item a
5636 averaged temporal noise (smoother)
5637 @item p
5638 mix random noise with a (semi)regular pattern
5639 @item t
5640 temporal noise (noise pattern changes between frames)
5641 @item u
5642 uniform noise (gaussian otherwise)
5643 @end table
5644 @end table
5645
5646 @subsection Examples
5647
5648 Add temporal and uniform noise to input video:
5649 @example
5650 noise=alls=20:allf=t+u
5651 @end example
5652
5653 @section null
5654
5655 Pass the video source unchanged to the output.
5656
5657 @section ocv
5658
5659 Apply video transform using libopencv.
5660
5661 To enable this filter install libopencv library and headers and
5662 configure FFmpeg with @code{--enable-libopencv}.
5663
5664 This filter accepts the following parameters:
5665
5666 @table @option
5667
5668 @item filter_name
5669 The name of the libopencv filter to apply.
5670
5671 @item filter_params
5672 The parameters to pass to the libopencv filter. If not specified the default
5673 values are assumed.
5674
5675 @end table
5676
5677 Refer to the official libopencv documentation for more precise
5678 information:
5679 @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
5680
5681 Follows the list of supported libopencv filters.
5682
5683 @anchor{dilate}
5684 @subsection dilate
5685
5686 Dilate an image by using a specific structuring element.
5687 This filter corresponds to the libopencv function @code{cvDilate}.
5688
5689 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
5690
5691 @var{struct_el} represents a structuring element, and has the syntax:
5692 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
5693
5694 @var{cols} and @var{rows} represent the number of columns and rows of
5695 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
5696 point, and @var{shape} the shape for the structuring element, and
5697 can be one of the values "rect", "cross", "ellipse", "custom".
5698
5699 If the value for @var{shape} is "custom", it must be followed by a
5700 string of the form "=@var{filename}". The file with name
5701 @var{filename} is assumed to represent a binary image, with each
5702 printable character corresponding to a bright pixel. When a custom
5703 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
5704 or columns and rows of the read file are assumed instead.
5705
5706 The default value for @var{struct_el} is "3x3+0x0/rect".
5707
5708 @var{nb_iterations} specifies the number of times the transform is
5709 applied to the image, and defaults to 1.
5710
5711 Follow some example:
5712 @example
5713 # use the default values
5714 ocv=dilate
5715
5716 # dilate using a structuring element with a 5x5 cross, iterate two times
5717 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
5718
5719 # read the shape from the file diamond.shape, iterate two times
5720 # the file diamond.shape may contain a pattern of characters like this:
5721 #   *
5722 #  ***
5723 # *****
5724 #  ***
5725 #   *
5726 # the specified cols and rows are ignored (but not the anchor point coordinates)
5727 ocv=dilate:0x0+2x2/custom=diamond.shape|2
5728 @end example
5729
5730 @subsection erode
5731
5732 Erode an image by using a specific structuring element.
5733 This filter corresponds to the libopencv function @code{cvErode}.
5734
5735 The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
5736 with the same syntax and semantics as the @ref{dilate} filter.
5737
5738 @subsection smooth
5739
5740 Smooth the input video.
5741
5742 The filter takes the following parameters:
5743 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
5744
5745 @var{type} is the type of smooth filter to apply, and can be one of
5746 the following values: "blur", "blur_no_scale", "median", "gaussian",
5747 "bilateral". The default value is "gaussian".
5748
5749 @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
5750 parameters whose meanings depend on smooth type. @var{param1} and
5751 @var{param2} accept integer positive values or 0, @var{param3} and
5752 @var{param4} accept float values.
5753
5754 The default value for @var{param1} is 3, the default value for the
5755 other parameters is 0.
5756
5757 These parameters correspond to the parameters assigned to the
5758 libopencv function @code{cvSmooth}.
5759
5760 @anchor{overlay}
5761 @section overlay
5762
5763 Overlay one video on top of another.
5764
5765 It takes two inputs and one output, the first input is the "main"
5766 video on which the second input is overlayed.
5767
5768 This filter accepts the following parameters:
5769
5770 A description of the accepted options follows.
5771
5772 @table @option
5773 @item x
5774 @item y
5775 Set the expression for the x and y coordinates of the overlayed video
5776 on the main video. Default value is "0" for both expressions. In case
5777 the expression is invalid, it is set to a huge value (meaning that the
5778 overlay will not be displayed within the output visible area).
5779
5780 @item eval
5781 Set when the expressions for @option{x}, and @option{y} are evaluated.
5782
5783 It accepts the following values:
5784 @table @samp
5785 @item init
5786 only evaluate expressions once during the filter initialization or
5787 when a command is processed
5788
5789 @item frame
5790 evaluate expressions for each incoming frame
5791 @end table
5792
5793 Default value is @samp{frame}.
5794
5795 @item shortest
5796 If set to 1, force the output to terminate when the shortest input
5797 terminates. Default value is 0.
5798
5799 @item format
5800 Set the format for the output video.
5801
5802 It accepts the following values:
5803 @table @samp
5804 @item yuv420
5805 force YUV420 output
5806
5807 @item yuv444
5808 force YUV444 output
5809
5810 @item rgb
5811 force RGB output
5812 @end table
5813
5814 Default value is @samp{yuv420}.
5815
5816 @item rgb @emph{(deprecated)}
5817 If set to 1, force the filter to accept inputs in the RGB
5818 color space. Default value is 0. This option is deprecated, use
5819 @option{format} instead.
5820
5821 @item repeatlast
5822 If set to 1, force the filter to draw the last overlay frame over the
5823 main input until the end of the stream. A value of 0 disables this
5824 behavior. Default value is 1.
5825 @end table
5826
5827 The @option{x}, and @option{y} expressions can contain the following
5828 parameters.
5829
5830 @table @option
5831 @item main_w, W
5832 @item main_h, H
5833 main input width and height
5834
5835 @item overlay_w, w
5836 @item overlay_h, h
5837 overlay input width and height
5838
5839 @item x
5840 @item y
5841 the computed values for @var{x} and @var{y}. They are evaluated for
5842 each new frame.
5843
5844 @item hsub
5845 @item vsub
5846 horizontal and vertical chroma subsample values of the output
5847 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
5848 @var{vsub} is 1.
5849
5850 @item n
5851 the number of input frame, starting from 0
5852
5853 @item pos
5854 the position in the file of the input frame, NAN if unknown
5855
5856 @item t
5857 timestamp expressed in seconds, NAN if the input timestamp is unknown
5858 @end table
5859
5860 Note that the @var{n}, @var{pos}, @var{t} variables are available only
5861 when evaluation is done @emph{per frame}, and will evaluate to NAN
5862 when @option{eval} is set to @samp{init}.
5863
5864 Be aware that frames are taken from each input video in timestamp
5865 order, hence, if their initial timestamps differ, it is a good idea
5866 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
5867 have them begin in the same zero timestamp, as it does the example for
5868 the @var{movie} filter.
5869
5870 You can chain together more overlays but you should test the
5871 efficiency of such approach.
5872
5873 @subsection Commands
5874
5875 This filter supports the following commands:
5876 @table @option
5877 @item x
5878 @item y
5879 Modify the x and y of the overlay input.
5880 The command accepts the same syntax of the corresponding option.
5881
5882 If the specified expression is not valid, it is kept at its current
5883 value.
5884 @end table
5885
5886 @subsection Examples
5887
5888 @itemize
5889 @item
5890 Draw the overlay at 10 pixels from the bottom right corner of the main
5891 video:
5892 @example
5893 overlay=main_w-overlay_w-10:main_h-overlay_h-10
5894 @end example
5895
5896 Using named options the example above becomes:
5897 @example
5898 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
5899 @end example
5900
5901 @item
5902 Insert a transparent PNG logo in the bottom left corner of the input,
5903 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
5904 @example
5905 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
5906 @end example
5907
5908 @item
5909 Insert 2 different transparent PNG logos (second logo on bottom
5910 right corner) using the @command{ffmpeg} tool:
5911 @example
5912 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
5913 @end example
5914
5915 @item
5916 Add a transparent color layer on top of the main video, @code{WxH}
5917 must specify the size of the main input to the overlay filter:
5918 @example
5919 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
5920 @end example
5921
5922 @item
5923 Play an original video and a filtered version (here with the deshake
5924 filter) side by side using the @command{ffplay} tool:
5925 @example
5926 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
5927 @end example
5928
5929 The above command is the same as:
5930 @example
5931 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
5932 @end example
5933
5934 @item
5935 Make a sliding overlay appearing from the left to the right top part of the
5936 screen starting since time 2:
5937 @example
5938 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
5939 @end example
5940
5941 @item
5942 Compose output by putting two input videos side to side:
5943 @example
5944 ffmpeg -i left.avi -i right.avi -filter_complex "
5945 nullsrc=size=200x100 [background];
5946 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
5947 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
5948 [background][left]       overlay=shortest=1       [background+left];
5949 [background+left][right] overlay=shortest=1:x=100 [left+right]
5950 "
5951 @end example
5952
5953 @item
5954 Chain several overlays in cascade:
5955 @example
5956 nullsrc=s=200x200 [bg];
5957 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
5958 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
5959 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
5960 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
5961 [in3] null,       [mid2] overlay=100:100 [out0]
5962 @end example
5963
5964 @end itemize
5965
5966 @section owdenoise
5967
5968 Apply Overcomplete Wavelet denoiser.
5969
5970 The filter accepts the following options:
5971
5972 @table @option
5973 @item depth
5974 Set depth.
5975
5976 Larger depth values will denoise lower frequency components more, but
5977 slow down filtering.
5978
5979 Must be an int in the range 8-16, default is @code{8}.
5980
5981 @item luma_strength, ls
5982 Set luma strength.
5983
5984 Must be a double value in the range 0-1000, default is @code{1.0}.
5985
5986 @item chroma_strength, cs
5987 Set chroma strength.
5988
5989 Must be a double value in the range 0-1000, default is @code{1.0}.
5990 @end table
5991
5992 @section pad
5993
5994 Add paddings to the input image, and place the original input at the
5995 given coordinates @var{x}, @var{y}.
5996
5997 This filter accepts the following parameters:
5998
5999 @table @option
6000 @item width, w
6001 @item height, h
6002 Specify an expression for the size of the output image with the
6003 paddings added. If the value for @var{width} or @var{height} is 0, the
6004 corresponding input size is used for the output.
6005
6006 The @var{width} expression can reference the value set by the
6007 @var{height} expression, and vice versa.
6008
6009 The default value of @var{width} and @var{height} is 0.
6010
6011 @item x
6012 @item y
6013 Specify an expression for the offsets where to place the input image
6014 in the padded area with respect to the top/left border of the output
6015 image.
6016
6017 The @var{x} expression can reference the value set by the @var{y}
6018 expression, and vice versa.
6019
6020 The default value of @var{x} and @var{y} is 0.
6021
6022 @item color
6023 Specify the color of the padded area. For the syntax of this option,
6024 check the "Color" section in the ffmpeg-utils manual.
6025
6026 The default value of @var{color} is "black".
6027 @end table
6028
6029 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
6030 options are expressions containing the following constants:
6031
6032 @table @option
6033 @item in_w
6034 @item in_h
6035 the input video width and height
6036
6037 @item iw
6038 @item ih
6039 same as @var{in_w} and @var{in_h}
6040
6041 @item out_w
6042 @item out_h
6043 the output width and height, that is the size of the padded area as
6044 specified by the @var{width} and @var{height} expressions
6045
6046 @item ow
6047 @item oh
6048 same as @var{out_w} and @var{out_h}
6049
6050 @item x
6051 @item y
6052 x and y offsets as specified by the @var{x} and @var{y}
6053 expressions, or NAN if not yet specified
6054
6055 @item a
6056 same as @var{iw} / @var{ih}
6057
6058 @item sar
6059 input sample aspect ratio
6060
6061 @item dar
6062 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
6063
6064 @item hsub
6065 @item vsub
6066 horizontal and vertical chroma subsample values. For example for the
6067 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6068 @end table
6069
6070 @subsection Examples
6071
6072 @itemize
6073 @item
6074 Add paddings with color "violet" to the input video. Output video
6075 size is 640x480, the top-left corner of the input video is placed at
6076 column 0, row 40:
6077 @example
6078 pad=640:480:0:40:violet
6079 @end example
6080
6081 The example above is equivalent to the following command:
6082 @example
6083 pad=width=640:height=480:x=0:y=40:color=violet
6084 @end example
6085
6086 @item
6087 Pad the input to get an output with dimensions increased by 3/2,
6088 and put the input video at the center of the padded area:
6089 @example
6090 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
6091 @end example
6092
6093 @item
6094 Pad the input to get a squared output with size equal to the maximum
6095 value between the input width and height, and put the input video at
6096 the center of the padded area:
6097 @example
6098 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
6099 @end example
6100
6101 @item
6102 Pad the input to get a final w/h ratio of 16:9:
6103 @example
6104 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
6105 @end example
6106
6107 @item
6108 In case of anamorphic video, in order to set the output display aspect
6109 correctly, it is necessary to use @var{sar} in the expression,
6110 according to the relation:
6111 @example
6112 (ih * X / ih) * sar = output_dar
6113 X = output_dar / sar
6114 @end example
6115
6116 Thus the previous example needs to be modified to:
6117 @example
6118 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
6119 @end example
6120
6121 @item
6122 Double output size and put the input video in the bottom-right
6123 corner of the output padded area:
6124 @example
6125 pad="2*iw:2*ih:ow-iw:oh-ih"
6126 @end example
6127 @end itemize
6128
6129 @section perspective
6130
6131 Correct perspective of video not recorded perpendicular to the screen.
6132
6133 A description of the accepted parameters follows.
6134
6135 @table @option
6136 @item x0
6137 @item y0
6138 @item x1
6139 @item y1
6140 @item x2
6141 @item y2
6142 @item x3
6143 @item y3
6144 Set coordinates expression for top left, top right, bottom left and bottom right corners.
6145 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
6146
6147 The expressions can use the following variables:
6148
6149 @table @option
6150 @item W
6151 @item H
6152 the width and height of video frame.
6153 @end table
6154
6155 @item interpolation
6156 Set interpolation for perspective correction.
6157
6158 It accepts the following values:
6159 @table @samp
6160 @item linear
6161 @item cubic
6162 @end table
6163
6164 Default value is @samp{linear}.
6165 @end table
6166
6167 @section phase
6168
6169 Delay interlaced video by one field time so that the field order changes.
6170
6171 The intended use is to fix PAL movies that have been captured with the
6172 opposite field order to the film-to-video transfer.
6173
6174 A description of the accepted parameters follows.
6175
6176 @table @option
6177 @item mode
6178 Set phase mode.
6179
6180 It accepts the following values:
6181 @table @samp
6182 @item t
6183 Capture field order top-first, transfer bottom-first.
6184 Filter will delay the bottom field.
6185
6186 @item b
6187 Capture field order bottom-first, transfer top-first.
6188 Filter will delay the top field.
6189
6190 @item p
6191 Capture and transfer with the same field order. This mode only exists
6192 for the documentation of the other options to refer to, but if you
6193 actually select it, the filter will faithfully do nothing.
6194
6195 @item a
6196 Capture field order determined automatically by field flags, transfer
6197 opposite.
6198 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
6199 basis using field flags. If no field information is available,
6200 then this works just like @samp{u}.
6201
6202 @item u
6203 Capture unknown or varying, transfer opposite.
6204 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
6205 analyzing the images and selecting the alternative that produces best
6206 match between the fields.
6207
6208 @item T
6209 Capture top-first, transfer unknown or varying.
6210 Filter selects among @samp{t} and @samp{p} using image analysis.
6211
6212 @item B
6213 Capture bottom-first, transfer unknown or varying.
6214 Filter selects among @samp{b} and @samp{p} using image analysis.
6215
6216 @item A
6217 Capture determined by field flags, transfer unknown or varying.
6218 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
6219 image analysis. If no field information is available, then this works just
6220 like @samp{U}. This is the default mode.
6221
6222 @item U
6223 Both capture and transfer unknown or varying.
6224 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
6225 @end table
6226 @end table
6227
6228 @section pixdesctest
6229
6230 Pixel format descriptor test filter, mainly useful for internal
6231 testing. The output video should be equal to the input video.
6232
6233 For example:
6234 @example
6235 format=monow, pixdesctest
6236 @end example
6237
6238 can be used to test the monowhite pixel format descriptor definition.
6239
6240 @section pp
6241
6242 Enable the specified chain of postprocessing subfilters using libpostproc. This
6243 library should be automatically selected with a GPL build (@code{--enable-gpl}).
6244 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
6245 Each subfilter and some options have a short and a long name that can be used
6246 interchangeably, i.e. dr/dering are the same.
6247
6248 The filters accept the following options:
6249
6250 @table @option
6251 @item subfilters
6252 Set postprocessing subfilters string.
6253 @end table
6254
6255 All subfilters share common options to determine their scope:
6256
6257 @table @option
6258 @item a/autoq
6259 Honor the quality commands for this subfilter.
6260
6261 @item c/chrom
6262 Do chrominance filtering, too (default).
6263
6264 @item y/nochrom
6265 Do luminance filtering only (no chrominance).
6266
6267 @item n/noluma
6268 Do chrominance filtering only (no luminance).
6269 @end table
6270
6271 These options can be appended after the subfilter name, separated by a '|'.
6272
6273 Available subfilters are:
6274
6275 @table @option
6276 @item hb/hdeblock[|difference[|flatness]]
6277 Horizontal deblocking filter
6278 @table @option
6279 @item difference
6280 Difference factor where higher values mean more deblocking (default: @code{32}).
6281 @item flatness
6282 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6283 @end table
6284
6285 @item vb/vdeblock[|difference[|flatness]]
6286 Vertical deblocking filter
6287 @table @option
6288 @item difference
6289 Difference factor where higher values mean more deblocking (default: @code{32}).
6290 @item flatness
6291 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6292 @end table
6293
6294 @item ha/hadeblock[|difference[|flatness]]
6295 Accurate horizontal deblocking filter
6296 @table @option
6297 @item difference
6298 Difference factor where higher values mean more deblocking (default: @code{32}).
6299 @item flatness
6300 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6301 @end table
6302
6303 @item va/vadeblock[|difference[|flatness]]
6304 Accurate vertical deblocking filter
6305 @table @option
6306 @item difference
6307 Difference factor where higher values mean more deblocking (default: @code{32}).
6308 @item flatness
6309 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6310 @end table
6311 @end table
6312
6313 The horizontal and vertical deblocking filters share the difference and
6314 flatness values so you cannot set different horizontal and vertical
6315 thresholds.
6316
6317 @table @option
6318 @item h1/x1hdeblock
6319 Experimental horizontal deblocking filter
6320
6321 @item v1/x1vdeblock
6322 Experimental vertical deblocking filter
6323
6324 @item dr/dering
6325 Deringing filter
6326
6327 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
6328 @table @option
6329 @item threshold1
6330 larger -> stronger filtering
6331 @item threshold2
6332 larger -> stronger filtering
6333 @item threshold3
6334 larger -> stronger filtering
6335 @end table
6336
6337 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
6338 @table @option
6339 @item f/fullyrange
6340 Stretch luminance to @code{0-255}.
6341 @end table
6342
6343 @item lb/linblenddeint
6344 Linear blend deinterlacing filter that deinterlaces the given block by
6345 filtering all lines with a @code{(1 2 1)} filter.
6346
6347 @item li/linipoldeint
6348 Linear interpolating deinterlacing filter that deinterlaces the given block by
6349 linearly interpolating every second line.
6350
6351 @item ci/cubicipoldeint
6352 Cubic interpolating deinterlacing filter deinterlaces the given block by
6353 cubically interpolating every second line.
6354
6355 @item md/mediandeint
6356 Median deinterlacing filter that deinterlaces the given block by applying a
6357 median filter to every second line.
6358
6359 @item fd/ffmpegdeint
6360 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
6361 second line with a @code{(-1 4 2 4 -1)} filter.
6362
6363 @item l5/lowpass5
6364 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
6365 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
6366
6367 @item fq/forceQuant[|quantizer]
6368 Overrides the quantizer table from the input with the constant quantizer you
6369 specify.
6370 @table @option
6371 @item quantizer
6372 Quantizer to use
6373 @end table
6374
6375 @item de/default
6376 Default pp filter combination (@code{hb|a,vb|a,dr|a})
6377
6378 @item fa/fast
6379 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
6380
6381 @item ac
6382 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
6383 @end table
6384
6385 @subsection Examples
6386
6387 @itemize
6388 @item
6389 Apply horizontal and vertical deblocking, deringing and automatic
6390 brightness/contrast:
6391 @example
6392 pp=hb/vb/dr/al
6393 @end example
6394
6395 @item
6396 Apply default filters without brightness/contrast correction:
6397 @example
6398 pp=de/-al
6399 @end example
6400
6401 @item
6402 Apply default filters and temporal denoiser:
6403 @example
6404 pp=default/tmpnoise|1|2|3
6405 @end example
6406
6407 @item
6408 Apply deblocking on luminance only, and switch vertical deblocking on or off
6409 automatically depending on available CPU time:
6410 @example
6411 pp=hb|y/vb|a
6412 @end example
6413 @end itemize
6414
6415 @section psnr
6416
6417 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
6418 Ratio) between two input videos.
6419
6420 This filter takes in input two input videos, the first input is
6421 considered the "main" source and is passed unchanged to the
6422 output. The second input is used as a "reference" video for computing
6423 the PSNR.
6424
6425 Both video inputs must have the same resolution and pixel format for
6426 this filter to work correctly. Also it assumes that both inputs
6427 have the same number of frames, which are compared one by one.
6428
6429 The obtained average PSNR is printed through the logging system.
6430
6431 The filter stores the accumulated MSE (mean squared error) of each
6432 frame, and at the end of the processing it is averaged across all frames
6433 equally, and the following formula is applied to obtain the PSNR:
6434
6435 @example
6436 PSNR = 10*log10(MAX^2/MSE)
6437 @end example
6438
6439 Where MAX is the average of the maximum values of each component of the
6440 image.
6441
6442 The description of the accepted parameters follows.
6443
6444 @table @option
6445 @item stats_file, f
6446 If specified the filter will use the named file to save the PSNR of
6447 each individual frame.
6448 @end table
6449
6450 The file printed if @var{stats_file} is selected, contains a sequence of
6451 key/value pairs of the form @var{key}:@var{value} for each compared
6452 couple of frames.
6453
6454 A description of each shown parameter follows:
6455
6456 @table @option
6457 @item n
6458 sequential number of the input frame, starting from 1
6459
6460 @item mse_avg
6461 Mean Square Error pixel-by-pixel average difference of the compared
6462 frames, averaged over all the image components.
6463
6464 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
6465 Mean Square Error pixel-by-pixel average difference of the compared
6466 frames for the component specified by the suffix.
6467
6468 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
6469 Peak Signal to Noise ratio of the compared frames for the component
6470 specified by the suffix.
6471 @end table
6472
6473 For example:
6474 @example
6475 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
6476 [main][ref] psnr="stats_file=stats.log" [out]
6477 @end example
6478
6479 On this example the input file being processed is compared with the
6480 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
6481 is stored in @file{stats.log}.
6482
6483 @section pullup
6484
6485 Pulldown reversal (inverse telecine) filter, capable of handling mixed
6486 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
6487 content.
6488
6489 The pullup filter is designed to take advantage of future context in making
6490 its decisions. This filter is stateless in the sense that it does not lock
6491 onto a pattern to follow, but it instead looks forward to the following
6492 fields in order to identify matches and rebuild progressive frames.
6493
6494 To produce content with an even framerate, insert the fps filter after
6495 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
6496 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
6497
6498 The filter accepts the following options:
6499
6500 @table @option
6501 @item jl
6502 @item jr
6503 @item jt
6504 @item jb
6505 These options set the amount of "junk" to ignore at the left, right, top, and
6506 bottom of the image, respectively. Left and right are in units of 8 pixels,
6507 while top and bottom are in units of 2 lines.
6508 The default is 8 pixels on each side.
6509
6510 @item sb
6511 Set the strict breaks. Setting this option to 1 will reduce the chances of
6512 filter generating an occasional mismatched frame, but it may also cause an
6513 excessive number of frames to be dropped during high motion sequences.
6514 Conversely, setting it to -1 will make filter match fields more easily.
6515 This may help processing of video where there is slight blurring between
6516 the fields, but may also cause there to be interlaced frames in the output.
6517 Default value is @code{0}.
6518
6519 @item mp
6520 Set the metric plane to use. It accepts the following values:
6521 @table @samp
6522 @item l
6523 Use luma plane.
6524
6525 @item u
6526 Use chroma blue plane.
6527
6528 @item v
6529 Use chroma red plane.
6530 @end table
6531
6532 This option may be set to use chroma plane instead of the default luma plane
6533 for doing filter's computations. This may improve accuracy on very clean
6534 source material, but more likely will decrease accuracy, especially if there
6535 is chroma noise (rainbow effect) or any grayscale video.
6536 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
6537 load and make pullup usable in realtime on slow machines.
6538 @end table
6539
6540 For best results (without duplicated frames in the output file) it is
6541 necessary to change the output frame rate. For example, to inverse
6542 telecine NTSC input:
6543 @example
6544 ffmpeg -i input -vf pullup -r 24000/1001 ...
6545 @end example
6546
6547 @section removelogo
6548
6549 Suppress a TV station logo, using an image file to determine which
6550 pixels comprise the logo. It works by filling in the pixels that
6551 comprise the logo with neighboring pixels.
6552
6553 The filter accepts the following options:
6554
6555 @table @option
6556 @item filename, f
6557 Set the filter bitmap file, which can be any image format supported by
6558 libavformat. The width and height of the image file must match those of the
6559 video stream being processed.
6560 @end table
6561
6562 Pixels in the provided bitmap image with a value of zero are not
6563 considered part of the logo, non-zero pixels are considered part of
6564 the logo. If you use white (255) for the logo and black (0) for the
6565 rest, you will be safe. For making the filter bitmap, it is
6566 recommended to take a screen capture of a black frame with the logo
6567 visible, and then using a threshold filter followed by the erode
6568 filter once or twice.
6569
6570 If needed, little splotches can be fixed manually. Remember that if
6571 logo pixels are not covered, the filter quality will be much
6572 reduced. Marking too many pixels as part of the logo does not hurt as
6573 much, but it will increase the amount of blurring needed to cover over
6574 the image and will destroy more information than necessary, and extra
6575 pixels will slow things down on a large logo.
6576
6577 @section rotate
6578
6579 Rotate video by an arbitrary angle expressed in radians.
6580
6581 The filter accepts the following options:
6582
6583 A description of the optional parameters follows.
6584 @table @option
6585 @item angle, a
6586 Set an expression for the angle by which to rotate the input video
6587 clockwise, expressed as a number of radians. A negative value will
6588 result in a counter-clockwise rotation. By default it is set to "0".
6589
6590 This expression is evaluated for each frame.
6591
6592 @item out_w, ow
6593 Set the output width expression, default value is "iw".
6594 This expression is evaluated just once during configuration.
6595
6596 @item out_h, oh
6597 Set the output height expression, default value is "ih".
6598 This expression is evaluated just once during configuration.
6599
6600 @item bilinear
6601 Enable bilinear interpolation if set to 1, a value of 0 disables
6602 it. Default value is 1.
6603
6604 @item fillcolor, c
6605 Set the color used to fill the output area not covered by the rotated
6606 image. For the generalsyntax of this option, check the "Color" section in the
6607 ffmpeg-utils manual. If the special value "none" is selected then no
6608 background is printed (useful for example if the background is never shown).
6609
6610 Default value is "black".
6611 @end table
6612
6613 The expressions for the angle and the output size can contain the
6614 following constants and functions:
6615
6616 @table @option
6617 @item n
6618 sequential number of the input frame, starting from 0. It is always NAN
6619 before the first frame is filtered.
6620
6621 @item t
6622 time in seconds of the input frame, it is set to 0 when the filter is
6623 configured. It is always NAN before the first frame is filtered.
6624
6625 @item hsub
6626 @item vsub
6627 horizontal and vertical chroma subsample values. For example for the
6628 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6629
6630 @item in_w, iw
6631 @item in_h, ih
6632 the input video width and heigth
6633
6634 @item out_w, ow
6635 @item out_h, oh
6636 the output width and heigth, that is the size of the padded area as
6637 specified by the @var{width} and @var{height} expressions
6638
6639 @item rotw(a)
6640 @item roth(a)
6641 the minimal width/height required for completely containing the input
6642 video rotated by @var{a} radians.
6643
6644 These are only available when computing the @option{out_w} and
6645 @option{out_h} expressions.
6646 @end table
6647
6648 @subsection Examples
6649
6650 @itemize
6651 @item
6652 Rotate the input by PI/6 radians clockwise:
6653 @example
6654 rotate=PI/6
6655 @end example
6656
6657 @item
6658 Rotate the input by PI/6 radians counter-clockwise:
6659 @example
6660 rotate=-PI/6
6661 @end example
6662
6663 @item
6664 Apply a constant rotation with period T, starting from an angle of PI/3:
6665 @example
6666 rotate=PI/3+2*PI*t/T
6667 @end example
6668
6669 @item
6670 Make the input video rotation oscillating with a period of T
6671 seconds and an amplitude of A radians:
6672 @example
6673 rotate=A*sin(2*PI/T*t)
6674 @end example
6675
6676 @item
6677 Rotate the video, output size is choosen so that the whole rotating
6678 input video is always completely contained in the output:
6679 @example
6680 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
6681 @end example
6682
6683 @item
6684 Rotate the video, reduce the output size so that no background is ever
6685 shown:
6686 @example
6687 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
6688 @end example
6689 @end itemize
6690
6691 @subsection Commands
6692
6693 The filter supports the following commands:
6694
6695 @table @option
6696 @item a, angle
6697 Set the angle expression.
6698 The command accepts the same syntax of the corresponding option.
6699
6700 If the specified expression is not valid, it is kept at its current
6701 value.
6702 @end table
6703
6704 @section sab
6705
6706 Apply Shape Adaptive Blur.
6707
6708 The filter accepts the following options:
6709
6710 @table @option
6711 @item luma_radius, lr
6712 Set luma blur filter strength, must be a value in range 0.1-4.0, default
6713 value is 1.0. A greater value will result in a more blurred image, and
6714 in slower processing.
6715
6716 @item luma_pre_filter_radius, lpfr
6717 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
6718 value is 1.0.
6719
6720 @item luma_strength, ls
6721 Set luma maximum difference between pixels to still be considered, must
6722 be a value in the 0.1-100.0 range, default value is 1.0.
6723
6724 @item chroma_radius, cr
6725 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
6726 greater value will result in a more blurred image, and in slower
6727 processing.
6728
6729 @item chroma_pre_filter_radius, cpfr
6730 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
6731
6732 @item chroma_strength, cs
6733 Set chroma maximum difference between pixels to still be considered,
6734 must be a value in the 0.1-100.0 range.
6735 @end table
6736
6737 Each chroma option value, if not explicitly specified, is set to the
6738 corresponding luma option value.
6739
6740 @anchor{scale}
6741 @section scale
6742
6743 Scale (resize) the input video, using the libswscale library.
6744
6745 The scale filter forces the output display aspect ratio to be the same
6746 of the input, by changing the output sample aspect ratio.
6747
6748 If the input image format is different from the format requested by
6749 the next filter, the scale filter will convert the input to the
6750 requested format.
6751
6752 @subsection Options
6753 The filter accepts the following options, or any of the options
6754 supported by the libswscale scaler.
6755
6756 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
6757 the complete list of scaler options.
6758
6759 @table @option
6760 @item width, w
6761 @item height, h
6762 Set the output video dimension expression. Default value is the input
6763 dimension.
6764
6765 If the value is 0, the input width is used for the output.
6766
6767 If one of the values is -1, the scale filter will use a value that
6768 maintains the aspect ratio of the input image, calculated from the
6769 other specified dimension. If both of them are -1, the input size is
6770 used
6771
6772 See below for the list of accepted constants for use in the dimension
6773 expression.
6774
6775 @item interl
6776 Set the interlacing mode. It accepts the following values:
6777
6778 @table @samp
6779 @item 1
6780 Force interlaced aware scaling.
6781
6782 @item 0
6783 Do not apply interlaced scaling.
6784
6785 @item -1
6786 Select interlaced aware scaling depending on whether the source frames
6787 are flagged as interlaced or not.
6788 @end table
6789
6790 Default value is @samp{0}.
6791
6792 @item flags
6793 Set libswscale scaling flags. See
6794 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
6795 complete list of values. If not explictly specified the filter applies
6796 the default flags.
6797
6798 @item size, s
6799 Set the video size. For the syntax of this option, check the "Video size"
6800 section in the ffmpeg-utils manual.
6801
6802 @item in_color_matrix
6803 @item out_color_matrix
6804 Set in/output YCbCr color space type.
6805
6806 This allows the autodetected value to be overridden as well as allows forcing
6807 a specific value used for the output and encoder.
6808
6809 If not specified, the color space type depends on the pixel format.
6810
6811 Possible values:
6812
6813 @table @samp
6814 @item auto
6815 Choose automatically.
6816
6817 @item bt709
6818 Format conforming to International Telecommunication Union (ITU)
6819 Recommendation BT.709.
6820
6821 @item fcc
6822 Set color space conforming to the United States Federal Communications
6823 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
6824
6825 @item bt601
6826 Set color space conforming to:
6827
6828 @itemize
6829 @item
6830 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
6831
6832 @item
6833 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
6834
6835 @item
6836 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
6837
6838 @end itemize
6839
6840 @item smpte240m
6841 Set color space conforming to SMPTE ST 240:1999.
6842 @end table
6843
6844 @item in_range
6845 @item out_range
6846 Set in/output YCbCr sample range.
6847
6848 This allows the autodetected value to be overridden as well as allows forcing
6849 a specific value used for the output and encoder. If not specified, the
6850 range depends on the pixel format. Possible values:
6851
6852 @table @samp
6853 @item auto
6854 Choose automatically.
6855
6856 @item jpeg/full/pc
6857 Set full range (0-255 in case of 8-bit luma).
6858
6859 @item mpeg/tv
6860 Set "MPEG" range (16-235 in case of 8-bit luma).
6861 @end table
6862
6863 @item force_original_aspect_ratio
6864 Enable decreasing or increasing output video width or height if necessary to
6865 keep the original aspect ratio. Possible values:
6866
6867 @table @samp
6868 @item disable
6869 Scale the video as specified and disable this feature.
6870
6871 @item decrease
6872 The output video dimensions will automatically be decreased if needed.
6873
6874 @item increase
6875 The output video dimensions will automatically be increased if needed.
6876
6877 @end table
6878
6879 One useful instance of this option is that when you know a specific device's
6880 maximum allowed resolution, you can use this to limit the output video to
6881 that, while retaining the aspect ratio. For example, device A allows
6882 1280x720 playback, and your video is 1920x800. Using this option (set it to
6883 decrease) and specifying 1280x720 to the command line makes the output
6884 1280x533.
6885
6886 Please note that this is a different thing than specifying -1 for @option{w}
6887 or @option{h}, you still need to specify the output resolution for this option
6888 to work.
6889
6890 @end table
6891
6892 The values of the @option{w} and @option{h} options are expressions
6893 containing the following constants:
6894
6895 @table @var
6896 @item in_w
6897 @item in_h
6898 the input width and height
6899
6900 @item iw
6901 @item ih
6902 same as @var{in_w} and @var{in_h}
6903
6904 @item out_w
6905 @item out_h
6906 the output (scaled) width and height
6907
6908 @item ow
6909 @item oh
6910 same as @var{out_w} and @var{out_h}
6911
6912 @item a
6913 same as @var{iw} / @var{ih}
6914
6915 @item sar
6916 input sample aspect ratio
6917
6918 @item dar
6919 input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
6920
6921 @item hsub
6922 @item vsub
6923 horizontal and vertical input chroma subsample values. For example for the
6924 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6925
6926 @item ohsub
6927 @item ovsub
6928 horizontal and vertical output chroma subsample values. For example for the
6929 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6930 @end table
6931
6932 @subsection Examples
6933
6934 @itemize
6935 @item
6936 Scale the input video to a size of 200x100:
6937 @example
6938 scale=w=200:h=100
6939 @end example
6940
6941 This is equivalent to:
6942 @example
6943 scale=200:100
6944 @end example
6945
6946 or:
6947 @example
6948 scale=200x100
6949 @end example
6950
6951 @item
6952 Specify a size abbreviation for the output size:
6953 @example
6954 scale=qcif
6955 @end example
6956
6957 which can also be written as:
6958 @example
6959 scale=size=qcif
6960 @end example
6961
6962 @item
6963 Scale the input to 2x:
6964 @example
6965 scale=w=2*iw:h=2*ih
6966 @end example
6967
6968 @item
6969 The above is the same as:
6970 @example
6971 scale=2*in_w:2*in_h
6972 @end example
6973
6974 @item
6975 Scale the input to 2x with forced interlaced scaling:
6976 @example
6977 scale=2*iw:2*ih:interl=1
6978 @end example
6979
6980 @item
6981 Scale the input to half size:
6982 @example
6983 scale=w=iw/2:h=ih/2
6984 @end example
6985
6986 @item
6987 Increase the width, and set the height to the same size:
6988 @example
6989 scale=3/2*iw:ow
6990 @end example
6991
6992 @item
6993 Seek for Greek harmony:
6994 @example
6995 scale=iw:1/PHI*iw
6996 scale=ih*PHI:ih
6997 @end example
6998
6999 @item
7000 Increase the height, and set the width to 3/2 of the height:
7001 @example
7002 scale=w=3/2*oh:h=3/5*ih
7003 @end example
7004
7005 @item
7006 Increase the size, but make the size a multiple of the chroma
7007 subsample values:
7008 @example
7009 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
7010 @end example
7011
7012 @item
7013 Increase the width to a maximum of 500 pixels, keep the same input
7014 aspect ratio:
7015 @example
7016 scale=w='min(500\, iw*3/2):h=-1'
7017 @end example
7018 @end itemize
7019
7020 @section separatefields
7021
7022 The @code{separatefields} takes a frame-based video input and splits
7023 each frame into its components fields, producing a new half height clip
7024 with twice the frame rate and twice the frame count.
7025
7026 This filter use field-dominance information in frame to decide which
7027 of each pair of fields to place first in the output.
7028 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
7029
7030 @section setdar, setsar
7031
7032 The @code{setdar} filter sets the Display Aspect Ratio for the filter
7033 output video.
7034
7035 This is done by changing the specified Sample (aka Pixel) Aspect
7036 Ratio, according to the following equation:
7037 @example
7038 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
7039 @end example
7040
7041 Keep in mind that the @code{setdar} filter does not modify the pixel
7042 dimensions of the video frame. Also the display aspect ratio set by
7043 this filter may be changed by later filters in the filterchain,
7044 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
7045 applied.
7046
7047 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
7048 the filter output video.
7049
7050 Note that as a consequence of the application of this filter, the
7051 output display aspect ratio will change according to the equation
7052 above.
7053
7054 Keep in mind that the sample aspect ratio set by the @code{setsar}
7055 filter may be changed by later filters in the filterchain, e.g. if
7056 another "setsar" or a "setdar" filter is applied.
7057
7058 The filters accept the following options:
7059
7060 @table @option
7061 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
7062 Set the aspect ratio used by the filter.
7063
7064 The parameter can be a floating point number string, an expression, or
7065 a string of the form @var{num}:@var{den}, where @var{num} and
7066 @var{den} are the numerator and denominator of the aspect ratio. If
7067 the parameter is not specified, it is assumed the value "0".
7068 In case the form "@var{num}:@var{den}" is used, the @code{:} character
7069 should be escaped.
7070
7071 @item max
7072 Set the maximum integer value to use for expressing numerator and
7073 denominator when reducing the expressed aspect ratio to a rational.
7074 Default value is @code{100}.
7075
7076 @end table
7077
7078 The parameter @var{sar} is an expression containing
7079 the following constants:
7080
7081 @table @option
7082 @item E, PI, PHI
7083 the corresponding mathematical approximated values for e
7084 (euler number), pi (greek PI), phi (golden ratio)
7085
7086 @item w, h
7087 the input width and height
7088
7089 @item a
7090 same as @var{w} / @var{h}
7091
7092 @item sar
7093 input sample aspect ratio
7094
7095 @item dar
7096 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
7097
7098 @item hsub, vsub
7099 horizontal and vertical chroma subsample values. For example for the
7100 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7101 @end table
7102
7103 @subsection Examples
7104
7105 @itemize
7106
7107 @item
7108 To change the display aspect ratio to 16:9, specify one of the following:
7109 @example
7110 setdar=dar=1.77777
7111 setdar=dar=16/9
7112 setdar=dar=1.77777
7113 @end example
7114
7115 @item
7116 To change the sample aspect ratio to 10:11, specify:
7117 @example
7118 setsar=sar=10/11
7119 @end example
7120
7121 @item
7122 To set a display aspect ratio of 16:9, and specify a maximum integer value of
7123 1000 in the aspect ratio reduction, use the command:
7124 @example
7125 setdar=ratio=16/9:max=1000
7126 @end example
7127
7128 @end itemize
7129
7130 @anchor{setfield}
7131 @section setfield
7132
7133 Force field for the output video frame.
7134
7135 The @code{setfield} filter marks the interlace type field for the
7136 output frames. It does not change the input frame, but only sets the
7137 corresponding property, which affects how the frame is treated by
7138 following filters (e.g. @code{fieldorder} or @code{yadif}).
7139
7140 The filter accepts the following options:
7141
7142 @table @option
7143
7144 @item mode
7145 Available values are:
7146
7147 @table @samp
7148 @item auto
7149 Keep the same field property.
7150
7151 @item bff
7152 Mark the frame as bottom-field-first.
7153
7154 @item tff
7155 Mark the frame as top-field-first.
7156
7157 @item prog
7158 Mark the frame as progressive.
7159 @end table
7160 @end table
7161
7162 @section showinfo
7163
7164 Show a line containing various information for each input video frame.
7165 The input video is not modified.
7166
7167 The shown line contains a sequence of key/value pairs of the form
7168 @var{key}:@var{value}.
7169
7170 A description of each shown parameter follows:
7171
7172 @table @option
7173 @item n
7174 sequential number of the input frame, starting from 0
7175
7176 @item pts
7177 Presentation TimeStamp of the input frame, expressed as a number of
7178 time base units. The time base unit depends on the filter input pad.
7179
7180 @item pts_time
7181 Presentation TimeStamp of the input frame, expressed as a number of
7182 seconds
7183
7184 @item pos
7185 position of the frame in the input stream, -1 if this information in
7186 unavailable and/or meaningless (for example in case of synthetic video)
7187
7188 @item fmt
7189 pixel format name
7190
7191 @item sar
7192 sample aspect ratio of the input frame, expressed in the form
7193 @var{num}/@var{den}
7194
7195 @item s
7196 size of the input frame. For the syntax of this option, check the "Video size"
7197 section in the ffmpeg-utils manual.
7198
7199 @item i
7200 interlaced mode ("P" for "progressive", "T" for top field first, "B"
7201 for bottom field first)
7202
7203 @item iskey
7204 1 if the frame is a key frame, 0 otherwise
7205
7206 @item type
7207 picture type of the input frame ("I" for an I-frame, "P" for a
7208 P-frame, "B" for a B-frame, "?" for unknown type).
7209 Check also the documentation of the @code{AVPictureType} enum and of
7210 the @code{av_get_picture_type_char} function defined in
7211 @file{libavutil/avutil.h}.
7212
7213 @item checksum
7214 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
7215
7216 @item plane_checksum
7217 Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
7218 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
7219 @end table
7220
7221 @anchor{smartblur}
7222 @section smartblur
7223
7224 Blur the input video without impacting the outlines.
7225
7226 The filter accepts the following options:
7227
7228 @table @option
7229 @item luma_radius, lr
7230 Set the luma radius. The option value must be a float number in
7231 the range [0.1,5.0] that specifies the variance of the gaussian filter
7232 used to blur the image (slower if larger). Default value is 1.0.
7233
7234 @item luma_strength, ls
7235 Set the luma strength. The option value must be a float number
7236 in the range [-1.0,1.0] that configures the blurring. A value included
7237 in [0.0,1.0] will blur the image whereas a value included in
7238 [-1.0,0.0] will sharpen the image. Default value is 1.0.
7239
7240 @item luma_threshold, lt
7241 Set the luma threshold used as a coefficient to determine
7242 whether a pixel should be blurred or not. The option value must be an
7243 integer in the range [-30,30]. A value of 0 will filter all the image,
7244 a value included in [0,30] will filter flat areas and a value included
7245 in [-30,0] will filter edges. Default value is 0.
7246
7247 @item chroma_radius, cr
7248 Set the chroma radius. The option value must be a float number in
7249 the range [0.1,5.0] that specifies the variance of the gaussian filter
7250 used to blur the image (slower if larger). Default value is 1.0.
7251
7252 @item chroma_strength, cs
7253 Set the chroma strength. The option value must be a float number
7254 in the range [-1.0,1.0] that configures the blurring. A value included
7255 in [0.0,1.0] will blur the image whereas a value included in
7256 [-1.0,0.0] will sharpen the image. Default value is 1.0.
7257
7258 @item chroma_threshold, ct
7259 Set the chroma threshold used as a coefficient to determine
7260 whether a pixel should be blurred or not. The option value must be an
7261 integer in the range [-30,30]. A value of 0 will filter all the image,
7262 a value included in [0,30] will filter flat areas and a value included
7263 in [-30,0] will filter edges. Default value is 0.
7264 @end table
7265
7266 If a chroma option is not explicitly set, the corresponding luma value
7267 is set.
7268
7269 @section stereo3d
7270
7271 Convert between different stereoscopic image formats.
7272
7273 The filters accept the following options:
7274
7275 @table @option
7276 @item in
7277 Set stereoscopic image format of input.
7278
7279 Available values for input image formats are:
7280 @table @samp
7281 @item sbsl
7282 side by side parallel (left eye left, right eye right)
7283
7284 @item sbsr
7285 side by side crosseye (right eye left, left eye right)
7286
7287 @item sbs2l
7288 side by side parallel with half width resolution
7289 (left eye left, right eye right)
7290
7291 @item sbs2r
7292 side by side crosseye with half width resolution
7293 (right eye left, left eye right)
7294
7295 @item abl
7296 above-below (left eye above, right eye below)
7297
7298 @item abr
7299 above-below (right eye above, left eye below)
7300
7301 @item ab2l
7302 above-below with half height resolution
7303 (left eye above, right eye below)
7304
7305 @item ab2r
7306 above-below with half height resolution
7307 (right eye above, left eye below)
7308
7309 @item al
7310 alternating frames (left eye first, right eye second)
7311
7312 @item ar
7313 alternating frames (right eye first, left eye second)
7314
7315 Default value is @samp{sbsl}.
7316 @end table
7317
7318 @item out
7319 Set stereoscopic image format of output.
7320
7321 Available values for output image formats are all the input formats as well as:
7322 @table @samp
7323 @item arbg
7324 anaglyph red/blue gray
7325 (red filter on left eye, blue filter on right eye)
7326
7327 @item argg
7328 anaglyph red/green gray
7329 (red filter on left eye, green filter on right eye)
7330
7331 @item arcg
7332 anaglyph red/cyan gray
7333 (red filter on left eye, cyan filter on right eye)
7334
7335 @item arch
7336 anaglyph red/cyan half colored
7337 (red filter on left eye, cyan filter on right eye)
7338
7339 @item arcc
7340 anaglyph red/cyan color
7341 (red filter on left eye, cyan filter on right eye)
7342
7343 @item arcd
7344 anaglyph red/cyan color optimized with the least squares projection of dubois
7345 (red filter on left eye, cyan filter on right eye)
7346
7347 @item agmg
7348 anaglyph green/magenta gray
7349 (green filter on left eye, magenta filter on right eye)
7350
7351 @item agmh
7352 anaglyph green/magenta half colored
7353 (green filter on left eye, magenta filter on right eye)
7354
7355 @item agmc
7356 anaglyph green/magenta colored
7357 (green filter on left eye, magenta filter on right eye)
7358
7359 @item agmd
7360 anaglyph green/magenta color optimized with the least squares projection of dubois
7361 (green filter on left eye, magenta filter on right eye)
7362
7363 @item aybg
7364 anaglyph yellow/blue gray
7365 (yellow filter on left eye, blue filter on right eye)
7366
7367 @item aybh
7368 anaglyph yellow/blue half colored
7369 (yellow filter on left eye, blue filter on right eye)
7370
7371 @item aybc
7372 anaglyph yellow/blue colored
7373 (yellow filter on left eye, blue filter on right eye)
7374
7375 @item aybd
7376 anaglyph yellow/blue color optimized with the least squares projection of dubois
7377 (yellow filter on left eye, blue filter on right eye)
7378
7379 @item irl
7380 interleaved rows (left eye has top row, right eye starts on next row)
7381
7382 @item irr
7383 interleaved rows (right eye has top row, left eye starts on next row)
7384
7385 @item ml
7386 mono output (left eye only)
7387
7388 @item mr
7389 mono output (right eye only)
7390 @end table
7391
7392 Default value is @samp{arcd}.
7393 @end table
7394
7395 @subsection Examples
7396
7397 @itemize
7398 @item
7399 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
7400 @example
7401 stereo3d=sbsl:aybd
7402 @end example
7403
7404 @item
7405 Convert input video from above bellow (left eye above, right eye below) to side by side crosseye.
7406 @example
7407 stereo3d=abl:sbsr
7408 @end example
7409 @end itemize
7410
7411 @section spp
7412
7413 Apply a simple postprocessing filter that compresses and decompresses the image
7414 at several (or - in the case of @option{quality} level @code{6} - all) shifts
7415 and average the results.
7416
7417 The filter accepts the following options:
7418
7419 @table @option
7420 @item quality
7421 Set quality. This option defines the number of levels for averaging. It accepts
7422 an integer in the range 0-6. If set to @code{0}, the filter will have no
7423 effect. A value of @code{6} means the higher quality. For each increment of
7424 that value the speed drops by a factor of approximately 2.  Default value is
7425 @code{3}.
7426
7427 @item qp
7428 Force a constant quantization parameter. If not set, the filter will use the QP
7429 from the video stream (if available).
7430
7431 @item mode
7432 Set thresholding mode. Available modes are:
7433
7434 @table @samp
7435 @item hard
7436 Set hard thresholding (default).
7437 @item soft
7438 Set soft thresholding (better de-ringing effect, but likely blurrier).
7439 @end table
7440
7441 @item use_bframe_qp
7442 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
7443 option may cause flicker since the B-Frames have often larger QP. Default is
7444 @code{0} (not enabled).
7445 @end table
7446
7447 @anchor{subtitles}
7448 @section subtitles
7449
7450 Draw subtitles on top of input video using the libass library.
7451
7452 To enable compilation of this filter you need to configure FFmpeg with
7453 @code{--enable-libass}. This filter also requires a build with libavcodec and
7454 libavformat to convert the passed subtitles file to ASS (Advanced Substation
7455 Alpha) subtitles format.
7456
7457 The filter accepts the following options:
7458
7459 @table @option
7460 @item filename, f
7461 Set the filename of the subtitle file to read. It must be specified.
7462
7463 @item original_size
7464 Specify the size of the original video, the video for which the ASS file
7465 was composed. For the syntax of this option, check the "Video size" section in
7466 the ffmpeg-utils manual. Due to a misdesign in ASS aspect ratio arithmetic,
7467 this is necessary to correctly scale the fonts if the aspect ratio has been
7468 changed.
7469
7470 @item charenc
7471 Set subtitles input character encoding. @code{subtitles} filter only. Only
7472 useful if not UTF-8.
7473 @end table
7474
7475 If the first key is not specified, it is assumed that the first value
7476 specifies the @option{filename}.
7477
7478 For example, to render the file @file{sub.srt} on top of the input
7479 video, use the command:
7480 @example
7481 subtitles=sub.srt
7482 @end example
7483
7484 which is equivalent to:
7485 @example
7486 subtitles=filename=sub.srt
7487 @end example
7488
7489 @section super2xsai
7490
7491 Scale the input by 2x and smooth using the Super2xSaI (Scale and
7492 Interpolate) pixel art scaling algorithm.
7493
7494 Useful for enlarging pixel art images without reducing sharpness.
7495
7496 @section swapuv
7497 Swap U & V plane.
7498
7499 @section telecine
7500
7501 Apply telecine process to the video.
7502
7503 This filter accepts the following options:
7504
7505 @table @option
7506 @item first_field
7507 @table @samp
7508 @item top, t
7509 top field first
7510 @item bottom, b
7511 bottom field first
7512 The default value is @code{top}.
7513 @end table
7514
7515 @item pattern
7516 A string of numbers representing the pulldown pattern you wish to apply.
7517 The default value is @code{23}.
7518 @end table
7519
7520 @example
7521 Some typical patterns:
7522
7523 NTSC output (30i):
7524 27.5p: 32222
7525 24p: 23 (classic)
7526 24p: 2332 (preferred)
7527 20p: 33
7528 18p: 334
7529 16p: 3444
7530
7531 PAL output (25i):
7532 27.5p: 12222
7533 24p: 222222222223 ("Euro pulldown")
7534 16.67p: 33
7535 16p: 33333334
7536 @end example
7537
7538 @section thumbnail
7539 Select the most representative frame in a given sequence of consecutive frames.
7540
7541 The filter accepts the following options:
7542
7543 @table @option
7544 @item n
7545 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
7546 will pick one of them, and then handle the next batch of @var{n} frames until
7547 the end. Default is @code{100}.
7548 @end table
7549
7550 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
7551 value will result in a higher memory usage, so a high value is not recommended.
7552
7553 @subsection Examples
7554
7555 @itemize
7556 @item
7557 Extract one picture each 50 frames:
7558 @example
7559 thumbnail=50
7560 @end example
7561
7562 @item
7563 Complete example of a thumbnail creation with @command{ffmpeg}:
7564 @example
7565 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
7566 @end example
7567 @end itemize
7568
7569 @section tile
7570
7571 Tile several successive frames together.
7572
7573 The filter accepts the following options:
7574
7575 @table @option
7576
7577 @item layout
7578 Set the grid size (i.e. the number of lines and columns). For the syntax of
7579 this option, check the "Video size" section in the ffmpeg-utils manual.
7580
7581 @item nb_frames
7582 Set the maximum number of frames to render in the given area. It must be less
7583 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
7584 the area will be used.
7585
7586 @item margin
7587 Set the outer border margin in pixels.
7588
7589 @item padding
7590 Set the inner border thickness (i.e. the number of pixels between frames). For
7591 more advanced padding options (such as having different values for the edges),
7592 refer to the pad video filter.
7593
7594 @item color
7595 Specify the color of the unused areaFor the syntax of this option, check the
7596 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
7597 is "black".
7598 @end table
7599
7600 @subsection Examples
7601
7602 @itemize
7603 @item
7604 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
7605 @example
7606 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
7607 @end example
7608 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
7609 duplicating each output frame to accomodate the originally detected frame
7610 rate.
7611
7612 @item
7613 Display @code{5} pictures in an area of @code{3x2} frames,
7614 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
7615 mixed flat and named options:
7616 @example
7617 tile=3x2:nb_frames=5:padding=7:margin=2
7618 @end example
7619 @end itemize
7620
7621 @section tinterlace
7622
7623 Perform various types of temporal field interlacing.
7624
7625 Frames are counted starting from 1, so the first input frame is
7626 considered odd.
7627
7628 The filter accepts the following options:
7629
7630 @table @option
7631
7632 @item mode
7633 Specify the mode of the interlacing. This option can also be specified
7634 as a value alone. See below for a list of values for this option.
7635
7636 Available values are:
7637
7638 @table @samp
7639 @item merge, 0
7640 Move odd frames into the upper field, even into the lower field,
7641 generating a double height frame at half frame rate.
7642
7643 @item drop_odd, 1
7644 Only output even frames, odd frames are dropped, generating a frame with
7645 unchanged height at half frame rate.
7646
7647 @item drop_even, 2
7648 Only output odd frames, even frames are dropped, generating a frame with
7649 unchanged height at half frame rate.
7650
7651 @item pad, 3
7652 Expand each frame to full height, but pad alternate lines with black,
7653 generating a frame with double height at the same input frame rate.
7654
7655 @item interleave_top, 4
7656 Interleave the upper field from odd frames with the lower field from
7657 even frames, generating a frame with unchanged height at half frame rate.
7658
7659 @item interleave_bottom, 5
7660 Interleave the lower field from odd frames with the upper field from
7661 even frames, generating a frame with unchanged height at half frame rate.
7662
7663 @item interlacex2, 6
7664 Double frame rate with unchanged height. Frames are inserted each
7665 containing the second temporal field from the previous input frame and
7666 the first temporal field from the next input frame. This mode relies on
7667 the top_field_first flag. Useful for interlaced video displays with no
7668 field synchronisation.
7669 @end table
7670
7671 Numeric values are deprecated but are accepted for backward
7672 compatibility reasons.
7673
7674 Default mode is @code{merge}.
7675
7676 @item flags
7677 Specify flags influencing the filter process.
7678
7679 Available value for @var{flags} is:
7680
7681 @table @option
7682 @item low_pass_filter, vlfp
7683 Enable vertical low-pass filtering in the filter.
7684 Vertical low-pass filtering is required when creating an interlaced
7685 destination from a progressive source which contains high-frequency
7686 vertical detail. Filtering will reduce interlace 'twitter' and Moire
7687 patterning.
7688
7689 Vertical low-pass filtering can only be enabled for @option{mode}
7690 @var{interleave_top} and @var{interleave_bottom}.
7691
7692 @end table
7693 @end table
7694
7695 @section transpose
7696
7697 Transpose rows with columns in the input video and optionally flip it.
7698
7699 This filter accepts the following options:
7700
7701 @table @option
7702
7703 @item dir
7704 Specify the transposition direction.
7705
7706 Can assume the following values:
7707 @table @samp
7708 @item 0, 4, cclock_flip
7709 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
7710 @example
7711 L.R     L.l
7712 . . ->  . .
7713 l.r     R.r
7714 @end example
7715
7716 @item 1, 5, clock
7717 Rotate by 90 degrees clockwise, that is:
7718 @example
7719 L.R     l.L
7720 . . ->  . .
7721 l.r     r.R
7722 @end example
7723
7724 @item 2, 6, cclock
7725 Rotate by 90 degrees counterclockwise, that is:
7726 @example
7727 L.R     R.r
7728 . . ->  . .
7729 l.r     L.l
7730 @end example
7731
7732 @item 3, 7, clock_flip
7733 Rotate by 90 degrees clockwise and vertically flip, that is:
7734 @example
7735 L.R     r.R
7736 . . ->  . .
7737 l.r     l.L
7738 @end example
7739 @end table
7740
7741 For values between 4-7, the transposition is only done if the input
7742 video geometry is portrait and not landscape. These values are
7743 deprecated, the @code{passthrough} option should be used instead.
7744
7745 Numerical values are deprecated, and should be dropped in favor of
7746 symbolic constants.
7747
7748 @item passthrough
7749 Do not apply the transposition if the input geometry matches the one
7750 specified by the specified value. It accepts the following values:
7751 @table @samp
7752 @item none
7753 Always apply transposition.
7754 @item portrait
7755 Preserve portrait geometry (when @var{height} >= @var{width}).
7756 @item landscape
7757 Preserve landscape geometry (when @var{width} >= @var{height}).
7758 @end table
7759
7760 Default value is @code{none}.
7761 @end table
7762
7763 For example to rotate by 90 degrees clockwise and preserve portrait
7764 layout:
7765 @example
7766 transpose=dir=1:passthrough=portrait
7767 @end example
7768
7769 The command above can also be specified as:
7770 @example
7771 transpose=1:portrait
7772 @end example
7773
7774 @section trim
7775 Trim the input so that the output contains one continuous subpart of the input.
7776
7777 This filter accepts the following options:
7778 @table @option
7779 @item start
7780 Specify time of the start of the kept section, i.e. the frame with the
7781 timestamp @var{start} will be the first frame in the output.
7782
7783 @item end
7784 Specify time of the first frame that will be dropped, i.e. the frame
7785 immediately preceding the one with the timestamp @var{end} will be the last
7786 frame in the output.
7787
7788 @item start_pts
7789 Same as @var{start}, except this option sets the start timestamp in timebase
7790 units instead of seconds.
7791
7792 @item end_pts
7793 Same as @var{end}, except this option sets the end timestamp in timebase units
7794 instead of seconds.
7795
7796 @item duration
7797 Specify maximum duration of the output.
7798
7799 @item start_frame
7800 Number of the first frame that should be passed to output.
7801
7802 @item end_frame
7803 Number of the first frame that should be dropped.
7804 @end table
7805
7806 @option{start}, @option{end}, @option{duration} are expressed as time
7807 duration specifications, check the "Time duration" section in the
7808 ffmpeg-utils manual.
7809
7810 Note that the first two sets of the start/end options and the @option{duration}
7811 option look at the frame timestamp, while the _frame variants simply count the
7812 frames that pass through the filter. Also note that this filter does not modify
7813 the timestamps. If you wish that the output timestamps start at zero, insert a
7814 setpts filter after the trim filter.
7815
7816 If multiple start or end options are set, this filter tries to be greedy and
7817 keep all the frames that match at least one of the specified constraints. To keep
7818 only the part that matches all the constraints at once, chain multiple trim
7819 filters.
7820
7821 The defaults are such that all the input is kept. So it is possible to set e.g.
7822 just the end values to keep everything before the specified time.
7823
7824 Examples:
7825 @itemize
7826 @item
7827 drop everything except the second minute of input
7828 @example
7829 ffmpeg -i INPUT -vf trim=60:120
7830 @end example
7831
7832 @item
7833 keep only the first second
7834 @example
7835 ffmpeg -i INPUT -vf trim=duration=1
7836 @end example
7837
7838 @end itemize
7839
7840
7841 @section unsharp
7842
7843 Sharpen or blur the input video.
7844
7845 It accepts the following parameters:
7846
7847 @table @option
7848 @item luma_msize_x, lx
7849 Set the luma matrix horizontal size. It must be an odd integer between
7850 3 and 63, default value is 5.
7851
7852 @item luma_msize_y, ly
7853 Set the luma matrix vertical size. It must be an odd integer between 3
7854 and 63, default value is 5.
7855
7856 @item luma_amount, la
7857 Set the luma effect strength. It can be a float number, reasonable
7858 values lay between -1.5 and 1.5.
7859
7860 Negative values will blur the input video, while positive values will
7861 sharpen it, a value of zero will disable the effect.
7862
7863 Default value is 1.0.
7864
7865 @item chroma_msize_x, cx
7866 Set the chroma matrix horizontal size. It must be an odd integer
7867 between 3 and 63, default value is 5.
7868
7869 @item chroma_msize_y, cy
7870 Set the chroma matrix vertical size. It must be an odd integer
7871 between 3 and 63, default value is 5.
7872
7873 @item chroma_amount, ca
7874 Set the chroma effect strength. It can be a float number, reasonable
7875 values lay between -1.5 and 1.5.
7876
7877 Negative values will blur the input video, while positive values will
7878 sharpen it, a value of zero will disable the effect.
7879
7880 Default value is 0.0.
7881
7882 @item opencl
7883 If set to 1, specify using OpenCL capabilities, only available if
7884 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
7885
7886 @end table
7887
7888 All parameters are optional and default to the equivalent of the
7889 string '5:5:1.0:5:5:0.0'.
7890
7891 @subsection Examples
7892
7893 @itemize
7894 @item
7895 Apply strong luma sharpen effect:
7896 @example
7897 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
7898 @end example
7899
7900 @item
7901 Apply strong blur of both luma and chroma parameters:
7902 @example
7903 unsharp=7:7:-2:7:7:-2
7904 @end example
7905 @end itemize
7906
7907 @anchor{vidstabdetect}
7908 @section vidstabdetect
7909
7910 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
7911 @ref{vidstabtransform} for pass 2.
7912
7913 This filter generates a file with relative translation and rotation
7914 transform information about subsequent frames, which is then used by
7915 the @ref{vidstabtransform} filter.
7916
7917 To enable compilation of this filter you need to configure FFmpeg with
7918 @code{--enable-libvidstab}.
7919
7920 This filter accepts the following options:
7921
7922 @table @option
7923 @item result
7924 Set the path to the file used to write the transforms information.
7925 Default value is @file{transforms.trf}.
7926
7927 @item shakiness
7928 Set how shaky the video is and how quick the camera is. It accepts an
7929 integer in the range 1-10, a value of 1 means little shakiness, a
7930 value of 10 means strong shakiness. Default value is 5.
7931
7932 @item accuracy
7933 Set the accuracy of the detection process. It must be a value in the
7934 range 1-15. A value of 1 means low accuracy, a value of 15 means high
7935 accuracy. Default value is 9.
7936
7937 @item stepsize
7938 Set stepsize of the search process. The region around minimum is
7939 scanned with 1 pixel resolution. Default value is 6.
7940
7941 @item mincontrast
7942 Set minimum contrast. Below this value a local measurement field is
7943 discarded. Must be a floating point value in the range 0-1. Default
7944 value is 0.3.
7945
7946 @item tripod
7947 Set reference frame number for tripod mode.
7948
7949 If enabled, the motion of the frames is compared to a reference frame
7950 in the filtered stream, identified by the specified number. The idea
7951 is to compensate all movements in a more-or-less static scene and keep
7952 the camera view absolutely still.
7953
7954 If set to 0, it is disabled. The frames are counted starting from 1.
7955
7956 @item show
7957 Show fields and transforms in the resulting frames. It accepts an
7958 integer in the range 0-2. Default value is 0, which disables any
7959 visualization.
7960 @end table
7961
7962 @subsection Examples
7963
7964 @itemize
7965 @item
7966 Use default values:
7967 @example
7968 vidstabdetect
7969 @end example
7970
7971 @item
7972 Analyze strongly shaky movie and put the results in file
7973 @file{mytransforms.trf}:
7974 @example
7975 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
7976 @end example
7977
7978 @item
7979 Visualize the result of internal transformations in the resulting
7980 video:
7981 @example
7982 vidstabdetect=show=1
7983 @end example
7984
7985 @item
7986 Analyze a video with medium shakiness using @command{ffmpeg}:
7987 @example
7988 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
7989 @end example
7990 @end itemize
7991
7992 @anchor{vidstabtransform}
7993 @section vidstabtransform
7994
7995 Video stabilization/deshaking: pass 2 of 2,
7996 see @ref{vidstabdetect} for pass 1.
7997
7998 Read a file with transform information for each frame and
7999 apply/compensate them. Together with the @ref{vidstabdetect}
8000 filter this can be used to deshake videos. See also
8001 @url{http://public.hronopik.de/vid.stab}. It is important to also use
8002 the unsharp filter, see below.
8003
8004 To enable compilation of this filter you need to configure FFmpeg with
8005 @code{--enable-libvidstab}.
8006
8007 This filter accepts the following options:
8008
8009 @table @option
8010
8011 @item input
8012 path to the file used to read the transforms (default: @file{transforms.trf})
8013
8014 @item smoothing
8015 number of frames (value*2 + 1) used for lowpass filtering the camera movements
8016 (default: 10). For example a number of 10 means that 21 frames are used
8017 (10 in the past and 10 in the future) to smoothen the motion in the
8018 video. A larger values leads to a smoother video, but limits the
8019 acceleration of the camera (pan/tilt movements).
8020
8021 @item maxshift
8022 maximal number of pixels to translate frames (default: -1 no limit)
8023
8024 @item maxangle
8025 maximal angle in radians (degree*PI/180) to rotate frames (default: -1
8026 no limit)
8027
8028 @item crop
8029 How to deal with borders that may be visible due to movement
8030 compensation. Available values are:
8031
8032 @table @samp
8033 @item keep
8034 keep image information from previous frame (default)
8035 @item black
8036 fill the border black
8037 @end table
8038
8039 @item invert
8040 @table @samp
8041 @item 0
8042 keep transforms normal (default)
8043 @item 1
8044 invert transforms
8045 @end table
8046
8047 @item relative
8048 consider transforms as
8049 @table @samp
8050 @item 0
8051 absolute
8052 @item 1
8053 relative to previous frame (default)
8054 @end table
8055
8056 @item zoom
8057 percentage to zoom (default: 0)
8058 @table @samp
8059 @item >0
8060 zoom in
8061 @item <0
8062 zoom out
8063 @end table
8064
8065 @item optzoom
8066 set optimal zooming to avoid borders
8067 @table @samp
8068 @item 0
8069 disabled
8070 @item 1
8071 optimal static zoom value is determined (only very strong movements will lead to visible borders) (default)
8072 @item 2
8073 optimal adaptive zoom value is determined (no borders will be visible)
8074 @end table
8075 Note that the value given at zoom is added to the one calculated
8076 here.
8077
8078 @item interpol
8079 type of interpolation
8080
8081 Available values are:
8082 @table @samp
8083 @item no
8084 no interpolation
8085 @item linear
8086 linear only horizontal
8087 @item bilinear
8088 linear in both directions (default)
8089 @item bicubic
8090 cubic in both directions (slow)
8091 @end table
8092
8093 @item tripod
8094 virtual tripod mode means that the video is stabilized such that the
8095 camera stays stationary. Use also @code{tripod} option of
8096 @ref{vidstabdetect}.
8097 @table @samp
8098 @item 0
8099 off (default)
8100 @item 1
8101 virtual tripod mode: equivalent to @code{relative=0:smoothing=0}
8102 @end table
8103
8104 @end table
8105
8106 @subsection Examples
8107
8108 @itemize
8109 @item
8110 typical call with default default values:
8111  (note the unsharp filter which is always recommended)
8112 @example
8113 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
8114 @end example
8115
8116 @item
8117 zoom in a bit more and load transform data from a given file
8118 @example
8119 vidstabtransform=zoom=5:input="mytransforms.trf"
8120 @end example
8121
8122 @item
8123 smoothen the video even more
8124 @example
8125 vidstabtransform=smoothing=30
8126 @end example
8127
8128 @end itemize
8129
8130 @section vflip
8131
8132 Flip the input video vertically.
8133
8134 For example, to vertically flip a video with @command{ffmpeg}:
8135 @example
8136 ffmpeg -i in.avi -vf "vflip" out.avi
8137 @end example
8138
8139 @section vignette
8140
8141 Make or reverse a natural vignetting effect.
8142
8143 The filter accepts the following options:
8144
8145 @table @option
8146 @item angle, a
8147 Set lens angle expression as a number of radians.
8148
8149 The value is clipped in the @code{[0,PI/2]} range.
8150
8151 Default value: @code{"PI/5"}
8152
8153 @item x0
8154 @item y0
8155 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
8156 by default.
8157
8158 @item mode
8159 Set forward/backward mode.
8160
8161 Available modes are:
8162 @table @samp
8163 @item forward
8164 The larger the distance from the central point, the darker the image becomes.
8165
8166 @item backward
8167 The larger the distance from the central point, the brighter the image becomes.
8168 This can be used to reverse a vignette effect, though there is no automatic
8169 detection to extract the lens @option{angle} and other settings (yet). It can
8170 also be used to create a burning effect.
8171 @end table
8172
8173 Default value is @samp{forward}.
8174
8175 @item eval
8176 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
8177
8178 It accepts the following values:
8179 @table @samp
8180 @item init
8181 Evaluate expressions only once during the filter initialization.
8182
8183 @item frame
8184 Evaluate expressions for each incoming frame. This is way slower than the
8185 @samp{init} mode since it requires all the scalers to be re-computed, but it
8186 allows advanced dynamic expressions.
8187 @end table
8188
8189 Default value is @samp{init}.
8190
8191 @item dither
8192 Set dithering to reduce the circular banding effects. Default is @code{1}
8193 (enabled).
8194
8195 @item aspect
8196 Set vignette aspect. This setting allows to adjust the shape of the vignette.
8197 Setting this value to the SAR of the input will make a rectangular vignetting
8198 following the dimensions of the video.
8199
8200 Default is @code{1/1}.
8201 @end table
8202
8203 @subsection Expressions
8204
8205 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
8206 following parameters.
8207
8208 @table @option
8209 @item w
8210 @item h
8211 input width and height
8212
8213 @item n
8214 the number of input frame, starting from 0
8215
8216 @item pts
8217 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
8218 @var{TB} units, NAN if undefined
8219
8220 @item r
8221 frame rate of the input video, NAN if the input frame rate is unknown
8222
8223 @item t
8224 the PTS (Presentation TimeStamp) of the filtered video frame,
8225 expressed in seconds, NAN if undefined
8226
8227 @item tb
8228 time base of the input video
8229 @end table
8230
8231
8232 @subsection Examples
8233
8234 @itemize
8235 @item
8236 Apply simple strong vignetting effect:
8237 @example
8238 vignette=PI/4
8239 @end example
8240
8241 @item
8242 Make a flickering vignetting:
8243 @example
8244 vignette='PI/4+random(1)*PI/50':eval=frame
8245 @end example
8246
8247 @end itemize
8248
8249 @section w3fdif
8250
8251 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
8252 Deinterlacing Filter").
8253
8254 Based on the process described by Martin Weston for BBC R&D, and
8255 implemented based on the de-interlace algorithm written by Jim
8256 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
8257 uses filter coefficients calculated by BBC R&D.
8258
8259 There are two sets of filter coefficients, so called "simple":
8260 and "complex". Which set of filter coefficients is used can
8261 be set by passing an optional parameter:
8262
8263 @table @option
8264 @item filter
8265 Set the interlacing filter coefficients. Accepts one of the following values:
8266
8267 @table @samp
8268 @item simple
8269 Simple filter coefficient set.
8270 @item complex
8271 More-complex filter coefficient set.
8272 @end table
8273 Default value is @samp{complex}.
8274
8275 @item deint
8276 Specify which frames to deinterlace. Accept one of the following values:
8277
8278 @table @samp
8279 @item all
8280 Deinterlace all frames,
8281 @item interlaced
8282 Only deinterlace frames marked as interlaced.
8283 @end table
8284
8285 Default value is @samp{all}.
8286 @end table
8287
8288 @anchor{yadif}
8289 @section yadif
8290
8291 Deinterlace the input video ("yadif" means "yet another deinterlacing
8292 filter").
8293
8294 This filter accepts the following options:
8295
8296
8297 @table @option
8298
8299 @item mode
8300 The interlacing mode to adopt, accepts one of the following values:
8301
8302 @table @option
8303 @item 0, send_frame
8304 output 1 frame for each frame
8305 @item 1, send_field
8306 output 1 frame for each field
8307 @item 2, send_frame_nospatial
8308 like @code{send_frame} but skip spatial interlacing check
8309 @item 3, send_field_nospatial
8310 like @code{send_field} but skip spatial interlacing check
8311 @end table
8312
8313 Default value is @code{send_frame}.
8314
8315 @item parity
8316 The picture field parity assumed for the input interlaced video, accepts one of
8317 the following values:
8318
8319 @table @option
8320 @item 0, tff
8321 assume top field first
8322 @item 1, bff
8323 assume bottom field first
8324 @item -1, auto
8325 enable automatic detection
8326 @end table
8327
8328 Default value is @code{auto}.
8329 If interlacing is unknown or decoder does not export this information,
8330 top field first will be assumed.
8331
8332 @item deint
8333 Specify which frames to deinterlace. Accept one of the following
8334 values:
8335
8336 @table @option
8337 @item 0, all
8338 deinterlace all frames
8339 @item 1, interlaced
8340 only deinterlace frames marked as interlaced
8341 @end table
8342
8343 Default value is @code{all}.
8344 @end table
8345
8346 @c man end VIDEO FILTERS
8347
8348 @chapter Video Sources
8349 @c man begin VIDEO SOURCES
8350
8351 Below is a description of the currently available video sources.
8352
8353 @section buffer
8354
8355 Buffer video frames, and make them available to the filter chain.
8356
8357 This source is mainly intended for a programmatic use, in particular
8358 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
8359
8360 This source accepts the following options:
8361
8362 @table @option
8363
8364 @item video_size
8365 Specify the size (width and height) of the buffered video frames. For the
8366 syntax of this option, check the "Video size" section in the ffmpeg-utils
8367 manual.
8368
8369 @item width
8370 Input video width.
8371
8372 @item height
8373 Input video height.
8374
8375 @item pix_fmt
8376 A string representing the pixel format of the buffered video frames.
8377 It may be a number corresponding to a pixel format, or a pixel format
8378 name.
8379
8380 @item time_base
8381 Specify the timebase assumed by the timestamps of the buffered frames.
8382
8383 @item frame_rate
8384 Specify the frame rate expected for the video stream.
8385
8386 @item pixel_aspect, sar
8387 Specify the sample aspect ratio assumed by the video frames.
8388
8389 @item sws_param
8390 Specify the optional parameters to be used for the scale filter which
8391 is automatically inserted when an input change is detected in the
8392 input size or format.
8393 @end table
8394
8395 For example:
8396 @example
8397 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
8398 @end example
8399
8400 will instruct the source to accept video frames with size 320x240 and
8401 with format "yuv410p", assuming 1/24 as the timestamps timebase and
8402 square pixels (1:1 sample aspect ratio).
8403 Since the pixel format with name "yuv410p" corresponds to the number 6
8404 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
8405 this example corresponds to:
8406 @example
8407 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
8408 @end example
8409
8410 Alternatively, the options can be specified as a flat string, but this
8411 syntax is deprecated:
8412
8413 @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}]
8414
8415 @section cellauto
8416
8417 Create a pattern generated by an elementary cellular automaton.
8418
8419 The initial state of the cellular automaton can be defined through the
8420 @option{filename}, and @option{pattern} options. If such options are
8421 not specified an initial state is created randomly.
8422
8423 At each new frame a new row in the video is filled with the result of
8424 the cellular automaton next generation. The behavior when the whole
8425 frame is filled is defined by the @option{scroll} option.
8426
8427 This source accepts the following options:
8428
8429 @table @option
8430 @item filename, f
8431 Read the initial cellular automaton state, i.e. the starting row, from
8432 the specified file.
8433 In the file, each non-whitespace character is considered an alive
8434 cell, a newline will terminate the row, and further characters in the
8435 file will be ignored.
8436
8437 @item pattern, p
8438 Read the initial cellular automaton state, i.e. the starting row, from
8439 the specified string.
8440
8441 Each non-whitespace character in the string is considered an alive
8442 cell, a newline will terminate the row, and further characters in the
8443 string will be ignored.
8444
8445 @item rate, r
8446 Set the video rate, that is the number of frames generated per second.
8447 Default is 25.
8448
8449 @item random_fill_ratio, ratio
8450 Set the random fill ratio for the initial cellular automaton row. It
8451 is a floating point number value ranging from 0 to 1, defaults to
8452 1/PHI.
8453
8454 This option is ignored when a file or a pattern is specified.
8455
8456 @item random_seed, seed
8457 Set the seed for filling randomly the initial row, must be an integer
8458 included between 0 and UINT32_MAX. If not specified, or if explicitly
8459 set to -1, the filter will try to use a good random seed on a best
8460 effort basis.
8461
8462 @item rule
8463 Set the cellular automaton rule, it is a number ranging from 0 to 255.
8464 Default value is 110.
8465
8466 @item size, s
8467 Set the size of the output video. For the syntax of this option, check
8468 the "Video size" section in the ffmpeg-utils manual.
8469
8470 If @option{filename} or @option{pattern} is specified, the size is set
8471 by default to the width of the specified initial state row, and the
8472 height is set to @var{width} * PHI.
8473
8474 If @option{size} is set, it must contain the width of the specified
8475 pattern string, and the specified pattern will be centered in the
8476 larger row.
8477
8478 If a filename or a pattern string is not specified, the size value
8479 defaults to "320x518" (used for a randomly generated initial state).
8480
8481 @item scroll
8482 If set to 1, scroll the output upward when all the rows in the output
8483 have been already filled. If set to 0, the new generated row will be
8484 written over the top row just after the bottom row is filled.
8485 Defaults to 1.
8486
8487 @item start_full, full
8488 If set to 1, completely fill the output with generated rows before
8489 outputting the first frame.
8490 This is the default behavior, for disabling set the value to 0.
8491
8492 @item stitch
8493 If set to 1, stitch the left and right row edges together.
8494 This is the default behavior, for disabling set the value to 0.
8495 @end table
8496
8497 @subsection Examples
8498
8499 @itemize
8500 @item
8501 Read the initial state from @file{pattern}, and specify an output of
8502 size 200x400.
8503 @example
8504 cellauto=f=pattern:s=200x400
8505 @end example
8506
8507 @item
8508 Generate a random initial row with a width of 200 cells, with a fill
8509 ratio of 2/3:
8510 @example
8511 cellauto=ratio=2/3:s=200x200
8512 @end example
8513
8514 @item
8515 Create a pattern generated by rule 18 starting by a single alive cell
8516 centered on an initial row with width 100:
8517 @example
8518 cellauto=p=@@:s=100x400:full=0:rule=18
8519 @end example
8520
8521 @item
8522 Specify a more elaborated initial pattern:
8523 @example
8524 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
8525 @end example
8526
8527 @end itemize
8528
8529 @section mandelbrot
8530
8531 Generate a Mandelbrot set fractal, and progressively zoom towards the
8532 point specified with @var{start_x} and @var{start_y}.
8533
8534 This source accepts the following options:
8535
8536 @table @option
8537
8538 @item end_pts
8539 Set the terminal pts value. Default value is 400.
8540
8541 @item end_scale
8542 Set the terminal scale value.
8543 Must be a floating point value. Default value is 0.3.
8544
8545 @item inner
8546 Set the inner coloring mode, that is the algorithm used to draw the
8547 Mandelbrot fractal internal region.
8548
8549 It shall assume one of the following values:
8550 @table @option
8551 @item black
8552 Set black mode.
8553 @item convergence
8554 Show time until convergence.
8555 @item mincol
8556 Set color based on point closest to the origin of the iterations.
8557 @item period
8558 Set period mode.
8559 @end table
8560
8561 Default value is @var{mincol}.
8562
8563 @item bailout
8564 Set the bailout value. Default value is 10.0.
8565
8566 @item maxiter
8567 Set the maximum of iterations performed by the rendering
8568 algorithm. Default value is 7189.
8569
8570 @item outer
8571 Set outer coloring mode.
8572 It shall assume one of following values:
8573 @table @option
8574 @item iteration_count
8575 Set iteration cound mode.
8576 @item normalized_iteration_count
8577 set normalized iteration count mode.
8578 @end table
8579 Default value is @var{normalized_iteration_count}.
8580
8581 @item rate, r
8582 Set frame rate, expressed as number of frames per second. Default
8583 value is "25".
8584
8585 @item size, s
8586 Set frame size. For the syntax of this option, check the "Video
8587 size" section in the ffmpeg-utils manual. Default value is "640x480".
8588
8589 @item start_scale
8590 Set the initial scale value. Default value is 3.0.
8591
8592 @item start_x
8593 Set the initial x position. Must be a floating point value between
8594 -100 and 100. Default value is -0.743643887037158704752191506114774.
8595
8596 @item start_y
8597 Set the initial y position. Must be a floating point value between
8598 -100 and 100. Default value is -0.131825904205311970493132056385139.
8599 @end table
8600
8601 @section mptestsrc
8602
8603 Generate various test patterns, as generated by the MPlayer test filter.
8604
8605 The size of the generated video is fixed, and is 256x256.
8606 This source is useful in particular for testing encoding features.
8607
8608 This source accepts the following options:
8609
8610 @table @option
8611
8612 @item rate, r
8613 Specify the frame rate of the sourced video, as the number of frames
8614 generated per second. It has to be a string in the format
8615 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
8616 number or a valid video frame rate abbreviation. The default value is
8617 "25".
8618
8619 @item duration, d
8620 Set the video duration of the sourced video. The accepted syntax is:
8621 @example
8622 [-]HH:MM:SS[.m...]
8623 [-]S+[.m...]
8624 @end example
8625 See also the function @code{av_parse_time()}.
8626
8627 If not specified, or the expressed duration is negative, the video is
8628 supposed to be generated forever.
8629
8630 @item test, t
8631
8632 Set the number or the name of the test to perform. Supported tests are:
8633 @table @option
8634 @item dc_luma
8635 @item dc_chroma
8636 @item freq_luma
8637 @item freq_chroma
8638 @item amp_luma
8639 @item amp_chroma
8640 @item cbp
8641 @item mv
8642 @item ring1
8643 @item ring2
8644 @item all
8645 @end table
8646
8647 Default value is "all", which will cycle through the list of all tests.
8648 @end table
8649
8650 For example the following:
8651 @example
8652 testsrc=t=dc_luma
8653 @end example
8654
8655 will generate a "dc_luma" test pattern.
8656
8657 @section frei0r_src
8658
8659 Provide a frei0r source.
8660
8661 To enable compilation of this filter you need to install the frei0r
8662 header and configure FFmpeg with @code{--enable-frei0r}.
8663
8664 This source accepts the following options:
8665
8666 @table @option
8667
8668 @item size
8669 The size of the video to generate. For the syntax of this option, check the
8670 "Video size" section in the ffmpeg-utils manual.
8671
8672 @item framerate
8673 Framerate of the generated video, may be a string of the form
8674 @var{num}/@var{den} or a frame rate abbreviation.
8675
8676 @item filter_name
8677 The name to the frei0r source to load. For more information regarding frei0r and
8678 how to set the parameters read the section @ref{frei0r} in the description of
8679 the video filters.
8680
8681 @item filter_params
8682 A '|'-separated list of parameters to pass to the frei0r source.
8683
8684 @end table
8685
8686 For example, to generate a frei0r partik0l source with size 200x200
8687 and frame rate 10 which is overlayed on the overlay filter main input:
8688 @example
8689 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
8690 @end example
8691
8692 @section life
8693
8694 Generate a life pattern.
8695
8696 This source is based on a generalization of John Conway's life game.
8697
8698 The sourced input represents a life grid, each pixel represents a cell
8699 which can be in one of two possible states, alive or dead. Every cell
8700 interacts with its eight neighbours, which are the cells that are
8701 horizontally, vertically, or diagonally adjacent.
8702
8703 At each interaction the grid evolves according to the adopted rule,
8704 which specifies the number of neighbor alive cells which will make a
8705 cell stay alive or born. The @option{rule} option allows to specify
8706 the rule to adopt.
8707
8708 This source accepts the following options:
8709
8710 @table @option
8711 @item filename, f
8712 Set the file from which to read the initial grid state. In the file,
8713 each non-whitespace character is considered an alive cell, and newline
8714 is used to delimit the end of each row.
8715
8716 If this option is not specified, the initial grid is generated
8717 randomly.
8718
8719 @item rate, r
8720 Set the video rate, that is the number of frames generated per second.
8721 Default is 25.
8722
8723 @item random_fill_ratio, ratio
8724 Set the random fill ratio for the initial random grid. It is a
8725 floating point number value ranging from 0 to 1, defaults to 1/PHI.
8726 It is ignored when a file is specified.
8727
8728 @item random_seed, seed
8729 Set the seed for filling the initial random grid, must be an integer
8730 included between 0 and UINT32_MAX. If not specified, or if explicitly
8731 set to -1, the filter will try to use a good random seed on a best
8732 effort basis.
8733
8734 @item rule
8735 Set the life rule.
8736
8737 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
8738 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
8739 @var{NS} specifies the number of alive neighbor cells which make a
8740 live cell stay alive, and @var{NB} the number of alive neighbor cells
8741 which make a dead cell to become alive (i.e. to "born").
8742 "s" and "b" can be used in place of "S" and "B", respectively.
8743
8744 Alternatively a rule can be specified by an 18-bits integer. The 9
8745 high order bits are used to encode the next cell state if it is alive
8746 for each number of neighbor alive cells, the low order bits specify
8747 the rule for "borning" new cells. Higher order bits encode for an
8748 higher number of neighbor cells.
8749 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
8750 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
8751
8752 Default value is "S23/B3", which is the original Conway's game of life
8753 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
8754 cells, and will born a new cell if there are three alive cells around
8755 a dead cell.
8756
8757 @item size, s
8758 Set the size of the output video. For the syntax of this option, check the
8759 "Video size" section in the ffmpeg-utils manual.
8760
8761 If @option{filename} is specified, the size is set by default to the
8762 same size of the input file. If @option{size} is set, it must contain
8763 the size specified in the input file, and the initial grid defined in
8764 that file is centered in the larger resulting area.
8765
8766 If a filename is not specified, the size value defaults to "320x240"
8767 (used for a randomly generated initial grid).
8768
8769 @item stitch
8770 If set to 1, stitch the left and right grid edges together, and the
8771 top and bottom edges also. Defaults to 1.
8772
8773 @item mold
8774 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
8775 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
8776 value from 0 to 255.
8777
8778 @item life_color
8779 Set the color of living (or new born) cells.
8780
8781 @item death_color
8782 Set the color of dead cells. If @option{mold} is set, this is the first color
8783 used to represent a dead cell.
8784
8785 @item mold_color
8786 Set mold color, for definitely dead and moldy cells.
8787
8788 For the syntax of these 3 color options, check the "Color" section in the
8789 ffmpeg-utils manual.
8790 @end table
8791
8792 @subsection Examples
8793
8794 @itemize
8795 @item
8796 Read a grid from @file{pattern}, and center it on a grid of size
8797 300x300 pixels:
8798 @example
8799 life=f=pattern:s=300x300
8800 @end example
8801
8802 @item
8803 Generate a random grid of size 200x200, with a fill ratio of 2/3:
8804 @example
8805 life=ratio=2/3:s=200x200
8806 @end example
8807
8808 @item
8809 Specify a custom rule for evolving a randomly generated grid:
8810 @example
8811 life=rule=S14/B34
8812 @end example
8813
8814 @item
8815 Full example with slow death effect (mold) using @command{ffplay}:
8816 @example
8817 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
8818 @end example
8819 @end itemize
8820
8821 @anchor{color}
8822 @anchor{haldclutsrc}
8823 @anchor{nullsrc}
8824 @anchor{rgbtestsrc}
8825 @anchor{smptebars}
8826 @anchor{smptehdbars}
8827 @anchor{testsrc}
8828 @section color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
8829
8830 The @code{color} source provides an uniformly colored input.
8831
8832 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
8833 @ref{haldclut} filter.
8834
8835 The @code{nullsrc} source returns unprocessed video frames. It is
8836 mainly useful to be employed in analysis / debugging tools, or as the
8837 source for filters which ignore the input data.
8838
8839 The @code{rgbtestsrc} source generates an RGB test pattern useful for
8840 detecting RGB vs BGR issues. You should see a red, green and blue
8841 stripe from top to bottom.
8842
8843 The @code{smptebars} source generates a color bars pattern, based on
8844 the SMPTE Engineering Guideline EG 1-1990.
8845
8846 The @code{smptehdbars} source generates a color bars pattern, based on
8847 the SMPTE RP 219-2002.
8848
8849 The @code{testsrc} source generates a test video pattern, showing a
8850 color pattern, a scrolling gradient and a timestamp. This is mainly
8851 intended for testing purposes.
8852
8853 The sources accept the following options:
8854
8855 @table @option
8856
8857 @item color, c
8858 Specify the color of the source, only available in the @code{color}
8859 source. For the syntax of this option, check the "Color" section in the
8860 ffmpeg-utils manual.
8861
8862 @item level
8863 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
8864 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
8865 pixels to be used as identity matrix for 3D lookup tables. Each component is
8866 coded on a @code{1/(N*N)} scale.
8867
8868 @item size, s
8869 Specify the size of the sourced video. For the syntax of this option, check the
8870 "Video size" section in the ffmpeg-utils manual. The default value is
8871 "320x240".
8872
8873 This option is not available with the @code{haldclutsrc} filter.
8874
8875 @item rate, r
8876 Specify the frame rate of the sourced video, as the number of frames
8877 generated per second. It has to be a string in the format
8878 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
8879 number or a valid video frame rate abbreviation. The default value is
8880 "25".
8881
8882 @item sar
8883 Set the sample aspect ratio of the sourced video.
8884
8885 @item duration, d
8886 Set the video duration of the sourced video. The accepted syntax is:
8887 @example
8888 [-]HH[:MM[:SS[.m...]]]
8889 [-]S+[.m...]
8890 @end example
8891 See also the function @code{av_parse_time()}.
8892
8893 If not specified, or the expressed duration is negative, the video is
8894 supposed to be generated forever.
8895
8896 @item decimals, n
8897 Set the number of decimals to show in the timestamp, only available in the
8898 @code{testsrc} source.
8899
8900 The displayed timestamp value will correspond to the original
8901 timestamp value multiplied by the power of 10 of the specified
8902 value. Default value is 0.
8903 @end table
8904
8905 For example the following:
8906 @example
8907 testsrc=duration=5.3:size=qcif:rate=10
8908 @end example
8909
8910 will generate a video with a duration of 5.3 seconds, with size
8911 176x144 and a frame rate of 10 frames per second.
8912
8913 The following graph description will generate a red source
8914 with an opacity of 0.2, with size "qcif" and a frame rate of 10
8915 frames per second.
8916 @example
8917 color=c=red@@0.2:s=qcif:r=10
8918 @end example
8919
8920 If the input content is to be ignored, @code{nullsrc} can be used. The
8921 following command generates noise in the luminance plane by employing
8922 the @code{geq} filter:
8923 @example
8924 nullsrc=s=256x256, geq=random(1)*255:128:128
8925 @end example
8926
8927 @subsection Commands
8928
8929 The @code{color} source supports the following commands:
8930
8931 @table @option
8932 @item c, color
8933 Set the color of the created image. Accepts the same syntax of the
8934 corresponding @option{color} option.
8935 @end table
8936
8937 @c man end VIDEO SOURCES
8938
8939 @chapter Video Sinks
8940 @c man begin VIDEO SINKS
8941
8942 Below is a description of the currently available video sinks.
8943
8944 @section buffersink
8945
8946 Buffer video frames, and make them available to the end of the filter
8947 graph.
8948
8949 This sink is mainly intended for a programmatic use, in particular
8950 through the interface defined in @file{libavfilter/buffersink.h}
8951 or the options system.
8952
8953 It accepts a pointer to an AVBufferSinkContext structure, which
8954 defines the incoming buffers' formats, to be passed as the opaque
8955 parameter to @code{avfilter_init_filter} for initialization.
8956
8957 @section nullsink
8958
8959 Null video sink, do absolutely nothing with the input video. It is
8960 mainly useful as a template and to be employed in analysis / debugging
8961 tools.
8962
8963 @c man end VIDEO SINKS
8964
8965 @chapter Multimedia Filters
8966 @c man begin MULTIMEDIA FILTERS
8967
8968 Below is a description of the currently available multimedia filters.
8969
8970 @section avectorscope
8971
8972 Convert input audio to a video output, representing the audio vector
8973 scope.
8974
8975 The filter is used to measure the difference between channels of stereo
8976 audio stream. A monoaural signal, consisting of identical left and right
8977 signal, results in straight vertical line. Any stereo separation is visible
8978 as a deviation from this line, creating a Lissajous figure.
8979 If the straight (or deviation from it) but horizontal line appears this
8980 indicates that the left and right channels are out of phase.
8981
8982 The filter accepts the following options:
8983
8984 @table @option
8985 @item mode, m
8986 Set the vectorscope mode.
8987
8988 Available values are:
8989 @table @samp
8990 @item lissajous
8991 Lissajous rotated by 45 degrees.
8992
8993 @item lissajous_xy
8994 Same as above but not rotated.
8995 @end table
8996
8997 Default value is @samp{lissajous}.
8998
8999 @item size, s
9000 Set the video size for the output. For the syntax of this option, check the "Video size"
9001 section in the ffmpeg-utils manual. Default value is @code{400x400}.
9002
9003 @item rate, r
9004 Set the output frame rate. Default value is @code{25}.
9005
9006 @item rc
9007 @item gc
9008 @item bc
9009 Specify the red, green and blue contrast. Default values are @code{40}, @code{160} and @code{80}.
9010 Allowed range is @code{[0, 255]}.
9011
9012 @item rf
9013 @item gf
9014 @item bf
9015 Specify the red, green and blue fade. Default values are @code{15}, @code{10} and @code{5}.
9016 Allowed range is @code{[0, 255]}.
9017
9018 @item zoom
9019 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
9020 @end table
9021
9022 @subsection Examples
9023
9024 @itemize
9025 @item
9026 Complete example using @command{ffplay}:
9027 @example
9028 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
9029              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
9030 @end example
9031 @end itemize
9032
9033 @section concat
9034
9035 Concatenate audio and video streams, joining them together one after the
9036 other.
9037
9038 The filter works on segments of synchronized video and audio streams. All
9039 segments must have the same number of streams of each type, and that will
9040 also be the number of streams at output.
9041
9042 The filter accepts the following options:
9043
9044 @table @option
9045
9046 @item n
9047 Set the number of segments. Default is 2.
9048
9049 @item v
9050 Set the number of output video streams, that is also the number of video
9051 streams in each segment. Default is 1.
9052
9053 @item a
9054 Set the number of output audio streams, that is also the number of video
9055 streams in each segment. Default is 0.
9056
9057 @item unsafe
9058 Activate unsafe mode: do not fail if segments have a different format.
9059
9060 @end table
9061
9062 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
9063 @var{a} audio outputs.
9064
9065 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
9066 segment, in the same order as the outputs, then the inputs for the second
9067 segment, etc.
9068
9069 Related streams do not always have exactly the same duration, for various
9070 reasons including codec frame size or sloppy authoring. For that reason,
9071 related synchronized streams (e.g. a video and its audio track) should be
9072 concatenated at once. The concat filter will use the duration of the longest
9073 stream in each segment (except the last one), and if necessary pad shorter
9074 audio streams with silence.
9075
9076 For this filter to work correctly, all segments must start at timestamp 0.
9077
9078 All corresponding streams must have the same parameters in all segments; the
9079 filtering system will automatically select a common pixel format for video
9080 streams, and a common sample format, sample rate and channel layout for
9081 audio streams, but other settings, such as resolution, must be converted
9082 explicitly by the user.
9083
9084 Different frame rates are acceptable but will result in variable frame rate
9085 at output; be sure to configure the output file to handle it.
9086
9087 @subsection Examples
9088
9089 @itemize
9090 @item
9091 Concatenate an opening, an episode and an ending, all in bilingual version
9092 (video in stream 0, audio in streams 1 and 2):
9093 @example
9094 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
9095   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
9096    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
9097   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
9098 @end example
9099
9100 @item
9101 Concatenate two parts, handling audio and video separately, using the
9102 (a)movie sources, and adjusting the resolution:
9103 @example
9104 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
9105 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
9106 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
9107 @end example
9108 Note that a desync will happen at the stitch if the audio and video streams
9109 do not have exactly the same duration in the first file.
9110
9111 @end itemize
9112
9113 @section ebur128
9114
9115 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
9116 it unchanged. By default, it logs a message at a frequency of 10Hz with the
9117 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
9118 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
9119
9120 The filter also has a video output (see the @var{video} option) with a real
9121 time graph to observe the loudness evolution. The graphic contains the logged
9122 message mentioned above, so it is not printed anymore when this option is set,
9123 unless the verbose logging is set. The main graphing area contains the
9124 short-term loudness (3 seconds of analysis), and the gauge on the right is for
9125 the momentary loudness (400 milliseconds).
9126
9127 More information about the Loudness Recommendation EBU R128 on
9128 @url{http://tech.ebu.ch/loudness}.
9129
9130 The filter accepts the following options:
9131
9132 @table @option
9133
9134 @item video
9135 Activate the video output. The audio stream is passed unchanged whether this
9136 option is set or no. The video stream will be the first output stream if
9137 activated. Default is @code{0}.
9138
9139 @item size
9140 Set the video size. This option is for video only. For the syntax of this
9141 option, check the "Video size" section in the ffmpeg-utils manual. Default
9142 and minimum resolution is @code{640x480}.
9143
9144 @item meter
9145 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
9146 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
9147 other integer value between this range is allowed.
9148
9149 @item metadata
9150 Set metadata injection. If set to @code{1}, the audio input will be segmented
9151 into 100ms output frames, each of them containing various loudness information
9152 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
9153
9154 Default is @code{0}.
9155
9156 @item framelog
9157 Force the frame logging level.
9158
9159 Available values are:
9160 @table @samp
9161 @item info
9162 information logging level
9163 @item verbose
9164 verbose logging level
9165 @end table
9166
9167 By default, the logging level is set to @var{info}. If the @option{video} or
9168 the @option{metadata} options are set, it switches to @var{verbose}.
9169 @end table
9170
9171 @subsection Examples
9172
9173 @itemize
9174 @item
9175 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
9176 @example
9177 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
9178 @end example
9179
9180 @item
9181 Run an analysis with @command{ffmpeg}:
9182 @example
9183 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
9184 @end example
9185 @end itemize
9186
9187 @section interleave, ainterleave
9188
9189 Temporally interleave frames from several inputs.
9190
9191 @code{interleave} works with video inputs, @code{ainterleave} with audio.
9192
9193 These filters read frames from several inputs and send the oldest
9194 queued frame to the output.
9195
9196 Input streams must have a well defined, monotonically increasing frame
9197 timestamp values.
9198
9199 In order to submit one frame to output, these filters need to enqueue
9200 at least one frame for each input, so they cannot work in case one
9201 input is not yet terminated and will not receive incoming frames.
9202
9203 For example consider the case when one input is a @code{select} filter
9204 which always drop input frames. The @code{interleave} filter will keep
9205 reading from that input, but it will never be able to send new frames
9206 to output until the input will send an end-of-stream signal.
9207
9208 Also, depending on inputs synchronization, the filters will drop
9209 frames in case one input receives more frames than the other ones, and
9210 the queue is already filled.
9211
9212 These filters accept the following options:
9213
9214 @table @option
9215 @item nb_inputs, n
9216 Set the number of different inputs, it is 2 by default.
9217 @end table
9218
9219 @subsection Examples
9220
9221 @itemize
9222 @item
9223 Interleave frames belonging to different streams using @command{ffmpeg}:
9224 @example
9225 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
9226 @end example
9227
9228 @item
9229 Add flickering blur effect:
9230 @example
9231 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
9232 @end example
9233 @end itemize
9234
9235 @section perms, aperms
9236
9237 Set read/write permissions for the output frames.
9238
9239 These filters are mainly aimed at developers to test direct path in the
9240 following filter in the filtergraph.
9241
9242 The filters accept the following options:
9243
9244 @table @option
9245 @item mode
9246 Select the permissions mode.
9247
9248 It accepts the following values:
9249 @table @samp
9250 @item none
9251 Do nothing. This is the default.
9252 @item ro
9253 Set all the output frames read-only.
9254 @item rw
9255 Set all the output frames directly writable.
9256 @item toggle
9257 Make the frame read-only if writable, and writable if read-only.
9258 @item random
9259 Set each output frame read-only or writable randomly.
9260 @end table
9261
9262 @item seed
9263 Set the seed for the @var{random} mode, must be an integer included between
9264 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
9265 @code{-1}, the filter will try to use a good random seed on a best effort
9266 basis.
9267 @end table
9268
9269 Note: in case of auto-inserted filter between the permission filter and the
9270 following one, the permission might not be received as expected in that
9271 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
9272 perms/aperms filter can avoid this problem.
9273
9274 @section select, aselect
9275
9276 Select frames to pass in output.
9277
9278 This filter accepts the following options:
9279
9280 @table @option
9281
9282 @item expr, e
9283 Set expression, which is evaluated for each input frame.
9284
9285 If the expression is evaluated to zero, the frame is discarded.
9286
9287 If the evaluation result is negative or NaN, the frame is sent to the
9288 first output; otherwise it is sent to the output with index
9289 @code{ceil(val)-1}, assuming that the input index starts from 0.
9290
9291 For example a value of @code{1.2} corresponds to the output with index
9292 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
9293
9294 @item outputs, n
9295 Set the number of outputs. The output to which to send the selected
9296 frame is based on the result of the evaluation. Default value is 1.
9297 @end table
9298
9299 The expression can contain the following constants:
9300
9301 @table @option
9302 @item n
9303 the sequential number of the filtered frame, starting from 0
9304
9305 @item selected_n
9306 the sequential number of the selected frame, starting from 0
9307
9308 @item prev_selected_n
9309 the sequential number of the last selected frame, NAN if undefined
9310
9311 @item TB
9312 timebase of the input timestamps
9313
9314 @item pts
9315 the PTS (Presentation TimeStamp) of the filtered video frame,
9316 expressed in @var{TB} units, NAN if undefined
9317
9318 @item t
9319 the PTS (Presentation TimeStamp) of the filtered video frame,
9320 expressed in seconds, NAN if undefined
9321
9322 @item prev_pts
9323 the PTS of the previously filtered video frame, NAN if undefined
9324
9325 @item prev_selected_pts
9326 the PTS of the last previously filtered video frame, NAN if undefined
9327
9328 @item prev_selected_t
9329 the PTS of the last previously selected video frame, NAN if undefined
9330
9331 @item start_pts
9332 the PTS of the first video frame in the video, NAN if undefined
9333
9334 @item start_t
9335 the time of the first video frame in the video, NAN if undefined
9336
9337 @item pict_type @emph{(video only)}
9338 the type of the filtered frame, can assume one of the following
9339 values:
9340 @table @option
9341 @item I
9342 @item P
9343 @item B
9344 @item S
9345 @item SI
9346 @item SP
9347 @item BI
9348 @end table
9349
9350 @item interlace_type @emph{(video only)}
9351 the frame interlace type, can assume one of the following values:
9352 @table @option
9353 @item PROGRESSIVE
9354 the frame is progressive (not interlaced)
9355 @item TOPFIRST
9356 the frame is top-field-first
9357 @item BOTTOMFIRST
9358 the frame is bottom-field-first
9359 @end table
9360
9361 @item consumed_sample_n @emph{(audio only)}
9362 the number of selected samples before the current frame
9363
9364 @item samples_n @emph{(audio only)}
9365 the number of samples in the current frame
9366
9367 @item sample_rate @emph{(audio only)}
9368 the input sample rate
9369
9370 @item key
9371 1 if the filtered frame is a key-frame, 0 otherwise
9372
9373 @item pos
9374 the position in the file of the filtered frame, -1 if the information
9375 is not available (e.g. for synthetic video)
9376
9377 @item scene @emph{(video only)}
9378 value between 0 and 1 to indicate a new scene; a low value reflects a low
9379 probability for the current frame to introduce a new scene, while a higher
9380 value means the current frame is more likely to be one (see the example below)
9381
9382 @end table
9383
9384 The default value of the select expression is "1".
9385
9386 @subsection Examples
9387
9388 @itemize
9389 @item
9390 Select all frames in input:
9391 @example
9392 select
9393 @end example
9394
9395 The example above is the same as:
9396 @example
9397 select=1
9398 @end example
9399
9400 @item
9401 Skip all frames:
9402 @example
9403 select=0
9404 @end example
9405
9406 @item
9407 Select only I-frames:
9408 @example
9409 select='eq(pict_type\,I)'
9410 @end example
9411
9412 @item
9413 Select one frame every 100:
9414 @example
9415 select='not(mod(n\,100))'
9416 @end example
9417
9418 @item
9419 Select only frames contained in the 10-20 time interval:
9420 @example
9421 select=between(t\,10\,20)
9422 @end example
9423
9424 @item
9425 Select only I frames contained in the 10-20 time interval:
9426 @example
9427 select=between(t\,10\,20)*eq(pict_type\,I)
9428 @end example
9429
9430 @item
9431 Select frames with a minimum distance of 10 seconds:
9432 @example
9433 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
9434 @end example
9435
9436 @item
9437 Use aselect to select only audio frames with samples number > 100:
9438 @example
9439 aselect='gt(samples_n\,100)'
9440 @end example
9441
9442 @item
9443 Create a mosaic of the first scenes:
9444 @example
9445 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
9446 @end example
9447
9448 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
9449 choice.
9450
9451 @item
9452 Send even and odd frames to separate outputs, and compose them:
9453 @example
9454 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
9455 @end example
9456 @end itemize
9457
9458 @section sendcmd, asendcmd
9459
9460 Send commands to filters in the filtergraph.
9461
9462 These filters read commands to be sent to other filters in the
9463 filtergraph.
9464
9465 @code{sendcmd} must be inserted between two video filters,
9466 @code{asendcmd} must be inserted between two audio filters, but apart
9467 from that they act the same way.
9468
9469 The specification of commands can be provided in the filter arguments
9470 with the @var{commands} option, or in a file specified by the
9471 @var{filename} option.
9472
9473 These filters accept the following options:
9474 @table @option
9475 @item commands, c
9476 Set the commands to be read and sent to the other filters.
9477 @item filename, f
9478 Set the filename of the commands to be read and sent to the other
9479 filters.
9480 @end table
9481
9482 @subsection Commands syntax
9483
9484 A commands description consists of a sequence of interval
9485 specifications, comprising a list of commands to be executed when a
9486 particular event related to that interval occurs. The occurring event
9487 is typically the current frame time entering or leaving a given time
9488 interval.
9489
9490 An interval is specified by the following syntax:
9491 @example
9492 @var{START}[-@var{END}] @var{COMMANDS};
9493 @end example
9494
9495 The time interval is specified by the @var{START} and @var{END} times.
9496 @var{END} is optional and defaults to the maximum time.
9497
9498 The current frame time is considered within the specified interval if
9499 it is included in the interval [@var{START}, @var{END}), that is when
9500 the time is greater or equal to @var{START} and is lesser than
9501 @var{END}.
9502
9503 @var{COMMANDS} consists of a sequence of one or more command
9504 specifications, separated by ",", relating to that interval.  The
9505 syntax of a command specification is given by:
9506 @example
9507 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
9508 @end example
9509
9510 @var{FLAGS} is optional and specifies the type of events relating to
9511 the time interval which enable sending the specified command, and must
9512 be a non-null sequence of identifier flags separated by "+" or "|" and
9513 enclosed between "[" and "]".
9514
9515 The following flags are recognized:
9516 @table @option
9517 @item enter
9518 The command is sent when the current frame timestamp enters the
9519 specified interval. In other words, the command is sent when the
9520 previous frame timestamp was not in the given interval, and the
9521 current is.
9522
9523 @item leave
9524 The command is sent when the current frame timestamp leaves the
9525 specified interval. In other words, the command is sent when the
9526 previous frame timestamp was in the given interval, and the
9527 current is not.
9528 @end table
9529
9530 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
9531 assumed.
9532
9533 @var{TARGET} specifies the target of the command, usually the name of
9534 the filter class or a specific filter instance name.
9535
9536 @var{COMMAND} specifies the name of the command for the target filter.
9537
9538 @var{ARG} is optional and specifies the optional list of argument for
9539 the given @var{COMMAND}.
9540
9541 Between one interval specification and another, whitespaces, or
9542 sequences of characters starting with @code{#} until the end of line,
9543 are ignored and can be used to annotate comments.
9544
9545 A simplified BNF description of the commands specification syntax
9546 follows:
9547 @example
9548 @var{COMMAND_FLAG}  ::= "enter" | "leave"
9549 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
9550 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
9551 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
9552 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
9553 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
9554 @end example
9555
9556 @subsection Examples
9557
9558 @itemize
9559 @item
9560 Specify audio tempo change at second 4:
9561 @example
9562 asendcmd=c='4.0 atempo tempo 1.5',atempo
9563 @end example
9564
9565 @item
9566 Specify a list of drawtext and hue commands in a file.
9567 @example
9568 # show text in the interval 5-10
9569 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
9570          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
9571
9572 # desaturate the image in the interval 15-20
9573 15.0-20.0 [enter] hue s 0,
9574           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
9575           [leave] hue s 1,
9576           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
9577
9578 # apply an exponential saturation fade-out effect, starting from time 25
9579 25 [enter] hue s exp(25-t)
9580 @end example
9581
9582 A filtergraph allowing to read and process the above command list
9583 stored in a file @file{test.cmd}, can be specified with:
9584 @example
9585 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
9586 @end example
9587 @end itemize
9588
9589 @anchor{setpts}
9590 @section setpts, asetpts
9591
9592 Change the PTS (presentation timestamp) of the input frames.
9593
9594 @code{setpts} works on video frames, @code{asetpts} on audio frames.
9595
9596 This filter accepts the following options:
9597
9598 @table @option
9599
9600 @item expr
9601 The expression which is evaluated for each frame to construct its timestamp.
9602
9603 @end table
9604
9605 The expression is evaluated through the eval API and can contain the following
9606 constants:
9607
9608 @table @option
9609 @item FRAME_RATE
9610 frame rate, only defined for constant frame-rate video
9611
9612 @item PTS
9613 the presentation timestamp in input
9614
9615 @item N
9616 the count of the input frame for video or the number of consumed samples,
9617 not including the current frame for audio, starting from 0.
9618
9619 @item NB_CONSUMED_SAMPLES
9620 the number of consumed samples, not including the current frame (only
9621 audio)
9622
9623 @item NB_SAMPLES, S
9624 the number of samples in the current frame (only audio)
9625
9626 @item SAMPLE_RATE, SR
9627 audio sample rate
9628
9629 @item STARTPTS
9630 the PTS of the first frame
9631
9632 @item STARTT
9633 the time in seconds of the first frame
9634
9635 @item INTERLACED
9636 tell if the current frame is interlaced
9637
9638 @item T
9639 the time in seconds of the current frame
9640
9641 @item POS
9642 original position in the file of the frame, or undefined if undefined
9643 for the current frame
9644
9645 @item PREV_INPTS
9646 previous input PTS
9647
9648 @item PREV_INT
9649 previous input time in seconds
9650
9651 @item PREV_OUTPTS
9652 previous output PTS
9653
9654 @item PREV_OUTT
9655 previous output time in seconds
9656
9657 @item RTCTIME
9658 wallclock (RTC) time in microseconds. This is deprecated, use time(0)
9659 instead.
9660
9661 @item RTCSTART
9662 wallclock (RTC) time at the start of the movie in microseconds
9663
9664 @item TB
9665 timebase of the input timestamps
9666
9667 @end table
9668
9669 @subsection Examples
9670
9671 @itemize
9672 @item
9673 Start counting PTS from zero
9674 @example
9675 setpts=PTS-STARTPTS
9676 @end example
9677
9678 @item
9679 Apply fast motion effect:
9680 @example
9681 setpts=0.5*PTS
9682 @end example
9683
9684 @item
9685 Apply slow motion effect:
9686 @example
9687 setpts=2.0*PTS
9688 @end example
9689
9690 @item
9691 Set fixed rate of 25 frames per second:
9692 @example
9693 setpts=N/(25*TB)
9694 @end example
9695
9696 @item
9697 Set fixed rate 25 fps with some jitter:
9698 @example
9699 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
9700 @end example
9701
9702 @item
9703 Apply an offset of 10 seconds to the input PTS:
9704 @example
9705 setpts=PTS+10/TB
9706 @end example
9707
9708 @item
9709 Generate timestamps from a "live source" and rebase onto the current timebase:
9710 @example
9711 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
9712 @end example
9713
9714 @item
9715 Generate timestamps by counting samples:
9716 @example
9717 asetpts=N/SR/TB
9718 @end example
9719
9720 @end itemize
9721
9722 @section settb, asettb
9723
9724 Set the timebase to use for the output frames timestamps.
9725 It is mainly useful for testing timebase configuration.
9726
9727 This filter accepts the following options:
9728
9729 @table @option
9730
9731 @item expr, tb
9732 The expression which is evaluated into the output timebase.
9733
9734 @end table
9735
9736 The value for @option{tb} is an arithmetic expression representing a
9737 rational. The expression can contain the constants "AVTB" (the default
9738 timebase), "intb" (the input timebase) and "sr" (the sample rate,
9739 audio only). Default value is "intb".
9740
9741 @subsection Examples
9742
9743 @itemize
9744 @item
9745 Set the timebase to 1/25:
9746 @example
9747 settb=expr=1/25
9748 @end example
9749
9750 @item
9751 Set the timebase to 1/10:
9752 @example
9753 settb=expr=0.1
9754 @end example
9755
9756 @item
9757 Set the timebase to 1001/1000:
9758 @example
9759 settb=1+0.001
9760 @end example
9761
9762 @item
9763 Set the timebase to 2*intb:
9764 @example
9765 settb=2*intb
9766 @end example
9767
9768 @item
9769 Set the default timebase value:
9770 @example
9771 settb=AVTB
9772 @end example
9773 @end itemize
9774
9775 @section showspectrum
9776
9777 Convert input audio to a video output, representing the audio frequency
9778 spectrum.
9779
9780 The filter accepts the following options:
9781
9782 @table @option
9783 @item size, s
9784 Specify the video size for the output. For the syntax of this option, check
9785 the "Video size" section in the ffmpeg-utils manual. Default value is
9786 @code{640x512}.
9787
9788 @item slide
9789 Specify if the spectrum should slide along the window. Default value is
9790 @code{0}.
9791
9792 @item mode
9793 Specify display mode.
9794
9795 It accepts the following values:
9796 @table @samp
9797 @item combined
9798 all channels are displayed in the same row
9799 @item separate
9800 all channels are displayed in separate rows
9801 @end table
9802
9803 Default value is @samp{combined}.
9804
9805 @item color
9806 Specify display color mode.
9807
9808 It accepts the following values:
9809 @table @samp
9810 @item channel
9811 each channel is displayed in a separate color
9812 @item intensity
9813 each channel is is displayed using the same color scheme
9814 @end table
9815
9816 Default value is @samp{channel}.
9817
9818 @item scale
9819 Specify scale used for calculating intensity color values.
9820
9821 It accepts the following values:
9822 @table @samp
9823 @item lin
9824 linear
9825 @item sqrt
9826 square root, default
9827 @item cbrt
9828 cubic root
9829 @item log
9830 logarithmic
9831 @end table
9832
9833 Default value is @samp{sqrt}.
9834
9835 @item saturation
9836 Set saturation modifier for displayed colors. Negative values provide
9837 alternative color scheme. @code{0} is no saturation at all.
9838 Saturation must be in [-10.0, 10.0] range.
9839 Default value is @code{1}.
9840
9841 @item win_func
9842 Set window function.
9843
9844 It accepts the following values:
9845 @table @samp
9846 @item none
9847 No samples pre-processing (do not expect this to be faster)
9848 @item hann
9849 Hann window
9850 @item hamming
9851 Hamming window
9852 @item blackman
9853 Blackman window
9854 @end table
9855
9856 Default value is @code{hann}.
9857 @end table
9858
9859 The usage is very similar to the showwaves filter; see the examples in that
9860 section.
9861
9862 @subsection Examples
9863
9864 @itemize
9865 @item
9866 Large window with logarithmic color scaling:
9867 @example
9868 showspectrum=s=1280x480:scale=log
9869 @end example
9870
9871 @item
9872 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
9873 @example
9874 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
9875              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
9876 @end example
9877 @end itemize
9878
9879 @section showwaves
9880
9881 Convert input audio to a video output, representing the samples waves.
9882
9883 The filter accepts the following options:
9884
9885 @table @option
9886 @item size, s
9887 Specify the video size for the output. For the syntax of this option, check
9888 the "Video size" section in the ffmpeg-utils manual. Default value
9889 is "600x240".
9890
9891 @item mode
9892 Set display mode.
9893
9894 Available values are:
9895 @table @samp
9896 @item point
9897 Draw a point for each sample.
9898
9899 @item line
9900 Draw a vertical line for each sample.
9901 @end table
9902
9903 Default value is @code{point}.
9904
9905 @item n
9906 Set the number of samples which are printed on the same column. A
9907 larger value will decrease the frame rate. Must be a positive
9908 integer. This option can be set only if the value for @var{rate}
9909 is not explicitly specified.
9910
9911 @item rate, r
9912 Set the (approximate) output frame rate. This is done by setting the
9913 option @var{n}. Default value is "25".
9914
9915 @end table
9916
9917 @subsection Examples
9918
9919 @itemize
9920 @item
9921 Output the input file audio and the corresponding video representation
9922 at the same time:
9923 @example
9924 amovie=a.mp3,asplit[out0],showwaves[out1]
9925 @end example
9926
9927 @item
9928 Create a synthetic signal and show it with showwaves, forcing a
9929 frame rate of 30 frames per second:
9930 @example
9931 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
9932 @end example
9933 @end itemize
9934
9935 @section split, asplit
9936
9937 Split input into several identical outputs.
9938
9939 @code{asplit} works with audio input, @code{split} with video.
9940
9941 The filter accepts a single parameter which specifies the number of outputs. If
9942 unspecified, it defaults to 2.
9943
9944 @subsection Examples
9945
9946 @itemize
9947 @item
9948 Create two separate outputs from the same input:
9949 @example
9950 [in] split [out0][out1]
9951 @end example
9952
9953 @item
9954 To create 3 or more outputs, you need to specify the number of
9955 outputs, like in:
9956 @example
9957 [in] asplit=3 [out0][out1][out2]
9958 @end example
9959
9960 @item
9961 Create two separate outputs from the same input, one cropped and
9962 one padded:
9963 @example
9964 [in] split [splitout1][splitout2];
9965 [splitout1] crop=100:100:0:0    [cropout];
9966 [splitout2] pad=200:200:100:100 [padout];
9967 @end example
9968
9969 @item
9970 Create 5 copies of the input audio with @command{ffmpeg}:
9971 @example
9972 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
9973 @end example
9974 @end itemize
9975
9976 @section zmq, azmq
9977
9978 Receive commands sent through a libzmq client, and forward them to
9979 filters in the filtergraph.
9980
9981 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
9982 must be inserted between two video filters, @code{azmq} between two
9983 audio filters.
9984
9985 To enable these filters you need to install the libzmq library and
9986 headers and configure FFmpeg with @code{--enable-libzmq}.
9987
9988 For more information about libzmq see:
9989 @url{http://www.zeromq.org/}
9990
9991 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
9992 receives messages sent through a network interface defined by the
9993 @option{bind_address} option.
9994
9995 The received message must be in the form:
9996 @example
9997 @var{TARGET} @var{COMMAND} [@var{ARG}]
9998 @end example
9999
10000 @var{TARGET} specifies the target of the command, usually the name of
10001 the filter class or a specific filter instance name.
10002
10003 @var{COMMAND} specifies the name of the command for the target filter.
10004
10005 @var{ARG} is optional and specifies the optional argument list for the
10006 given @var{COMMAND}.
10007
10008 Upon reception, the message is processed and the corresponding command
10009 is injected into the filtergraph. Depending on the result, the filter
10010 will send a reply to the client, adopting the format:
10011 @example
10012 @var{ERROR_CODE} @var{ERROR_REASON}
10013 @var{MESSAGE}
10014 @end example
10015
10016 @var{MESSAGE} is optional.
10017
10018 @subsection Examples
10019
10020 Look at @file{tools/zmqsend} for an example of a zmq client which can
10021 be used to send commands processed by these filters.
10022
10023 Consider the following filtergraph generated by @command{ffplay}
10024 @example
10025 ffplay -dumpgraph 1 -f lavfi "
10026 color=s=100x100:c=red  [l];
10027 color=s=100x100:c=blue [r];
10028 nullsrc=s=200x100, zmq [bg];
10029 [bg][l]   overlay      [bg+l];
10030 [bg+l][r] overlay=x=100 "
10031 @end example
10032
10033 To change the color of the left side of the video, the following
10034 command can be used:
10035 @example
10036 echo Parsed_color_0 c yellow | tools/zmqsend
10037 @end example
10038
10039 To change the right side:
10040 @example
10041 echo Parsed_color_1 c pink | tools/zmqsend
10042 @end example
10043
10044 @c man end MULTIMEDIA FILTERS
10045
10046 @chapter Multimedia Sources
10047 @c man begin MULTIMEDIA SOURCES
10048
10049 Below is a description of the currently available multimedia sources.
10050
10051 @section amovie
10052
10053 This is the same as @ref{movie} source, except it selects an audio
10054 stream by default.
10055
10056 @anchor{movie}
10057 @section movie
10058
10059 Read audio and/or video stream(s) from a movie container.
10060
10061 This filter accepts the following options:
10062
10063 @table @option
10064 @item filename
10065 The name of the resource to read (not necessarily a file but also a device or a
10066 stream accessed through some protocol).
10067
10068 @item format_name, f
10069 Specifies the format assumed for the movie to read, and can be either
10070 the name of a container or an input device. If not specified the
10071 format is guessed from @var{movie_name} or by probing.
10072
10073 @item seek_point, sp
10074 Specifies the seek point in seconds, the frames will be output
10075 starting from this seek point, the parameter is evaluated with
10076 @code{av_strtod} so the numerical value may be suffixed by an IS
10077 postfix. Default value is "0".
10078
10079 @item streams, s
10080 Specifies the streams to read. Several streams can be specified,
10081 separated by "+". The source will then have as many outputs, in the
10082 same order. The syntax is explained in the ``Stream specifiers''
10083 section in the ffmpeg manual. Two special names, "dv" and "da" specify
10084 respectively the default (best suited) video and audio stream. Default
10085 is "dv", or "da" if the filter is called as "amovie".
10086
10087 @item stream_index, si
10088 Specifies the index of the video stream to read. If the value is -1,
10089 the best suited video stream will be automatically selected. Default
10090 value is "-1". Deprecated. If the filter is called "amovie", it will select
10091 audio instead of video.
10092
10093 @item loop
10094 Specifies how many times to read the stream in sequence.
10095 If the value is less than 1, the stream will be read again and again.
10096 Default value is "1".
10097
10098 Note that when the movie is looped the source timestamps are not
10099 changed, so it will generate non monotonically increasing timestamps.
10100 @end table
10101
10102 This filter allows to overlay a second video on top of main input of
10103 a filtergraph as shown in this graph:
10104 @example
10105 input -----------> deltapts0 --> overlay --> output
10106                                     ^
10107                                     |
10108 movie --> scale--> deltapts1 -------+
10109 @end example
10110
10111 @subsection Examples
10112
10113 @itemize
10114 @item
10115 Skip 3.2 seconds from the start of the avi file in.avi, and overlay it
10116 on top of the input labelled as "in":
10117 @example
10118 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
10119 [in] setpts=PTS-STARTPTS [main];
10120 [main][over] overlay=16:16 [out]
10121 @end example
10122
10123 @item
10124 Read from a video4linux2 device, and overlay it on top of the input
10125 labelled as "in":
10126 @example
10127 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
10128 [in] setpts=PTS-STARTPTS [main];
10129 [main][over] overlay=16:16 [out]
10130 @end example
10131
10132 @item
10133 Read the first video stream and the audio stream with id 0x81 from
10134 dvd.vob; the video is connected to the pad named "video" and the audio is
10135 connected to the pad named "audio":
10136 @example
10137 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
10138 @end example
10139 @end itemize
10140
10141 @c man end MULTIMEDIA SOURCES