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