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