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