]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit 'f53490cc0c809975f8238d5a9edbd26f83bd2f84'
[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, it is possible for filters to have multiple inputs and
7 multiple outputs.
8 To illustrate the sorts of things that are possible, we can
9 use a complex filter graph. For example, the following one:
10
11 @example
12 input --> split ---------------------> overlay --> output
13             |                             ^
14             |                             |
15             +-----> crop --> vflip -------+
16 @end example
17
18 splits the stream in two streams, sends one stream through the crop filter
19 and the vflip filter before merging it back with the other stream by
20 overlaying it on top. You can use the following command to achieve this:
21
22 @example
23 ffmpeg -i input -vf "[in] split [T1], [T2] overlay=0:H/2 [out]; [T1] crop=iw:ih/2:0:ih/2, vflip [T2]" output
24 @end example
25
26 The result will be that in output the top half of the video is mirrored
27 onto the bottom half.
28
29 Filters are loaded using the @var{-vf} or @var{-af} option passed to
30 @command{ffmpeg} or to @command{ffplay}. Filters in the same linear
31 chain are separated by commas. In our example, @var{split,
32 overlay} are in one linear chain, and @var{crop, vflip} are in
33 another. The points where the linear chains join are labeled by names
34 enclosed in square brackets. In our example, that is @var{[T1]} and
35 @var{[T2]}. The special labels @var{[in]} and @var{[out]} are the points
36 where video is input and output.
37
38 Some filters take in input a list of parameters: they are specified
39 after the filter name and an equal sign, and are separated from each other
40 by a colon.
41
42 There exist so-called @var{source filters} that do not have an
43 audio/video input, and @var{sink filters} that will not have audio/video
44 output.
45
46 @c man end FILTERING INTRODUCTION
47
48 @chapter graph2dot
49 @c man begin GRAPH2DOT
50
51 The @file{graph2dot} program included in the FFmpeg @file{tools}
52 directory can be used to parse a filter graph description and issue a
53 corresponding textual representation in the dot language.
54
55 Invoke the command:
56 @example
57 graph2dot -h
58 @end example
59
60 to see how to use @file{graph2dot}.
61
62 You can then pass the dot description to the @file{dot} program (from
63 the graphviz suite of programs) and obtain a graphical representation
64 of the filter graph.
65
66 For example the sequence of commands:
67 @example
68 echo @var{GRAPH_DESCRIPTION} | \
69 tools/graph2dot -o graph.tmp && \
70 dot -Tpng graph.tmp -o graph.png && \
71 display graph.png
72 @end example
73
74 can be used to create and display an image representing the graph
75 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
76 a complete self-contained graph, with its inputs and outputs explicitly defined.
77 For example if your command line is of the form:
78 @example
79 ffmpeg -i infile -vf scale=640:360 outfile
80 @end example
81 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
82 @example
83 nullsrc,scale=640:360,nullsink
84 @end example
85 you may also need to set the @var{nullsrc} parameters and add a @var{format}
86 filter in order to simulate a specific input file.
87
88 @c man end GRAPH2DOT
89
90 @chapter Filtergraph description
91 @c man begin FILTERGRAPH DESCRIPTION
92
93 A filtergraph is a directed graph of connected filters. It can contain
94 cycles, and there can be multiple links between a pair of
95 filters. Each link has one input pad on one side connecting it to one
96 filter from which it takes its input, and one output pad on the other
97 side connecting it to the one filter accepting its output.
98
99 Each filter in a filtergraph is an instance of a filter class
100 registered in the application, which defines the features and the
101 number of input and output pads of the filter.
102
103 A filter with no input pads is called a "source", a filter with no
104 output pads is called a "sink".
105
106 @anchor{Filtergraph syntax}
107 @section Filtergraph syntax
108
109 A filtergraph can be represented using a textual representation, which is
110 recognized by the @option{-filter}/@option{-vf} and @option{-filter_complex}
111 options in @command{ffmpeg} and @option{-vf} in @command{ffplay}, and by the
112 @code{avfilter_graph_parse()}/@code{avfilter_graph_parse2()} function defined in
113 @file{libavfilter/avfiltergraph.h}.
114
115 A filterchain consists of a sequence of connected filters, each one
116 connected to the previous one in the sequence. A filterchain is
117 represented by a list of ","-separated filter descriptions.
118
119 A filtergraph consists of a sequence of filterchains. A sequence of
120 filterchains is represented by a list of ";"-separated filterchain
121 descriptions.
122
123 A filter is represented by a string of the form:
124 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
125
126 @var{filter_name} is the name of the filter class of which the
127 described filter is an instance of, and has to be the name of one of
128 the filter classes registered in the program.
129 The name of the filter class is optionally followed by a string
130 "=@var{arguments}".
131
132 @var{arguments} is a string which contains the parameters used to
133 initialize the filter instance, and are described in the filter
134 descriptions below.
135
136 The list of arguments can be quoted using the character "'" as initial
137 and ending mark, and the character '\' for escaping the characters
138 within the quoted text; otherwise the argument string is considered
139 terminated when the next special character (belonging to the set
140 "[]=;,") is encountered.
141
142 The name and arguments of the filter are optionally preceded and
143 followed by a list of link labels.
144 A link label allows to name a link and associate it to a filter output
145 or input pad. The preceding labels @var{in_link_1}
146 ... @var{in_link_N}, are associated to the filter input pads,
147 the following labels @var{out_link_1} ... @var{out_link_M}, are
148 associated to the output pads.
149
150 When two link labels with the same name are found in the
151 filtergraph, a link between the corresponding input and output pad is
152 created.
153
154 If an output pad is not labelled, it is linked by default to the first
155 unlabelled input pad of the next filter in the filterchain.
156 For example in the filterchain:
157 @example
158 nullsrc, split[L1], [L2]overlay, nullsink
159 @end example
160 the split filter instance has two output pads, and the overlay filter
161 instance two input pads. The first output pad of split is labelled
162 "L1", the first input pad of overlay is labelled "L2", and the second
163 output pad of split is linked to the second input pad of overlay,
164 which are both unlabelled.
165
166 In a complete filterchain all the unlabelled filter input and output
167 pads must be connected. A filtergraph is considered valid if all the
168 filter input and output pads of all the filterchains are connected.
169
170 Libavfilter will automatically insert scale filters where format
171 conversion is required. It is possible to specify swscale flags
172 for those automatically inserted scalers by prepending
173 @code{sws_flags=@var{flags};}
174 to the filtergraph description.
175
176 Follows a BNF description for the filtergraph syntax:
177 @example
178 @var{NAME}             ::= sequence of alphanumeric characters and '_'
179 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
180 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
181 @var{FILTER_ARGUMENTS} ::= sequence of chars (eventually quoted)
182 @var{FILTER}           ::= [@var{LINKNAMES}] @var{NAME} ["=" @var{ARGUMENTS}] [@var{LINKNAMES}]
183 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
184 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
185 @end example
186
187 @section Notes on filtergraph escaping
188
189 Some filter arguments require the use of special characters, typically
190 @code{:} to separate key=value pairs in a named options list. In this
191 case the user should perform a first level escaping when specifying
192 the filter arguments. For example, consider the following literal
193 string to be embedded in the @ref{drawtext} filter arguments:
194 @example
195 this is a 'string': may contain one, or more, special characters
196 @end example
197
198 Since @code{:} is special for the filter arguments syntax, it needs to
199 be escaped, so you get:
200 @example
201 text=this is a \'string\'\: may contain one, or more, special characters
202 @end example
203
204 A second level of escaping is required when embedding the filter
205 arguments in a filtergraph description, in order to escape all the
206 filtergraph special characters. Thus the example above becomes:
207 @example
208 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
209 @end example
210
211 Finally an additional level of escaping may be needed when writing the
212 filtergraph description in a shell command, which depends on the
213 escaping rules of the adopted shell. For example, assuming that
214 @code{\} is special and needs to be escaped with another @code{\}, the
215 previous string will finally result in:
216 @example
217 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
218 @end example
219
220 Sometimes, it might be more convenient to employ quoting in place of
221 escaping. For example the string:
222 @example
223 Caesar: tu quoque, Brute, fili mi
224 @end example
225
226 Can be quoted in the filter arguments as:
227 @example
228 text='Caesar: tu quoque, Brute, fili mi'
229 @end example
230
231 And finally inserted in a filtergraph like:
232 @example
233 drawtext=text=\'Caesar: tu quoque\, Brute\, fili mi\'
234 @end example
235
236 See the ``Quoting and escaping'' section in the ffmpeg-utils manual
237 for more information about the escaping and quoting rules adopted by
238 FFmpeg.
239
240 @c man end FILTERGRAPH DESCRIPTION
241
242 @chapter Audio Filters
243 @c man begin AUDIO FILTERS
244
245 When you configure your FFmpeg build, you can disable any of the
246 existing filters using @code{--disable-filters}.
247 The configure output will show the audio filters included in your
248 build.
249
250 Below is a description of the currently available audio filters.
251
252 @section aconvert
253
254 Convert the input audio format to the specified formats.
255
256 The filter accepts a string of the form:
257 "@var{sample_format}:@var{channel_layout}".
258
259 @var{sample_format} specifies the sample format, and can be a string or the
260 corresponding numeric value defined in @file{libavutil/samplefmt.h}. Use 'p'
261 suffix for a planar sample format.
262
263 @var{channel_layout} specifies the channel layout, and can be a string
264 or the corresponding number value defined in @file{libavutil/channel_layout.h}.
265
266 The special parameter "auto", signifies that the filter will
267 automatically select the output format depending on the output filter.
268
269 Some examples follow.
270
271 @itemize
272 @item
273 Convert input to float, planar, stereo:
274 @example
275 aconvert=fltp:stereo
276 @end example
277
278 @item
279 Convert input to unsigned 8-bit, automatically select out channel layout:
280 @example
281 aconvert=u8:auto
282 @end example
283 @end itemize
284
285 @section aformat
286
287 Set output format constraints for the input audio. The framework will
288 negotiate the most appropriate format to minimize conversions.
289
290 The filter accepts the following named parameters:
291 @table @option
292
293 @item sample_fmts
294 A comma-separated list of requested sample formats.
295
296 @item sample_rates
297 A comma-separated list of requested sample rates.
298
299 @item channel_layouts
300 A comma-separated list of requested channel layouts.
301
302 @end table
303
304 If a parameter is omitted, all values are allowed.
305
306 For example to force the output to either unsigned 8-bit or signed 16-bit stereo:
307 @example
308 aformat='sample_fmts=u8,s16:channel_layouts=stereo'
309 @end example
310
311 @section amerge
312
313 Merge two or more audio streams into a single multi-channel stream.
314
315 The filter accepts the following named options:
316
317 @table @option
318
319 @item inputs
320 Set the number of inputs. Default is 2.
321
322 @end table
323
324 If the channel layouts of the inputs are disjoint, and therefore compatible,
325 the channel layout of the output will be set accordingly and the channels
326 will be reordered as necessary. If the channel layouts of the inputs are not
327 disjoint, the output will have all the channels of the first input then all
328 the channels of the second input, in that order, and the channel layout of
329 the output will be the default value corresponding to the total number of
330 channels.
331
332 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
333 is FC+BL+BR, then the output will be in 5.1, with the channels in the
334 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
335 first input, b1 is the first channel of the second input).
336
337 On the other hand, if both input are in stereo, the output channels will be
338 in the default order: a1, a2, b1, b2, and the channel layout will be
339 arbitrarily set to 4.0, which may or may not be the expected value.
340
341 All inputs must have the same sample rate, and format.
342
343 If inputs do not have the same duration, the output will stop with the
344 shortest.
345
346 Example: merge two mono files into a stereo stream:
347 @example
348 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
349 @end example
350
351 Example: multiple merges:
352 @example
353 ffmpeg -f lavfi -i "
354 amovie=input.mkv:si=0 [a0];
355 amovie=input.mkv:si=1 [a1];
356 amovie=input.mkv:si=2 [a2];
357 amovie=input.mkv:si=3 [a3];
358 amovie=input.mkv:si=4 [a4];
359 amovie=input.mkv:si=5 [a5];
360 [a0][a1][a2][a3][a4][a5] amerge=inputs=6" -c:a pcm_s16le output.mkv
361 @end example
362
363 @section amix
364
365 Mixes multiple audio inputs into a single output.
366
367 For example
368 @example
369 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
370 @end example
371 will mix 3 input audio streams to a single output with the same duration as the
372 first input and a dropout transition time of 3 seconds.
373
374 The filter accepts the following named parameters:
375 @table @option
376
377 @item inputs
378 Number of inputs. If unspecified, it defaults to 2.
379
380 @item duration
381 How to determine the end-of-stream.
382 @table @option
383
384 @item longest
385 Duration of longest input. (default)
386
387 @item shortest
388 Duration of shortest input.
389
390 @item first
391 Duration of first input.
392
393 @end table
394
395 @item dropout_transition
396 Transition time, in seconds, for volume renormalization when an input
397 stream ends. The default value is 2 seconds.
398
399 @end table
400
401 @section anull
402
403 Pass the audio source unchanged to the output.
404
405 @section apad
406
407 Pad the end of a audio stream with silence, this can be used together with
408 -shortest to extend audio streams to the same length as the video stream.
409
410 @anchor{aresample}
411 @section aresample
412
413 Resample the input audio to the specified parameters, using the
414 libswresample library. If none are specified then the filter will
415 automatically convert between its input and output.
416
417 This filter is also able to stretch/squeeze the audio data to make it match
418 the timestamps or to inject silence / cut out audio to make it match the
419 timestamps, do a combination of both or do neither.
420
421 The filter accepts the syntax
422 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
423 expresses a sample rate and @var{resampler_options} is a list of
424 @var{key}=@var{value} pairs, separated by ":". See the
425 ffmpeg-resampler manual for the complete list of supported options.
426
427 For example, to resample the input audio to 44100Hz:
428 @example
429 aresample=44100
430 @end example
431
432 To stretch/squeeze samples to the given timestamps, with a maximum of 1000
433 samples per second compensation:
434 @example
435 aresample=async=1000
436 @end example
437
438 @section asetnsamples
439
440 Set the number of samples per each output audio frame.
441
442 The last output packet may contain a different number of samples, as
443 the filter will flush all the remaining samples when the input audio
444 signal its end.
445
446 The filter accepts parameters as a list of @var{key}=@var{value} pairs,
447 separated by ":".
448
449 @table @option
450
451 @item nb_out_samples, n
452 Set the number of frames per each output audio frame. The number is
453 intended as the number of samples @emph{per each channel}.
454 Default value is 1024.
455
456 @item pad, p
457 If set to 1, the filter will pad the last audio frame with zeroes, so
458 that the last frame will contain the same number of samples as the
459 previous ones. Default value is 1.
460 @end table
461
462 For example, to set the number of per-frame samples to 1234 and
463 disable padding for the last frame, use:
464 @example
465 asetnsamples=n=1234:p=0
466 @end example
467
468 @section ashowinfo
469
470 Show a line containing various information for each input audio frame.
471 The input audio is not modified.
472
473 The shown line contains a sequence of key/value pairs of the form
474 @var{key}:@var{value}.
475
476 A description of each shown parameter follows:
477
478 @table @option
479 @item n
480 sequential number of the input frame, starting from 0
481
482 @item pts
483 Presentation timestamp of the input frame, in time base units; the time base
484 depends on the filter input pad, and is usually 1/@var{sample_rate}.
485
486 @item pts_time
487 presentation timestamp of the input frame in seconds
488
489 @item pos
490 position of the frame in the input stream, -1 if this information in
491 unavailable and/or meaningless (for example in case of synthetic audio)
492
493 @item fmt
494 sample format
495
496 @item chlayout
497 channel layout
498
499 @item rate
500 sample rate for the audio frame
501
502 @item nb_samples
503 number of samples (per channel) in the frame
504
505 @item checksum
506 Adler-32 checksum (printed in hexadecimal) of the audio data. For planar audio
507 the data is treated as if all the planes were concatenated.
508
509 @item plane_checksums
510 A list of Adler-32 checksums for each data plane.
511 @end table
512
513 @section asplit
514
515 Split input audio into several identical outputs.
516
517 The filter accepts a single parameter which specifies the number of outputs. If
518 unspecified, it defaults to 2.
519
520 For example:
521 @example
522 [in] asplit [out0][out1]
523 @end example
524
525 will create two separate outputs from the same input.
526
527 To create 3 or more outputs, you need to specify the number of
528 outputs, like in:
529 @example
530 [in] asplit=3 [out0][out1][out2]
531 @end example
532
533 @example
534 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
535 @end example
536 will create 5 copies of the input audio.
537
538
539 @section astreamsync
540
541 Forward two audio streams and control the order the buffers are forwarded.
542
543 The argument to the filter is an expression deciding which stream should be
544 forwarded next: if the result is negative, the first stream is forwarded; if
545 the result is positive or zero, the second stream is forwarded. It can use
546 the following variables:
547
548 @table @var
549 @item b1 b2
550 number of buffers forwarded so far on each stream
551 @item s1 s2
552 number of samples forwarded so far on each stream
553 @item t1 t2
554 current timestamp of each stream
555 @end table
556
557 The default value is @code{t1-t2}, which means to always forward the stream
558 that has a smaller timestamp.
559
560 Example: stress-test @code{amerge} by randomly sending buffers on the wrong
561 input, while avoiding too much of a desynchronization:
562 @example
563 amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
564 [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
565 [a2] [b2] amerge
566 @end example
567
568 @section atempo
569
570 Adjust audio tempo.
571
572 The filter accepts exactly one parameter, the audio tempo. If not
573 specified then the filter will assume nominal 1.0 tempo. Tempo must
574 be in the [0.5, 2.0] range.
575
576 For example, to slow down audio to 80% tempo:
577 @example
578 atempo=0.8
579 @end example
580
581 For example, to speed up audio to 125% tempo:
582 @example
583 atempo=1.25
584 @end example
585
586 @section earwax
587
588 Make audio easier to listen to on headphones.
589
590 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
591 so that when listened to on headphones the stereo image is moved from
592 inside your head (standard for headphones) to outside and in front of
593 the listener (standard for speakers).
594
595 Ported from SoX.
596
597 @section pan
598
599 Mix channels with specific gain levels. The filter accepts the output
600 channel layout followed by a set of channels definitions.
601
602 This filter is also designed to remap efficiently the channels of an audio
603 stream.
604
605 The filter accepts parameters of the form:
606 "@var{l}:@var{outdef}:@var{outdef}:..."
607
608 @table @option
609 @item l
610 output channel layout or number of channels
611
612 @item outdef
613 output channel specification, of the form:
614 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
615
616 @item out_name
617 output channel to define, either a channel name (FL, FR, etc.) or a channel
618 number (c0, c1, etc.)
619
620 @item gain
621 multiplicative coefficient for the channel, 1 leaving the volume unchanged
622
623 @item in_name
624 input channel to use, see out_name for details; it is not possible to mix
625 named and numbered input channels
626 @end table
627
628 If the `=' in a channel specification is replaced by `<', then the gains for
629 that specification will be renormalized so that the total is 1, thus
630 avoiding clipping noise.
631
632 @subsection Mixing examples
633
634 For example, if you want to down-mix from stereo to mono, but with a bigger
635 factor for the left channel:
636 @example
637 pan=1:c0=0.9*c0+0.1*c1
638 @end example
639
640 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
641 7-channels surround:
642 @example
643 pan=stereo: FL < FL + 0.5*FC + 0.6*BL + 0.6*SL : FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
644 @end example
645
646 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
647 that should be preferred (see "-ac" option) unless you have very specific
648 needs.
649
650 @subsection Remapping examples
651
652 The channel remapping will be effective if, and only if:
653
654 @itemize
655 @item gain coefficients are zeroes or ones,
656 @item only one input per channel output,
657 @end itemize
658
659 If all these conditions are satisfied, the filter will notify the user ("Pure
660 channel mapping detected"), and use an optimized and lossless method to do the
661 remapping.
662
663 For example, if you have a 5.1 source and want a stereo audio stream by
664 dropping the extra channels:
665 @example
666 pan="stereo: c0=FL : c1=FR"
667 @end example
668
669 Given the same source, you can also switch front left and front right channels
670 and keep the input channel layout:
671 @example
672 pan="5.1: c0=c1 : c1=c0 : c2=c2 : c3=c3 : c4=c4 : c5=c5"
673 @end example
674
675 If the input is a stereo audio stream, you can mute the front left channel (and
676 still keep the stereo channel layout) with:
677 @example
678 pan="stereo:c1=c1"
679 @end example
680
681 Still with a stereo audio stream input, you can copy the right channel in both
682 front left and right:
683 @example
684 pan="stereo: c0=FR : c1=FR"
685 @end example
686
687 @section silencedetect
688
689 Detect silence in an audio stream.
690
691 This filter logs a message when it detects that the input audio volume is less
692 or equal to a noise tolerance value for a duration greater or equal to the
693 minimum detected noise duration.
694
695 The printed times and duration are expressed in seconds.
696
697 @table @option
698 @item duration, d
699 Set silence duration until notification (default is 2 seconds).
700
701 @item noise, n
702 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
703 specified value) or amplitude ratio. Default is -60dB, or 0.001.
704 @end table
705
706 Detect 5 seconds of silence with -50dB noise tolerance:
707 @example
708 silencedetect=n=-50dB:d=5
709 @end example
710
711 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
712 tolerance in @file{silence.mp3}:
713 @example
714 ffmpeg -f lavfi -i amovie=silence.mp3,silencedetect=noise=0.0001 -f null -
715 @end example
716
717 @section asyncts
718 Synchronize audio data with timestamps by squeezing/stretching it and/or
719 dropping samples/adding silence when needed.
720
721 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
722
723 The filter accepts the following named parameters:
724 @table @option
725
726 @item compensate
727 Enable stretching/squeezing the data to make it match the timestamps. Disabled
728 by default. When disabled, time gaps are covered with silence.
729
730 @item min_delta
731 Minimum difference between timestamps and audio data (in seconds) to trigger
732 adding/dropping samples. Default value is 0.1. If you get non-perfect sync with
733 this filter, try setting this parameter to 0.
734
735 @item max_comp
736 Maximum compensation in samples per second. Relevant only with compensate=1.
737 Default value 500.
738
739 @item first_pts
740 Assume the first pts should be this value. The time base is 1 / sample rate.
741 This allows for padding/trimming at the start of stream. By default, no
742 assumption is made about the first frame's expected pts, so no padding or
743 trimming is done. For example, this could be set to 0 to pad the beginning with
744 silence if an audio stream starts after the video stream or to trim any samples
745 with a negative pts due to encoder delay.
746
747 @end table
748
749 @section channelsplit
750 Split each channel in input audio stream into a separate output stream.
751
752 This filter accepts the following named parameters:
753 @table @option
754 @item channel_layout
755 Channel layout of the input stream. Default is "stereo".
756 @end table
757
758 For example, assuming a stereo input MP3 file
759 @example
760 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
761 @end example
762 will create an output Matroska file with two audio streams, one containing only
763 the left channel and the other the right channel.
764
765 To split a 5.1 WAV file into per-channel files
766 @example
767 ffmpeg -i in.wav -filter_complex
768 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
769 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
770 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
771 side_right.wav
772 @end example
773
774 @section channelmap
775 Remap input channels to new locations.
776
777 This filter accepts the following named parameters:
778 @table @option
779 @item channel_layout
780 Channel layout of the output stream.
781
782 @item map
783 Map channels from input to output. The argument is a comma-separated list of
784 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
785 @var{in_channel} form. @var{in_channel} can be either the name of the input
786 channel (e.g. FL for front left) or its index in the input channel layout.
787 @var{out_channel} is the name of the output channel or its index in the output
788 channel layout. If @var{out_channel} is not given then it is implicitly an
789 index, starting with zero and increasing by one for each mapping.
790 @end table
791
792 If no mapping is present, the filter will implicitly map input channels to
793 output channels preserving index.
794
795 For example, assuming a 5.1+downmix input MOV file
796 @example
797 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL\,DR-FR' out.wav
798 @end example
799 will create an output WAV file tagged as stereo from the downmix channels of
800 the input.
801
802 To fix a 5.1 WAV improperly encoded in AAC's native channel order
803 @example
804 ffmpeg -i in.wav -filter 'channelmap=1\,2\,0\,5\,3\,4:channel_layout=5.1' out.wav
805 @end example
806
807 @section join
808 Join multiple input streams into one multi-channel stream.
809
810 The filter accepts the following named parameters:
811 @table @option
812
813 @item inputs
814 Number of input streams. Defaults to 2.
815
816 @item channel_layout
817 Desired output channel layout. Defaults to stereo.
818
819 @item map
820 Map channels from inputs to output. The argument is a comma-separated list of
821 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
822 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
823 can be either the name of the input channel (e.g. FL for front left) or its
824 index in the specified input stream. @var{out_channel} is the name of the output
825 channel.
826 @end table
827
828 The filter will attempt to guess the mappings when those are not specified
829 explicitly. It does so by first trying to find an unused matching input channel
830 and if that fails it picks the first unused input channel.
831
832 E.g. to join 3 inputs (with properly set channel layouts)
833 @example
834 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
835 @end example
836
837 To build a 5.1 output from 6 single-channel streams:
838 @example
839 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
840 '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'
841 out
842 @end example
843
844 @section resample
845 Convert the audio sample format, sample rate and channel layout. This filter is
846 not meant to be used directly.
847
848 @section volume
849
850 Adjust the input audio volume.
851
852 The filter accepts the following named parameters. If the key of the
853 first options is omitted, the arguments are interpreted according to
854 the following syntax:
855 @example
856 volume=@var{volume}:@var{precision}
857 @end example
858
859 @table @option
860
861 @item volume
862 Expresses how the audio volume will be increased or decreased.
863
864 Output values are clipped to the maximum value.
865
866 The output audio volume is given by the relation:
867 @example
868 @var{output_volume} = @var{volume} * @var{input_volume}
869 @end example
870
871 Default value for @var{volume} is 1.0.
872
873 @item precision
874 Set the mathematical precision.
875
876 This determines which input sample formats will be allowed, which affects the
877 precision of the volume scaling.
878
879 @table @option
880 @item fixed
881 8-bit fixed-point; limits input sample format to U8, S16, and S32.
882 @item float
883 32-bit floating-point; limits input sample format to FLT. (default)
884 @item double
885 64-bit floating-point; limits input sample format to DBL.
886 @end table
887 @end table
888
889 @subsection Examples
890
891 @itemize
892 @item
893 Halve the input audio volume:
894 @example
895 volume=volume=0.5
896 volume=volume=1/2
897 volume=volume=-6.0206dB
898 @end example
899
900 In all the above example the named key for @option{volume} can be
901 omitted, for example like in:
902 @example
903 volume=0.5
904 @end example
905
906 @item
907 Increase input audio power by 6 decibels using fixed-point precision:
908 @example
909 volume=volume=6dB:precision=fixed
910 @end example
911 @end itemize
912
913 @section volumedetect
914
915 Detect the volume of the input video.
916
917 The filter has no parameters. The input is not modified. Statistics about
918 the volume will be printed in the log when the input stream end is reached.
919
920 In particular it will show the mean volume (root mean square), maximum
921 volume (on a per-sample basis), and the beginning of an histogram of the
922 registered volume values (from the maximum value to a cumulated 1/1000 of
923 the samples).
924
925 All volumes are in decibels relative to the maximum PCM value.
926
927 Here is an excerpt of the output:
928 @example
929 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
930 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
931 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
932 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
933 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
934 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
935 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
936 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
937 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
938 @end example
939
940 It means that:
941 @itemize
942 @item
943 The mean square energy is approximately -27 dB, or 10^-2.7.
944 @item
945 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
946 @item
947 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
948 @end itemize
949
950 In other words, raising the volume by +4 dB does not cause any clipping,
951 raising it by +5 dB causes clipping for 6 samples, etc.
952
953 @c man end AUDIO FILTERS
954
955 @chapter Audio Sources
956 @c man begin AUDIO SOURCES
957
958 Below is a description of the currently available audio sources.
959
960 @section abuffer
961
962 Buffer audio frames, and make them available to the filter chain.
963
964 This source is mainly intended for a programmatic use, in particular
965 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
966
967 It accepts the following mandatory parameters:
968 @var{sample_rate}:@var{sample_fmt}:@var{channel_layout}
969
970 @table @option
971
972 @item sample_rate
973 The sample rate of the incoming audio buffers.
974
975 @item sample_fmt
976 The sample format of the incoming audio buffers.
977 Either a sample format name or its corresponging integer representation from
978 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
979
980 @item channel_layout
981 The channel layout of the incoming audio buffers.
982 Either a channel layout name from channel_layout_map in
983 @file{libavutil/channel_layout.c} or its corresponding integer representation
984 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
985
986 @end table
987
988 For example:
989 @example
990 abuffer=44100:s16p:stereo
991 @end example
992
993 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
994 Since the sample format with name "s16p" corresponds to the number
995 6 and the "stereo" channel layout corresponds to the value 0x3, this is
996 equivalent to:
997 @example
998 abuffer=44100:6:0x3
999 @end example
1000
1001 @section aevalsrc
1002
1003 Generate an audio signal specified by an expression.
1004
1005 This source accepts in input one or more expressions (one for each
1006 channel), which are evaluated and used to generate a corresponding
1007 audio signal.
1008
1009 It accepts the syntax: @var{exprs}[::@var{options}].
1010 @var{exprs} is a list of expressions separated by ":", one for each
1011 separate channel. In case the @var{channel_layout} is not
1012 specified, the selected channel layout depends on the number of
1013 provided expressions.
1014
1015 @var{options} is an optional sequence of @var{key}=@var{value} pairs,
1016 separated by ":".
1017
1018 The description of the accepted options follows.
1019
1020 @table @option
1021
1022 @item channel_layout, c
1023 Set the channel layout. The number of channels in the specified layout
1024 must be equal to the number of specified expressions.
1025
1026 @item duration, d
1027 Set the minimum duration of the sourced audio. See the function
1028 @code{av_parse_time()} for the accepted format.
1029 Note that the resulting duration may be greater than the specified
1030 duration, as the generated audio is always cut at the end of a
1031 complete frame.
1032
1033 If not specified, or the expressed duration is negative, the audio is
1034 supposed to be generated forever.
1035
1036 @item nb_samples, n
1037 Set the number of samples per channel per each output frame,
1038 default to 1024.
1039
1040 @item sample_rate, s
1041 Specify the sample rate, default to 44100.
1042 @end table
1043
1044 Each expression in @var{exprs} can contain the following constants:
1045
1046 @table @option
1047 @item n
1048 number of the evaluated sample, starting from 0
1049
1050 @item t
1051 time of the evaluated sample expressed in seconds, starting from 0
1052
1053 @item s
1054 sample rate
1055
1056 @end table
1057
1058 @subsection Examples
1059
1060 @itemize
1061
1062 @item
1063 Generate silence:
1064 @example
1065 aevalsrc=0
1066 @end example
1067
1068 @item
1069
1070 Generate a sin signal with frequency of 440 Hz, set sample rate to
1071 8000 Hz:
1072 @example
1073 aevalsrc="sin(440*2*PI*t)::s=8000"
1074 @end example
1075
1076 @item
1077 Generate a two channels signal, specify the channel layout (Front
1078 Center + Back Center) explicitly:
1079 @example
1080 aevalsrc="sin(420*2*PI*t):cos(430*2*PI*t)::c=FC|BC"
1081 @end example
1082
1083 @item
1084 Generate white noise:
1085 @example
1086 aevalsrc="-2+random(0)"
1087 @end example
1088
1089 @item
1090 Generate an amplitude modulated signal:
1091 @example
1092 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
1093 @end example
1094
1095 @item
1096 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
1097 @example
1098 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) : 0.1*sin(2*PI*(360+2.5/2)*t)"
1099 @end example
1100
1101 @end itemize
1102
1103 @section anullsrc
1104
1105 Null audio source, return unprocessed audio frames. It is mainly useful
1106 as a template and to be employed in analysis / debugging tools, or as
1107 the source for filters which ignore the input data (for example the sox
1108 synth filter).
1109
1110 It accepts an optional sequence of @var{key}=@var{value} pairs,
1111 separated by ":".
1112
1113 The description of the accepted options follows.
1114
1115 @table @option
1116
1117 @item sample_rate, s
1118 Specify the sample rate, and defaults to 44100.
1119
1120 @item channel_layout, cl
1121
1122 Specify the channel layout, and can be either an integer or a string
1123 representing a channel layout. The default value of @var{channel_layout}
1124 is "stereo".
1125
1126 Check the channel_layout_map definition in
1127 @file{libavutil/channel_layout.c} for the mapping between strings and
1128 channel layout values.
1129
1130 @item nb_samples, n
1131 Set the number of samples per requested frames.
1132
1133 @end table
1134
1135 Follow some examples:
1136 @example
1137 #  set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
1138 anullsrc=r=48000:cl=4
1139
1140 # same as
1141 anullsrc=r=48000:cl=mono
1142 @end example
1143
1144 @section abuffer
1145 Buffer audio frames, and make them available to the filter chain.
1146
1147 This source is not intended to be part of user-supplied graph descriptions but
1148 for insertion by calling programs through the interface defined in
1149 @file{libavfilter/buffersrc.h}.
1150
1151 It accepts the following named parameters:
1152 @table @option
1153
1154 @item time_base
1155 Timebase which will be used for timestamps of submitted frames. It must be
1156 either a floating-point number or in @var{numerator}/@var{denominator} form.
1157
1158 @item sample_rate
1159 Audio sample rate.
1160
1161 @item sample_fmt
1162 Name of the sample format, as returned by @code{av_get_sample_fmt_name()}.
1163
1164 @item channel_layout
1165 Channel layout of the audio data, in the form that can be accepted by
1166 @code{av_get_channel_layout()}.
1167 @end table
1168
1169 All the parameters need to be explicitly defined.
1170
1171 @section flite
1172
1173 Synthesize a voice utterance using the libflite library.
1174
1175 To enable compilation of this filter you need to configure FFmpeg with
1176 @code{--enable-libflite}.
1177
1178 Note that the flite library is not thread-safe.
1179
1180 The source accepts parameters as a list of @var{key}=@var{value} pairs,
1181 separated by ":".
1182
1183 The description of the accepted parameters follows.
1184
1185 @table @option
1186
1187 @item list_voices
1188 If set to 1, list the names of the available voices and exit
1189 immediately. Default value is 0.
1190
1191 @item nb_samples, n
1192 Set the maximum number of samples per frame. Default value is 512.
1193
1194 @item textfile
1195 Set the filename containing the text to speak.
1196
1197 @item text
1198 Set the text to speak.
1199
1200 @item voice, v
1201 Set the voice to use for the speech synthesis. Default value is
1202 @code{kal}. See also the @var{list_voices} option.
1203 @end table
1204
1205 @subsection Examples
1206
1207 @itemize
1208 @item
1209 Read from file @file{speech.txt}, and synthetize the text using the
1210 standard flite voice:
1211 @example
1212 flite=textfile=speech.txt
1213 @end example
1214
1215 @item
1216 Read the specified text selecting the @code{slt} voice:
1217 @example
1218 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
1219 @end example
1220
1221 @item
1222 Input text to ffmpeg:
1223 @example
1224 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
1225 @end example
1226
1227 @item
1228 Make @file{ffplay} speak the specified text, using @code{flite} and
1229 the @code{lavfi} device:
1230 @example
1231 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
1232 @end example
1233 @end itemize
1234
1235 For more information about libflite, check:
1236 @url{http://www.speech.cs.cmu.edu/flite/}
1237
1238 @c man end AUDIO SOURCES
1239
1240 @chapter Audio Sinks
1241 @c man begin AUDIO SINKS
1242
1243 Below is a description of the currently available audio sinks.
1244
1245 @section abuffersink
1246
1247 Buffer audio frames, and make them available to the end of filter chain.
1248
1249 This sink is mainly intended for programmatic use, in particular
1250 through the interface defined in @file{libavfilter/buffersink.h}.
1251
1252 It requires a pointer to an AVABufferSinkContext structure, which
1253 defines the incoming buffers' formats, to be passed as the opaque
1254 parameter to @code{avfilter_init_filter} for initialization.
1255
1256 @section anullsink
1257
1258 Null audio sink, do absolutely nothing with the input audio. It is
1259 mainly useful as a template and to be employed in analysis / debugging
1260 tools.
1261
1262 @section abuffersink
1263 This sink is intended for programmatic use. Frames that arrive on this sink can
1264 be retrieved by the calling program using the interface defined in
1265 @file{libavfilter/buffersink.h}.
1266
1267 This filter accepts no parameters.
1268
1269 @c man end AUDIO SINKS
1270
1271 @chapter Video Filters
1272 @c man begin VIDEO FILTERS
1273
1274 When you configure your FFmpeg build, you can disable any of the
1275 existing filters using @code{--disable-filters}.
1276 The configure output will show the video filters included in your
1277 build.
1278
1279 Below is a description of the currently available video filters.
1280
1281 @section alphaextract
1282
1283 Extract the alpha component from the input as a grayscale video. This
1284 is especially useful with the @var{alphamerge} filter.
1285
1286 @section alphamerge
1287
1288 Add or replace the alpha component of the primary input with the
1289 grayscale value of a second input. This is intended for use with
1290 @var{alphaextract} to allow the transmission or storage of frame
1291 sequences that have alpha in a format that doesn't support an alpha
1292 channel.
1293
1294 For example, to reconstruct full frames from a normal YUV-encoded video
1295 and a separate video created with @var{alphaextract}, you might use:
1296 @example
1297 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
1298 @end example
1299
1300 Since this filter is designed for reconstruction, it operates on frame
1301 sequences without considering timestamps, and terminates when either
1302 input reaches end of stream. This will cause problems if your encoding
1303 pipeline drops frames. If you're trying to apply an image as an
1304 overlay to a video stream, consider the @var{overlay} filter instead.
1305
1306 @section ass
1307
1308 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
1309 and libavformat to work. On the other hand, it is limited to ASS (Advanced
1310 Substation Alpha) subtitles files.
1311
1312 @section bbox
1313
1314 Compute the bounding box for the non-black pixels in the input frame
1315 luminance plane.
1316
1317 This filter computes the bounding box containing all the pixels with a
1318 luminance value greater than the minimum allowed value.
1319 The parameters describing the bounding box are printed on the filter
1320 log.
1321
1322 @section blackdetect
1323
1324 Detect video intervals that are (almost) completely black. Can be
1325 useful to detect chapter transitions, commercials, or invalid
1326 recordings. Output lines contains the time for the start, end and
1327 duration of the detected black interval expressed in seconds.
1328
1329 In order to display the output lines, you need to set the loglevel at
1330 least to the AV_LOG_INFO value.
1331
1332 This filter accepts a list of options in the form of
1333 @var{key}=@var{value} pairs separated by ":". A description of the
1334 accepted options follows.
1335
1336 @table @option
1337 @item black_min_duration, d
1338 Set the minimum detected black duration expressed in seconds. It must
1339 be a non-negative floating point number.
1340
1341 Default value is 2.0.
1342
1343 @item picture_black_ratio_th, pic_th
1344 Set the threshold for considering a picture "black".
1345 Express the minimum value for the ratio:
1346 @example
1347 @var{nb_black_pixels} / @var{nb_pixels}
1348 @end example
1349
1350 for which a picture is considered black.
1351 Default value is 0.98.
1352
1353 @item pixel_black_th, pix_th
1354 Set the threshold for considering a pixel "black".
1355
1356 The threshold expresses the maximum pixel luminance value for which a
1357 pixel is considered "black". The provided value is scaled according to
1358 the following equation:
1359 @example
1360 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
1361 @end example
1362
1363 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
1364 the input video format, the range is [0-255] for YUV full-range
1365 formats and [16-235] for YUV non full-range formats.
1366
1367 Default value is 0.10.
1368 @end table
1369
1370 The following example sets the maximum pixel threshold to the minimum
1371 value, and detects only black intervals of 2 or more seconds:
1372 @example
1373 blackdetect=d=2:pix_th=0.00
1374 @end example
1375
1376 @section blackframe
1377
1378 Detect frames that are (almost) completely black. Can be useful to
1379 detect chapter transitions or commercials. Output lines consist of
1380 the frame number of the detected frame, the percentage of blackness,
1381 the position in the file if known or -1 and the timestamp in seconds.
1382
1383 In order to display the output lines, you need to set the loglevel at
1384 least to the AV_LOG_INFO value.
1385
1386 The filter accepts the syntax:
1387 @example
1388 blackframe[=@var{amount}:[@var{threshold}]]
1389 @end example
1390
1391 @var{amount} is the percentage of the pixels that have to be below the
1392 threshold, and defaults to 98.
1393
1394 @var{threshold} is the threshold below which a pixel value is
1395 considered black, and defaults to 32.
1396
1397 @section boxblur
1398
1399 Apply boxblur algorithm to the input video.
1400
1401 This filter accepts the parameters:
1402 @var{luma_radius}:@var{luma_power}:@var{chroma_radius}:@var{chroma_power}:@var{alpha_radius}:@var{alpha_power}
1403
1404 Chroma and alpha parameters are optional, if not specified they default
1405 to the corresponding values set for @var{luma_radius} and
1406 @var{luma_power}.
1407
1408 @var{luma_radius}, @var{chroma_radius}, and @var{alpha_radius} represent
1409 the radius in pixels of the box used for blurring the corresponding
1410 input plane. They are expressions, and can contain the following
1411 constants:
1412 @table @option
1413 @item w, h
1414 the input width and height in pixels
1415
1416 @item cw, ch
1417 the input chroma image width and height in pixels
1418
1419 @item hsub, vsub
1420 horizontal and vertical chroma subsample values. For example for the
1421 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
1422 @end table
1423
1424 The radius must be a non-negative number, and must not be greater than
1425 the value of the expression @code{min(w,h)/2} for the luma and alpha planes,
1426 and of @code{min(cw,ch)/2} for the chroma planes.
1427
1428 @var{luma_power}, @var{chroma_power}, and @var{alpha_power} represent
1429 how many times the boxblur filter is applied to the corresponding
1430 plane.
1431
1432 Some examples follow:
1433
1434 @itemize
1435
1436 @item
1437 Apply a boxblur filter with luma, chroma, and alpha radius
1438 set to 2:
1439 @example
1440 boxblur=2:1
1441 @end example
1442
1443 @item
1444 Set luma radius to 2, alpha and chroma radius to 0
1445 @example
1446 boxblur=2:1:0:0:0:0
1447 @end example
1448
1449 @item
1450 Set luma and chroma radius to a fraction of the video dimension
1451 @example
1452 boxblur=min(h\,w)/10:1:min(cw\,ch)/10:1
1453 @end example
1454
1455 @end itemize
1456
1457 @section colormatrix
1458
1459 The colormatrix filter allows conversion between any of the following color
1460 space: BT.709 (@var{bt709}), BT.601 (@var{bt601}), SMPTE-240M (@var{smpte240m})
1461 and FCC (@var{fcc}).
1462
1463 The syntax of the parameters is @var{source}:@var{destination}:
1464
1465 @example
1466 colormatrix=bt601:smpte240m
1467 @end example
1468
1469 @section copy
1470
1471 Copy the input source unchanged to the output. Mainly useful for
1472 testing purposes.
1473
1474 @section crop
1475
1476 Crop the input video.
1477
1478 This filter accepts a list of @var{key}=@var{value} pairs as argument,
1479 separated by ':'. If the key of the first options is omitted, the
1480 arguments are interpreted according to the syntax
1481 @var{out_w}:@var{out_h}:@var{x}:@var{y}:@var{keep_aspect}.
1482
1483 A description of the accepted options follows:
1484 @table @option
1485 @item w, out_w
1486 Set the crop area width. It defaults to @code{iw}.
1487 This expression is evaluated only once during the filter
1488 configuration.
1489
1490 @item h, out_h
1491 Set the crop area width. It defaults to @code{ih}.
1492 This expression is evaluated only once during the filter
1493 configuration.
1494
1495 @item x
1496 Set the expression for the x top-left coordinate of the cropped area.
1497 It defaults to @code{(in_w-out_w)/2}.
1498 This expression is evaluated per-frame.
1499
1500 @item y
1501 Set the expression for the y top-left coordinate of the cropped area.
1502 It defaults to @code{(in_h-out_h)/2}.
1503 This expression is evaluated per-frame.
1504
1505 @item keep_aspect
1506 If set to 1 will force the output display aspect ratio
1507 to be the same of the input, by changing the output sample aspect
1508 ratio. It defaults to 0.
1509 @end table
1510
1511 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
1512 expressions containing the following constants:
1513
1514 @table @option
1515 @item x, y
1516 the computed values for @var{x} and @var{y}. They are evaluated for
1517 each new frame.
1518
1519 @item in_w, in_h
1520 the input width and height
1521
1522 @item iw, ih
1523 same as @var{in_w} and @var{in_h}
1524
1525 @item out_w, out_h
1526 the output (cropped) width and height
1527
1528 @item ow, oh
1529 same as @var{out_w} and @var{out_h}
1530
1531 @item a
1532 same as @var{iw} / @var{ih}
1533
1534 @item sar
1535 input sample aspect ratio
1536
1537 @item dar
1538 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
1539
1540 @item hsub, vsub
1541 horizontal and vertical chroma subsample values. For example for the
1542 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
1543
1544 @item n
1545 the number of input frame, starting from 0
1546
1547 @item pos
1548 the position in the file of the input frame, NAN if unknown
1549
1550 @item t
1551 timestamp expressed in seconds, NAN if the input timestamp is unknown
1552
1553 @end table
1554
1555 The expression for @var{out_w} may depend on the value of @var{out_h},
1556 and the expression for @var{out_h} may depend on @var{out_w}, but they
1557 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
1558 evaluated after @var{out_w} and @var{out_h}.
1559
1560 The @var{x} and @var{y} parameters specify the expressions for the
1561 position of the top-left corner of the output (non-cropped) area. They
1562 are evaluated for each frame. If the evaluated value is not valid, it
1563 is approximated to the nearest valid value.
1564
1565 The expression for @var{x} may depend on @var{y}, and the expression
1566 for @var{y} may depend on @var{x}.
1567
1568 @subsection Examples
1569 @itemize
1570 @item
1571 Crop area with size 100x100 at position (12,34).
1572 @example
1573 crop=100:100:12:34
1574 @end example
1575
1576 Using named options, the example above becomes:
1577 @example
1578 crop=w=100:h=100:x=12:y=34
1579 @end example
1580
1581 @item
1582 Crop the central input area with size 100x100:
1583 @example
1584 crop=100:100
1585 @end example
1586
1587 @item
1588 Crop the central input area with size 2/3 of the input video:
1589 @example
1590 crop=2/3*in_w:2/3*in_h
1591 @end example
1592
1593 @item
1594 Crop the input video central square:
1595 @example
1596 crop=in_h
1597 @end example
1598
1599 @item
1600 Delimit the rectangle with the top-left corner placed at position
1601 100:100 and the right-bottom corner corresponding to the right-bottom
1602 corner of the input image:
1603 @example
1604 crop=in_w-100:in_h-100:100:100
1605 @end example
1606
1607 @item
1608 Crop 10 pixels from the left and right borders, and 20 pixels from
1609 the top and bottom borders
1610 @example
1611 crop=in_w-2*10:in_h-2*20
1612 @end example
1613
1614 @item
1615 Keep only the bottom right quarter of the input image:
1616 @example
1617 crop=in_w/2:in_h/2:in_w/2:in_h/2
1618 @end example
1619
1620 @item
1621 Crop height for getting Greek harmony:
1622 @example
1623 crop=in_w:1/PHI*in_w
1624 @end example
1625
1626 @item
1627 Appply trembling effect:
1628 @example
1629 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)
1630 @end example
1631
1632 @item
1633 Apply erratic camera effect depending on timestamp:
1634 @example
1635 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)"
1636 @end example
1637
1638 @item
1639 Set x depending on the value of y:
1640 @example
1641 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
1642 @end example
1643 @end itemize
1644
1645 @section cropdetect
1646
1647 Auto-detect crop size.
1648
1649 Calculate necessary cropping parameters and prints the recommended
1650 parameters through the logging system. The detected dimensions
1651 correspond to the non-black area of the input video.
1652
1653 It accepts the syntax:
1654 @example
1655 cropdetect[=@var{limit}[:@var{round}[:@var{reset}]]]
1656 @end example
1657
1658 @table @option
1659
1660 @item limit
1661 Threshold, which can be optionally specified from nothing (0) to
1662 everything (255), defaults to 24.
1663
1664 @item round
1665 Value which the width/height should be divisible by, defaults to
1666 16. The offset is automatically adjusted to center the video. Use 2 to
1667 get only even dimensions (needed for 4:2:2 video). 16 is best when
1668 encoding to most video codecs.
1669
1670 @item reset
1671 Counter that determines after how many frames cropdetect will reset
1672 the previously detected largest video area and start over to detect
1673 the current optimal crop area. Defaults to 0.
1674
1675 This can be useful when channel logos distort the video area. 0
1676 indicates never reset and return the largest area encountered during
1677 playback.
1678 @end table
1679
1680 @section decimate
1681
1682 This filter drops frames that do not differ greatly from the previous
1683 frame in order to reduce framerate.  The main use of this filter is
1684 for very-low-bitrate encoding (e.g. streaming over dialup modem), but
1685 it could in theory be used for fixing movies that were
1686 inverse-telecined incorrectly.
1687
1688 It accepts the following parameters:
1689 @var{max}:@var{hi}:@var{lo}:@var{frac}.
1690
1691 @table @option
1692
1693 @item max
1694 Set the maximum number of consecutive frames which can be dropped (if
1695 positive), or the minimum interval between dropped frames (if
1696 negative). If the value is 0, the frame is dropped unregarding the
1697 number of previous sequentially dropped frames.
1698
1699 Default value is 0.
1700
1701 @item hi, lo, frac
1702 Set the dropping threshold values.
1703
1704 Values for @var{hi} and @var{lo} are for 8x8 pixel blocks and
1705 represent actual pixel value differences, so a threshold of 64
1706 corresponds to 1 unit of difference for each pixel, or the same spread
1707 out differently over the block.
1708
1709 A frame is a candidate for dropping if no 8x8 blocks differ by more
1710 than a threshold of @var{hi}, and if no more than @var{frac} blocks (1
1711 meaning the whole image) differ by more than a threshold of @var{lo}.
1712
1713 Default value for @var{hi} is 64*12, default value for @var{lo} is
1714 64*5, and default value for @var{frac} is 0.33.
1715 @end table
1716
1717 @section delogo
1718
1719 Suppress a TV station logo by a simple interpolation of the surrounding
1720 pixels. Just set a rectangle covering the logo and watch it disappear
1721 (and sometimes something even uglier appear - your mileage may vary).
1722
1723 The filter accepts parameters as a string of the form
1724 "@var{x}:@var{y}:@var{w}:@var{h}:@var{band}", or as a list of
1725 @var{key}=@var{value} pairs, separated by ":".
1726
1727 The description of the accepted parameters follows.
1728
1729 @table @option
1730
1731 @item x, y
1732 Specify the top left corner coordinates of the logo. They must be
1733 specified.
1734
1735 @item w, h
1736 Specify the width and height of the logo to clear. They must be
1737 specified.
1738
1739 @item band, t
1740 Specify the thickness of the fuzzy edge of the rectangle (added to
1741 @var{w} and @var{h}). The default value is 4.
1742
1743 @item show
1744 When set to 1, a green rectangle is drawn on the screen to simplify
1745 finding the right @var{x}, @var{y}, @var{w}, @var{h} parameters, and
1746 @var{band} is set to 4. The default value is 0.
1747
1748 @end table
1749
1750 Some examples follow.
1751
1752 @itemize
1753
1754 @item
1755 Set a rectangle covering the area with top left corner coordinates 0,0
1756 and size 100x77, setting a band of size 10:
1757 @example
1758 delogo=0:0:100:77:10
1759 @end example
1760
1761 @item
1762 As the previous example, but use named options:
1763 @example
1764 delogo=x=0:y=0:w=100:h=77:band=10
1765 @end example
1766
1767 @end itemize
1768
1769 @section deshake
1770
1771 Attempt to fix small changes in horizontal and/or vertical shift. This
1772 filter helps remove camera shake from hand-holding a camera, bumping a
1773 tripod, moving on a vehicle, etc.
1774
1775 The filter accepts parameters as a string of the form
1776 "@var{x}:@var{y}:@var{w}:@var{h}:@var{rx}:@var{ry}:@var{edge}:@var{blocksize}:@var{contrast}:@var{search}:@var{filename}"
1777
1778 A description of the accepted parameters follows.
1779
1780 @table @option
1781
1782 @item x, y, w, h
1783 Specify a rectangular area where to limit the search for motion
1784 vectors.
1785 If desired the search for motion vectors can be limited to a
1786 rectangular area of the frame defined by its top left corner, width
1787 and height. These parameters have the same meaning as the drawbox
1788 filter which can be used to visualise the position of the bounding
1789 box.
1790
1791 This is useful when simultaneous movement of subjects within the frame
1792 might be confused for camera motion by the motion vector search.
1793
1794 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
1795 then the full frame is used. This allows later options to be set
1796 without specifying the bounding box for the motion vector search.
1797
1798 Default - search the whole frame.
1799
1800 @item rx, ry
1801 Specify the maximum extent of movement in x and y directions in the
1802 range 0-64 pixels. Default 16.
1803
1804 @item edge
1805 Specify how to generate pixels to fill blanks at the edge of the
1806 frame. An integer from 0 to 3 as follows:
1807 @table @option
1808 @item 0
1809 Fill zeroes at blank locations
1810 @item 1
1811 Original image at blank locations
1812 @item 2
1813 Extruded edge value at blank locations
1814 @item 3
1815 Mirrored edge at blank locations
1816 @end table
1817
1818 The default setting is mirror edge at blank locations.
1819
1820 @item blocksize
1821 Specify the blocksize to use for motion search. Range 4-128 pixels,
1822 default 8.
1823
1824 @item contrast
1825 Specify the contrast threshold for blocks. Only blocks with more than
1826 the specified contrast (difference between darkest and lightest
1827 pixels) will be considered. Range 1-255, default 125.
1828
1829 @item search
1830 Specify the search strategy 0 = exhaustive search, 1 = less exhaustive
1831 search. Default - exhaustive search.
1832
1833 @item filename
1834 If set then a detailed log of the motion search is written to the
1835 specified file.
1836
1837 @end table
1838
1839 @section drawbox
1840
1841 Draw a colored box on the input image.
1842
1843 The filter accepts parameters as a list of @var{key}=@var{value} pairs,
1844 separated by ":".
1845
1846 The description of the accepted parameters follows.
1847
1848 @table @option
1849 @item x, y
1850 Specify the top left corner coordinates of the box. Default to 0.
1851
1852 @item width, w
1853 @item height, h
1854 Specify the width and height of the box, if 0 they are interpreted as
1855 the input width and height. Default to 0.
1856
1857 @item color, c
1858 Specify the color of the box to write, it can be the name of a color
1859 (case insensitive match) or a 0xRRGGBB[AA] sequence. If the special
1860 value @code{invert} is used, the box edge color is the same as the
1861 video with inverted luma.
1862
1863 @item thickness, t
1864 Set the thickness of the box edge. Default value is @code{4}.
1865 @end table
1866
1867 If the key of the first options is omitted, the arguments are
1868 interpreted according to the syntax
1869 @var{x}:@var{y}:@var{width}:@var{height}:@var{color}:@var{thickness}.
1870
1871 Some examples follow:
1872 @itemize
1873 @item
1874 Draw a black box around the edge of the input image:
1875 @example
1876 drawbox
1877 @end example
1878
1879 @item
1880 Draw a box with color red and an opacity of 50%:
1881 @example
1882 drawbox=10:20:200:60:red@@0.5
1883 @end example
1884
1885 The previous example can be specified as:
1886 @example
1887 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
1888 @end example
1889
1890 @item
1891 Fill the box with pink color:
1892 @example
1893 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
1894 @end example
1895 @end itemize
1896
1897 @anchor{drawtext}
1898 @section drawtext
1899
1900 Draw text string or text from specified file on top of video using the
1901 libfreetype library.
1902
1903 To enable compilation of this filter you need to configure FFmpeg with
1904 @code{--enable-libfreetype}.
1905
1906 @subsection Syntax
1907
1908 The filter accepts parameters as a list of @var{key}=@var{value} pairs,
1909 separated by ":".
1910
1911 The description of the accepted parameters follows.
1912
1913 @table @option
1914
1915 @item box
1916 Used to draw a box around text using background color.
1917 Value should be either 1 (enable) or 0 (disable).
1918 The default value of @var{box} is 0.
1919
1920 @item boxcolor
1921 The color to be used for drawing box around text.
1922 Either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
1923 (e.g. "0xff00ff"), possibly followed by an alpha specifier.
1924 The default value of @var{boxcolor} is "white".
1925
1926 @item draw
1927 Set an expression which specifies if the text should be drawn. If the
1928 expression evaluates to 0, the text is not drawn. This is useful for
1929 specifying that the text should be drawn only when specific conditions
1930 are met.
1931
1932 Default value is "1".
1933
1934 See below for the list of accepted constants and functions.
1935
1936 @item expansion
1937 Select how the @var{text} is expanded. Can be either @code{none},
1938 @code{strftime} (default for compatibity reasons but deprecated) or
1939 @code{normal}. See the @ref{drawtext_expansion, Text expansion} section
1940 below for details.
1941
1942 @item fix_bounds
1943 If true, check and fix text coords to avoid clipping.
1944
1945 @item fontcolor
1946 The color to be used for drawing fonts.
1947 Either a string (e.g. "red") or in 0xRRGGBB[AA] format
1948 (e.g. "0xff000033"), possibly followed by an alpha specifier.
1949 The default value of @var{fontcolor} is "black".
1950
1951 @item fontfile
1952 The font file to be used for drawing text. Path must be included.
1953 This parameter is mandatory.
1954
1955 @item fontsize
1956 The font size to be used for drawing text.
1957 The default value of @var{fontsize} is 16.
1958
1959 @item ft_load_flags
1960 Flags to be used for loading the fonts.
1961
1962 The flags map the corresponding flags supported by libfreetype, and are
1963 a combination of the following values:
1964 @table @var
1965 @item default
1966 @item no_scale
1967 @item no_hinting
1968 @item render
1969 @item no_bitmap
1970 @item vertical_layout
1971 @item force_autohint
1972 @item crop_bitmap
1973 @item pedantic
1974 @item ignore_global_advance_width
1975 @item no_recurse
1976 @item ignore_transform
1977 @item monochrome
1978 @item linear_design
1979 @item no_autohint
1980 @item end table
1981 @end table
1982
1983 Default value is "render".
1984
1985 For more information consult the documentation for the FT_LOAD_*
1986 libfreetype flags.
1987
1988 @item shadowcolor
1989 The color to be used for drawing a shadow behind the drawn text.  It
1990 can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
1991 form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
1992 The default value of @var{shadowcolor} is "black".
1993
1994 @item shadowx, shadowy
1995 The x and y offsets for the text shadow position with respect to the
1996 position of the text. They can be either positive or negative
1997 values. Default value for both is "0".
1998
1999 @item tabsize
2000 The size in number of spaces to use for rendering the tab.
2001 Default value is 4.
2002
2003 @item timecode
2004 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
2005 format. It can be used with or without text parameter. @var{timecode_rate}
2006 option must be specified.
2007
2008 @item timecode_rate, rate, r
2009 Set the timecode frame rate (timecode only).
2010
2011 @item text
2012 The text string to be drawn. The text must be a sequence of UTF-8
2013 encoded characters.
2014 This parameter is mandatory if no file is specified with the parameter
2015 @var{textfile}.
2016
2017 @item textfile
2018 A text file containing text to be drawn. The text must be a sequence
2019 of UTF-8 encoded characters.
2020
2021 This parameter is mandatory if no text string is specified with the
2022 parameter @var{text}.
2023
2024 If both @var{text} and @var{textfile} are specified, an error is thrown.
2025
2026 @item reload
2027 If set to 1, the @var{textfile} will be reloaded before each frame.
2028 Be sure to update it atomically, or it may be read partially, or even fail.
2029
2030 @item x, y
2031 The expressions which specify the offsets where text will be drawn
2032 within the video frame. They are relative to the top/left border of the
2033 output image.
2034
2035 The default value of @var{x} and @var{y} is "0".
2036
2037 See below for the list of accepted constants and functions.
2038 @end table
2039
2040 The parameters for @var{x} and @var{y} are expressions containing the
2041 following constants and functions:
2042
2043 @table @option
2044 @item dar
2045 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
2046
2047 @item hsub, vsub
2048 horizontal and vertical chroma subsample values. For example for the
2049 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2050
2051 @item line_h, lh
2052 the height of each text line
2053
2054 @item main_h, h, H
2055 the input height
2056
2057 @item main_w, w, W
2058 the input width
2059
2060 @item max_glyph_a, ascent
2061 the maximum distance from the baseline to the highest/upper grid
2062 coordinate used to place a glyph outline point, for all the rendered
2063 glyphs.
2064 It is a positive value, due to the grid's orientation with the Y axis
2065 upwards.
2066
2067 @item max_glyph_d, descent
2068 the maximum distance from the baseline to the lowest grid coordinate
2069 used to place a glyph outline point, for all the rendered glyphs.
2070 This is a negative value, due to the grid's orientation, with the Y axis
2071 upwards.
2072
2073 @item max_glyph_h
2074 maximum glyph height, that is the maximum height for all the glyphs
2075 contained in the rendered text, it is equivalent to @var{ascent} -
2076 @var{descent}.
2077
2078 @item max_glyph_w
2079 maximum glyph width, that is the maximum width for all the glyphs
2080 contained in the rendered text
2081
2082 @item n
2083 the number of input frame, starting from 0
2084
2085 @item rand(min, max)
2086 return a random number included between @var{min} and @var{max}
2087
2088 @item sar
2089 input sample aspect ratio
2090
2091 @item t
2092 timestamp expressed in seconds, NAN if the input timestamp is unknown
2093
2094 @item text_h, th
2095 the height of the rendered text
2096
2097 @item text_w, tw
2098 the width of the rendered text
2099
2100 @item x, y
2101 the x and y offset coordinates where the text is drawn.
2102
2103 These parameters allow the @var{x} and @var{y} expressions to refer
2104 each other, so you can for example specify @code{y=x/dar}.
2105 @end table
2106
2107 If libavfilter was built with @code{--enable-fontconfig}, then
2108 @option{fontfile} can be a fontconfig pattern or omitted.
2109
2110 @anchor{drawtext_expansion}
2111 @subsection Text expansion
2112
2113 If @option{expansion} is set to @code{strftime} (which is the default for
2114 now), the filter recognizes strftime() sequences in the provided text and
2115 expands them accordingly. Check the documentation of strftime(). This
2116 feature is deprecated.
2117
2118 If @option{expansion} is set to @code{none}, the text is printed verbatim.
2119
2120 If @option{expansion} is set to @code{normal} (which will be the default),
2121 the following expansion mechanism is used.
2122
2123 The backslash character '\', followed by any character, always expands to
2124 the second character.
2125
2126 Sequence of the form @code{%@{...@}} are expanded. The text between the
2127 braces is a function name, possibly followed by arguments separated by ':'.
2128 If the arguments contain special characters or delimiters (':' or '@}'),
2129 they should be escaped.
2130
2131 Note that they probably must also be escaped as the value for the
2132 @option{text} option in the filter argument string and as the filter
2133 argument in the filter graph description, and possibly also for the shell,
2134 that makes up to four levels of escaping; using a text file avoids these
2135 problems.
2136
2137 The following functions are available:
2138
2139 @table @command
2140
2141 @item expr, e
2142 The expression evaluation result.
2143
2144 It must take one argument specifying the expression to be evaluated,
2145 which accepts the same constants and functions as the @var{x} and
2146 @var{y} values. Note that not all constants should be used, for
2147 example the text size is not known when evaluating the expression, so
2148 the constants @var{text_w} and @var{text_h} will have an undefined
2149 value.
2150
2151 @item gmtime
2152 The time at which the filter is running, expressed in UTC.
2153 It can accept an argument: a strftime() format string.
2154
2155 @item localtime
2156 The time at which the filter is running, expressed in the local time zone.
2157 It can accept an argument: a strftime() format string.
2158
2159 @item n, frame_num
2160 The frame number, starting from 0.
2161
2162 @item pts
2163 The timestamp of the current frame, in seconds, with microsecond accuracy.
2164
2165 @end table
2166
2167 @subsection Examples
2168
2169 Some examples follow.
2170
2171 @itemize
2172
2173 @item
2174 Draw "Test Text" with font FreeSerif, using the default values for the
2175 optional parameters.
2176
2177 @example
2178 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
2179 @end example
2180
2181 @item
2182 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
2183 and y=50 (counting from the top-left corner of the screen), text is
2184 yellow with a red box around it. Both the text and the box have an
2185 opacity of 20%.
2186
2187 @example
2188 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
2189           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
2190 @end example
2191
2192 Note that the double quotes are not necessary if spaces are not used
2193 within the parameter list.
2194
2195 @item
2196 Show the text at the center of the video frame:
2197 @example
2198 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
2199 @end example
2200
2201 @item
2202 Show a text line sliding from right to left in the last row of the video
2203 frame. The file @file{LONG_LINE} is assumed to contain a single line
2204 with no newlines.
2205 @example
2206 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
2207 @end example
2208
2209 @item
2210 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
2211 @example
2212 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
2213 @end example
2214
2215 @item
2216 Draw a single green letter "g", at the center of the input video.
2217 The glyph baseline is placed at half screen height.
2218 @example
2219 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
2220 @end example
2221
2222 @item
2223 Show text for 1 second every 3 seconds:
2224 @example
2225 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:draw=lt(mod(t\,3)\,1):text='blink'"
2226 @end example
2227
2228 @item
2229 Use fontconfig to set the font. Note that the colons need to be escaped.
2230 @example
2231 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
2232 @end example
2233
2234 @item
2235 Print the date of a real-time encoding (see strftime(3)):
2236 @example
2237 drawtext='fontfile=FreeSans.ttf:expansion=normal:text=%@{localtime:%a %b %d %Y@}'
2238 @end example
2239
2240 @end itemize
2241
2242 For more information about libfreetype, check:
2243 @url{http://www.freetype.org/}.
2244
2245 For more information about fontconfig, check:
2246 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
2247
2248 @section edgedetect
2249
2250 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
2251
2252 This filter accepts the following optional named parameters:
2253
2254 @table @option
2255 @item low, high
2256 Set low and high threshold values used by the Canny thresholding
2257 algorithm.
2258
2259 The high threshold selects the "strong" edge pixels, which are then
2260 connected through 8-connectivity with the "weak" edge pixels selected
2261 by the low threshold.
2262
2263 @var{low} and @var{high} threshold values must be choosen in the range
2264 [0,1], and @var{low} should be lesser or equal to @var{high}.
2265
2266 Default value for @var{low} is @code{20/255}, and default value for @var{high}
2267 is @code{50/255}.
2268 @end table
2269
2270 Example:
2271 @example
2272 edgedetect=low=0.1:high=0.4
2273 @end example
2274
2275 @section fade
2276
2277 Apply fade-in/out effect to input video.
2278
2279 The filter accepts parameters as a list of @var{key}=@var{value}
2280 pairs, separated by ":". If the key of the first options is omitted,
2281 the arguments are interpreted according to the syntax
2282 @var{type}:@var{start_frame}:@var{nb_frames}.
2283
2284 A description of the accepted parameters follows.
2285
2286 @table @option
2287 @item type, t
2288 Specify if the effect type, can be either @code{in} for fade-in, or
2289 @code{out} for a fade-out effect. Default is @code{in}.
2290
2291 @item start_frame, s
2292 Specify the number of the start frame for starting to apply the fade
2293 effect. Default is 0.
2294
2295 @item nb_frames, n
2296 Specify the number of frames for which the fade effect has to last. At
2297 the end of the fade-in effect the output video will have the same
2298 intensity as the input video, at the end of the fade-out transition
2299 the output video will be completely black. Default is 25.
2300
2301 @item alpha
2302 If set to 1, fade only alpha channel, if one exists on the input.
2303 Default value is 0.
2304 @end table
2305
2306 @subsection Examples
2307 @itemize
2308 @item
2309 Fade in first 30 frames of video:
2310 @example
2311 fade=in:0:30
2312 @end example
2313
2314 The command above is equivalent to:
2315 @example
2316 fade=t=in:s=0:n=30
2317 @end example
2318
2319 @item
2320 Fade out last 45 frames of a 200-frame video:
2321 @example
2322 fade=out:155:45
2323 @end example
2324
2325 @item
2326 Fade in first 25 frames and fade out last 25 frames of a 1000-frame video:
2327 @example
2328 fade=in:0:25, fade=out:975:25
2329 @end example
2330
2331 @item
2332 Make first 5 frames black, then fade in from frame 5-24:
2333 @example
2334 fade=in:5:20
2335 @end example
2336
2337 @item
2338 Fade in alpha over first 25 frames of video:
2339 @example
2340 fade=in:0:25:alpha=1
2341 @end example
2342 @end itemize
2343
2344 @section field
2345
2346 Extract a single field from an interlaced image using stride
2347 arithmetic to avoid wasting CPU time. The output frames are marked as
2348 non-interlaced.
2349
2350 This filter accepts the following named options:
2351 @table @option
2352 @item type
2353 Specify whether to extract the top (if the value is @code{0} or
2354 @code{top}) or the bottom field (if the value is @code{1} or
2355 @code{bottom}).
2356 @end table
2357
2358 If the option key is not specified, the first value sets the @var{type}
2359 option. For example:
2360 @example
2361 field=bottom
2362 @end example
2363
2364 is equivalent to:
2365 @example
2366 field=type=bottom
2367 @end example
2368
2369 @section fieldorder
2370
2371 Transform the field order of the input video.
2372
2373 It accepts one parameter which specifies the required field order that
2374 the input interlaced video will be transformed to. The parameter can
2375 assume one of the following values:
2376
2377 @table @option
2378 @item 0 or bff
2379 output bottom field first
2380 @item 1 or tff
2381 output top field first
2382 @end table
2383
2384 Default value is "tff".
2385
2386 Transformation is achieved by shifting the picture content up or down
2387 by one line, and filling the remaining line with appropriate picture content.
2388 This method is consistent with most broadcast field order converters.
2389
2390 If the input video is not flagged as being interlaced, or it is already
2391 flagged as being of the required output field order then this filter does
2392 not alter the incoming video.
2393
2394 This filter is very useful when converting to or from PAL DV material,
2395 which is bottom field first.
2396
2397 For example:
2398 @example
2399 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
2400 @end example
2401
2402 @section fifo
2403
2404 Buffer input images and send them when they are requested.
2405
2406 This filter is mainly useful when auto-inserted by the libavfilter
2407 framework.
2408
2409 The filter does not take parameters.
2410
2411 @section format
2412
2413 Convert the input video to one of the specified pixel formats.
2414 Libavfilter will try to pick one that is supported for the input to
2415 the next filter.
2416
2417 The filter accepts a list of pixel format names, separated by ":",
2418 for example "yuv420p:monow:rgb24".
2419
2420 Some examples follow:
2421 @example
2422 # convert the input video to the format "yuv420p"
2423 format=yuv420p
2424
2425 # convert the input video to any of the formats in the list
2426 format=yuv420p:yuv444p:yuv410p
2427 @end example
2428
2429 @section fps
2430
2431 Convert the video to specified constant framerate by duplicating or dropping
2432 frames as necessary.
2433
2434 This filter accepts the following named parameters:
2435 @table @option
2436
2437 @item fps
2438 Desired output framerate. The default is @code{25}.
2439
2440 @item round
2441 Rounding method.
2442
2443 Possible values are:
2444 @table @option
2445 @item zero
2446 zero round towards 0
2447 @item inf
2448 round away from 0
2449 @item down
2450 round towards -infinity
2451 @item up
2452 round towards +infinity
2453 @item near
2454 round to nearest
2455 @end table
2456 The default is @code{near}.
2457
2458 @end table
2459
2460 Alternatively, the options can be specified as a flat string:
2461 @var{fps}[:@var{round}].
2462
2463 See also the @ref{setpts} filter.
2464
2465 @section framestep
2466
2467 Select one frame every N.
2468
2469 This filter accepts in input a string representing a positive
2470 integer. Default argument is @code{1}.
2471
2472 @anchor{frei0r}
2473 @section frei0r
2474
2475 Apply a frei0r effect to the input video.
2476
2477 To enable compilation of this filter you need to install the frei0r
2478 header and configure FFmpeg with @code{--enable-frei0r}.
2479
2480 The filter supports the syntax:
2481 @example
2482 @var{filter_name}[@{:|=@}@var{param1}:@var{param2}:...:@var{paramN}]
2483 @end example
2484
2485 @var{filter_name} is the name of the frei0r effect to load. If the
2486 environment variable @env{FREI0R_PATH} is defined, the frei0r effect
2487 is searched in each one of the directories specified by the colon (or
2488 semicolon on Windows platforms) separated list in @env{FREIOR_PATH},
2489 otherwise in the standard frei0r paths, which are in this order:
2490 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
2491 @file{/usr/lib/frei0r-1/}.
2492
2493 @var{param1}, @var{param2}, ... , @var{paramN} specify the parameters
2494 for the frei0r effect.
2495
2496 A frei0r effect parameter can be a boolean (whose values are specified
2497 with "y" and "n"), a double, a color (specified by the syntax
2498 @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
2499 numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
2500 description), a position (specified by the syntax @var{X}/@var{Y},
2501 @var{X} and @var{Y} being float numbers) and a string.
2502
2503 The number and kind of parameters depend on the loaded effect. If an
2504 effect parameter is not specified the default value is set.
2505
2506 Some examples follow:
2507
2508 @itemize
2509 @item
2510 Apply the distort0r effect, set the first two double parameters:
2511 @example
2512 frei0r=distort0r:0.5:0.01
2513 @end example
2514
2515 @item
2516 Apply the colordistance effect, take a color as first parameter:
2517 @example
2518 frei0r=colordistance:0.2/0.3/0.4
2519 frei0r=colordistance:violet
2520 frei0r=colordistance:0x112233
2521 @end example
2522
2523 @item
2524 Apply the perspective effect, specify the top left and top right image
2525 positions:
2526 @example
2527 frei0r=perspective:0.2/0.2:0.8/0.2
2528 @end example
2529 @end itemize
2530
2531 For more information see:
2532 @url{http://frei0r.dyne.org}
2533
2534 @section geq
2535
2536 The filter takes one, two or three equations as parameter, separated by ':'.
2537 The first equation is mandatory and applies to the luma plane. The two
2538 following are respectively for chroma blue and chroma red planes.
2539
2540 The filter syntax allows named parameters:
2541
2542 @table @option
2543 @item lum_expr
2544 the luminance expression
2545 @item cb_expr
2546 the chrominance blue expression
2547 @item cr_expr
2548 the chrominance red expression
2549 @end table
2550
2551 If one of the chrominance expression is not defined, it falls back on the other
2552 one. If none of them are specified, they will evaluate the luminance
2553 expression.
2554
2555 The expressions can use the following variables and functions:
2556
2557 @table @option
2558 @item N
2559 The sequential number of the filtered frame, starting from @code{0}.
2560
2561 @item X, Y
2562 The coordinates of the current sample.
2563
2564 @item W, H
2565 The width and height of the image.
2566
2567 @item SW, SH
2568 Width and height scale depending on the currently filtered plane. It is the
2569 ratio between the corresponding luma plane number of pixels and the current
2570 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
2571 @code{0.5,0.5} for chroma planes.
2572
2573 @item T
2574 Time of the current frame, expressed in seconds.
2575
2576 @item p(x, y)
2577 Return the value of the pixel at location (@var{x},@var{y}) of the current
2578 plane.
2579
2580 @item lum(x, y)
2581 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
2582 plane.
2583
2584 @item cb(x, y)
2585 Return the value of the pixel at location (@var{x},@var{y}) of the
2586 blue-difference chroma plane.
2587
2588 @item cr(x, y)
2589 Return the value of the pixel at location (@var{x},@var{y}) of the
2590 red-difference chroma plane.
2591 @end table
2592
2593 For functions, if @var{x} and @var{y} are outside the area, the value will be
2594 automatically clipped to the closer edge.
2595
2596 Some examples follow:
2597
2598 @itemize
2599 @item
2600 Flip the image horizontally:
2601 @example
2602 geq=p(W-X\,Y)
2603 @end example
2604
2605 @item
2606 Generate a bidimensional sine wave, with angle @code{PI/3} and a
2607 wavelength of 100 pixels:
2608 @example
2609 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
2610 @end example
2611
2612 @item
2613 Generate a fancy enigmatic moving light:
2614 @example
2615 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
2616 @end example
2617 @end itemize
2618
2619 @section gradfun
2620
2621 Fix the banding artifacts that are sometimes introduced into nearly flat
2622 regions by truncation to 8bit color depth.
2623 Interpolate the gradients that should go where the bands are, and
2624 dither them.
2625
2626 This filter is designed for playback only.  Do not use it prior to
2627 lossy compression, because compression tends to lose the dither and
2628 bring back the bands.
2629
2630 The filter accepts a list of options in the form of @var{key}=@var{value} pairs
2631 separated by ":". A description of the accepted options follows.
2632
2633 @table @option
2634
2635 @item strength
2636 The maximum amount by which the filter will change
2637 any one pixel. Also the threshold for detecting nearly flat
2638 regions. Acceptable values range from @code{0.51} to @code{64}, default value
2639 is @code{1.2}.
2640
2641 @item radius
2642 The neighborhood to fit the gradient to. A larger
2643 radius makes for smoother gradients, but also prevents the filter from
2644 modifying the pixels near detailed regions. Acceptable values are
2645 @code{8-32}, default value is @code{16}.
2646
2647 @end table
2648
2649 Alternatively, the options can be specified as a flat string:
2650 @var{strength}[:@var{radius}]
2651
2652 @subsection Examples
2653
2654 @itemize
2655 @item
2656 Apply the filter with a @code{3.5} strength and radius of @code{8}:
2657 @example
2658 gradfun=3.5:8
2659 @end example
2660
2661 @item
2662 Specify radius, omitting the strength (which will fall-back to the default
2663 value):
2664 @example
2665 gradfun=radius=8
2666 @end example
2667
2668 @end itemize
2669
2670 @section hflip
2671
2672 Flip the input video horizontally.
2673
2674 For example to horizontally flip the input video with @command{ffmpeg}:
2675 @example
2676 ffmpeg -i in.avi -vf "hflip" out.avi
2677 @end example
2678
2679 @section histeq
2680 This filter applies a global color histogram equalization on a
2681 per-frame basis.
2682
2683 It can be used to correct video that has a compressed range of pixel
2684 intensities.  The filter redistributes the pixel intensities to
2685 equalize their distribution across the intensity range. It may be
2686 viewed as an "automatically adjusting contrast filter". This filter is
2687 useful only for correcting degraded or poorly captured source
2688 video.
2689
2690 The filter accepts parameters as a list of @var{key}=@var{value}
2691 pairs, separated by ":". If the key of the first options is omitted,
2692 the arguments are interpreted according to syntax
2693 @var{strength}:@var{intensity}:@var{antibanding}.
2694
2695 This filter accepts the following named options:
2696
2697 @table @option
2698 @item strength
2699 Determine the amount of equalization to be applied.  As the strength
2700 is reduced, the distribution of pixel intensities more-and-more
2701 approaches that of the input frame. The value must be a float number
2702 in the range [0,1] and defaults to 0.200.
2703
2704 @item intensity
2705 Set the maximum intensity that can generated and scale the output
2706 values appropriately.  The strength should be set as desired and then
2707 the intensity can be limited if needed to avoid washing-out. The value
2708 must be a float number in the range [0,1] and defaults to 0.210.
2709
2710 @item antibanding
2711 Set the antibanding level. If enabled the filter will randomly vary
2712 the luminance of output pixels by a small amount to avoid banding of
2713 the histogram. Possible values are @code{none}, @code{weak} or
2714 @code{strong}. It defaults to @code{none}.
2715 @end table
2716
2717 @section hqdn3d
2718
2719 High precision/quality 3d denoise filter. This filter aims to reduce
2720 image noise producing smooth images and making still images really
2721 still. It should enhance compressibility.
2722
2723 It accepts the following optional parameters:
2724 @var{luma_spatial}:@var{chroma_spatial}:@var{luma_tmp}:@var{chroma_tmp}
2725
2726 @table @option
2727 @item luma_spatial
2728 a non-negative float number which specifies spatial luma strength,
2729 defaults to 4.0
2730
2731 @item chroma_spatial
2732 a non-negative float number which specifies spatial chroma strength,
2733 defaults to 3.0*@var{luma_spatial}/4.0
2734
2735 @item luma_tmp
2736 a float number which specifies luma temporal strength, defaults to
2737 6.0*@var{luma_spatial}/4.0
2738
2739 @item chroma_tmp
2740 a float number which specifies chroma temporal strength, defaults to
2741 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
2742 @end table
2743
2744 @section hue
2745
2746 Modify the hue and/or the saturation of the input.
2747
2748 This filter accepts the following optional named options:
2749
2750 @table @option
2751 @item h
2752 Specify the hue angle as a number of degrees. It accepts a float
2753 number or an expression, and defaults to 0.0.
2754
2755 @item H
2756 Specify the hue angle as a number of degrees. It accepts a float
2757 number or an expression, and defaults to 0.0.
2758
2759 @item s
2760 Specify the saturation in the [-10,10] range. It accepts a float number and
2761 defaults to 1.0.
2762 @end table
2763
2764 The @var{h}, @var{H} and @var{s} parameters are expressions containing the
2765 following constants:
2766
2767 @table @option
2768 @item n
2769 frame count of the input frame starting from 0
2770
2771 @item pts
2772 presentation timestamp of the input frame expressed in time base units
2773
2774 @item r
2775 frame rate of the input video, NAN if the input frame rate is unknown
2776
2777 @item t
2778 timestamp expressed in seconds, NAN if the input timestamp is unknown
2779
2780 @item tb
2781 time base of the input video
2782 @end table
2783
2784 The options can also be set using the syntax: @var{hue}:@var{saturation}
2785
2786 In this case @var{hue} is expressed in degrees.
2787
2788 Some examples follow:
2789 @itemize
2790 @item
2791 Set the hue to 90 degrees and the saturation to 1.0:
2792 @example
2793 hue=h=90:s=1
2794 @end example
2795
2796 @item
2797 Same command but expressing the hue in radians:
2798 @example
2799 hue=H=PI/2:s=1
2800 @end example
2801
2802 @item
2803 Same command without named options, hue must be expressed in degrees:
2804 @example
2805 hue=90:1
2806 @end example
2807
2808 @item
2809 Note that "h:s" syntax does not support expressions for the values of
2810 h and s, so the following example will issue an error:
2811 @example
2812 hue=PI/2:1
2813 @end example
2814
2815 @item
2816 Rotate hue and make the saturation swing between 0
2817 and 2 over a period of 1 second:
2818 @example
2819 hue="H=2*PI*t: s=sin(2*PI*t)+1"
2820 @end example
2821
2822 @item
2823 Apply a 3 seconds saturation fade-in effect starting at 0:
2824 @example
2825 hue="s=min(t/3\,1)"
2826 @end example
2827
2828 The general fade-in expression can be written as:
2829 @example
2830 hue="s=min(0\, max((t-START)/DURATION\, 1))"
2831 @end example
2832
2833 @item
2834 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
2835 @example
2836 hue="s=max(0\, min(1\, (8-t)/3))"
2837 @end example
2838
2839 The general fade-out expression can be written as:
2840 @example
2841 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
2842 @end example
2843
2844 @end itemize
2845
2846 @subsection Commands
2847
2848 This filter supports the following command:
2849 @table @option
2850 @item reinit
2851 Modify the hue and/or the saturation of the input video.
2852 The command accepts the same named options and syntax than when calling the
2853 filter from the command-line.
2854
2855 If a parameter is omitted, it is kept at its current value.
2856 @end table
2857
2858 @section idet
2859
2860 Interlaceing detect filter. This filter tries to detect if the input is
2861 interlaced or progressive. Top or bottom field first.
2862
2863 @section kerndeint
2864
2865 Deinterlace input video by applying Donald Graft's adaptive kernel
2866 deinterling. Work on interlaced parts of a video to produce
2867 progressive frames.
2868
2869 This filter accepts parameters as a list of @var{key}=@var{value}
2870 pairs, separated by ":". If the key of the first options is omitted,
2871 the arguments are interpreted according to the following syntax:
2872 @var{thresh}:@var{map}:@var{order}:@var{sharp}:@var{twoway}.
2873
2874 The description of the accepted parameters follows.
2875
2876 @table @option
2877 @item thresh
2878 Set the threshold which affects the filter's tolerance when
2879 determining if a pixel line must be processed. It must be an integer
2880 in the range [0,255] and defaults to 10. A value of 0 will result in
2881 applying the process on every pixels.
2882
2883 @item map
2884 Paint pixels exceeding the threshold value to white if set to 1.
2885 Default is 0.
2886
2887 @item order
2888 Set the fields order. Swap fields if set to 1, leave fields alone if
2889 0. Default is 0.
2890
2891 @item sharp
2892 Enable additional sharpening if set to 1. Default is 0.
2893
2894 @item twoway
2895 Enable twoway sharpening if set to 1. Default is 0.
2896 @end table
2897
2898 @subsection Examples
2899
2900 @itemize
2901 @item
2902 Apply default values:
2903 @example
2904 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
2905 @end example
2906
2907 @item
2908 Enable additional sharpening:
2909 @example
2910 kerndeint=sharp=1
2911 @end example
2912
2913 @item
2914 Paint processed pixels in white:
2915 @example
2916 kerndeint=map=1
2917 @end example
2918 @end itemize
2919
2920 @section lut, lutrgb, lutyuv
2921
2922 Compute a look-up table for binding each pixel component input value
2923 to an output value, and apply it to input video.
2924
2925 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
2926 to an RGB input video.
2927
2928 These filters accept in input a ":"-separated list of options, which
2929 specify the expressions used for computing the lookup table for the
2930 corresponding pixel component values.
2931
2932 The @var{lut} filter requires either YUV or RGB pixel formats in
2933 input, and accepts the options:
2934 @table @option
2935 @item @var{c0} (first  pixel component)
2936 @item @var{c1} (second pixel component)
2937 @item @var{c2} (third  pixel component)
2938 @item @var{c3} (fourth pixel component, corresponds to the alpha component)
2939 @end table
2940
2941 The exact component associated to each option depends on the format in
2942 input.
2943
2944 The @var{lutrgb} filter requires RGB pixel formats in input, and
2945 accepts the options:
2946 @table @option
2947 @item @var{r} (red component)
2948 @item @var{g} (green component)
2949 @item @var{b} (blue component)
2950 @item @var{a} (alpha component)
2951 @end table
2952
2953 The @var{lutyuv} filter requires YUV pixel formats in input, and
2954 accepts the options:
2955 @table @option
2956 @item @var{y} (Y/luminance component)
2957 @item @var{u} (U/Cb component)
2958 @item @var{v} (V/Cr component)
2959 @item @var{a} (alpha component)
2960 @end table
2961
2962 The expressions can contain the following constants and functions:
2963
2964 @table @option
2965 @item w, h
2966 the input width and height
2967
2968 @item val
2969 input value for the pixel component
2970
2971 @item clipval
2972 the input value clipped in the @var{minval}-@var{maxval} range
2973
2974 @item maxval
2975 maximum value for the pixel component
2976
2977 @item minval
2978 minimum value for the pixel component
2979
2980 @item negval
2981 the negated value for the pixel component value clipped in the
2982 @var{minval}-@var{maxval} range , it corresponds to the expression
2983 "maxval-clipval+minval"
2984
2985 @item clip(val)
2986 the computed value in @var{val} clipped in the
2987 @var{minval}-@var{maxval} range
2988
2989 @item gammaval(gamma)
2990 the computed gamma correction value of the pixel component value
2991 clipped in the @var{minval}-@var{maxval} range, corresponds to the
2992 expression
2993 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
2994
2995 @end table
2996
2997 All expressions default to "val".
2998
2999 Some examples follow:
3000 @example
3001 # negate input video
3002 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
3003 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
3004
3005 # the above is the same as
3006 lutrgb="r=negval:g=negval:b=negval"
3007 lutyuv="y=negval:u=negval:v=negval"
3008
3009 # negate luminance
3010 lutyuv=y=negval
3011
3012 # remove chroma components, turns the video into a graytone image
3013 lutyuv="u=128:v=128"
3014
3015 # apply a luma burning effect
3016 lutyuv="y=2*val"
3017
3018 # remove green and blue components
3019 lutrgb="g=0:b=0"
3020
3021 # set a constant alpha channel value on input
3022 format=rgba,lutrgb=a="maxval-minval/2"
3023
3024 # correct luminance gamma by a 0.5 factor
3025 lutyuv=y=gammaval(0.5)
3026 @end example
3027
3028 @section mp
3029
3030 Apply an MPlayer filter to the input video.
3031
3032 This filter provides a wrapper around most of the filters of
3033 MPlayer/MEncoder.
3034
3035 This wrapper is considered experimental. Some of the wrapped filters
3036 may not work properly and we may drop support for them, as they will
3037 be implemented natively into FFmpeg. Thus you should avoid
3038 depending on them when writing portable scripts.
3039
3040 The filters accepts the parameters:
3041 @var{filter_name}[:=]@var{filter_params}
3042
3043 @var{filter_name} is the name of a supported MPlayer filter,
3044 @var{filter_params} is a string containing the parameters accepted by
3045 the named filter.
3046
3047 The list of the currently supported filters follows:
3048 @table @var
3049 @item detc
3050 @item dint
3051 @item divtc
3052 @item down3dright
3053 @item dsize
3054 @item eq2
3055 @item eq
3056 @item fil
3057 @item fspp
3058 @item harddup
3059 @item il
3060 @item ilpack
3061 @item ivtc
3062 @item kerndeint
3063 @item mcdeint
3064 @item noise
3065 @item ow
3066 @item perspective
3067 @item phase
3068 @item pp7
3069 @item pullup
3070 @item qp
3071 @item sab
3072 @item softpulldown
3073 @item softskip
3074 @item spp
3075 @item telecine
3076 @item tinterlace
3077 @item unsharp
3078 @item uspp
3079 @end table
3080
3081 The parameter syntax and behavior for the listed filters are the same
3082 of the corresponding MPlayer filters. For detailed instructions check
3083 the "VIDEO FILTERS" section in the MPlayer manual.
3084
3085 Some examples follow:
3086 @itemize
3087 @item
3088 Adjust gamma, brightness, contrast:
3089 @example
3090 mp=eq2=1.0:2:0.5
3091 @end example
3092
3093 @item
3094 Add temporal noise to input video:
3095 @example
3096 mp=noise=20t
3097 @end example
3098 @end itemize
3099
3100 See also mplayer(1), @url{http://www.mplayerhq.hu/}.
3101
3102 @section negate
3103
3104 Negate input video.
3105
3106 This filter accepts an integer in input, if non-zero it negates the
3107 alpha component (if available). The default value in input is 0.
3108
3109 @section noformat
3110
3111 Force libavfilter not to use any of the specified pixel formats for the
3112 input to the next filter.
3113
3114 The filter accepts a list of pixel format names, separated by ":",
3115 for example "yuv420p:monow:rgb24".
3116
3117 Some examples follow:
3118 @example
3119 # force libavfilter to use a format different from "yuv420p" for the
3120 # input to the vflip filter
3121 noformat=yuv420p,vflip
3122
3123 # convert the input video to any of the formats not contained in the list
3124 noformat=yuv420p:yuv444p:yuv410p
3125 @end example
3126
3127 @section null
3128
3129 Pass the video source unchanged to the output.
3130
3131 @section ocv
3132
3133 Apply video transform using libopencv.
3134
3135 To enable this filter install libopencv library and headers and
3136 configure FFmpeg with @code{--enable-libopencv}.
3137
3138 The filter takes the parameters: @var{filter_name}@{:=@}@var{filter_params}.
3139
3140 @var{filter_name} is the name of the libopencv filter to apply.
3141
3142 @var{filter_params} specifies the parameters to pass to the libopencv
3143 filter. If not specified the default values are assumed.
3144
3145 Refer to the official libopencv documentation for more precise
3146 information:
3147 @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
3148
3149 Follows the list of supported libopencv filters.
3150
3151 @anchor{dilate}
3152 @subsection dilate
3153
3154 Dilate an image by using a specific structuring element.
3155 This filter corresponds to the libopencv function @code{cvDilate}.
3156
3157 It accepts the parameters: @var{struct_el}:@var{nb_iterations}.
3158
3159 @var{struct_el} represents a structuring element, and has the syntax:
3160 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
3161
3162 @var{cols} and @var{rows} represent the number of columns and rows of
3163 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
3164 point, and @var{shape} the shape for the structuring element, and
3165 can be one of the values "rect", "cross", "ellipse", "custom".
3166
3167 If the value for @var{shape} is "custom", it must be followed by a
3168 string of the form "=@var{filename}". The file with name
3169 @var{filename} is assumed to represent a binary image, with each
3170 printable character corresponding to a bright pixel. When a custom
3171 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
3172 or columns and rows of the read file are assumed instead.
3173
3174 The default value for @var{struct_el} is "3x3+0x0/rect".
3175
3176 @var{nb_iterations} specifies the number of times the transform is
3177 applied to the image, and defaults to 1.
3178
3179 Follow some example:
3180 @example
3181 # use the default values
3182 ocv=dilate
3183
3184 # dilate using a structuring element with a 5x5 cross, iterate two times
3185 ocv=dilate=5x5+2x2/cross:2
3186
3187 # read the shape from the file diamond.shape, iterate two times
3188 # the file diamond.shape may contain a pattern of characters like this:
3189 #   *
3190 #  ***
3191 # *****
3192 #  ***
3193 #   *
3194 # the specified cols and rows are ignored (but not the anchor point coordinates)
3195 ocv=0x0+2x2/custom=diamond.shape:2
3196 @end example
3197
3198 @subsection erode
3199
3200 Erode an image by using a specific structuring element.
3201 This filter corresponds to the libopencv function @code{cvErode}.
3202
3203 The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
3204 with the same syntax and semantics as the @ref{dilate} filter.
3205
3206 @subsection smooth
3207
3208 Smooth the input video.
3209
3210 The filter takes the following parameters:
3211 @var{type}:@var{param1}:@var{param2}:@var{param3}:@var{param4}.
3212
3213 @var{type} is the type of smooth filter to apply, and can be one of
3214 the following values: "blur", "blur_no_scale", "median", "gaussian",
3215 "bilateral". The default value is "gaussian".
3216
3217 @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
3218 parameters whose meanings depend on smooth type. @var{param1} and
3219 @var{param2} accept integer positive values or 0, @var{param3} and
3220 @var{param4} accept float values.
3221
3222 The default value for @var{param1} is 3, the default value for the
3223 other parameters is 0.
3224
3225 These parameters correspond to the parameters assigned to the
3226 libopencv function @code{cvSmooth}.
3227
3228 @anchor{overlay}
3229 @section overlay
3230
3231 Overlay one video on top of another.
3232
3233 It takes two inputs and one output, the first input is the "main"
3234 video on which the second input is overlayed.
3235
3236 This filter accepts a list of @var{key}=@var{value} pairs as argument,
3237 separated by ":". If the key of the first options is omitted, the
3238 arguments are interpreted according to the syntax @var{x}:@var{y}.
3239
3240 A description of the accepted options follows.
3241
3242 @table @option
3243 @item x, y
3244 Set the expression for the x and y coordinates of the overlayed video
3245 on the main video. Default value is 0.
3246
3247 The @var{x} and @var{y} expressions can contain the following
3248 parameters:
3249 @table @option
3250 @item main_w, main_h
3251 main input width and height
3252
3253 @item W, H
3254 same as @var{main_w} and @var{main_h}
3255
3256 @item overlay_w, overlay_h
3257 overlay input width and height
3258
3259 @item w, h
3260 same as @var{overlay_w} and @var{overlay_h}
3261 @end table
3262
3263 @item rgb
3264 If set to 1, force the filter to accept inputs in the RGB
3265 color space. Default value is 0.
3266 @end table
3267
3268 Be aware that frames are taken from each input video in timestamp
3269 order, hence, if their initial timestamps differ, it is a a good idea
3270 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
3271 have them begin in the same zero timestamp, as it does the example for
3272 the @var{movie} filter.
3273
3274 You can chain together more overlays but you should test the
3275 efficiency of such approach.
3276
3277 @subsection Examples
3278
3279 @itemize
3280 @item
3281 Draw the overlay at 10 pixels from the bottom right corner of the main
3282 video:
3283 @example
3284 overlay=main_w-overlay_w-10:main_h-overlay_h-10
3285 @end example
3286
3287 Using named options the example above becomes:
3288 @example
3289 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
3290 @end example
3291
3292 @item
3293 Insert a transparent PNG logo in the bottom left corner of the input,
3294 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
3295 @example
3296 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
3297 @end example
3298
3299 @item
3300 Insert 2 different transparent PNG logos (second logo on bottom
3301 right corner) using the @command{ffmpeg} tool:
3302 @example
3303 ffmpeg -i input -i logo1 -i logo2 -filter_complex 'overlay=10:H-h-10,overlay=W-w-10:H-h-10' output
3304 @end example
3305
3306 @item
3307 Add a transparent color layer on top of the main video, WxH specifies
3308 the size of the main input to the overlay filter:
3309 @example
3310 color=red@@.3:WxH [over]; [in][over] overlay [out]
3311 @end example
3312
3313 @item
3314 Play an original video and a filtered version (here with the deshake
3315 filter) side by side using the @command{ffplay} tool:
3316 @example
3317 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
3318 @end example
3319
3320 The above command is the same as:
3321 @example
3322 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
3323 @end example
3324
3325 @item
3326 Chain several overlays in cascade:
3327 @example
3328 nullsrc=s=200x200 [bg];
3329 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
3330 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
3331 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
3332 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
3333 [in3] null,       [mid2] overlay=100:100 [out0]
3334 @end example
3335
3336 @end itemize
3337
3338 @section pad
3339
3340 Add paddings to the input image, and places the original input at the
3341 given coordinates @var{x}, @var{y}.
3342
3343 It accepts the following parameters:
3344 @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
3345
3346 The parameters @var{width}, @var{height}, @var{x}, and @var{y} are
3347 expressions containing the following constants:
3348
3349 @table @option
3350 @item in_w, in_h
3351 the input video width and height
3352
3353 @item iw, ih
3354 same as @var{in_w} and @var{in_h}
3355
3356 @item out_w, out_h
3357 the output width and height, that is the size of the padded area as
3358 specified by the @var{width} and @var{height} expressions
3359
3360 @item ow, oh
3361 same as @var{out_w} and @var{out_h}
3362
3363 @item x, y
3364 x and y offsets as specified by the @var{x} and @var{y}
3365 expressions, or NAN if not yet specified
3366
3367 @item a
3368 same as @var{iw} / @var{ih}
3369
3370 @item sar
3371 input sample aspect ratio
3372
3373 @item dar
3374 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
3375
3376 @item hsub, vsub
3377 horizontal and vertical chroma subsample values. For example for the
3378 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3379 @end table
3380
3381 Follows the description of the accepted parameters.
3382
3383 @table @option
3384 @item width, height
3385
3386 Specify the size of the output image with the paddings added. If the
3387 value for @var{width} or @var{height} is 0, the corresponding input size
3388 is used for the output.
3389
3390 The @var{width} expression can reference the value set by the
3391 @var{height} expression, and vice versa.
3392
3393 The default value of @var{width} and @var{height} is 0.
3394
3395 @item x, y
3396
3397 Specify the offsets where to place the input image in the padded area
3398 with respect to the top/left border of the output image.
3399
3400 The @var{x} expression can reference the value set by the @var{y}
3401 expression, and vice versa.
3402
3403 The default value of @var{x} and @var{y} is 0.
3404
3405 @item color
3406
3407 Specify the color of the padded area, it can be the name of a color
3408 (case insensitive match) or a 0xRRGGBB[AA] sequence.
3409
3410 The default value of @var{color} is "black".
3411
3412 @end table
3413
3414 @subsection Examples
3415
3416 @itemize
3417 @item
3418 Add paddings with color "violet" to the input video. Output video
3419 size is 640x480, the top-left corner of the input video is placed at
3420 column 0, row 40:
3421 @example
3422 pad=640:480:0:40:violet
3423 @end example
3424
3425 @item
3426 Pad the input to get an output with dimensions increased by 3/2,
3427 and put the input video at the center of the padded area:
3428 @example
3429 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
3430 @end example
3431
3432 @item
3433 Pad the input to get a squared output with size equal to the maximum
3434 value between the input width and height, and put the input video at
3435 the center of the padded area:
3436 @example
3437 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
3438 @end example
3439
3440 @item
3441 Pad the input to get a final w/h ratio of 16:9:
3442 @example
3443 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
3444 @end example
3445
3446 @item
3447 In case of anamorphic video, in order to set the output display aspect
3448 correctly, it is necessary to use @var{sar} in the expression,
3449 according to the relation:
3450 @example
3451 (ih * X / ih) * sar = output_dar
3452 X = output_dar / sar
3453 @end example
3454
3455 Thus the previous example needs to be modified to:
3456 @example
3457 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
3458 @end example
3459
3460 @item
3461 Double output size and put the input video in the bottom-right
3462 corner of the output padded area:
3463 @example
3464 pad="2*iw:2*ih:ow-iw:oh-ih"
3465 @end example
3466 @end itemize
3467
3468 @section pixdesctest
3469
3470 Pixel format descriptor test filter, mainly useful for internal
3471 testing. The output video should be equal to the input video.
3472
3473 For example:
3474 @example
3475 format=monow, pixdesctest
3476 @end example
3477
3478 can be used to test the monowhite pixel format descriptor definition.
3479
3480 @section pp
3481
3482 Enable the specified chain of postprocessing subfilters using libpostproc. This
3483 library should be automatically selected with a GPL build (@code{--enable-gpl}).
3484 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
3485 Each subfilter and some options have a short and a long name that can be used
3486 interchangeably, i.e. dr/dering are the same.
3487
3488 All subfilters share common options to determine their scope:
3489
3490 @table @option
3491 @item a/autoq
3492 Honor the quality commands for this subfilter.
3493
3494 @item c/chrom
3495 Do chrominance filtering, too (default).
3496
3497 @item y/nochrom
3498 Do luminance filtering only (no chrominance).
3499
3500 @item n/noluma
3501 Do chrominance filtering only (no luminance).
3502 @end table
3503
3504 These options can be appended after the subfilter name, separated by a ':'.
3505
3506 Available subfilters are:
3507
3508 @table @option
3509 @item hb/hdeblock[:difference[:flatness]]
3510 Horizontal deblocking filter
3511 @table @option
3512 @item difference
3513 Difference factor where higher values mean more deblocking (default: @code{32}).
3514 @item flatness
3515 Flatness threshold where lower values mean more deblocking (default: @code{39}).
3516 @end table
3517
3518 @item vb/vdeblock[:difference[:flatness]]
3519 Vertical deblocking filter
3520 @table @option
3521 @item difference
3522 Difference factor where higher values mean more deblocking (default: @code{32}).
3523 @item flatness
3524 Flatness threshold where lower values mean more deblocking (default: @code{39}).
3525 @end table
3526
3527 @item ha/hadeblock[:difference[:flatness]]
3528 Accurate horizontal deblocking filter
3529 @table @option
3530 @item difference
3531 Difference factor where higher values mean more deblocking (default: @code{32}).
3532 @item flatness
3533 Flatness threshold where lower values mean more deblocking (default: @code{39}).
3534 @end table
3535
3536 @item va/vadeblock[:difference[:flatness]]
3537 Accurate vertical deblocking filter
3538 @table @option
3539 @item difference
3540 Difference factor where higher values mean more deblocking (default: @code{32}).
3541 @item flatness
3542 Flatness threshold where lower values mean more deblocking (default: @code{39}).
3543 @end table
3544 @end table
3545
3546 The horizontal and vertical deblocking filters share the difference and
3547 flatness values so you cannot set different horizontal and vertical
3548 thresholds.
3549
3550 @table @option
3551 @item h1/x1hdeblock
3552 Experimental horizontal deblocking filter
3553
3554 @item v1/x1vdeblock
3555 Experimental vertical deblocking filter
3556
3557 @item dr/dering
3558 Deringing filter
3559
3560 @item tn/tmpnoise[:threshold1[:threshold2[:threshold3]]], temporal noise reducer
3561 @table @option
3562 @item threshold1
3563 larger -> stronger filtering
3564 @item threshold2
3565 larger -> stronger filtering
3566 @item threshold3
3567 larger -> stronger filtering
3568 @end table
3569
3570 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
3571 @table @option
3572 @item f/fullyrange
3573 Stretch luminance to @code{0-255}.
3574 @end table
3575
3576 @item lb/linblenddeint
3577 Linear blend deinterlacing filter that deinterlaces the given block by
3578 filtering all lines with a @code{(1 2 1)} filter.
3579
3580 @item li/linipoldeint
3581 Linear interpolating deinterlacing filter that deinterlaces the given block by
3582 linearly interpolating every second line.
3583
3584 @item ci/cubicipoldeint
3585 Cubic interpolating deinterlacing filter deinterlaces the given block by
3586 cubically interpolating every second line.
3587
3588 @item md/mediandeint
3589 Median deinterlacing filter that deinterlaces the given block by applying a
3590 median filter to every second line.
3591
3592 @item fd/ffmpegdeint
3593 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
3594 second line with a @code{(-1 4 2 4 -1)} filter.
3595
3596 @item l5/lowpass5
3597 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
3598 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
3599
3600 @item fq/forceQuant[:quantizer]
3601 Overrides the quantizer table from the input with the constant quantizer you
3602 specify.
3603 @table @option
3604 @item quantizer
3605 Quantizer to use
3606 @end table
3607
3608 @item de/default
3609 Default pp filter combination (@code{hb:a,vb:a,dr:a})
3610
3611 @item fa/fast
3612 Fast pp filter combination (@code{h1:a,v1:a,dr:a})
3613
3614 @item ac
3615 High quality pp filter combination (@code{ha:a:128:7,va:a,dr:a})
3616 @end table
3617
3618 @subsection Examples
3619
3620 @itemize
3621 @item
3622 Apply horizontal and vertical deblocking, deringing and automatic
3623 brightness/contrast:
3624 @example
3625 pp=hb/vb/dr/al
3626 @end example
3627
3628 @item
3629 Apply default filters without brightness/contrast correction:
3630 @example
3631 pp=de/-al
3632 @end example
3633
3634 @item
3635 Apply default filters and temporal denoiser:
3636 @example
3637 pp=default/tmpnoise:1:2:3
3638 @end example
3639
3640 @item
3641 Apply deblocking on luminance only, and switch vertical deblocking on or off
3642 automatically depending on available CPU time:
3643 @example
3644 pp=hb:y/vb:a
3645 @end example
3646 @end itemize
3647
3648 @section removelogo
3649
3650 Suppress a TV station logo, using an image file to determine which
3651 pixels comprise the logo. It works by filling in the pixels that
3652 comprise the logo with neighboring pixels.
3653
3654 This filter requires one argument which specifies the filter bitmap
3655 file, which can be any image format supported by libavformat. The
3656 width and height of the image file must match those of the video
3657 stream being processed.
3658
3659 Pixels in the provided bitmap image with a value of zero are not
3660 considered part of the logo, non-zero pixels are considered part of
3661 the logo. If you use white (255) for the logo and black (0) for the
3662 rest, you will be safe. For making the filter bitmap, it is
3663 recommended to take a screen capture of a black frame with the logo
3664 visible, and then using a threshold filter followed by the erode
3665 filter once or twice.
3666
3667 If needed, little splotches can be fixed manually. Remember that if
3668 logo pixels are not covered, the filter quality will be much
3669 reduced. Marking too many pixels as part of the logo does not hurt as
3670 much, but it will increase the amount of blurring needed to cover over
3671 the image and will destroy more information than necessary, and extra
3672 pixels will slow things down on a large logo.
3673
3674 @section scale
3675
3676 Scale (resize) the input video, using the libswscale library.
3677
3678 The scale filter forces the output display aspect ratio to be the same
3679 of the input, by changing the output sample aspect ratio.
3680
3681 This filter accepts a list of named options in the form of
3682 @var{key}=@var{value} pairs separated by ":". If the key for the first
3683 two options is not specified, the assumed keys for the first two
3684 values are @code{w} and @code{h}. If the first option has no key and
3685 can be interpreted like a video size specification, it will be used
3686 to set the video size.
3687
3688 A description of the accepted options follows.
3689
3690 @table @option
3691 @item width, w
3692 Set the video width expression, default value is @code{iw}. See below
3693 for the list of accepted constants.
3694
3695 @item height, h
3696 Set the video heiht expression, default value is @code{ih}.
3697 See below for the list of accepted constants.
3698
3699 @item interl
3700 Set the interlacing. It accepts the following values:
3701
3702 @table @option
3703 @item 1
3704 force interlaced aware scaling
3705
3706 @item 0
3707 do not apply interlaced scaling
3708
3709 @item -1
3710 select interlaced aware scaling depending on whether the source frames
3711 are flagged as interlaced or not
3712 @end table
3713
3714 Default value is @code{0}.
3715
3716 @item flags
3717 Set libswscale scaling flags. If not explictly specified the filter
3718 applies a bilinear scaling algorithm.
3719
3720 @item size, s
3721 Set the video size, the value must be a valid abbreviation or in the
3722 form @var{width}x@var{height}.
3723 @end table
3724
3725 The values of the @var{w} and @var{h} options are expressions
3726 containing the following constants:
3727
3728 @table @option
3729 @item in_w, in_h
3730 the input width and height
3731
3732 @item iw, ih
3733 same as @var{in_w} and @var{in_h}
3734
3735 @item out_w, out_h
3736 the output (cropped) width and height
3737
3738 @item ow, oh
3739 same as @var{out_w} and @var{out_h}
3740
3741 @item a
3742 same as @var{iw} / @var{ih}
3743
3744 @item sar
3745 input sample aspect ratio
3746
3747 @item dar
3748 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
3749
3750 @item hsub, vsub
3751 horizontal and vertical chroma subsample values. For example for the
3752 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3753 @end table
3754
3755 If the input image format is different from the format requested by
3756 the next filter, the scale filter will convert the input to the
3757 requested format.
3758
3759 If the value for @var{width} or @var{height} is 0, the respective input
3760 size is used for the output.
3761
3762 If the value for @var{width} or @var{height} is -1, the scale filter will
3763 use, for the respective output size, a value that maintains the aspect
3764 ratio of the input image.
3765
3766 @subsection Examples
3767
3768 @itemize
3769 @item
3770 Scale the input video to a size of 200x100:
3771 @example
3772 scale=200:100
3773 @end example
3774
3775 This is equivalent to:
3776 @example
3777 scale=w=200:h=100
3778 @end example
3779
3780 or:
3781 @example
3782 scale=200x100
3783 @end example
3784
3785 @item
3786 Specify a size abbreviation for the output size:
3787 @example
3788 scale=qcif
3789 @end example
3790
3791 which can also be written as:
3792 @example
3793 scale=size=qcif
3794 @end example
3795
3796 @item
3797 Scale the input to 2x:
3798 @example
3799 scale=2*iw:2*ih
3800 @end example
3801
3802 @item
3803 The above is the same as:
3804 @example
3805 scale=2*in_w:2*in_h
3806 @end example
3807
3808 @item
3809 Scale the input to 2x with forced interlaced scaling:
3810 @example
3811 scale=2*iw:2*ih:interl=1
3812 @end example
3813
3814 @item
3815 Scale the input to half size:
3816 @example
3817 scale=iw/2:ih/2
3818 @end example
3819
3820 @item
3821 Increase the width, and set the height to the same size:
3822 @example
3823 scale=3/2*iw:ow
3824 @end example
3825
3826 @item
3827 Seek for Greek harmony:
3828 @example
3829 scale=iw:1/PHI*iw
3830 scale=ih*PHI:ih
3831 @end example
3832
3833 @item
3834 Increase the height, and set the width to 3/2 of the height:
3835 @example
3836 scale=3/2*oh:3/5*ih
3837 @end example
3838
3839 @item
3840 Increase the size, but make the size a multiple of the chroma:
3841 @example
3842 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
3843 @end example
3844
3845 @item
3846 Increase the width to a maximum of 500 pixels, keep the same input
3847 aspect ratio:
3848 @example
3849 scale='min(500\, iw*3/2):-1'
3850 @end example
3851 @end itemize
3852
3853 @section setdar, setsar
3854
3855 The @code{setdar} filter sets the Display Aspect Ratio for the filter
3856 output video.
3857
3858 This is done by changing the specified Sample (aka Pixel) Aspect
3859 Ratio, according to the following equation:
3860 @example
3861 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
3862 @end example
3863
3864 Keep in mind that the @code{setdar} filter does not modify the pixel
3865 dimensions of the video frame. Also the display aspect ratio set by
3866 this filter may be changed by later filters in the filterchain,
3867 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
3868 applied.
3869
3870 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
3871 the filter output video.
3872
3873 Note that as a consequence of the application of this filter, the
3874 output display aspect ratio will change according to the equation
3875 above.
3876
3877 Keep in mind that the sample aspect ratio set by the @code{setsar}
3878 filter may be changed by later filters in the filterchain, e.g. if
3879 another "setsar" or a "setdar" filter is applied.
3880
3881 The @code{setdar} and @code{setsar} filters accept a string in the
3882 form @var{num}:@var{den} expressing an aspect ratio, or the following
3883 named options, expressed as a sequence of @var{key}=@var{value} pairs,
3884 separated by ":".
3885
3886 @table @option
3887 @item max
3888 Set the maximum integer value to use for expressing numerator and
3889 denominator when reducing the expressed aspect ratio to a rational.
3890 Default value is @code{100}.
3891
3892 @item r, ratio:
3893 Set the aspect ratio used by the filter.
3894
3895 The parameter can be a floating point number string, an expression, or
3896 a string of the form @var{num}:@var{den}, where @var{num} and
3897 @var{den} are the numerator and denominator of the aspect ratio. If
3898 the parameter is not specified, it is assumed the value "0".
3899 In case the form "@var{num}:@var{den}" the @code{:} character should
3900 be escaped.
3901 @end table
3902
3903 If the keys are omitted in the named options list, the specifed values
3904 are assumed to be @var{ratio} and @var{max} in that order.
3905
3906 For example to change the display aspect ratio to 16:9, specify:
3907 @example
3908 setdar='16:9'
3909 @end example
3910
3911 The example above is equivalent to:
3912 @example
3913 setdar=1.77777
3914 @end example
3915
3916 To change the sample aspect ratio to 10:11, specify:
3917 @example
3918 setsar='10:11'
3919 @end example
3920
3921 To set a display aspect ratio of 16:9, and specify a maximum integer value of
3922 1000 in the aspect ratio reduction, use the command:
3923 @example
3924 setdar=ratio='16:9':max=1000
3925 @end example
3926
3927 @section setfield
3928
3929 Force field for the output video frame.
3930
3931 The @code{setfield} filter marks the interlace type field for the
3932 output frames. It does not change the input frame, but only sets the
3933 corresponding property, which affects how the frame is treated by
3934 following filters (e.g. @code{fieldorder} or @code{yadif}).
3935
3936 This filter accepts a single option @option{mode}, which can be
3937 specified either by setting @code{mode=VALUE} or setting the value
3938 alone. Available values are:
3939
3940 @table @samp
3941 @item auto
3942 Keep the same field property.
3943
3944 @item bff
3945 Mark the frame as bottom-field-first.
3946
3947 @item tff
3948 Mark the frame as top-field-first.
3949
3950 @item prog
3951 Mark the frame as progressive.
3952 @end table
3953
3954 @section showinfo
3955
3956 Show a line containing various information for each input video frame.
3957 The input video is not modified.
3958
3959 The shown line contains a sequence of key/value pairs of the form
3960 @var{key}:@var{value}.
3961
3962 A description of each shown parameter follows:
3963
3964 @table @option
3965 @item n
3966 sequential number of the input frame, starting from 0
3967
3968 @item pts
3969 Presentation TimeStamp of the input frame, expressed as a number of
3970 time base units. The time base unit depends on the filter input pad.
3971
3972 @item pts_time
3973 Presentation TimeStamp of the input frame, expressed as a number of
3974 seconds
3975
3976 @item pos
3977 position of the frame in the input stream, -1 if this information in
3978 unavailable and/or meaningless (for example in case of synthetic video)
3979
3980 @item fmt
3981 pixel format name
3982
3983 @item sar
3984 sample aspect ratio of the input frame, expressed in the form
3985 @var{num}/@var{den}
3986
3987 @item s
3988 size of the input frame, expressed in the form
3989 @var{width}x@var{height}
3990
3991 @item i
3992 interlaced mode ("P" for "progressive", "T" for top field first, "B"
3993 for bottom field first)
3994
3995 @item iskey
3996 1 if the frame is a key frame, 0 otherwise
3997
3998 @item type
3999 picture type of the input frame ("I" for an I-frame, "P" for a
4000 P-frame, "B" for a B-frame, "?" for unknown type).
4001 Check also the documentation of the @code{AVPictureType} enum and of
4002 the @code{av_get_picture_type_char} function defined in
4003 @file{libavutil/avutil.h}.
4004
4005 @item checksum
4006 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
4007
4008 @item plane_checksum
4009 Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
4010 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
4011 @end table
4012
4013 @section smartblur
4014
4015 Blur the input video without impacting the outlines.
4016
4017 The filter accepts the following parameters:
4018 @var{luma_radius}:@var{luma_strength}:@var{luma_threshold}[:@var{chroma_radius}:@var{chroma_strength}:@var{chroma_threshold}]
4019
4020 Parameters prefixed by @var{luma} indicate that they work on the
4021 luminance of the pixels whereas parameters prefixed by @var{chroma}
4022 refer to the chrominance of the pixels.
4023
4024 If the chroma parameters are not set, the luma parameters are used for
4025 either the luminance and the chrominance of the pixels.
4026
4027 @var{luma_radius} or @var{chroma_radius} must be a float number in the
4028 range [0.1,5.0] that specifies the variance of the gaussian filter
4029 used to blur the image (slower if larger).
4030
4031 @var{luma_strength} or @var{chroma_strength} must be a float number in
4032 the range [-1.0,1.0] that configures the blurring. A value included in
4033 [0.0,1.0] will blur the image whereas a value included in [-1.0,0.0]
4034 will sharpen the image.
4035
4036 @var{luma_threshold} or @var{chroma_threshold} must be an integer in
4037 the range [-30,30] that is used as a coefficient to determine whether
4038 a pixel should be blurred or not. A value of 0 will filter all the
4039 image, a value included in [0,30] will filter flat areas and a value
4040 included in [-30,0] will filter edges.
4041
4042 @anchor{subtitles}
4043 @section subtitles
4044
4045 Draw subtitles on top of input video using the libass library.
4046
4047 To enable compilation of this filter you need to configure FFmpeg with
4048 @code{--enable-libass}. This filter also requires a build with libavcodec and
4049 libavformat to convert the passed subtitles file to ASS (Advanced Substation
4050 Alpha) subtitles format.
4051
4052 This filter accepts the following named options, expressed as a
4053 sequence of @var{key}=@var{value} pairs, separated by ":".
4054
4055 @table @option
4056 @item filename, f
4057 Set the filename of the subtitle file to read. It must be specified.
4058
4059 @item original_size
4060 Specify the size of the original video, the video for which the ASS file
4061 was composed. Due to a misdesign in ASS aspect ratio arithmetic, this is
4062 necessary to correctly scale the fonts if the aspect ratio has been changed.
4063 @end table
4064
4065 If the first key is not specified, it is assumed that the first value
4066 specifies the @option{filename}.
4067
4068 For example, to render the file @file{sub.srt} on top of the input
4069 video, use the command:
4070 @example
4071 subtitles=sub.srt
4072 @end example
4073
4074 which is equivalent to:
4075 @example
4076 subtitles=filename=sub.srt
4077 @end example
4078
4079 @section split
4080
4081 Split input video into several identical outputs.
4082
4083 The filter accepts a single parameter which specifies the number of outputs. If
4084 unspecified, it defaults to 2.
4085
4086 For example
4087 @example
4088 ffmpeg -i INPUT -filter_complex split=5 OUTPUT
4089 @end example
4090 will create 5 copies of the input video.
4091
4092 For example:
4093 @example
4094 [in] split [splitout1][splitout2];
4095 [splitout1] crop=100:100:0:0    [cropout];
4096 [splitout2] pad=200:200:100:100 [padout];
4097 @end example
4098
4099 will create two separate outputs from the same input, one cropped and
4100 one padded.
4101
4102 @section super2xsai
4103
4104 Scale the input by 2x and smooth using the Super2xSaI (Scale and
4105 Interpolate) pixel art scaling algorithm.
4106
4107 Useful for enlarging pixel art images without reducing sharpness.
4108
4109 @section swapuv
4110 Swap U & V plane.
4111
4112 @section thumbnail
4113 Select the most representative frame in a given sequence of consecutive frames.
4114
4115 It accepts as argument the frames batch size to analyze (default @var{N}=100);
4116 in a set of @var{N} frames, the filter will pick one of them, and then handle
4117 the next batch of @var{N} frames until the end.
4118
4119 Since the filter keeps track of the whole frames sequence, a bigger @var{N}
4120 value will result in a higher memory usage, so a high value is not recommended.
4121
4122 The following example extract one picture each 50 frames:
4123 @example
4124 thumbnail=50
4125 @end example
4126
4127 Complete example of a thumbnail creation with @command{ffmpeg}:
4128 @example
4129 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
4130 @end example
4131
4132 @section tile
4133
4134 Tile several successive frames together.
4135
4136 It accepts a list of options in the form of @var{key}=@var{value} pairs
4137 separated by ":". A description of the accepted options follows.
4138
4139 @table @option
4140
4141 @item layout
4142 Set the grid size (i.e. the number of lines and columns) in the form
4143 "@var{w}x@var{h}".
4144
4145 @item margin
4146 Set the outer border margin in pixels.
4147
4148 @item padding
4149 Set the inner border thickness (i.e. the number of pixels between frames). For
4150 more advanced padding options (such as having different values for the edges),
4151 refer to the pad video filter.
4152
4153 @item nb_frames
4154 Set the maximum number of frames to render in the given area. It must be less
4155 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
4156 the area will be used.
4157
4158 @end table
4159
4160 Alternatively, the options can be specified as a flat string:
4161
4162 @var{layout}[:@var{nb_frames}[:@var{margin}[:@var{padding}]]]
4163
4164 For example, produce 8×8 PNG tiles of all keyframes (@option{-skip_frame
4165 nokey}) in a movie:
4166 @example
4167 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
4168 @end example
4169 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
4170 duplicating each output frame to accomodate the originally detected frame
4171 rate.
4172
4173 Another example to display @code{5} pictures in an area of @code{3x2} frames,
4174 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
4175 mixed flat and named options:
4176 @example
4177 tile=3x2:nb_frames=5:padding=7:margin=2
4178 @end example
4179
4180 @section tinterlace
4181
4182 Perform various types of temporal field interlacing.
4183
4184 Frames are counted starting from 1, so the first input frame is
4185 considered odd.
4186
4187 This filter accepts options in the form of @var{key}=@var{value} pairs
4188 separated by ":".
4189 Alternatively, the @var{mode} option can be specified as a value alone,
4190 optionally followed by a ":" and further ":" separated @var{key}=@var{value}
4191 pairs.
4192
4193 A description of the accepted options follows.
4194
4195 @table @option
4196
4197 @item mode
4198 Specify the mode of the interlacing. This option can also be specified
4199 as a value alone. See below for a list of values for this option.
4200
4201 Available values are:
4202
4203 @table @samp
4204 @item merge, 0
4205 Move odd frames into the upper field, even into the lower field,
4206 generating a double height frame at half framerate.
4207
4208 @item drop_odd, 1
4209 Only output even frames, odd frames are dropped, generating a frame with
4210 unchanged height at half framerate.
4211
4212 @item drop_even, 2
4213 Only output odd frames, even frames are dropped, generating a frame with
4214 unchanged height at half framerate.
4215
4216 @item pad, 3
4217 Expand each frame to full height, but pad alternate lines with black,
4218 generating a frame with double height at the same input framerate.
4219
4220 @item interleave_top, 4
4221 Interleave the upper field from odd frames with the lower field from
4222 even frames, generating a frame with unchanged height at half framerate.
4223
4224 @item interleave_bottom, 5
4225 Interleave the lower field from odd frames with the upper field from
4226 even frames, generating a frame with unchanged height at half framerate.
4227
4228 @item interlacex2, 6
4229 Double frame rate with unchanged height. Frames are inserted each
4230 containing the second temporal field from the previous input frame and
4231 the first temporal field from the next input frame. This mode relies on
4232 the top_field_first flag. Useful for interlaced video displays with no
4233 field synchronisation.
4234 @end table
4235
4236 Numeric values are deprecated but are accepted for backward
4237 compatibility reasons.
4238
4239 Default mode is @code{merge}.
4240
4241 @item flags
4242 Specify flags influencing the filter process.
4243
4244 Available value for @var{flags} is:
4245
4246 @table @option
4247 @item low_pass_filter, vlfp
4248 Enable vertical low-pass filtering in the filter.
4249 Vertical low-pass filtering is required when creating an interlaced
4250 destination from a progressive source which contains high-frequency
4251 vertical detail. Filtering will reduce interlace 'twitter' and Moire
4252 patterning.
4253
4254 Vertical low-pass filtering can only be enabled for @option{mode}
4255 @var{interleave_top} and @var{interleave_bottom}.
4256
4257 @end table
4258 @end table
4259
4260 @section transpose
4261
4262 Transpose rows with columns in the input video and optionally flip it.
4263
4264 The filter accepts parameters as a list of @var{key}=@var{value}
4265 pairs, separated by ':'. If the key of the first options is omitted,
4266 the arguments are interpreted according to the syntax
4267 @var{dir}:@var{passthrough}.
4268
4269 @table @option
4270 @item dir
4271 Specify the transposition direction. Can assume the following values:
4272
4273 @table @samp
4274 @item 0, 4
4275 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
4276 @example
4277 L.R     L.l
4278 . . ->  . .
4279 l.r     R.r
4280 @end example
4281
4282 @item 1, 5
4283 Rotate by 90 degrees clockwise, that is:
4284 @example
4285 L.R     l.L
4286 . . ->  . .
4287 l.r     r.R
4288 @end example
4289
4290 @item 2, 6
4291 Rotate by 90 degrees counterclockwise, that is:
4292 @example
4293 L.R     R.r
4294 . . ->  . .
4295 l.r     L.l
4296 @end example
4297
4298 @item 3, 7
4299 Rotate by 90 degrees clockwise and vertically flip, that is:
4300 @example
4301 L.R     r.R
4302 . . ->  . .
4303 l.r     l.L
4304 @end example
4305 @end table
4306
4307 For values between 4-7, the transposition is only done if the input
4308 video geometry is portrait and not landscape. These values are
4309 deprecated, the @code{passthrough} option should be used instead.
4310
4311 @item passthrough
4312 Do not apply the transposition if the input geometry matches the one
4313 specified by the specified value. It accepts the following values:
4314 @table @samp
4315 @item none
4316 Always apply transposition.
4317 @item portrait
4318 Preserve portrait geometry (when @var{height} >= @var{width}).
4319 @item landscape
4320 Preserve landscape geometry (when @var{width} >= @var{height}).
4321 @end table
4322
4323 Default value is @code{none}.
4324 @end table
4325
4326 For example to rotate by 90 degrees clockwise and preserve portrait
4327 layout:
4328 @example
4329 transpose=dir=1:passthrough=portrait
4330 @end example
4331
4332 The command above can also be specified as:
4333 @example
4334 transpose=1:portrait
4335 @end example
4336
4337 @section unsharp
4338
4339 Sharpen or blur the input video.
4340
4341 It accepts the following parameters:
4342 @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
4343
4344 Negative values for the amount will blur the input video, while positive
4345 values will sharpen. All parameters are optional and default to the
4346 equivalent of the string '5:5:1.0:5:5:0.0'.
4347
4348 @table @option
4349
4350 @item luma_msize_x
4351 Set the luma matrix horizontal size. It can be an integer between 3
4352 and 13, default value is 5.
4353
4354 @item luma_msize_y
4355 Set the luma matrix vertical size. It can be an integer between 3
4356 and 13, default value is 5.
4357
4358 @item luma_amount
4359 Set the luma effect strength. It can be a float number between -2.0
4360 and 5.0, default value is 1.0.
4361
4362 @item chroma_msize_x
4363 Set the chroma matrix horizontal size. It can be an integer between 3
4364 and 13, default value is 5.
4365
4366 @item chroma_msize_y
4367 Set the chroma matrix vertical size. It can be an integer between 3
4368 and 13, default value is 5.
4369
4370 @item chroma_amount
4371 Set the chroma effect strength. It can be a float number between -2.0
4372 and 5.0, default value is 0.0.
4373
4374 @end table
4375
4376 @example
4377 # Strong luma sharpen effect parameters
4378 unsharp=7:7:2.5
4379
4380 # Strong blur of both luma and chroma parameters
4381 unsharp=7:7:-2:7:7:-2
4382
4383 # Use the default values with @command{ffmpeg}
4384 ffmpeg -i in.avi -vf "unsharp" out.mp4
4385 @end example
4386
4387 @section vflip
4388
4389 Flip the input video vertically.
4390
4391 @example
4392 ffmpeg -i in.avi -vf "vflip" out.avi
4393 @end example
4394
4395 @section yadif
4396
4397 Deinterlace the input video ("yadif" means "yet another deinterlacing
4398 filter").
4399
4400 The filter accepts parameters as a list of @var{key}=@var{value}
4401 pairs, separated by ":". If the key of the first options is omitted,
4402 the arguments are interpreted according to syntax
4403 @var{mode}:@var{parity}:@var{deint}.
4404
4405 The description of the accepted parameters follows.
4406
4407 @table @option
4408 @item mode
4409 Specify the interlacing mode to adopt. Accept one of the following
4410 values:
4411
4412 @table @option
4413 @item 0, send_frame
4414 output 1 frame for each frame
4415 @item 1, send_field
4416 output 1 frame for each field
4417 @item 2, send_frame_nospatial
4418 like @code{send_frame} but skip spatial interlacing check
4419 @item 3, send_field_nospatial
4420 like @code{send_field} but skip spatial interlacing check
4421 @end table
4422
4423 Default value is @code{send_frame}.
4424
4425 @item parity
4426 Specify the picture field parity assumed for the input interlaced
4427 video. Accept one of the following values:
4428
4429 @table @option
4430 @item 0, tff
4431 assume top field first
4432 @item 1, bff
4433 assume bottom field first
4434 @item -1, auto
4435 enable automatic detection
4436 @end table
4437
4438 Default value is @code{auto}.
4439 If interlacing is unknown or decoder does not export this information,
4440 top field first will be assumed.
4441
4442 @item deint
4443 Specify which frames to deinterlace. Accept one of the following
4444 values:
4445
4446 @table @option
4447 @item 0, all
4448 deinterlace all frames
4449 @item 1, interlaced
4450 only deinterlace frames marked as interlaced
4451 @end table
4452
4453 Default value is @code{all}.
4454 @end table
4455
4456 @c man end VIDEO FILTERS
4457
4458 @chapter Video Sources
4459 @c man begin VIDEO SOURCES
4460
4461 Below is a description of the currently available video sources.
4462
4463 @section buffer
4464
4465 Buffer video frames, and make them available to the filter chain.
4466
4467 This source is mainly intended for a programmatic use, in particular
4468 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
4469
4470 It accepts a list of options in the form of @var{key}=@var{value} pairs
4471 separated by ":". A description of the accepted options follows.
4472
4473 @table @option
4474
4475 @item video_size
4476 Specify the size (width and height) of the buffered video frames.
4477
4478 @item pix_fmt
4479 A string representing the pixel format of the buffered video frames.
4480 It may be a number corresponding to a pixel format, or a pixel format
4481 name.
4482
4483 @item time_base
4484 Specify the timebase assumed by the timestamps of the buffered frames.
4485
4486 @item time_base
4487 Specify the frame rate expected for the video stream.
4488
4489 @item pixel_aspect
4490 Specify the sample aspect ratio assumed by the video frames.
4491
4492 @item sws_param
4493 Specify the optional parameters to be used for the scale filter which
4494 is automatically inserted when an input change is detected in the
4495 input size or format.
4496 @end table
4497
4498 For example:
4499 @example
4500 buffer=size=320x240:pix_fmt=yuv410p:time_base=1/24:pixel_aspect=1/1
4501 @end example
4502
4503 will instruct the source to accept video frames with size 320x240 and
4504 with format "yuv410p", assuming 1/24 as the timestamps timebase and
4505 square pixels (1:1 sample aspect ratio).
4506 Since the pixel format with name "yuv410p" corresponds to the number 6
4507 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
4508 this example corresponds to:
4509 @example
4510 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
4511 @end example
4512
4513 Alternatively, the options can be specified as a flat string, but this
4514 syntax is deprecated:
4515
4516 @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}]
4517
4518 @section cellauto
4519
4520 Create a pattern generated by an elementary cellular automaton.
4521
4522 The initial state of the cellular automaton can be defined through the
4523 @option{filename}, and @option{pattern} options. If such options are
4524 not specified an initial state is created randomly.
4525
4526 At each new frame a new row in the video is filled with the result of
4527 the cellular automaton next generation. The behavior when the whole
4528 frame is filled is defined by the @option{scroll} option.
4529
4530 This source accepts a list of options in the form of
4531 @var{key}=@var{value} pairs separated by ":". A description of the
4532 accepted options follows.
4533
4534 @table @option
4535 @item filename, f
4536 Read the initial cellular automaton state, i.e. the starting row, from
4537 the specified file.
4538 In the file, each non-whitespace character is considered an alive
4539 cell, a newline will terminate the row, and further characters in the
4540 file will be ignored.
4541
4542 @item pattern, p
4543 Read the initial cellular automaton state, i.e. the starting row, from
4544 the specified string.
4545
4546 Each non-whitespace character in the string is considered an alive
4547 cell, a newline will terminate the row, and further characters in the
4548 string will be ignored.
4549
4550 @item rate, r
4551 Set the video rate, that is the number of frames generated per second.
4552 Default is 25.
4553
4554 @item random_fill_ratio, ratio
4555 Set the random fill ratio for the initial cellular automaton row. It
4556 is a floating point number value ranging from 0 to 1, defaults to
4557 1/PHI.
4558
4559 This option is ignored when a file or a pattern is specified.
4560
4561 @item random_seed, seed
4562 Set the seed for filling randomly the initial row, must be an integer
4563 included between 0 and UINT32_MAX. If not specified, or if explicitly
4564 set to -1, the filter will try to use a good random seed on a best
4565 effort basis.
4566
4567 @item rule
4568 Set the cellular automaton rule, it is a number ranging from 0 to 255.
4569 Default value is 110.
4570
4571 @item size, s
4572 Set the size of the output video.
4573
4574 If @option{filename} or @option{pattern} is specified, the size is set
4575 by default to the width of the specified initial state row, and the
4576 height is set to @var{width} * PHI.
4577
4578 If @option{size} is set, it must contain the width of the specified
4579 pattern string, and the specified pattern will be centered in the
4580 larger row.
4581
4582 If a filename or a pattern string is not specified, the size value
4583 defaults to "320x518" (used for a randomly generated initial state).
4584
4585 @item scroll
4586 If set to 1, scroll the output upward when all the rows in the output
4587 have been already filled. If set to 0, the new generated row will be
4588 written over the top row just after the bottom row is filled.
4589 Defaults to 1.
4590
4591 @item start_full, full
4592 If set to 1, completely fill the output with generated rows before
4593 outputting the first frame.
4594 This is the default behavior, for disabling set the value to 0.
4595
4596 @item stitch
4597 If set to 1, stitch the left and right row edges together.
4598 This is the default behavior, for disabling set the value to 0.
4599 @end table
4600
4601 @subsection Examples
4602
4603 @itemize
4604 @item
4605 Read the initial state from @file{pattern}, and specify an output of
4606 size 200x400.
4607 @example
4608 cellauto=f=pattern:s=200x400
4609 @end example
4610
4611 @item
4612 Generate a random initial row with a width of 200 cells, with a fill
4613 ratio of 2/3:
4614 @example
4615 cellauto=ratio=2/3:s=200x200
4616 @end example
4617
4618 @item
4619 Create a pattern generated by rule 18 starting by a single alive cell
4620 centered on an initial row with width 100:
4621 @example
4622 cellauto=p=@@:s=100x400:full=0:rule=18
4623 @end example
4624
4625 @item
4626 Specify a more elaborated initial pattern:
4627 @example
4628 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
4629 @end example
4630
4631 @end itemize
4632
4633 @section mandelbrot
4634
4635 Generate a Mandelbrot set fractal, and progressively zoom towards the
4636 point specified with @var{start_x} and @var{start_y}.
4637
4638 This source accepts a list of options in the form of
4639 @var{key}=@var{value} pairs separated by ":". A description of the
4640 accepted options follows.
4641
4642 @table @option
4643
4644 @item end_pts
4645 Set the terminal pts value. Default value is 400.
4646
4647 @item end_scale
4648 Set the terminal scale value.
4649 Must be a floating point value. Default value is 0.3.
4650
4651 @item inner
4652 Set the inner coloring mode, that is the algorithm used to draw the
4653 Mandelbrot fractal internal region.
4654
4655 It shall assume one of the following values:
4656 @table @option
4657 @item black
4658 Set black mode.
4659 @item convergence
4660 Show time until convergence.
4661 @item mincol
4662 Set color based on point closest to the origin of the iterations.
4663 @item period
4664 Set period mode.
4665 @end table
4666
4667 Default value is @var{mincol}.
4668
4669 @item bailout
4670 Set the bailout value. Default value is 10.0.
4671
4672 @item maxiter
4673 Set the maximum of iterations performed by the rendering
4674 algorithm. Default value is 7189.
4675
4676 @item outer
4677 Set outer coloring mode.
4678 It shall assume one of following values:
4679 @table @option
4680 @item iteration_count
4681 Set iteration cound mode.
4682 @item normalized_iteration_count
4683 set normalized iteration count mode.
4684 @end table
4685 Default value is @var{normalized_iteration_count}.
4686
4687 @item rate, r
4688 Set frame rate, expressed as number of frames per second. Default
4689 value is "25".
4690
4691 @item size, s
4692 Set frame size. Default value is "640x480".
4693
4694 @item start_scale
4695 Set the initial scale value. Default value is 3.0.
4696
4697 @item start_x
4698 Set the initial x position. Must be a floating point value between
4699 -100 and 100. Default value is -0.743643887037158704752191506114774.
4700
4701 @item start_y
4702 Set the initial y position. Must be a floating point value between
4703 -100 and 100. Default value is -0.131825904205311970493132056385139.
4704 @end table
4705
4706 @section mptestsrc
4707
4708 Generate various test patterns, as generated by the MPlayer test filter.
4709
4710 The size of the generated video is fixed, and is 256x256.
4711 This source is useful in particular for testing encoding features.
4712
4713 This source accepts an optional sequence of @var{key}=@var{value} pairs,
4714 separated by ":". The description of the accepted options follows.
4715
4716 @table @option
4717
4718 @item rate, r
4719 Specify the frame rate of the sourced video, as the number of frames
4720 generated per second. It has to be a string in the format
4721 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
4722 number or a valid video frame rate abbreviation. The default value is
4723 "25".
4724
4725 @item duration, d
4726 Set the video duration of the sourced video. The accepted syntax is:
4727 @example
4728 [-]HH:MM:SS[.m...]
4729 [-]S+[.m...]
4730 @end example
4731 See also the function @code{av_parse_time()}.
4732
4733 If not specified, or the expressed duration is negative, the video is
4734 supposed to be generated forever.
4735
4736 @item test, t
4737
4738 Set the number or the name of the test to perform. Supported tests are:
4739 @table @option
4740 @item dc_luma
4741 @item dc_chroma
4742 @item freq_luma
4743 @item freq_chroma
4744 @item amp_luma
4745 @item amp_chroma
4746 @item cbp
4747 @item mv
4748 @item ring1
4749 @item ring2
4750 @item all
4751 @end table
4752
4753 Default value is "all", which will cycle through the list of all tests.
4754 @end table
4755
4756 For example the following:
4757 @example
4758 testsrc=t=dc_luma
4759 @end example
4760
4761 will generate a "dc_luma" test pattern.
4762
4763 @section frei0r_src
4764
4765 Provide a frei0r source.
4766
4767 To enable compilation of this filter you need to install the frei0r
4768 header and configure FFmpeg with @code{--enable-frei0r}.
4769
4770 The source supports the syntax:
4771 @example
4772 @var{size}:@var{rate}:@var{src_name}[@{=|:@}@var{param1}:@var{param2}:...:@var{paramN}]
4773 @end example
4774
4775 @var{size} is the size of the video to generate, may be a string of the
4776 form @var{width}x@var{height} or a frame size abbreviation.
4777 @var{rate} is the rate of the video to generate, may be a string of
4778 the form @var{num}/@var{den} or a frame rate abbreviation.
4779 @var{src_name} is the name to the frei0r source to load. For more
4780 information regarding frei0r and how to set the parameters read the
4781 section @ref{frei0r} in the description of the video filters.
4782
4783 For example, to generate a frei0r partik0l source with size 200x200
4784 and frame rate 10 which is overlayed on the overlay filter main input:
4785 @example
4786 frei0r_src=200x200:10:partik0l=1234 [overlay]; [in][overlay] overlay
4787 @end example
4788
4789 @section life
4790
4791 Generate a life pattern.
4792
4793 This source is based on a generalization of John Conway's life game.
4794
4795 The sourced input represents a life grid, each pixel represents a cell
4796 which can be in one of two possible states, alive or dead. Every cell
4797 interacts with its eight neighbours, which are the cells that are
4798 horizontally, vertically, or diagonally adjacent.
4799
4800 At each interaction the grid evolves according to the adopted rule,
4801 which specifies the number of neighbor alive cells which will make a
4802 cell stay alive or born. The @option{rule} option allows to specify
4803 the rule to adopt.
4804
4805 This source accepts a list of options in the form of
4806 @var{key}=@var{value} pairs separated by ":". A description of the
4807 accepted options follows.
4808
4809 @table @option
4810 @item filename, f
4811 Set the file from which to read the initial grid state. In the file,
4812 each non-whitespace character is considered an alive cell, and newline
4813 is used to delimit the end of each row.
4814
4815 If this option is not specified, the initial grid is generated
4816 randomly.
4817
4818 @item rate, r
4819 Set the video rate, that is the number of frames generated per second.
4820 Default is 25.
4821
4822 @item random_fill_ratio, ratio
4823 Set the random fill ratio for the initial random grid. It is a
4824 floating point number value ranging from 0 to 1, defaults to 1/PHI.
4825 It is ignored when a file is specified.
4826
4827 @item random_seed, seed
4828 Set the seed for filling the initial random grid, must be an integer
4829 included between 0 and UINT32_MAX. If not specified, or if explicitly
4830 set to -1, the filter will try to use a good random seed on a best
4831 effort basis.
4832
4833 @item rule
4834 Set the life rule.
4835
4836 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
4837 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
4838 @var{NS} specifies the number of alive neighbor cells which make a
4839 live cell stay alive, and @var{NB} the number of alive neighbor cells
4840 which make a dead cell to become alive (i.e. to "born").
4841 "s" and "b" can be used in place of "S" and "B", respectively.
4842
4843 Alternatively a rule can be specified by an 18-bits integer. The 9
4844 high order bits are used to encode the next cell state if it is alive
4845 for each number of neighbor alive cells, the low order bits specify
4846 the rule for "borning" new cells. Higher order bits encode for an
4847 higher number of neighbor cells.
4848 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
4849 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
4850
4851 Default value is "S23/B3", which is the original Conway's game of life
4852 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
4853 cells, and will born a new cell if there are three alive cells around
4854 a dead cell.
4855
4856 @item size, s
4857 Set the size of the output video.
4858
4859 If @option{filename} is specified, the size is set by default to the
4860 same size of the input file. If @option{size} is set, it must contain
4861 the size specified in the input file, and the initial grid defined in
4862 that file is centered in the larger resulting area.
4863
4864 If a filename is not specified, the size value defaults to "320x240"
4865 (used for a randomly generated initial grid).
4866
4867 @item stitch
4868 If set to 1, stitch the left and right grid edges together, and the
4869 top and bottom edges also. Defaults to 1.
4870
4871 @item mold
4872 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
4873 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
4874 value from 0 to 255.
4875
4876 @item life_color
4877 Set the color of living (or new born) cells.
4878
4879 @item death_color
4880 Set the color of dead cells. If @option{mold} is set, this is the first color
4881 used to represent a dead cell.
4882
4883 @item mold_color
4884 Set mold color, for definitely dead and moldy cells.
4885 @end table
4886
4887 @subsection Examples
4888
4889 @itemize
4890 @item
4891 Read a grid from @file{pattern}, and center it on a grid of size
4892 300x300 pixels:
4893 @example
4894 life=f=pattern:s=300x300
4895 @end example
4896
4897 @item
4898 Generate a random grid of size 200x200, with a fill ratio of 2/3:
4899 @example
4900 life=ratio=2/3:s=200x200
4901 @end example
4902
4903 @item
4904 Specify a custom rule for evolving a randomly generated grid:
4905 @example
4906 life=rule=S14/B34
4907 @end example
4908
4909 @item
4910 Full example with slow death effect (mold) using @command{ffplay}:
4911 @example
4912 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
4913 @end example
4914 @end itemize
4915
4916 @section color, nullsrc, rgbtestsrc, smptebars, testsrc
4917
4918 The @code{color} source provides an uniformly colored input.
4919
4920 The @code{nullsrc} source returns unprocessed video frames. It is
4921 mainly useful to be employed in analysis / debugging tools, or as the
4922 source for filters which ignore the input data.
4923
4924 The @code{rgbtestsrc} source generates an RGB test pattern useful for
4925 detecting RGB vs BGR issues. You should see a red, green and blue
4926 stripe from top to bottom.
4927
4928 The @code{smptebars} source generates a color bars pattern, based on
4929 the SMPTE Engineering Guideline EG 1-1990.
4930
4931 The @code{testsrc} source generates a test video pattern, showing a
4932 color pattern, a scrolling gradient and a timestamp. This is mainly
4933 intended for testing purposes.
4934
4935 These sources accept an optional sequence of @var{key}=@var{value} pairs,
4936 separated by ":". The description of the accepted options follows.
4937
4938 @table @option
4939
4940 @item color, c
4941 Specify the color of the source, only used in the @code{color}
4942 source. It can be the name of a color (case insensitive match) or a
4943 0xRRGGBB[AA] sequence, possibly followed by an alpha specifier. The
4944 default value is "black".
4945
4946 @item size, s
4947 Specify the size of the sourced video, it may be a string of the form
4948 @var{width}x@var{height}, or the name of a size abbreviation. The
4949 default value is "320x240".
4950
4951 @item rate, r
4952 Specify the frame rate of the sourced video, as the number of frames
4953 generated per second. It has to be a string in the format
4954 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
4955 number or a valid video frame rate abbreviation. The default value is
4956 "25".
4957
4958 @item sar
4959 Set the sample aspect ratio of the sourced video.
4960
4961 @item duration, d
4962 Set the video duration of the sourced video. The accepted syntax is:
4963 @example
4964 [-]HH[:MM[:SS[.m...]]]
4965 [-]S+[.m...]
4966 @end example
4967 See also the function @code{av_parse_time()}.
4968
4969 If not specified, or the expressed duration is negative, the video is
4970 supposed to be generated forever.
4971
4972 @item decimals, n
4973 Set the number of decimals to show in the timestamp, only used in the
4974 @code{testsrc} source.
4975
4976 The displayed timestamp value will correspond to the original
4977 timestamp value multiplied by the power of 10 of the specified
4978 value. Default value is 0.
4979 @end table
4980
4981 For example the following:
4982 @example
4983 testsrc=duration=5.3:size=qcif:rate=10
4984 @end example
4985
4986 will generate a video with a duration of 5.3 seconds, with size
4987 176x144 and a frame rate of 10 frames per second.
4988
4989 The following graph description will generate a red source
4990 with an opacity of 0.2, with size "qcif" and a frame rate of 10
4991 frames per second.
4992 @example
4993 color=c=red@@0.2:s=qcif:r=10
4994 @end example
4995
4996 If the input content is to be ignored, @code{nullsrc} can be used. The
4997 following command generates noise in the luminance plane by employing
4998 the @code{geq} filter:
4999 @example
5000 nullsrc=s=256x256, geq=random(1)*255:128:128
5001 @end example
5002
5003 @c man end VIDEO SOURCES
5004
5005 @chapter Video Sinks
5006 @c man begin VIDEO SINKS
5007
5008 Below is a description of the currently available video sinks.
5009
5010 @section buffersink
5011
5012 Buffer video frames, and make them available to the end of the filter
5013 graph.
5014
5015 This sink is mainly intended for a programmatic use, in particular
5016 through the interface defined in @file{libavfilter/buffersink.h}.
5017
5018 It does not require a string parameter in input, but you need to
5019 specify a pointer to a list of supported pixel formats terminated by
5020 -1 in the opaque parameter provided to @code{avfilter_init_filter}
5021 when initializing this sink.
5022
5023 @section nullsink
5024
5025 Null video sink, do absolutely nothing with the input video. It is
5026 mainly useful as a template and to be employed in analysis / debugging
5027 tools.
5028
5029 @c man end VIDEO SINKS
5030
5031 @chapter Multimedia Filters
5032 @c man begin MULTIMEDIA FILTERS
5033
5034 Below is a description of the currently available multimedia filters.
5035
5036 @section aselect, select
5037 Select frames to pass in output.
5038
5039 These filters accept a single option @option{expr} or @option{e}
5040 specifying the select expression, which can be specified either by
5041 specyfing @code{expr=VALUE} or specifying the expression
5042 alone.
5043
5044 The select expression is evaluated for each input frame. If the
5045 evaluation result is a non-zero value, the frame is selected and
5046 passed to the output, otherwise it is discarded.
5047
5048 The expression can contain the following constants:
5049
5050 @table @option
5051 @item n
5052 the sequential number of the filtered frame, starting from 0
5053
5054 @item selected_n
5055 the sequential number of the selected frame, starting from 0
5056
5057 @item prev_selected_n
5058 the sequential number of the last selected frame, NAN if undefined
5059
5060 @item TB
5061 timebase of the input timestamps
5062
5063 @item pts
5064 the PTS (Presentation TimeStamp) of the filtered video frame,
5065 expressed in @var{TB} units, NAN if undefined
5066
5067 @item t
5068 the PTS (Presentation TimeStamp) of the filtered video frame,
5069 expressed in seconds, NAN if undefined
5070
5071 @item prev_pts
5072 the PTS of the previously filtered video frame, NAN if undefined
5073
5074 @item prev_selected_pts
5075 the PTS of the last previously filtered video frame, NAN if undefined
5076
5077 @item prev_selected_t
5078 the PTS of the last previously selected video frame, NAN if undefined
5079
5080 @item start_pts
5081 the PTS of the first video frame in the video, NAN if undefined
5082
5083 @item start_t
5084 the time of the first video frame in the video, NAN if undefined
5085
5086 @item pict_type @emph{(video only)}
5087 the type of the filtered frame, can assume one of the following
5088 values:
5089 @table @option
5090 @item I
5091 @item P
5092 @item B
5093 @item S
5094 @item SI
5095 @item SP
5096 @item BI
5097 @end table
5098
5099 @item interlace_type @emph{(video only)}
5100 the frame interlace type, can assume one of the following values:
5101 @table @option
5102 @item PROGRESSIVE
5103 the frame is progressive (not interlaced)
5104 @item TOPFIRST
5105 the frame is top-field-first
5106 @item BOTTOMFIRST
5107 the frame is bottom-field-first
5108 @end table
5109
5110 @item consumed_sample_n @emph{(audio only)}
5111 the number of selected samples before the current frame
5112
5113 @item samples_n @emph{(audio only)}
5114 the number of samples in the current frame
5115
5116 @item sample_rate @emph{(audio only)}
5117 the input sample rate
5118
5119 @item key
5120 1 if the filtered frame is a key-frame, 0 otherwise
5121
5122 @item pos
5123 the position in the file of the filtered frame, -1 if the information
5124 is not available (e.g. for synthetic video)
5125
5126 @item scene @emph{(video only)}
5127 value between 0 and 1 to indicate a new scene; a low value reflects a low
5128 probability for the current frame to introduce a new scene, while a higher
5129 value means the current frame is more likely to be one (see the example below)
5130
5131 @end table
5132
5133 The default value of the select expression is "1".
5134
5135 @subsection Examples
5136
5137 @itemize
5138 @item
5139 Select all frames in input:
5140 @example
5141 select
5142 @end example
5143
5144 The example above is the same as:
5145 @example
5146 select=1
5147 @end example
5148
5149 @item
5150 Skip all frames:
5151 @example
5152 select=0
5153 @end example
5154
5155 @item
5156 Select only I-frames:
5157 @example
5158 select='eq(pict_type\,I)'
5159 @end example
5160
5161 @item
5162 Select one frame every 100:
5163 @example
5164 select='not(mod(n\,100))'
5165 @end example
5166
5167 @item
5168 Select only frames contained in the 10-20 time interval:
5169 @example
5170 select='gte(t\,10)*lte(t\,20)'
5171 @end example
5172
5173 @item
5174 Select only I frames contained in the 10-20 time interval:
5175 @example
5176 select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
5177 @end example
5178
5179 @item
5180 Select frames with a minimum distance of 10 seconds:
5181 @example
5182 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
5183 @end example
5184
5185 @item
5186 Use aselect to select only audio frames with samples number > 100:
5187 @example
5188 aselect='gt(samples_n\,100)'
5189 @end example
5190
5191 @item
5192 Create a mosaic of the first scenes:
5193 @example
5194 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
5195 @end example
5196
5197 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
5198 choice.
5199 @end itemize
5200
5201 @section asendcmd, sendcmd
5202
5203 Send commands to filters in the filtergraph.
5204
5205 These filters read commands to be sent to other filters in the
5206 filtergraph.
5207
5208 @code{asendcmd} must be inserted between two audio filters,
5209 @code{sendcmd} must be inserted between two video filters, but apart
5210 from that they act the same way.
5211
5212 The specification of commands can be provided in the filter arguments
5213 with the @var{commands} option, or in a file specified by the
5214 @var{filename} option.
5215
5216 These filters accept the following options:
5217 @table @option
5218 @item commands, c
5219 Set the commands to be read and sent to the other filters.
5220 @item filename, f
5221 Set the filename of the commands to be read and sent to the other
5222 filters.
5223 @end table
5224
5225 @subsection Commands syntax
5226
5227 A commands description consists of a sequence of interval
5228 specifications, comprising a list of commands to be executed when a
5229 particular event related to that interval occurs. The occurring event
5230 is typically the current frame time entering or leaving a given time
5231 interval.
5232
5233 An interval is specified by the following syntax:
5234 @example
5235 @var{START}[-@var{END}] @var{COMMANDS};
5236 @end example
5237
5238 The time interval is specified by the @var{START} and @var{END} times.
5239 @var{END} is optional and defaults to the maximum time.
5240
5241 The current frame time is considered within the specified interval if
5242 it is included in the interval [@var{START}, @var{END}), that is when
5243 the time is greater or equal to @var{START} and is lesser than
5244 @var{END}.
5245
5246 @var{COMMANDS} consists of a sequence of one or more command
5247 specifications, separated by ",", relating to that interval.  The
5248 syntax of a command specification is given by:
5249 @example
5250 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
5251 @end example
5252
5253 @var{FLAGS} is optional and specifies the type of events relating to
5254 the time interval which enable sending the specified command, and must
5255 be a non-null sequence of identifier flags separated by "+" or "|" and
5256 enclosed between "[" and "]".
5257
5258 The following flags are recognized:
5259 @table @option
5260 @item enter
5261 The command is sent when the current frame timestamp enters the
5262 specified interval. In other words, the command is sent when the
5263 previous frame timestamp was not in the given interval, and the
5264 current is.
5265
5266 @item leave
5267 The command is sent when the current frame timestamp leaves the
5268 specified interval. In other words, the command is sent when the
5269 previous frame timestamp was in the given interval, and the
5270 current is not.
5271 @end table
5272
5273 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
5274 assumed.
5275
5276 @var{TARGET} specifies the target of the command, usually the name of
5277 the filter class or a specific filter instance name.
5278
5279 @var{COMMAND} specifies the name of the command for the target filter.
5280
5281 @var{ARG} is optional and specifies the optional list of argument for
5282 the given @var{COMMAND}.
5283
5284 Between one interval specification and another, whitespaces, or
5285 sequences of characters starting with @code{#} until the end of line,
5286 are ignored and can be used to annotate comments.
5287
5288 A simplified BNF description of the commands specification syntax
5289 follows:
5290 @example
5291 @var{COMMAND_FLAG}  ::= "enter" | "leave"
5292 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
5293 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
5294 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
5295 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
5296 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
5297 @end example
5298
5299 @subsection Examples
5300
5301 @itemize
5302 @item
5303 Specify audio tempo change at second 4:
5304 @example
5305 asendcmd=c='4.0 atempo tempo 1.5',atempo
5306 @end example
5307
5308 @item
5309 Specify a list of drawtext and hue commands in a file.
5310 @example
5311 # show text in the interval 5-10
5312 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
5313          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
5314
5315 # desaturate the image in the interval 15-20
5316 15.0-20.0 [enter] hue reinit s=0,
5317           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
5318           [leave] hue reinit s=1,
5319           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
5320
5321 # apply an exponential saturation fade-out effect, starting from time 25
5322 25 [enter] hue s=exp(t-25)
5323 @end example
5324
5325 A filtergraph allowing to read and process the above command list
5326 stored in a file @file{test.cmd}, can be specified with:
5327 @example
5328 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
5329 @end example
5330 @end itemize
5331
5332 @anchor{setpts}
5333 @section asetpts, setpts
5334
5335 Change the PTS (presentation timestamp) of the input frames.
5336
5337 @code{asetpts} works on audio frames, @code{setpts} on video frames.
5338
5339 Accept in input an expression evaluated through the eval API, which
5340 can contain the following constants:
5341
5342 @table @option
5343 @item FRAME_RATE
5344 frame rate, only defined for constant frame-rate video
5345
5346 @item PTS
5347 the presentation timestamp in input
5348
5349 @item N
5350 the count of the input frame, starting from 0.
5351
5352 @item NB_CONSUMED_SAMPLES
5353 the number of consumed samples, not including the current frame (only
5354 audio)
5355
5356 @item NB_SAMPLES
5357 the number of samples in the current frame (only audio)
5358
5359 @item SAMPLE_RATE
5360 audio sample rate
5361
5362 @item STARTPTS
5363 the PTS of the first frame
5364
5365 @item STARTT
5366 the time in seconds of the first frame
5367
5368 @item INTERLACED
5369 tell if the current frame is interlaced
5370
5371 @item T
5372 the time in seconds of the current frame
5373
5374 @item TB
5375 the time base
5376
5377 @item POS
5378 original position in the file of the frame, or undefined if undefined
5379 for the current frame
5380
5381 @item PREV_INPTS
5382 previous input PTS
5383
5384 @item PREV_INT
5385 previous input time in seconds
5386
5387 @item PREV_OUTPTS
5388 previous output PTS
5389
5390 @item PREV_OUTT
5391 previous output time in seconds
5392 @end table
5393
5394 @subsection Examples
5395
5396 @itemize
5397 @item
5398 Start counting PTS from zero
5399 @example
5400 setpts=PTS-STARTPTS
5401 @end example
5402
5403 @item
5404 Apply fast motion effect:
5405 @example
5406 setpts=0.5*PTS
5407 @end example
5408
5409 @item
5410 Apply slow motion effect:
5411 @example
5412 setpts=2.0*PTS
5413 @end example
5414
5415 @item
5416 Set fixed rate of 25 frames per second:
5417 @example
5418 setpts=N/(25*TB)
5419 @end example
5420
5421 @item
5422 Set fixed rate 25 fps with some jitter:
5423 @example
5424 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
5425 @end example
5426
5427 @item
5428 Apply an offset of 10 seconds to the input PTS:
5429 @example
5430 setpts=PTS+10/TB
5431 @end example
5432 @end itemize
5433
5434 @section ebur128
5435
5436 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
5437 it unchanged. By default, it logs a message at a frequency of 10Hz with the
5438 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
5439 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
5440
5441 The filter also has a video output (see the @var{video} option) with a real
5442 time graph to observe the loudness evolution. The graphic contains the logged
5443 message mentioned above, so it is not printed anymore when this option is set,
5444 unless the verbose logging is set. The main graphing area contains the
5445 short-term loudness (3 seconds of analysis), and the gauge on the right is for
5446 the momentary loudness (400 milliseconds).
5447
5448 More information about the Loudness Recommendation EBU R128 on
5449 @url{http://tech.ebu.ch/loudness}.
5450
5451 The filter accepts the following named parameters:
5452
5453 @table @option
5454
5455 @item video
5456 Activate the video output. The audio stream is passed unchanged whether this
5457 option is set or no. The video stream will be the first output stream if
5458 activated. Default is @code{0}.
5459
5460 @item size
5461 Set the video size. This option is for video only. Default and minimum
5462 resolution is @code{640x480}.
5463
5464 @item meter
5465 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
5466 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
5467 other integer value between this range is allowed.
5468
5469 @end table
5470
5471 Example of real-time graph using @command{ffplay}, with a EBU scale meter +18:
5472 @example
5473 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
5474 @end example
5475
5476 Run an analysis with @command{ffmpeg}:
5477 @example
5478 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
5479 @end example
5480
5481 @section settb, asettb
5482
5483 Set the timebase to use for the output frames timestamps.
5484 It is mainly useful for testing timebase configuration.
5485
5486 It accepts in input an arithmetic expression representing a rational.
5487 The expression can contain the constants "AVTB" (the
5488 default timebase), "intb" (the input timebase) and "sr" (the sample rate,
5489 audio only).
5490
5491 The default value for the input is "intb".
5492
5493 @subsection Examples
5494
5495 @itemize
5496 @item
5497 Set the timebase to 1/25:
5498 @example
5499 settb=1/25
5500 @end example
5501
5502 @item
5503 Set the timebase to 1/10:
5504 @example
5505 settb=0.1
5506 @end example
5507
5508 @item
5509 Set the timebase to 1001/1000:
5510 @example
5511 settb=1+0.001
5512 @end example
5513
5514 @item
5515 Set the timebase to 2*intb:
5516 @example
5517 settb=2*intb
5518 @end example
5519
5520 @item
5521 Set the default timebase value:
5522 @example
5523 settb=AVTB
5524 @end example
5525 @end itemize
5526
5527 @section concat
5528
5529 Concatenate audio and video streams, joining them together one after the
5530 other.
5531
5532 The filter works on segments of synchronized video and audio streams. All
5533 segments must have the same number of streams of each type, and that will
5534 also be the number of streams at output.
5535
5536 The filter accepts the following named parameters:
5537 @table @option
5538
5539 @item n
5540 Set the number of segments. Default is 2.
5541
5542 @item v
5543 Set the number of output video streams, that is also the number of video
5544 streams in each segment. Default is 1.
5545
5546 @item a
5547 Set the number of output audio streams, that is also the number of video
5548 streams in each segment. Default is 0.
5549
5550 @item unsafe
5551 Activate unsafe mode: do not fail if segments have a different format.
5552
5553 @end table
5554
5555 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
5556 @var{a} audio outputs.
5557
5558 There are @var{n}×(@var{v}+@var{a}) inputs: first the inputs for the first
5559 segment, in the same order as the outputs, then the inputs for the second
5560 segment, etc.
5561
5562 Related streams do not always have exactly the same duration, for various
5563 reasons including codec frame size or sloppy authoring. For that reason,
5564 related synchronized streams (e.g. a video and its audio track) should be
5565 concatenated at once. The concat filter will use the duration of the longest
5566 stream in each segment (except the last one), and if necessary pad shorter
5567 audio streams with silence.
5568
5569 For this filter to work correctly, all segments must start at timestamp 0.
5570
5571 All corresponding streams must have the same parameters in all segments; the
5572 filtering system will automatically select a common pixel format for video
5573 streams, and a common sample format, sample rate and channel layout for
5574 audio streams, but other settings, such as resolution, must be converted
5575 explicitly by the user.
5576
5577 Different frame rates are acceptable but will result in variable frame rate
5578 at output; be sure to configure the output file to handle it.
5579
5580 Examples:
5581 @itemize
5582 @item
5583 Concatenate an opening, an episode and an ending, all in bilingual version
5584 (video in stream 0, audio in streams 1 and 2):
5585 @example
5586 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
5587   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
5588    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
5589   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
5590 @end example
5591
5592 @item
5593 Concatenate two parts, handling audio and video separately, using the
5594 (a)movie sources, and adjusting the resolution:
5595 @example
5596 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
5597 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
5598 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
5599 @end example
5600 Note that a desync will happen at the stitch if the audio and video streams
5601 do not have exactly the same duration in the first file.
5602
5603 @end itemize
5604
5605 @section showspectrum
5606
5607 Convert input audio to a video output, representing the audio frequency
5608 spectrum.
5609
5610 The filter accepts the following named parameters:
5611 @table @option
5612 @item size, s
5613 Specify the video size for the output. Default value is @code{640x480}.
5614 @item slide
5615 Specify if the spectrum should slide along the window. Default value is
5616 @code{0}.
5617 @end table
5618
5619 The usage is very similar to the showwaves filter; see the examples in that
5620 section.
5621
5622 @section showwaves
5623
5624 Convert input audio to a video output, representing the samples waves.
5625
5626 The filter accepts the following named parameters:
5627 @table @option
5628
5629 @item n
5630 Set the number of samples which are printed on the same column. A
5631 larger value will decrease the frame rate. Must be a positive
5632 integer. This option can be set only if the value for @var{rate}
5633 is not explicitly specified.
5634
5635 @item rate, r
5636 Set the (approximate) output frame rate. This is done by setting the
5637 option @var{n}. Default value is "25".
5638
5639 @item size, s
5640 Specify the video size for the output. Default value is "600x240".
5641 @end table
5642
5643 Some examples follow.
5644 @itemize
5645 @item
5646 Output the input file audio and the corresponding video representation
5647 at the same time:
5648 @example
5649 amovie=a.mp3,asplit[out0],showwaves[out1]
5650 @end example
5651
5652 @item
5653 Create a synthetic signal and show it with showwaves, forcing a
5654 framerate of 30 frames per second:
5655 @example
5656 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
5657 @end example
5658 @end itemize
5659
5660 @c man end MULTIMEDIA FILTERS
5661
5662 @chapter Multimedia Sources
5663 @c man begin MULTIMEDIA SOURCES
5664
5665 Below is a description of the currently available multimedia sources.
5666
5667 @section amovie
5668
5669 This is the same as @ref{movie} source, except it selects an audio
5670 stream by default.
5671
5672 @anchor{movie}
5673 @section movie
5674
5675 Read audio and/or video stream(s) from a movie container.
5676
5677 It accepts the syntax: @var{movie_name}[:@var{options}] where
5678 @var{movie_name} is the name of the resource to read (not necessarily
5679 a file but also a device or a stream accessed through some protocol),
5680 and @var{options} is an optional sequence of @var{key}=@var{value}
5681 pairs, separated by ":".
5682
5683 The description of the accepted options follows.
5684
5685 @table @option
5686
5687 @item format_name, f
5688 Specifies the format assumed for the movie to read, and can be either
5689 the name of a container or an input device. If not specified the
5690 format is guessed from @var{movie_name} or by probing.
5691
5692 @item seek_point, sp
5693 Specifies the seek point in seconds, the frames will be output
5694 starting from this seek point, the parameter is evaluated with
5695 @code{av_strtod} so the numerical value may be suffixed by an IS
5696 postfix. Default value is "0".
5697
5698 @item streams, s
5699 Specifies the streams to read. Several streams can be specified,
5700 separated by "+". The source will then have as many outputs, in the
5701 same order. The syntax is explained in the ``Stream specifiers''
5702 section in the ffmpeg manual. Two special names, "dv" and "da" specify
5703 respectively the default (best suited) video and audio stream. Default
5704 is "dv", or "da" if the filter is called as "amovie".
5705
5706 @item stream_index, si
5707 Specifies the index of the video stream to read. If the value is -1,
5708 the best suited video stream will be automatically selected. Default
5709 value is "-1". Deprecated. If the filter is called "amovie", it will select
5710 audio instead of video.
5711
5712 @item loop
5713 Specifies how many times to read the stream in sequence.
5714 If the value is less than 1, the stream will be read again and again.
5715 Default value is "1".
5716
5717 Note that when the movie is looped the source timestamps are not
5718 changed, so it will generate non monotonically increasing timestamps.
5719 @end table
5720
5721 This filter allows to overlay a second video on top of main input of
5722 a filtergraph as shown in this graph:
5723 @example
5724 input -----------> deltapts0 --> overlay --> output
5725                                     ^
5726                                     |
5727 movie --> scale--> deltapts1 -------+
5728 @end example
5729
5730 Some examples follow.
5731
5732 @itemize
5733 @item
5734 Skip 3.2 seconds from the start of the avi file in.avi, and overlay it
5735 on top of the input labelled as "in":
5736 @example
5737 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie];
5738 [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
5739 @end example
5740
5741 @item
5742 Read from a video4linux2 device, and overlay it on top of the input
5743 labelled as "in":
5744 @example
5745 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie];
5746 [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
5747 @end example
5748
5749 @item
5750 Read the first video stream and the audio stream with id 0x81 from
5751 dvd.vob; the video is connected to the pad named "video" and the audio is
5752 connected to the pad named "audio":
5753 @example
5754 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
5755 @end example
5756 @end itemize
5757
5758 @c man end MULTIMEDIA SOURCES