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