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