]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
vf_drawtext: fontconfig support.
[ffmpeg] / doc / filters.texi
1 @chapter Filtergraph description
2 @c man begin FILTERGRAPH DESCRIPTION
3
4 A filtergraph is a directed graph of connected filters. It can contain
5 cycles, and there can be multiple links between a pair of
6 filters. Each link has one input pad on one side connecting it to one
7 filter from which it takes its input, and one output pad on the other
8 side connecting it to the one filter accepting its output.
9
10 Each filter in a filtergraph is an instance of a filter class
11 registered in the application, which defines the features and the
12 number of input and output pads of the filter.
13
14 A filter with no input pads is called a "source", a filter with no
15 output pads is called a "sink".
16
17 @section Filtergraph syntax
18
19 A filtergraph can be represented using a textual representation, which
20 is recognized by the @code{-vf} option of the ff*
21 tools, and by the @code{avfilter_graph_parse()} function defined in
22 @file{libavfilter/avfiltergraph.h}.
23
24 A filterchain consists of a sequence of connected filters, each one
25 connected to the previous one in the sequence. A filterchain is
26 represented by a list of ","-separated filter descriptions.
27
28 A filtergraph consists of a sequence of filterchains. A sequence of
29 filterchains is represented by a list of ";"-separated filterchain
30 descriptions.
31
32 A filter is represented by a string of the form:
33 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
34
35 @var{filter_name} is the name of the filter class of which the
36 described filter is an instance of, and has to be the name of one of
37 the filter classes registered in the program.
38 The name of the filter class is optionally followed by a string
39 "=@var{arguments}".
40
41 @var{arguments} is a string which contains the parameters used to
42 initialize the filter instance, and are described in the filter
43 descriptions below.
44
45 The list of arguments can be quoted using the character "'" as initial
46 and ending mark, and the character '\' for escaping the characters
47 within the quoted text; otherwise the argument string is considered
48 terminated when the next special character (belonging to the set
49 "[]=;,") is encountered.
50
51 The name and arguments of the filter are optionally preceded and
52 followed by a list of link labels.
53 A link label allows to name a link and associate it to a filter output
54 or input pad. The preceding labels @var{in_link_1}
55 ... @var{in_link_N}, are associated to the filter input pads,
56 the following labels @var{out_link_1} ... @var{out_link_M}, are
57 associated to the output pads.
58
59 When two link labels with the same name are found in the
60 filtergraph, a link between the corresponding input and output pad is
61 created.
62
63 If an output pad is not labelled, it is linked by default to the first
64 unlabelled input pad of the next filter in the filterchain.
65 For example in the filterchain:
66 @example
67 nullsrc, split[L1], [L2]overlay, nullsink
68 @end example
69 the split filter instance has two output pads, and the overlay filter
70 instance two input pads. The first output pad of split is labelled
71 "L1", the first input pad of overlay is labelled "L2", and the second
72 output pad of split is linked to the second input pad of overlay,
73 which are both unlabelled.
74
75 In a complete filterchain all the unlabelled filter input and output
76 pads must be connected. A filtergraph is considered valid if all the
77 filter input and output pads of all the filterchains are connected.
78
79 Follows a BNF description for the filtergraph syntax:
80 @example
81 @var{NAME}             ::= sequence of alphanumeric characters and '_'
82 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
83 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
84 @var{FILTER_ARGUMENTS} ::= sequence of chars (eventually quoted)
85 @var{FILTER}           ::= [@var{LINKNAMES}] @var{NAME} ["=" @var{ARGUMENTS}] [@var{LINKNAMES}]
86 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
87 @var{FILTERGRAPH}      ::= @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
88 @end example
89
90 @c man end FILTERGRAPH DESCRIPTION
91
92 @chapter Audio Filters
93 @c man begin AUDIO FILTERS
94
95 When you configure your FFmpeg build, you can disable any of the
96 existing filters using @code{--disable-filters}.
97 The configure output will show the audio filters included in your
98 build.
99
100 Below is a description of the currently available audio filters.
101
102 @section aconvert
103
104 Convert the input audio format to the specified formats.
105
106 The filter accepts a string of the form:
107 "@var{sample_format}:@var{channel_layout}".
108
109 @var{sample_format} specifies the sample format, and can be a string or the
110 corresponding numeric value defined in @file{libavutil/samplefmt.h}. Use 'p'
111 suffix for a planar sample format.
112
113 @var{channel_layout} specifies the channel layout, and can be a string
114 or the corresponding number value defined in @file{libavutil/audioconvert.h}.
115
116 The special parameter "auto", signifies that the filter will
117 automatically select the output format depending on the output filter.
118
119 Some examples follow.
120
121 @itemize
122 @item
123 Convert input to float, planar, stereo:
124 @example
125 aconvert=fltp:stereo
126 @end example
127
128 @item
129 Convert input to unsigned 8-bit, automatically select out channel layout:
130 @example
131 aconvert=u8:auto
132 @end example
133 @end itemize
134
135 @section aformat
136
137 Convert the input audio to one of the specified formats. The framework will
138 negotiate the most appropriate format to minimize conversions.
139
140 The filter accepts three lists of formats, separated by ":", in the form:
141 "@var{sample_formats}:@var{channel_layouts}:@var{packing_formats}".
142
143 Elements in each list are separated by "," which has to be escaped in the
144 filtergraph specification.
145
146 The special parameter "all", in place of a list of elements, signifies all
147 supported formats.
148
149 Some examples follow:
150 @example
151 aformat=u8\\,s16:mono:packed
152
153 aformat=s16:mono\\,stereo:all
154 @end example
155
156 @section amerge
157
158 Merge two audio streams into a single multi-channel stream.
159
160 This filter does not need any argument.
161
162 If the channel layouts of the inputs are disjoint, and therefore compatible,
163 the channel layout of the output will be set accordingly and the channels
164 will be reordered as necessary. If the channel layouts of the inputs are not
165 disjoint, the output will have all the channels of the first input then all
166 the channels of the second input, in that order, and the channel layout of
167 the output will be the default value corresponding to the total number of
168 channels.
169
170 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
171 is FC+BL+BR, then the output will be in 5.1, with the channels in the
172 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
173 first input, b1 is the first channel of the second input).
174
175 On the other hand, if both input are in stereo, the output channels will be
176 in the default order: a1, a2, b1, b2, and the channel layout will be
177 arbitrarily set to 4.0, which may or may not be the expected value.
178
179 Both inputs must have the same sample rate, format and packing.
180
181 If inputs do not have the same duration, the output will stop with the
182 shortest.
183
184 Example: merge two mono files into a stereo stream:
185 @example
186 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
187 @end example
188
189 If you need to do multiple merges (for instance multiple mono audio streams in
190 a single video media), you can do:
191 @example
192 ffmpeg -f lavfi -i "
193 amovie=input.mkv:si=0 [a0];
194 amovie=input.mkv:si=1 [a1];
195 amovie=input.mkv:si=2 [a2];
196 amovie=input.mkv:si=3 [a3];
197 amovie=input.mkv:si=4 [a4];
198 amovie=input.mkv:si=5 [a5];
199 [a0][a1] amerge [x0];
200 [x0][a2] amerge [x1];
201 [x1][a3] amerge [x2];
202 [x2][a4] amerge [x3];
203 [x3][a5] amerge" -c:a pcm_s16le output.mkv
204 @end example
205
206 @section anull
207
208 Pass the audio source unchanged to the output.
209
210 @section aresample
211
212 Resample the input audio to the specified sample rate.
213
214 The filter accepts exactly one parameter, the output sample rate. If not
215 specified then the filter will automatically convert between its input
216 and output sample rates.
217
218 For example, to resample the input audio to 44100Hz:
219 @example
220 aresample=44100
221 @end example
222
223 @section ashowinfo
224
225 Show a line containing various information for each input audio frame.
226 The input audio is not modified.
227
228 The shown line contains a sequence of key/value pairs of the form
229 @var{key}:@var{value}.
230
231 A description of each shown parameter follows:
232
233 @table @option
234 @item n
235 sequential number of the input frame, starting from 0
236
237 @item pts
238 presentation TimeStamp of the input frame, expressed as a number of
239 time base units. The time base unit depends on the filter input pad, and
240 is usually 1/@var{sample_rate}.
241
242 @item pts_time
243 presentation TimeStamp of the input frame, expressed as a number of
244 seconds
245
246 @item pos
247 position of the frame in the input stream, -1 if this information in
248 unavailable and/or meaningless (for example in case of synthetic audio)
249
250 @item fmt
251 sample format name
252
253 @item chlayout
254 channel layout description
255
256 @item nb_samples
257 number of samples (per each channel) contained in the filtered frame
258
259 @item rate
260 sample rate for the audio frame
261
262 @item planar
263 if the packing format is planar, 0 if packed
264
265 @item checksum
266 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
267
268 @item plane_checksum
269 Adler-32 checksum (printed in hexadecimal) for each input frame plane,
270 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3} @var{c4} @var{c5}
271 @var{c6} @var{c7}]"
272 @end table
273
274 @section asplit
275
276 Pass on the input audio to two outputs. Both outputs are identical to
277 the input audio.
278
279 For example:
280 @example
281 [in] asplit[out0], showaudio[out1]
282 @end example
283
284 will create two separate outputs from the same input, one cropped and
285 one padded.
286
287 @section astreamsync
288
289 Forward two audio streams and control the order the buffers are forwarded.
290
291 The argument to the filter is an expression deciding which stream should be
292 forwarded next: if the result is negative, the first stream is forwarded; if
293 the result is positive or zero, the second stream is forwarded. It can use
294 the following variables:
295
296 @table @var
297 @item b1 b2
298 number of buffers forwarded so far on each stream
299 @item s1 s2
300 number of samples forwarded so far on each stream
301 @item t1 t2
302 current timestamp of each stream
303 @end table
304
305 The default value is @code{t1-t2}, which means to always forward the stream
306 that has a smaller timestamp.
307
308 Example: stress-test @code{amerge} by randomly sending buffers on the wrong
309 input, while avoiding too much of a desynchronization:
310 @example
311 amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
312 [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
313 [a2] [b2] amerge
314 @end example
315
316 @section earwax
317
318 Make audio easier to listen to on headphones.
319
320 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
321 so that when listened to on headphones the stereo image is moved from
322 inside your head (standard for headphones) to outside and in front of
323 the listener (standard for speakers).
324
325 Ported from SoX.
326
327 @section pan
328
329 Mix channels with specific gain levels. The filter accepts the output
330 channel layout followed by a set of channels definitions.
331
332 This filter is also designed to remap efficiently the channels of an audio
333 stream.
334
335 The filter accepts parameters of the form:
336 "@var{l}:@var{outdef}:@var{outdef}:..."
337
338 @table @option
339 @item l
340 output channel layout or number of channels
341
342 @item outdef
343 output channel specification, of the form:
344 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
345
346 @item out_name
347 output channel to define, either a channel name (FL, FR, etc.) or a channel
348 number (c0, c1, etc.)
349
350 @item gain
351 multiplicative coefficient for the channel, 1 leaving the volume unchanged
352
353 @item in_name
354 input channel to use, see out_name for details; it is not possible to mix
355 named and numbered input channels
356 @end table
357
358 If the `=' in a channel specification is replaced by `<', then the gains for
359 that specification will be renormalized so that the total is 1, thus
360 avoiding clipping noise.
361
362 @subsection Mixing examples
363
364 For example, if you want to down-mix from stereo to mono, but with a bigger
365 factor for the left channel:
366 @example
367 pan=1:c0=0.9*c0+0.1*c1
368 @end example
369
370 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
371 7-channels surround:
372 @example
373 pan=stereo: FL < FL + 0.5*FC + 0.6*BL + 0.6*SL : FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
374 @end example
375
376 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
377 that should be preferred (see "-ac" option) unless you have very specific
378 needs.
379
380 @subsection Remapping examples
381
382 The channel remapping will be effective if, and only if:
383
384 @itemize
385 @item gain coefficients are zeroes or ones,
386 @item only one input per channel output,
387 @end itemize
388
389 If all these conditions are satisfied, the filter will notify the user ("Pure
390 channel mapping detected"), and use an optimized and lossless method to do the
391 remapping.
392
393 For example, if you have a 5.1 source and want a stereo audio stream by
394 dropping the extra channels:
395 @example
396 pan="stereo: c0=FL : c1=FR"
397 @end example
398
399 Given the same source, you can also switch front left and front right channels
400 and keep the input channel layout:
401 @example
402 pan="5.1: c0=c1 : c1=c0 : c2=c2 : c3=c3 : c4=c4 : c5=c5"
403 @end example
404
405 If the input is a stereo audio stream, you can mute the front left channel (and
406 still keep the stereo channel layout) with:
407 @example
408 pan="stereo:c1=c1"
409 @end example
410
411 Still with a stereo audio stream input, you can copy the right channel in both
412 front left and right:
413 @example
414 pan="stereo: c0=FR : c1=FR"
415 @end example
416
417 @section silencedetect
418
419 Detect silence in an audio stream.
420
421 This filter logs a message when it detects that the input audio volume is less
422 or equal to a noise tolerance value for a duration greater or equal to the
423 minimum detected noise duration.
424
425 The printed times and duration are expressed in seconds.
426
427 @table @option
428 @item duration, d
429 Set silence duration until notification (default is 2 seconds).
430
431 @item noise, n
432 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
433 specified value) or amplitude ratio. Default is -60dB, or 0.001.
434 @end table
435
436 Detect 5 seconds of silence with -50dB noise tolerance:
437 @example
438 silencedetect=n=-50dB:d=5
439 @end example
440
441 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
442 tolerance in @file{silence.mp3}:
443 @example
444 ffmpeg -f lavfi -i amovie=silence.mp3,silencedetect=noise=0.0001 -f null -
445 @end example
446
447 @section volume
448
449 Adjust the input audio volume.
450
451 The filter accepts exactly one parameter @var{vol}, which expresses
452 how the audio volume will be increased or decreased.
453
454 Output values are clipped to the maximum value.
455
456 If @var{vol} is expressed as a decimal number, the output audio
457 volume is given by the relation:
458 @example
459 @var{output_volume} = @var{vol} * @var{input_volume}
460 @end example
461
462 If @var{vol} is expressed as a decimal number followed by the string
463 "dB", the value represents the requested change in decibels of the
464 input audio power, and the output audio volume is given by the
465 relation:
466 @example
467 @var{output_volume} = 10^(@var{vol}/20) * @var{input_volume}
468 @end example
469
470 Otherwise @var{vol} is considered an expression and its evaluated
471 value is used for computing the output audio volume according to the
472 first relation.
473
474 Default value for @var{vol} is 1.0.
475
476 @subsection Examples
477
478 @itemize
479 @item
480 Half the input audio volume:
481 @example
482 volume=0.5
483 @end example
484
485 The above example is equivalent to:
486 @example
487 volume=1/2
488 @end example
489
490 @item
491 Decrease input audio power by 12 decibels:
492 @example
493 volume=-12dB
494 @end example
495 @end itemize
496
497 @c man end AUDIO FILTERS
498
499 @chapter Audio Sources
500 @c man begin AUDIO SOURCES
501
502 Below is a description of the currently available audio sources.
503
504 @section abuffer
505
506 Buffer audio frames, and make them available to the filter chain.
507
508 This source is mainly intended for a programmatic use, in particular
509 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
510
511 It accepts the following mandatory parameters:
512 @var{sample_rate}:@var{sample_fmt}:@var{channel_layout}:@var{packing}
513
514 @table @option
515
516 @item sample_rate
517 The sample rate of the incoming audio buffers.
518
519 @item sample_fmt
520 The sample format of the incoming audio buffers.
521 Either a sample format name or its corresponging integer representation from
522 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
523
524 @item channel_layout
525 The channel layout of the incoming audio buffers.
526 Either a channel layout name from channel_layout_map in
527 @file{libavutil/audioconvert.c} or its corresponding integer representation
528 from the AV_CH_LAYOUT_* macros in @file{libavutil/audioconvert.h}
529
530 @item packing
531 Either "packed" or "planar", or their integer representation: 0 or 1
532 respectively.
533
534 @end table
535
536 For example:
537 @example
538 abuffer=44100:s16:stereo:planar
539 @end example
540
541 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
542 Since the sample format with name "s16" corresponds to the number
543 1 and the "stereo" channel layout corresponds to the value 0x3, this is
544 equivalent to:
545 @example
546 abuffer=44100:1:0x3:1
547 @end example
548
549 @section aevalsrc
550
551 Generate an audio signal specified by an expression.
552
553 This source accepts in input one or more expressions (one for each
554 channel), which are evaluated and used to generate a corresponding
555 audio signal.
556
557 It accepts the syntax: @var{exprs}[::@var{options}].
558 @var{exprs} is a list of expressions separated by ":", one for each
559 separate channel. The output channel layout depends on the number of
560 provided expressions, up to 8 channels are supported.
561
562 @var{options} is an optional sequence of @var{key}=@var{value} pairs,
563 separated by ":".
564
565 The description of the accepted options follows.
566
567 @table @option
568
569 @item duration, d
570 Set the minimum duration of the sourced audio. See the function
571 @code{av_parse_time()} for the accepted format.
572 Note that the resulting duration may be greater than the specified
573 duration, as the generated audio is always cut at the end of a
574 complete frame.
575
576 If not specified, or the expressed duration is negative, the audio is
577 supposed to be generated forever.
578
579 @item nb_samples, n
580 Set the number of samples per channel per each output frame,
581 default to 1024.
582
583 @item sample_rate, s
584 Specify the sample rate, default to 44100.
585 @end table
586
587 Each expression in @var{exprs} can contain the following constants:
588
589 @table @option
590 @item n
591 number of the evaluated sample, starting from 0
592
593 @item t
594 time of the evaluated sample expressed in seconds, starting from 0
595
596 @item s
597 sample rate
598
599 @end table
600
601 @subsection Examples
602
603 @itemize
604
605 @item
606 Generate silence:
607 @example
608 aevalsrc=0
609 @end example
610
611 @item
612
613 Generate a sin signal with frequency of 440 Hz, set sample rate to
614 8000 Hz:
615 @example
616 aevalsrc="sin(440*2*PI*t)::s=8000"
617 @end example
618
619 @item
620 Generate white noise:
621 @example
622 aevalsrc="-2+random(0)"
623 @end example
624
625 @item
626 Generate an amplitude modulated signal:
627 @example
628 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
629 @end example
630
631 @item
632 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
633 @example
634 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) : 0.1*sin(2*PI*(360+2.5/2)*t)"
635 @end example
636
637 @end itemize
638
639 @section amovie
640
641 Read an audio stream from a movie container.
642
643 It accepts the syntax: @var{movie_name}[:@var{options}] where
644 @var{movie_name} is the name of the resource to read (not necessarily
645 a file but also a device or a stream accessed through some protocol),
646 and @var{options} is an optional sequence of @var{key}=@var{value}
647 pairs, separated by ":".
648
649 The description of the accepted options follows.
650
651 @table @option
652
653 @item format_name, f
654 Specify the format assumed for the movie to read, and can be either
655 the name of a container or an input device. If not specified the
656 format is guessed from @var{movie_name} or by probing.
657
658 @item seek_point, sp
659 Specify the seek point in seconds, the frames will be output
660 starting from this seek point, the parameter is evaluated with
661 @code{av_strtod} so the numerical value may be suffixed by an IS
662 postfix. Default value is "0".
663
664 @item stream_index, si
665 Specify the index of the audio stream to read. If the value is -1,
666 the best suited audio stream will be automatically selected. Default
667 value is "-1".
668
669 @end table
670
671 @section anullsrc
672
673 Null audio source, return unprocessed audio frames. It is mainly useful
674 as a template and to be employed in analysis / debugging tools, or as
675 the source for filters which ignore the input data (for example the sox
676 synth filter).
677
678 It accepts an optional sequence of @var{key}=@var{value} pairs,
679 separated by ":".
680
681 The description of the accepted options follows.
682
683 @table @option
684
685 @item sample_rate, s
686 Specify the sample rate, and defaults to 44100.
687
688 @item channel_layout, cl
689
690 Specify the channel layout, and can be either an integer or a string
691 representing a channel layout. The default value of @var{channel_layout}
692 is "stereo".
693
694 Check the channel_layout_map definition in
695 @file{libavcodec/audioconvert.c} for the mapping between strings and
696 channel layout values.
697
698 @item nb_samples, n
699 Set the number of samples per requested frames.
700
701 @end table
702
703 Follow some examples:
704 @example
705 #  set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
706 anullsrc=r=48000:cl=4
707
708 # same as
709 anullsrc=r=48000:cl=mono
710 @end example
711
712 @c man end AUDIO SOURCES
713
714 @chapter Audio Sinks
715 @c man begin AUDIO SINKS
716
717 Below is a description of the currently available audio sinks.
718
719 @section abuffersink
720
721 Buffer audio frames, and make them available to the end of filter chain.
722
723 This sink is mainly intended for programmatic use, in particular
724 through the interface defined in @file{libavfilter/buffersink.h}.
725
726 It requires a pointer to an AVABufferSinkContext structure, which
727 defines the incoming buffers' formats, to be passed as the opaque
728 parameter to @code{avfilter_init_filter} for initialization.
729
730 @section anullsink
731
732 Null audio sink, do absolutely nothing with the input audio. It is
733 mainly useful as a template and to be employed in analysis / debugging
734 tools.
735
736 @c man end AUDIO SINKS
737
738 @chapter Video Filters
739 @c man begin VIDEO FILTERS
740
741 When you configure your FFmpeg build, you can disable any of the
742 existing filters using @code{--disable-filters}.
743 The configure output will show the video filters included in your
744 build.
745
746 Below is a description of the currently available video filters.
747
748 @section ass
749
750 Draw ASS (Advanced Substation Alpha) subtitles on top of input video
751 using the libass library.
752
753 To enable compilation of this filter you need to configure FFmpeg with
754 @code{--enable-libass}.
755
756 This filter accepts the syntax: @var{ass_filename}[:@var{options}],
757 where @var{ass_filename} is the filename of the ASS file to read, and
758 @var{options} is an optional sequence of @var{key}=@var{value} pairs,
759 separated by ":".
760
761 A description of the accepted options follows.
762
763 @table @option
764 @item original_size
765 Specifies the size of the original video, the video for which the ASS file
766 was composed. Due to a misdesign in ASS aspect ratio arithmetic, this is
767 necessary to correctly scale the fonts if the aspect ratio has been changed.
768 @end table
769
770 For example, to render the file @file{sub.ass} on top of the input
771 video, use the command:
772 @example
773 ass=sub.ass
774 @end example
775
776 @section bbox
777
778 Compute the bounding box for the non-black pixels in the input frame
779 luminance plane.
780
781 This filter computes the bounding box containing all the pixels with a
782 luminance value greater than the minimum allowed value.
783 The parameters describing the bounding box are printed on the filter
784 log.
785
786 @section blackdetect
787
788 Detect video intervals that are (almost) completely black. Can be
789 useful to detect chapter transitions, commercials, or invalid
790 recordings. Output lines contains the time for the start, end and
791 duration of the detected black interval expressed in seconds.
792
793 In order to display the output lines, you need to set the loglevel at
794 least to the AV_LOG_INFO value.
795
796 This filter accepts a list of options in the form of
797 @var{key}=@var{value} pairs separated by ":". A description of the
798 accepted options follows.
799
800 @table @option
801 @item black_min_duration, d
802 Set the minimum detected black duration expressed in seconds. It must
803 be a non-negative floating point number.
804
805 Default value is 2.0.
806
807 @item picture_black_ratio_th, pic_th
808 Set the threshold for considering a picture "black".
809 Express the minimum value for the ratio:
810 @example
811 @var{nb_black_pixels} / @var{nb_pixels}
812 @end example
813
814 for which a picture is considered black.
815 Default value is 0.98.
816
817 @item pixel_black_th, pix_th
818 Set the threshold for considering a pixel "black".
819
820 The threshold expresses the maximum pixel luminance value for which a
821 pixel is considered "black". The provided value is scaled according to
822 the following equation:
823 @example
824 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
825 @end example
826
827 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
828 the input video format, the range is [0-255] for YUV full-range
829 formats and [16-235] for YUV non full-range formats.
830
831 Default value is 0.10.
832 @end table
833
834 The following example sets the maximum pixel threshold to the minimum
835 value, and detects only black intervals of 2 or more seconds:
836 @example
837 blackdetect=d=2:pix_th=0.00
838 @end example
839
840 @section blackframe
841
842 Detect frames that are (almost) completely black. Can be useful to
843 detect chapter transitions or commercials. Output lines consist of
844 the frame number of the detected frame, the percentage of blackness,
845 the position in the file if known or -1 and the timestamp in seconds.
846
847 In order to display the output lines, you need to set the loglevel at
848 least to the AV_LOG_INFO value.
849
850 The filter accepts the syntax:
851 @example
852 blackframe[=@var{amount}:[@var{threshold}]]
853 @end example
854
855 @var{amount} is the percentage of the pixels that have to be below the
856 threshold, and defaults to 98.
857
858 @var{threshold} is the threshold below which a pixel value is
859 considered black, and defaults to 32.
860
861 @section boxblur
862
863 Apply boxblur algorithm to the input video.
864
865 This filter accepts the parameters:
866 @var{luma_radius}:@var{luma_power}:@var{chroma_radius}:@var{chroma_power}:@var{alpha_radius}:@var{alpha_power}
867
868 Chroma and alpha parameters are optional, if not specified they default
869 to the corresponding values set for @var{luma_radius} and
870 @var{luma_power}.
871
872 @var{luma_radius}, @var{chroma_radius}, and @var{alpha_radius} represent
873 the radius in pixels of the box used for blurring the corresponding
874 input plane. They are expressions, and can contain the following
875 constants:
876 @table @option
877 @item w, h
878 the input width and height in pixels
879
880 @item cw, ch
881 the input chroma image width and height in pixels
882
883 @item hsub, vsub
884 horizontal and vertical chroma subsample values. For example for the
885 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
886 @end table
887
888 The radius must be a non-negative number, and must not be greater than
889 the value of the expression @code{min(w,h)/2} for the luma and alpha planes,
890 and of @code{min(cw,ch)/2} for the chroma planes.
891
892 @var{luma_power}, @var{chroma_power}, and @var{alpha_power} represent
893 how many times the boxblur filter is applied to the corresponding
894 plane.
895
896 Some examples follow:
897
898 @itemize
899
900 @item
901 Apply a boxblur filter with luma, chroma, and alpha radius
902 set to 2:
903 @example
904 boxblur=2:1
905 @end example
906
907 @item
908 Set luma radius to 2, alpha and chroma radius to 0
909 @example
910 boxblur=2:1:0:0:0:0
911 @end example
912
913 @item
914 Set luma and chroma radius to a fraction of the video dimension
915 @example
916 boxblur=min(h\,w)/10:1:min(cw\,ch)/10:1
917 @end example
918
919 @end itemize
920
921 @section colormatrix
922
923 The colormatrix filter allows conversion between any of the following color
924 space: BT.709 (@var{bt709}), BT.601 (@var{bt601}), SMPTE-240M (@var{smpte240m})
925 and FCC (@var{fcc}).
926
927 The syntax of the parameters is @var{source}:@var{destination}:
928
929 @example
930 colormatrix=bt601:smpte240m
931 @end example
932
933 @section copy
934
935 Copy the input source unchanged to the output. Mainly useful for
936 testing purposes.
937
938 @section crop
939
940 Crop the input video to @var{out_w}:@var{out_h}:@var{x}:@var{y}:@var{keep_aspect}
941
942 The @var{keep_aspect} parameter is optional, if specified and set to a
943 non-zero value will force the output display aspect ratio to be the
944 same of the input, by changing the output sample aspect ratio.
945
946 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
947 expressions containing the following constants:
948
949 @table @option
950 @item x, y
951 the computed values for @var{x} and @var{y}. They are evaluated for
952 each new frame.
953
954 @item in_w, in_h
955 the input width and height
956
957 @item iw, ih
958 same as @var{in_w} and @var{in_h}
959
960 @item out_w, out_h
961 the output (cropped) width and height
962
963 @item ow, oh
964 same as @var{out_w} and @var{out_h}
965
966 @item a
967 same as @var{iw} / @var{ih}
968
969 @item sar
970 input sample aspect ratio
971
972 @item dar
973 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
974
975 @item hsub, vsub
976 horizontal and vertical chroma subsample values. For example for the
977 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
978
979 @item n
980 the number of input frame, starting from 0
981
982 @item pos
983 the position in the file of the input frame, NAN if unknown
984
985 @item t
986 timestamp expressed in seconds, NAN if the input timestamp is unknown
987
988 @end table
989
990 The @var{out_w} and @var{out_h} parameters specify the expressions for
991 the width and height of the output (cropped) video. They are
992 evaluated just at the configuration of the filter.
993
994 The default value of @var{out_w} is "in_w", and the default value of
995 @var{out_h} is "in_h".
996
997 The expression for @var{out_w} may depend on the value of @var{out_h},
998 and the expression for @var{out_h} may depend on @var{out_w}, but they
999 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
1000 evaluated after @var{out_w} and @var{out_h}.
1001
1002 The @var{x} and @var{y} parameters specify the expressions for the
1003 position of the top-left corner of the output (non-cropped) area. They
1004 are evaluated for each frame. If the evaluated value is not valid, it
1005 is approximated to the nearest valid value.
1006
1007 The default value of @var{x} is "(in_w-out_w)/2", and the default
1008 value for @var{y} is "(in_h-out_h)/2", which set the cropped area at
1009 the center of the input image.
1010
1011 The expression for @var{x} may depend on @var{y}, and the expression
1012 for @var{y} may depend on @var{x}.
1013
1014 Follow some examples:
1015 @example
1016 # crop the central input area with size 100x100
1017 crop=100:100
1018
1019 # crop the central input area with size 2/3 of the input video
1020 "crop=2/3*in_w:2/3*in_h"
1021
1022 # crop the input video central square
1023 crop=in_h
1024
1025 # delimit the rectangle with the top-left corner placed at position
1026 # 100:100 and the right-bottom corner corresponding to the right-bottom
1027 # corner of the input image.
1028 crop=in_w-100:in_h-100:100:100
1029
1030 # crop 10 pixels from the left and right borders, and 20 pixels from
1031 # the top and bottom borders
1032 "crop=in_w-2*10:in_h-2*20"
1033
1034 # keep only the bottom right quarter of the input image
1035 "crop=in_w/2:in_h/2:in_w/2:in_h/2"
1036
1037 # crop height for getting Greek harmony
1038 "crop=in_w:1/PHI*in_w"
1039
1040 # trembling effect
1041 "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)"
1042
1043 # erratic camera effect depending on timestamp
1044 "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)"
1045
1046 # set x depending on the value of y
1047 "crop=in_w/2:in_h/2:y:10+10*sin(n/10)"
1048 @end example
1049
1050 @section cropdetect
1051
1052 Auto-detect crop size.
1053
1054 Calculate necessary cropping parameters and prints the recommended
1055 parameters through the logging system. The detected dimensions
1056 correspond to the non-black area of the input video.
1057
1058 It accepts the syntax:
1059 @example
1060 cropdetect[=@var{limit}[:@var{round}[:@var{reset}]]]
1061 @end example
1062
1063 @table @option
1064
1065 @item limit
1066 Threshold, which can be optionally specified from nothing (0) to
1067 everything (255), defaults to 24.
1068
1069 @item round
1070 Value which the width/height should be divisible by, defaults to
1071 16. The offset is automatically adjusted to center the video. Use 2 to
1072 get only even dimensions (needed for 4:2:2 video). 16 is best when
1073 encoding to most video codecs.
1074
1075 @item reset
1076 Counter that determines after how many frames cropdetect will reset
1077 the previously detected largest video area and start over to detect
1078 the current optimal crop area. Defaults to 0.
1079
1080 This can be useful when channel logos distort the video area. 0
1081 indicates never reset and return the largest area encountered during
1082 playback.
1083 @end table
1084
1085 @section delogo
1086
1087 Suppress a TV station logo by a simple interpolation of the surrounding
1088 pixels. Just set a rectangle covering the logo and watch it disappear
1089 (and sometimes something even uglier appear - your mileage may vary).
1090
1091 The filter accepts parameters as a string of the form
1092 "@var{x}:@var{y}:@var{w}:@var{h}:@var{band}", or as a list of
1093 @var{key}=@var{value} pairs, separated by ":".
1094
1095 The description of the accepted parameters follows.
1096
1097 @table @option
1098
1099 @item x, y
1100 Specify the top left corner coordinates of the logo. They must be
1101 specified.
1102
1103 @item w, h
1104 Specify the width and height of the logo to clear. They must be
1105 specified.
1106
1107 @item band, t
1108 Specify the thickness of the fuzzy edge of the rectangle (added to
1109 @var{w} and @var{h}). The default value is 4.
1110
1111 @item show
1112 When set to 1, a green rectangle is drawn on the screen to simplify
1113 finding the right @var{x}, @var{y}, @var{w}, @var{h} parameters, and
1114 @var{band} is set to 4. The default value is 0.
1115
1116 @end table
1117
1118 Some examples follow.
1119
1120 @itemize
1121
1122 @item
1123 Set a rectangle covering the area with top left corner coordinates 0,0
1124 and size 100x77, setting a band of size 10:
1125 @example
1126 delogo=0:0:100:77:10
1127 @end example
1128
1129 @item
1130 As the previous example, but use named options:
1131 @example
1132 delogo=x=0:y=0:w=100:h=77:band=10
1133 @end example
1134
1135 @end itemize
1136
1137 @section deshake
1138
1139 Attempt to fix small changes in horizontal and/or vertical shift. This
1140 filter helps remove camera shake from hand-holding a camera, bumping a
1141 tripod, moving on a vehicle, etc.
1142
1143 The filter accepts parameters as a string of the form
1144 "@var{x}:@var{y}:@var{w}:@var{h}:@var{rx}:@var{ry}:@var{edge}:@var{blocksize}:@var{contrast}:@var{search}:@var{filename}"
1145
1146 A description of the accepted parameters follows.
1147
1148 @table @option
1149
1150 @item x, y, w, h
1151 Specify a rectangular area where to limit the search for motion
1152 vectors.
1153 If desired the search for motion vectors can be limited to a
1154 rectangular area of the frame defined by its top left corner, width
1155 and height. These parameters have the same meaning as the drawbox
1156 filter which can be used to visualise the position of the bounding
1157 box.
1158
1159 This is useful when simultaneous movement of subjects within the frame
1160 might be confused for camera motion by the motion vector search.
1161
1162 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
1163 then the full frame is used. This allows later options to be set
1164 without specifying the bounding box for the motion vector search.
1165
1166 Default - search the whole frame.
1167
1168 @item rx, ry
1169 Specify the maximum extent of movement in x and y directions in the
1170 range 0-64 pixels. Default 16.
1171
1172 @item edge
1173 Specify how to generate pixels to fill blanks at the edge of the
1174 frame. An integer from 0 to 3 as follows:
1175 @table @option
1176 @item 0
1177 Fill zeroes at blank locations
1178 @item 1
1179 Original image at blank locations
1180 @item 2
1181 Extruded edge value at blank locations
1182 @item 3
1183 Mirrored edge at blank locations
1184 @end table
1185
1186 The default setting is mirror edge at blank locations.
1187
1188 @item blocksize
1189 Specify the blocksize to use for motion search. Range 4-128 pixels,
1190 default 8.
1191
1192 @item contrast
1193 Specify the contrast threshold for blocks. Only blocks with more than
1194 the specified contrast (difference between darkest and lightest
1195 pixels) will be considered. Range 1-255, default 125.
1196
1197 @item search
1198 Specify the search strategy 0 = exhaustive search, 1 = less exhaustive
1199 search. Default - exhaustive search.
1200
1201 @item filename
1202 If set then a detailed log of the motion search is written to the
1203 specified file.
1204
1205 @end table
1206
1207 @section drawbox
1208
1209 Draw a colored box on the input image.
1210
1211 It accepts the syntax:
1212 @example
1213 drawbox=@var{x}:@var{y}:@var{width}:@var{height}:@var{color}
1214 @end example
1215
1216 @table @option
1217
1218 @item x, y
1219 Specify the top left corner coordinates of the box. Default to 0.
1220
1221 @item width, height
1222 Specify the width and height of the box, if 0 they are interpreted as
1223 the input width and height. Default to 0.
1224
1225 @item color
1226 Specify the color of the box to write, it can be the name of a color
1227 (case insensitive match) or a 0xRRGGBB[AA] sequence.
1228 @end table
1229
1230 Follow some examples:
1231 @example
1232 # draw a black box around the edge of the input image
1233 drawbox
1234
1235 # draw a box with color red and an opacity of 50%
1236 drawbox=10:20:200:60:red@@0.5"
1237 @end example
1238
1239 @section drawtext
1240
1241 Draw text string or text from specified file on top of video using the
1242 libfreetype library.
1243
1244 To enable compilation of this filter you need to configure FFmpeg with
1245 @code{--enable-libfreetype}.
1246
1247 The filter also recognizes strftime() sequences in the provided text
1248 and expands them accordingly. Check the documentation of strftime().
1249
1250 The filter accepts parameters as a list of @var{key}=@var{value} pairs,
1251 separated by ":".
1252
1253 The description of the accepted parameters follows.
1254
1255 @table @option
1256
1257 @item fontfile
1258 The font file to be used for drawing text. Path must be included.
1259 This parameter is mandatory.
1260
1261 @item text
1262 The text string to be drawn. The text must be a sequence of UTF-8
1263 encoded characters.
1264 This parameter is mandatory if no file is specified with the parameter
1265 @var{textfile}.
1266
1267 @item textfile
1268 A text file containing text to be drawn. The text must be a sequence
1269 of UTF-8 encoded characters.
1270
1271 This parameter is mandatory if no text string is specified with the
1272 parameter @var{text}.
1273
1274 If both text and textfile are specified, an error is thrown.
1275
1276 @item x, y
1277 The expressions which specify the offsets where text will be drawn
1278 within the video frame. They are relative to the top/left border of the
1279 output image.
1280
1281 The default value of @var{x} and @var{y} is "0".
1282
1283 See below for the list of accepted constants.
1284
1285 @item fontsize
1286 The font size to be used for drawing text.
1287 The default value of @var{fontsize} is 16.
1288
1289 @item fontcolor
1290 The color to be used for drawing fonts.
1291 Either a string (e.g. "red") or in 0xRRGGBB[AA] format
1292 (e.g. "0xff000033"), possibly followed by an alpha specifier.
1293 The default value of @var{fontcolor} is "black".
1294
1295 @item boxcolor
1296 The color to be used for drawing box around text.
1297 Either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
1298 (e.g. "0xff00ff"), possibly followed by an alpha specifier.
1299 The default value of @var{boxcolor} is "white".
1300
1301 @item box
1302 Used to draw a box around text using background color.
1303 Value should be either 1 (enable) or 0 (disable).
1304 The default value of @var{box} is 0.
1305
1306 @item shadowx, shadowy
1307 The x and y offsets for the text shadow position with respect to the
1308 position of the text. They can be either positive or negative
1309 values. Default value for both is "0".
1310
1311 @item shadowcolor
1312 The color to be used for drawing a shadow behind the drawn text.  It
1313 can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
1314 form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
1315 The default value of @var{shadowcolor} is "black".
1316
1317 @item ft_load_flags
1318 Flags to be used for loading the fonts.
1319
1320 The flags map the corresponding flags supported by libfreetype, and are
1321 a combination of the following values:
1322 @table @var
1323 @item default
1324 @item no_scale
1325 @item no_hinting
1326 @item render
1327 @item no_bitmap
1328 @item vertical_layout
1329 @item force_autohint
1330 @item crop_bitmap
1331 @item pedantic
1332 @item ignore_global_advance_width
1333 @item no_recurse
1334 @item ignore_transform
1335 @item monochrome
1336 @item linear_design
1337 @item no_autohint
1338 @item end table
1339 @end table
1340
1341 Default value is "render".
1342
1343 For more information consult the documentation for the FT_LOAD_*
1344 libfreetype flags.
1345
1346 @item tabsize
1347 The size in number of spaces to use for rendering the tab.
1348 Default value is 4.
1349
1350 @item fix_bounds
1351 If true, check and fix text coords to avoid clipping.
1352 @end table
1353
1354 The parameters for @var{x} and @var{y} are expressions containing the
1355 following constants:
1356
1357 @table @option
1358 @item W, H
1359 the input width and height
1360
1361 @item tw, text_w
1362 the width of the rendered text
1363
1364 @item th, text_h
1365 the height of the rendered text
1366
1367 @item lh, line_h
1368 the height of each text line
1369
1370 @item sar
1371 input sample aspect ratio
1372
1373 @item dar
1374 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
1375
1376 @item hsub, vsub
1377 horizontal and vertical chroma subsample values. For example for the
1378 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
1379
1380 @item max_glyph_w
1381 maximum glyph width, that is the maximum width for all the glyphs
1382 contained in the rendered text
1383
1384 @item max_glyph_h
1385 maximum glyph height, that is the maximum height for all the glyphs
1386 contained in the rendered text, it is equivalent to @var{ascent} -
1387 @var{descent}.
1388
1389 @item max_glyph_a, ascent
1390
1391 the maximum distance from the baseline to the highest/upper grid
1392 coordinate used to place a glyph outline point, for all the rendered
1393 glyphs.
1394 It is a positive value, due to the grid's orientation with the Y axis
1395 upwards.
1396
1397 @item max_glyph_d, descent
1398 the maximum distance from the baseline to the lowest grid coordinate
1399 used to place a glyph outline point, for all the rendered glyphs.
1400 This is a negative value, due to the grid's orientation, with the Y axis
1401 upwards.
1402
1403 @item n
1404 the number of input frame, starting from 0
1405
1406 @item t
1407 timestamp expressed in seconds, NAN if the input timestamp is unknown
1408
1409 @item timecode
1410 initial timecode representation in "hh:mm:ss[:;.]ff" format. It can be used
1411 with or without text parameter. @var{rate} option must be specified.
1412
1413 @item r, rate
1414 frame rate (timecode only)
1415 @end table
1416
1417 If libavfilter was built with @code{--enable-fontconfig}, then
1418 @option{fontfile} can be a fontconfig pattern or omitted.
1419
1420 Some examples follow.
1421
1422 @itemize
1423
1424 @item
1425 Draw "Test Text" with font FreeSerif, using the default values for the
1426 optional parameters.
1427
1428 @example
1429 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
1430 @end example
1431
1432 @item
1433 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
1434 and y=50 (counting from the top-left corner of the screen), text is
1435 yellow with a red box around it. Both the text and the box have an
1436 opacity of 20%.
1437
1438 @example
1439 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
1440           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
1441 @end example
1442
1443 Note that the double quotes are not necessary if spaces are not used
1444 within the parameter list.
1445
1446 @item
1447 Show the text at the center of the video frame:
1448 @example
1449 drawtext=fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
1450 @end example
1451
1452 @item
1453 Show a text line sliding from right to left in the last row of the video
1454 frame. The file @file{LONG_LINE} is assumed to contain a single line
1455 with no newlines.
1456 @example
1457 drawtext=fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t
1458 @end example
1459
1460 @item
1461 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
1462 @example
1463 drawtext=fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
1464 @end example
1465
1466 @item
1467 Draw a single green letter "g", at the center of the input video.
1468 The glyph baseline is placed at half screen height.
1469 @example
1470 drawtext=fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent
1471 @end example
1472
1473 @item
1474 Use fontconfig to set the font. Note that the colons need to be escaped.
1475 @example
1476 drawtext='fontfile=Linux Libertine O-40\\:style=Semibold:text=FFmpeg'
1477 @end example
1478
1479 @end itemize
1480
1481 For more information about libfreetype, check:
1482 @url{http://www.freetype.org/}.
1483
1484 For more information about fontconfig, check:
1485 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
1486
1487 @section fade
1488
1489 Apply fade-in/out effect to input video.
1490
1491 It accepts the parameters:
1492 @var{type}:@var{start_frame}:@var{nb_frames}[:@var{options}]
1493
1494 @var{type} specifies if the effect type, can be either "in" for
1495 fade-in, or "out" for a fade-out effect.
1496
1497 @var{start_frame} specifies the number of the start frame for starting
1498 to apply the fade effect.
1499
1500 @var{nb_frames} specifies the number of frames for which the fade
1501 effect has to last. At the end of the fade-in effect the output video
1502 will have the same intensity as the input video, at the end of the
1503 fade-out transition the output video will be completely black.
1504
1505 @var{options} is an optional sequence of @var{key}=@var{value} pairs,
1506 separated by ":". The description of the accepted options follows.
1507
1508 @table @option
1509
1510 @item type, t
1511 See @var{type}.
1512
1513 @item start_frame, s
1514 See @var{start_frame}.
1515
1516 @item nb_frames, n
1517 See @var{nb_frames}.
1518
1519 @item alpha
1520 If set to 1, fade only alpha channel, if one exists on the input.
1521 Default value is 0.
1522 @end table
1523
1524 A few usage examples follow, usable too as test scenarios.
1525 @example
1526 # fade in first 30 frames of video
1527 fade=in:0:30
1528
1529 # fade out last 45 frames of a 200-frame video
1530 fade=out:155:45
1531
1532 # fade in first 25 frames and fade out last 25 frames of a 1000-frame video
1533 fade=in:0:25, fade=out:975:25
1534
1535 # make first 5 frames black, then fade in from frame 5-24
1536 fade=in:5:20
1537
1538 # fade in alpha over first 25 frames of video
1539 fade=in:0:25:alpha=1
1540 @end example
1541
1542 @section fieldorder
1543
1544 Transform the field order of the input video.
1545
1546 It accepts one parameter which specifies the required field order that
1547 the input interlaced video will be transformed to. The parameter can
1548 assume one of the following values:
1549
1550 @table @option
1551 @item 0 or bff
1552 output bottom field first
1553 @item 1 or tff
1554 output top field first
1555 @end table
1556
1557 Default value is "tff".
1558
1559 Transformation is achieved by shifting the picture content up or down
1560 by one line, and filling the remaining line with appropriate picture content.
1561 This method is consistent with most broadcast field order converters.
1562
1563 If the input video is not flagged as being interlaced, or it is already
1564 flagged as being of the required output field order then this filter does
1565 not alter the incoming video.
1566
1567 This filter is very useful when converting to or from PAL DV material,
1568 which is bottom field first.
1569
1570 For example:
1571 @example
1572 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
1573 @end example
1574
1575 @section fifo
1576
1577 Buffer input images and send them when they are requested.
1578
1579 This filter is mainly useful when auto-inserted by the libavfilter
1580 framework.
1581
1582 The filter does not take parameters.
1583
1584 @section format
1585
1586 Convert the input video to one of the specified pixel formats.
1587 Libavfilter will try to pick one that is supported for the input to
1588 the next filter.
1589
1590 The filter accepts a list of pixel format names, separated by ":",
1591 for example "yuv420p:monow:rgb24".
1592
1593 Some examples follow:
1594 @example
1595 # convert the input video to the format "yuv420p"
1596 format=yuv420p
1597
1598 # convert the input video to any of the formats in the list
1599 format=yuv420p:yuv444p:yuv410p
1600 @end example
1601
1602 @anchor{frei0r}
1603 @section frei0r
1604
1605 Apply a frei0r effect to the input video.
1606
1607 To enable compilation of this filter you need to install the frei0r
1608 header and configure FFmpeg with @code{--enable-frei0r}.
1609
1610 The filter supports the syntax:
1611 @example
1612 @var{filter_name}[@{:|=@}@var{param1}:@var{param2}:...:@var{paramN}]
1613 @end example
1614
1615 @var{filter_name} is the name to the frei0r effect to load. If the
1616 environment variable @env{FREI0R_PATH} is defined, the frei0r effect
1617 is searched in each one of the directories specified by the colon
1618 separated list in @env{FREIOR_PATH}, otherwise in the standard frei0r
1619 paths, which are in this order: @file{HOME/.frei0r-1/lib/},
1620 @file{/usr/local/lib/frei0r-1/}, @file{/usr/lib/frei0r-1/}.
1621
1622 @var{param1}, @var{param2}, ... , @var{paramN} specify the parameters
1623 for the frei0r effect.
1624
1625 A frei0r effect parameter can be a boolean (whose values are specified
1626 with "y" and "n"), a double, a color (specified by the syntax
1627 @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
1628 numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
1629 description), a position (specified by the syntax @var{X}/@var{Y},
1630 @var{X} and @var{Y} being float numbers) and a string.
1631
1632 The number and kind of parameters depend on the loaded effect. If an
1633 effect parameter is not specified the default value is set.
1634
1635 Some examples follow:
1636 @example
1637 # apply the distort0r effect, set the first two double parameters
1638 frei0r=distort0r:0.5:0.01
1639
1640 # apply the colordistance effect, takes a color as first parameter
1641 frei0r=colordistance:0.2/0.3/0.4
1642 frei0r=colordistance:violet
1643 frei0r=colordistance:0x112233
1644
1645 # apply the perspective effect, specify the top left and top right
1646 # image positions
1647 frei0r=perspective:0.2/0.2:0.8/0.2
1648 @end example
1649
1650 For more information see:
1651 @url{http://piksel.org/frei0r}
1652
1653 @section gradfun
1654
1655 Fix the banding artifacts that are sometimes introduced into nearly flat
1656 regions by truncation to 8bit color depth.
1657 Interpolate the gradients that should go where the bands are, and
1658 dither them.
1659
1660 This filter is designed for playback only.  Do not use it prior to
1661 lossy compression, because compression tends to lose the dither and
1662 bring back the bands.
1663
1664 The filter takes two optional parameters, separated by ':':
1665 @var{strength}:@var{radius}
1666
1667 @var{strength} is the maximum amount by which the filter will change
1668 any one pixel. Also the threshold for detecting nearly flat
1669 regions. Acceptable values range from .51 to 255, default value is
1670 1.2, out-of-range values will be clipped to the valid range.
1671
1672 @var{radius} is the neighborhood to fit the gradient to. A larger
1673 radius makes for smoother gradients, but also prevents the filter from
1674 modifying the pixels near detailed regions. Acceptable values are
1675 8-32, default value is 16, out-of-range values will be clipped to the
1676 valid range.
1677
1678 @example
1679 # default parameters
1680 gradfun=1.2:16
1681
1682 # omitting radius
1683 gradfun=1.2
1684 @end example
1685
1686 @section hflip
1687
1688 Flip the input video horizontally.
1689
1690 For example to horizontally flip the input video with @command{ffmpeg}:
1691 @example
1692 ffmpeg -i in.avi -vf "hflip" out.avi
1693 @end example
1694
1695 @section hqdn3d
1696
1697 High precision/quality 3d denoise filter. This filter aims to reduce
1698 image noise producing smooth images and making still images really
1699 still. It should enhance compressibility.
1700
1701 It accepts the following optional parameters:
1702 @var{luma_spatial}:@var{chroma_spatial}:@var{luma_tmp}:@var{chroma_tmp}
1703
1704 @table @option
1705 @item luma_spatial
1706 a non-negative float number which specifies spatial luma strength,
1707 defaults to 4.0
1708
1709 @item chroma_spatial
1710 a non-negative float number which specifies spatial chroma strength,
1711 defaults to 3.0*@var{luma_spatial}/4.0
1712
1713 @item luma_tmp
1714 a float number which specifies luma temporal strength, defaults to
1715 6.0*@var{luma_spatial}/4.0
1716
1717 @item chroma_tmp
1718 a float number which specifies chroma temporal strength, defaults to
1719 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
1720 @end table
1721
1722 @section idet
1723
1724 Interlaceing detect filter. This filter tries to detect if the input is
1725 interlaced or progressive. Top or bottom field first.
1726
1727 @section lut, lutrgb, lutyuv
1728
1729 Compute a look-up table for binding each pixel component input value
1730 to an output value, and apply it to input video.
1731
1732 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
1733 to an RGB input video.
1734
1735 These filters accept in input a ":"-separated list of options, which
1736 specify the expressions used for computing the lookup table for the
1737 corresponding pixel component values.
1738
1739 The @var{lut} filter requires either YUV or RGB pixel formats in
1740 input, and accepts the options:
1741 @table @option
1742 @item c0
1743 first  pixel component
1744 @item c1
1745 second pixel component
1746 @item c2
1747 third  pixel component
1748 @item c3
1749 fourth pixel component, corresponds to the alpha component
1750 @end table
1751
1752 The exact component associated to each option depends on the format in
1753 input.
1754
1755 The @var{lutrgb} filter requires RGB pixel formats in input, and
1756 accepts the options:
1757 @table @option
1758 @item r
1759 red component
1760 @item g
1761 green component
1762 @item b
1763 blue component
1764 @item a
1765 alpha component
1766 @end table
1767
1768 The @var{lutyuv} filter requires YUV pixel formats in input, and
1769 accepts the options:
1770 @table @option
1771 @item y
1772 Y/luminance component
1773 @item u
1774 U/Cb component
1775 @item v
1776 V/Cr component
1777 @item a
1778 alpha component
1779 @end table
1780
1781 The expressions can contain the following constants and functions:
1782
1783 @table @option
1784 @item w, h
1785 the input width and height
1786
1787 @item val
1788 input value for the pixel component
1789
1790 @item clipval
1791 the input value clipped in the @var{minval}-@var{maxval} range
1792
1793 @item maxval
1794 maximum value for the pixel component
1795
1796 @item minval
1797 minimum value for the pixel component
1798
1799 @item negval
1800 the negated value for the pixel component value clipped in the
1801 @var{minval}-@var{maxval} range , it corresponds to the expression
1802 "maxval-clipval+minval"
1803
1804 @item clip(val)
1805 the computed value in @var{val} clipped in the
1806 @var{minval}-@var{maxval} range
1807
1808 @item gammaval(gamma)
1809 the computed gamma correction value of the pixel component value
1810 clipped in the @var{minval}-@var{maxval} range, corresponds to the
1811 expression
1812 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
1813
1814 @end table
1815
1816 All expressions default to "val".
1817
1818 Some examples follow:
1819 @example
1820 # negate input video
1821 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
1822 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
1823
1824 # the above is the same as
1825 lutrgb="r=negval:g=negval:b=negval"
1826 lutyuv="y=negval:u=negval:v=negval"
1827
1828 # negate luminance
1829 lutyuv=y=negval
1830
1831 # remove chroma components, turns the video into a graytone image
1832 lutyuv="u=128:v=128"
1833
1834 # apply a luma burning effect
1835 lutyuv="y=2*val"
1836
1837 # remove green and blue components
1838 lutrgb="g=0:b=0"
1839
1840 # set a constant alpha channel value on input
1841 format=rgba,lutrgb=a="maxval-minval/2"
1842
1843 # correct luminance gamma by a 0.5 factor
1844 lutyuv=y=gammaval(0.5)
1845 @end example
1846
1847 @section mp
1848
1849 Apply an MPlayer filter to the input video.
1850
1851 This filter provides a wrapper around most of the filters of
1852 MPlayer/MEncoder.
1853
1854 This wrapper is considered experimental. Some of the wrapped filters
1855 may not work properly and we may drop support for them, as they will
1856 be implemented natively into FFmpeg. Thus you should avoid
1857 depending on them when writing portable scripts.
1858
1859 The filters accepts the parameters:
1860 @var{filter_name}[:=]@var{filter_params}
1861
1862 @var{filter_name} is the name of a supported MPlayer filter,
1863 @var{filter_params} is a string containing the parameters accepted by
1864 the named filter.
1865
1866 The list of the currently supported filters follows:
1867 @table @var
1868 @item 2xsai
1869 @item decimate
1870 @item denoise3d
1871 @item detc
1872 @item dint
1873 @item divtc
1874 @item down3dright
1875 @item dsize
1876 @item eq2
1877 @item eq
1878 @item field
1879 @item fil
1880 @item fixpts
1881 @item framestep
1882 @item fspp
1883 @item geq
1884 @item harddup
1885 @item hqdn3d
1886 @item hue
1887 @item il
1888 @item ilpack
1889 @item ivtc
1890 @item kerndeint
1891 @item mcdeint
1892 @item mirror
1893 @item noise
1894 @item ow
1895 @item palette
1896 @item perspective
1897 @item phase
1898 @item pp7
1899 @item pullup
1900 @item qp
1901 @item rectangle
1902 @item rotate
1903 @item sab
1904 @item screenshot
1905 @item smartblur
1906 @item softpulldown
1907 @item softskip
1908 @item spp
1909 @item telecine
1910 @item tile
1911 @item tinterlace
1912 @item unsharp
1913 @item uspp
1914 @item yuvcsp
1915 @item yvu9
1916 @end table
1917
1918 The parameter syntax and behavior for the listed filters are the same
1919 of the corresponding MPlayer filters. For detailed instructions check
1920 the "VIDEO FILTERS" section in the MPlayer manual.
1921
1922 Some examples follow:
1923 @example
1924 # adjust gamma, brightness, contrast
1925 mp=eq2=1.0:2:0.5
1926
1927 # tweak hue and saturation
1928 mp=hue=100:-10
1929 @end example
1930
1931 See also mplayer(1), @url{http://www.mplayerhq.hu/}.
1932
1933 @section negate
1934
1935 Negate input video.
1936
1937 This filter accepts an integer in input, if non-zero it negates the
1938 alpha component (if available). The default value in input is 0.
1939
1940 @section noformat
1941
1942 Force libavfilter not to use any of the specified pixel formats for the
1943 input to the next filter.
1944
1945 The filter accepts a list of pixel format names, separated by ":",
1946 for example "yuv420p:monow:rgb24".
1947
1948 Some examples follow:
1949 @example
1950 # force libavfilter to use a format different from "yuv420p" for the
1951 # input to the vflip filter
1952 noformat=yuv420p,vflip
1953
1954 # convert the input video to any of the formats not contained in the list
1955 noformat=yuv420p:yuv444p:yuv410p
1956 @end example
1957
1958 @section null
1959
1960 Pass the video source unchanged to the output.
1961
1962 @section ocv
1963
1964 Apply video transform using libopencv.
1965
1966 To enable this filter install libopencv library and headers and
1967 configure FFmpeg with @code{--enable-libopencv}.
1968
1969 The filter takes the parameters: @var{filter_name}@{:=@}@var{filter_params}.
1970
1971 @var{filter_name} is the name of the libopencv filter to apply.
1972
1973 @var{filter_params} specifies the parameters to pass to the libopencv
1974 filter. If not specified the default values are assumed.
1975
1976 Refer to the official libopencv documentation for more precise
1977 information:
1978 @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
1979
1980 Follows the list of supported libopencv filters.
1981
1982 @anchor{dilate}
1983 @subsection dilate
1984
1985 Dilate an image by using a specific structuring element.
1986 This filter corresponds to the libopencv function @code{cvDilate}.
1987
1988 It accepts the parameters: @var{struct_el}:@var{nb_iterations}.
1989
1990 @var{struct_el} represents a structuring element, and has the syntax:
1991 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
1992
1993 @var{cols} and @var{rows} represent the number of columns and rows of
1994 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
1995 point, and @var{shape} the shape for the structuring element, and
1996 can be one of the values "rect", "cross", "ellipse", "custom".
1997
1998 If the value for @var{shape} is "custom", it must be followed by a
1999 string of the form "=@var{filename}". The file with name
2000 @var{filename} is assumed to represent a binary image, with each
2001 printable character corresponding to a bright pixel. When a custom
2002 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
2003 or columns and rows of the read file are assumed instead.
2004
2005 The default value for @var{struct_el} is "3x3+0x0/rect".
2006
2007 @var{nb_iterations} specifies the number of times the transform is
2008 applied to the image, and defaults to 1.
2009
2010 Follow some example:
2011 @example
2012 # use the default values
2013 ocv=dilate
2014
2015 # dilate using a structuring element with a 5x5 cross, iterate two times
2016 ocv=dilate=5x5+2x2/cross:2
2017
2018 # read the shape from the file diamond.shape, iterate two times
2019 # the file diamond.shape may contain a pattern of characters like this:
2020 #   *
2021 #  ***
2022 # *****
2023 #  ***
2024 #   *
2025 # the specified cols and rows are ignored (but not the anchor point coordinates)
2026 ocv=0x0+2x2/custom=diamond.shape:2
2027 @end example
2028
2029 @subsection erode
2030
2031 Erode an image by using a specific structuring element.
2032 This filter corresponds to the libopencv function @code{cvErode}.
2033
2034 The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
2035 with the same syntax and semantics as the @ref{dilate} filter.
2036
2037 @subsection smooth
2038
2039 Smooth the input video.
2040
2041 The filter takes the following parameters:
2042 @var{type}:@var{param1}:@var{param2}:@var{param3}:@var{param4}.
2043
2044 @var{type} is the type of smooth filter to apply, and can be one of
2045 the following values: "blur", "blur_no_scale", "median", "gaussian",
2046 "bilateral". The default value is "gaussian".
2047
2048 @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
2049 parameters whose meanings depend on smooth type. @var{param1} and
2050 @var{param2} accept integer positive values or 0, @var{param3} and
2051 @var{param4} accept float values.
2052
2053 The default value for @var{param1} is 3, the default value for the
2054 other parameters is 0.
2055
2056 These parameters correspond to the parameters assigned to the
2057 libopencv function @code{cvSmooth}.
2058
2059 @anchor{overlay}
2060 @section overlay
2061
2062 Overlay one video on top of another.
2063
2064 It takes two inputs and one output, the first input is the "main"
2065 video on which the second input is overlayed.
2066
2067 It accepts the parameters: @var{x}:@var{y}[:@var{options}].
2068
2069 @var{x} is the x coordinate of the overlayed video on the main video,
2070 @var{y} is the y coordinate. @var{x} and @var{y} are expressions containing
2071 the following parameters:
2072
2073 @table @option
2074 @item main_w, main_h
2075 main input width and height
2076
2077 @item W, H
2078 same as @var{main_w} and @var{main_h}
2079
2080 @item overlay_w, overlay_h
2081 overlay input width and height
2082
2083 @item w, h
2084 same as @var{overlay_w} and @var{overlay_h}
2085 @end table
2086
2087 @var{options} is an optional list of @var{key}=@var{value} pairs,
2088 separated by ":".
2089
2090 The description of the accepted options follows.
2091
2092 @table @option
2093 @item rgb
2094 If set to 1, force the filter to accept inputs in the RGB
2095 color space. Default value is 0.
2096 @end table
2097
2098 Be aware that frames are taken from each input video in timestamp
2099 order, hence, if their initial timestamps differ, it is a a good idea
2100 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
2101 have them begin in the same zero timestamp, as it does the example for
2102 the @var{movie} filter.
2103
2104 Follow some examples:
2105 @example
2106 # draw the overlay at 10 pixels from the bottom right
2107 # corner of the main video.
2108 overlay=main_w-overlay_w-10:main_h-overlay_h-10
2109
2110 # insert a transparent PNG logo in the bottom left corner of the input
2111 movie=logo.png [logo];
2112 [in][logo] overlay=10:main_h-overlay_h-10 [out]
2113
2114 # insert 2 different transparent PNG logos (second logo on bottom
2115 # right corner):
2116 movie=logo1.png [logo1];
2117 movie=logo2.png [logo2];
2118 [in][logo1]       overlay=10:H-h-10 [in+logo1];
2119 [in+logo1][logo2] overlay=W-w-10:H-h-10 [out]
2120
2121 # add a transparent color layer on top of the main video,
2122 # WxH specifies the size of the main input to the overlay filter
2123 color=red@.3:WxH [over]; [in][over] overlay [out]
2124 @end example
2125
2126 You can chain together more overlays but the efficiency of such
2127 approach is yet to be tested.
2128
2129 @section pad
2130
2131 Add paddings to the input image, and places the original input at the
2132 given coordinates @var{x}, @var{y}.
2133
2134 It accepts the following parameters:
2135 @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
2136
2137 The parameters @var{width}, @var{height}, @var{x}, and @var{y} are
2138 expressions containing the following constants:
2139
2140 @table @option
2141 @item in_w, in_h
2142 the input video width and height
2143
2144 @item iw, ih
2145 same as @var{in_w} and @var{in_h}
2146
2147 @item out_w, out_h
2148 the output width and height, that is the size of the padded area as
2149 specified by the @var{width} and @var{height} expressions
2150
2151 @item ow, oh
2152 same as @var{out_w} and @var{out_h}
2153
2154 @item x, y
2155 x and y offsets as specified by the @var{x} and @var{y}
2156 expressions, or NAN if not yet specified
2157
2158 @item a
2159 same as @var{iw} / @var{ih}
2160
2161 @item sar
2162 input sample aspect ratio
2163
2164 @item dar
2165 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
2166
2167 @item hsub, vsub
2168 horizontal and vertical chroma subsample values. For example for the
2169 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2170 @end table
2171
2172 Follows the description of the accepted parameters.
2173
2174 @table @option
2175 @item width, height
2176
2177 Specify the size of the output image with the paddings added. If the
2178 value for @var{width} or @var{height} is 0, the corresponding input size
2179 is used for the output.
2180
2181 The @var{width} expression can reference the value set by the
2182 @var{height} expression, and vice versa.
2183
2184 The default value of @var{width} and @var{height} is 0.
2185
2186 @item x, y
2187
2188 Specify the offsets where to place the input image in the padded area
2189 with respect to the top/left border of the output image.
2190
2191 The @var{x} expression can reference the value set by the @var{y}
2192 expression, and vice versa.
2193
2194 The default value of @var{x} and @var{y} is 0.
2195
2196 @item color
2197
2198 Specify the color of the padded area, it can be the name of a color
2199 (case insensitive match) or a 0xRRGGBB[AA] sequence.
2200
2201 The default value of @var{color} is "black".
2202
2203 @end table
2204
2205 Some examples follow:
2206
2207 @example
2208 # Add paddings with color "violet" to the input video. Output video
2209 # size is 640x480, the top-left corner of the input video is placed at
2210 # column 0, row 40.
2211 pad=640:480:0:40:violet
2212
2213 # pad the input to get an output with dimensions increased bt 3/2,
2214 # and put the input video at the center of the padded area
2215 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
2216
2217 # pad the input to get a squared output with size equal to the maximum
2218 # value between the input width and height, and put the input video at
2219 # the center of the padded area
2220 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
2221
2222 # pad the input to get a final w/h ratio of 16:9
2223 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
2224
2225 # for anamorphic video, in order to set the output display aspect ratio,
2226 # it is necessary to use sar in the expression, according to the relation:
2227 # (ih * X / ih) * sar = output_dar
2228 # X = output_dar / sar
2229 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
2230
2231 # double output size and put the input video in the bottom-right
2232 # corner of the output padded area
2233 pad="2*iw:2*ih:ow-iw:oh-ih"
2234 @end example
2235
2236 @section pixdesctest
2237
2238 Pixel format descriptor test filter, mainly useful for internal
2239 testing. The output video should be equal to the input video.
2240
2241 For example:
2242 @example
2243 format=monow, pixdesctest
2244 @end example
2245
2246 can be used to test the monowhite pixel format descriptor definition.
2247
2248 @section removelogo
2249
2250 Suppress a TV station logo, using an image file to determine which
2251 pixels comprise the logo. It works by filling in the pixels that
2252 comprise the logo with neighboring pixels.
2253
2254 This filter requires one argument which specifies the filter bitmap
2255 file, which can be any image format supported by libavformat. The
2256 width and height of the image file must match those of the video
2257 stream being processed.
2258
2259 Pixels in the provided bitmap image with a value of zero are not
2260 considered part of the logo, non-zero pixels are considered part of
2261 the logo. If you use white (255) for the logo and black (0) for the
2262 rest, you will be safe. For making the filter bitmap, it is
2263 recommended to take a screen capture of a black frame with the logo
2264 visible, and then using a threshold filter followed by the erode
2265 filter once or twice.
2266
2267 If needed, little splotches can be fixed manually. Remember that if
2268 logo pixels are not covered, the filter quality will be much
2269 reduced. Marking too many pixels as part of the logo does not hurt as
2270 much, but it will increase the amount of blurring needed to cover over
2271 the image and will destroy more information than necessary, and extra
2272 pixels will slow things down on a large logo.
2273
2274 @section scale
2275
2276 Scale the input video to @var{width}:@var{height}[:@var{interl}=@{1|-1@}] and/or convert the image format.
2277
2278 The scale filter forces the output display aspect ratio to be the same
2279 of the input, by changing the output sample aspect ratio.
2280
2281 The parameters @var{width} and @var{height} are expressions containing
2282 the following constants:
2283
2284 @table @option
2285 @item in_w, in_h
2286 the input width and height
2287
2288 @item iw, ih
2289 same as @var{in_w} and @var{in_h}
2290
2291 @item out_w, out_h
2292 the output (cropped) width and height
2293
2294 @item ow, oh
2295 same as @var{out_w} and @var{out_h}
2296
2297 @item a
2298 same as @var{iw} / @var{ih}
2299
2300 @item sar
2301 input sample aspect ratio
2302
2303 @item dar
2304 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
2305
2306 @item hsub, vsub
2307 horizontal and vertical chroma subsample values. For example for the
2308 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2309 @end table
2310
2311 If the input image format is different from the format requested by
2312 the next filter, the scale filter will convert the input to the
2313 requested format.
2314
2315 If the value for @var{width} or @var{height} is 0, the respective input
2316 size is used for the output.
2317
2318 If the value for @var{width} or @var{height} is -1, the scale filter will
2319 use, for the respective output size, a value that maintains the aspect
2320 ratio of the input image.
2321
2322 The default value of @var{width} and @var{height} is 0.
2323
2324 Valid values for the optional parameter @var{interl} are:
2325
2326 @table @option
2327 @item 1
2328 force interlaced aware scaling
2329
2330 @item -1
2331 select interlaced aware scaling depending on whether the source frames
2332 are flagged as interlaced or not
2333 @end table
2334
2335 Unless @var{interl} is set to one of the above options, interlaced scaling will not be used.
2336
2337 Some examples follow:
2338 @example
2339 # scale the input video to a size of 200x100.
2340 scale=200:100
2341
2342 # scale the input to 2x
2343 scale=2*iw:2*ih
2344 # the above is the same as
2345 scale=2*in_w:2*in_h
2346
2347 # scale the input to 2x with forced interlaced scaling
2348 scale=2*iw:2*ih:interl=1
2349
2350 # scale the input to half size
2351 scale=iw/2:ih/2
2352
2353 # increase the width, and set the height to the same size
2354 scale=3/2*iw:ow
2355
2356 # seek for Greek harmony
2357 scale=iw:1/PHI*iw
2358 scale=ih*PHI:ih
2359
2360 # increase the height, and set the width to 3/2 of the height
2361 scale=3/2*oh:3/5*ih
2362
2363 # increase the size, but make the size a multiple of the chroma
2364 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
2365
2366 # increase the width to a maximum of 500 pixels, keep the same input aspect ratio
2367 scale='min(500\, iw*3/2):-1'
2368 @end example
2369
2370 @section select
2371 Select frames to pass in output.
2372
2373 It accepts in input an expression, which is evaluated for each input
2374 frame. If the expression is evaluated to a non-zero value, the frame
2375 is selected and passed to the output, otherwise it is discarded.
2376
2377 The expression can contain the following constants:
2378
2379 @table @option
2380 @item n
2381 the sequential number of the filtered frame, starting from 0
2382
2383 @item selected_n
2384 the sequential number of the selected frame, starting from 0
2385
2386 @item prev_selected_n
2387 the sequential number of the last selected frame, NAN if undefined
2388
2389 @item TB
2390 timebase of the input timestamps
2391
2392 @item pts
2393 the PTS (Presentation TimeStamp) of the filtered video frame,
2394 expressed in @var{TB} units, NAN if undefined
2395
2396 @item t
2397 the PTS (Presentation TimeStamp) of the filtered video frame,
2398 expressed in seconds, NAN if undefined
2399
2400 @item prev_pts
2401 the PTS of the previously filtered video frame, NAN if undefined
2402
2403 @item prev_selected_pts
2404 the PTS of the last previously filtered video frame, NAN if undefined
2405
2406 @item prev_selected_t
2407 the PTS of the last previously selected video frame, NAN if undefined
2408
2409 @item start_pts
2410 the PTS of the first video frame in the video, NAN if undefined
2411
2412 @item start_t
2413 the time of the first video frame in the video, NAN if undefined
2414
2415 @item pict_type
2416 the type of the filtered frame, can assume one of the following
2417 values:
2418 @table @option
2419 @item I
2420 @item P
2421 @item B
2422 @item S
2423 @item SI
2424 @item SP
2425 @item BI
2426 @end table
2427
2428 @item interlace_type
2429 the frame interlace type, can assume one of the following values:
2430 @table @option
2431 @item PROGRESSIVE
2432 the frame is progressive (not interlaced)
2433 @item TOPFIRST
2434 the frame is top-field-first
2435 @item BOTTOMFIRST
2436 the frame is bottom-field-first
2437 @end table
2438
2439 @item key
2440 1 if the filtered frame is a key-frame, 0 otherwise
2441
2442 @item pos
2443 the position in the file of the filtered frame, -1 if the information
2444 is not available (e.g. for synthetic video)
2445 @end table
2446
2447 The default value of the select expression is "1".
2448
2449 Some examples follow:
2450
2451 @example
2452 # select all frames in input
2453 select
2454
2455 # the above is the same as:
2456 select=1
2457
2458 # skip all frames:
2459 select=0
2460
2461 # select only I-frames
2462 select='eq(pict_type\,I)'
2463
2464 # select one frame every 100
2465 select='not(mod(n\,100))'
2466
2467 # select only frames contained in the 10-20 time interval
2468 select='gte(t\,10)*lte(t\,20)'
2469
2470 # select only I frames contained in the 10-20 time interval
2471 select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
2472
2473 # select frames with a minimum distance of 10 seconds
2474 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
2475 @end example
2476
2477 @section setdar, setsar
2478
2479 The @code{setdar} filter sets the Display Aspect Ratio for the filter
2480 output video.
2481
2482 This is done by changing the specified Sample (aka Pixel) Aspect
2483 Ratio, according to the following equation:
2484 @example
2485 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
2486 @end example
2487
2488 Keep in mind that the @code{setdar} filter does not modify the pixel
2489 dimensions of the video frame. Also the display aspect ratio set by
2490 this filter may be changed by later filters in the filterchain,
2491 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
2492 applied.
2493
2494 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
2495 the filter output video.
2496
2497 Note that as a consequence of the application of this filter, the
2498 output display aspect ratio will change according to the equation
2499 above.
2500
2501 Keep in mind that the sample aspect ratio set by the @code{setsar}
2502 filter may be changed by later filters in the filterchain, e.g. if
2503 another "setsar" or a "setdar" filter is applied.
2504
2505 The @code{setdar} and @code{setsar} filters accept a parameter string
2506 which represents the wanted aspect ratio.  The parameter can
2507 be a floating point number string, an expression, or a string of the form
2508 @var{num}:@var{den}, where @var{num} and @var{den} are the numerator
2509 and denominator of the aspect ratio. If the parameter is not
2510 specified, it is assumed the value "0:1".
2511
2512 For example to change the display aspect ratio to 16:9, specify:
2513 @example
2514 setdar=16:9
2515 @end example
2516
2517 The example above is equivalent to:
2518 @example
2519 setdar=1.77777
2520 @end example
2521
2522 To change the sample aspect ratio to 10:11, specify:
2523 @example
2524 setsar=10:11
2525 @end example
2526
2527 @section setfield
2528
2529 Force field for the output video frame.
2530
2531 The @code{setfield} filter marks the interlace type field for the
2532 output frames. It does not change the input frame, but only sets the
2533 corresponding property, which affects how the frame is treated by
2534 followig filters (e.g. @code{fieldorder} or @code{yadif}).
2535
2536 It accepts a parameter representing an integer or a string, which can
2537 assume the following values:
2538 @table @samp
2539 @item -1, auto
2540 Keep the same field property.
2541
2542 @item 0, bff
2543 Mark the frame as bottom-field-first.
2544
2545 @item 1, tff
2546 Mark the frame as top-field-first.
2547 @end table
2548
2549 @section setpts
2550
2551 Change the PTS (presentation timestamp) of the input video frames.
2552
2553 Accept in input an expression evaluated through the eval API, which
2554 can contain the following constants:
2555
2556 @table @option
2557 @item PTS
2558 the presentation timestamp in input
2559
2560 @item N
2561 the count of the input frame, starting from 0.
2562
2563 @item STARTPTS
2564 the PTS of the first video frame
2565
2566 @item INTERLACED
2567 tell if the current frame is interlaced
2568
2569 @item POS
2570 original position in the file of the frame, or undefined if undefined
2571 for the current frame
2572
2573 @item PREV_INPTS
2574 previous input PTS
2575
2576 @item PREV_OUTPTS
2577 previous output PTS
2578
2579 @end table
2580
2581 Some examples follow:
2582
2583 @example
2584 # start counting PTS from zero
2585 setpts=PTS-STARTPTS
2586
2587 # fast motion
2588 setpts=0.5*PTS
2589
2590 # slow motion
2591 setpts=2.0*PTS
2592
2593 # fixed rate 25 fps
2594 setpts=N/(25*TB)
2595
2596 # fixed rate 25 fps with some jitter
2597 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
2598 @end example
2599
2600 @section settb
2601
2602 Set the timebase to use for the output frames timestamps.
2603 It is mainly useful for testing timebase configuration.
2604
2605 It accepts in input an arithmetic expression representing a rational.
2606 The expression can contain the constants "AVTB" (the
2607 default timebase), and "intb" (the input timebase).
2608
2609 The default value for the input is "intb".
2610
2611 Follow some examples.
2612
2613 @example
2614 # set the timebase to 1/25
2615 settb=1/25
2616
2617 # set the timebase to 1/10
2618 settb=0.1
2619
2620 #set the timebase to 1001/1000
2621 settb=1+0.001
2622
2623 #set the timebase to 2*intb
2624 settb=2*intb
2625
2626 #set the default timebase value
2627 settb=AVTB
2628 @end example
2629
2630 @section showinfo
2631
2632 Show a line containing various information for each input video frame.
2633 The input video is not modified.
2634
2635 The shown line contains a sequence of key/value pairs of the form
2636 @var{key}:@var{value}.
2637
2638 A description of each shown parameter follows:
2639
2640 @table @option
2641 @item n
2642 sequential number of the input frame, starting from 0
2643
2644 @item pts
2645 Presentation TimeStamp of the input frame, expressed as a number of
2646 time base units. The time base unit depends on the filter input pad.
2647
2648 @item pts_time
2649 Presentation TimeStamp of the input frame, expressed as a number of
2650 seconds
2651
2652 @item pos
2653 position of the frame in the input stream, -1 if this information in
2654 unavailable and/or meaningless (for example in case of synthetic video)
2655
2656 @item fmt
2657 pixel format name
2658
2659 @item sar
2660 sample aspect ratio of the input frame, expressed in the form
2661 @var{num}/@var{den}
2662
2663 @item s
2664 size of the input frame, expressed in the form
2665 @var{width}x@var{height}
2666
2667 @item i
2668 interlaced mode ("P" for "progressive", "T" for top field first, "B"
2669 for bottom field first)
2670
2671 @item iskey
2672 1 if the frame is a key frame, 0 otherwise
2673
2674 @item type
2675 picture type of the input frame ("I" for an I-frame, "P" for a
2676 P-frame, "B" for a B-frame, "?" for unknown type).
2677 Check also the documentation of the @code{AVPictureType} enum and of
2678 the @code{av_get_picture_type_char} function defined in
2679 @file{libavutil/avutil.h}.
2680
2681 @item checksum
2682 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
2683
2684 @item plane_checksum
2685 Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
2686 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
2687 @end table
2688
2689 @section slicify
2690
2691 Pass the images of input video on to next video filter as multiple
2692 slices.
2693
2694 @example
2695 ffmpeg -i in.avi -vf "slicify=32" out.avi
2696 @end example
2697
2698 The filter accepts the slice height as parameter. If the parameter is
2699 not specified it will use the default value of 16.
2700
2701 Adding this in the beginning of filter chains should make filtering
2702 faster due to better use of the memory cache.
2703
2704 @section split
2705
2706 Pass on the input video to two outputs. Both outputs are identical to
2707 the input video.
2708
2709 For example:
2710 @example
2711 [in] split [splitout1][splitout2];
2712 [splitout1] crop=100:100:0:0    [cropout];
2713 [splitout2] pad=200:200:100:100 [padout];
2714 @end example
2715
2716 will create two separate outputs from the same input, one cropped and
2717 one padded.
2718
2719 @section swapuv
2720 Swap U & V plane.
2721
2722 @section thumbnail
2723 Select the most representative frame in a given sequence of consecutive frames.
2724
2725 It accepts as argument the frames batch size to analyze (default @var{N}=100);
2726 in a set of @var{N} frames, the filter will pick one of them, and then handle
2727 the next batch of @var{N} frames until the end.
2728
2729 Since the filter keeps track of the whole frames sequence, a bigger @var{N}
2730 value will result in a higher memory usage, so a high value is not recommended.
2731
2732 The following example extract one picture each 50 frames:
2733 @example
2734 thumbnail=50
2735 @end example
2736
2737 Complete example of a thumbnail creation with @command{ffmpeg}:
2738 @example
2739 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
2740 @end example
2741
2742 @section tile
2743
2744 Tile several successive frames together.
2745
2746 It accepts as argument the tile size (i.e. the number of lines and columns)
2747 in the form "@var{w}x@var{h}".
2748
2749 For example, produce 8×8 PNG tiles of all keyframes (@option{-skip_frame
2750 nokey}) in a movie:
2751 @example
2752 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
2753 @end example
2754 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
2755 duplicating each output frame to accomodate the originally detected frame
2756 rate.
2757
2758 @section tinterlace
2759
2760 Perform various types of temporal field interlacing.
2761
2762 Frames are counted starting from 1, so the first input frame is
2763 considered odd.
2764
2765 This filter accepts a single parameter specifying the mode. Available
2766 modes are:
2767
2768 @table @samp
2769 @item 0
2770 Move odd frames into the upper field, even into the lower field,
2771 generating a double height frame at half framerate.
2772
2773 @item 1
2774 Only output even frames, odd frames are dropped, generating a frame with
2775 unchanged height at half framerate.
2776
2777 @item 2
2778 Only output odd frames, even frames are dropped, generating a frame with
2779 unchanged height at half framerate.
2780
2781 @item 3
2782 Expand each frame to full height, but pad alternate lines with black,
2783 generating a frame with double height at the same input framerate.
2784
2785 @item 4
2786 Interleave the upper field from odd frames with the lower field from
2787 even frames, generating a frame with unchanged height at half framerate.
2788
2789 @item 5
2790 Interleave the lower field from odd frames with the upper field from
2791 even frames, generating a frame with unchanged height at half framerate.
2792 @end table
2793
2794 Default mode is 0.
2795
2796 @section transpose
2797
2798 Transpose rows with columns in the input video and optionally flip it.
2799
2800 It accepts a parameter representing an integer, which can assume the
2801 values:
2802
2803 @table @samp
2804 @item 0
2805 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
2806 @example
2807 L.R     L.l
2808 . . ->  . .
2809 l.r     R.r
2810 @end example
2811
2812 @item 1
2813 Rotate by 90 degrees clockwise, that is:
2814 @example
2815 L.R     l.L
2816 . . ->  . .
2817 l.r     r.R
2818 @end example
2819
2820 @item 2
2821 Rotate by 90 degrees counterclockwise, that is:
2822 @example
2823 L.R     R.r
2824 . . ->  . .
2825 l.r     L.l
2826 @end example
2827
2828 @item 3
2829 Rotate by 90 degrees clockwise and vertically flip, that is:
2830 @example
2831 L.R     r.R
2832 . . ->  . .
2833 l.r     l.L
2834 @end example
2835 @end table
2836
2837 @section unsharp
2838
2839 Sharpen or blur the input video.
2840
2841 It accepts the following parameters:
2842 @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
2843
2844 Negative values for the amount will blur the input video, while positive
2845 values will sharpen. All parameters are optional and default to the
2846 equivalent of the string '5:5:1.0:5:5:0.0'.
2847
2848 @table @option
2849
2850 @item luma_msize_x
2851 Set the luma matrix horizontal size. It can be an integer between 3
2852 and 13, default value is 5.
2853
2854 @item luma_msize_y
2855 Set the luma matrix vertical size. It can be an integer between 3
2856 and 13, default value is 5.
2857
2858 @item luma_amount
2859 Set the luma effect strength. It can be a float number between -2.0
2860 and 5.0, default value is 1.0.
2861
2862 @item chroma_msize_x
2863 Set the chroma matrix horizontal size. It can be an integer between 3
2864 and 13, default value is 5.
2865
2866 @item chroma_msize_y
2867 Set the chroma matrix vertical size. It can be an integer between 3
2868 and 13, default value is 5.
2869
2870 @item chroma_amount
2871 Set the chroma effect strength. It can be a float number between -2.0
2872 and 5.0, default value is 0.0.
2873
2874 @end table
2875
2876 @example
2877 # Strong luma sharpen effect parameters
2878 unsharp=7:7:2.5
2879
2880 # Strong blur of both luma and chroma parameters
2881 unsharp=7:7:-2:7:7:-2
2882
2883 # Use the default values with @command{ffmpeg}
2884 ffmpeg -i in.avi -vf "unsharp" out.mp4
2885 @end example
2886
2887 @section vflip
2888
2889 Flip the input video vertically.
2890
2891 @example
2892 ffmpeg -i in.avi -vf "vflip" out.avi
2893 @end example
2894
2895 @section yadif
2896
2897 Deinterlace the input video ("yadif" means "yet another deinterlacing
2898 filter").
2899
2900 It accepts the optional parameters: @var{mode}:@var{parity}:@var{auto}.
2901
2902 @var{mode} specifies the interlacing mode to adopt, accepts one of the
2903 following values:
2904
2905 @table @option
2906 @item 0
2907 output 1 frame for each frame
2908 @item 1
2909 output 1 frame for each field
2910 @item 2
2911 like 0 but skips spatial interlacing check
2912 @item 3
2913 like 1 but skips spatial interlacing check
2914 @end table
2915
2916 Default value is 0.
2917
2918 @var{parity} specifies the picture field parity assumed for the input
2919 interlaced video, accepts one of the following values:
2920
2921 @table @option
2922 @item 0
2923 assume top field first
2924 @item 1
2925 assume bottom field first
2926 @item -1
2927 enable automatic detection
2928 @end table
2929
2930 Default value is -1.
2931 If interlacing is unknown or decoder does not export this information,
2932 top field first will be assumed.
2933
2934 @var{auto} specifies if deinterlacer should trust the interlaced flag
2935 and only deinterlace frames marked as interlaced
2936
2937 @table @option
2938 @item 0
2939 deinterlace all frames
2940 @item 1
2941 only deinterlace frames marked as interlaced
2942 @end table
2943
2944 Default value is 0.
2945
2946 @c man end VIDEO FILTERS
2947
2948 @chapter Video Sources
2949 @c man begin VIDEO SOURCES
2950
2951 Below is a description of the currently available video sources.
2952
2953 @section buffer
2954
2955 Buffer video frames, and make them available to the filter chain.
2956
2957 This source is mainly intended for a programmatic use, in particular
2958 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
2959
2960 It accepts the following parameters:
2961 @var{width}:@var{height}:@var{pix_fmt_string}:@var{timebase_num}:@var{timebase_den}:@var{sample_aspect_ratio_num}:@var{sample_aspect_ratio.den}:@var{scale_params}
2962
2963 All the parameters but @var{scale_params} need to be explicitly
2964 defined.
2965
2966 Follows the list of the accepted parameters.
2967
2968 @table @option
2969
2970 @item width, height
2971 Specify the width and height of the buffered video frames.
2972
2973 @item pix_fmt_string
2974 A string representing the pixel format of the buffered video frames.
2975 It may be a number corresponding to a pixel format, or a pixel format
2976 name.
2977
2978 @item timebase_num, timebase_den
2979 Specify numerator and denomitor of the timebase assumed by the
2980 timestamps of the buffered frames.
2981
2982 @item sample_aspect_ratio.num, sample_aspect_ratio.den
2983 Specify numerator and denominator of the sample aspect ratio assumed
2984 by the video frames.
2985
2986 @item scale_params
2987 Specify the optional parameters to be used for the scale filter which
2988 is automatically inserted when an input change is detected in the
2989 input size or format.
2990 @end table
2991
2992 For example:
2993 @example
2994 buffer=320:240:yuv410p:1:24:1:1
2995 @end example
2996
2997 will instruct the source to accept video frames with size 320x240 and
2998 with format "yuv410p", assuming 1/24 as the timestamps timebase and
2999 square pixels (1:1 sample aspect ratio).
3000 Since the pixel format with name "yuv410p" corresponds to the number 6
3001 (check the enum PixelFormat definition in @file{libavutil/pixfmt.h}),
3002 this example corresponds to:
3003 @example
3004 buffer=320:240:6:1:24:1:1
3005 @end example
3006
3007 @section cellauto
3008
3009 Create a pattern generated by an elementary cellular automaton.
3010
3011 The initial state of the cellular automaton can be defined through the
3012 @option{filename}, and @option{pattern} options. If such options are
3013 not specified an initial state is created randomly.
3014
3015 At each new frame a new row in the video is filled with the result of
3016 the cellular automaton next generation. The behavior when the whole
3017 frame is filled is defined by the @option{scroll} option.
3018
3019 This source accepts a list of options in the form of
3020 @var{key}=@var{value} pairs separated by ":". A description of the
3021 accepted options follows.
3022
3023 @table @option
3024 @item filename, f
3025 Read the initial cellular automaton state, i.e. the starting row, from
3026 the specified file.
3027 In the file, each non-whitespace character is considered an alive
3028 cell, a newline will terminate the row, and further characters in the
3029 file will be ignored.
3030
3031 @item pattern, p
3032 Read the initial cellular automaton state, i.e. the starting row, from
3033 the specified string.
3034
3035 Each non-whitespace character in the string is considered an alive
3036 cell, a newline will terminate the row, and further characters in the
3037 string will be ignored.
3038
3039 @item rate, r
3040 Set the video rate, that is the number of frames generated per second.
3041 Default is 25.
3042
3043 @item random_fill_ratio, ratio
3044 Set the random fill ratio for the initial cellular automaton row. It
3045 is a floating point number value ranging from 0 to 1, defaults to
3046 1/PHI.
3047
3048 This option is ignored when a file or a pattern is specified.
3049
3050 @item random_seed, seed
3051 Set the seed for filling randomly the initial row, must be an integer
3052 included between 0 and UINT32_MAX. If not specified, or if explicitly
3053 set to -1, the filter will try to use a good random seed on a best
3054 effort basis.
3055
3056 @item rule
3057 Set the cellular automaton rule, it is a number ranging from 0 to 255.
3058 Default value is 110.
3059
3060 @item size, s
3061 Set the size of the output video.
3062
3063 If @option{filename} or @option{pattern} is specified, the size is set
3064 by default to the width of the specified initial state row, and the
3065 height is set to @var{width} * PHI.
3066
3067 If @option{size} is set, it must contain the width of the specified
3068 pattern string, and the specified pattern will be centered in the
3069 larger row.
3070
3071 If a filename or a pattern string is not specified, the size value
3072 defaults to "320x518" (used for a randomly generated initial state).
3073
3074 @item scroll
3075 If set to 1, scroll the output upward when all the rows in the output
3076 have been already filled. If set to 0, the new generated row will be
3077 written over the top row just after the bottom row is filled.
3078 Defaults to 1.
3079
3080 @item start_full, full
3081 If set to 1, completely fill the output with generated rows before
3082 outputting the first frame.
3083 This is the default behavior, for disabling set the value to 0.
3084
3085 @item stitch
3086 If set to 1, stitch the left and right row edges together.
3087 This is the default behavior, for disabling set the value to 0.
3088 @end table
3089
3090 @subsection Examples
3091
3092 @itemize
3093 @item
3094 Read the initial state from @file{pattern}, and specify an output of
3095 size 200x400.
3096 @example
3097 cellauto=f=pattern:s=200x400
3098 @end example
3099
3100 @item
3101 Generate a random initial row with a width of 200 cells, with a fill
3102 ratio of 2/3:
3103 @example
3104 cellauto=ratio=2/3:s=200x200
3105 @end example
3106
3107 @item
3108 Create a pattern generated by rule 18 starting by a single alive cell
3109 centered on an initial row with width 100:
3110 @example
3111 cellauto=p=@@:s=100x400:full=0:rule=18
3112 @end example
3113
3114 @item
3115 Specify a more elaborated initial pattern:
3116 @example
3117 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
3118 @end example
3119
3120 @end itemize
3121
3122 @section color
3123
3124 Provide an uniformly colored input.
3125
3126 It accepts the following parameters:
3127 @var{color}:@var{frame_size}:@var{frame_rate}
3128
3129 Follows the description of the accepted parameters.
3130
3131 @table @option
3132
3133 @item color
3134 Specify the color of the source. It can be the name of a color (case
3135 insensitive match) or a 0xRRGGBB[AA] sequence, possibly followed by an
3136 alpha specifier. The default value is "black".
3137
3138 @item frame_size
3139 Specify the size of the sourced video, it may be a string of the form
3140 @var{width}x@var{height}, or the name of a size abbreviation. The
3141 default value is "320x240".
3142
3143 @item frame_rate
3144 Specify the frame rate of the sourced video, as the number of frames
3145 generated per second. It has to be a string in the format
3146 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
3147 number or a valid video frame rate abbreviation. The default value is
3148 "25".
3149
3150 @end table
3151
3152 For example the following graph description will generate a red source
3153 with an opacity of 0.2, with size "qcif" and a frame rate of 10
3154 frames per second, which will be overlayed over the source connected
3155 to the pad with identifier "in".
3156
3157 @example
3158 "color=red@@0.2:qcif:10 [color]; [in][color] overlay [out]"
3159 @end example
3160
3161 @section movie
3162
3163 Read a video stream from a movie container.
3164
3165 It accepts the syntax: @var{movie_name}[:@var{options}] where
3166 @var{movie_name} is the name of the resource to read (not necessarily
3167 a file but also a device or a stream accessed through some protocol),
3168 and @var{options} is an optional sequence of @var{key}=@var{value}
3169 pairs, separated by ":".
3170
3171 The description of the accepted options follows.
3172
3173 @table @option
3174
3175 @item format_name, f
3176 Specifies the format assumed for the movie to read, and can be either
3177 the name of a container or an input device. If not specified the
3178 format is guessed from @var{movie_name} or by probing.
3179
3180 @item seek_point, sp
3181 Specifies the seek point in seconds, the frames will be output
3182 starting from this seek point, the parameter is evaluated with
3183 @code{av_strtod} so the numerical value may be suffixed by an IS
3184 postfix. Default value is "0".
3185
3186 @item stream_index, si
3187 Specifies the index of the video stream to read. If the value is -1,
3188 the best suited video stream will be automatically selected. Default
3189 value is "-1".
3190
3191 @item loop
3192 Specifies how many times to read the video stream in sequence.
3193 If the value is less than 1, the stream will be read again and again.
3194 Default value is "1".
3195
3196 Note that when the movie is looped the source timestamps are not
3197 changed, so it will generate non monotonically increasing timestamps.
3198 @end table
3199
3200 This filter allows to overlay a second video on top of main input of
3201 a filtergraph as shown in this graph:
3202 @example
3203 input -----------> deltapts0 --> overlay --> output
3204                                     ^
3205                                     |
3206 movie --> scale--> deltapts1 -------+
3207 @end example
3208
3209 Some examples follow:
3210 @example
3211 # skip 3.2 seconds from the start of the avi file in.avi, and overlay it
3212 # on top of the input labelled as "in".
3213 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie];
3214 [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
3215
3216 # read from a video4linux2 device, and overlay it on top of the input
3217 # labelled as "in"
3218 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie];
3219 [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
3220
3221 @end example
3222
3223 @section mptestsrc
3224
3225 Generate various test patterns, as generated by the MPlayer test filter.
3226
3227 The size of the generated video is fixed, and is 256x256.
3228 This source is useful in particular for testing encoding features.
3229
3230 This source accepts an optional sequence of @var{key}=@var{value} pairs,
3231 separated by ":". The description of the accepted options follows.
3232
3233 @table @option
3234
3235 @item rate, r
3236 Specify the frame rate of the sourced video, as the number of frames
3237 generated per second. It has to be a string in the format
3238 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
3239 number or a valid video frame rate abbreviation. The default value is
3240 "25".
3241
3242 @item duration, d
3243 Set the video duration of the sourced video. The accepted syntax is:
3244 @example
3245 [-]HH[:MM[:SS[.m...]]]
3246 [-]S+[.m...]
3247 @end example
3248 See also the function @code{av_parse_time()}.
3249
3250 If not specified, or the expressed duration is negative, the video is
3251 supposed to be generated forever.
3252
3253 @item test, t
3254
3255 Set the number or the name of the test to perform. Supported tests are:
3256 @table @option
3257 @item dc_luma
3258 @item dc_chroma
3259 @item freq_luma
3260 @item freq_chroma
3261 @item amp_luma
3262 @item amp_chroma
3263 @item cbp
3264 @item mv
3265 @item ring1
3266 @item ring2
3267 @item all
3268 @end table
3269
3270 Default value is "all", which will cycle through the list of all tests.
3271 @end table
3272
3273 For example the following:
3274 @example
3275 testsrc=t=dc_luma
3276 @end example
3277
3278 will generate a "dc_luma" test pattern.
3279
3280 @section frei0r_src
3281
3282 Provide a frei0r source.
3283
3284 To enable compilation of this filter you need to install the frei0r
3285 header and configure FFmpeg with @code{--enable-frei0r}.
3286
3287 The source supports the syntax:
3288 @example
3289 @var{size}:@var{rate}:@var{src_name}[@{=|:@}@var{param1}:@var{param2}:...:@var{paramN}]
3290 @end example
3291
3292 @var{size} is the size of the video to generate, may be a string of the
3293 form @var{width}x@var{height} or a frame size abbreviation.
3294 @var{rate} is the rate of the video to generate, may be a string of
3295 the form @var{num}/@var{den} or a frame rate abbreviation.
3296 @var{src_name} is the name to the frei0r source to load. For more
3297 information regarding frei0r and how to set the parameters read the
3298 section @ref{frei0r} in the description of the video filters.
3299
3300 Some examples follow:
3301 @example
3302 # generate a frei0r partik0l source with size 200x200 and frame rate 10
3303 # which is overlayed on the overlay filter main input
3304 frei0r_src=200x200:10:partik0l=1234 [overlay]; [in][overlay] overlay
3305 @end example
3306
3307 @section life
3308
3309 Generate a life pattern.
3310
3311 This source is based on a generalization of John Conway's life game.
3312
3313 The sourced input represents a life grid, each pixel represents a cell
3314 which can be in one of two possible states, alive or dead. Every cell
3315 interacts with its eight neighbours, which are the cells that are
3316 horizontally, vertically, or diagonally adjacent.
3317
3318 At each interaction the grid evolves according to the adopted rule,
3319 which specifies the number of neighbor alive cells which will make a
3320 cell stay alive or born. The @option{rule} option allows to specify
3321 the rule to adopt.
3322
3323 This source accepts a list of options in the form of
3324 @var{key}=@var{value} pairs separated by ":". A description of the
3325 accepted options follows.
3326
3327 @table @option
3328 @item filename, f
3329 Set the file from which to read the initial grid state. In the file,
3330 each non-whitespace character is considered an alive cell, and newline
3331 is used to delimit the end of each row.
3332
3333 If this option is not specified, the initial grid is generated
3334 randomly.
3335
3336 @item rate, r
3337 Set the video rate, that is the number of frames generated per second.
3338 Default is 25.
3339
3340 @item random_fill_ratio, ratio
3341 Set the random fill ratio for the initial random grid. It is a
3342 floating point number value ranging from 0 to 1, defaults to 1/PHI.
3343 It is ignored when a file is specified.
3344
3345 @item random_seed, seed
3346 Set the seed for filling the initial random grid, must be an integer
3347 included between 0 and UINT32_MAX. If not specified, or if explicitly
3348 set to -1, the filter will try to use a good random seed on a best
3349 effort basis.
3350
3351 @item rule
3352 Set the life rule.
3353
3354 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
3355 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
3356 @var{NS} specifies the number of alive neighbor cells which make a
3357 live cell stay alive, and @var{NB} the number of alive neighbor cells
3358 which make a dead cell to become alive (i.e. to "born").
3359 "s" and "b" can be used in place of "S" and "B", respectively.
3360
3361 Alternatively a rule can be specified by an 18-bits integer. The 9
3362 high order bits are used to encode the next cell state if it is alive
3363 for each number of neighbor alive cells, the low order bits specify
3364 the rule for "borning" new cells. Higher order bits encode for an
3365 higher number of neighbor cells.
3366 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
3367 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
3368
3369 Default value is "S23/B3", which is the original Conway's game of life
3370 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
3371 cells, and will born a new cell if there are three alive cells around
3372 a dead cell.
3373
3374 @item size, s
3375 Set the size of the output video.
3376
3377 If @option{filename} is specified, the size is set by default to the
3378 same size of the input file. If @option{size} is set, it must contain
3379 the size specified in the input file, and the initial grid defined in
3380 that file is centered in the larger resulting area.
3381
3382 If a filename is not specified, the size value defaults to "320x240"
3383 (used for a randomly generated initial grid).
3384
3385 @item stitch
3386 If set to 1, stitch the left and right grid edges together, and the
3387 top and bottom edges also. Defaults to 1.
3388
3389 @item mold
3390 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
3391 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
3392 value from 0 to 255.
3393
3394 @item life_color
3395 Set the color of living (or new born) cells.
3396
3397 @item death_color
3398 Set the color of dead cells. If @option{mold} is set, this is the first color
3399 used to represent a dead cell.
3400
3401 @item mold_color
3402 Set mold color, for definitely dead and moldy cells.
3403 @end table
3404
3405 @subsection Examples
3406
3407 @itemize
3408 @item
3409 Read a grid from @file{pattern}, and center it on a grid of size
3410 300x300 pixels:
3411 @example
3412 life=f=pattern:s=300x300
3413 @end example
3414
3415 @item
3416 Generate a random grid of size 200x200, with a fill ratio of 2/3:
3417 @example
3418 life=ratio=2/3:s=200x200
3419 @end example
3420
3421 @item
3422 Specify a custom rule for evolving a randomly generated grid:
3423 @example
3424 life=rule=S14/B34
3425 @end example
3426
3427 @item
3428 Full example with slow death effect (mold) using @command{ffplay}:
3429 @example
3430 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
3431 @end example
3432 @end itemize
3433
3434 @section nullsrc, rgbtestsrc, testsrc
3435
3436 The @code{nullsrc} source returns unprocessed video frames. It is
3437 mainly useful to be employed in analysis / debugging tools, or as the
3438 source for filters which ignore the input data.
3439
3440 The @code{rgbtestsrc} source generates an RGB test pattern useful for
3441 detecting RGB vs BGR issues. You should see a red, green and blue
3442 stripe from top to bottom.
3443
3444 The @code{testsrc} source generates a test video pattern, showing a
3445 color pattern, a scrolling gradient and a timestamp. This is mainly
3446 intended for testing purposes.
3447
3448 These sources accept an optional sequence of @var{key}=@var{value} pairs,
3449 separated by ":". The description of the accepted options follows.
3450
3451 @table @option
3452
3453 @item size, s
3454 Specify the size of the sourced video, it may be a string of the form
3455 @var{width}x@var{height}, or the name of a size abbreviation. The
3456 default value is "320x240".
3457
3458 @item rate, r
3459 Specify the frame rate of the sourced video, as the number of frames
3460 generated per second. It has to be a string in the format
3461 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
3462 number or a valid video frame rate abbreviation. The default value is
3463 "25".
3464
3465 @item sar
3466 Set the sample aspect ratio of the sourced video.
3467
3468 @item duration, d
3469 Set the video duration of the sourced video. The accepted syntax is:
3470 @example
3471 [-]HH[:MM[:SS[.m...]]]
3472 [-]S+[.m...]
3473 @end example
3474 See also the function @code{av_parse_time()}.
3475
3476 If not specified, or the expressed duration is negative, the video is
3477 supposed to be generated forever.
3478
3479 @item decimals, n
3480 Set the number of decimals to show in the timestamp, only used in the
3481 @code{testsrc} source.
3482
3483 The displayed timestamp value will correspond to the original
3484 timestamp value multiplied by the power of 10 of the specified
3485 value. Default value is 0.
3486 @end table
3487
3488 For example the following:
3489 @example
3490 testsrc=duration=5.3:size=qcif:rate=10
3491 @end example
3492
3493 will generate a video with a duration of 5.3 seconds, with size
3494 176x144 and a frame rate of 10 frames per second.
3495
3496 If the input content is to be ignored, @code{nullsrc} can be used. The
3497 following command generates noise in the luminance plane by employing
3498 the @code{mp=geq} filter:
3499 @example
3500 nullsrc=s=256x256, mp=geq=random(1)*255:128:128
3501 @end example
3502
3503 @c man end VIDEO SOURCES
3504
3505 @chapter Video Sinks
3506 @c man begin VIDEO SINKS
3507
3508 Below is a description of the currently available video sinks.
3509
3510 @section buffersink
3511
3512 Buffer video frames, and make them available to the end of the filter
3513 graph.
3514
3515 This sink is mainly intended for a programmatic use, in particular
3516 through the interface defined in @file{libavfilter/buffersink.h}.
3517
3518 It does not require a string parameter in input, but you need to
3519 specify a pointer to a list of supported pixel formats terminated by
3520 -1 in the opaque parameter provided to @code{avfilter_init_filter}
3521 when initializing this sink.
3522
3523 @section nullsink
3524
3525 Null video sink, do absolutely nothing with the input video. It is
3526 mainly useful as a template and to be employed in analysis / debugging
3527 tools.
3528
3529 @c man end VIDEO SINKS